From efe12849e473255a42f870274469df128bc4f678 Mon Sep 17 00:00:00 2001 From: Maric Diranovic Date: Tue, 11 Feb 2025 17:30:50 +0100 Subject: [PATCH 1/6] feat: Project edition --- client/src/containers/cards/component.tsx | 2 +- .../my-projects/sidebar/projectDetails.tsx | 33 +++++--- client/src/hooks/my-projects/index.ts | 21 ++++++ .../my-projects/[projectId]/edit/index.tsx | 40 ++++++++++ client/src/pages/my-projects/new/layout.tsx | 2 +- client/src/store/index.ts | 2 + client/src/store/myProjects/form/index.ts | 75 +++++++++++++++++++ 7 files changed, 162 insertions(+), 13 deletions(-) create mode 100644 client/src/pages/my-projects/[projectId]/edit/index.tsx create mode 100644 client/src/store/myProjects/form/index.ts diff --git a/client/src/containers/cards/component.tsx b/client/src/containers/cards/component.tsx index 726d5c0f..812660c8 100644 --- a/client/src/containers/cards/component.tsx +++ b/client/src/containers/cards/component.tsx @@ -36,7 +36,7 @@ const Cards = ({ data = [], theme = 'grey', pathname, project = false }: CardsPr )} {data.map((item) => ( - + ))} ); diff --git a/client/src/containers/my-projects/sidebar/projectDetails.tsx b/client/src/containers/my-projects/sidebar/projectDetails.tsx index c829321e..4d3e5fdd 100644 --- a/client/src/containers/my-projects/sidebar/projectDetails.tsx +++ b/client/src/containers/my-projects/sidebar/projectDetails.tsx @@ -8,8 +8,13 @@ import CHEVRON_RIGHT from 'svgs/icons/arrow-right.svg?sprite'; import LOCK from 'svgs/icons/lock.svg?sprite'; import USER_TWO from 'svgs/icons/user-two.svg?sprite'; import { useDispatch } from 'react-redux'; +import { Field } from 'react-final-form'; +import { Placement } from '@floating-ui/react-dom-interactions'; +import { useAppSelector } from 'store/hooks'; +import { RootState } from 'store'; const ProjectDetails = () => { const [logo, setLogo] = useState(null); + const draft = useAppSelector((state: RootState) => state['/projectForm']) const dispatch = useDispatch(); @@ -48,17 +53,20 @@ const ProjectDetails = () => { -
-
@@ -67,12 +75,15 @@ const ProjectDetails = () => { - + + - {/* Upload Logo */} +
- +
- + ); } diff --git a/client/src/store/index.ts b/client/src/store/index.ts index 45c24666..e0b3fe53 100644 --- a/client/src/store/index.ts +++ b/client/src/store/index.ts @@ -6,6 +6,7 @@ import myProjects from 'store/myProjects'; import { configureStore, combineReducers } from '@reduxjs/toolkit'; import type { ReducersMapObject } from '@reduxjs/toolkit'; import { createWrapper } from 'next-redux-wrapper'; +import ProjectFormReducer from 'store/myProjects/form'; const staticReducers = { '/action-map': actionMap, @@ -13,6 +14,7 @@ const staticReducers = { '/projects': projects, '/dashboards/general-report': dashboardsGeneralReport, '/myProjects': myProjects, + '/projectForm': ProjectFormReducer, }; const asyncReducers = {}; diff --git a/client/src/store/myProjects/form/index.ts b/client/src/store/myProjects/form/index.ts new file mode 100644 index 00000000..2b991247 --- /dev/null +++ b/client/src/store/myProjects/form/index.ts @@ -0,0 +1,75 @@ +import { createSlice, PayloadAction } from '@reduxjs/toolkit'; +import { HYDRATE } from 'next-redux-wrapper'; +import { STORE_WRAPPER } from 'store'; +import qs from 'query-string'; + +export interface ProjectFormState { + draftProject: { + name: string; + description: string; + logo: File | null; + contact_first_name: string; + contact_last_name: string; + website: string; + country_id: number | null; + state_id: number | null; + city: string; + leadership_demographics_other: string; + recipient_legal_status: string; + leadership_demographics: string[]; + } +} + +const initialState: ProjectFormState = { + draftProject:{ + name: '', + description: '', + logo: null, + contact_first_name: '', + contact_last_name: '', + website: '', + country_id: null, + state_id: null, + city: '', + leadership_demographics_other: '', + recipient_legal_status: '', + leadership_demographics: [], + } + +}; + +const slice = createSlice({ + name: '/createProjectForm', + initialState, + reducers: { + // updateField: ( + // state: ProjectFormState, + // action: PayloadAction<{ field: K; value: ProjectFormState[K] }> + // ) => { + // state[action.payload.field] = action.payload.value; + // }, + // setForm: (state, action: PayloadAction) => { + // return action.payload; + // }, + + updateDraft: (state, action: PayloadAction>) => { + state.draftProject = { ...state.draftProject, ...action.payload }; + }, + + clearDraft: (state) => { + state.draftProject = initialState.draftProject; + } + }, + extraReducers: { + [HYDRATE]: (state, action) => { + return { + ...state, + ...action.payload['/createProjectForm'], + }; + }, + }, +}); + +export const { updateDraft, clearDraft } = slice.actions; + +export default slice.reducer; From 96540e7dcb889445df7806c5e62bd10f3fb4f9b5 Mon Sep 17 00:00:00 2001 From: Maric Diranovic Date: Wed, 12 Feb 2025 13:24:58 +0100 Subject: [PATCH 2/6] feat: Project edition --- client/.env | 20 + client/README.md | 34 +- client/cypress/fixtures/profile.json | 2 +- client/cypress/fixtures/users.json | 2 +- client/cypress/tsconfig.json | 2 +- client/cypress/unit/unit-example.spec.js | 2 +- client/docker-compose.yml | 4 +- client/pnpm-lock.yaml | 6490 +++- client/public/manifest.json | 80 +- client/src/constants/nav.ts | 12 +- .../action-map/map/views/countries/data.json | 31176 +++++++++++++++- .../action-map/map/views/national/data.json | 9860 ++++- .../action-map/map/views/regions/data.json | 11242 +++++- .../action-map/map/views/states/data.json | 14200 ++++++- client/src/containers/cards/component.tsx | 7 +- client/src/containers/footer/component.tsx | 6 +- client/src/containers/funding/index.tsx | 2 +- client/src/containers/header/component.tsx | 88 +- .../src/containers/my-projects/component.tsx | 16 +- client/src/containers/my-projects/index.ts | 2 +- .../containers/my-projects/list/component.tsx | 28 +- .../src/containers/my-projects/list/index.ts | 2 +- .../my-projects/sidebar/contactDetails.tsx | 10 +- .../my-projects/sidebar/focus_area.tsx | 2 - .../containers/my-projects/sidebar/form.tsx | 98 +- .../my-projects/sidebar/funding.tsx | 12 +- .../my-projects/sidebar/projectDetails.tsx | 60 +- client/src/containers/projects/ui/card.tsx | 6 +- .../sentence/my-projects/component.tsx | 18 - .../containers/sentence/my-projects/index.ts | 1 - client/src/hoc/protectedRoute.tsx | 18 +- client/src/hooks/my-projects/index.ts | 49 +- client/src/layouts/application/component.tsx | 2 +- client/src/lib/adapters/types.ts | 8 +- .../my-projects/[projectId]/edit/index.tsx | 41 +- .../src/pages/my-projects/list/component.tsx | 148 - client/src/pages/my-projects/list/index.ts | 1 - client/src/pages/my-projects/new/index.tsx | 30 +- client/src/pages/my-projects/new/layout.tsx | 28 +- client/src/services/api/index.ts | 2 +- client/src/store/myProjects/form/index.ts | 9 +- client/src/store/myProjects/index.ts | 38 +- client/src/styles/flicking.css | 38 +- client/tailwind.config.js | 41 +- client/tsconfig.json | 18 +- 45 files changed, 71731 insertions(+), 2224 deletions(-) create mode 100644 client/.env delete mode 100644 client/src/containers/sentence/my-projects/component.tsx delete mode 100644 client/src/containers/sentence/my-projects/index.ts delete mode 100644 client/src/pages/my-projects/list/component.tsx delete mode 100644 client/src/pages/my-projects/list/index.ts diff --git a/client/.env b/client/.env new file mode 100644 index 00000000..26676b26 --- /dev/null +++ b/client/.env @@ -0,0 +1,20 @@ +# next-auth +# ! do not forget to add a secret. NextAuth can handle without it in development mode, +# ! but it won't in production! +# ? https://next-auth.js.org/configuration/options#secret +PORT=3000 +NEXTAUTH_SECRET=5QjioebBMjaQnaPWIvXz56j8rKf/bZ/SQgYLwHFf40I= +NEXTAUTH_URL=http://localhost:$PORT +# Plausible +NEXT_PUBLIC_PLAUSIBLE_DOMAIN=staging.fora.dev-vizzuality.com +# API Url. Depending on the environment we will use different urls. +NEXT_PUBLIC_API_URL=https://staging.fora.dev-vizzuality.com/sub-path/backend/api/v1 +#NEXT_PUBLIC_API_URL_FAKE=https://jsonplaceholder.typicode.com + +# Google Analytics tracking ID. If you're working with an Google Analytics 4 property, you have a Measurement ID instead of a Tracking ID. +NEXT_PUBLIC_GA_TRACKING_ID=UA-000000-2 +NEXT_PUBLIC_BASE_PATH="" + +NEXT_PUBLIC_URL=http://localhost:$PORT + +SECRET_TOKEN=fowz3MvhK9hQWaLPAfsAjvSf3851PAfL \ No newline at end of file diff --git a/client/README.md b/client/README.md index ce81bbf8..01fc304e 100644 --- a/client/README.md +++ b/client/README.md @@ -53,7 +53,6 @@ Check out the [Next.js deployment documentation](https://nextjs.org/docs/deploym See [the root README.md file](../README.md#deploying-on-aws-servers-staging--production) - ## Contribution rules Please, **create a PR** for any improvement or feature you want to add. Try to not commit directly anything on the `main` branch. @@ -68,28 +67,23 @@ Here's a step by step guide on how to address vulnerabilities found in productio 1. Go to the Dependabot alerts page and locate the front-end vulnerability to address 2. Identify if the vulnerability affects production code: - - To do so run `yarn npm audit --recursive --environment production` - - If the dependency is _not_ listed by this command, then the vulnerability only affects development code. You can dismiss the alert on GitHub as “Vulnerable code is not actually used” in the top right corner of the vulnerability page. - - If the dependency _is_ listed, follow the steps below. + - To do so run `yarn npm audit --recursive --environment production` + - If the dependency is _not_ listed by this command, then the vulnerability only affects development code. You can dismiss the alert on GitHub as “Vulnerable code is not actually used” in the top right corner of the vulnerability page. + - If the dependency _is_ listed, follow the steps below. 3. On the vulnerability page, click the “Create Dependabot security update” button - - This will create a Pull Request with a fix for the vulnerability. If GitHub can generate this PR, then you can merge and the security alert will disappear. - - If the vulnerability can't be patched automatically, follow the steps below. + - This will create a Pull Request with a fix for the vulnerability. If GitHub can generate this PR, then you can merge and the security alert will disappear. + - If the vulnerability can't be patched automatically, follow the steps below. 4. If the action fails, then you can semi-automatically update the vulnerable dependency by running `npm_config_yes=true npx yarn-audit-fix --only prod` - - `yarn-audit-fix` (see [repository](https://github.com/antongolub/yarn-audit-fix)) is a tool that applies the fixes from `npm audit fix` to Yarn installations - - The tool might also not be able to fix the vulnerability. If so, continue with the steps below. + - `yarn-audit-fix` (see [repository](https://github.com/antongolub/yarn-audit-fix)) is a tool that applies the fixes from `npm audit fix` to Yarn installations + - The tool might also not be able to fix the vulnerability. If so, continue with the steps below. 5. If the action fails, then you will have to manually update the dependencies until the vulnerability is solved ## Env variables - -| Variable name | Description | Default value | -|-------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------:| -| NEXTAUTH_SECRET | Key used to encrypt the NextAuth.js JWT, and to hash email verification tokens. Do not forget to add a secret. NextAuth can handle without it in development mode, but it won't in production! [https://next-auth.js.org/configuration/options#secret](https://next-auth.js.org/configuration/options#secret) | | -| NEXTAUTH_URL | Needed by the next-auth library for [handling auth requests and callbacks](https://next-auth.js.org/configuration/options#nextauth_url). Set the environment variable to the canonical URL of your site. Not needed in Vercel deploys. | | -| NEXT_PUBLIC_API_URL | URL of the API. | https://jsonplaceholder.typicode.com | -| NEXT_PUBLIC_GA_TRACKING_ID | Google Analytics tracking ID. If you're working with an Google Analytics 4 property, you have a Measurement ID instead of a Tracking ID. | | -| NEXT_PUBLIC_BASE_PATH | As this project should live in a subpath of a domain, we need to specify a basePath inside the next.config.js. You may think this variable must be without the NEXT_PUBLIC but it also affects the images urls. That's why we need it at build and run time. We MUST leave it as an empty string for Vercel and local environments = "" [https://nextjs.org/docs/pages/api-reference/next-config-js/basePath](https://nextjs.org/docs/pages/api-reference/next-config-js/basePath) | | - - - - +| Variable name | Description | Default value | +| -------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -----------------------------------: | +| NEXTAUTH_SECRET | Key used to encrypt the NextAuth.js JWT, and to hash email verification tokens. Do not forget to add a secret. NextAuth can handle without it in development mode, but it won't in production! [https://next-auth.js.org/configuration/options#secret](https://next-auth.js.org/configuration/options#secret) | | +| NEXTAUTH_URL | Needed by the next-auth library for [handling auth requests and callbacks](https://next-auth.js.org/configuration/options#nextauth_url). Set the environment variable to the canonical URL of your site. Not needed in Vercel deploys. | | +| NEXT_PUBLIC_API_URL | URL of the API. | https://jsonplaceholder.typicode.com | +| NEXT_PUBLIC_GA_TRACKING_ID | Google Analytics tracking ID. If you're working with an Google Analytics 4 property, you have a Measurement ID instead of a Tracking ID. | | +| NEXT_PUBLIC_BASE_PATH | As this project should live in a subpath of a domain, we need to specify a basePath inside the next.config.js. You may think this variable must be without the NEXT_PUBLIC but it also affects the images urls. That's why we need it at build and run time. We MUST leave it as an empty string for Vercel and local environments = "" [https://nextjs.org/docs/pages/api-reference/next-config-js/basePath](https://nextjs.org/docs/pages/api-reference/next-config-js/basePath) | | diff --git a/client/cypress/fixtures/profile.json b/client/cypress/fixtures/profile.json index b6c355ca..a95e88f9 100644 --- a/client/cypress/fixtures/profile.json +++ b/client/cypress/fixtures/profile.json @@ -2,4 +2,4 @@ "id": 8739, "name": "Jane", "email": "jane@example.com" -} \ No newline at end of file +} diff --git a/client/cypress/fixtures/users.json b/client/cypress/fixtures/users.json index 79b699aa..82a0056b 100644 --- a/client/cypress/fixtures/users.json +++ b/client/cypress/fixtures/users.json @@ -229,4 +229,4 @@ "bs": "target end-to-end models" } } -] \ No newline at end of file +] diff --git a/client/cypress/tsconfig.json b/client/cypress/tsconfig.json index 0953a608..817fb364 100644 --- a/client/cypress/tsconfig.json +++ b/client/cypress/tsconfig.json @@ -5,5 +5,5 @@ "types": ["cypress", "node"], "isolatedModules": false }, - "include": ["**/*.ts"], + "include": ["**/*.ts"] } diff --git a/client/cypress/unit/unit-example.spec.js b/client/cypress/unit/unit-example.spec.js index 8019d566..13fcb70a 100644 --- a/client/cypress/unit/unit-example.spec.js +++ b/client/cypress/unit/unit-example.spec.js @@ -1,5 +1,5 @@ describe('Unit test example', () => { it('should work', () => { expect([]).to.deep.equal([]); - }) + }); }); diff --git a/client/docker-compose.yml b/client/docker-compose.yml index 50b36bad..ba074591 100644 --- a/client/docker-compose.yml +++ b/client/docker-compose.yml @@ -1,6 +1,6 @@ -version: "3.9" # optional since v1.27.0 +version: '3.9' # optional since v1.27.0 services: app: build: . ports: - - "3000:3000" + - '3000:3000' diff --git a/client/pnpm-lock.yaml b/client/pnpm-lock.yaml index 2a5d57bd..9a650350 100644 --- a/client/pnpm-lock.yaml +++ b/client/pnpm-lock.yaml @@ -5,7 +5,6 @@ settings: excludeLinksFromLockfile: false importers: - .: dependencies: '@artsy/fresnel': @@ -236,339 +235,581 @@ importers: version: 4.5.2 packages: - '@artsy/fresnel@3.5.0': - resolution: {integrity: sha512-pqdQj4sbrgELlEKk+vR8vpmjgmSxk96PW7M+pWUT/UpHKD43YKCVTfe72z2WOqQru3ohobFvsnybQg/UbeSVtA==} - engines: {node: '>=12.20.2', yarn: 1.x.x} + resolution: + { + integrity: sha512-pqdQj4sbrgELlEKk+vR8vpmjgmSxk96PW7M+pWUT/UpHKD43YKCVTfe72z2WOqQru3ohobFvsnybQg/UbeSVtA==, + } + engines: { node: '>=12.20.2', yarn: 1.x.x } peerDependencies: react: '>=16.3.0 <18.0.0' '@babel/runtime-corejs3@7.26.0': - resolution: {integrity: sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-YXHu5lN8kJCb1LOb9PgV6pvak43X2h4HvRApcN5SdWeaItQOzfn1hgP6jasD6KWQyJDBxrVmA9o9OivlnNJK/w==, + } + engines: { node: '>=6.9.0' } '@babel/runtime@7.26.0': - resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==, + } + engines: { node: '>=6.9.0' } '@cfcs/core@0.0.24': - resolution: {integrity: sha512-feB38qu+eDk0Pggh/yR7gjaNmvUYA2uCxHP3Pz2MLE4LZ/9jPdtu8bzCSI47yTEhWyZCF5Pk698hdz8IN2mTjA==} + resolution: + { + integrity: sha512-feB38qu+eDk0Pggh/yR7gjaNmvUYA2uCxHP3Pz2MLE4LZ/9jPdtu8bzCSI47yTEhWyZCF5Pk698hdz8IN2mTjA==, + } '@cfcs/core@0.1.0': - resolution: {integrity: sha512-kvYX0RpL45XTHJ5sW7teNbKeAa7pK3nNqaJPoFfZDPTIBJOkTtRD3QhkBG+O3Hu69a8xeMoPvF6y/RtJ6JUOdA==} + resolution: + { + integrity: sha512-kvYX0RpL45XTHJ5sW7teNbKeAa7pK3nNqaJPoFfZDPTIBJOkTtRD3QhkBG+O3Hu69a8xeMoPvF6y/RtJ6JUOdA==, + } '@colors/colors@1.5.0': - resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} - engines: {node: '>=0.1.90'} + resolution: + { + integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==, + } + engines: { node: '>=0.1.90' } '@cypress/request@2.88.12': - resolution: {integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA==, + } + engines: { node: '>= 6' } '@cypress/xvfb@1.2.4': - resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} + resolution: + { + integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==, + } '@dnd-kit/accessibility@3.1.1': - resolution: {integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==} + resolution: + { + integrity: sha512-2P+YgaXF+gRsIihwwY1gCsQSYnu9Zyj2py8kY5fFvUM1qm2WA2u639R6YNVfU4GWr+ZM5mqEsfHZZLoRONbemw==, + } peerDependencies: react: '>=16.8.0' '@dnd-kit/core@6.0.5': - resolution: {integrity: sha512-3nL+Zy5cT+1XwsWdlXIvGIFvbuocMyB4NBxTN74DeBaBqeWdH9JsnKwQv7buZQgAHmAH+eIENfS1ginkvW6bCw==} + resolution: + { + integrity: sha512-3nL+Zy5cT+1XwsWdlXIvGIFvbuocMyB4NBxTN74DeBaBqeWdH9JsnKwQv7buZQgAHmAH+eIENfS1ginkvW6bCw==, + } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' '@dnd-kit/modifiers@6.0.0': - resolution: {integrity: sha512-V3+JSo6/BTcgPRHiNUTSKgqVv/doKXg+T4Z0QvKiiXp+uIyJTUtPkQOBRQApUWi3ApBhnoWljyt/3xxY4fTd0Q==} + resolution: + { + integrity: sha512-V3+JSo6/BTcgPRHiNUTSKgqVv/doKXg+T4Z0QvKiiXp+uIyJTUtPkQOBRQApUWi3ApBhnoWljyt/3xxY4fTd0Q==, + } peerDependencies: '@dnd-kit/core': ^6.0.0 '@dnd-kit/sortable@7.0.1': - resolution: {integrity: sha512-n77qAzJQtMMywu25sJzhz3gsHnDOUlEjTtnRl8A87rWIhnu32zuP+7zmFjwGgvqfXmRufqiHOSlH7JPC/tnJ8Q==} + resolution: + { + integrity: sha512-n77qAzJQtMMywu25sJzhz3gsHnDOUlEjTtnRl8A87rWIhnu32zuP+7zmFjwGgvqfXmRufqiHOSlH7JPC/tnJ8Q==, + } peerDependencies: '@dnd-kit/core': ^6.0.4 react: '>=16.8.0' '@dnd-kit/utilities@3.2.0': - resolution: {integrity: sha512-h65/pn2IPCCIWwdlR2BMLqRkDxpTEONA+HQW3n765HBijLYGyrnTCLa2YQt8VVjjSQD6EfFlTE6aS2Q/b6nb2g==} + resolution: + { + integrity: sha512-h65/pn2IPCCIWwdlR2BMLqRkDxpTEONA+HQW3n765HBijLYGyrnTCLa2YQt8VVjjSQD6EfFlTE6aS2Q/b6nb2g==, + } peerDependencies: react: '>=16.8.0' '@egjs/agent@2.4.4': - resolution: {integrity: sha512-cvAPSlUILhBBOakn2krdPnOGv5hAZq92f1YHxYcfu0p7uarix2C6Ia3AVizpS1SGRZGiEkIS5E+IVTLg1I2Iog==} + resolution: + { + integrity: sha512-cvAPSlUILhBBOakn2krdPnOGv5hAZq92f1YHxYcfu0p7uarix2C6Ia3AVizpS1SGRZGiEkIS5E+IVTLg1I2Iog==, + } '@egjs/axes@3.9.1': - resolution: {integrity: sha512-vaqUe/boRDk/A4TjiPtMv+lf7c4Q2jTER/Hw4I61NiJUyPftlZjaP4cteBCQejFyZmzimmA2W0cLmYZHTjBY8A==} + resolution: + { + integrity: sha512-vaqUe/boRDk/A4TjiPtMv+lf7c4Q2jTER/Hw4I61NiJUyPftlZjaP4cteBCQejFyZmzimmA2W0cLmYZHTjBY8A==, + } '@egjs/component@3.0.5': - resolution: {integrity: sha512-cLcGizTrrUNA2EYE3MBmEDt2tQv1joVP1Q3oDisZ5nw0MZDx2kcgEXM+/kZpfa/PAkFvYVhRUZwytIQWoN3V/w==} + resolution: + { + integrity: sha512-cLcGizTrrUNA2EYE3MBmEDt2tQv1joVP1Q3oDisZ5nw0MZDx2kcgEXM+/kZpfa/PAkFvYVhRUZwytIQWoN3V/w==, + } '@egjs/flicking@4.9.3': - resolution: {integrity: sha512-QRe/6iN7TgE3yu0vMLmDWgjpwacjSqhAwmCG+8qLN3qJ31BaHgvieRSJnq49LQX2OZtREWrS39HCECvfXc6Qmg==} + resolution: + { + integrity: sha512-QRe/6iN7TgE3yu0vMLmDWgjpwacjSqhAwmCG+8qLN3qJ31BaHgvieRSJnq49LQX2OZtREWrS39HCECvfXc6Qmg==, + } '@egjs/imready@1.4.1': - resolution: {integrity: sha512-JIOBs4lB7FYdsKi5uvz2j3SObX8eShtZjtqlOH41tm185aJOQZwiKBK8+V4MxzG4X6DqVhpdN8UcuVwBbElfsg==} + resolution: + { + integrity: sha512-JIOBs4lB7FYdsKi5uvz2j3SObX8eShtZjtqlOH41tm185aJOQZwiKBK8+V4MxzG4X6DqVhpdN8UcuVwBbElfsg==, + } '@egjs/list-differ@1.0.1': - resolution: {integrity: sha512-OTFTDQcWS+1ZREOdCWuk5hCBgYO4OsD30lXcOCyVOAjXMhgL5rBRDnt/otb6Nz8CzU0L/igdcaQBDLWc4t9gvg==} + resolution: + { + integrity: sha512-OTFTDQcWS+1ZREOdCWuk5hCBgYO4OsD30lXcOCyVOAjXMhgL5rBRDnt/otb6Nz8CzU0L/igdcaQBDLWc4t9gvg==, + } '@egjs/react-flicking@4.9.4': - resolution: {integrity: sha512-5q2jqzpIfs1SOx+3ScMoR/DhcylQn8Vs4wujuYFA6grFRzvYoTvjinMzwCJnyA0VGHBg4hDJAAu0AdO5Aovt4g==} + resolution: + { + integrity: sha512-5q2jqzpIfs1SOx+3ScMoR/DhcylQn8Vs4wujuYFA6grFRzvYoTvjinMzwCJnyA0VGHBg4hDJAAu0AdO5Aovt4g==, + } '@emotion/is-prop-valid@0.8.8': - resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} + resolution: + { + integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==, + } '@emotion/memoize@0.7.4': - resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} + resolution: + { + integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==, + } '@eslint-community/eslint-utils@4.4.1': - resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 '@eslint-community/regexpp@4.12.1': - resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + resolution: + { + integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==, + } + engines: { node: ^12.0.0 || ^14.0.0 || >=16.0.0 } '@eslint/eslintrc@2.1.4': - resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@eslint/js@8.57.0': - resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@floating-ui/core@1.6.8': - resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==} + resolution: + { + integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==, + } '@floating-ui/dom@1.6.12': - resolution: {integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==} + resolution: + { + integrity: sha512-NP83c0HjokcGVEMeoStg317VD9W7eDlGK7457dMBANbKA6GJZdc7rjujdgqzTaz93jkGgc5P/jeWbaCHnMNc+w==, + } '@floating-ui/react-dom-interactions@0.9.2': - resolution: {integrity: sha512-1I0urs4jlGuo4FRukvjtMmdUwxqvgwtTlESEPVwEvFGHXVh1PKkKaPZJ0Dcp9B8DQt4ewQEbwJxsoker2pDYTQ==} + resolution: + { + integrity: sha512-1I0urs4jlGuo4FRukvjtMmdUwxqvgwtTlESEPVwEvFGHXVh1PKkKaPZJ0Dcp9B8DQt4ewQEbwJxsoker2pDYTQ==, + } deprecated: Package renamed to @floating-ui/react peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' '@floating-ui/react-dom@1.3.0': - resolution: {integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==} + resolution: + { + integrity: sha512-htwHm67Ji5E/pROEAr7f8IKFShuiCKHwUC/UY4vC3I5jiSvGFAYnSYiZO5MlGmads+QqvUkR9ANHEguGrDv72g==, + } peerDependencies: react: '>=16.8.0' react-dom: '>=16.8.0' '@floating-ui/utils@0.2.8': - resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==} + resolution: + { + integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==, + } '@hapi/hoek@9.3.0': - resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} + resolution: + { + integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==, + } '@hapi/topo@5.1.0': - resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + resolution: + { + integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==, + } '@headlessui/react@1.7.3': - resolution: {integrity: sha512-LGp06SrGv7BMaIQlTs8s2G06moqkI0cb0b8stgq7KZ3xcHdH3qMP+cRyV7qe5x4XEW/IGY48BW4fLesD6NQLng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LGp06SrGv7BMaIQlTs8s2G06moqkI0cb0b8stgq7KZ3xcHdH3qMP+cRyV7qe5x4XEW/IGY48BW4fLesD6NQLng==, + } + engines: { node: '>=10' } peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 '@humanwhocodes/config-array@0.11.14': - resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} - engines: {node: '>=10.10.0'} + resolution: + { + integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==, + } + engines: { node: '>=10.10.0' } deprecated: Use @eslint/config-array instead '@humanwhocodes/module-importer@1.0.1': - resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} - engines: {node: '>=12.22'} + resolution: + { + integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==, + } + engines: { node: '>=12.22' } '@humanwhocodes/object-schema@2.0.3': - resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + resolution: + { + integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==, + } deprecated: Use @eslint/object-schema instead '@isaacs/cliui@8.0.2': - resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==, + } + engines: { node: '>=12' } '@juggle/resize-observer@3.4.0': - resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==} + resolution: + { + integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==, + } '@motionone/animation@10.18.0': - resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==} + resolution: + { + integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==, + } '@motionone/dom@10.13.1': - resolution: {integrity: sha512-zjfX+AGMIt/fIqd/SL1Lj93S6AiJsEA3oc5M9VkUr+Gz+juRmYN1vfvZd6MvEkSqEjwPQgcjN7rGZHrDB9APfQ==} + resolution: + { + integrity: sha512-zjfX+AGMIt/fIqd/SL1Lj93S6AiJsEA3oc5M9VkUr+Gz+juRmYN1vfvZd6MvEkSqEjwPQgcjN7rGZHrDB9APfQ==, + } '@motionone/easing@10.18.0': - resolution: {integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==} + resolution: + { + integrity: sha512-VcjByo7XpdLS4o9T8t99JtgxkdMcNWD3yHU/n6CLEz3bkmKDRZyYQ/wmSf6daum8ZXqfUAgFeCZSpJZIMxaCzg==, + } '@motionone/generators@10.18.0': - resolution: {integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==} + resolution: + { + integrity: sha512-+qfkC2DtkDj4tHPu+AFKVfR/C30O1vYdvsGYaR13W/1cczPrrcjdvYCj0VLFuRMN+lP1xvpNZHCRNM4fBzn1jg==, + } '@motionone/types@10.17.1': - resolution: {integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==} + resolution: + { + integrity: sha512-KaC4kgiODDz8hswCrS0btrVrzyU2CSQKO7Ps90ibBVSQmjkrt2teqta6/sOG59v7+dPnKMAg13jyqtMKV2yJ7A==, + } '@motionone/utils@10.18.0': - resolution: {integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==} + resolution: + { + integrity: sha512-3XVF7sgyTSI2KWvTf6uLlBJ5iAgRgmvp3bpuOiQJvInd4nZ19ET8lX5unn30SlmRH7hXbBbH+Gxd0m0klJ3Xtw==, + } '@mrmlnc/readdir-enhanced@2.2.1': - resolution: {integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==, + } + engines: { node: '>=4' } '@next/env@14.2.18': - resolution: {integrity: sha512-2vWLOUwIPgoqMJKG6dt35fVXVhgM09tw4tK3/Q34GFXDrfiHlG7iS33VA4ggnjWxjiz9KV5xzfsQzJX6vGAekA==} + resolution: + { + integrity: sha512-2vWLOUwIPgoqMJKG6dt35fVXVhgM09tw4tK3/Q34GFXDrfiHlG7iS33VA4ggnjWxjiz9KV5xzfsQzJX6vGAekA==, + } '@next/eslint-plugin-next@14.2.18': - resolution: {integrity: sha512-KyYTbZ3GQwWOjX3Vi1YcQbekyGP0gdammb7pbmmi25HBUCINzDReyrzCMOJIeZisK1Q3U6DT5Rlc4nm2/pQeXA==} + resolution: + { + integrity: sha512-KyYTbZ3GQwWOjX3Vi1YcQbekyGP0gdammb7pbmmi25HBUCINzDReyrzCMOJIeZisK1Q3U6DT5Rlc4nm2/pQeXA==, + } '@next/swc-darwin-arm64@14.2.18': - resolution: {integrity: sha512-tOBlDHCjGdyLf0ube/rDUs6VtwNOajaWV+5FV/ajPgrvHeisllEdymY/oDgv2cx561+gJksfMUtqf8crug7sbA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-tOBlDHCjGdyLf0ube/rDUs6VtwNOajaWV+5FV/ajPgrvHeisllEdymY/oDgv2cx561+gJksfMUtqf8crug7sbA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [darwin] '@next/swc-darwin-x64@14.2.18': - resolution: {integrity: sha512-uJCEjutt5VeJ30jjrHV1VIHCsbMYnEqytQgvREx+DjURd/fmKy15NaVK4aR/u98S1LGTnjq35lRTnRyygglxoA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-uJCEjutt5VeJ30jjrHV1VIHCsbMYnEqytQgvREx+DjURd/fmKy15NaVK4aR/u98S1LGTnjq35lRTnRyygglxoA==, + } + engines: { node: '>= 10' } cpu: [x64] os: [darwin] '@next/swc-linux-arm64-gnu@14.2.18': - resolution: {integrity: sha512-IL6rU8vnBB+BAm6YSWZewc+qvdL1EaA+VhLQ6tlUc0xp+kkdxQrVqAnh8Zek1ccKHlTDFRyAft0e60gteYmQ4A==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-IL6rU8vnBB+BAm6YSWZewc+qvdL1EaA+VhLQ6tlUc0xp+kkdxQrVqAnh8Zek1ccKHlTDFRyAft0e60gteYmQ4A==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] '@next/swc-linux-arm64-musl@14.2.18': - resolution: {integrity: sha512-RCaENbIZqKKqTlL8KNd+AZV/yAdCsovblOpYFp0OJ7ZxgLNbV5w23CUU1G5On+0fgafrsGcW+GdMKdFjaRwyYA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-RCaENbIZqKKqTlL8KNd+AZV/yAdCsovblOpYFp0OJ7ZxgLNbV5w23CUU1G5On+0fgafrsGcW+GdMKdFjaRwyYA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [linux] '@next/swc-linux-x64-gnu@14.2.18': - resolution: {integrity: sha512-3kmv8DlyhPRCEBM1Vavn8NjyXtMeQ49ID0Olr/Sut7pgzaQTo4h01S7Z8YNE0VtbowyuAL26ibcz0ka6xCTH5g==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-3kmv8DlyhPRCEBM1Vavn8NjyXtMeQ49ID0Olr/Sut7pgzaQTo4h01S7Z8YNE0VtbowyuAL26ibcz0ka6xCTH5g==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] '@next/swc-linux-x64-musl@14.2.18': - resolution: {integrity: sha512-mliTfa8seVSpTbVEcKEXGjC18+TDII8ykW4a36au97spm9XMPqQTpdGPNBJ9RySSFw9/hLuaCMByluQIAnkzlw==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-mliTfa8seVSpTbVEcKEXGjC18+TDII8ykW4a36au97spm9XMPqQTpdGPNBJ9RySSFw9/hLuaCMByluQIAnkzlw==, + } + engines: { node: '>= 10' } cpu: [x64] os: [linux] '@next/swc-win32-arm64-msvc@14.2.18': - resolution: {integrity: sha512-J5g0UFPbAjKYmqS3Cy7l2fetFmWMY9Oao32eUsBPYohts26BdrMUyfCJnZFQkX9npYaHNDOWqZ6uV9hSDPw9NA==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-J5g0UFPbAjKYmqS3Cy7l2fetFmWMY9Oao32eUsBPYohts26BdrMUyfCJnZFQkX9npYaHNDOWqZ6uV9hSDPw9NA==, + } + engines: { node: '>= 10' } cpu: [arm64] os: [win32] '@next/swc-win32-ia32-msvc@14.2.18': - resolution: {integrity: sha512-Ynxuk4ZgIpdcN7d16ivJdjsDG1+3hTvK24Pp8DiDmIa2+A4CfhJSEHHVndCHok6rnLUzAZD+/UOKESQgTsAZGg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-Ynxuk4ZgIpdcN7d16ivJdjsDG1+3hTvK24Pp8DiDmIa2+A4CfhJSEHHVndCHok6rnLUzAZD+/UOKESQgTsAZGg==, + } + engines: { node: '>= 10' } cpu: [ia32] os: [win32] '@next/swc-win32-x64-msvc@14.2.18': - resolution: {integrity: sha512-dtRGMhiU9TN5nyhwzce+7c/4CCeykYS+ipY/4mIrGzJ71+7zNo55ZxCB7cAVuNqdwtYniFNR2c9OFQ6UdFIMcg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-dtRGMhiU9TN5nyhwzce+7c/4CCeykYS+ipY/4mIrGzJ71+7zNo55ZxCB7cAVuNqdwtYniFNR2c9OFQ6UdFIMcg==, + } + engines: { node: '>= 10' } cpu: [x64] os: [win32] '@nodelib/fs.scandir@2.1.5': - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: '>= 8' } '@nodelib/fs.stat@1.1.3': - resolution: {integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==, + } + engines: { node: '>= 6' } '@nodelib/fs.stat@2.0.5': - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: '>= 8' } '@nodelib/fs.walk@1.2.8': - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: '>= 8' } '@nolyfill/is-core-module@1.0.39': - resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} - engines: {node: '>=12.4.0'} + resolution: + { + integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==, + } + engines: { node: '>=12.4.0' } '@panva/hkdf@1.2.1': - resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==} + resolution: + { + integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==, + } '@pkgjs/parseargs@0.11.0': - resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==, + } + engines: { node: '>=14' } '@react-hook/debounce@4.0.0': - resolution: {integrity: sha512-706Xcg+KKWHk9BuZQUQ0ZQKp9zhv3/MbqFenWVfHcynYpSGRVwQTzJRGvPxvsdtXxJv+HfgKTY/O/hEejakwmA==} + resolution: + { + integrity: sha512-706Xcg+KKWHk9BuZQUQ0ZQKp9zhv3/MbqFenWVfHcynYpSGRVwQTzJRGvPxvsdtXxJv+HfgKTY/O/hEejakwmA==, + } peerDependencies: react: '>=16.8' '@react-hook/latest@1.0.3': - resolution: {integrity: sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==} + resolution: + { + integrity: sha512-dy6duzl+JnAZcDbNTfmaP3xHiKtbXYOaz3G51MGVljh548Y8MWzTr+PHLOfvpypEVW9zwvl+VyKjbWKEVbV1Rg==, + } peerDependencies: react: '>=16.8' '@reduxjs/toolkit@1.5.1': - resolution: {integrity: sha512-PngZKuwVZsd+mimnmhiOQzoD0FiMjqVks6ituO1//Ft5UEX5Ca9of13NEjo//pU22Jk7z/mdXVsmDfgsig1osA==} + resolution: + { + integrity: sha512-PngZKuwVZsd+mimnmhiOQzoD0FiMjqVks6ituO1//Ft5UEX5Ca9of13NEjo//pU22Jk7z/mdXVsmDfgsig1osA==, + } '@rtsao/scc@1.1.0': - resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + resolution: + { + integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==, + } '@rushstack/eslint-patch@1.10.4': - resolution: {integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==} + resolution: + { + integrity: sha512-WJgX9nzTqknM393q1QJDJmoW28kUfEnybeTfVNcNAPnIx210RXm2DiXiHzfNPJNIUUb1tJnz/l4QGtJ30PgWmA==, + } '@sideway/address@4.1.5': - resolution: {integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==} + resolution: + { + integrity: sha512-IqO/DUQHUkPeixNQ8n0JA6102hT9CmaljNTPmQ1u8MEhBo/R4Q8eKLN/vGZxuebwOroDB4cbpjheD4+/sKFK4Q==, + } '@sideway/formula@3.0.1': - resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==} + resolution: + { + integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==, + } '@sideway/pinpoint@2.0.0': - resolution: {integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==} + resolution: + { + integrity: sha512-RNiOoTPkptFtSVzQevY/yWtZwf/RxyVnPy/OcA9HBM3MlGDnBEYL5B41H0MTn0Uec8Hi+2qUtTfG2WWZBmMejQ==, + } '@swc/counter@0.1.3': - resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} + resolution: + { + integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==, + } '@swc/helpers@0.5.5': - resolution: {integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==} + resolution: + { + integrity: sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==, + } '@tailwindcss/aspect-ratio@0.4.0': - resolution: {integrity: sha512-WJu0I4PpqNPuutpaA9zDUq2JXR+lorZ7PbLcKNLmb6GL9/HLfC7w3CRsMhJF4BbYd/lkY6CfXOvkYpuGnZfkpQ==} + resolution: + { + integrity: sha512-WJu0I4PpqNPuutpaA9zDUq2JXR+lorZ7PbLcKNLmb6GL9/HLfC7w3CRsMhJF4BbYd/lkY6CfXOvkYpuGnZfkpQ==, + } peerDependencies: tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' '@tailwindcss/forms@0.5.3': - resolution: {integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==} + resolution: + { + integrity: sha512-y5mb86JUoiUgBjY/o6FJSFZSEttfb3Q5gllE4xoKjAAD+vBrnIhE4dViwUuow3va8mpH4s9jyUbUbrRGoRdc2Q==, + } peerDependencies: tailwindcss: '>=3.0.0 || >= 3.0.0-alpha.1' '@tailwindcss/line-clamp@0.4.0': - resolution: {integrity: sha512-HQZo6gfx1D0+DU3nWlNLD5iA6Ef4JAXh0LeD8lOGrJwEDBwwJNKQza6WoXhhY1uQrxOuU8ROxV7CqiQV4CoiLw==} + resolution: + { + integrity: sha512-HQZo6gfx1D0+DU3nWlNLD5iA6Ef4JAXh0LeD8lOGrJwEDBwwJNKQza6WoXhhY1uQrxOuU8ROxV7CqiQV4CoiLw==, + } peerDependencies: tailwindcss: '>=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1' '@tailwindcss/typography@0.5.7': - resolution: {integrity: sha512-JTTSTrgZfp6Ki4svhPA4mkd9nmQ/j9EfE7SbHJ1cLtthKkpW2OxsFXzSmxbhYbEkfNIyAyhle5p4SYyKRbz/jg==} + resolution: + { + integrity: sha512-JTTSTrgZfp6Ki4svhPA4mkd9nmQ/j9EfE7SbHJ1cLtthKkpW2OxsFXzSmxbhYbEkfNIyAyhle5p4SYyKRbz/jg==, + } peerDependencies: tailwindcss: '>=3.0.0 || insiders' '@tanem/react-nprogress@5.0.11': - resolution: {integrity: sha512-zLOsKXzTjXkCEgicC+wHxZiXl5/ONOQIFoZ1HBmHmNbrnMStg4/T6gmyBLRDu4lQ5cS00F1ElRwLSODd0xmNMg==} + resolution: + { + integrity: sha512-zLOsKXzTjXkCEgicC+wHxZiXl5/ONOQIFoZ1HBmHmNbrnMStg4/T6gmyBLRDu4lQ5cS00F1ElRwLSODd0xmNMg==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 '@tanstack/query-core@4.36.1': - resolution: {integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==} + resolution: + { + integrity: sha512-DJSilV5+ytBP1FbFcEJovv4rnnm/CokuVvrBEtW/Va9DvuJ3HksbXUJEpI0aV1KtuL4ZoO9AVE6PyNLzF7tLeA==, + } '@tanstack/react-query@4.0.10': - resolution: {integrity: sha512-Wn5QhZUE5wvr6rGClV7KeQIUsdTmYR9mgmMZen7DSRWauHW2UTynFg3Kkf6pw+XlxxOLsyLWwz/Q6q1lSpM3TQ==} + resolution: + { + integrity: sha512-Wn5QhZUE5wvr6rGClV7KeQIUsdTmYR9mgmMZen7DSRWauHW2UTynFg3Kkf6pw+XlxxOLsyLWwz/Q6q1lSpM3TQ==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -580,106 +821,202 @@ packages: optional: true '@tanstack/react-table@8.20.5': - resolution: {integrity: sha512-WEHopKw3znbUZ61s9i0+i9g8drmDo6asTWbrQh8Us63DAk/M0FkmIqERew6P71HI75ksZ2Pxyuf4vvKh9rAkiA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-WEHopKw3znbUZ61s9i0+i9g8drmDo6asTWbrQh8Us63DAk/M0FkmIqERew6P71HI75ksZ2Pxyuf4vvKh9rAkiA==, + } + engines: { node: '>=12' } peerDependencies: react: '>=16.8' react-dom: '>=16.8' '@tanstack/table-core@8.20.5': - resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==, + } + engines: { node: '>=12' } '@turf/boolean-clockwise@6.5.0': - resolution: {integrity: sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==} + resolution: + { + integrity: sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==, + } '@turf/clone@6.5.0': - resolution: {integrity: sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==} + resolution: + { + integrity: sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==, + } '@turf/helpers@6.5.0': - resolution: {integrity: sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==} + resolution: + { + integrity: sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==, + } '@turf/invariant@6.5.0': - resolution: {integrity: sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==} + resolution: + { + integrity: sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==, + } '@turf/meta@6.5.0': - resolution: {integrity: sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==} + resolution: + { + integrity: sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==, + } '@turf/rewind@6.5.0': - resolution: {integrity: sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==} + resolution: + { + integrity: sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==, + } '@types/d3-color@1.4.5': - resolution: {integrity: sha512-5sNP3DmtSnSozxcjqmzQKsDOuVJXZkceo1KJScDc1982kk/TS9mTPc6lpli1gTu1MIBF1YWutpHpjucNWcIj5g==} + resolution: + { + integrity: sha512-5sNP3DmtSnSozxcjqmzQKsDOuVJXZkceo1KJScDc1982kk/TS9mTPc6lpli1gTu1MIBF1YWutpHpjucNWcIj5g==, + } '@types/d3-interpolate@1.4.5': - resolution: {integrity: sha512-k9L18hXXv7OvK4PqW1kSFYIzasGOvfhPUWmHFkoZ8/ci99EAmY4HoF6zMefrHl0SGV7XYc7Qq2MNh8dK3edg5A==} + resolution: + { + integrity: sha512-k9L18hXXv7OvK4PqW1kSFYIzasGOvfhPUWmHFkoZ8/ci99EAmY4HoF6zMefrHl0SGV7XYc7Qq2MNh8dK3edg5A==, + } '@types/d3-path@1.0.11': - resolution: {integrity: sha512-4pQMp8ldf7UaB/gR8Fvvy69psNHkTpD/pVw3vmEi8iZAB9EPMBruB1JvHO4BIq9QkUUd2lV1F5YXpMNj7JPBpw==} + resolution: + { + integrity: sha512-4pQMp8ldf7UaB/gR8Fvvy69psNHkTpD/pVw3vmEi8iZAB9EPMBruB1JvHO4BIq9QkUUd2lV1F5YXpMNj7JPBpw==, + } '@types/d3-scale@3.3.5': - resolution: {integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==} + resolution: + { + integrity: sha512-YOpKj0kIEusRf7ofeJcSZQsvKbnTwpe1DUF+P2qsotqG53kEsjm7EzzliqQxMkAWdkZcHrg5rRhB4JiDOQPX+A==, + } '@types/d3-shape@1.3.12': - resolution: {integrity: sha512-8oMzcd4+poSLGgV0R1Q1rOlx/xdmozS4Xab7np0eamFFUYq71AU9pOCJEFnkXW2aI/oXdVYJzw6pssbSut7Z9Q==} + resolution: + { + integrity: sha512-8oMzcd4+poSLGgV0R1Q1rOlx/xdmozS4Xab7np0eamFFUYq71AU9pOCJEFnkXW2aI/oXdVYJzw6pssbSut7Z9Q==, + } '@types/d3-time@2.1.4': - resolution: {integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==} + resolution: + { + integrity: sha512-BTfLsxTeo7yFxI/haOOf1ZwJ6xKgQLT9dCp+EcmQv87Gox6X+oKl4mLKfO6fnWm3P22+A6DknMNEZany8ql2Rw==, + } '@types/geojson@7946.0.14': - resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} + resolution: + { + integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==, + } '@types/gtag.js@0.0.5': - resolution: {integrity: sha512-M9r87Q4gg/i4bJF/i2VGqP6nAoaGEgXRoNaOtaUsCT+yUo75upVRXOYU6oa8+U+JXgrC/TEE8X02zkjo49buHQ==} + resolution: + { + integrity: sha512-M9r87Q4gg/i4bJF/i2VGqP6nAoaGEgXRoNaOtaUsCT+yUo75upVRXOYU6oa8+U+JXgrC/TEE8X02zkjo49buHQ==, + } '@types/hoist-non-react-statics@3.3.5': - resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==} + resolution: + { + integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==, + } '@types/json-schema@7.0.15': - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + resolution: + { + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, + } '@types/json5@0.0.29': - resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } '@types/lodash@4.17.13': - resolution: {integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==} + resolution: + { + integrity: sha512-lfx+dftrEZcdBPczf9d0Qv0x+j/rfNCMuC6OcfXmO8gkfeNAY88PgKUbvG56whcN23gc27yenwF6oJZXGFpYxg==, + } '@types/node@14.18.63': - resolution: {integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==} + resolution: + { + integrity: sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==, + } '@types/prop-types@15.7.13': - resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==} + resolution: + { + integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==, + } '@types/q@1.5.8': - resolution: {integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==} + resolution: + { + integrity: sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw==, + } '@types/react-dom@18.0.6': - resolution: {integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==} + resolution: + { + integrity: sha512-/5OFZgfIPSwy+YuIBP/FgJnQnsxhZhjjrnxudMddeblOouIodEQ75X14Rr4wGSG/bknL+Omy9iWlLo1u/9GzAA==, + } '@types/react-redux@7.1.34': - resolution: {integrity: sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==} + resolution: + { + integrity: sha512-GdFaVjEbYv4Fthm2ZLvj1VSCedV7TqE5y1kNwnjSdBOTXuRSgowux6J8TAct15T3CKBr63UMk+2CO7ilRhyrAQ==, + } '@types/react@18.0.15': - resolution: {integrity: sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==} + resolution: + { + integrity: sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==, + } '@types/scheduler@0.23.0': - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} + resolution: + { + integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==, + } '@types/sinonjs__fake-timers@8.1.1': - resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} + resolution: + { + integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==, + } '@types/sizzle@2.3.9': - resolution: {integrity: sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==} + resolution: + { + integrity: sha512-xzLEyKB50yqCUPUJkIsrVvoWNfFUbIZI+RspLWt8u+tIW/BetMBZtgV2LY/2o+tYH8dRvQ+eoPf3NdhQCcLE2w==, + } '@types/use-sync-external-store@0.0.3': - resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==} + resolution: + { + integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==, + } '@types/yauzl@2.10.3': - resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + resolution: + { + integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==, + } '@typescript-eslint/eslint-plugin@5.13.0': - resolution: {integrity: sha512-vLktb2Uec81fxm/cfz2Hd6QaWOs8qdmVAZXLdOBX6JFJDhf6oDZpMzZ4/LZ6SFM/5DgDcxIMIvy3F+O9yZBuiQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-vLktb2Uec81fxm/cfz2Hd6QaWOs8qdmVAZXLdOBX6JFJDhf6oDZpMzZ4/LZ6SFM/5DgDcxIMIvy3F+O9yZBuiQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: '@typescript-eslint/parser': ^5.0.0 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 @@ -689,8 +1026,11 @@ packages: optional: true '@typescript-eslint/parser@5.0.0': - resolution: {integrity: sha512-B6D5rmmQ14I1fdzs71eL3DAuvnPHTY/t7rQABrL9BLnx/H51Un8ox1xqYAchs0/V2trcoyxB1lMJLlrwrJCDgw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-B6D5rmmQ14I1fdzs71eL3DAuvnPHTY/t7rQABrL9BLnx/H51Un8ox1xqYAchs0/V2trcoyxB1lMJLlrwrJCDgw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 typescript: '*' @@ -699,8 +1039,11 @@ packages: optional: true '@typescript-eslint/parser@8.16.0': - resolution: {integrity: sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: eslint: ^8.57.0 || ^9.0.0 typescript: '*' @@ -709,20 +1052,32 @@ packages: optional: true '@typescript-eslint/scope-manager@5.0.0': - resolution: {integrity: sha512-5RFjdA/ain/MDUHYXdF173btOKncIrLuBmA9s6FJhzDrRAyVSA+70BHg0/MW6TE+UiKVyRtX91XpVS0gVNwVDQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-5RFjdA/ain/MDUHYXdF173btOKncIrLuBmA9s6FJhzDrRAyVSA+70BHg0/MW6TE+UiKVyRtX91XpVS0gVNwVDQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/scope-manager@5.13.0': - resolution: {integrity: sha512-T4N8UvKYDSfVYdmJq7g2IPJYCRzwtp74KyDZytkR4OL3NRupvswvmJQJ4CX5tDSurW2cvCc1Ia1qM7d0jpa7IA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-T4N8UvKYDSfVYdmJq7g2IPJYCRzwtp74KyDZytkR4OL3NRupvswvmJQJ4CX5tDSurW2cvCc1Ia1qM7d0jpa7IA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/scope-manager@8.16.0': - resolution: {integrity: sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } '@typescript-eslint/type-utils@5.13.0': - resolution: {integrity: sha512-/nz7qFizaBM1SuqAKb7GLkcNn2buRdDgZraXlkhz+vUGiN1NZ9LzkA595tHHeduAiS2MsHqMNhE2zNzGdw43Yg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-/nz7qFizaBM1SuqAKb7GLkcNn2buRdDgZraXlkhz+vUGiN1NZ9LzkA595tHHeduAiS2MsHqMNhE2zNzGdw43Yg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: '*' typescript: '*' @@ -731,20 +1086,32 @@ packages: optional: true '@typescript-eslint/types@5.0.0': - resolution: {integrity: sha512-dU/pKBUpehdEqYuvkojmlv0FtHuZnLXFBn16zsDmlFF3LXkOpkAQ2vrKc3BidIIve9EMH2zfTlxqw9XM0fFN5w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dU/pKBUpehdEqYuvkojmlv0FtHuZnLXFBn16zsDmlFF3LXkOpkAQ2vrKc3BidIIve9EMH2zfTlxqw9XM0fFN5w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/types@5.13.0': - resolution: {integrity: sha512-LmE/KO6DUy0nFY/OoQU0XelnmDt+V8lPQhh8MOVa7Y5k2gGRd6U9Kp3wAjhB4OHg57tUO0nOnwYQhRRyEAyOyg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-LmE/KO6DUy0nFY/OoQU0XelnmDt+V8lPQhh8MOVa7Y5k2gGRd6U9Kp3wAjhB4OHg57tUO0nOnwYQhRRyEAyOyg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/types@8.16.0': - resolution: {integrity: sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } '@typescript-eslint/typescript-estree@5.0.0': - resolution: {integrity: sha512-V/6w+PPQMhinWKSn+fCiX5jwvd1vRBm7AX7SJQXEGQtwtBvjMPjaU3YTQ1ik2UF1u96X7tsB96HMnulG3eLi9Q==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-V/6w+PPQMhinWKSn+fCiX5jwvd1vRBm7AX7SJQXEGQtwtBvjMPjaU3YTQ1ik2UF1u96X7tsB96HMnulG3eLi9Q==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -752,8 +1119,11 @@ packages: optional: true '@typescript-eslint/typescript-estree@5.13.0': - resolution: {integrity: sha512-Q9cQow0DeLjnp5DuEDjLZ6JIkwGx3oYZe+BfcNuw/POhtpcxMTy18Icl6BJqTSd+3ftsrfuVb7mNHRZf7xiaNA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-Q9cQow0DeLjnp5DuEDjLZ6JIkwGx3oYZe+BfcNuw/POhtpcxMTy18Icl6BJqTSd+3ftsrfuVb7mNHRZf7xiaNA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -761,8 +1131,11 @@ packages: optional: true '@typescript-eslint/typescript-estree@8.16.0': - resolution: {integrity: sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } peerDependencies: typescript: '*' peerDependenciesMeta: @@ -770,832 +1143,1528 @@ packages: optional: true '@typescript-eslint/utils@5.13.0': - resolution: {integrity: sha512-+9oHlPWYNl6AwwoEt5TQryEHwiKRVjz7Vk6kaBeD3/kwHE5YqTGHtm/JZY8Bo9ITOeKutFaXnBlMgSATMJALUQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-+9oHlPWYNl6AwwoEt5TQryEHwiKRVjz7Vk6kaBeD3/kwHE5YqTGHtm/JZY8Bo9ITOeKutFaXnBlMgSATMJALUQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 '@typescript-eslint/visitor-keys@5.0.0': - resolution: {integrity: sha512-yRyd2++o/IrJdyHuYMxyFyBhU762MRHQ/bAGQeTnN3pGikfh+nEmM61XTqaDH1XDp53afZ+waXrk0ZvenoZ6xw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-yRyd2++o/IrJdyHuYMxyFyBhU762MRHQ/bAGQeTnN3pGikfh+nEmM61XTqaDH1XDp53afZ+waXrk0ZvenoZ6xw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/visitor-keys@5.13.0': - resolution: {integrity: sha512-HLKEAS/qA1V7d9EzcpLFykTePmOQqOFim8oCvhY3pZgQ8Hi38hYpHd9e5GN6nQBFQNecNhws5wkS9Y5XIO0s/g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-HLKEAS/qA1V7d9EzcpLFykTePmOQqOFim8oCvhY3pZgQ8Hi38hYpHd9e5GN6nQBFQNecNhws5wkS9Y5XIO0s/g==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } '@typescript-eslint/visitor-keys@8.16.0': - resolution: {integrity: sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } '@ungap/structured-clone@1.2.0': - resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + resolution: + { + integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==, + } '@visx/curve@2.17.0': - resolution: {integrity: sha512-8Fw2ZalgYbpeoelLqTOmMs/wD8maSKsKS9rRIwmHZ0O0XxY8iG9oVYbD4CLWzf/uFWCY6+qofk4J1g9BWQSXJQ==} + resolution: + { + integrity: sha512-8Fw2ZalgYbpeoelLqTOmMs/wD8maSKsKS9rRIwmHZ0O0XxY8iG9oVYbD4CLWzf/uFWCY6+qofk4J1g9BWQSXJQ==, + } '@visx/group@2.17.0': - resolution: {integrity: sha512-60Y2dIKRh3cp/Drpq//wM067ZNrnCcvFCXufPgIihv0Ix8O7oMsYxu3ch4XUMjks+U2IAZQr5Dnc+C9sTQFkhw==} + resolution: + { + integrity: sha512-60Y2dIKRh3cp/Drpq//wM067ZNrnCcvFCXufPgIihv0Ix8O7oMsYxu3ch4XUMjks+U2IAZQr5Dnc+C9sTQFkhw==, + } peerDependencies: react: ^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0 '@visx/responsive@2.17.0': - resolution: {integrity: sha512-3dY2shGbQnoknIRv3Vfnwsy3ZA8Q5Q/rYnTLiokWChYRfNC8NMPoX9mprEeb/gMAxtKjaLn3zcCgd8R+eetxIQ==} + resolution: + { + integrity: sha512-3dY2shGbQnoknIRv3Vfnwsy3ZA8Q5Q/rYnTLiokWChYRfNC8NMPoX9mprEeb/gMAxtKjaLn3zcCgd8R+eetxIQ==, + } peerDependencies: react: ^16.0.0-0 || ^17.0.0-0 || ^18.0.0-0 '@visx/scale@2.18.0': - resolution: {integrity: sha512-clH8HFblMlCuHvUjGRwenvbY1w9YXHU9fPl91Vbtd5bdM9xAN0Lo2+cgV46cvaX3YpnyVb4oNhlbPCBu3h6Rhw==} + resolution: + { + integrity: sha512-clH8HFblMlCuHvUjGRwenvbY1w9YXHU9fPl91Vbtd5bdM9xAN0Lo2+cgV46cvaX3YpnyVb4oNhlbPCBu3h6Rhw==, + } '@visx/shape@2.18.0': - resolution: {integrity: sha512-kVSEjnzswQMyFDa/IXE7K+WsAkl91xK6A4W6MbGfcUhfQn+AP0GorvotW7HZGjkIlbmuLl14+vRktDo5jqS/og==} + resolution: + { + integrity: sha512-kVSEjnzswQMyFDa/IXE7K+WsAkl91xK6A4W6MbGfcUhfQn+AP0GorvotW7HZGjkIlbmuLl14+vRktDo5jqS/og==, + } peerDependencies: react: ^16.3.0-0 || ^17.0.0-0 || ^18.0.0-0 '@webassemblyjs/ast@1.9.0': - resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==} + resolution: + { + integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==, + } '@webassemblyjs/floating-point-hex-parser@1.9.0': - resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==} + resolution: + { + integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==, + } '@webassemblyjs/helper-api-error@1.9.0': - resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==} + resolution: + { + integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==, + } '@webassemblyjs/helper-buffer@1.9.0': - resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==} + resolution: + { + integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==, + } '@webassemblyjs/helper-code-frame@1.9.0': - resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==} + resolution: + { + integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==, + } '@webassemblyjs/helper-fsm@1.9.0': - resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==} + resolution: + { + integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==, + } '@webassemblyjs/helper-module-context@1.9.0': - resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==} + resolution: + { + integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==, + } '@webassemblyjs/helper-wasm-bytecode@1.9.0': - resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==} + resolution: + { + integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==, + } '@webassemblyjs/helper-wasm-section@1.9.0': - resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==} + resolution: + { + integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==, + } '@webassemblyjs/ieee754@1.9.0': - resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==} + resolution: + { + integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==, + } '@webassemblyjs/leb128@1.9.0': - resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==} + resolution: + { + integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==, + } '@webassemblyjs/utf8@1.9.0': - resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==} + resolution: + { + integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==, + } '@webassemblyjs/wasm-edit@1.9.0': - resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==} + resolution: + { + integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==, + } '@webassemblyjs/wasm-gen@1.9.0': - resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==} + resolution: + { + integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==, + } '@webassemblyjs/wasm-opt@1.9.0': - resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==} + resolution: + { + integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==, + } '@webassemblyjs/wasm-parser@1.9.0': - resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==} + resolution: + { + integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==, + } '@webassemblyjs/wast-parser@1.9.0': - resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==} + resolution: + { + integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==, + } '@webassemblyjs/wast-printer@1.9.0': - resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==} + resolution: + { + integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==, + } '@xtuc/ieee754@1.2.0': - resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} + resolution: + { + integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==, + } '@xtuc/long@4.2.2': - resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} + resolution: + { + integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==, + } acorn-jsx@5.3.2: - resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 acorn-node@1.8.2: - resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} + resolution: + { + integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==, + } acorn-walk@7.2.0: - resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==, + } + engines: { node: '>=0.4.0' } acorn@6.4.2: - resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==, + } + engines: { node: '>=0.4.0' } hasBin: true acorn@7.4.1: - resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==, + } + engines: { node: '>=0.4.0' } hasBin: true acorn@8.14.0: - resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==, + } + engines: { node: '>=0.4.0' } hasBin: true aggregate-error@3.1.0: - resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==, + } + engines: { node: '>=8' } ajv-errors@1.0.1: - resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==} + resolution: + { + integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==, + } peerDependencies: ajv: '>=5.0.0' ajv-keywords@3.5.2: - resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} + resolution: + { + integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==, + } peerDependencies: ajv: ^6.9.1 ajv@6.12.6: - resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } ansi-colors@4.1.3: - resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==, + } + engines: { node: '>=6' } ansi-escapes@4.3.2: - resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: '>=8' } ansi-regex@2.1.1: - resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==, + } + engines: { node: '>=0.10.0' } ansi-regex@5.0.1: - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: '>=8' } ansi-regex@6.1.0: - resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==, + } + engines: { node: '>=12' } ansi-styles@2.2.1: - resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==, + } + engines: { node: '>=0.10.0' } ansi-styles@3.2.1: - resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: '>=4' } ansi-styles@4.3.0: - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: '>=8' } ansi-styles@6.2.1: - resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==, + } + engines: { node: '>=12' } anymatch@2.0.0: - resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==} + resolution: + { + integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==, + } anymatch@3.1.3: - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: '>= 8' } aproba@1.2.0: - resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==} + resolution: + { + integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==, + } arch@2.2.0: - resolution: {integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==} + resolution: + { + integrity: sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==, + } arg@5.0.2: - resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} + resolution: + { + integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==, + } argparse@1.0.10: - resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } argparse@2.0.1: - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } aria-hidden@1.2.4: - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==, + } + engines: { node: '>=10' } aria-query@4.2.2: - resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==, + } + engines: { node: '>=6.0' } aria-query@5.3.2: - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, + } + engines: { node: '>= 0.4' } arr-diff@4.0.0: - resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==, + } + engines: { node: '>=0.10.0' } arr-flatten@1.1.0: - resolution: {integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==, + } + engines: { node: '>=0.10.0' } arr-union@3.1.0: - resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==, + } + engines: { node: '>=0.10.0' } array-buffer-byte-length@1.0.1: - resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==, + } + engines: { node: '>= 0.4' } array-includes@3.1.8: - resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==, + } + engines: { node: '>= 0.4' } array-union@1.0.2: - resolution: {integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==, + } + engines: { node: '>=0.10.0' } array-union@2.1.0: - resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: '>=8' } array-uniq@1.0.3: - resolution: {integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==, + } + engines: { node: '>=0.10.0' } array-unique@0.3.2: - resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==, + } + engines: { node: '>=0.10.0' } array.prototype.findlast@1.2.5: - resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==, + } + engines: { node: '>= 0.4' } array.prototype.findlastindex@1.2.5: - resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==, + } + engines: { node: '>= 0.4' } array.prototype.flat@1.3.2: - resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==, + } + engines: { node: '>= 0.4' } array.prototype.flatmap@1.3.2: - resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==, + } + engines: { node: '>= 0.4' } array.prototype.reduce@1.0.7: - resolution: {integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q==, + } + engines: { node: '>= 0.4' } array.prototype.tosorted@1.1.4: - resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==, + } + engines: { node: '>= 0.4' } arraybuffer.prototype.slice@1.0.3: - resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==, + } + engines: { node: '>= 0.4' } arrify@1.0.1: - resolution: {integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==, + } + engines: { node: '>=0.10.0' } asn1.js@4.10.1: - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} + resolution: + { + integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, + } asn1@0.2.6: - resolution: {integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==} + resolution: + { + integrity: sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==, + } assert-plus@1.0.0: - resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==, + } + engines: { node: '>=0.8' } assert@1.5.1: - resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==} + resolution: + { + integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==, + } assert@2.0.0: - resolution: {integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==} + resolution: + { + integrity: sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==, + } assign-symbols@1.0.0: - resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==, + } + engines: { node: '>=0.10.0' } ast-types-flow@0.0.7: - resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} + resolution: + { + integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==, + } ast-types-flow@0.0.8: - resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} + resolution: + { + integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==, + } astral-regex@2.0.0: - resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==, + } + engines: { node: '>=8' } async-each@1.0.6: - resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==} + resolution: + { + integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==, + } async@3.2.6: - resolution: {integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==} + resolution: + { + integrity: sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==, + } asynckit@0.4.0: - resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + resolution: + { + integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==, + } at-least-node@1.0.0: - resolution: {integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==, + } + engines: { node: '>= 4.0.0' } atob@2.1.2: - resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} - engines: {node: '>= 4.5.0'} + resolution: + { + integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==, + } + engines: { node: '>= 4.5.0' } hasBin: true autoprefixer@10.4.7: - resolution: {integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==, + } + engines: { node: ^10 || ^12 || >=14 } hasBin: true peerDependencies: postcss: ^8.1.0 available-typed-arrays@1.0.7: - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, + } + engines: { node: '>= 0.4' } aws-sign2@0.7.0: - resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==} + resolution: + { + integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==, + } aws4@1.13.2: - resolution: {integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==} + resolution: + { + integrity: sha512-lHe62zvbTB5eEABUVi/AwVh0ZKY9rMMDhmm+eeyuuUQbQ3+J+fONVQOZyj+DdrvD4BY33uYniyRJ4UJIaSKAfw==, + } axe-core@4.10.2: - resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==, + } + engines: { node: '>=4' } axios@0.21.1: - resolution: {integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==} + resolution: + { + integrity: sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==, + } axobject-query@2.2.0: - resolution: {integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==} + resolution: + { + integrity: sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==, + } axobject-query@4.1.0: - resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, + } + engines: { node: '>= 0.4' } balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } base64-js@1.5.1: - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + resolution: + { + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, + } base@0.11.2: - resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==, + } + engines: { node: '>=0.10.0' } bcrypt-pbkdf@1.0.2: - resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==} + resolution: + { + integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==, + } big.js@5.2.2: - resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==} + resolution: + { + integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==, + } binary-extensions@1.13.1: - resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==, + } + engines: { node: '>=0.10.0' } binary-extensions@2.3.0: - resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==, + } + engines: { node: '>=8' } bindings@1.5.0: - resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==} + resolution: + { + integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==, + } blob-util@2.0.2: - resolution: {integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==} + resolution: + { + integrity: sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ==, + } bluebird@3.7.2: - resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==} + resolution: + { + integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==, + } bn.js@4.12.1: - resolution: {integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==} + resolution: + { + integrity: sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==, + } bn.js@5.2.1: - resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==} + resolution: + { + integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==, + } boolbase@1.0.0: - resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + resolution: + { + integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==, + } brace-expansion@1.1.11: - resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } brace-expansion@2.0.1: - resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + resolution: + { + integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==, + } braces@2.3.2: - resolution: {integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==, + } + engines: { node: '>=0.10.0' } braces@3.0.3: - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, + } + engines: { node: '>=8' } brorand@1.1.0: - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} + resolution: + { + integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, + } browserify-aes@1.2.0: - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} + resolution: + { + integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, + } browserify-cipher@1.0.1: - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} + resolution: + { + integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, + } browserify-des@1.0.2: - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} + resolution: + { + integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, + } browserify-rsa@4.1.1: - resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==, + } + engines: { node: '>= 0.10' } browserify-sign@4.2.3: - resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==, + } + engines: { node: '>= 0.12' } browserify-zlib@0.2.0: - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} + resolution: + { + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, + } browserslist@4.24.2: - resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==} - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + resolution: + { + integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } hasBin: true buffer-crc32@0.2.13: - resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + resolution: + { + integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==, + } buffer-equal-constant-time@1.0.1: - resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} + resolution: + { + integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==, + } buffer-from@1.1.2: - resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==} + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } buffer-xor@1.0.3: - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} + resolution: + { + integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, + } buffer@4.9.2: - resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==} + resolution: + { + integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==, + } buffer@5.7.1: - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + resolution: + { + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, + } builtin-status-codes@3.0.0: - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} + resolution: + { + integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, + } busboy@1.6.0: - resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} - engines: {node: '>=10.16.0'} + resolution: + { + integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==, + } + engines: { node: '>=10.16.0' } cacache@12.0.4: - resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==} + resolution: + { + integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==, + } cache-base@1.0.1: - resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==, + } + engines: { node: '>=0.10.0' } cachedir@2.4.0: - resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==, + } + engines: { node: '>=6' } call-bind@1.0.7: - resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==, + } + engines: { node: '>= 0.4' } call-me-maybe@1.0.2: - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + resolution: + { + integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==, + } callsites@3.1.0: - resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: '>=6' } camelcase-css@2.0.1: - resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==, + } + engines: { node: '>= 6' } caniuse-lite@1.0.30001684: - resolution: {integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==} + resolution: + { + integrity: sha512-G1LRwLIQjBQoyq0ZJGqGIJUXzJ8irpbjHLpVRXDvBEScFJ9b17sgK6vlx0GAJFE21okD7zXl08rRRUfq6HdoEQ==, + } caseless@0.12.0: - resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} + resolution: + { + integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==, + } chalk@1.1.3: - resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==, + } + engines: { node: '>=0.10.0' } chalk@2.4.2: - resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: '>=4' } chalk@4.1.2: - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: '>=10' } check-more-types@2.24.0: - resolution: {integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-Pj779qHxV2tuapviy1bSZNEL1maXr13bPYpsvSDB68HlYcYuhlDrmGd63i0JHMCLKzc7rUSNIrpdJlhVlNwrxA==, + } + engines: { node: '>= 0.8.0' } chokidar@2.1.8: - resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==} + resolution: + { + integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==, + } chokidar@3.6.0: - resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} - engines: {node: '>= 8.10.0'} + resolution: + { + integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==, + } + engines: { node: '>= 8.10.0' } chownr@1.1.4: - resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + resolution: + { + integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==, + } chroma-js@2.4.2: - resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==} + resolution: + { + integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==, + } chrome-trace-event@1.0.4: - resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==, + } + engines: { node: '>=6.0' } ci-info@3.9.0: - resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==, + } + engines: { node: '>=8' } cipher-base@1.0.6: - resolution: {integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-3Ek9H3X6pj5TgenXYtNWdaBon1tgYCaebd+XPg0keyjEbEfkD4KkmAxkQ/i1vYvxdcT5nscLBfq9VJRmCBcFSw==, + } + engines: { node: '>= 0.10' } class-utils@0.3.6: - resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==, + } + engines: { node: '>=0.10.0' } classnames@2.3.1: - resolution: {integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==} + resolution: + { + integrity: sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA==, + } clean-stack@2.2.0: - resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==, + } + engines: { node: '>=6' } cli-cursor@3.1.0: - resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==, + } + engines: { node: '>=8' } cli-table3@0.6.5: - resolution: {integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==} - engines: {node: 10.* || >= 12.*} + resolution: + { + integrity: sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==, + } + engines: { node: 10.* || >= 12.* } cli-truncate@2.1.0: - resolution: {integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==, + } + engines: { node: '>=8' } client-only@0.0.1: - resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} + resolution: + { + integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==, + } clone@2.1.2: - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} - engines: {node: '>=0.8'} + resolution: + { + integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, + } + engines: { node: '>=0.8' } coa@2.0.2: - resolution: {integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==} - engines: {node: '>= 4.0'} + resolution: + { + integrity: sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==, + } + engines: { node: '>= 4.0' } collection-visit@1.0.0: - resolution: {integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==, + } + engines: { node: '>=0.10.0' } color-convert@1.9.3: - resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } color-convert@2.0.1: - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} - engines: {node: '>=7.0.0'} + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: '>=7.0.0' } color-name@1.1.3: - resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } color-name@1.1.4: - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } colorette@2.0.20: - resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } combined-stream@1.0.8: - resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==, + } + engines: { node: '>= 0.8' } commander@2.20.3: - resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==} + resolution: + { + integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==, + } commander@5.1.0: - resolution: {integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==, + } + engines: { node: '>= 6' } common-tags@1.8.2: - resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==, + } + engines: { node: '>=4.0.0' } commondir@1.0.1: - resolution: {integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==} + resolution: + { + integrity: sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==, + } component-emitter@1.3.1: - resolution: {integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==} + resolution: + { + integrity: sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==, + } concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } concat-stream@1.6.2: - resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==} - engines: {'0': node >= 0.8} + resolution: + { + integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==, + } + engines: { '0': node >= 0.8 } confusing-browser-globals@1.0.11: - resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + resolution: + { + integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==, + } console-browserify@1.2.0: - resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} + resolution: + { + integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, + } constants-browserify@1.0.0: - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} + resolution: + { + integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, + } cookie@0.7.2: - resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==, + } + engines: { node: '>= 0.6' } copy-concurrently@1.0.5: - resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==} + resolution: + { + integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==, + } deprecated: This package is no longer supported. copy-descriptor@0.1.1: - resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==, + } + engines: { node: '>=0.10.0' } core-js-pure@3.39.0: - resolution: {integrity: sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==} + resolution: + { + integrity: sha512-7fEcWwKI4rJinnK+wLTezeg2smbFFdSBP6E2kQZNbnzM2s1rpKQ6aaRteZSSg7FLU3P0HGGVo/gbpfanU36urg==, + } core-util-is@1.0.2: - resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} + resolution: + { + integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==, + } core-util-is@1.0.3: - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + resolution: + { + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, + } create-ecdh@4.0.4: - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} + resolution: + { + integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, + } create-hash@1.2.0: - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} + resolution: + { + integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, + } create-hmac@1.1.7: - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} + resolution: + { + integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, + } cross-spawn@7.0.6: - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, + } + engines: { node: '>= 8' } crypto-browserify@3.12.1: - resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==, + } + engines: { node: '>= 0.10' } css-select-base-adapter@0.1.1: - resolution: {integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==} + resolution: + { + integrity: sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==, + } css-select@2.1.0: - resolution: {integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==} + resolution: + { + integrity: sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==, + } css-tree@1.0.0-alpha.37: - resolution: {integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==, + } + engines: { node: '>=8.0.0' } css-tree@1.1.3: - resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==, + } + engines: { node: '>=8.0.0' } css-what@3.4.2: - resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==, + } + engines: { node: '>= 6' } cssesc@3.0.0: - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, + } + engines: { node: '>=4' } hasBin: true csso@4.2.0: - resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==, + } + engines: { node: '>=8.0.0' } csstype@3.1.3: - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + resolution: + { + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, + } cyclist@1.0.2: - resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==} + resolution: + { + integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==, + } cypress@10.4.0: - resolution: {integrity: sha512-OM7F8MRE01SHQRVVzunid1ZK1m90XTxYnl+7uZfIrB4CYqUDCrZEeSyCXzIbsS6qcaijVCAhqDL60SxG8N6hew==} - engines: {node: '>=12.0.0'} + resolution: + { + integrity: sha512-OM7F8MRE01SHQRVVzunid1ZK1m90XTxYnl+7uZfIrB4CYqUDCrZEeSyCXzIbsS6qcaijVCAhqDL60SxG8N6hew==, + } + engines: { node: '>=12.0.0' } hasBin: true d3-array@2.12.1: - resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} + resolution: + { + integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==, + } d3-array@3.2.4: - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==, + } + engines: { node: '>=12' } d3-color@1.4.1: - resolution: {integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==} + resolution: + { + integrity: sha512-p2sTHSLCJI2QKunbGb7ocOh7DgTAn8IrLx21QRc/BSnodXM4sv6aLQlnfpvehFMLZEfBc6g9pH9SWQccFYfJ9Q==, + } d3-color@2.0.0: - resolution: {integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==} + resolution: + { + integrity: sha512-SPXi0TSKPD4g9tw0NMZFnR95XVgUZiBH+uUTqQuDu1OsE2zomHU7ho0FISciaPvosimixwHFl3WHLGabv6dDgQ==, + } d3-color@3.1.0: - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==, + } + engines: { node: '>=12' } d3-dispatch@2.0.0: - resolution: {integrity: sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA==} + resolution: + { + integrity: sha512-S/m2VsXI7gAti2pBoLClFFTMOO1HTtT0j99AuXLoGFKO6deHDdnv6ZGTxSTTUTgO1zVcv82fCOtDjYK4EECmWA==, + } d3-drag@2.0.0: - resolution: {integrity: sha512-g9y9WbMnF5uqB9qKqwIIa/921RYWzlUDv9Jl1/yONQwxbOfszAWTCm8u7HOTgJgRDXiRZN56cHT9pd24dmXs8w==} + resolution: + { + integrity: sha512-g9y9WbMnF5uqB9qKqwIIa/921RYWzlUDv9Jl1/yONQwxbOfszAWTCm8u7HOTgJgRDXiRZN56cHT9pd24dmXs8w==, + } d3-ease@2.0.0: - resolution: {integrity: sha512-68/n9JWarxXkOWMshcT5IcjbB+agblQUaIsbnXmrzejn2O82n3p2A9R2zEB9HIEFWKFwPAEDDN8gR0VdSAyyAQ==} + resolution: + { + integrity: sha512-68/n9JWarxXkOWMshcT5IcjbB+agblQUaIsbnXmrzejn2O82n3p2A9R2zEB9HIEFWKFwPAEDDN8gR0VdSAyyAQ==, + } d3-format@2.0.0: - resolution: {integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==} + resolution: + { + integrity: sha512-Ab3S6XuE/Q+flY96HXT0jOXcM4EAClYFnRGY5zsjRGNy6qCYrQsMffs7cV5Q9xejb35zxW5hf/guKw34kvIKsA==, + } d3-format@3.1.0: - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==, + } + engines: { node: '>=12' } d3-geo@2.0.2: - resolution: {integrity: sha512-8pM1WGMLGFuhq9S+FpPURxic+gKzjluCD/CHTuUF3mXMeiCo0i6R0tO1s4+GArRFde96SLcW/kOFRjoAosPsFA==} + resolution: + { + integrity: sha512-8pM1WGMLGFuhq9S+FpPURxic+gKzjluCD/CHTuUF3mXMeiCo0i6R0tO1s4+GArRFde96SLcW/kOFRjoAosPsFA==, + } d3-geo@3.0.1: - resolution: {integrity: sha512-Wt23xBych5tSy9IYAM1FR2rWIBFWa52B/oF/GYe5zbdHrg08FU8+BuI6X4PvTwPDdqdAdq04fuWJpELtsaEjeA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-Wt23xBych5tSy9IYAM1FR2rWIBFWa52B/oF/GYe5zbdHrg08FU8+BuI6X4PvTwPDdqdAdq04fuWJpELtsaEjeA==, + } + engines: { node: '>=12' } d3-interpolate@1.4.0: - resolution: {integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==} + resolution: + { + integrity: sha512-V9znK0zc3jOPV4VD2zZn0sDhZU3WAE2bmlxdIwwQPPzPjvyLkd8B3JUVdS1IDUFDkWZ72c9qnv1GK2ZagTZ8EA==, + } d3-interpolate@2.0.1: - resolution: {integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==} + resolution: + { + integrity: sha512-c5UhwwTs/yybcmTpAVqwSFl6vrQ8JZJoT5F7xNFK9pymv5C0Ymcc9/LIJHtYIggg/yS9YHw8i8O8tgb9pupjeQ==, + } d3-interpolate@3.0.1: - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==, + } + engines: { node: '>=12' } d3-path@1.0.9: - resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} + resolution: + { + integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==, + } d3-scale@3.3.0: - resolution: {integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==} + resolution: + { + integrity: sha512-1JGp44NQCt5d1g+Yy+GeOnZP7xHo0ii8zsQp6PGzd+C1/dl0KGsp9A7Mxwp+1D1o4unbTTxVdU/ZOIEBoeZPbQ==, + } d3-scale@4.0.2: - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==, + } + engines: { node: '>=12' } d3-selection@2.0.0: - resolution: {integrity: sha512-XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA==} + resolution: + { + integrity: sha512-XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA==, + } d3-shape@1.3.7: - resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} + resolution: + { + integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==, + } d3-time-format@3.0.0: - resolution: {integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==} + resolution: + { + integrity: sha512-UXJh6EKsHBTjopVqZBhFysQcoXSv/5yLONZvkQ5Kk3qbwiUYkdX17Xa1PT6U1ZWXGGfB1ey5L8dKMlFq2DO0Ag==, + } d3-time-format@4.1.0: - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==, + } + engines: { node: '>=12' } d3-time@2.1.1: - resolution: {integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==} + resolution: + { + integrity: sha512-/eIQe/eR4kCQwq7yxi7z4c6qEXf2IYGcjoWB5OOQy4Tq9Uv39/947qlDcN2TLkiTzQWzvnsuYPB9TrWaNfipKQ==, + } d3-time@3.1.0: - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==, + } + engines: { node: '>=12' } d3-timer@2.0.0: - resolution: {integrity: sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA==} + resolution: + { + integrity: sha512-TO4VLh0/420Y/9dO3+f9abDEFYeCUr2WZRlxJvbp4HPTQcSylXNiL6yZa9FIUvV1yRiFufl1bszTCLDqv9PWNA==, + } d3-transition@2.0.0: - resolution: {integrity: sha512-42ltAGgJesfQE3u9LuuBHNbGrI/AJjNL2OAUdclE70UE6Vy239GCBEYD38uBPoLeNsOhFStGpPI0BAOV+HMxog==} + resolution: + { + integrity: sha512-42ltAGgJesfQE3u9LuuBHNbGrI/AJjNL2OAUdclE70UE6Vy239GCBEYD38uBPoLeNsOhFStGpPI0BAOV+HMxog==, + } peerDependencies: d3-selection: '2' d3-zoom@2.0.0: - resolution: {integrity: sha512-fFg7aoaEm9/jf+qfstak0IYpnesZLiMX6GZvXtUSdv8RH2o4E2qeelgdU09eKS6wGuiGMfcnMI0nTIqWzRHGpw==} + resolution: + { + integrity: sha512-fFg7aoaEm9/jf+qfstak0IYpnesZLiMX6GZvXtUSdv8RH2o4E2qeelgdU09eKS6wGuiGMfcnMI0nTIqWzRHGpw==, + } damerau-levenshtein@1.0.8: - resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} + resolution: + { + integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==, + } dashdash@1.14.1: - resolution: {integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==, + } + engines: { node: '>=0.10' } data-view-buffer@1.0.1: - resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==, + } + engines: { node: '>= 0.4' } data-view-byte-length@1.0.1: - resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==, + } + engines: { node: '>= 0.4' } data-view-byte-offset@1.0.0: - resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==, + } + engines: { node: '>= 0.4' } dayjs@1.11.13: - resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==} + resolution: + { + integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==, + } debug@2.6.9: - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -1603,7 +2672,10 @@ packages: optional: true debug@3.2.7: - resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -1611,8 +2683,11 @@ packages: optional: true debug@4.3.1: - resolution: {integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==, + } + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -1620,8 +2695,11 @@ packages: optional: true debug@4.3.7: - resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} - engines: {node: '>=6.0'} + resolution: + { + integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==, + } + engines: { node: '>=6.0' } peerDependencies: supports-color: '*' peerDependenciesMeta: @@ -1629,212 +2707,386 @@ packages: optional: true decode-uri-component@0.2.2: - resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==, + } + engines: { node: '>=0.10' } deep-is@0.1.4: - resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } deepmerge@1.3.2: - resolution: {integrity: sha512-qjMjTrk+RKv/sp4RPDpV5CnKhxjFI9p+GkLBOls5A8EEElldYWCWA9zceAkmfd0xIo2aU1nxiaLFoiya2sb6Cg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-qjMjTrk+RKv/sp4RPDpV5CnKhxjFI9p+GkLBOls5A8EEElldYWCWA9zceAkmfd0xIo2aU1nxiaLFoiya2sb6Cg==, + } + engines: { node: '>=0.10.0' } define-data-property@1.1.4: - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, + } + engines: { node: '>= 0.4' } define-properties@1.2.1: - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, + } + engines: { node: '>= 0.4' } define-property@0.2.5: - resolution: {integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==, + } + engines: { node: '>=0.10.0' } define-property@1.0.0: - resolution: {integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==, + } + engines: { node: '>=0.10.0' } define-property@2.0.2: - resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==, + } + engines: { node: '>=0.10.0' } defined@1.0.1: - resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==} + resolution: + { + integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==, + } delayed-stream@1.0.0: - resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} - engines: {node: '>=0.4.0'} + resolution: + { + integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==, + } + engines: { node: '>=0.4.0' } des.js@1.1.0: - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} + resolution: + { + integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, + } detective@5.2.1: - resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==, + } + engines: { node: '>=0.8.0' } hasBin: true didyoumean@1.2.2: - resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} + resolution: + { + integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==, + } diffie-hellman@5.0.3: - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} + resolution: + { + integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, + } dir-glob@2.0.0: - resolution: {integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==, + } + engines: { node: '>=4' } dir-glob@3.0.1: - resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: '>=8' } dlv@1.1.3: - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} + resolution: + { + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, + } doctrine@2.1.0: - resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: '>=0.10.0' } doctrine@3.0.0: - resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: '>=6.0.0' } dom-serializer@0.2.2: - resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + resolution: + { + integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==, + } domain-browser@1.2.0: - resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==} - engines: {node: '>=0.4', npm: '>=1.2'} + resolution: + { + integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==, + } + engines: { node: '>=0.4', npm: '>=1.2' } domelementtype@1.3.1: - resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + resolution: + { + integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==, + } domelementtype@2.3.0: - resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + resolution: + { + integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==, + } domhandler@2.4.2: - resolution: {integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==} + resolution: + { + integrity: sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==, + } domready@1.0.8: - resolution: {integrity: sha512-uIzsOJUNk+AdGE9a6VDeessoMCzF8RrZvJCX/W8QtyfgdR6Uofn/MvRonih3OtCO79b2VDzDOymuiABrQ4z3XA==} + resolution: + { + integrity: sha512-uIzsOJUNk+AdGE9a6VDeessoMCzF8RrZvJCX/W8QtyfgdR6Uofn/MvRonih3OtCO79b2VDzDOymuiABrQ4z3XA==, + } domutils@1.7.0: - resolution: {integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==} + resolution: + { + integrity: sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==, + } duplexer@0.1.2: - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} + resolution: + { + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, + } duplexify@3.7.1: - resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==} + resolution: + { + integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==, + } eastasianwidth@0.2.0: - resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + resolution: + { + integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==, + } ecc-jsbn@0.1.2: - resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} + resolution: + { + integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==, + } ecdsa-sig-formatter@1.0.11: - resolution: {integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==} + resolution: + { + integrity: sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==, + } electron-to-chromium@1.5.67: - resolution: {integrity: sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==} + resolution: + { + integrity: sha512-nz88NNBsD7kQSAGGJyp8hS6xSPtWwqNogA0mjtc2nUYeEf3nURK9qpV18TuBdDmEDgVWotS8Wkzf+V52dSQ/LQ==, + } elliptic@6.6.1: - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} + resolution: + { + integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==, + } emoji-regex@8.0.0: - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } emoji-regex@9.2.2: - resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + resolution: + { + integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==, + } emojis-list@3.0.0: - resolution: {integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==, + } + engines: { node: '>= 4' } end-of-stream@1.4.4: - resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + resolution: + { + integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==, + } enhanced-resolve@4.5.0: - resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==} - engines: {node: '>=6.9.0'} + resolution: + { + integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==, + } + engines: { node: '>=6.9.0' } enhanced-resolve@5.17.1: - resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==, + } + engines: { node: '>=10.13.0' } enquirer@2.4.1: - resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==, + } + engines: { node: '>=8.6' } entities@1.1.2: - resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==} + resolution: + { + integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==, + } entities@2.2.0: - resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + resolution: + { + integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==, + } errno@0.1.8: - resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==} + resolution: + { + integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==, + } hasBin: true es-abstract@1.23.5: - resolution: {integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-vlmniQ0WNPwXqA0BnmwV3Ng7HxiGlh6r5U6JcTMNx8OilcAGqVJBHJcPjqOMaczU9fRuRK5Px2BdVyPRnKMMVQ==, + } + engines: { node: '>= 0.4' } es-array-method-boxes-properly@1.0.0: - resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==} + resolution: + { + integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==, + } es-define-property@1.0.0: - resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==, + } + engines: { node: '>= 0.4' } es-errors@1.3.0: - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, + } + engines: { node: '>= 0.4' } es-iterator-helpers@1.2.0: - resolution: {integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tpxqxncxnpw3c93u8n3VOzACmRFoVmWJqbWXvX/JfKbkhBw1oslgPrUfeSt2psuqyEJFD6N/9lg5i7bsKpoq+Q==, + } + engines: { node: '>= 0.4' } es-object-atoms@1.0.0: - resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==, + } + engines: { node: '>= 0.4' } es-set-tostringtag@2.0.3: - resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==, + } + engines: { node: '>= 0.4' } es-shim-unscopables@1.0.2: - resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + resolution: + { + integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==, + } es-to-primitive@1.3.0: - resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==, + } + engines: { node: '>= 0.4' } es6-object-assign@1.1.0: - resolution: {integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==} + resolution: + { + integrity: sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==, + } escalade@3.2.0: - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, + } + engines: { node: '>=6' } escape-string-regexp@1.0.5: - resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: '>=0.8.0' } escape-string-regexp@4.0.0: - resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: '>=10' } eslint-config-airbnb-base@15.0.0: - resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==, + } + engines: { node: ^10.12.0 || >=12.0.0 } peerDependencies: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.2 eslint-config-airbnb-typescript@17.0.0: - resolution: {integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==} + resolution: + { + integrity: sha512-elNiuzD0kPAPTXjFWg+lE24nMdHMtuxgYoD30OyMD6yrW1AhFZPAg27VX7d3tzOErw+dgJTNWfRSDqEcXb4V0g==, + } peerDependencies: '@typescript-eslint/eslint-plugin': ^5.13.0 '@typescript-eslint/parser': ^5.0.0 @@ -1842,8 +3094,11 @@ packages: eslint-plugin-import: ^2.25.3 eslint-config-airbnb@19.0.4: - resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} - engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==, + } + engines: { node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0 } peerDependencies: eslint: ^7.32.0 || ^8.2.0 eslint-plugin-import: ^2.25.3 @@ -1852,7 +3107,10 @@ packages: eslint-plugin-react-hooks: ^4.3.0 eslint-config-next@14.2.18: - resolution: {integrity: sha512-SuDRcpJY5VHBkhz5DijJ4iA4bVnBA0n48Rb+YSJSCDr+h7kKAcb1mZHusLbW+WA8LDB6edSolomXA55eG3eOVA==} + resolution: + { + integrity: sha512-SuDRcpJY5VHBkhz5DijJ4iA4bVnBA0n48Rb+YSJSCDr+h7kKAcb1mZHusLbW+WA8LDB6edSolomXA55eG3eOVA==, + } peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -1861,24 +3119,36 @@ packages: optional: true eslint-config-prettier@8.3.0: - resolution: {integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==} + resolution: + { + integrity: sha512-BgZuLUSeKzvlL/VUjx/Yb787VQ26RU3gGjA3iiFvdsp/2bMfVIWUVP7tjxtjS0e+HP409cPlPvNkQloz8C91ew==, + } hasBin: true peerDependencies: eslint: '>=7.0.0' eslint-import-resolver-node@0.3.9: - resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + resolution: + { + integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==, + } eslint-import-resolver-typescript@2.4.0: - resolution: {integrity: sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-useJKURidCcldRLCNKWemr1fFQL1SzB3G4a0li6lFGvlc5xGe1hY343bvG07cbpCzPuM/lK19FIJB3XGFSkplA==, + } + engines: { node: '>=4' } peerDependencies: eslint: '*' eslint-plugin-import: '*' eslint-import-resolver-typescript@3.6.3: - resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==} - engines: {node: ^14.18.0 || >=16.0.0} + resolution: + { + integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==, + } + engines: { node: ^14.18.0 || >=16.0.0 } peerDependencies: eslint: '*' eslint-plugin-import: '*' @@ -1890,8 +3160,11 @@ packages: optional: true eslint-module-utils@2.12.0: - resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==, + } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: '*' @@ -1911,8 +3184,11 @@ packages: optional: true eslint-plugin-import@2.25.3: - resolution: {integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-RzAVbby+72IB3iOEL8clzPLzL3wpDrlwjsTBAQXgyp5SeTqqY+0bFubwuo+y/HLhNZcXV4XqTBO4LGsfyHIDXg==, + } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 @@ -1921,8 +3197,11 @@ packages: optional: true eslint-plugin-import@2.31.0: - resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==, + } + engines: { node: '>=4' } peerDependencies: '@typescript-eslint/parser': '*' eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 @@ -1931,20 +3210,29 @@ packages: optional: true eslint-plugin-jsx-a11y@6.10.2: - resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==, + } + engines: { node: '>=4.0' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 eslint-plugin-jsx-a11y@6.5.1: - resolution: {integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==, + } + engines: { node: '>=4.0' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-prettier@3.4.0: - resolution: {integrity: sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-UDK6rJT6INSfcOo545jiaOwB701uAIt2/dR7WnFQoGCVl1/EMqdANBmwUaqqQ45aXprsTGzSa39LI1PyuRBxxw==, + } + engines: { node: '>=6.0.0' } peerDependencies: eslint: '>=5.0.0' eslint-config-prettier: '*' @@ -1954,237 +3242,411 @@ packages: optional: true eslint-plugin-react-hooks@4.3.0: - resolution: {integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-XslZy0LnMn+84NEG9jSGR6eGqaZB3133L8xewQo3fQagbQuGt7a63gf+P1NGKZavEYEC3UXaWEAA/AqDkuN6xA==, + } + engines: { node: '>=10' } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 eslint-plugin-react-hooks@5.0.0-canary-7118f5dd7-20230705: - resolution: {integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==, + } + engines: { node: '>=10' } peerDependencies: eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 eslint-plugin-react@7.28.0: - resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==, + } + engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint-plugin-react@7.37.2: - resolution: {integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-EsTAnj9fLVr/GZleBLFbj/sSuXeWmp1eXIN60ceYnZveqEaUCyW4X+Vh4WTdUhCkW4xutXYqTXCUSyqD4rB75w==, + } + engines: { node: '>=4' } peerDependencies: eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 eslint-scope@4.0.3: - resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==, + } + engines: { node: '>=4.0.0' } eslint-scope@5.1.1: - resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} - engines: {node: '>=8.0.0'} + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: '>=8.0.0' } eslint-scope@7.2.2: - resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } eslint-utils@3.0.0: - resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} - engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } peerDependencies: eslint: '>=5' eslint-visitor-keys@2.1.0: - resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: '>=10' } eslint-visitor-keys@3.4.3: - resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } eslint-visitor-keys@4.2.0: - resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} - engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + resolution: + { + integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==, + } + engines: { node: ^18.18.0 || ^20.9.0 || >=21.1.0 } eslint@8.57.0: - resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } hasBin: true espree@9.6.1: - resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + resolution: + { + integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } esprima@4.0.1: - resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: '>=4' } hasBin: true esquery@1.6.0: - resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==, + } + engines: { node: '>=0.10' } esrecurse@4.3.0: - resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: '>=4.0' } estraverse@4.3.0: - resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: { node: '>=4.0' } estraverse@5.3.0: - resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: '>=4.0' } esutils@2.0.3: - resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: '>=0.10.0' } event-stream@3.3.4: - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} + resolution: + { + integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, + } eventemitter2@6.4.9: - resolution: {integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==} + resolution: + { + integrity: sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==, + } events@3.3.0: - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} - engines: {node: '>=0.8.x'} + resolution: + { + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, + } + engines: { node: '>=0.8.x' } evp_bytestokey@1.0.3: - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} + resolution: + { + integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, + } execa@3.4.0: - resolution: {integrity: sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==} - engines: {node: ^8.12.0 || >=9.7.0} + resolution: + { + integrity: sha512-r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g==, + } + engines: { node: ^8.12.0 || >=9.7.0 } execa@4.1.0: - resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==, + } + engines: { node: '>=10' } executable@4.1.1: - resolution: {integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==, + } + engines: { node: '>=4' } expand-brackets@2.1.4: - resolution: {integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==, + } + engines: { node: '>=0.10.0' } extend-shallow@2.0.1: - resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==, + } + engines: { node: '>=0.10.0' } extend-shallow@3.0.2: - resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==, + } + engines: { node: '>=0.10.0' } extend@3.0.2: - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} + resolution: + { + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, + } extglob@2.0.4: - resolution: {integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==, + } + engines: { node: '>=0.10.0' } extract-zip@2.0.1: - resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} - engines: {node: '>= 10.17.0'} + resolution: + { + integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==, + } + engines: { node: '>= 10.17.0' } hasBin: true extsprintf@1.3.0: - resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==, + } + engines: { '0': node >=0.6.0 } fast-deep-equal@3.1.3: - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } fast-diff@1.3.0: - resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } fast-glob@2.2.7: - resolution: {integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==, + } + engines: { node: '>=4.0.0' } fast-glob@3.3.2: - resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} - engines: {node: '>=8.6.0'} + resolution: + { + integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==, + } + engines: { node: '>=8.6.0' } fast-json-stable-stringify@2.1.0: - resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } fast-levenshtein@2.0.6: - resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } fastq@1.17.1: - resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} + resolution: + { + integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==, + } fd-slicer@1.1.0: - resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + resolution: + { + integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==, + } figgy-pudding@3.5.2: - resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==} + resolution: + { + integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==, + } deprecated: This module is no longer supported. figures@3.2.0: - resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==, + } + engines: { node: '>=8' } file-entry-cache@6.0.1: - resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } file-loader@3.0.1: - resolution: {integrity: sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==} - engines: {node: '>= 6.9.0'} + resolution: + { + integrity: sha512-4sNIOXgtH/9WZq4NvlfU3Opn5ynUsqBwSLyM+I7UOwdGigTBYfVVQEwe/msZNX/j4pCJTIM14Fsw66Svo1oVrw==, + } + engines: { node: '>= 6.9.0' } peerDependencies: webpack: ^4.0.0 file-type@10.11.0: - resolution: {integrity: sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==, + } + engines: { node: '>=6' } file-uri-to-path@1.0.0: - resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==} + resolution: + { + integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==, + } fill-range@4.0.0: - resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==, + } + engines: { node: '>=0.10.0' } fill-range@7.1.1: - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, + } + engines: { node: '>=8' } filter-obj@1.1.0: - resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==, + } + engines: { node: '>=0.10.0' } final-form@4.20.2: - resolution: {integrity: sha512-5i0IxqwjjPG1nUNCjWhqPCvQJJ2R+QwTwaAnjPmFnLbyjIHWuBPU8u+Ps4G3TcX2Sjno+O5xCZJzYcMJEzzfCQ==} + resolution: + { + integrity: sha512-5i0IxqwjjPG1nUNCjWhqPCvQJJ2R+QwTwaAnjPmFnLbyjIHWuBPU8u+Ps4G3TcX2Sjno+O5xCZJzYcMJEzzfCQ==, + } find-cache-dir@2.1.0: - resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==, + } + engines: { node: '>=6' } find-up@3.0.0: - resolution: {integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==, + } + engines: { node: '>=6' } find-up@5.0.0: - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: '>=10' } flat-cache@3.2.0: - resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} - engines: {node: ^10.12.0 || >=12.0.0} + resolution: + { + integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==, + } + engines: { node: ^10.12.0 || >=12.0.0 } flatted@3.3.2: - resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + resolution: + { + integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==, + } flush-write-stream@1.1.1: - resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==} + resolution: + { + integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==, + } follow-redirects@1.15.9: - resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==, + } + engines: { node: '>=4.0' } peerDependencies: debug: '*' peerDependenciesMeta: @@ -2192,652 +3654,1177 @@ packages: optional: true for-each@0.3.3: - resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } for-in@1.0.2: - resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==, + } + engines: { node: '>=0.10.0' } foreground-child@3.3.0: - resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==, + } + engines: { node: '>=14' } forever-agent@0.6.1: - resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} + resolution: + { + integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==, + } form-data@2.3.3: - resolution: {integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==} - engines: {node: '>= 0.12'} + resolution: + { + integrity: sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==, + } + engines: { node: '>= 0.12' } fraction.js@4.3.7: - resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==} + resolution: + { + integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==, + } fragment-cache@0.2.1: - resolution: {integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==, + } + engines: { node: '>=0.10.0' } framer-motion@7.0.0: - resolution: {integrity: sha512-mOUKle6LouYVP4KLz+cMiNI6fL3qP9hQY4PBaN3E1FyPhcvuAgvs/JPgYktvK5zdRbIRU0gpBsr0CW5hP2KzKA==} + resolution: + { + integrity: sha512-mOUKle6LouYVP4KLz+cMiNI6fL3qP9hQY4PBaN3E1FyPhcvuAgvs/JPgYktvK5zdRbIRU0gpBsr0CW5hP2KzKA==, + } peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 framesync@6.0.1: - resolution: {integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==} + resolution: + { + integrity: sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==, + } from2@2.3.0: - resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==} + resolution: + { + integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==, + } from@0.1.7: - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} + resolution: + { + integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, + } fs-extra@9.1.0: - resolution: {integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==, + } + engines: { node: '>=10' } fs-write-stream-atomic@1.0.10: - resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==} + resolution: + { + integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==, + } deprecated: This package is no longer supported. fs.realpath@1.0.0: - resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } fsevents@1.2.13: - resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} - engines: {node: '>= 4.0'} + resolution: + { + integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==, + } + engines: { node: '>= 4.0' } os: [darwin] deprecated: Upgrade to fsevents v2 to mitigate potential security issues fsevents@2.3.3: - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + resolution: + { + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } os: [darwin] function-bind@1.1.2: - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + resolution: + { + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, + } function.prototype.name@1.1.6: - resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==, + } + engines: { node: '>= 0.4' } functional-red-black-tree@1.0.1: - resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} + resolution: + { + integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==, + } functions-have-names@1.2.3: - resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } get-intrinsic@1.2.4: - resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==, + } + engines: { node: '>= 0.4' } get-stream@5.2.0: - resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==, + } + engines: { node: '>=8' } get-symbol-description@1.0.2: - resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==, + } + engines: { node: '>= 0.4' } get-tsconfig@4.8.1: - resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + resolution: + { + integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==, + } get-value@2.0.6: - resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==, + } + engines: { node: '>=0.10.0' } getos@3.2.1: - resolution: {integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==} + resolution: + { + integrity: sha512-U56CfOK17OKgTVqozZjUKNdkfEv6jk5WISBJ8SHoagjE6L69zOwl3Z+O8myjY9MEW3i2HPWQBt/LTbCgcC973Q==, + } getpass@0.1.7: - resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} + resolution: + { + integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==, + } glob-parent@3.1.0: - resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==} + resolution: + { + integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==, + } glob-parent@5.1.2: - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: '>= 6' } glob-parent@6.0.2: - resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: '>=10.13.0' } glob-to-regexp@0.3.0: - resolution: {integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==} + resolution: + { + integrity: sha512-Iozmtbqv0noj0uDDqoL0zNq0VBEfK2YFoMAZoxJe4cwphvLR+JskfF30QhXHOR4m3KrE6NLRYw+U9MRXvifyig==, + } glob@10.3.10: - resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==, + } + engines: { node: '>=16 || 14 >=14.17' } hasBin: true glob@7.2.3: - resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } deprecated: Glob versions prior to v9 are no longer supported global-dirs@3.0.1: - resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==, + } + engines: { node: '>=10' } globals@13.24.0: - resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==, + } + engines: { node: '>=8' } globalthis@1.0.4: - resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==, + } + engines: { node: '>= 0.4' } globby@11.1.0: - resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: '>=10' } globby@8.0.2: - resolution: {integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==, + } + engines: { node: '>=4' } gopd@1.0.1: - resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } graceful-fs@4.2.11: - resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } graphemer@1.4.0: - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + resolution: + { + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, + } has-ansi@2.0.0: - resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==, + } + engines: { node: '>=0.10.0' } has-bigints@1.0.2: - resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } has-flag@1.0.0: - resolution: {integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-DyYHfIYwAJmjAjSSPKANxI8bFY9YtFrgkAfinBojQ8YJTOuOuav64tMUJv584SES4xl74PmuaevIyaLESHdTAA==, + } + engines: { node: '>=0.10.0' } has-flag@3.0.0: - resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: '>=4' } has-flag@4.0.0: - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: '>=8' } has-property-descriptors@1.0.2: - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + resolution: + { + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, + } has-proto@1.0.3: - resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==, + } + engines: { node: '>= 0.4' } has-symbols@1.0.3: - resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: '>= 0.4' } has-tostringtag@1.0.2: - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, + } + engines: { node: '>= 0.4' } has-value@0.3.1: - resolution: {integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==, + } + engines: { node: '>=0.10.0' } has-value@1.0.0: - resolution: {integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==, + } + engines: { node: '>=0.10.0' } has-values@0.1.4: - resolution: {integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==, + } + engines: { node: '>=0.10.0' } has-values@1.0.0: - resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==, + } + engines: { node: '>=0.10.0' } has@1.0.4: - resolution: {integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==} - engines: {node: '>= 0.4.0'} + resolution: + { + integrity: sha512-qdSAmqLF6209RFj4VVItywPMbm3vWylknmB3nvNiUIs72xAimcM8nVYxYr7ncvZq5qzk9MKIZR8ijqD/1QuYjQ==, + } + engines: { node: '>= 0.4.0' } hash-base@3.0.5: - resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==, + } + engines: { node: '>= 0.10' } hash.js@1.1.7: - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} + resolution: + { + integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, + } hasown@2.0.2: - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, + } + engines: { node: '>= 0.4' } he@1.2.0: - resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==} + resolution: + { + integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==, + } hasBin: true hey-listen@1.0.8: - resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==} + resolution: + { + integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==, + } hmac-drbg@1.0.1: - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} + resolution: + { + integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, + } hoist-non-react-statics@3.3.2: - resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==} + resolution: + { + integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==, + } htmlparser2@3.10.1: - resolution: {integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==} + resolution: + { + integrity: sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==, + } http-signature@1.3.6: - resolution: {integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-3adrsD6zqo4GsTqtO7FyrejHNv+NgiIfAfv68+jVlFmSr9OGy7zrxONceFRLKvnnZA5jbxQBX1u9PpB6Wi32Gw==, + } + engines: { node: '>=0.10' } https-browserify@1.0.0: - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} + resolution: + { + integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, + } human-signals@1.1.1: - resolution: {integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==} - engines: {node: '>=8.12.0'} + resolution: + { + integrity: sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==, + } + engines: { node: '>=8.12.0' } ieee754@1.2.1: - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + resolution: + { + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, + } iferr@0.1.5: - resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==} + resolution: + { + integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==, + } ignore@3.3.10: - resolution: {integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==} + resolution: + { + integrity: sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==, + } ignore@5.3.2: - resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==, + } + engines: { node: '>= 4' } image-size@0.5.5: - resolution: {integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==, + } + engines: { node: '>=0.10.0' } hasBin: true imagemin@6.1.0: - resolution: {integrity: sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-8ryJBL1CN5uSHpiBMX0rJw79C9F9aJqMnjGnrd/1CafegpNuA81RBAAru/jQQEOWlOJJlpRnlcVFF6wq+Ist0A==, + } + engines: { node: '>=6' } img-loader@3.0.2: - resolution: {integrity: sha512-rSriLKgvi85Km7ppSF+AEAM3nU4fxpvCkaXtC/IoCEU7jfks55bEANFs0bB9YXYkxY9JurZQIZFtXh5Gue3upw==} + resolution: + { + integrity: sha512-rSriLKgvi85Km7ppSF+AEAM3nU4fxpvCkaXtC/IoCEU7jfks55bEANFs0bB9YXYkxY9JurZQIZFtXh5Gue3upw==, + } peerDependencies: imagemin: ^5.0.0 || ^6.0.0 || ^7.0.0 immer@8.0.4: - resolution: {integrity: sha512-jMfL18P+/6P6epANRvRk6q8t+3gGhqsJ9EuJ25AXE+9bNTYtssvzeYbEd0mXRYWCmmXSIbnlpz6vd6iJlmGGGQ==} + resolution: + { + integrity: sha512-jMfL18P+/6P6epANRvRk6q8t+3gGhqsJ9EuJ25AXE+9bNTYtssvzeYbEd0mXRYWCmmXSIbnlpz6vd6iJlmGGGQ==, + } import-fresh@3.3.0: - resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: '>=6' } imurmurhash@0.1.4: - resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} - engines: {node: '>=0.8.19'} + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: '>=0.8.19' } indent-string@4.0.0: - resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==, + } + engines: { node: '>=8' } infer-owner@1.0.4: - resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==} + resolution: + { + integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==, + } inflight@1.0.6: - resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. inherits@2.0.3: - resolution: {integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==} + resolution: + { + integrity: sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==, + } inherits@2.0.4: - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } ini@2.0.0: - resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==, + } + engines: { node: '>=10' } internal-slot@1.0.7: - resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==, + } + engines: { node: '>= 0.4' } internmap@1.0.1: - resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} + resolution: + { + integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==, + } internmap@2.0.3: - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==, + } + engines: { node: '>=12' } is-accessor-descriptor@1.0.1: - resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==, + } + engines: { node: '>= 0.10' } is-arguments@1.1.1: - resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==, + } + engines: { node: '>= 0.4' } is-array-buffer@3.0.4: - resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==, + } + engines: { node: '>= 0.4' } is-async-function@2.0.0: - resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==, + } + engines: { node: '>= 0.4' } is-bigint@1.0.4: - resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } is-binary-path@1.0.1: - resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==, + } + engines: { node: '>=0.10.0' } is-binary-path@2.1.0: - resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==, + } + engines: { node: '>=8' } is-boolean-object@1.1.2: - resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: '>= 0.4' } is-buffer@1.1.6: - resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==} + resolution: + { + integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==, + } is-bun-module@1.3.0: - resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} + resolution: + { + integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==, + } is-callable@1.2.7: - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: '>= 0.4' } is-ci@3.0.1: - resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} + resolution: + { + integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==, + } hasBin: true is-core-module@2.15.1: - resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==, + } + engines: { node: '>= 0.4' } is-data-descriptor@1.0.1: - resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==, + } + engines: { node: '>= 0.4' } is-data-view@1.0.1: - resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==, + } + engines: { node: '>= 0.4' } is-date-object@1.0.5: - resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: '>= 0.4' } is-descriptor@0.1.7: - resolution: {integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==, + } + engines: { node: '>= 0.4' } is-descriptor@1.0.3: - resolution: {integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==, + } + engines: { node: '>= 0.4' } is-extendable@0.1.1: - resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==, + } + engines: { node: '>=0.10.0' } is-extendable@1.0.1: - resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==, + } + engines: { node: '>=0.10.0' } is-extglob@2.1.1: - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: '>=0.10.0' } is-finalizationregistry@1.1.0: - resolution: {integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-qfMdqbAQEwBw78ZyReKnlA8ezmPdb9BemzIIip/JkjaZUhitfXDkkr+3QTboW0JrSXT1QWyYShpvnNHGZ4c4yA==, + } + engines: { node: '>= 0.4' } is-fullwidth-code-point@3.0.0: - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: '>=8' } is-generator-function@1.0.10: - resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==, + } + engines: { node: '>= 0.4' } is-glob@3.1.0: - resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==, + } + engines: { node: '>=0.10.0' } is-glob@4.0.3: - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: '>=0.10.0' } is-installed-globally@0.4.0: - resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==, + } + engines: { node: '>=10' } is-map@2.0.3: - resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==, + } + engines: { node: '>= 0.4' } is-nan@1.3.2: - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, + } + engines: { node: '>= 0.4' } is-negative-zero@2.0.3: - resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==, + } + engines: { node: '>= 0.4' } is-number-object@1.0.7: - resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: '>= 0.4' } is-number@3.0.0: - resolution: {integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==, + } + engines: { node: '>=0.10.0' } is-number@7.0.0: - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} - engines: {node: '>=0.12.0'} + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: '>=0.12.0' } is-path-inside@3.0.3: - resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==, + } + engines: { node: '>=8' } is-plain-obj@1.1.0: - resolution: {integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==, + } + engines: { node: '>=0.10.0' } is-plain-object@2.0.4: - resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==, + } + engines: { node: '>=0.10.0' } is-regex@1.1.4: - resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: '>= 0.4' } is-set@2.0.3: - resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==, + } + engines: { node: '>= 0.4' } is-shared-array-buffer@1.0.3: - resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==, + } + engines: { node: '>= 0.4' } is-stream@2.0.1: - resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: { node: '>=8' } is-string@1.0.7: - resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: '>= 0.4' } is-symbol@1.0.4: - resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: '>= 0.4' } is-typed-array@1.1.13: - resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==, + } + engines: { node: '>= 0.4' } is-typedarray@1.0.0: - resolution: {integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==} + resolution: + { + integrity: sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==, + } is-unicode-supported@0.1.0: - resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==, + } + engines: { node: '>=10' } is-weakmap@2.0.2: - resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==, + } + engines: { node: '>= 0.4' } is-weakref@1.0.2: - resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } is-weakset@2.0.3: - resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==, + } + engines: { node: '>= 0.4' } is-windows@1.0.2: - resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==, + } + engines: { node: '>=0.10.0' } is-wsl@1.1.0: - resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==, + } + engines: { node: '>=4' } isarray@1.0.0: - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} + resolution: + { + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, + } isarray@2.0.5: - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + resolution: + { + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, + } isexe@2.0.0: - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } isobject@2.1.0: - resolution: {integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==, + } + engines: { node: '>=0.10.0' } isobject@3.0.1: - resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==, + } + engines: { node: '>=0.10.0' } isstream@0.1.2: - resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} + resolution: + { + integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==, + } iterator.prototype@1.1.3: - resolution: {integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-FW5iMbeQ6rBGm/oKgzq2aW4KvAGpxPzYES8N4g4xNXUKpL1mclMvOe+76AcLDTvD+Ze+sOpVhgdAQEKF4L9iGQ==, + } + engines: { node: '>= 0.4' } jackspeak@2.3.6: - resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==, + } + engines: { node: '>=14' } joi@17.13.3: - resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==} + resolution: + { + integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==, + } jose@4.15.9: - resolution: {integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==} + resolution: + { + integrity: sha512-1vUQX+IdDMVPj4k8kOxgUqlcK518yluMuGZwqlr44FS1ppZB/5GWh4rZG89erpOBOJjU/OBsnCVFfapsRz6nEA==, + } js-base64@2.6.4: - resolution: {integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==} + resolution: + { + integrity: sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==, + } js-tokens@4.0.0: - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } js-yaml@3.14.1: - resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } hasBin: true js-yaml@4.1.0: - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } hasBin: true jsbn@0.1.1: - resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==} + resolution: + { + integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==, + } json-buffer@3.0.1: - resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + resolution: + { + integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==, + } json-parse-better-errors@1.0.2: - resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==} + resolution: + { + integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==, + } json-schema-traverse@0.4.1: - resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } json-schema@0.4.0: - resolution: {integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==} + resolution: + { + integrity: sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==, + } json-stable-stringify-without-jsonify@1.0.1: - resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } json-stringify-safe@5.0.1: - resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==} + resolution: + { + integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==, + } json5@1.0.2: - resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } hasBin: true jsona@1.10.1: - resolution: {integrity: sha512-2czP2uLMkPynRexq/F+OLoJGvN7VSUa3pVayJscTXrxVMAdc67Wq/Fb9twjt0drpzbJ6+uz874LDkd8cQBq9xw==} + resolution: + { + integrity: sha512-2czP2uLMkPynRexq/F+OLoJGvN7VSUa3pVayJscTXrxVMAdc67Wq/Fb9twjt0drpzbJ6+uz874LDkd8cQBq9xw==, + } jsonfile@6.1.0: - resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + resolution: + { + integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==, + } jsonwebtoken@8.5.1: - resolution: {integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==} - engines: {node: '>=4', npm: '>=1.4.28'} + resolution: + { + integrity: sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==, + } + engines: { node: '>=4', npm: '>=1.4.28' } jsprim@2.0.2: - resolution: {integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-gqXddjPqQ6G40VdnI6T6yObEC+pDNvyP95wdQhkWkg7crHH3km5qP1FsOXEkzEQwnz6gz5qGTn1c2Y52wP3OyQ==, + } + engines: { '0': node >=0.6.0 } jsx-ast-utils@3.3.5: - resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} - engines: {node: '>=4.0'} + resolution: + { + integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==, + } + engines: { node: '>=4.0' } jwa@1.4.1: - resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==} + resolution: + { + integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==, + } jws@3.2.2: - resolution: {integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==} + resolution: + { + integrity: sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==, + } keyv@4.5.4: - resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + resolution: + { + integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==, + } kind-of@3.2.2: - resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==, + } + engines: { node: '>=0.10.0' } kind-of@4.0.0: - resolution: {integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==, + } + engines: { node: '>=0.10.0' } kind-of@5.1.0: - resolution: {integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==, + } + engines: { node: '>=0.10.0' } kind-of@6.0.3: - resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==, + } + engines: { node: '>=0.10.0' } language-subtag-registry@0.3.23: - resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} + resolution: + { + integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==, + } language-tags@1.0.9: - resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==, + } + engines: { node: '>=0.10' } lazy-ass@1.6.0: - resolution: {integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==} - engines: {node: '> 0.8'} + resolution: + { + integrity: sha512-cc8oEVoctTvsFZ/Oje/kGnHbpWHYBe8IAJe4C0QNc3t8uM/0Y8+erSz/7Y1ALuXTEZTMvxXwO6YbX1ey3ujiZw==, + } + engines: { node: '> 0.8' } levn@0.4.1: - resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: '>= 0.8.0' } lilconfig@2.1.0: - resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==, + } + engines: { node: '>=10' } listr2@3.14.0: - resolution: {integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g==, + } + engines: { node: '>=10.0.0' } peerDependencies: enquirer: '>= 2.3.0 < 3' peerDependenciesMeta: @@ -2845,224 +4832,410 @@ packages: optional: true loader-runner@2.4.0: - resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + resolution: + { + integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==, + } + engines: { node: '>=4.3.0 <5.0.0 || >=5.10' } loader-utils@1.4.2: - resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==, + } + engines: { node: '>=4.0.0' } locate-path@3.0.0: - resolution: {integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==, + } + engines: { node: '>=6' } locate-path@6.0.0: - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: '>=10' } lodash.castarray@4.4.0: - resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==} + resolution: + { + integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==, + } lodash.includes@4.3.0: - resolution: {integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==} + resolution: + { + integrity: sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==, + } lodash.isboolean@3.0.3: - resolution: {integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==} + resolution: + { + integrity: sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==, + } lodash.isinteger@4.0.4: - resolution: {integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==} + resolution: + { + integrity: sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==, + } lodash.isnumber@3.0.3: - resolution: {integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==} + resolution: + { + integrity: sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==, + } lodash.isplainobject@4.0.6: - resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + resolution: + { + integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==, + } lodash.isstring@4.0.1: - resolution: {integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==} + resolution: + { + integrity: sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==, + } lodash.merge@4.6.2: - resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } lodash.once@4.1.1: - resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==} + resolution: + { + integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==, + } lodash@4.17.21: - resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + resolution: + { + integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==, + } log-symbols@4.1.0: - resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==, + } + engines: { node: '>=10' } log-update@4.0.0: - resolution: {integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==, + } + engines: { node: '>=10' } loose-envify@1.4.0: - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} + resolution: + { + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, + } hasBin: true lru-cache@10.4.3: - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + resolution: + { + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, + } lru-cache@5.1.1: - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } lru-cache@6.0.0: - resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: '>=10' } make-dir@1.3.0: - resolution: {integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==, + } + engines: { node: '>=4' } make-dir@2.1.0: - resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==, + } + engines: { node: '>=6' } map-cache@0.2.2: - resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==, + } + engines: { node: '>=0.10.0' } map-stream@0.1.0: - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} + resolution: + { + integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, + } map-visit@1.0.0: - resolution: {integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==, + } + engines: { node: '>=0.10.0' } md5.js@1.3.5: - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} + resolution: + { + integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, + } mdn-data@2.0.14: - resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} + resolution: + { + integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==, + } mdn-data@2.0.4: - resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} + resolution: + { + integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==, + } memory-fs@0.4.1: - resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==} + resolution: + { + integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==, + } memory-fs@0.5.0: - resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==} - engines: {node: '>=4.3.0 <5.0.0 || >=5.10'} + resolution: + { + integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==, + } + engines: { node: '>=4.3.0 <5.0.0 || >=5.10' } merge-options@1.0.1: - resolution: {integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-iuPV41VWKWBIOpBsjoxjDZw8/GbSfZ2mk7N1453bwMrfzdrIk7EzBd+8UVR6rkw67th7xnk9Dytl3J+lHPdxvg==, + } + engines: { node: '>=4' } merge-stream@2.0.0: - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } merge2@1.4.1: - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: '>= 8' } micromatch@3.1.0: - resolution: {integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3StSelAE+hnRvMs8IdVW7Uhk8CVed5tp+kLLGlBP6WiRAXS21GPGu/Nat4WNPXj2Eoc24B02SaeoyozPMfj0/g==, + } + engines: { node: '>=0.10.0' } micromatch@3.1.10: - resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==, + } + engines: { node: '>=0.10.0' } micromatch@4.0.8: - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, + } + engines: { node: '>=8.6' } miller-rabin@4.0.1: - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} + resolution: + { + integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, + } hasBin: true mime-db@1.52.0: - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, + } + engines: { node: '>= 0.6' } mime-types@2.1.35: - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} - engines: {node: '>= 0.6'} + resolution: + { + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, + } + engines: { node: '>= 0.6' } mime@2.6.0: - resolution: {integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==, + } + engines: { node: '>=4.0.0' } hasBin: true mimic-fn@2.1.0: - resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: '>=6' } mini-svg-data-uri@1.4.4: - resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} + resolution: + { + integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==, + } hasBin: true minimalistic-assert@1.0.1: - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + resolution: + { + integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, + } minimalistic-crypto-utils@1.0.1: - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} + resolution: + { + integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, + } minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, + } + engines: { node: '>=16 || 14 >=14.17' } minimist@1.2.8: - resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } minipass@7.1.2: - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} - engines: {node: '>=16 || 14 >=14.17'} + resolution: + { + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, + } + engines: { node: '>=16 || 14 >=14.17' } mississippi@3.0.0: - resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==, + } + engines: { node: '>=4.0.0' } mitt@1.1.2: - resolution: {integrity: sha512-3btxP0O9iGADGWAkteQ8mzDtEspZqu4I32y4GZYCV5BrwtzdcRpF4dQgNdJadCrbBx7Lu6Sq9AVrerMHR0Hkmw==} + resolution: + { + integrity: sha512-3btxP0O9iGADGWAkteQ8mzDtEspZqu4I32y4GZYCV5BrwtzdcRpF4dQgNdJadCrbBx7Lu6Sq9AVrerMHR0Hkmw==, + } mixin-deep@1.3.2: - resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==, + } + engines: { node: '>=0.10.0' } mkdirp@0.5.6: - resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} + resolution: + { + integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==, + } hasBin: true move-concurrently@1.0.1: - resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==} + resolution: + { + integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==, + } deprecated: This package is no longer supported. ms@2.0.0: - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } ms@2.1.2: - resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } ms@2.1.3: - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + resolution: + { + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, + } nan@2.22.0: - resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==} + resolution: + { + integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==, + } nanoid@3.3.8: - resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + resolution: + { + integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==, + } + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } hasBin: true nanomatch@1.2.13: - resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==, + } + engines: { node: '>=0.10.0' } natural-compare@1.4.0: - resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } neo-async@2.6.2: - resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} + resolution: + { + integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==, + } next-auth@4.24.10: - resolution: {integrity: sha512-8NGqiRO1GXBcVfV8tbbGcUgQkAGsX4GRzzXXea4lDikAsJtD5KiEY34bfhUOjHLvr6rT6afpcxw2H8EZqOV6aQ==} + resolution: + { + integrity: sha512-8NGqiRO1GXBcVfV8tbbGcUgQkAGsX4GRzzXXea4lDikAsJtD5KiEY34bfhUOjHLvr6rT6afpcxw2H8EZqOV6aQ==, + } peerDependencies: '@auth/core': 0.34.2 next: ^12.2.5 || ^13 || ^14 || ^15 @@ -3076,28 +5249,43 @@ packages: optional: true next-compose-plugins@2.2.1: - resolution: {integrity: sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg==} + resolution: + { + integrity: sha512-OjJ+fV15FXO2uQXQagLD4C0abYErBjyjE0I0FHpOEIB8upw0hg1ldFP6cqHTJBH1cZqy96OeR3u1dJ+Ez2D4Bg==, + } next-optimized-images@2.6.2: - resolution: {integrity: sha512-yH/f3eLmoQ/TxvWRiSuM6AuF3tR1s4nePdHPTm9gl4lAaGEKxTGaSuUL+ZxE5j/c/ITrnHVHibQzOz1Jl8euQw==} + resolution: + { + integrity: sha512-yH/f3eLmoQ/TxvWRiSuM6AuF3tR1s4nePdHPTm9gl4lAaGEKxTGaSuUL+ZxE5j/c/ITrnHVHibQzOz1Jl8euQw==, + } next-plausible@3.10.1: - resolution: {integrity: sha512-3GyBQH+sUfovemgwvodx84djMlF/o+FoSPtCS2QVFNiJtwGFuhs6CQckMIv+VWdz9zERwZB2nJLJLmgV6aT/aA==} + resolution: + { + integrity: sha512-3GyBQH+sUfovemgwvodx84djMlF/o+FoSPtCS2QVFNiJtwGFuhs6CQckMIv+VWdz9zERwZB2nJLJLmgV6aT/aA==, + } peerDependencies: next: ^11.1.0 || ^12.0.0 || ^13.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 next-redux-wrapper@7.0.5: - resolution: {integrity: sha512-UFXdAWG5i+GFT8+Hoqpx3GArkPh34fVWF9YoA2VSHlBzsrPtnRd7NWM6FNSYUennpommTpWJ09mu+r/1UxyIkg==} + resolution: + { + integrity: sha512-UFXdAWG5i+GFT8+Hoqpx3GArkPh34fVWF9YoA2VSHlBzsrPtnRd7NWM6FNSYUennpommTpWJ09mu+r/1UxyIkg==, + } peerDependencies: next: '>=10.0.3' react: '*' react-redux: '*' next@14.2.18: - resolution: {integrity: sha512-H9qbjDuGivUDEnK6wa+p2XKO+iMzgVgyr9Zp/4Iv29lKa+DYaxJGjOeEA+5VOvJh/M7HLiskehInSa0cWxVXUw==} - engines: {node: '>=18.17.0'} + resolution: + { + integrity: sha512-H9qbjDuGivUDEnK6wa+p2XKO+iMzgVgyr9Zp/4Iv29lKa+DYaxJGjOeEA+5VOvJh/M7HLiskehInSa0cWxVXUw==, + } + engines: { node: '>=18.17.0' } hasBin: true peerDependencies: '@opentelemetry/api': ^1.1.0 @@ -3114,270 +5302,480 @@ packages: optional: true node-libs-browser@2.2.1: - resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==} + resolution: + { + integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==, + } node-releases@2.0.18: - resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} + resolution: + { + integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==, + } normalize-path@2.1.1: - resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==, + } + engines: { node: '>=0.10.0' } normalize-path@3.0.0: - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: '>=0.10.0' } normalize-range@0.1.2: - resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==, + } + engines: { node: '>=0.10.0' } npm-run-path@4.0.1: - resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: { node: '>=8' } nth-check@1.0.2: - resolution: {integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==} + resolution: + { + integrity: sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==, + } oauth@0.9.15: - resolution: {integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==} + resolution: + { + integrity: sha512-a5ERWK1kh38ExDEfoO6qUHJb32rd7aYmPHuyCu3Fta/cnICvYmgd2uhuKXvPD+PXB+gCEYYEaQdIRAjCOwAKNA==, + } object-assign@4.1.1: - resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==, + } + engines: { node: '>=0.10.0' } object-copy@0.1.0: - resolution: {integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==, + } + engines: { node: '>=0.10.0' } object-hash@2.2.0: - resolution: {integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw==, + } + engines: { node: '>= 6' } object-hash@3.0.0: - resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==, + } + engines: { node: '>= 6' } object-inspect@1.13.3: - resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==, + } + engines: { node: '>= 0.4' } object-is@1.1.6: - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, + } + engines: { node: '>= 0.4' } object-keys@1.1.1: - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: '>= 0.4' } object-visit@1.0.1: - resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==, + } + engines: { node: '>=0.10.0' } object.assign@4.1.5: - resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==, + } + engines: { node: '>= 0.4' } object.entries@1.1.8: - resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==, + } + engines: { node: '>= 0.4' } object.fromentries@2.0.8: - resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==, + } + engines: { node: '>= 0.4' } object.getownpropertydescriptors@2.1.8: - resolution: {integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==} - engines: {node: '>= 0.8'} + resolution: + { + integrity: sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A==, + } + engines: { node: '>= 0.8' } object.groupby@1.0.3: - resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==, + } + engines: { node: '>= 0.4' } object.hasown@1.1.4: - resolution: {integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg==, + } + engines: { node: '>= 0.4' } object.pick@1.3.0: - resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==, + } + engines: { node: '>=0.10.0' } object.values@1.2.0: - resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==, + } + engines: { node: '>= 0.4' } oidc-token-hash@5.0.3: - resolution: {integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==} - engines: {node: ^10.13.0 || >=12.0.0} + resolution: + { + integrity: sha512-IF4PcGgzAr6XXSff26Sk/+P4KZFJVuHAJZj3wgO3vX2bMdNVp/QXTP3P7CEm9V1IdG8lDLY3HhiqpsE/nOwpPw==, + } + engines: { node: ^10.13.0 || >=12.0.0 } once@1.4.0: - resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } onetime@5.1.2: - resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: '>=6' } openid-client@5.7.1: - resolution: {integrity: sha512-jDBPgSVfTnkIh71Hg9pRvtJc6wTwqjRkN88+gCFtYWrlP4Yx2Dsrow8uPi3qLr/aeymPF3o2+dS+wOpglK04ew==} + resolution: + { + integrity: sha512-jDBPgSVfTnkIh71Hg9pRvtJc6wTwqjRkN88+gCFtYWrlP4Yx2Dsrow8uPi3qLr/aeymPF3o2+dS+wOpglK04ew==, + } optionator@0.9.4: - resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==, + } + engines: { node: '>= 0.8.0' } os-browserify@0.3.0: - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} + resolution: + { + integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, + } ospath@1.2.2: - resolution: {integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==} + resolution: + { + integrity: sha512-o6E5qJV5zkAbIDNhGSIlyOhScKXgQrSRMilfph0clDfM0nEnBOlKlH4sWDmG95BW/CvwNz0vmm7dJVtU2KlMiA==, + } p-finally@2.0.1: - resolution: {integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==, + } + engines: { node: '>=8' } p-limit@2.3.0: - resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: '>=6' } p-limit@3.1.0: - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: '>=10' } p-locate@3.0.0: - resolution: {integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==, + } + engines: { node: '>=6' } p-locate@5.0.0: - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: '>=10' } p-map@4.0.0: - resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==, + } + engines: { node: '>=10' } p-pipe@1.2.0: - resolution: {integrity: sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IA8SqjIGA8l9qOksXJvsvkeQ+VGb0TAzNCzvKvz9wt5wWLqfWbV6fXy43gpR2L4Te8sOq3S+Ql9biAaMKPdbtw==, + } + engines: { node: '>=4' } p-try@2.2.0: - resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: '>=6' } pako@1.0.11: - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} + resolution: + { + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, + } parallel-transform@1.2.0: - resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==} + resolution: + { + integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==, + } parent-module@1.0.1: - resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: '>=6' } parse-asn1@5.1.7: - resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==, + } + engines: { node: '>= 0.10' } pascalcase@0.1.1: - resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==, + } + engines: { node: '>=0.10.0' } path-browserify@0.0.1: - resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==} + resolution: + { + integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==, + } path-dirname@1.0.2: - resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==} + resolution: + { + integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==, + } path-exists@3.0.0: - resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==, + } + engines: { node: '>=4' } path-exists@4.0.0: - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: '>=8' } path-is-absolute@1.0.1: - resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: '>=0.10.0' } path-key@3.1.1: - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: '>=8' } path-parse@1.0.7: - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } path-scurry@1.11.1: - resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} - engines: {node: '>=16 || 14 >=14.18'} + resolution: + { + integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==, + } + engines: { node: '>=16 || 14 >=14.18' } path-type@3.0.0: - resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==, + } + engines: { node: '>=4' } path-type@4.0.0: - resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: '>=8' } pause-stream@0.0.11: - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} + resolution: + { + integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, + } pbkdf2@3.1.2: - resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==, + } + engines: { node: '>=0.12' } pend@1.2.0: - resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + resolution: + { + integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==, + } performance-now@2.1.0: - resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + resolution: + { + integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==, + } picocolors@1.1.1: - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + resolution: + { + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, + } picomatch@2.3.1: - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} - engines: {node: '>=8.6'} + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: '>=8.6' } pify@2.3.0: - resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==, + } + engines: { node: '>=0.10.0' } pify@3.0.0: - resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==, + } + engines: { node: '>=4' } pify@4.0.1: - resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, + } + engines: { node: '>=6' } pkg-dir@3.0.0: - resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==, + } + engines: { node: '>=6' } popmotion@11.0.3: - resolution: {integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==} + resolution: + { + integrity: sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==, + } posix-character-classes@0.1.1: - resolution: {integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==, + } + engines: { node: '>=0.10.0' } possible-typed-array-names@1.0.0: - resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==, + } + engines: { node: '>= 0.4' } postcss-import@14.1.0: - resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==, + } + engines: { node: '>=10.0.0' } peerDependencies: postcss: ^8.0.0 postcss-js@4.0.1: - resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} - engines: {node: ^12 || ^14 || >= 16} + resolution: + { + integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==, + } + engines: { node: ^12 || ^14 || >= 16 } peerDependencies: postcss: ^8.4.21 postcss-load-config@3.1.4: - resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} - engines: {node: '>= 10'} + resolution: + { + integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==, + } + engines: { node: '>= 10' } peerDependencies: postcss: '>=8.0.9' ts-node: '>=9.0.0' @@ -3388,93 +5786,162 @@ packages: optional: true postcss-nested@5.0.6: - resolution: {integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==} - engines: {node: '>=12.0'} + resolution: + { + integrity: sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==, + } + engines: { node: '>=12.0' } peerDependencies: postcss: ^8.2.14 postcss-prefix-selector@1.16.1: - resolution: {integrity: sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==} + resolution: + { + integrity: sha512-Umxu+FvKMwlY6TyDzGFoSUnzW+NOfMBLyC1tAkIjgX+Z/qGspJeRjVC903D7mx7TuBpJlwti2ibXtWuA7fKMeQ==, + } peerDependencies: postcss: '>4 <9' postcss-selector-parser@6.0.10: - resolution: {integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==, + } + engines: { node: '>=4' } postcss-selector-parser@6.1.2: - resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==, + } + engines: { node: '>=4' } postcss-value-parser@4.2.0: - resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} + resolution: + { + integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==, + } postcss@5.2.18: - resolution: {integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==, + } + engines: { node: '>=0.12' } postcss@8.4.13: - resolution: {integrity: sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA==, + } + engines: { node: ^10 || ^12 || >=14 } postcss@8.4.31: - resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} - engines: {node: ^10 || ^12 || >=14} + resolution: + { + integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==, + } + engines: { node: ^10 || ^12 || >=14 } posthtml-parser@0.2.1: - resolution: {integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==} + resolution: + { + integrity: sha512-nPC53YMqJnc/+1x4fRYFfm81KV2V+G9NZY+hTohpYg64Ay7NemWWcV4UWuy/SgMupqQ3kJ88M/iRfZmSnxT+pw==, + } posthtml-rename-id@1.0.12: - resolution: {integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==} + resolution: + { + integrity: sha512-UKXf9OF/no8WZo9edRzvuMenb6AD5hDLzIepJW+a4oJT+T/Lx7vfMYWT4aWlGNQh0WMhnUx1ipN9OkZ9q+ddEw==, + } posthtml-render@1.4.0: - resolution: {integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-W1779iVHGfq0Fvh2PROhCe2QhB8mEErgqzo1wpIt36tCgChafP+hbXIhLDOM8ePJrZcFs0vkNEtdibEWVqChqw==, + } + engines: { node: '>=10' } posthtml-svg-mode@1.0.3: - resolution: {integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==} + resolution: + { + integrity: sha512-hEqw9NHZ9YgJ2/0G7CECOeuLQKZi8HjWLkBaSVtOWjygQ9ZD8P7tqeowYs7WrFdKsWEKG7o+IlsPY8jrr0CJpQ==, + } posthtml@0.9.2: - resolution: {integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-spBB5sgC4cv2YcW03f/IAUN1pgDJWNWD8FzkyY4mArLUMJW+KlQhlmUdKAHQuPfb00Jl5xIfImeOsf6YL8QK7Q==, + } + engines: { node: '>=0.10.0' } preact-render-to-string@5.2.6: - resolution: {integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==} + resolution: + { + integrity: sha512-JyhErpYOvBV1hEPwIxc/fHWXPfnEGdRKxc8gFdAZ7XV4tlzyzG847XAyEZqoDnynP88akM4eaHcSOzNcLWFguw==, + } peerDependencies: preact: '>=10' preact@10.25.0: - resolution: {integrity: sha512-6bYnzlLxXV3OSpUxLdaxBmE7PMOu0aR3pG6lryK/0jmvcDFPlcXGQAt5DpK3RITWiDrfYZRI0druyaK/S9kYLg==} + resolution: + { + integrity: sha512-6bYnzlLxXV3OSpUxLdaxBmE7PMOu0aR3pG6lryK/0jmvcDFPlcXGQAt5DpK3RITWiDrfYZRI0druyaK/S9kYLg==, + } prelude-ls@1.2.1: - resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: '>= 0.8.0' } prettier-linter-helpers@1.0.0: - resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, + } + engines: { node: '>=6.0.0' } prettier@2.3.0: - resolution: {integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==} - engines: {node: '>=10.13.0'} + resolution: + { + integrity: sha512-kXtO4s0Lz/DW/IJ9QdWhAf7/NmPWQXkFr/r/WkR3vyI+0v8amTDxiaQSLzs8NBlytfLWX/7uQUMIW677yLKl4w==, + } + engines: { node: '>=10.13.0' } hasBin: true pretty-bytes@5.6.0: - resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, + } + engines: { node: '>=6' } pretty-format@3.8.0: - resolution: {integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==} + resolution: + { + integrity: sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==, + } process-nextick-args@2.0.1: - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} + resolution: + { + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, + } process@0.11.10: - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} - engines: {node: '>= 0.6.0'} + resolution: + { + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, + } + engines: { node: '>= 0.6.0' } promise-inflight@1.0.1: - resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==} + resolution: + { + integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==, + } peerDependencies: bluebird: '*' peerDependenciesMeta: @@ -3482,107 +5949,188 @@ packages: optional: true prop-types@15.8.1: - resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} + resolution: + { + integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==, + } proxy-from-env@1.0.0: - resolution: {integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==} + resolution: + { + integrity: sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==, + } prr@1.0.1: - resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==} + resolution: + { + integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==, + } ps-tree@1.2.0: - resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, + } + engines: { node: '>= 0.10' } hasBin: true psl@1.14.0: - resolution: {integrity: sha512-Syk1bnf6fRZ9wQs03AtKJHcM12cKbOLo9L8JtCCdYj5/DTsHmTyXM4BK5ouWeG2P6kZ4nmFvuNTdtaqfobCOCg==} + resolution: + { + integrity: sha512-Syk1bnf6fRZ9wQs03AtKJHcM12cKbOLo9L8JtCCdYj5/DTsHmTyXM4BK5ouWeG2P6kZ4nmFvuNTdtaqfobCOCg==, + } public-encrypt@4.0.3: - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} + resolution: + { + integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, + } pump@2.0.1: - resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==} + resolution: + { + integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==, + } pump@3.0.2: - resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} + resolution: + { + integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==, + } pumpify@1.5.1: - resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==} + resolution: + { + integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==, + } punycode@1.4.1: - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} + resolution: + { + integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, + } punycode@2.3.1: - resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==, + } + engines: { node: '>=6' } q@1.5.1: - resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==} - engines: {node: '>=0.6.0', teleport: '>=0.2.0'} + resolution: + { + integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==, + } + engines: { node: '>=0.6.0', teleport: '>=0.2.0' } deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qs@6.10.4: - resolution: {integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g==, + } + engines: { node: '>=0.6' } qs@6.13.1: - resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==} - engines: {node: '>=0.6'} + resolution: + { + integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==, + } + engines: { node: '>=0.6' } query-string@4.3.4: - resolution: {integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==, + } + engines: { node: '>=0.10.0' } query-string@7.1.1: - resolution: {integrity: sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-MplouLRDHBZSG9z7fpuAAcI7aAYjDLhtsiVZsevsfaHWDS2IDdORKbSd1kWUA+V4zyva/HZoSfpwnYMMQDhb0w==, + } + engines: { node: '>=6' } querystring-es3@0.2.1: - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} - engines: {node: '>=0.4.x'} + resolution: + { + integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, + } + engines: { node: '>=0.4.x' } querystringify@2.2.0: - resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + resolution: + { + integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==, + } queue-microtask@1.2.3: - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } quick-lru@5.1.1: - resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==, + } + engines: { node: '>=10' } randombytes@2.1.0: - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} + resolution: + { + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, + } randomfill@1.0.4: - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} + resolution: + { + integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, + } raw-loader@2.0.0: - resolution: {integrity: sha512-kZnO5MoIyrojfrPWqrhFNLZemIAX8edMOCp++yC5RKxzFB3m92DqKNhKlU6+FvpOhWtvyh3jOaD7J6/9tpdIKg==} - engines: {node: '>= 6.9.0'} + resolution: + { + integrity: sha512-kZnO5MoIyrojfrPWqrhFNLZemIAX8edMOCp++yC5RKxzFB3m92DqKNhKlU6+FvpOhWtvyh3jOaD7J6/9tpdIKg==, + } + engines: { node: '>= 6.9.0' } peerDependencies: webpack: ^4.3.0 react-dom@18.3.1: - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} + resolution: + { + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, + } peerDependencies: react: ^18.3.1 react-final-form@6.5.3: - resolution: {integrity: sha512-FCs6GC0AMWJl2p6YX7kM+a0AvuSLAZUgbVNtRBskOs4g984t/It0qGtx51O+9vgqnqk6JyoxmIzxKMq+7ch/vg==} + resolution: + { + integrity: sha512-FCs6GC0AMWJl2p6YX7kM+a0AvuSLAZUgbVNtRBskOs4g984t/It0qGtx51O+9vgqnqk6JyoxmIzxKMq+7ch/vg==, + } peerDependencies: final-form: ^4.20.0 react: ^16.8.0 || ^17.0.0 react-is@16.13.1: - resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + resolution: + { + integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==, + } react-redux@7.2.4: - resolution: {integrity: sha512-hOQ5eOSkEJEXdpIKbnRyl04LhaWabkDPV+Ix97wqQX3T3d2NQ8DUblNXXtNMavc7DpswyQM6xfaN4HQDKNY2JA==} + resolution: + { + integrity: sha512-hOQ5eOSkEJEXdpIKbnRyl04LhaWabkDPV+Ix97wqQX3T3d2NQ8DUblNXXtNMavc7DpswyQM6xfaN4HQDKNY2JA==, + } peerDependencies: react: ^16.8.3 || ^17 react-dom: '*' @@ -3594,423 +6142,759 @@ packages: optional: true react-simple-maps@3.0.0: - resolution: {integrity: sha512-vKNFrvpPG8Vyfdjnz5Ne1N56rZlDfHXv5THNXOVZMqbX1rWZA48zQuYT03mx6PAKanqarJu/PDLgshIZAfHHqw==} + resolution: + { + integrity: sha512-vKNFrvpPG8Vyfdjnz5Ne1N56rZlDfHXv5THNXOVZMqbX1rWZA48zQuYT03mx6PAKanqarJu/PDLgshIZAfHHqw==, + } peerDependencies: prop-types: ^15.7.2 react: ^16.8.0 || 17.x || 18.x react-dom: ^16.8.0 || 17.x || 18.x react-use-cookie@1.4.0: - resolution: {integrity: sha512-e21YFkimh8OX6Ctqq89YeeiwsIL1jr2GyCeBdkBKDWY5X5o2yonbQuqfFODK4opteJS3F7ya0OuYg06lOeqvJQ==} - engines: {node: '>=8', npm: '>=5'} + resolution: + { + integrity: sha512-e21YFkimh8OX6Ctqq89YeeiwsIL1jr2GyCeBdkBKDWY5X5o2yonbQuqfFODK4opteJS3F7ya0OuYg06lOeqvJQ==, + } + engines: { node: '>=8', npm: '>=5' } peerDependencies: react: '>=16.8' react@18.3.1: - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, + } + engines: { node: '>=0.10.0' } read-cache@1.0.0: - resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} + resolution: + { + integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==, + } readable-stream@2.3.8: - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} + resolution: + { + integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, + } readable-stream@3.6.2: - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, + } + engines: { node: '>= 6' } readdirp@2.2.1: - resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==, + } + engines: { node: '>=0.10' } readdirp@3.6.0: - resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} - engines: {node: '>=8.10.0'} + resolution: + { + integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==, + } + engines: { node: '>=8.10.0' } redux-thunk@2.4.2: - resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==} + resolution: + { + integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==, + } peerDependencies: redux: ^4 redux@4.2.1: - resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==} + resolution: + { + integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==, + } reflect.getprototypeof@1.0.7: - resolution: {integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-bMvFGIUKlc/eSfXNX+aZ+EL95/EgZzuwA0OBPTbZZDEJw/0AkentjMuM1oiRfwHrshqk4RzdgiTg5CcDalXN5g==, + } + engines: { node: '>= 0.4' } regenerator-runtime@0.14.1: - resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + resolution: + { + integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==, + } regex-not@1.0.2: - resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==, + } + engines: { node: '>=0.10.0' } regexp.prototype.flags@1.5.3: - resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==, + } + engines: { node: '>= 0.4' } regexpp@3.2.0: - resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: '>=8' } remove-trailing-separator@1.1.0: - resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + resolution: + { + integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==, + } repeat-element@1.1.4: - resolution: {integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==, + } + engines: { node: '>=0.10.0' } repeat-string@1.6.1: - resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} - engines: {node: '>=0.10'} + resolution: + { + integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==, + } + engines: { node: '>=0.10' } replace-ext@1.0.1: - resolution: {integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==} - engines: {node: '>= 0.10'} + resolution: + { + integrity: sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==, + } + engines: { node: '>= 0.10' } request-progress@3.0.0: - resolution: {integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==} + resolution: + { + integrity: sha512-MnWzEHHaxHO2iWiQuHrUPBi/1WeBf5PkxQqNyNvLl9VAYSdXkP8tQ3pBSeCPD+yw0v0Aq1zosWLz0BdeXpWwZg==, + } requires-port@1.0.0: - resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} + resolution: + { + integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==, + } reselect@4.1.8: - resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==} + resolution: + { + integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==, + } resolve-from@4.0.0: - resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: '>=4' } resolve-pkg-maps@1.0.0: - resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolution: + { + integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==, + } resolve-url@0.2.1: - resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==} + resolution: + { + integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==, + } deprecated: https://github.com/lydell/resolve-url#deprecated resolve@1.22.8: - resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + resolution: + { + integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==, + } hasBin: true resolve@2.0.0-next.5: - resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} + resolution: + { + integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==, + } hasBin: true restore-cursor@3.1.0: - resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==, + } + engines: { node: '>=8' } ret@0.1.15: - resolution: {integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==} - engines: {node: '>=0.12'} + resolution: + { + integrity: sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==, + } + engines: { node: '>=0.12' } reusify@1.0.4: - resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } rfdc@1.4.1: - resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + resolution: + { + integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==, + } rimraf@2.7.1: - resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} + resolution: + { + integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true rimraf@3.0.2: - resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } deprecated: Rimraf versions prior to v4 are no longer supported hasBin: true ripemd160@2.0.2: - resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} + resolution: + { + integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==, + } run-parallel@1.2.0: - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } run-queue@1.0.3: - resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==} + resolution: + { + integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==, + } rxjs@6.6.7: - resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} - engines: {npm: '>=2.0.0'} + resolution: + { + integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==, + } + engines: { npm: '>=2.0.0' } rxjs@7.8.1: - resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} + resolution: + { + integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==, + } safe-array-concat@1.1.2: - resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==, + } + engines: { node: '>=0.4' } safe-buffer@5.1.2: - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} + resolution: + { + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, + } safe-buffer@5.2.1: - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + resolution: + { + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, + } safe-json-stringify@1.2.0: - resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==} + resolution: + { + integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==, + } safe-regex-test@1.0.3: - resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==, + } + engines: { node: '>= 0.4' } safe-regex@1.1.0: - resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==} + resolution: + { + integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==, + } safer-buffer@2.1.2: - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + resolution: + { + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, + } sax@1.2.4: - resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} + resolution: + { + integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==, + } scheduler@0.23.2: - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} + resolution: + { + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, + } schema-utils@1.0.0: - resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==} - engines: {node: '>= 4'} + resolution: + { + integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==, + } + engines: { node: '>= 4' } semver@5.7.2: - resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + resolution: + { + integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==, + } hasBin: true semver@6.3.1: - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + resolution: + { + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, + } hasBin: true semver@7.6.3: - resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==, + } + engines: { node: '>=10' } hasBin: true serialize-javascript@4.0.0: - resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==} + resolution: + { + integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==, + } set-function-length@1.2.2: - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, + } + engines: { node: '>= 0.4' } set-function-name@2.0.2: - resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==, + } + engines: { node: '>= 0.4' } set-value@2.0.1: - resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==, + } + engines: { node: '>=0.10.0' } setimmediate@1.0.5: - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} + resolution: + { + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, + } sha.js@2.4.11: - resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==} + resolution: + { + integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==, + } hasBin: true shebang-command@2.0.0: - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: '>=8' } shebang-regex@3.0.0: - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: '>=8' } side-channel@1.0.6: - resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==, + } + engines: { node: '>= 0.4' } signal-exit@3.0.7: - resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } signal-exit@4.1.0: - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} - engines: {node: '>=14'} + resolution: + { + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, + } + engines: { node: '>=14' } slash@1.0.0: - resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==, + } + engines: { node: '>=0.10.0' } slash@3.0.0: - resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: '>=8' } slice-ansi@3.0.0: - resolution: {integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==, + } + engines: { node: '>=8' } slice-ansi@4.0.0: - resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==, + } + engines: { node: '>=10' } snapdragon-node@2.1.1: - resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==, + } + engines: { node: '>=0.10.0' } snapdragon-util@3.0.1: - resolution: {integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==, + } + engines: { node: '>=0.10.0' } snapdragon@0.8.2: - resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==, + } + engines: { node: '>=0.10.0' } source-list-map@2.0.1: - resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==} + resolution: + { + integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==, + } source-map-js@1.2.1: - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, + } + engines: { node: '>=0.10.0' } source-map-resolve@0.5.3: - resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==} + resolution: + { + integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==, + } deprecated: See https://github.com/lydell/source-map-resolve#deprecated source-map-support@0.5.21: - resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==} + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } source-map-url@0.4.1: - resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==} + resolution: + { + integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==, + } deprecated: See https://github.com/lydell/source-map-url#deprecated source-map@0.5.7: - resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==, + } + engines: { node: '>=0.10.0' } source-map@0.6.1: - resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: '>=0.10.0' } split-on-first@1.1.0: - resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==, + } + engines: { node: '>=6' } split-string@3.1.0: - resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==, + } + engines: { node: '>=0.10.0' } split@0.3.3: - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} + resolution: + { + integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, + } sprintf-js@1.0.3: - resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } sshpk@1.18.0: - resolution: {integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-2p2KJZTSqQ/I3+HX42EpYOa2l3f8Erv8MWKsy2I9uf4wA7yFIkXRffYdsx86y6z4vHtV8u7g+pPlr8/4ouAxsQ==, + } + engines: { node: '>=0.10.0' } hasBin: true ssri@6.0.2: - resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==} + resolution: + { + integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==, + } stable@0.1.8: - resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} + resolution: + { + integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==, + } deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' start-server-and-test@1.12.1: - resolution: {integrity: sha512-qGQ2HQiF2yDIfyaHsXkHfoE5UOl4zJUbJ/gx2xOkfX7iPMXW9qHmoFyaMfIDJVLNkxCK7RxSrvWEI9hNVKQluw==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-qGQ2HQiF2yDIfyaHsXkHfoE5UOl4zJUbJ/gx2xOkfX7iPMXW9qHmoFyaMfIDJVLNkxCK7RxSrvWEI9hNVKQluw==, + } + engines: { node: '>=6' } hasBin: true static-extend@0.1.2: - resolution: {integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==, + } + engines: { node: '>=0.10.0' } stream-browserify@2.0.2: - resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==} + resolution: + { + integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==, + } stream-combiner@0.0.4: - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} + resolution: + { + integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, + } stream-each@1.2.3: - resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==} + resolution: + { + integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==, + } stream-http@2.8.3: - resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==} + resolution: + { + integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==, + } stream-shift@1.0.3: - resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==} + resolution: + { + integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==, + } streamsearch@1.1.0: - resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} - engines: {node: '>=10.0.0'} + resolution: + { + integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==, + } + engines: { node: '>=10.0.0' } strict-uri-encode@1.1.0: - resolution: {integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==, + } + engines: { node: '>=0.10.0' } strict-uri-encode@2.0.0: - resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==, + } + engines: { node: '>=4' } string-width@4.2.3: - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: '>=8' } string-width@5.1.2: - resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==, + } + engines: { node: '>=12' } string.prototype.includes@2.0.1: - resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==, + } + engines: { node: '>= 0.4' } string.prototype.matchall@4.0.11: - resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==, + } + engines: { node: '>= 0.4' } string.prototype.repeat@1.0.0: - resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} + resolution: + { + integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==, + } string.prototype.trim@1.2.9: - resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==, + } + engines: { node: '>= 0.4' } string.prototype.trimend@1.0.8: - resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} + resolution: + { + integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==, + } string.prototype.trimstart@1.0.8: - resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==, + } + engines: { node: '>= 0.4' } string_decoder@1.1.1: - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} + resolution: + { + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, + } string_decoder@1.3.0: - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + resolution: + { + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, + } strip-ansi@3.0.1: - resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==, + } + engines: { node: '>=0.10.0' } strip-ansi@6.0.1: - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: '>=8' } strip-ansi@7.1.0: - resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==, + } + engines: { node: '>=12' } strip-bom@3.0.0: - resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: '>=4' } strip-final-newline@2.0.0: - resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: { node: '>=6' } strip-json-comments@3.1.1: - resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: '>=8' } style-value-types@5.0.0: - resolution: {integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==} + resolution: + { + integrity: sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==, + } style-value-types@5.1.0: - resolution: {integrity: sha512-DRIfBtjxQ4ztBZpexkFcI+UR7pODC5qLMf2Syt+bH98PAHHRH2tQnzxBuDQlqcAoYar6GzWnj8iAfqfwnEzCiQ==} + resolution: + { + integrity: sha512-DRIfBtjxQ4ztBZpexkFcI+UR7pODC5qLMf2Syt+bH98PAHHRH2tQnzxBuDQlqcAoYar6GzWnj8iAfqfwnEzCiQ==, + } styled-jsx@5.1.1: - resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} - engines: {node: '>= 12.0.0'} + resolution: + { + integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==, + } + engines: { node: '>= 12.0.0' } peerDependencies: '@babel/core': '*' babel-plugin-macros: '*' @@ -4022,327 +6906,576 @@ packages: optional: true supports-color@2.0.0: - resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==, + } + engines: { node: '>=0.8.0' } supports-color@3.2.3: - resolution: {integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==} - engines: {node: '>=0.8.0'} + resolution: + { + integrity: sha512-Jds2VIYDrlp5ui7t8abHN2bjAu4LV/q4N2KivFPpGH0lrka0BMq/33AmECUXlKPcHigkNaqfXRENFju+rlcy+A==, + } + engines: { node: '>=0.8.0' } supports-color@5.5.0: - resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: '>=4' } supports-color@7.2.0: - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: '>=8' } supports-color@8.1.1: - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: { node: '>=10' } supports-preserve-symlinks-flag@1.0.0: - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: '>= 0.4' } svg-baker-runtime@1.4.7: - resolution: {integrity: sha512-Zorfwwj5+lWjk/oxwSMsRdS2sPQQdTmmsvaSpzU+i9ZWi3zugHLt6VckWfnswphQP0LmOel3nggpF5nETbt6xw==} + resolution: + { + integrity: sha512-Zorfwwj5+lWjk/oxwSMsRdS2sPQQdTmmsvaSpzU+i9ZWi3zugHLt6VckWfnswphQP0LmOel3nggpF5nETbt6xw==, + } svg-baker@1.7.0: - resolution: {integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==} + resolution: + { + integrity: sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==, + } svg-sprite-loader@6.0.11: - resolution: {integrity: sha512-TedsTf8wsHH6HgdwKjUveDZRC6q5gPloYV8A8/zZaRWP929J7x6TzQ6MvZFl+YYDJuJ0Akyuu/vNVJ+fbPuYXg==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-TedsTf8wsHH6HgdwKjUveDZRC6q5gPloYV8A8/zZaRWP929J7x6TzQ6MvZFl+YYDJuJ0Akyuu/vNVJ+fbPuYXg==, + } + engines: { node: '>=6' } svgo-loader@2.2.2: - resolution: {integrity: sha512-UeE/4yZEK96LoYqvxwh8YqCOJCjXwRY9K6YT99vXE+nYhs/W8hAY2hNf5zg/lRsyKshJkR79V+4beV3cbGL40Q==} + resolution: + { + integrity: sha512-UeE/4yZEK96LoYqvxwh8YqCOJCjXwRY9K6YT99vXE+nYhs/W8hAY2hNf5zg/lRsyKshJkR79V+4beV3cbGL40Q==, + } peerDependencies: svgo: ^1.0.0 svgo@1.3.2: - resolution: {integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==} - engines: {node: '>=4.0.0'} + resolution: + { + integrity: sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==, + } + engines: { node: '>=4.0.0' } deprecated: This SVGO version is no longer supported. Upgrade to v2.x.x. hasBin: true tailwindcss@3.1.7: - resolution: {integrity: sha512-r7mgumZ3k0InfVPpGWcX8X/Ut4xBfv+1O/+C73ar/m01LxGVzWvPxF/w6xIUPEztrCoz7axfx0SMdh8FH8ZvRQ==} - engines: {node: '>=12.13.0'} + resolution: + { + integrity: sha512-r7mgumZ3k0InfVPpGWcX8X/Ut4xBfv+1O/+C73ar/m01LxGVzWvPxF/w6xIUPEztrCoz7axfx0SMdh8FH8ZvRQ==, + } + engines: { node: '>=12.13.0' } hasBin: true peerDependencies: postcss: ^8.0.9 tapable@1.1.3: - resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==, + } + engines: { node: '>=6' } tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==, + } + engines: { node: '>=6' } terser-webpack-plugin@1.4.6: - resolution: {integrity: sha512-2lBVf/VMVIddjSn3GqbT90GvIJ/eYXJkt8cTzU7NbjKqK8fwv18Ftr4PlbF46b/e88743iZFL5Dtr/rC4hjIeA==} - engines: {node: '>= 6.9.0'} + resolution: + { + integrity: sha512-2lBVf/VMVIddjSn3GqbT90GvIJ/eYXJkt8cTzU7NbjKqK8fwv18Ftr4PlbF46b/e88743iZFL5Dtr/rC4hjIeA==, + } + engines: { node: '>= 6.9.0' } peerDependencies: webpack: ^4.0.0 terser@4.8.1: - resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==} - engines: {node: '>=6.0.0'} + resolution: + { + integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==, + } + engines: { node: '>=6.0.0' } hasBin: true text-table@0.2.0: - resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } throttleit@1.0.1: - resolution: {integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==} + resolution: + { + integrity: sha512-vDZpf9Chs9mAdfY046mcPt8fg5QSZr37hEH4TXYBnDF+izxgrbRGUAAaBvIk/fJm9aOFCGFd1EsNg5AZCbnQCQ==, + } through2@2.0.5: - resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==} + resolution: + { + integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==, + } through@2.3.8: - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + resolution: + { + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, + } timers-browserify@2.0.12: - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} - engines: {node: '>=0.6.0'} + resolution: + { + integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, + } + engines: { node: '>=0.6.0' } tmp@0.2.3: - resolution: {integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==} - engines: {node: '>=14.14'} + resolution: + { + integrity: sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==, + } + engines: { node: '>=14.14' } to-arraybuffer@1.0.1: - resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==} + resolution: + { + integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==, + } to-object-path@0.3.0: - resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==, + } + engines: { node: '>=0.10.0' } to-regex-range@2.1.1: - resolution: {integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==, + } + engines: { node: '>=0.10.0' } to-regex-range@5.0.1: - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} - engines: {node: '>=8.0'} + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: '>=8.0' } to-regex@3.0.2: - resolution: {integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==, + } + engines: { node: '>=0.10.0' } topojson-client@3.1.0: - resolution: {integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==} + resolution: + { + integrity: sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==, + } hasBin: true tough-cookie@4.1.4: - resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} - engines: {node: '>=6'} + resolution: + { + integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==, + } + engines: { node: '>=6' } traverse@0.6.10: - resolution: {integrity: sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-hN4uFRxbK+PX56DxYiGHsTn2dME3TVr9vbNqlQGcGcPhJAn+tdP126iA+TArMpI4YSgnTkMWyoLl5bf81Hi5TA==, + } + engines: { node: '>= 0.4' } ts-api-utils@1.4.3: - resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} - engines: {node: '>=16'} + resolution: + { + integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==, + } + engines: { node: '>=16' } peerDependencies: typescript: '>=4.2.0' tsconfig-paths@3.15.0: - resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + resolution: + { + integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==, + } tslib@1.14.1: - resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } tslib@2.8.1: - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + resolution: + { + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, + } tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: '>= 6' } peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' tty-browserify@0.0.0: - resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==} + resolution: + { + integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==, + } tunnel-agent@0.6.0: - resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + resolution: + { + integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==, + } tweetnacl@0.14.5: - resolution: {integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==} + resolution: + { + integrity: sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA==, + } type-check@0.4.0: - resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} - engines: {node: '>= 0.8.0'} + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: '>= 0.8.0' } type-fest@0.20.2: - resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: { node: '>=10' } type-fest@0.21.3: - resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: '>=10' } typed-array-buffer@1.0.2: - resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==, + } + engines: { node: '>= 0.4' } typed-array-byte-length@1.0.1: - resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==, + } + engines: { node: '>= 0.4' } typed-array-byte-offset@1.0.3: - resolution: {integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-GsvTyUHTriq6o/bHcTd0vM7OQ9JEdlvluu9YISaA7+KzDzPaIzEeDFNkTfhdE3MYcNhNi0vq/LlegYgIs5yPAw==, + } + engines: { node: '>= 0.4' } typed-array-length@1.0.7: - resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==, + } + engines: { node: '>= 0.4' } typedarray.prototype.slice@1.0.3: - resolution: {integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-8WbVAQAUlENo1q3c3zZYuy5k9VzBQvp8AX9WOtbvyWlLM1v5JaSRmjubLjzHF4JFtptjH/5c/i95yaElvcjC0A==, + } + engines: { node: '>= 0.4' } typedarray@0.0.6: - resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==} + resolution: + { + integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==, + } typescript@4.5.2: - resolution: {integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==} - engines: {node: '>=4.2.0'} + resolution: + { + integrity: sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==, + } + engines: { node: '>=4.2.0' } hasBin: true unbox-primitive@1.0.2: - resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } unidecode@0.1.8: - resolution: {integrity: sha512-SdoZNxCWpN2tXTCrGkPF/0rL2HEq+i2gwRG1ReBvx8/0yTzC3enHfugOf8A9JBShVwwrRIkLX0YcDUGbzjbVCA==} - engines: {node: '>= 0.4.12'} + resolution: + { + integrity: sha512-SdoZNxCWpN2tXTCrGkPF/0rL2HEq+i2gwRG1ReBvx8/0yTzC3enHfugOf8A9JBShVwwrRIkLX0YcDUGbzjbVCA==, + } + engines: { node: '>= 0.4.12' } union-value@1.0.1: - resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==, + } + engines: { node: '>=0.10.0' } unique-filename@1.1.1: - resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==} + resolution: + { + integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==, + } unique-slug@2.0.2: - resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==} + resolution: + { + integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==, + } universalify@0.2.0: - resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} - engines: {node: '>= 4.0.0'} + resolution: + { + integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==, + } + engines: { node: '>= 4.0.0' } universalify@2.0.1: - resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==, + } + engines: { node: '>= 10.0.0' } unquote@1.1.1: - resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==} + resolution: + { + integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==, + } unset-value@1.0.0: - resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==, + } + engines: { node: '>=0.10.0' } untildify@4.0.0: - resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==, + } + engines: { node: '>=8' } upath@1.2.0: - resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==} - engines: {node: '>=4'} + resolution: + { + integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==, + } + engines: { node: '>=4' } update-browserslist-db@1.1.1: - resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + resolution: + { + integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==, + } hasBin: true peerDependencies: browserslist: '>= 4.21.0' uri-js@4.4.1: - resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } urix@0.1.0: - resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==} + resolution: + { + integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==, + } deprecated: Please see https://github.com/lydell/urix#deprecated url-loader@1.1.2: - resolution: {integrity: sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==} - engines: {node: '>= 6.9.0'} + resolution: + { + integrity: sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg==, + } + engines: { node: '>= 6.9.0' } peerDependencies: webpack: ^3.0.0 || ^4.0.0 url-parse@1.5.10: - resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} + resolution: + { + integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==, + } url-slug@2.0.0: - resolution: {integrity: sha512-aiNmSsVgrjCiJ2+KWPferjT46YFKoE8i0YX04BlMVDue022Xwhg/zYlnZ6V9/mP3p8Wj7LEp0myiTkC/p6sxew==} + resolution: + { + integrity: sha512-aiNmSsVgrjCiJ2+KWPferjT46YFKoE8i0YX04BlMVDue022Xwhg/zYlnZ6V9/mP3p8Wj7LEp0myiTkC/p6sxew==, + } url@0.11.4: - resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==, + } + engines: { node: '>= 0.4' } use-debounce@6.0.1: - resolution: {integrity: sha512-kpvIxpa0vOLz/2I2sfNJ72mUeaT2CMNCu5BT1f2HkV9qZK27UVSOFf1sSSu+wjJE4TcR2VTXS2SM569+m3TN7Q==} - engines: {node: '>= 10.0.0'} + resolution: + { + integrity: sha512-kpvIxpa0vOLz/2I2sfNJ72mUeaT2CMNCu5BT1f2HkV9qZK27UVSOFf1sSSu+wjJE4TcR2VTXS2SM569+m3TN7Q==, + } + engines: { node: '>= 10.0.0' } peerDependencies: react: '>=16.8.0' use-sync-external-store@1.2.2: - resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==} + resolution: + { + integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==, + } peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 use@3.1.1: - resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==, + } + engines: { node: '>=0.10.0' } util-deprecate@1.0.2: - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + resolution: + { + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, + } util.promisify@1.0.1: - resolution: {integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==} + resolution: + { + integrity: sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==, + } util@0.10.4: - resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==} + resolution: + { + integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==, + } util@0.11.1: - resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==} + resolution: + { + integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==, + } util@0.12.5: - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} + resolution: + { + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, + } uuid@8.3.2: - resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==} + resolution: + { + integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==, + } hasBin: true validate.js@0.13.1: - resolution: {integrity: sha512-PnFM3xiZ+kYmLyTiMgTYmU7ZHkjBZz2/+F0DaALc/uUtVzdCt1wAosvYJ5hFQi/hz8O4zb52FQhHZRC+uVkJ+g==} + resolution: + { + integrity: sha512-PnFM3xiZ+kYmLyTiMgTYmU7ZHkjBZz2/+F0DaALc/uUtVzdCt1wAosvYJ5hFQi/hz8O4zb52FQhHZRC+uVkJ+g==, + } verror@1.10.0: - resolution: {integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==} - engines: {'0': node >=0.6.0} + resolution: + { + integrity: sha512-ZZKSmDAEFOijERBLkmYfJ+vmk3w+7hOLYDNkRCuRuMJGEmqYNCNLyBBFwWKVMhfwaEF3WOd0Zlw86U/WC/+nYw==, + } + engines: { '0': node >=0.6.0 } vm-browserify@1.1.2: - resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} + resolution: + { + integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==, + } wait-on@5.3.0: - resolution: {integrity: sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==} - engines: {node: '>=8.9.0'} + resolution: + { + integrity: sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==, + } + engines: { node: '>=8.9.0' } hasBin: true watchpack-chokidar2@2.0.1: - resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==} + resolution: + { + integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==, + } watchpack@1.7.5: - resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==} + resolution: + { + integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==, + } webpack-sources@1.4.3: - resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==} + resolution: + { + integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==, + } webpack@4.47.0: - resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==} - engines: {node: '>=6.11.5'} + resolution: + { + integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==, + } + engines: { node: '>=6.11.5' } hasBin: true peerDependencies: webpack-cli: '*' @@ -4354,73 +7487,126 @@ packages: optional: true which-boxed-primitive@1.0.2: - resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } which-builtin-type@1.2.0: - resolution: {integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-I+qLGQ/vucCby4tf5HsLmGueEla4ZhwTBSqaooS+Y0BuxN4Cp+okmGuV+8mXZ84KDI9BA+oklo+RzKg0ONdSUA==, + } + engines: { node: '>= 0.4' } which-collection@1.0.2: - resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==, + } + engines: { node: '>= 0.4' } which-typed-array@1.1.16: - resolution: {integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==} - engines: {node: '>= 0.4'} + resolution: + { + integrity: sha512-g+N+GAWiRj66DngFwHvISJd+ITsyphZvD1vChfVg6cEdnzy53GzB3oy0fUNlvhz7H7+MiqhYr26qxQShCpKTTQ==, + } + engines: { node: '>= 0.4' } which@2.0.2: - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} - engines: {node: '>= 8'} + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: '>= 8' } hasBin: true word-wrap@1.2.5: - resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} - engines: {node: '>=0.10.0'} + resolution: + { + integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==, + } + engines: { node: '>=0.10.0' } worker-farm@1.7.0: - resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==} + resolution: + { + integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==, + } wrap-ansi@6.2.0: - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} - engines: {node: '>=8'} + resolution: + { + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, + } + engines: { node: '>=8' } wrap-ansi@7.0.0: - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: '>=10' } wrap-ansi@8.1.0: - resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} - engines: {node: '>=12'} + resolution: + { + integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==, + } + engines: { node: '>=12' } wrappy@1.0.2: - resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } xtend@4.0.2: - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} - engines: {node: '>=0.4'} + resolution: + { + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, + } + engines: { node: '>=0.4' } y18n@4.0.3: - resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==} + resolution: + { + integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==, + } yallist@3.1.1: - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } yallist@4.0.0: - resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } yaml@1.10.2: - resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} - engines: {node: '>= 6'} + resolution: + { + integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==, + } + engines: { node: '>= 6' } yauzl@2.10.0: - resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + resolution: + { + integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==, + } yocto-queue@0.1.0: - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} - engines: {node: '>=10'} + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: '>=10' } snapshots: - '@artsy/fresnel@3.5.0(react@18.3.1)': dependencies: react: 18.3.1 @@ -4486,16 +7672,16 @@ snapshots: react-dom: 18.3.1(react@18.3.1) tslib: 2.8.1 - '@dnd-kit/modifiers@6.0.0(@dnd-kit/core@6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': - dependencies: + ? '@dnd-kit/modifiers@6.0.0(@dnd-kit/core@6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)' + : dependencies: '@dnd-kit/core': 6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@dnd-kit/utilities': 3.2.0(react@18.3.1) tslib: 2.8.1 transitivePeerDependencies: - react - '@dnd-kit/sortable@7.0.1(@dnd-kit/core@6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)': - dependencies: + ? '@dnd-kit/sortable@7.0.1(@dnd-kit/core@6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)' + : dependencies: '@dnd-kit/core': 6.0.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@dnd-kit/utilities': 3.2.0(react@18.3.1) react: 18.3.1 @@ -4896,8 +8082,8 @@ snapshots: '@types/node': 14.18.63 optional: true - '@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2)': - dependencies: + ? '@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2)' + : dependencies: '@typescript-eslint/parser': 5.0.0(eslint@8.57.0)(typescript@4.5.2) '@typescript-eslint/scope-manager': 5.13.0 '@typescript-eslint/type-utils': 5.13.0(eslint@8.57.0)(typescript@4.5.2) @@ -4914,8 +8100,8 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2)': - dependencies: + ? '@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2)' + : dependencies: '@typescript-eslint/parser': 8.16.0(eslint@8.57.0)(typescript@4.5.2) '@typescript-eslint/scope-manager': 5.13.0 '@typescript-eslint/type-utils': 5.13.0(eslint@8.57.0)(typescript@4.5.2) @@ -6376,16 +9562,16 @@ snapshots: object.entries: 1.1.8 semver: 6.3.1 - eslint-config-airbnb-typescript@17.0.0(@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2))(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-plugin-import@2.25.3)(eslint@8.57.0): - dependencies: + ? eslint-config-airbnb-typescript@17.0.0(@typescript-eslint/eslint-plugin@5.13.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2))(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-plugin-import@2.25.3)(eslint@8.57.0) + : dependencies: '@typescript-eslint/eslint-plugin': 5.13.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint@8.57.0)(typescript@4.5.2) '@typescript-eslint/parser': 5.0.0(eslint@8.57.0)(typescript@4.5.2) eslint: 8.57.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.25.3)(eslint@8.57.0) eslint-plugin-import: 2.25.3(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0) - eslint-config-airbnb@19.0.4(eslint-plugin-import@2.25.3)(eslint-plugin-jsx-a11y@6.5.1(eslint@8.57.0))(eslint-plugin-react-hooks@4.3.0(eslint@8.57.0))(eslint-plugin-react@7.28.0(eslint@8.57.0))(eslint@8.57.0): - dependencies: + ? eslint-config-airbnb@19.0.4(eslint-plugin-import@2.25.3)(eslint-plugin-jsx-a11y@6.5.1(eslint@8.57.0))(eslint-plugin-react-hooks@4.3.0(eslint@8.57.0))(eslint-plugin-react@7.28.0(eslint@8.57.0))(eslint@8.57.0) + : dependencies: eslint: 8.57.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.25.3)(eslint@8.57.0) eslint-plugin-import: 2.25.3(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0) @@ -6439,8 +9625,8 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0): - dependencies: + ? eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.0) + : dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7(supports-color@8.1.1) enhanced-resolve: 5.17.1 @@ -6458,8 +9644,8 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0): - dependencies: + ? eslint-module-utils@2.12.0(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0) + : dependencies: debug: 3.2.7(supports-color@8.1.1) optionalDependencies: '@typescript-eslint/parser': 5.0.0(eslint@8.57.0)(typescript@4.5.2) @@ -6469,8 +9655,8 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0): - dependencies: + ? eslint-module-utils@2.12.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0) + : dependencies: debug: 3.2.7(supports-color@8.1.1) optionalDependencies: '@typescript-eslint/parser': 8.16.0(eslint@8.57.0)(typescript@4.5.2) @@ -6480,8 +9666,8 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-plugin-import@2.25.3(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0): - dependencies: + ? eslint-plugin-import@2.25.3(@typescript-eslint/parser@5.0.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@2.4.0)(eslint@8.57.0) + : dependencies: array-includes: 3.1.8 array.prototype.flat: 1.3.2 debug: 2.6.9 @@ -6503,8 +9689,8 @@ snapshots: - eslint-import-resolver-webpack - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0): - dependencies: + ? eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.16.0(eslint@8.57.0)(typescript@4.5.2))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.0) + : dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 array.prototype.findlastindex: 1.2.5 @@ -6567,8 +9753,8 @@ snapshots: language-tags: 1.0.9 minimatch: 3.1.2 - eslint-plugin-prettier@3.4.0(eslint-config-prettier@8.3.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.3.0): - dependencies: + ? eslint-plugin-prettier@3.4.0(eslint-config-prettier@8.3.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.3.0) + : dependencies: eslint: 8.57.0 prettier: 2.3.0 prettier-linter-helpers: 1.0.0 @@ -7841,8 +11027,8 @@ snapshots: neo-async@2.6.2: {} - next-auth@4.24.10(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: + ? next-auth@4.24.10(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + : dependencies: '@babel/runtime': 7.26.0 '@panva/hkdf': 1.2.1 cookie: 0.7.2 @@ -7871,14 +11057,14 @@ snapshots: - supports-color - webpack - next-plausible@3.10.1(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: + ? next-plausible@3.10.1(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + : dependencies: next: 14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - next-redux-wrapper@7.0.5(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-redux@7.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1): - dependencies: + ? next-redux-wrapper@7.0.5(next@14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-redux@7.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1) + : dependencies: next: 14.2.18(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-redux: 7.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) diff --git a/client/public/manifest.json b/client/public/manifest.json index 013d4a6a..3b557aab 100644 --- a/client/public/manifest.json +++ b/client/public/manifest.json @@ -1,41 +1,41 @@ { - "name": "App", - "icons": [ - { - "src": "\/android-icon-36x36.png", - "sizes": "36x36", - "type": "image\/png", - "density": "0.75" - }, - { - "src": "\/android-icon-48x48.png", - "sizes": "48x48", - "type": "image\/png", - "density": "1.0" - }, - { - "src": "\/android-icon-72x72.png", - "sizes": "72x72", - "type": "image\/png", - "density": "1.5" - }, - { - "src": "\/android-icon-96x96.png", - "sizes": "96x96", - "type": "image\/png", - "density": "2.0" - }, - { - "src": "\/android-icon-144x144.png", - "sizes": "144x144", - "type": "image\/png", - "density": "3.0" - }, - { - "src": "\/android-icon-192x192.png", - "sizes": "192x192", - "type": "image\/png", - "density": "4.0" - } - ] -} \ No newline at end of file + "name": "App", + "icons": [ + { + "src": "/android-icon-36x36.png", + "sizes": "36x36", + "type": "image/png", + "density": "0.75" + }, + { + "src": "/android-icon-48x48.png", + "sizes": "48x48", + "type": "image/png", + "density": "1.0" + }, + { + "src": "/android-icon-72x72.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, + { + "src": "/android-icon-96x96.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, + { + "src": "/android-icon-144x144.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, + { + "src": "/android-icon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + } + ] +} diff --git a/client/src/constants/nav.ts b/client/src/constants/nav.ts index f79b58f8..40193ce8 100644 --- a/client/src/constants/nav.ts +++ b/client/src/constants/nav.ts @@ -21,16 +21,16 @@ export const NAV = [ href: '/dashboards', }, { - label: "My Details", - href: '/my-details' + label: 'My Details', + href: '/my-details', }, { - label: "My Projects", - href: "/my-projects" + label: 'My Projects', + href: '/my-projects', }, { - label: "My Funding", - href: "/my-funding" + label: 'My Funding', + href: '/my-funding', }, { label: 'About', diff --git a/client/src/containers/action-map/map/views/countries/data.json b/client/src/containers/action-map/map/views/countries/data.json index 5c686f97..a286affc 100644 --- a/client/src/containers/action-map/map/views/countries/data.json +++ b/client/src/containers/action-map/map/views/countries/data.json @@ -1 +1,31175 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[60.89943695,29.837495804],[62.480146407,29.376457215],[63.664894105,29.476406098],[64.140842438,29.362118721],[64.26334381,29.503400803],[64.631927489,29.581081391],[65.097137451,29.542835236],[66.266502379,29.841995239],[66.241653442,30.055051803],[66.375152587,30.474360943],[66.389030456,30.837862969],[66.902275086,31.296169281],[67.306285859,31.182589531],[67.774806976,31.333582878],[67.710716247,31.50006485],[68.168876648,31.834236144],[68.570144654,31.827964783],[68.804939,31.609982],[69.11794281,31.703262329],[69.323501588,31.944173813],[69.240699768,32.461387635],[69.589210511,33.08392334],[70.155620575,33.197887421],[70.340229035,33.392023087],[70.155033112,33.725603104],[70.004165649,33.740234375],[69.914024352,34.023826599],[70.767936706,33.954856873],[71.076286317,34.062507629],[71.169471741,34.363609314],[71.006813049,34.461116791],[71.301200867,34.865463258],[71.525493623,34.960206986],[71.690170289,35.21439171],[71.571235657,35.721515656],[71.230941772,36.069679261],[71.614257812,36.321292877],[71.657035828,36.477924347],[72.656166077,36.849842072],[73.352516175,36.853221894],[73.832992554,36.909191133],[74.029205322,36.84624672],[74.571556,37.034439],[74.489113,37.24192],[74.89031601,37.235990524],[74.809270223,37.351248424],[74.276100158,37.401042938],[73.761749268,37.219787597],[73.775794984,37.439640045],[73.301261903,37.46227646],[72.817558289,37.232394219],[72.662944793,37.017257691],[72.342979431,36.989185334],[71.842369079,36.681288401],[71.566844941,36.764213562],[71.432665791,37.056616925],[71.59519577,37.805957794],[71.524085998,37.957069398],[71.252235413,37.931758881],[71.374122619,38.255630493],[70.989463806,38.490411123],[70.610661825,38.345732371],[70.504997253,38.122574807],[70.189167023,37.844972611],[70.265062968,37.607241313],[69.56879425,37.579673766],[69.378969193,37.43544674],[69.40558815,37.171580315],[69.250095368,37.095895767],[68.968215942,37.320434571],[68.305309296,37.103076936],[68.027057648,36.930368424],[67.790663956,37.185199858],[67.517433167,37.274326325],[67.277362824,37.177192688],[66.996528625,37.389896393],[66.526388264,37.34608813],[66.305900573,37.319385529],[65.704481125,37.538148881],[65.530151367,37.239753723],[65.130973817,37.247154237],[64.753700256,37.111557008],[64.796134949,36.91607666],[64.616859436,36.630912781],[64.635253905,36.438274384],[64.061935425,36.001911163],[63.307189941,35.857135772],[63.094561259,35.420649212],[62.745594025,35.253723144],[62.264902115,35.295410156],[62.066204071,35.431550981],[61.58953476,35.435199738],[61.282627426,35.60869039],[61.099864959,35.275653839],[60.991390229,34.641555786],[60.727661133,34.510429383],[60.504928589,34.076797486],[60.531753541,33.650173188],[60.899990081,33.538909912],[60.58412552,33.12753296],[60.880195618,32.200416566],[60.775035858,31.742471694],[60.845687866,31.486900331],[61.706481933,31.377180099],[61.834262848,31.087860107],[61.807563782,30.83760643],[60.89943695,29.837495804]]]},"properties":{"id":"b9195449-7fe4-488a-8a2a-8348c029333d","code":"AFG","name":"Afghanistan","abbreviation":"C-AFG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.888787151,34.958677121],[33.906524816,35.069122147],[33.67452139,35.043880133],[33.702095033,34.979026794],[33.888787151,34.958677121]]]},"properties":{"id":"41526f66-0180-4c1f-b3f9-dcefe0d10299","code":"XAD","name":"Akrotiri and Dhekelia","abbreviation":"C-XAD","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.008482885,39.694003607],[20.256948524,39.667319957],[20.306022372,39.984871455],[20.657573901,40.090528991],[20.841936112,40.476444244],[21.049087524,40.658621471],[20.991338731,40.858062744],[20.737983704,40.912139893],[20.455766677,41.524791719],[20.591096878,41.878536225],[20.524585089,42.201494852],[20.033109664,42.548316956],[19.833229066,42.467416764],[19.706918717,42.658889772],[19.285785675,42.180006028],[19.377112809,41.866320183],[19.593598867,41.811992433],[19.41737859,41.389046242],[19.520535501,41.262886047],[19.36916542,40.727085114],[19.487427026,40.450543352],[19.443881989,40.234898249],[19.853961786,40.043861072],[20.008482885,39.694003607]]]},"properties":{"id":"ca274103-3078-4f20-910b-d3cc0cec2fa4","code":"ALB","name":"Albania","abbreviation":"C-ALB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.645665995,36.936630792],[8.226361465,36.951721573],[7.85763979,36.842222215],[7.756013799,36.957865716],[7.209791125,37.088697813],[6.95097208,36.882499695],[6.469667964,37.088606093],[6.233988285,36.918055943],[5.247870843,36.641111056],[4.7583204,36.8952492],[3.738847614,36.887623597],[3.498645723,36.769513846],[2.896966652,36.803000667],[2.60316364,36.60160531],[2.348562008,36.643912601],[1.998946836,36.565867266],[1.184817195,36.514409542],[0.340172887,36.191688588],[-0.112743001,35.787922753],[-0.340502507,35.908724169],[-0.653028526,35.711235047],[-0.825172644,35.767311097],[-1.193301646,35.565007782],[-1.273857636,35.368790415],[-1.779365156,35.118819646],[-2.211107969,35.062023163],[-1.88649717,34.809758466],[-1.732338012,34.507414818],[-1.647634029,34.106685639],[-1.737028957,33.700263978],[-1.598497032,33.615089416],[-1.670274496,33.285953523],[-1.460718036,33.041847229],[-1.38121903,32.739322663],[-0.996272867,32.51703914],[-1.197920978,32.404144288],[-1.205126046,32.084774017],[-2.013864041,32.181777955],[-2.915163995,32.118808747],[-2.83160901,31.798009872],[-3.661837458,31.633885385],[-3.776664972,31.121631622],[-3.535881519,31.011262075],[-3.642934083,30.699592591],[-4.320165157,30.528390886],[-4.606369971,30.282133104],[-5.239676,29.933425904],[-5.539897442,29.512680054],[-5.798730849,29.614160538],[-6.446598053,29.56458664],[-6.77609682,29.461568833],[-7.148672104,29.522182465],[-7.591602802,29.376918793],[-8.667710305,28.713489533],[-8.670013428,27.670074462],[-8.673868179,27.298070908],[-7,26.341360092],[-4.829955324,24.996582606],[-2.156348945,23.310470582],[-0.027551999,21.917940139],[-0.000170999,21.838685989],[1.166674017,21.118892669],[1.176954984,20.733539581],[1.653113961,20.552160264],[1.905501008,20.25015068],[2.185602009,20.291712761],[2.399214983,20.071929931],[3.002441882,19.936761857],[3.229897976,19.825234413],[3.272078037,19.409557343],[3.10806799,19.178124428],[3.335249067,18.960230827],[4.242887021,19.136716843],[5.817081929,19.437709809],[7.160675049,20.619380952],[7.445679189,20.842470168],[9.575286866,22.129539489],[11.979550363,23.525030136],[11.603411752,24.263750935],[11.423026085,24.199550629],[10.950188638,24.531810761],[10.357405344,24.536915144],[10.037577153,24.962379456],[10.032671929,25.358707428],[9.399593353,26.194828033],[9.512980461,26.384302139],[9.863895417,26.519117356],[9.924463463,26.861048889],[9.782815219,27.258794785],[9.962219033,27.886574222],[9.833545,28.285259],[9.902783394,28.75975132],[9.780570983,29.424129486],[9.391736985,30.166704178],[9.557297706,30.236810685],[9.065976143,32.086891174],[8.357524872,32.502140044],[8.323304176,32.82302475],[8.117932321,33.097696304],[7.832243681,33.190273285],[7.531700135,33.804058076],[7.580777167,34.085739136],[7.81585312,34.212932586],[7.856798268,34.406207276],[8.282794953,34.653060914],[8.249697685,34.920059204],[8.475512505,35.236818314],[8.335195541,35.280849457],[8.268895595,35.737574513],[8.309052468,36.173706056],[8.448978782,36.620546818],[8.645665995,36.936630792]]]},"properties":{"id":"6bfa9c4d-e213-4c3d-b9ef-12f8c6341228","code":"DZA","name":"Algeria","abbreviation":"C-DZA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-170.680638631,-14.282476107],[-170.82071228,-14.300050544],[-170.759218852,-14.373241822],[-170.680638631,-14.282476107]]]},"properties":{"id":"67035707-e12b-4533-9a48-3de519c30fa6","code":"ASM","name":"American Samoa","abbreviation":"C-ASM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.721941949,42.501228332],[1.440829039,42.588253022],[1.456564,42.435902],[1.721941949,42.501228332]]]},"properties":{"id":"b3b642ab-e384-4ef9-9b55-72ab47c2751b","code":"AND","name":"Andorra","abbreviation":"C-AND","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.757551193,-17.252080917],[12.167506218,-17.158584595],[12.604594258,-17.229342106],[12.992523193,-16.981487274],[13.460853576,-17.013067244],[13.510655404,-17.135110855],[13.956889152,-17.433372497],[14.214320183,-17.384059906],[18.422714232,-17.394428252],[18.89899063,-17.819267272],[20.2483387,-17.893465042],[20.812007905,-18.040735245],[21.219751357,-17.932115555],[21.433547973,-18.024074554],[23.440829367,-17.635094307],[22.828637939,-17.163676287],[22.141337939,-16.476076287],[22.001337939,-16.211876287],[21.980037939,-14.513876287],[22.002890145,-12.997291326],[24.065917969,-12.998383124],[23.900085449,-12.783295233],[24.067937939,-12.295176287],[23.975437939,-12.124776287],[23.967137939,-11.661876287],[24.075883939,-11.375682287],[23.992247019,-10.896182914],[23.871999741,-11.017000198],[23.435529709,-10.938199998],[23.202999115,-11.102000236],[22.584999084,-11.036000251],[22.299690247,-11.243968964],[22.180999755,-10.852000236],[22.334419251,-10.755910873],[22.312498092,-10.340161324],[22.184971492,-9.916891098],[22.024482726,-9.833795547],[21.797969819,-9.430346489],[21.95072174,-8.450712204],[21.745258332,-7.929479599],[21.853217601,-7.555323958],[21.779689788,-7.274680138],[20.543514251,-7.281459808],[20.621345521,-6.931686401],[20.301710128,-6.998032092],[19.543858846,-6.999790669],[19.529359817,-7.446960926],[19.357408524,-7.928155422],[19.435684204,-7.998535155],[18.216976166,-7.989453792],[18.10036087,-8.09905529],[17.560329437,-8.127449036],[17.185121537,-7.448730946],[16.955801011,-7.207468986],[16.94037056,-6.874828816],[16.689979553,-6.400587081],[16.721578598,-6.166262864],[16.599737167,-5.918553829],[16.365940093,-5.864689827],[14.962183952,-5.873423576],[14.610759735,-5.909718037],[13.987770558,-5.842859506],[13.304933547,-5.883372307],[13.115099906,-5.90045309],[13.01874447,-5.876550992],[12.893875123,-5.946836471],[12.620997428,-6.017598152],[12.276110875,-6.148043917],[12.57603572,-6.683002508],[12.814434494,-6.968035698],[13.099692214,-7.843908714],[13.392083167,-8.386458397],[13.39911916,-8.74327568],[13.220417534,-8.806478474],[12.99298625,-9.086528],[13.152812441,-9.344259182],[13.19589035,-9.678651753],[13.768460711,-10.6586109],[13.865000249,-11.017805862],[13.798052732,-11.772460609],[13.655417204,-12.234166622],[13.344074408,-12.612361272],[13.201720522,-12.598487839],[12.93791675,-12.859375],[12.876667,-13.1035275],[12.533590786,-13.41788],[12.421465007,-13.878288095],[12.287778,-14.751736312],[12.058120906,-15.228600937],[12.019232546,-15.568557875],[11.736805558,-15.908888697],[11.826074727,-16.453064537],[11.757551193,-17.252080917]]],[[[12.20804206,-5.768321414],[12.535100938,-5.733852863],[12.537505545,-5.138915619],[12.817461014,-4.782361985],[13.104763032,-4.648590087],[12.723011016,-4.426958084],[12.462395669,-4.596130848],[12.012652398,-5.028289555],[12.229742323,-5.494874954],[12.20804206,-5.768321414]]]]},"properties":{"id":"31d0527f-11ff-45ef-ad43-ef7198ea8a07","code":"AGO","name":"Angola","abbreviation":"C-AGO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.020638275,18.207500076],[-62.968292215,18.2731804],[-63.071110812,18.233150483],[-63.020638275,18.207500076]]]},"properties":{"id":"16863bc5-5b7f-422c-adf5-50f4c3e0ee0f","code":"AIA","name":"Anguilla","abbreviation":"C-AIA","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-57.272915,-63.220833],[-57.895309,-63.319271],[-58.160416,-63.470833],[-58.943748,-63.545834],[-58.917191,-63.659893],[-59.362499,-63.708332],[-59.460415,-63.910416],[-59.772915,-63.864582],[-59.947918,-63.954166],[-60.314583,-63.912498],[-60.879166,-64.04583],[-61.292191,-64.42865],[-61.460415,-64.362503],[-61.591667,-64.666664],[-61.825001,-64.59375],[-62.147915,-64.779167],[-62.370316,-64.753647],[-62.59375,-64.910416],[-63.252083,-64.962502],[-63.222916,-65.150002],[-63.768749,-65.018753],[-64.072395,-65.152603],[-63.788021,-65.601563],[-64.181252,-65.520836],[-64.485939,-65.935936],[-64.695831,-66.041664],[-64.947914,-65.925003],[-65.293747,-65.964584],[-65.094269,-66.155731],[-65.583336,-66.099998],[-65.787498,-66.720833],[-66.114586,-66.589584],[-66.495316,-66.621353],[-66.616669,-67.029167],[-66.448433,-67.326561],[-66.728645,-67.219269],[-66.986984,-67.2724],[-66.964584,-66.925003],[-67.435936,-67.050522],[-67.602081,-67.1875],[-67.5625,-67.556252],[-66.970833,-67.466667],[-66.729164,-67.533333],[-66.862503,-67.918747],[-67.25,-67.956253],[-66.875,-68.229164],[-67.01458,-68.789581],[-67.385414,-68.789581],[-67.258331,-68.945831],[-66.83802,-68.971352],[-67.002083,-69.260414],[-67.277084,-69.287498],[-67.377083,-69.508331],[-68.25,-69.28125],[-68.352081,-69.40625],[-68.839066,-69.424484],[-68.344269,-69.679688],[-68.49115,-70.047401],[-67.965103,-70.294266],[-67.673439,-70.638016],[-67.6474,-70.859901],[-67.413017,-70.988022],[-67.444267,-71.223434],[-67.622398,-71.356766],[-67.433334,-71.616669],[-66.773437,-71.9776],[-66.783852,-72.16198],[-67.176567,-72.444267],[-67.50885,-72.827599],[-69.320831,-73.181252],[-70.29792,-73.29583],[-70.820831,-73.252083],[-71.458336,-73.362503],[-72.254166,-73.38958],[-72.375,-73.470833],[-73.152084,-73.464584],[-73.20208,-73.554169],[-73.643753,-73.57917],[-74.018753,-73.73542],[-74.268753,-73.662498],[-74.675003,-73.741669],[-74.900002,-73.63958],[-75.318748,-73.625],[-75.51458,-73.712502],[-76.254684,-73.816147],[-76.756248,-73.78125],[-77.106247,-73.88958],[-77.239067,-73.80677],[-76.725517,-73.597397],[-76.845833,-73.464584],[-77.558334,-73.470833],[-78.747917,-73.61042],[-78.723434,-73.399483],[-79.620834,-73.043747],[-80.539581,-72.95417],[-80.39167,-73.418747],[-80.831253,-73.260414],[-81.197914,-73.243752],[-81.322395,-73.495316],[-81.077599,-73.5849],[-81.240105,-73.74115],[-82.083336,-73.89167],[-82.925003,-73.708336],[-83.893753,-73.685417],[-83.752083,-73.560417],[-84.539581,-73.570831],[-85.097916,-73.491669],[-85.59375,-73.354164],[-85.591667,-73.193748],[-85.914581,-73.181252],[-86.441666,-73.339584],[-86.995834,-73.385414],[-87.339584,-73.168747],[-87.92083,-73.254166],[-88.447914,-73.268753],[-88.650002,-73.09375],[-88.092186,-72.831772],[-88.191666,-72.70208],[-89.291664,-72.631248],[-89.054687,-72.941147],[-89.256248,-73.106247],[-90.216667,-73.145836],[-90.525002,-73.287498],[-91.11042,-73.300003],[-91.849998,-73.254166],[-92.435417,-73.160416],[-93.602081,-73.179169],[-94.306252,-73.32708],[-94.53125,-73.23542],[-95.712502,-73.245834],[-95.84375,-73.333336],[-96.683334,-73.272919],[-97.98333,-73.029167],[-98.856247,-72.989586],[-100.402084,-73.0625],[-100.810417,-72.970833],[-101.997917,-73.054169],[-102.466667,-72.98333],[-102.104164,-72.785416],[-103.04792,-72.70417],[-103.432816,-72.842186],[-103.252083,-73.17083],[-102.884895,-73.305733],[-102.447914,-73.333336],[-100.370834,-73.316666],[-99.700516,-73.381767],[-99.5849,-73.524483],[-98.868752,-73.587502],[-99.564583,-73.706253],[-100.625,-73.78125],[-101.175003,-73.772919],[-101.362503,-73.668747],[-102.252083,-73.604164],[-102.977081,-73.597916],[-102.76667,-73.933334],[-102.425003,-73.927086],[-101.535416,-74.010414],[-101.308853,-74.309898],[-101.414063,-74.501564],[-100.841667,-74.541664],[-100.099998,-74.46875],[-99.950516,-74.789062],[-100.285416,-74.933334],[-99.349998,-74.927086],[-99.325516,-75.074478],[-98.941666,-75.17083],[-98.42292,-75.120834],[-99.01667,-75.339584],[-99.36042,-75.304169],[-100.352081,-75.345833],[-101.131248,-75.433334],[-101.556252,-75.349998],[-101.629684,-75.110939],[-102.622917,-75.129166],[-103.40625,-75.089584],[-103.695831,-75.147919],[-104.558334,-75.164581],[-105.09375,-75.114586],[-105.191666,-75.185417],[-106.458336,-75.316666],[-107.841667,-75.32708],[-108.112503,-75.260414],[-108.820831,-75.23542],[-109.67292,-75.13958],[-110.168747,-75.245834],[-110.416664,-75.191666],[-111.14167,-75.20208],[-111.606247,-75.154167],[-111.002083,-74.987503],[-110.677086,-74.82917],[-110.25885,-74.770317],[-110.09375,-74.564583],[-110.381767,-74.281769],[-111.595833,-74.17083],[-111.903648,-74.283852],[-111.472916,-74.504166],[-111.824997,-74.489586],[-111.909897,-74.620316],[-111.54583,-74.802086],[-112.604164,-74.845833],[-113.729164,-74.95417],[-114.09375,-75.070831],[-113.856247,-74.681252],[-113.269272,-74.468231],[-113.787498,-74.46875],[-113.900002,-74.239586],[-113.419266,-74.174484],[-113.5625,-74.029167],[-114.118752,-74.068748],[-113.954689,-73.910934],[-114.252083,-73.862503],[-114.78125,-73.931252],[-115.145836,-74.14167],[-114.877083,-74.48333],[-116.050003,-74.504166],[-116.635414,-74.552086],[-117.787498,-74.518753],[-118.179169,-74.320831],[-118.668747,-74.34375],[-119.095314,-74.44635],[-118.622917,-74.512497],[-118.914581,-74.60833],[-119.9375,-74.681252],[-120.254166,-74.658333],[-120.852081,-74.743752],[-123.231247,-74.754166],[-124.091667,-74.808334],[-124.293747,-74.712502],[-125.650002,-74.716667],[-126.395836,-74.756248],[-127.275002,-74.681252],[-128.683334,-74.822914],[-129.191666,-74.82708],[-130.054169,-74.916664],[-130.639587,-74.837502],[-131.577087,-74.84375],[-132.045837,-74.760414],[-132.59166,-74.831253],[-132.768753,-74.770836],[-133.887497,-74.931252],[-134.590103,-74.732811],[-134.579163,-74.631248],[-135.391663,-74.5625],[-135.693756,-74.75],[-136.239578,-74.693748],[-136.832809,-74.748436],[-136.997391,-75.00573],[-136.4375,-75.099998],[-137.170837,-75.17083],[-137.743744,-75.060417],[-138.110413,-75.118752],[-139.65416,-75.15625],[-140.389587,-75.462502],[-140.777084,-75.520836],[-141.322922,-75.497917],[-140.641663,-75.806252],[-141.179169,-75.741669],[-141.556244,-75.76458],[-141.8526,-75.521355],[-142.333328,-75.435417],[-142.53125,-75.539581],[-143.537506,-75.54792],[-144.102081,-75.616669],[-144.15416,-75.804169],[-144.9375,-75.841667],[-145.172913,-75.908333],[-146.208328,-75.908333],[-146.509903,-76.069267],[-145.910416,-76.260414],[-145.4776,-76.331772],[-145.714584,-76.466667],[-146.270828,-76.42083],[-147.429169,-76.193748],[-148.243744,-76.081253],[-148.558334,-76.23333],[-149.489578,-76.293747],[-149.53125,-76.445831],[-148.52916,-76.51458],[-148.06459,-76.447914],[-147.045837,-76.435417],[-146.40416,-76.550003],[-146.114578,-76.708336],[-145.4375,-76.75],[-145.962494,-76.833336],[-145.606247,-77.037498],[-145.901566,-77.077599],[-145.270828,-77.237503],[-145.806244,-77.252083],[-145.450516,-77.5224],[-145.933334,-77.470833],[-146.397919,-77.508331],[-146.910416,-77.243752],[-147.27916,-77.262497],[-147.647919,-77.397919],[-148.02916,-77.20208],[-148.8125,-77.11042],[-149.051559,-77.329689],[-147.760422,-77.449997],[-148.524994,-77.560417],[-148.972916,-77.706253],[-149.420837,-77.61042],[-149.339584,-77.775002],[-149.800003,-77.822914],[-151.324997,-77.506248],[-151.431244,-77.431252],[-152.118744,-77.39167],[-152.447922,-77.304169],[-152.61615,-77.442184],[-153.370834,-77.439583],[-153.416672,-77.289581],[-154.887497,-77.104164],[-155.485413,-77.168747],[-155.837494,-77.064583],[-156.40625,-77.072914],[-156.99791,-77.36042],[-157.931244,-77.058334],[-158.199997,-77.068748],[-158.336975,-77.304688],[-158.144272,-77.408852],[-158.28334,-77.616669],[-158.62709,-77.870834],[-158.329163,-77.98333],[-156.929169,-78.252083],[-156.63385,-78.177605],[-155.387497,-78.1875],[-154.835419,-78.243752],[-154.516663,-78.127083],[-154.160416,-78.224998],[-154.316666,-78.397919],[-155.175003,-78.48333],[-156.09166,-78.497917],[-156.441666,-78.689583],[-154.510422,-79.095833],[-152.587494,-79.175003],[-151.71666,-79.083336],[-152.258331,-79.3125],[-150.589584,-79.535416],[-147.918747,-79.78125],[-147.204163,-79.941666],[-147.995834,-79.935417],[-148.06041,-79.887497],[-148.831253,-79.902084],[-147.885422,-80.068748],[-148.50209,-80.066666],[-148.925003,-80.14167],[-150.016663,-80.070831],[-150.664581,-80.322914],[-150.004166,-80.395836],[-150.308334,-80.518753],[-149.635422,-80.529167],[-149.214584,-80.625],[-149.181244,-80.741669],[-148.410416,-80.747917],[-147.856247,-80.956253],[-148.820831,-81.058334],[-149.893753,-81.122917],[-150.556244,-81.118752],[-152.40625,-81.17083],[-153.199997,-81.13958],[-154.037506,-81.060417],[-154.722916,-81.052086],[-155.893753,-81.095833],[-157.12709,-81.270836],[-156.760422,-81.377083],[-155.899994,-81.383331],[-154.34375,-81.574997],[-153.829163,-81.679169],[-153.850006,-81.793747],[-154.425003,-81.831253],[-154.774994,-81.96875],[-154.202087,-82.039581],[-154.227081,-82.122917],[-153.012497,-82.339584],[-152.541672,-82.550003],[-153.09375,-82.631248],[-154.914581,-82.777084],[-155.443756,-82.933334],[-155.556244,-83.041664],[-155.956253,-83.074997],[-157.40834,-83.04792],[-158.291672,-83.168747],[-156.929169,-83.21875],[-157.524994,-83.385414],[-158.797913,-83.445831],[-159.422913,-83.552086],[-160.097916,-83.48333],[-162.149994,-83.529167],[-162.3125,-83.431252],[-163.135422,-83.316666],[-164.214584,-83.408333],[-164.493744,-83.518753],[-165.054169,-83.197914],[-165.956253,-83.17292],[-168.177078,-83.262497],[-169.606247,-83.241669],[-169.535416,-83.3125],[-170.733337,-83.197914],[-170.920837,-83.0625],[-171.487503,-82.9375],[-172.191666,-82.868752],[-172.725006,-82.918747],[-173.3125,-82.902084],[-173.879166,-82.79583],[-173.90625,-82.9375],[-173.004166,-83.068748],[-170.883331,-83.287498],[-169.387497,-83.416664],[-168.056244,-83.785416],[-167.25,-83.831253],[-166.241669,-83.831253],[-165.56041,-83.745834],[-164.037506,-83.92083],[-163.68959,-84.050003],[-165.087494,-84.066666],[-165.137497,-84.13958],[-164.206253,-84.21875],[-164.135422,-84.293747],[-163.014587,-84.364586],[-164.570831,-84.385414],[-165.443756,-84.366669],[-165.445831,-84.433334],[-164.385422,-84.410416],[-163.652084,-84.427086],[-163.850006,-84.54583],[-163.179169,-84.57917],[-160.68541,-84.650002],[-159.618744,-84.712502],[-158.40416,-84.752083],[-158.327087,-84.79792],[-156.866669,-84.793747],[-155.612503,-84.833336],[-155.87709,-84.904167],[-157.556244,-84.887497],[-156.824997,-85.029167],[-155.975006,-85.081253],[-155.875,-85.17083],[-156.739578,-85.183334],[-156.964584,-85.231247],[-158.675003,-85.133331],[-159.335419,-85.006248],[-160.266663,-84.939583],[-162.745834,-84.877083],[-163.12709,-84.912498],[-166.214584,-84.791664],[-167.34166,-84.86042],[-168.0625,-84.777084],[-168.264587,-84.645836],[-171.697922,-84.533333],[-173.545837,-84.439583],[-175.037506,-84.416664],[-175.204163,-84.491669],[-175.90416,-84.54583],[-176.456253,-84.425003],[-176.995834,-84.372917],[-177.735413,-84.416664],[-178.233337,-84.308334],[-179.99791,-84.349998],[-180,-90],[180,-90],[179.99791,-84.349998],[179.479172,-84.210419],[178.5,-84.177086],[178.34584,-84.120834],[177.306244,-84.068748],[176.129166,-83.949997],[175.254166,-83.979164],[174.90416,-83.831253],[174.177078,-83.881248],[173.714584,-83.783333],[172.774994,-83.664581],[172.050003,-83.71875],[171.954163,-83.622917],[171.347916,-83.554169],[171.229172,-83.447914],[170.766663,-83.42292],[170.410416,-83.489586],[170.081253,-83.402084],[169.287506,-83.337502],[168.708328,-83.395836],[168.116669,-83.366669],[168.806244,-83.1875],[168.643753,-83.002083],[168.0625,-82.962502],[167.768753,-83.054169],[167.427078,-83.035416],[167.272919,-82.804169],[166.568756,-82.777084],[166.172913,-82.64167],[165.59375,-82.620834],[165.241669,-82.38958],[164.65834,-82.335419],[163.931244,-82.408333],[163.231247,-82.425003],[162.941666,-82.535416],[162.708328,-82.479164],[160.835419,-82.5],[160.683334,-82.408333],[162.197922,-82.268753],[163.800003,-82.237503],[162.862503,-81.916664],[162.366669,-81.664581],[161.539581,-81.606247],[161.447922,-81.429169],[160.589584,-81.362503],[160.102081,-81.208336],[160.993744,-81.26667],[160.59584,-81.0625],[160.870834,-80.914581],[159.59166,-80.79792],[160.270828,-80.779167],[161.175003,-80.804169],[161.183334,-80.637497],[160.777084,-80.61042],[160.31459,-80.681252],[160.06459,-80.585419],[160.65416,-80.543747],[160.770828,-80.379166],[159.818756,-80.402084],[158.741669,-80.472916],[158.222916,-80.45417],[158.770828,-80.260414],[160.710419,-80.0625],[160.852081,-79.958336],[160.356247,-79.86042],[159.704163,-79.92083],[159.77916,-79.777084],[160.089584,-79.772919],[160.791672,-79.643753],[159.835419,-79.658333],[160,-79.574997],[160.683334,-79.445831],[160.392181,-79.169266],[161.131256,-79.058334],[161.225006,-78.914581],[161.50209,-79.027084],[162.02916,-79.07917],[161.718231,-78.817184],[161.529678,-78.807816],[161.376572,-78.58802],[161.864059,-78.496353],[161.827087,-78.643753],[162.811981,-78.92865],[163.042191,-78.735939],[163.46666,-78.783333],[163.914581,-78.737503],[164.483337,-78.589584],[165.229172,-78.614586],[165.829163,-78.550003],[166.522919,-78.708336],[167.181244,-78.689583],[167.02916,-78.502083],[166.550003,-78.506248],[165.792191,-78.422401],[165.764069,-78.302605],[165.344269,-78.19635],[164.539581,-78.320831],[163.952606,-78.192184],[164.418228,-78.0849],[164.481247,-77.852081],[163.90834,-77.697914],[163.491669,-77.720833],[163.833328,-77.51667],[163.112503,-77.027084],[162.535416,-76.96875],[162.835419,-76.666664],[162.422913,-76.643753],[162.864059,-76.482811],[162.774994,-76.23542],[162.168747,-76.252083],[162.195831,-76.147919],[162.724487,-76.080734],[162.822922,-75.783333],[162.288025,-75.690102],[162.210419,-75.38958],[161.635422,-75.36042],[160.639587,-75.404167],[161.004166,-75.283333],[161.555725,-75.2724],[161.833328,-75.193748],[162.31041,-75.270836],[162.572403,-75.239067],[162.745834,-74.972916],[162.483337,-74.943748],[163.18541,-74.447914],[163.535416,-74.339584],[163.654678,-74.609901],[164.329163,-74.493752],[164.487503,-74.566666],[165.100006,-74.558334],[165.422394,-74.643234],[165.456253,-74.48333],[164.860413,-74.222916],[165.070313,-74.023438],[164.713013,-73.782814],[164.909897,-73.672401],[165.042191,-73.402603],[165.24115,-73.610939],[165.27916,-73.893753],[165.645828,-73.918747],[166.291153,-73.717186],[165.885422,-73.560417],[166.61615,-73.589066],[166.770828,-73.487503],[167.691666,-73.339584],[166.950516,-73.27552],[166.933334,-73.018753],[167.191666,-73.15625],[168.082809,-73.117187],[168.393753,-73.158333],[168.387497,-72.964584],[168.979172,-73.091667],[169.231247,-73.272919],[169.25209,-73.072914],[169.922394,-72.747398],[169.396347,-72.666145],[169.272919,-72.574997],[168.870834,-72.581253],[168.383331,-72.366669],[168.81041,-72.383331],[169.120834,-72.489586],[169.40416,-72.458336],[170.15625,-72.620834],[170.280731,-72.317184],[169.756775,-72.24115],[170.072403,-72.118233],[170.370316,-71.815102],[170.621353,-71.971352],[170.840103,-71.791145],[170.270828,-71.293747],[170.349487,-71.547401],[170.058334,-71.658333],[169.768753,-71.504166],[169.543747,-71.525002],[169.295319,-71.381767],[168.463013,-71.156769],[168.082809,-71.134895],[167.452087,-70.754166],[166.464584,-70.770836],[166.714584,-70.612503],[166.304169,-70.591667],[165.84375,-70.679169],[165.422913,-70.5625],[164.852081,-70.572914],[164.297913,-70.493752],[164.016663,-70.791664],[163.858337,-70.620834],[163.637497,-70.668747],[163.183334,-70.595833],[162.840103,-70.449478],[162.728653,-70.298439],[162.075516,-70.317184],[161.985931,-70.456772],[162.046356,-70.843231],[162.42865,-71.067184],[162.060928,-71.024483],[161.952087,-70.90625],[161.337494,-70.904167],[161.447403,-70.689064],[160.99791,-70.239586],[160.616669,-70.043747],[159.773437,-69.871353],[160.245834,-69.877083],[160.243744,-69.76458],[159.768753,-69.504166],[159.270828,-69.429169],[159.029678,-69.492187],[158.856247,-69.32708],[158.606247,-69.345833],[158.22084,-69.214584],[157.62709,-69.185417],[157.378647,-69.354683],[157.152084,-69.162498],[156.329163,-69.20208],[155.787506,-68.949997],[155.012497,-68.900002],[154.820831,-68.710419],[154.545837,-68.818748],[154.462494,-68.620834],[154.71875,-68.529167],[153.881256,-68.277084],[153.719269,-68.285934],[153.700516,-68.550522],[153.835419,-68.760414],[153.337494,-68.777084],[153.045837,-68.883331],[152.541672,-68.710419],[151.579163,-68.689583],[151.543747,-68.92292],[151.150513,-68.88073],[150.971359,-68.720314],[151.108856,-68.481766],[150.933334,-68.34375],[150.34584,-68.441666],[149.397919,-68.381248],[149.231247,-68.458336],[148.731247,-68.404167],[148.363022,-68.484901],[147.854172,-68.368752],[147.027084,-68.429169],[147.089584,-68.293747],[146.717178,-68.283852],[146.4375,-67.722916],[146.189072,-67.617188],[145.756256,-67.572914],[145.521347,-67.711983],[145.439072,-67.50885],[145.2276,-67.527603],[144.960419,-67.720833],[144.647919,-67.745834],[144.339066,-67.918228],[143.945831,-67.95417],[143.860931,-67.795311],[144.180725,-67.618233],[144.270828,-67.42083],[144.664063,-67.109901],[144.504166,-67.012497],[143.910416,-67.050003],[143.77916,-66.885414],[143.464584,-66.84375],[142.797913,-67.022919],[142.479172,-67.027084],[142.106247,-66.824997],[141.5625,-66.772919],[141.256775,-66.857811],[140.897919,-66.743752],[140.114578,-66.724998],[139.254166,-66.560417],[138.304169,-66.54583],[137.710419,-66.377083],[136.958328,-66.32708],[136.532822,-66.40052],[136.143753,-66.229164],[135.645828,-66.26458],[135.335419,-66.099998],[135.180725,-66.328651],[134.739578,-66.345833],[134.306244,-66.525002],[134.287506,-66.322914],[133.802078,-66.106247],[133.100006,-66.102081],[132.839584,-66.195831],[132.422913,-66.150002],[131.727081,-66.247917],[131.333328,-66.241669],[130.733337,-66.143753],[130.591141,-66.247398],[130.087494,-66.275002],[129.717178,-66.440102],[129.591141,-66.74115],[129.104172,-67.17083],[128.860413,-67.035416],[128.477081,-67.145836],[128.089584,-67.022919],[127.40625,-67.074997],[127.36615,-66.933853],[127.080734,-66.954689],[126.995834,-66.806252],[126.675003,-66.845833],[126.761978,-66.646355],[126.679169,-66.404167],[126.404686,-66.363022],[126.397919,-66.552086],[125.883331,-66.306252],[125.393753,-66.418747],[125.131248,-66.664581],[124.63385,-66.766151],[124.26458,-66.595833],[124.002083,-66.587502],[123.624481,-66.728645],[123.14167,-66.73333],[122.222916,-66.845833],[121.8125,-67.027084],[120.300003,-67.247917],[118.887497,-67.427086],[118.777084,-67.268753],[119.533333,-67.189583],[120.387497,-67],[120.370834,-66.931252],[119.335419,-67.131248],[118.64167,-67.183334],[118.427086,-67.033333],[117.850517,-67.096352],[116.844269,-67.132813],[116.9375,-66.947914],[116.532814,-67.11615],[115.877083,-67.222916],[115.366669,-67.21875],[115.227081,-67.324997],[114.574997,-67.370834],[113.689583,-67.502083],[114.027603,-67.190102],[115.224998,-67.043747],[115.7724,-66.805733],[115.568748,-66.581253],[114.956253,-66.472916],[114.393753,-66.462502],[114.447395,-66.266151],[114.259895,-66.135933],[113.224998,-65.76667],[110.939583,-66.04583],[110.512497,-66.279167],[110.722397,-66.404686],[110.627083,-66.724998],[110.431252,-66.654167],[109.602081,-66.92083],[109.081253,-66.88958],[108.82917,-66.970833],[108.6474,-66.829689],[108.122917,-66.614586],[107.116669,-66.460419],[106.768753,-66.45417],[104.59375,-66.14167],[103.893753,-65.974998],[103.60833,-66.010414],[103.300003,-65.92292],[102.614586,-65.864586],[102.347397,-65.951561],[101.289581,-65.945831],[101.356247,-66.07708],[100.88073,-66.378647],[99.916664,-66.489586],[99.607811,-66.659897],[99.025002,-66.685417],[98.814583,-66.918747],[98.777084,-66.65625],[98.485939,-66.607811],[98.535416,-66.449997],[98.21875,-66.456253],[97.67292,-66.683334],[97.150002,-66.489586],[96.631248,-66.618752],[95.622398,-66.699478],[95.31823,-66.544266],[94.933334,-66.470833],[94.439583,-66.616669],[93.752083,-66.75],[93.69323,-66.592186],[93.010414,-66.558334],[92.806252,-66.633331],[92.189583,-66.512497],[91.42083,-66.604164],[91.064583,-66.57917],[90.467186,-66.752602],[89.629166,-66.84375],[88.745834,-66.779167],[88.237503,-66.856247],[87.95417,-66.770836],[87.135414,-66.92292],[86.70417,-67.066666],[86.050003,-67.041664],[85.877083,-67.13958],[85.431252,-67.189583],[84.929169,-67.070831],[84.39167,-67.120834],[84.224998,-67.23333],[83.695831,-67.324997],[83.197914,-67.574997],[82.572914,-67.604164],[82.28698,-67.714066],[81.870834,-67.699997],[80.912498,-67.89167],[80.439583,-67.92292],[79.043747,-68.164581],[78.535934,-68.381767],[78.620834,-68.693748],[77.969269,-68.825516],[77.82917,-69.137497],[77.012497,-69.208336],[76.851562,-69.364067],[76.587502,-69.362503],[75.958336,-69.487503],[75.750519,-69.613022],[75.847397,-69.824478],[75.097916,-69.935417],[74.729164,-69.82708],[74.42083,-69.933334],[74.231247,-69.73333],[73.897919,-69.73333],[73.695831,-69.864586],[73.478645,-69.769272],[73.193748,-70],[72.810417,-70.04583],[72.613022,-70.17865],[72.893234,-70.406769],[72.467186,-70.5401],[72.32917,-70.685417],[71.820831,-70.70417],[71.53125,-70.956253],[71.163017,-71.486984],[71.191666,-71.606247],[70.802086,-71.818748],[70.645836,-72.006248],[69.912498,-72.083336],[69.939064,-72.210938],[69.560417,-72.462502],[69.052086,-72.416664],[68.421349,-72.475517],[68.02552,-72.629684],[68.132813,-72.941147],[67.964584,-73.14167],[67.212502,-73.318748],[67.112503,-73.222916],[66.70208,-73.252083],[66.345314,-73.142189],[67.014061,-72.899483],[67.11927,-72.577599],[67.297401,-72.36615],[67.252602,-72.085938],[67.495834,-72.006248],[67.552086,-71.791664],[67.889061,-71.674484],[67.80677,-71.547401],[68.054169,-71.354164],[68.54583,-71.245834],[68.843231,-71.074478],[69.207817,-70.703651],[69.26458,-70.447914],[69.150002,-70.308334],[68.09375,-70.456253],[67.775002,-70.400002],[67.49115,-70.203651],[67.542183,-70.035934],[67.889061,-69.999481],[68.110939,-69.735939],[68.558853,-70.026566],[69.157814,-69.878647],[69.34948,-69.608849],[68.972916,-69.54792],[68.740105,-69.390099],[69.012497,-69.314583],[69.728645,-69.322395],[69.761978,-69.177605],[69.335938,-69.09948],[69.741669,-68.964584],[69.354164,-68.89167],[69.63958,-68.57917],[70.04583,-68.522919],[70.041145,-68.410934],[69.646355,-68.155731],[69.689064,-67.876564],[69.352081,-67.729164],[69.066666,-67.854164],[68.341667,-67.897919],[66.716667,-67.79583],[65.32708,-67.675003],[64.731247,-67.660416],[64.01458,-67.529167],[63.108334,-67.53125],[62.643749,-67.662498],[62.0625,-67.552086],[61.543751,-67.543747],[60.643749,-67.404167],[59.650002,-67.39167],[59.53125,-67.612503],[58.764584,-67.335419],[58.932816,-67.18177],[58.410934,-67.195312],[57.585415,-66.991669],[57.272915,-67.089584],[56.922916,-67.04583],[56.483856,-67.13385],[56.202606,-67.340103],[56.156769,-67.202599],[55.765106,-67.19635],[56.36198,-67.018234],[56.497917,-66.685417],[57.295315,-66.705734],[57.191666,-66.518753],[56.772915,-66.400002],[56.332809,-66.40052],[55.610416,-66.020836],[55.195835,-65.929169],[53.78125,-65.841667],[52.922916,-65.960419],[52.214584,-65.972916],[51.497917,-66.114586],[51.341667,-66.224998],[50.602085,-66.287498],[50.188019,-66.558853],[50.225521,-66.730728],[50.493752,-66.789581],[50.418751,-66.970833],[50.977085,-67.166664],[50.629166,-67.241669],[50.185417,-67.114586],[49.912498,-67.241669],[49.816666,-67.03125],[49.28125,-67.043747],[49.256248,-66.820831],[48.346352,-67.021355],[48.34219,-67.13073],[48.775002,-67.224998],[49.075001,-67.145836],[49.403648,-67.210937],[49.091667,-67.370834],[48.617188,-67.452599],[48.732815,-67.692184],[48.397915,-68.027084],[48.177601,-67.88385],[48.452084,-67.729164],[48.170834,-67.65625],[47.252083,-67.650002],[47.039585,-67.48542],[47.441143,-67.41198],[46.866665,-67.262497],[46.395832,-67.289581],[46.219269,-67.373436],[46.393749,-67.614586],[45.849998,-67.65625],[45.693226,-67.809898],[45.389584,-67.695831],[44.740101,-67.771355],[44.485416,-67.95417],[43.945835,-67.977081],[43.735416,-68.052086],[43.189583,-68.04792],[42.610935,-68.179687],[42.53125,-68.379166],[41.922916,-68.40625],[41.022915,-68.587502],[40.745834,-68.752083],[39.846352,-68.829689],[39.690102,-69.035934],[39.702606,-69.314064],[39.859894,-69.38073],[39.662498,-69.64167],[39.148437,-69.723434],[39.137501,-69.908333],[38.795834,-69.981247],[38.993752,-70.206253],[38.535416,-70.116669],[38.125,-69.872917],[38.227085,-69.756248],[37.770832,-69.679169],[37.004684,-69.88073],[36.710415,-69.629166],[36.345833,-69.60833],[35.254166,-69.741669],[35.065102,-69.676567],[35.181252,-69.279167],[34.632813,-69.07135],[34.339584,-69.14167],[33.889584,-69.122917],[34.325001,-68.695831],[33.289585,-68.664581],[32.877083,-68.741669],[32.492187,-68.908852],[32.488022,-69.079689],[32.964066,-69.36927],[32.982815,-69.676567],[32.754166,-70.018753],[31.43125,-70.229164],[30.981251,-70.210419],[30.691668,-70.275002],[29.822916,-70.3125],[28.464582,-70.697914],[27.594271,-70.748436],[27.304167,-70.98333],[26.95677,-70.932816],[26.418751,-71.035416],[25.933332,-71.041664],[25.543751,-70.962502],[24.904167,-70.933334],[24.313021,-70.747398],[24.299479,-70.460937],[23.735416,-70.402084],[23.336979,-70.805733],[22.866667,-70.824997],[22.35,-70.768753],[22.570313,-70.529686],[21.779167,-70.231247],[21.614063,-70.261978],[21.194271,-70.575516],[21.127083,-70.839584],[20.447916,-70.925003],[19.722918,-70.883331],[19.547916,-70.949997],[19.13125,-70.864586],[18.909897,-70.641151],[19.2875,-70.387497],[19.169271,-70.250519],[18.768749,-70.247917],[18.254688,-70.332817],[18.439583,-70.5],[18.066668,-70.54583],[17.754168,-70.491669],[16.483854,-70.44635],[16.591667,-70.137497],[15.941667,-70.189583],[15.866146,-70.381767],[15.645833,-70.331253],[14.860416,-70.333336],[14.579166,-70.285416],[13.8375,-70.352081],[13.33125,-70.270836],[12.98125,-70.041664],[12.504167,-70.054169],[12.978646,-70.173439],[12.735416,-70.320831],[12.273437,-70.392189],[12.032813,-70.701561],[11.825,-70.783333],[10.614583,-70.614586],[9.946354,-70.44323],[9.297916,-70.07708],[8.902604,-70.232811],[9.139584,-70.377083],[8.277083,-70.495834],[7.8375,-70.425003],[7.870313,-70.160934],[7.415104,-70.210937],[7.545833,-70.539581],[6.829166,-70.527084],[6.774479,-70.601562],[5.085417,-70.633331],[3.5125,-70.862503],[2.525,-70.902084],[1.139583,-71.160416],[0.642187,-71.225517],[0.208854,-71.354683],[-0.539063,-71.766151],[-0.952083,-71.614586],[-0.796354,-71.390099],[-1.232813,-71.265099],[-1.370833,-71.439583],[-1.948438,-71.410934],[-2.661979,-71.289062],[-3.318229,-71.2901],[-3.570833,-71.508331],[-3.9,-71.29792],[-5.48125,-71.354164],[-6.297917,-71.3125],[-6.05625,-71.116669],[-5.717187,-71.032814],[-5.654687,-70.742188],[-6.389584,-70.720833],[-6.60625,-70.925003],[-7.227083,-70.791664],[-7.90625,-70.835419],[-7.899479,-70.976562],[-7.554687,-71.144272],[-7.556771,-71.316147],[-7.789062,-71.507813],[-7.629167,-71.658333],[-8.614583,-71.693748],[-9.110416,-71.429169],[-9.038021,-71.21302],[-9.377084,-71.10833],[-9.939063,-71.066147],[-10.195833,-70.918747],[-10.123437,-71.186981],[-10.541146,-71.277603],[-10.8,-71.589584],[-11.677083,-71.272919],[-12.252084,-71.308334],[-12.366146,-71.453651],[-12.158334,-71.635414],[-11.422916,-71.76667],[-10.858854,-71.765099],[-11.0125,-72.033333],[-11.191667,-72.099998],[-11.317187,-72.394272],[-12.432813,-72.554688],[-12.88073,-72.656769],[-13.172916,-72.806252],[-13.520833,-72.852081],[-14.09375,-72.720833],[-14.22448,-72.828651],[-13.890104,-72.975517],[-13.956771,-73.141151],[-14.435416,-73.166664],[-14.860416,-73.041664],[-15.558333,-73.07708],[-15.882812,-73.142189],[-15.964583,-73.300003],[-16.555729,-73.4776],[-16.593229,-73.682816],[-15.88125,-73.756248],[-16.418751,-73.877083],[-15.658334,-73.947914],[-14.739583,-73.783333],[-14.513021,-73.968231],[-15.299479,-74.221352],[-15.272917,-74.341667],[-15.627604,-74.432816],[-16.595833,-74.302086],[-17.385416,-74.333336],[-17.620312,-74.402603],[-17.617188,-74.591148],[-17.961979,-74.666145],[-18.135937,-74.939064],[-18.532812,-75.03698],[-18.877083,-75.258331],[-18.402082,-75.48333],[-18.810417,-75.456253],[-19.240105,-75.547401],[-19.789583,-75.54792],[-20.247917,-75.481247],[-20.722918,-75.533333],[-21.070833,-75.683334],[-21.770834,-75.706253],[-22.53125,-75.63958],[-23.25625,-75.737503],[-24.168751,-75.747917],[-25.137501,-75.877083],[-25.964582,-75.929169],[-26.929167,-76.160416],[-27.225,-76.160416],[-28.139584,-76.291664],[-28.889584,-76.356247],[-30.403646,-76.7099],[-30.635416,-76.847916],[-31.683332,-76.96875],[-31.895834,-77.150002],[-32.575001,-77.125],[-33.185417,-77.26667],[-33.706249,-77.306252],[-34.360416,-77.477081],[-34.728649,-77.629684],[-34.754166,-77.75],[-35.327084,-77.845833],[-35.618752,-78.160416],[-35.989582,-78.191666],[-36.280731,-78.399483],[-36.443226,-78.632813],[-36.355728,-78.816147],[-36.091667,-78.879166],[-35.037498,-78.970833],[-34.200001,-79.091667],[-34.147915,-79.160416],[-32.981251,-79.243752],[-32.108334,-79.21875],[-30.1875,-79.041664],[-29.839582,-79.375],[-30.708334,-79.585419],[-28.839582,-79.697914],[-26.795834,-79.791664],[-25.893749,-79.814583],[-24.81875,-79.793747],[-24.3375,-79.729164],[-24.268749,-79.820831],[-23.064583,-79.85833],[-22.99375,-79.987503],[-24.112499,-80.074997],[-26.258333,-80.122917],[-27.683332,-80.083336],[-28.893749,-80.114586],[-29.822916,-80.185417],[-30.014584,-80.29792],[-30.741667,-80.268753],[-31.335417,-80.308334],[-30.643749,-80.48333],[-31.970833,-80.42292],[-33.404167,-80.61042],[-34.462502,-80.660416],[-35.270832,-80.61042],[-36.120834,-80.931252],[-37.268749,-81.087502],[-37.606251,-80.997917],[-38.789585,-80.900002],[-39.591667,-80.995834],[-40.3125,-81.162498],[-40.954166,-81.193748],[-41.786976,-81.416145],[-41.929165,-81.612503],[-43.189583,-81.897919],[-43.141666,-82.120834],[-44.043751,-82.397919],[-44.191666,-82.247917],[-44.533333,-82.387497],[-45.522915,-82.525002],[-45.670834,-82.45208],[-46.039585,-82.554169],[-46.502083,-82.510414],[-46.466667,-82.366669],[-46.041668,-82.193748],[-46.239582,-81.912498],[-47.518749,-82.04792],[-47.381248,-81.92292],[-48.952084,-81.893753],[-49.541668,-81.958336],[-50.597916,-81.989586],[-52.131248,-82.07917],[-52.645832,-82.158333],[-53.108334,-82.14167],[-54.212502,-82.224998],[-55.15625,-82.393753],[-55.166668,-82.512497],[-55.564583,-82.462502],[-56.639584,-82.712502],[-57.668751,-82.897919],[-58.104168,-83.089584],[-59.231251,-83.414581],[-60.895832,-83.474998],[-61.177082,-83.381248],[-61.856251,-83.377083],[-61.019272,-83.107811],[-61.331772,-82.941147],[-61.668751,-83.0625],[-61.943748,-83.027084],[-62.081772,-82.86615],[-62.777084,-82.518753],[-62.064583,-82.46875],[-60.566666,-82.241669],[-60.764584,-82.162498],[-62.164585,-82.291664],[-63.087502,-82.252083],[-63.285416,-82.333336],[-63.872917,-82.308334],[-65.054169,-82.404167],[-65.21875,-82.262497],[-65.866669,-82.245834],[-65.916145,-82.073433],[-65.650002,-81.875],[-64.591667,-81.916664],[-63.581249,-81.868752],[-63.545834,-81.772919],[-64.933334,-81.79583],[-65.67083,-81.779167],[-65.716667,-81.716667],[-63.700001,-81.685417],[-62.787498,-81.722916],[-62.270832,-81.706253],[-62.297916,-81.5625],[-63.21875,-81.543747],[-63.922916,-81.57917],[-64.76458,-81.504166],[-65.258331,-81.510414],[-66.793747,-81.29792],[-68.433334,-81.102081],[-68.060936,-81.035934],[-68.618752,-80.962502],[-69.224998,-81.029167],[-69.960419,-80.979164],[-70.3974,-80.829689],[-70.493752,-80.645836],[-71.104164,-80.595833],[-71.581253,-80.720833],[-72.474998,-80.745834],[-72.57708,-80.960419],[-73.050003,-80.95208],[-74.15625,-80.79583],[-74.82917,-80.92292],[-75.543747,-80.89167],[-75.289581,-80.79583],[-75.693748,-80.647919],[-75.557816,-80.419266],[-76.002083,-80.316666],[-76.262497,-80.07917],[-77.70417,-80.166664],[-78.377083,-80.150002],[-79.456253,-80.060417],[-79.427086,-79.962502],[-78.175003,-80.039581],[-76.756248,-79.962502],[-76.189583,-79.804169],[-75.935417,-79.51667],[-76.587502,-79.304169],[-77.48333,-79.252083],[-80.095833,-79.231247],[-80.502083,-79.277084],[-80.460419,-79.574997],[-81.158333,-79.45417],[-81.429169,-79.17292],[-81.712502,-79.072914],[-82.45208,-78.972916],[-83.081253,-78.833336],[-83.736984,-78.557816],[-83.689583,-78.32708],[-83.064583,-78.410416],[-83.609901,-78.222397],[-83.820831,-77.96875],[-82.45208,-78.470833],[-81.568748,-78.67292],[-80.712502,-78.810417],[-80.070831,-78.856247],[-78.729164,-78.839584],[-77.960419,-78.768753],[-77.38958,-78.637497],[-77.373436,-78.433853],[-77.977081,-78.308334],[-80.63958,-78.025002],[-81.67083,-77.841667],[-81.122917,-77.849998],[-80.663017,-77.759895],[-79.318748,-77.883331],[-79.164581,-77.845833],[-78.256248,-77.941666],[-76.643753,-77.979164],[-75.583336,-78.087502],[-75.006248,-78.185417],[-73.972916,-78.125],[-73.206253,-77.893753],[-72.742188,-77.653648],[-72.856247,-77.57708],[-74.76458,-77.431252],[-75.289581,-77.466667],[-75.435417,-77.554169],[-76.5,-77.147919],[-77.518753,-76.727081],[-77.557816,-76.580734],[-76.805733,-76.589066],[-76.512497,-76.518753],[-75.86042,-76.633331],[-75.272919,-76.568748],[-74.20417,-76.689583],[-73.897919,-76.658333],[-72.885414,-76.67292],[-71.633331,-76.76667],[-70.095833,-76.695831],[-70.116669,-76.416664],[-69.162498,-76.308334],[-68.060417,-76.239586],[-68.116669,-76.15625],[-67.431252,-76.125],[-66.23542,-76.012497],[-65.375519,-75.845314],[-64.23542,-75.679169],[-63.121357,-75.393234],[-63.272915,-75.333336],[-64.349998,-75.366669],[-64.033333,-75.20417],[-63.033852,-75.145317],[-63.325001,-75.006248],[-63.877083,-75.037498],[-63.572918,-74.868752],[-63.065102,-74.907814],[-63.139584,-74.647919],[-62.585938,-74.760933],[-62.582809,-74.97448],[-62.147915,-74.956253],[-61.770832,-74.722916],[-62.360416,-74.441666],[-61.285416,-74.54583],[-61.008335,-74.504166],[-60.887501,-74.247917],[-61.450001,-74.333336],[-61.029167,-74.091667],[-61.809898,-73.914063],[-61.402084,-73.870834],[-61.006248,-73.964584],[-60.737499,-73.6875],[-60.856251,-73.558334],[-61.477085,-73.477081],[-61.583332,-73.552086],[-61.947399,-73.375519],[-61.569271,-73.3526],[-61.983334,-73.106247],[-61.427601,-73.156769],[-61.150002,-73.331253],[-60.891144,-73.242187],[-60.700001,-73.395836],[-60.618752,-73.181252],[-60.34375,-73.32917],[-59.975521,-73.249481],[-59.943748,-72.893753],[-60.329166,-73.058334],[-60.547916,-72.981247],[-60.541668,-72.654167],[-61.213024,-72.710938],[-61.395832,-72.408333],[-60.708332,-72.45208],[-60.660934,-72.000519],[-61.400002,-72.064583],[-62.096352,-72.013016],[-62.435417,-71.918747],[-61.752083,-71.862503],[-61.070835,-71.864586],[-60.793751,-71.67083],[-61.181252,-71.533333],[-61.577084,-71.691666],[-61.489582,-71.445831],[-60.963024,-71.368233],[-61.022915,-71.137497],[-61.226562,-71.090103],[-61.283852,-70.860939],[-62.059898,-70.895317],[-62,-70.716667],[-61.370834,-70.585419],[-61.460415,-70.491669],[-62.089584,-70.54792],[-62.410416,-70.404167],[-62.370834,-70.212502],[-61.865101,-70.228645],[-61.992188,-70.077599],[-62.536976,-69.8526],[-62.383854,-69.7099],[-62.443748,-69.48542],[-62.777084,-69.34375],[-62.952084,-69.381248],[-63.418751,-68.95208],[-63.254684,-68.808853],[-63.853645,-68.699478],[-63.414585,-68.414581],[-64.126564,-68.542183],[-64.095833,-68.835419],[-64.737503,-68.689583],[-65.268234,-68.628647],[-65.058334,-68.364586],[-65.429169,-68.308334],[-64.752602,-68.11615],[-65.031769,-68.080734],[-65.758331,-68.164581],[-65.40625,-68.027084],[-65.582817,-67.7276],[-65.362503,-67.708336],[-65.589584,-67.3125],[-65.314583,-67.404167],[-64.762497,-67.318748],[-65.029167,-67.239586],[-64.885933,-66.986984],[-64.306252,-66.835419],[-64.085419,-66.935417],[-63.729691,-66.895317],[-63.841667,-66.731247],[-64.122398,-66.686981],[-63.902084,-66.381248],[-63.387501,-66.260414],[-62.835938,-66.535934],[-62.625,-66.73542],[-62.517185,-66.480728],[-62.770309,-66.322395],[-62.453644,-66.185936],[-61.760418,-66.199997],[-61.245834,-66.158333],[-60.979691,-66.341148],[-60.820835,-66.04792],[-61.022396,-65.913017],[-61.320835,-66.089584],[-61.629166,-66.01458],[-62.045834,-66.10833],[-62.367188,-65.813019],[-61.845833,-65.550003],[-62.191666,-65.302086],[-61.931252,-65.189583],[-61.639584,-65.247917],[-61.75,-64.970833],[-61.393749,-65.054169],[-60.976562,-64.935936],[-60.6875,-64.712502],[-59.918751,-64.383331],[-59.766144,-64.56823],[-59.625,-64.39167],[-58.816666,-64.552086],[-58.820312,-64.182816],[-58.641666,-63.945835],[-58.102604,-63.667191],[-57.84375,-63.681252],[-57.183334,-63.470833],[-57.135418,-63.654167],[-56.866665,-63.643749],[-57.031769,-63.267185],[-57.272915,-63.220833]]],[[[-47.014584,-77.772919],[-47.512501,-77.785416],[-49.134899,-78.064064],[-49.206772,-78.168228],[-49.936981,-78.452599],[-50.358334,-78.683334],[-50.499481,-78.942184],[-50.485416,-79.306252],[-50.222916,-79.477081],[-50.469269,-79.607811],[-52.085938,-80.103645],[-52.302601,-80.060936],[-53.085415,-80.183334],[-53.368752,-80.099998],[-54.073441,-80.549484],[-54.379166,-80.57917],[-54.400002,-80.752083],[-54.102085,-80.872917],[-52.681252,-80.900002],[-50.504166,-80.845833],[-49.747917,-80.785416],[-49.718231,-80.68177],[-49.052082,-80.614586],[-48.164585,-80.654167],[-47.466667,-80.63958],[-45.935417,-80.535416],[-44.697918,-80.379166],[-43.668751,-80.216667],[-43.46875,-80.09375],[-43.833332,-79.993752],[-43.131771,-79.964066],[-42.990101,-79.842186],[-42.946354,-79.450516],[-43.349476,-79.236984],[-43.495834,-78.916664],[-43.747917,-78.79792],[-45.164585,-78.806252],[-45.354168,-78.685417],[-44.935417,-78.627083],[-43.920834,-78.597916],[-43.704685,-78.377602],[-43.793751,-78.256248],[-44.916668,-77.945831],[-45.940102,-77.815102],[-47.014584,-77.772919]]],[[[-70.433334,-68.783333],[-71.008331,-68.864586],[-71.493752,-68.847916],[-72.186981,-69.05677],[-72.132813,-69.243233],[-71.724998,-69.375],[-71.688019,-69.526566],[-71.92865,-69.955734],[-71.320831,-70.177086],[-70.938019,-70.220314],[-70.675003,-70.114586],[-70.277084,-70.158333],[-69.590103,-70.379684],[-69.708336,-70.431252],[-70.170311,-70.319267],[-71.018234,-70.469269],[-71.263016,-70.677605],[-70.810417,-70.822914],[-69.777603,-70.857811],[-69.842186,-71.149483],[-70.233849,-70.960937],[-71.277084,-70.98333],[-71.616669,-71.15625],[-72.45417,-71.056252],[-73.008331,-71.089584],[-72.949997,-71.224998],[-72.181252,-71.32708],[-73.518753,-71.308334],[-73.533333,-71.602081],[-74.0625,-71.39167],[-74.420311,-71.421349],[-74.337502,-71.683334],[-75.095833,-71.529167],[-75.409897,-71.901566],[-74.675003,-72.085419],[-74.397919,-72.029167],[-74.050003,-72.17292],[-73.506767,-72.016151],[-73.800003,-71.835419],[-73.45417,-71.833336],[-73.072914,-71.939583],[-72.708855,-71.861984],[-72.339584,-71.61042],[-71.837502,-71.789581],[-71.849998,-71.893753],[-71.385414,-71.820831],[-71.122917,-71.902084],[-70.856247,-71.84375],[-70.793747,-72],[-72.03125,-72.116669],[-71.677086,-72.245834],[-71.116669,-72.272919],[-70.381767,-72.135933],[-70.152603,-72.266151],[-70.633331,-72.387497],[-71.651566,-72.378647],[-72.720833,-72.272919],[-73.166145,-72.444267],[-72.377083,-72.67083],[-71.34375,-72.629166],[-70.684898,-72.666145],[-69.199997,-72.535416],[-68.737503,-72.214584],[-68.447914,-72.243752],[-68.223434,-71.874481],[-68.229683,-71.21302],[-68.32917,-70.837502],[-68.721352,-70.344269],[-69.059898,-70.159897],[-69.284897,-69.926567],[-69.318748,-69.625],[-69.706253,-69.3125],[-69.95417,-69.3125],[-70.197914,-68.841667],[-70.433334,-68.783333]]],[[[-163.195831,-78.714584],[-164.24115,-79.043228],[-164.274994,-79.20417],[-164.068237,-79.376564],[-163.152084,-79.5625],[-161.762497,-79.785416],[-161.195831,-79.833336],[-159.566666,-79.852081],[-159.041672,-79.816666],[-159.18541,-79.65625],[-159.808334,-79.352081],[-161.356247,-79],[-161.987503,-78.791664],[-163.195831,-78.714584]]],[[[-60.085415,-79.693748],[-60.96875,-79.79792],[-61.295834,-80.01458],[-61.793751,-80.043747],[-61.352085,-80.306252],[-62.162498,-80.412498],[-62.856251,-80.447914],[-65.5625,-80.410416],[-65.977081,-80.387497],[-66.169266,-80.22448],[-66.493752,-80.216667],[-66.747398,-80.395317],[-65.866669,-80.574997],[-64.89167,-80.706253],[-64.181252,-80.737503],[-64.11042,-80.652084],[-63.114582,-80.604164],[-62.936981,-80.78698],[-62.279167,-80.88958],[-61.227085,-80.96875],[-60.439583,-80.933334],[-59.673435,-80.653648],[-59.849998,-80.57917],[-59.772915,-80.341667],[-59.445835,-80.120834],[-59.808334,-80.131248],[-59.679165,-79.883331],[-60.085415,-79.693748]]],[[[-98.692184,-71.725517],[-99.139061,-71.892189],[-98.962502,-72.091667],[-99.481247,-71.941666],[-99.785416,-72.064583],[-100.131248,-71.964584],[-100.0625,-71.82917],[-101.76667,-71.925003],[-102.224998,-72.004166],[-102.26458,-72.13958],[-101.239586,-72.227081],[-100.643753,-72.23542],[-99.762497,-72.366669],[-99.231247,-72.364586],[-99.435417,-72.48542],[-98.5625,-72.458336],[-98.408333,-72.57917],[-97.537498,-72.543747],[-95.935936,-72.555733],[-95.504166,-72.3125],[-95.768753,-72.052086],[-95.908333,-72.131248],[-96.999481,-72.208855],[-96.100517,-71.989067],[-96.379166,-71.831253],[-97.043228,-71.84948],[-97.372917,-72.214584],[-97.566666,-72.074997],[-97.466667,-71.908333],[-97.75,-71.864586],[-97.859901,-72.05365],[-98.229683,-72.044266],[-97.992187,-71.878647],[-98.692184,-71.725517]]],[[[-67.039581,-78.314583],[-67.681252,-78.387497],[-68.489586,-78.568748],[-69.412498,-78.679169],[-69.818748,-78.79792],[-70.645836,-78.88958],[-71.32917,-79.070831],[-71.761978,-79.344269],[-71.782814,-79.531769],[-71.439583,-79.654167],[-70.356247,-79.697914],[-69.666664,-79.61042],[-69.677086,-79.42083],[-69.300003,-79.229164],[-68.712502,-79.020836],[-68.190102,-78.91198],[-67.387497,-78.664581],[-67.052086,-78.489586],[-66.614586,-78.372917],[-67.039581,-78.314583]]],[[[-126.352081,-73.275002],[-127.356247,-73.32917],[-127.491669,-73.42083],[-127.264061,-73.715103],[-126.539581,-73.664581],[-126.470314,-73.843231],[-126.002083,-73.916664],[-125.706253,-74.039581],[-125.118752,-74.116669],[-124.787498,-74.231247],[-123.80677,-74.220314],[-123.772919,-74.072914],[-124.195313,-73.94323],[-124.027084,-73.852081],[-124.627083,-73.720833],[-125.089584,-73.822914],[-125.637497,-73.833336],[-125.914062,-73.745316],[-125.291664,-73.70417],[-125.554169,-73.447914],[-126.352081,-73.275002]]],[[[-122.347916,-73.668747],[-123.145836,-73.683334],[-123.247917,-73.822914],[-122.38958,-73.925003],[-122.936981,-74.111984],[-122.883331,-74.345833],[-122.012497,-74.435417],[-120.944267,-74.309898],[-121.078651,-74.168228],[-120.267189,-74.003647],[-120.529167,-73.752083],[-121.097916,-73.777084],[-121.95208,-73.731247],[-122.347916,-73.668747]]],[[[-75.35833,-72.816666],[-75.778648,-72.898437],[-75.502083,-72.989586],[-76.070831,-73.07917],[-76.055733,-73.270317],[-75.762497,-73.393753],[-75.081253,-73.537498],[-74.475517,-73.597397],[-74.360939,-73.456772],[-74.57708,-73.275002],[-74.219269,-72.984901],[-74.318748,-72.92083],[-75.35833,-72.816666]]],[[[166.731247,-77.162498],[166.664062,-77.364067],[166.175522,-77.555733],[166.839584,-77.660416],[166.679687,-77.857811],[167.535934,-77.631767],[168.524994,-77.697914],[169.361984,-77.524483],[168.985413,-77.416664],[168.356247,-77.364586],[167.727081,-77.418747],[167.137497,-77.345833],[167.036987,-77.200516],[166.731247,-77.162498]]],[[[-74.043747,-70.54583],[-74.160416,-70.654167],[-74.476562,-70.580734],[-74.467186,-70.751564],[-74.866669,-70.587502],[-75.256248,-70.789581],[-75.958336,-70.818748],[-76.447914,-70.916664],[-76.49115,-71.064064],[-76.160416,-71.129166],[-74.306252,-70.966667],[-73.706772,-70.805733],[-73.550522,-70.690102],[-74.043747,-70.54583]]],[[[-67.675003,-66.627083],[-67.864586,-66.625],[-68.47448,-66.871353],[-68.819267,-67.264061],[-69.19323,-67.52552],[-68.893753,-67.76458],[-68.133331,-67.570831],[-67.792183,-67.08802],[-68.024483,-66.945312],[-67.675003,-66.627083]]],[[[-162.756256,-81.272919],[-163.822922,-81.310417],[-163.693756,-81.48333],[-161.02916,-81.61042],[-160.393753,-81.581253],[-160.729172,-81.45417],[-162.756256,-81.272919]]],[[[-67.648438,-79.53698],[-67.506248,-79.679169],[-66.881248,-79.79583],[-66.916664,-79.935417],[-66.360939,-79.979683],[-66.181252,-80.085419],[-65.472916,-79.960419],[-65.65625,-79.752083],[-65.974998,-79.772919],[-66.389061,-79.632812],[-67.648438,-79.53698]]],[[[-20.607813,-73.593231],[-20.866667,-73.654167],[-21.102083,-73.945831],[-21.964582,-74.0625],[-21.137501,-74.135414],[-20.859896,-74.451561],[-20.454166,-74.497917],[-20.388021,-74.335937],[-20.686979,-74.0849],[-20.485937,-73.673439],[-20.607813,-73.593231]]],[[[-91.13958,-72.53125],[-91.606247,-72.570831],[-91.451561,-72.951561],[-91.526566,-73.190102],[-91.01458,-73.14167],[-90.708855,-72.945313],[-90.791664,-72.60833],[-91.13958,-72.53125]]],[[[-35.595833,-79.099998],[-35.833332,-79.166664],[-36.659893,-79.234901],[-36.40625,-79.333336],[-35.081249,-79.35833],[-34.049999,-79.352081],[-34.002083,-79.270836],[-35.595833,-79.099998]]],[[[-63.331249,-64.241669],[-63.577084,-64.26667],[-63.712502,-64.447914],[-64.197914,-64.591667],[-64.293228,-64.711983],[-63.683334,-64.854164],[-63.420834,-64.724998],[-62.808857,-64.565102],[-63.125519,-64.49115],[-63.331249,-64.241669]]],[[[-163.25885,-82.833855],[-163.802078,-82.837502],[-163.28125,-83.072914],[-162.547913,-83.145836],[-161.945831,-83.11042],[-161.739578,-82.991669],[-162.456253,-82.868752],[-163.25885,-82.833855]]],[[[-57.783333,-63.787498],[-58.302082,-63.910416],[-58.443748,-64.13958],[-58.287498,-64.300003],[-57.414585,-64.291664],[-57.172916,-64.220833],[-57.57552,-63.97031],[-57.856251,-64.068748],[-57.783333,-63.787498]]],[[[-74.933334,-69.71875],[-75.239586,-69.84375],[-75.695831,-69.866669],[-75.664581,-70.118752],[-74.762497,-70.166664],[-74.52552,-69.860939],[-74.933334,-69.71875]]],[[[-3.025,-70.664581],[-3.395833,-70.754166],[-3.041667,-70.833336],[-2.811979,-71.164062],[-2.289583,-71.018753],[-2.088021,-70.82135],[-2.60625,-70.82917],[-2.5875,-70.70208],[-3.025,-70.664581]]],[[[26.422916,-70.060417],[25.952604,-70.21302],[26.002604,-70.384895],[26.495832,-70.45208],[26.825001,-70.42292],[26.686979,-70.100517],[26.422916,-70.060417]]],[[[-31.770313,-79.634895],[-32.037498,-79.65625],[-31.820833,-79.85833],[-30.633333,-79.90625],[-30.11875,-79.997917],[-30.09375,-79.852081],[-30.985416,-79.8125],[-31.770313,-79.634895]]],[[[-55.595833,-63.120834],[-56.052082,-63.139584],[-56.385418,-63.235416],[-56.451565,-63.430729],[-55.90625,-63.293751],[-55.170834,-63.362499],[-55.058857,-63.225521],[-55.595833,-63.120834]]],[[[100.831253,-65.383331],[100.587502,-65.395836],[100.271355,-65.569267],[100.341667,-65.677086],[100.939583,-65.691666],[101.251564,-65.561981],[101.149483,-65.425522],[100.831253,-65.383331]]],[[[-67.467186,-79.194267],[-68.078651,-79.233849],[-67.931252,-79.368752],[-68.345833,-79.479164],[-67.512497,-79.512497],[-67.15625,-79.254166],[-67.467186,-79.194267]]],[[[-171.822922,-82.833336],[-169.983337,-83.116669],[-169.81041,-83.177086],[-168.856247,-83.224998],[-169.021347,-83.15052],[-169.719269,-83.048439],[-171.302078,-82.868752],[-171.822922,-82.833336]]],[[[-150.379166,-76.90625],[-150.77916,-77.004166],[-150.34166,-77.089584],[-149.254166,-77.135414],[-149.77916,-76.897919],[-150.379166,-76.90625]]],[[[-119.150002,-73.779167],[-119.758331,-73.841667],[-119.689064,-74.132813],[-119.104164,-74.022919],[-118.872917,-73.893753],[-119.150002,-73.779167]]],[[[-131.65416,-74.318748],[-132.009903,-74.363022],[-132.039581,-74.506248],[-131.09375,-74.599998],[-131.079163,-74.4375],[-131.65416,-74.318748]]],[[[-62.402084,-69.14167],[-62.451565,-69.34948],[-61.98177,-69.722397],[-61.835415,-69.366669],[-62.402084,-69.14167]]],[[[167.523437,-78.001564],[166.862503,-78.195831],[165.983856,-78.108849],[166.266663,-78.310417],[166.833847,-78.233849],[167.456253,-78.247917],[167.523437,-78.001564]]],[[[-72.648437,-69.4151],[-72.97448,-69.483849],[-72.775002,-69.658333],[-72.189583,-69.743752],[-71.947914,-69.660416],[-72.648437,-69.4151]]],[[[-116.324997,-73.864586],[-117.362503,-74.072914],[-117.26458,-74.197914],[-116.564583,-74.145836],[-116.324997,-73.864586]]],[[[-62.433334,-64.010414],[-62.458851,-64.220314],[-62.682816,-64.402603],[-62.596352,-64.526566],[-62.227085,-64.38958],[-61.994274,-64.141151],[-62.433334,-64.010414]]],[[[-128.152084,-74.302086],[-127.903648,-74.55365],[-127.45208,-74.63958],[-127.118752,-74.46875],[-128.152084,-74.302086]]],[[[16.268749,-69.706253],[15.754167,-69.75],[15.670834,-69.962502],[16.154167,-70.089584],[16.268749,-69.706253]]],[[[-57.970833,-61.912498],[-58.422916,-61.929165],[-58.968231,-62.165104],[-58.633335,-62.247917],[-58.460415,-62.064583],[-57.945835,-62.083332],[-57.970833,-61.912498]]],[[[-2.948438,-70.298439],[-3.20625,-70.308334],[-3.509896,-70.518234],[-2.902083,-70.529167],[-2.6875,-70.322914],[-2.948438,-70.298439]]],[[[1.354687,-70.030731],[0.960937,-70.069267],[1.186979,-70.416145],[1.459896,-70.149483],[1.354687,-70.030731]]],[[[71.813019,-70.268234],[71.627602,-70.33802],[71.789581,-70.625],[72.189583,-70.537498],[71.813019,-70.268234]]],[[[-89.802086,-72.852081],[-90.179169,-73.089584],[-89.747917,-73.09375],[-89.377083,-72.90625],[-89.802086,-72.852081]]],[[[85.383331,-66.720833],[85.320831,-66.856247],[85.594269,-66.981766],[85.899483,-66.934898],[85.699997,-66.743752],[85.383331,-66.720833]]],[[[-148.520828,-76.699997],[-149.402084,-76.729164],[-148.977081,-76.845833],[-148.339584,-76.789581],[-148.520828,-76.699997]]],[[[4.539583,-70.247917],[4.122917,-70.260414],[4.194271,-70.468231],[4.614063,-70.432816],[4.539583,-70.247917]]],[[[-156.958328,-81.13958],[-159.883331,-81.220833],[-158.660416,-81.243752],[-156.958328,-81.13958]]],[[[-94.497917,-72.477081],[-95.241669,-72.602081],[-95.26458,-72.664581],[-94.4375,-72.618752],[-94.497917,-72.477081]]],[[[3.177604,-70.382813],[2.579687,-70.519272],[2.727083,-70.629166],[3.147917,-70.564583],[3.177604,-70.382813]]],[[[-145.820831,-75.504166],[-146.077087,-75.616669],[-145.225006,-75.712502],[-145.338013,-75.608849],[-145.820831,-75.504166]]],[[[-65.751564,-65.528648],[-65.962502,-65.54792],[-66.135414,-65.883331],[-65.84375,-65.835419],[-65.751564,-65.528648]]],[[[-104.968231,-72.941147],[-105.149483,-73.055733],[-104.854164,-73.208336],[-104.565102,-73.135933],[-104.968231,-72.941147]]],[[[-158.897919,-81.78125],[-159.009903,-81.820312],[-157.954163,-82.099998],[-158.402084,-81.870834],[-158.897919,-81.78125]]],[[[96.670311,-66.048439],[96.365105,-66.085938],[96.352081,-66.222916],[96.945831,-66.195831],[96.670311,-66.048439]]],[[[169.806244,-73.32917],[169.471359,-73.535934],[169.675003,-73.631248],[169.941147,-73.483849],[169.806244,-73.32917]]],[[[-147.004166,-76.818748],[-146.897919,-76.997917],[-146.241669,-76.881248],[-147.004166,-76.818748]]],[[[-147.139587,-76.506248],[-147.364059,-76.615105],[-146.90625,-76.710419],[-146.81041,-76.57708],[-147.139587,-76.506248]]],[[[-60.591667,-70.508331],[-60.933334,-70.529167],[-60.918228,-70.691147],[-60.441666,-70.614586],[-60.591667,-70.508331]]],[[[-149.170837,-76.902084],[-149.045837,-77.027084],[-148.585419,-77.022919],[-148.516663,-76.939583],[-149.170837,-76.902084]]],[[[-60.106251,-62.46875],[-60.322918,-62.5625],[-60.304165,-62.758335],[-59.979168,-62.633335],[-60.106251,-62.46875]]],[[[-151.041672,-77.21875],[-151.495834,-77.293747],[-150.524994,-77.377083],[-151.041672,-77.21875]]],[[[-155.577087,-79.814583],[-154.981247,-79.929169],[-154.539581,-79.947914],[-154.34584,-80.033333],[-153.993744,-79.987503],[-155.577087,-79.814583]]],[[[-73.668228,-73.091148],[-74.14167,-73.275002],[-73.883331,-73.372917],[-73.668228,-73.091148]]],[[[164.693756,-67.25],[164.679688,-67.559898],[164.922394,-67.464066],[164.693756,-67.25]]],[[[-56.449478,-62.982815],[-56.310417,-63.1875],[-56.089584,-63.002083],[-56.449478,-62.982815]]],[[[164.300522,-74.55365],[163.694275,-74.719269],[163.981766,-74.839066],[164.044266,-74.627602],[164.300522,-74.55365]]],[[[-67.412498,-67.589584],[-67.76458,-67.664581],[-67.435417,-67.785416],[-67.412498,-67.589584]]],[[[-147.18959,-76.070831],[-146.824997,-76.304169],[-146.702606,-76.202599],[-147.18959,-76.070831]]],[[[-16.356251,-72.45417],[-16.366667,-72.697914],[-16.104687,-72.659897],[-16.356251,-72.45417]]],[[[68.737503,-72.085419],[68.456253,-72.314583],[68.8349,-72.230728],[68.737503,-72.085419]]],[[[-6.054167,-70.402084],[-6.3375,-70.477081],[-6.15,-70.620834],[-6.054167,-70.402084]]]]},"properties":{"id":"598536f6-0628-484b-8768-f83729aabdd6","code":"ATA","name":"Antarctica","abbreviation":"C-ATA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.733196,17.090139],[-61.845695496,17.167360305],[-61.894306184,17.036806107],[-61.733196,17.090139]]]},"properties":{"id":"c8818efd-4f6b-41dc-92eb-5c6755484b79","code":"ATG","name":"Antigua and Barbuda","abbreviation":"C-ATG","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-68.433293,-52.397915],[-68.352501,-52.334862],[-68.714722,-51.973473],[-68.945274,-51.552361],[-69.166389,-50.979305],[-69.07861328,-50.565418243],[-68.880836487,-50.336528777],[-68.150276184,-50.107360841],[-67.850692748,-49.959861754],[-67.729026795,-49.776248932],[-67.663749696,-49.202915192],[-67.492080689,-48.961250305],[-67.126808167,-48.682918548],[-66.499863,-48.417915],[-65.97403,-48.046806],[-65.86042,-47.870419],[-65.718468,-47.328449],[-65.978394,-47.071529],[-66.78875,-47.001804],[-67.541252,-46.394859],[-67.625694,-46.052639],[-67.348198,-45.62764],[-66.868752,-45.235973],[-66.194862,-44.983196],[-65.643753,-45.050694],[-65.646248,-44.671528],[-65.217918,-44.37125],[-65.337639,-43.668194],[-64.99958,-43.272362],[-64.324303,-42.997917],[-65.02375,-42.77597],[-64.93792,-42.623196],[-64.565414,-42.491528],[-64.21125,-42.630138],[-64.145973,-42.874863],[-63.630138,-42.759861],[-63.597363,-42.329861],[-63.758472,-42.076248],[-64.144028,-42.196251],[-64.129028,-42.427361],[-64.616806,-42.41153],[-64.462639,-42.23875],[-64.827637,-42.196529],[-65.070969,-41.959026],[-64.988197,-41.518471],[-65.147362,-40.91264],[-64.839584,-40.758194],[-63.77319336,-41.160972595],[-63.143470764,-41.157638549],[-62.311249,-40.870972],[-62.271252,-40.545971],[-62.485138,-40.300972],[-62.316528,-40.148472],[-62.310974,-39.876526],[-62.151806,-39.871529],[-62.010693,-39.357918],[-62.291527,-39.222363],[-62.30125,-38.785416],[-62.045971,-38.930695],[-61.607082,-39.00375],[-60.847637177,-38.979583739],[-59.782917023,-38.825973511],[-58.495693207,-38.537361144],[-57.837917327,-38.289028168],[-57.540973663,-38.094860076],[-57.512638,-37.865696],[-57.126529694,-37.49458313],[-56.667362213,-36.878192902],[-56.733470916,-36.325695037],[-57.010692596,-36.325695037],[-57.274028778,-36.137084961],[-57.363471985,-35.745418548],[-57.125137329,-35.442359925],[-57.507362365,-35.024581908],[-58.163749695,-34.747638703],[-58.50819397,-34.447639465],[-58.354584,-34.039028],[-58.5541,-33.677956],[-58.348822999,-33.112979999],[-58.084104699,-32.9978188],[-58.204637,-32.460549001],[-58.106447,-32.240017001],[-58.206526299,-31.867727099],[-58.085653199,-31.8192923],[-57.8095954,-30.9133178],[-57.859237999,-30.47701],[-57.645093944,-30.193501761],[-57.341964722,-30.001224517],[-56.593063354,-29.122995376],[-56.424785614,-29.072883606],[-56.284252166,-28.791032791],[-55.893493653,-28.481349945],[-55.867664337,-28.353826524],[-55.322998047,-27.928085327],[-55.035362244,-27.85518837],[-54.902950287,-27.646493911],[-54.345546722,-27.468130111],[-53.830710999,-27.156361],[-53.671756744,-26.893024444],[-53.749443054,-26.648902892],[-53.591835021,-26.264888763],[-53.83657837,-25.965755463],[-53.875339508,-25.64199829],[-54.287284852,-25.559808731],[-54.595642089,-25.592119217],[-54.674434661,-25.982574463],[-54.620338441,-26.217113494],[-54.814025879,-26.673847199],[-55.430381774,-27.005846023],[-55.725994111,-27.439798355],[-56.143482209,-27.312519074],[-56.364120483,-27.595844268],[-56.598140717,-27.445108414],[-56.833343506,-27.601108552],[-57.288253785,-27.421615601],[-58.243350983,-27.249126434],[-58.606578826,-27.295120239],[-58.662487031,-27.172166825],[-58.190357207,-26.644302367],[-58.115341187,-26.1532135],[-57.84935379,-26.006015777],[-57.815349579,-25.771087646],[-57.555946349,-25.444845199],[-57.787567138,-25.151655197],[-58.246482849,-24.933790206],[-58.654743,-24.833561],[-59.352993,-24.484718001],[-59.494984,-24.325085],[-60.046623,-24.012133001],[-60.32008,-24.048525],[-61.002472,-23.794147],[-61.091682434,-23.618074417],[-61.495021821,-23.415639877],[-61.989246368,-23.020784379],[-62.284908295,-22.491340637],[-62.642415671,-22.242894844],[-62.807725491,-22.003895703],[-63.930780939,-21.999327466],[-64.267625,-22.770130556],[-64.651743429,-22.189670368],[-65.052511111,-22.083347223],[-65.676173444,-22.111683849],[-66.241263978,-21.788823764],[-66.288490868,-22.085832402],[-66.739288889,-22.238458333],[-66.782475,-22.438075],[-67.027275,-22.540883334],[-67.181492683,-22.814198382],[-66.99017821,-22.999960028],[-67.322616668,-24.034161112],[-68.2458,-24.39588],[-68.56809,-24.79555],[-68.457101718,-25.125571144],[-68.589488841,-25.448364052],[-68.381065119,-26.177901455],[-68.588014152,-26.492060427],[-68.263233,-26.918335],[-68.621655914,-27.169165029],[-68.787879498,-27.103729943],[-68.988255483,-27.447123635],[-69.121431621,-27.898420047],[-69.624443336,-28.37844621],[-69.791733093,-29.134665384],[-69.99705676,-29.28507877],[-69.879702066,-29.733743499],[-69.963840001,-30.0883],[-69.896476609,-30.354594573],[-70.195166881,-30.492360208],[-70.399898278,-31.167815713],[-70.49769772,-31.125102941],[-70.566551757,-31.583348822],[-70.454499837,-31.849211669],[-70.208194844,-31.977980942],[-70.321945136,-32.258538434],[-70.148729014,-32.465920957],[-70.038717763,-33.270228423],[-69.799914912,-33.288108503],[-69.897750177,-33.848213471],[-69.806585807,-34.248088741],[-70.217874398,-34.611871601],[-70.432174963,-35.318485103],[-70.365178385,-35.925422784],[-70.420954386,-36.156037296],[-70.705580202,-36.272048801],[-70.688477322,-36.407847756],[-71.018217353,-36.47394123],[-71.17382,-36.96809],[-71.118037151,-37.491514474],[-71.211416718,-37.689226369],[-70.983272634,-38.105245545],[-70.925051132,-38.763548118],[-71.426768338,-38.922759467],[-71.373655537,-39.28244924],[-71.683271746,-39.56787833],[-71.592099224,-39.912363552],[-71.827741308,-40.205795982],[-71.965041607,-40.745680183],[-71.818180143,-41.062598676],[-71.829096318,-41.481991565],[-71.727562064,-42.116925582],[-72.172372581,-42.138930024],[-72.01054811,-42.48835196],[-72.17871063,-42.695552514],[-72.037785766,-43.010184138],[-71.760372925,-43.164801116],[-71.9302424,-43.457052819],[-71.581183186,-43.6518247],[-71.797811421,-44.192879764],[-71.794390693,-44.414604117],[-71.389803141,-44.385807672],[-71.128883814,-44.471122393],[-71.205712551,-44.751327539],[-72.006406258,-44.783845574],[-71.559853112,-44.977869509],[-71.333301673,-45.318743324],[-71.79457471,-45.662713225],[-71.618024497,-45.980690747],[-71.794197195,-46.192042943],[-71.64779302,-46.688304825],[-71.95581618,-46.815213995],[-71.868416452,-47.233713127],[-72.342077001,-47.455816],[-72.527800304,-47.936881641],[-72.228044013,-48.318480186],[-72.580046554,-48.486580242],[-72.530041543,-48.796240413],[-72.919671096,-48.935912125],[-73.141814206,-49.179972521],[-73.054168004,-49.465268383],[-73.490898941,-49.81686292],[-73.521530682,-50.153553896],[-73.364469704,-50.518623004],[-73.145502512,-50.781864894],[-72.726647548,-50.617677445],[-72.285614976,-50.659898482],[-72.258646111,-51.24418388],[-72.338238,-51.584123],[-71.890351,-52.00008],[-69.995494443,-52.000708332],[-69.486129663,-52.151632106],[-69.190119444,-52.150044444],[-68.433293,-52.397915]]],[[[-68.610413,-54.893407],[-68.247498,-54.795139],[-68.033607,-54.850418],[-67.340279,-54.870419],[-66.523056,-55.057083],[-66.308052,-54.992085],[-65.328613,-54.921528],[-65.236946,-54.62014],[-65.690834,-54.663471],[-66.458611,-54.480415],[-66.741943001,-54.259029001],[-67.445273999,-53.979861999],[-67.910278,-53.653472999],[-68.144165001,-53.326805],[-68.468056,-53.291527],[-68.301941001,-52.937363],[-68.610591855,-52.653473],[-68.610413,-54.893407]]],[[[-64.338608,-54.710693],[-64.725281,-54.801529],[-64.606941,-54.910416],[-64.338608,-54.710693]]]]},"properties":{"id":"e7b1d215-9739-480b-8289-a3c81223c7a9","code":"ARG","name":"Argentina","abbreviation":"C-ARG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.547237396,38.87273407],[46.621616364,39.215484619],[46.408470154,39.378364564],[46.563018799,39.567264558],[46.175865174,39.587974549],[45.806186676,39.930950165],[45.977215,40.212894],[45.4357872,40.514019012],[45.356712342,40.668395996],[45.570034028,40.824512482],[45.193451,41.071743],[45.004055024,41.301422119],[44.435482026,41.187656403],[44.183200837,41.244400025],[43.729671478,41.113761901],[43.47107315,41.129486085],[43.748699189,40.735939026],[43.546657562,40.468128205],[43.905479431,40.018466949],[44.262771606,40.050014497],[44.772602081,39.71364975],[45.081943512,39.785499572],[45.456829071,39.504371644],[45.708938599,39.606487274],[46.000000001,39.296939851],[46.136863709,38.834842682],[46.547237396,38.87273407]]]},"properties":{"id":"ef776483-db17-40ac-a489-261e73924f1f","code":"ARM","name":"Armenia","abbreviation":"C-ARM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.978195191,12.469861031],[-69.88458252,12.478471757],[-70.02458191,12.604026796],[-69.978195191,12.469861031]]]},"properties":{"id":"9277b723-eae2-4f15-bc00-1196cfc9a664","code":"ABW","name":"Aruba","abbreviation":"C-ABW","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[150.14711,-36.237579],[150.150284,-35.890938],[150.407669,-35.529617],[150.47966,-35.289829],[150.740906,-34.991959],[150.976959,-34.245754],[151.249908,-34.00069],[151.43895,-33.341267],[151.793411254,-32.893291472],[152.533096,-32.443096],[152.549576,-32.025585],[152.745087,-31.845879],[152.935028,-31.475788],[153.090714,-30.921562],[153.031707763,-30.499017716],[153.271774,-29.919025],[153.441452026,-29.065288543],[153.606995,-28.842844],[153.586258,-28.25841],[153.448914,-28.080023],[153.391266,-27.707012],[153.06517,-27.302515],[153.144073,-27.07585],[153.066467,-26.355799],[153.164185,-25.949648],[152.90799,-25.724501],[152.890625,-25.280499],[152.667938,-25.245806],[152.412262,-24.759077],[152.154602,-24.631824],[151.944519,-24.243538],[151.193924,-23.82653],[150.878143,-23.552292],[150.750824,-23.135553],[150.831085,-22.68462],[150.679993,-22.364101],[150.573013,-22.577263],[150.174942,-22.355055],[150.043579,-22.126457],[149.912994,-22.345848],[149.59729,-22.28146],[149.43222,-21.79701],[149.485352,-21.571772],[149.291153,-21.504511],[149.229996,-21.078346],[148.844803,-20.875767],[148.663101,-20.58732],[148.83931,-20.431709],[148.561188,-20.07126],[148.429001,-20.166702],[148.083206,-19.886814],[147.938477,-19.918476],[147.586807,-19.725096],[147.410446,-19.425961],[147.13475,-19.407085],[146.456635,-19.075064],[146.290665,-18.893026],[146.337524,-18.525827],[146.02626,-18.26252],[146.140823,-17.640282],[145.774872,-16.870016],[145.413284,-16.46607],[145.470932,-16.075891],[145.362427,-15.917952],[145.235046387,-15.143463134],[145.349655152,-14.982315062],[144.684402,-14.552839],[144.516205,-14.166642],[143.948273,-14.495552],[143.798355,-14.422804],[143.531967,-13.749249],[143.586807,-13.544975],[143.498779,-12.952903],[143.350601,-12.888373],[143.438904,-12.613395],[143.083069,-12.347416],[143.185577,-11.990818],[142.856354,-11.845518],[142.726517,-10.973741],[142.438263,-10.708162],[142.157288,-11.121775],[141.92247,-12.107571],[141.820587,-12.031383],[141.591766,-12.563931],[141.822403,-12.60147],[141.601364,-12.952081],[141.696075,-13.264538],[141.550598,-13.506938999],[141.468994,-13.920429],[141.600554999,-14.119518001],[141.525604,-14.487085999],[141.667618,-15.019793],[141.480178834,-15.498202324],[141.421752929,-16.105150222],[141.184463502,-16.720661162],[140.973587036,-16.969841004],[140.827301025,-17.458450317],[140.378204346,-17.679714203],[140.093429565,-17.722545623],[139.247573853,-17.327291489],[139.000214,-16.892174],[138.427902222,-16.777257919],[138.116729735,-16.648019791],[137.729675,-16.232252],[137.409195,-16.144318],[136.977982,-15.850953],[136.769501,-15.889667],[136.290009,-15.571989],[136.239716,-15.416088],[135.470459,-14.970226],[135.417847,-14.734118],[135.78894,-14.231937],[136.016113,-13.824058],[135.839737,-13.56636],[135.918427,-13.270451],[136.634491,-12.952625],[136.480072,-12.842517],[136.961777,-12.363822],[136.782364,-12.159094],[136.647507,-12.269715],[136.41655,-11.957659],[136.040115,-12.266812],[135.366211,-12.084717],[135.05603,-12.26361],[134.770004,-11.958432],[134.493073,-12.072505],[133.930908,-11.918451],[133.794907,-11.727602],[133.611084,-11.842784],[133.15892,-11.710047],[133.007858,-11.432825],[132.73288,-11.519077],[132.342468,-11.135525],[131.831116,-11.223273],[132.106781,-11.531532],[132.457153,-11.457755],[132.655319,-11.889815],[132.629288,-12.085415],[132.021164,-12.296721],[131.871231,-12.216401],[131.47229,-12.283711],[131.270004,-12.070589],[131.01297,-12.323279],[130.617355,-12.387023],[130.627579,-12.726895],[130.352036,-12.670338],[130.338699,-12.889327],[130.141113,-12.933458],[130.11618,-13.164139],[130.284058,-13.305757],[130.008362,-13.533339],[129.82692,-13.51543],[129.721298,-14.01343],[129.499527,-14.078959],[129.356766,-14.42363],[129.800568,-14.858128],[129.47493,-14.936629],[128.504669,-14.781492],[128.230148,-15.000672],[128.213959,-14.711038],[127.854645,-14.486534],[127.64888,-14.171997],[127.263718,-13.90148],[127.137299,-13.974241],[126.957512,-13.741692],[126.645325,-14.185125],[126.198524,-14.006149],[125.930901,-14.53076],[125.468399,-14.533052],[125.142532,-14.752043],[125.4002,-15.088962],[125.047241,-15.077904],[124.705032,-15.253395],[124.620644,-15.514456],[124.392143,-15.745538],[124.589035,-16.113358],[124.411659,-16.35726],[123.915253,-16.215643],[123.522949,-16.636175],[123.797287,-16.912188],[123.644066,-16.99803],[123.567986,-17.508322],[123.149101,-16.924719],[122.901527,-16.43498],[122.737381,-16.774483],[122.533798,-16.836487],[122.251793,-17.128099],[122.150017,-17.355371],[122.214615,-18.204037],[121.764755,-18.552828],[121.511139,-19.093872],[121.210129,-19.466303],[120.961502,-19.631983],[120.195938,-19.913908],[119.574608,-20.075737],[119.096596,-19.960564],[118.817818,-20.280499],[118.327873,-20.340954],[117.98597,-20.474096],[117.774292,-20.664219],[117.369835,-20.734222],[117.13047,-20.653553],[116.525909,-20.752861],[115.98938,-21.04011],[115.492744,-21.485765],[114.643608,-21.848927],[114.354851,-22.500607],[114.149567,-22.52014],[113.995087,-21.875463],[113.654015,-22.583393],[113.82943,-23.030909],[113.755333,-23.525936],[113.470192,-23.899351],[113.40696,-24.484177],[113.617271,-24.736343],[114.041618,-25.661995],[114.235207,-25.87714],[114.237648,-26.312765],[114.086174,-26.468367],[113.761856,-25.878595],[113.52523,-25.607794],[113.414474,-25.724737],[113.583054,-26.095518],[113.88356,-26.341009],[113.811493,-26.577242],[113.583748,-26.600183],[113.536461,-26.28426],[113.396721,-26.113951],[113.296196,-26.399176],[113.584358,-26.671427],[113.941734,-27.191969],[114.159637,-27.69581],[114.174713,-28.110971],[114.596572876,-28.611562729],[114.634269714,-28.873563766],[114.871994019,-29.116556167],[114.996093749,-29.487709044],[114.95507,-30.048246],[115.057655,-30.503187],[115.440514,-31.276682],[115.685783385,-31.653709411],[115.775131225,-32.182586669],[115.692711001,-32.767612],[115.679626464,-33.284992217],[115.441681,-33.595089],[114.975082,-33.698051],[115.033928,-34.269764],[115.591400147,-34.429676056],[116.032143,-34.837105],[116.658081,-35.051437],[117.492592,-35.08997],[118.210472,-34.978386],[118.911789,-34.462879],[119.40802,-34.458172],[119.807152,-33.988575],[120.04406,-33.923134],[120.43718,-33.971584],[120.602882,-33.886024],[121.361481,-33.815441],[121.785957,-33.908237],[122.008423,-33.831699],[122.113571,-34.0172],[123.016754,-33.857834],[123.163071,-34.016636],[123.546753,-33.934994],[123.980186,-33.549706],[124.101189,-33.176155],[124.354415893,-32.960067749],[124.748626708,-32.898605346],[125.026184082,-32.728858947],[125.556930542,-32.536010743],[125.951011658,-32.290542603],[126.203140258,-32.232276915],[126.672790528,-32.308368683],[127.213371277,-32.27638626],[128.054138184,-32.064689637],[129.049881,-31.675119],[130.27507,-31.573662],[130.791367,-31.607],[131.129562,-31.464363],[131.80278,-31.744869],[132.271133,-32.032398],[132.5952,-31.934328],[133.257766723,-32.206470489],[133.46043396,-32.102912903],[133.825683595,-32.237823485],[133.938613892,-32.420635224],[134.250168,-32.550423],[134.080597,-32.709572],[134.266769,-33.138512],[134.801636,-33.328472],[134.842392,-33.629753],[135.270477,-34.015923],[135.395554,-34.523697],[135.228516,-34.543633],[135.62352,-34.907719],[135.847046,-34.880898],[135.931412,-34.529533],[136.593673706,-33.899089813],[137.167892456,-33.690441131],[137.442260742,-33.152175903],[137.902054,-32.8018],[138.04805,-33.135838],[137.811417,-33.27663],[137.879028319,-33.596782685],[137.530914,-34.001148],[137.457077,-34.889587],[137.008942,-34.896393],[136.85675,-35.287521],[137.424347,-35.097878],[137.637497,-35.168201],[137.857788,-34.771866],[137.885468,-34.514843],[138.087585,-34.131973],[138.262985229,-34.472000122],[138.537628173,-34.748870849],[138.440353393,-35.351062774],[138.093917846,-35.603401184],[138.522354,-35.642967],[138.711487,-35.513428],[139.21196,-35.754559],[139.59079,-36.128601],[139.861465455,-36.688747405],[139.670043945,-36.958217621],[139.828369,-37.304417],[140.267059,-37.709873],[140.375839,-37.897762],[140.661789,-38.061001],[140.99079895,-38.059799194],[141.406723022,-38.369342804],[141.884887696,-38.266292572],[142.146606445,-38.389705658],[142.372207641,-38.34941864],[143.257751,-38.770603],[143.555649,-38.854939],[144.036499024,-38.475776671],[144.435684204,-38.281303406],[144.397949219,-38.073818206],[144.897141,-37.842552],[145.121337891,-38.133396149],[144.894485,-38.491489],[145.231644,-38.409611],[145.271240235,-38.224014281],[145.552444,-38.354565],[145.423691,-38.53648],[145.714005,-38.645142],[145.936889649,-38.897380829],[146.184204101,-38.869506836],[146.420791625,-39.125793458],[146.479125976,-38.793495179],[146.291915893,-38.904281615],[146.188812257,-38.731769562],[146.88353,-38.634445],[147.462555,-38.162434],[147.950012,-37.894691],[148.366196,-37.803947],[149.469711,-37.769531],[149.977295,-37.504589],[150.003403,-37.141514],[149.904129,-36.918694],[150.14711,-36.237579]]],[[[147.329117,-43.015934],[147.488983,-42.828773],[147.81488,-42.888412],[147.962723,-42.668808],[148.013428,-42.239647],[148.283524,-42.034161],[148.320297,-41.621391],[148.270172,-41.207893],[148.338638,-40.994858],[147.975128,-40.739239],[147.661316,-40.825001],[147.398956,-41.008526],[147.02269,-40.981152],[146.366318,-41.174404],[146.1689,-41.150108],[145.258728,-40.805813],[144.692398,-40.663433],[144.616394,-40.933968],[144.683517,-41.234802],[145.263443,-42.143616],[145.252899,-42.522236],[145.500641,-42.978771],[145.961578,-43.294773],[146.06842,-43.556641],[146.552292,-43.512096],[146.863373,-43.632027],[147.329117,-43.015934]]],[[[130.418503,-11.185785],[130.49263,-11.654928],[130.97644,-11.933149],[131.541046,-11.45885],[131.288208,-11.193865],[130.657349,-11.400649],[130.418503,-11.185785]]],[[[137.633148,-35.564274],[136.587433,-35.748856],[136.708069,-36.037483],[137.46347,-36.072464],[137.737839,-35.854298],[138.04422,-35.902855],[138.067795,-35.759785],[137.602478,-35.735886],[137.633148,-35.564274]]],[[[153.259811,-24.697536],[153.030731,-25.175516],[152.951004,-25.551935],[153.011032,-25.762205],[153.357895,-25.008917],[153.259811,-24.697536]]],[[[136.412415,-13.828383],[136.437347,-14.196301],[136.937744,-14.299124],[136.700333,-14.111097],[136.811615,-13.855776],[136.681076,-13.739421],[136.412415,-13.828383]]],[[[147.816727,-39.910976],[148.023926,-40.215965],[148.333878,-40.209534],[148.291138,-39.965118],[147.941833,-39.719547],[147.816727,-39.910976]]],[[[130.348465,-11.335545],[130.150635,-11.489976],[130.118195,-11.827125],[130.498749,-11.829338],[130.348465,-11.335545]]],[[[143.875031,-40.114433],[144.127853,-39.992889],[144.110138,-39.675632],[143.844971,-39.714016],[143.875031,-40.114433]]],[[[113.019112,-25.505728],[112.973793,-25.793781],[113.235237,-26.123503],[113.019112,-25.505728]]],[[[139.577118,-16.399302],[139.160629,-16.610224],[139.313049,-16.730232],[139.577118,-16.399302]]]]},"properties":{"id":"14d7f632-45ca-47be-bbe6-1e8f46c03403","code":"AUS","name":"Australia","abbreviation":"C-AUS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.713896501,46.523197941],[14.525084622,46.422349759],[15.044928171,46.652472602],[15.654891813,46.706565746],[16.000324829,46.680454388],[16.113840435,46.869569682],[16.475166652,46.997389787],[16.446919674,47.406014134],[16.749597917,47.682820257],[17.094339254,47.708666039],[17.160628178,48.008037749],[16.851498404,48.449987858],[16.924345983,48.621355889],[16.46746946,48.809132098],[16.094939897,48.747288846],[15.27795496,48.993056593],[14.99700186,49.015724043],[14.959571746,48.760716498],[14.707355335,48.586049934],[14.053661651,48.607290441],[13.84017735,48.771221552],[13.7265817,48.514094787],[13.515751092,48.591540164],[13.410012307,48.373654518],[12.869480201,48.201261797],[12.753676468,48.087443995],[13.098878033,47.63497621],[13.004363656,47.463922448],[12.732470362,47.680211084],[12.499803947,47.625656643],[12.16300994,47.70174582],[11.633031787,47.59245468],[11.287422711,47.405635416],[10.980255356,47.397505434],[10.886474708,47.537278766],[10.454786787,47.556405837],[10.338881796,47.310740933],[9.96354695,47.535236416],[9.561736197,47.502418292],[9.532011599,47.270304645],[9.607548925,47.061646232],[10.104813924,46.842195451],[10.348499919,46.990232983],[10.472848197,46.856806865],[11.022877157,46.766339508],[11.110455747,46.927683873],[11.627675189,47.013811474],[12.121946009,47.007597392],[12.281117482,46.792312472],[12.690494923,46.657394214],[13.713896501,46.523197941]]]},"properties":{"id":"9232ac8c-a951-4a6e-8092-599980433545","code":"AUT","name":"Austria","abbreviation":"C-AUT","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.547237396,38.87273407],[46.852722169,39.139621734],[47.807823182,39.650070191],[47.990760804,39.696315765],[48.374633789,39.370769501],[48.144172668,39.200191498],[48.357784272,39.040542604],[48.013500214,38.904579163],[48.315654756,38.601352691],[48.632034301,38.402408599],[48.879386902,38.437000275],[48.825252533,38.824790954],[48.949310303,39.161060334],[49.189662934,39.048236847],[49.280376434,39.514598848],[49.478370667,39.98557663],[49.469009399,40.170124055],[49.680221649,40.275428794],[50.331802,40.404396],[50.062662502,40.592899248],[49.543399812,40.6314888],[49.498500823,40.826171875],[49.205043792,41.015556336],[49.095218658,41.331329346],[48.66060257,41.793498993],[48.505107879,41.864120484],[48.414409638,41.626567841],[48.051055909,41.49119568],[47.878814698,41.219219208],[47.535915375,41.207206727],[47.262393951,41.324737549],[46.748703002,41.863056182],[46.418235779,41.907482147],[46.247806548,41.654754639],[46.351867676,41.492645265],[46.721359253,41.286907197],[46.623905182,41.056678771],[46.245433807,41.175765991],[45.94391632,41.180404664],[45.306873322,41.468112946],[45.004055024,41.301422119],[45.193451,41.071743],[45.570034028,40.824512482],[45.356712342,40.668395996],[45.4357872,40.514019012],[45.977215,40.212894],[45.806186676,39.930950165],[46.175865174,39.587974549],[46.563018799,39.567264558],[46.408470154,39.378364564],[46.621616364,39.215484619],[46.547237396,38.87273407]]],[[[44.772602081,39.71364975],[44.820220947,39.625209808],[45.43636322,38.998386383],[46.136863709,38.834842682],[46.000000001,39.296939851],[45.708938599,39.606487274],[45.456829071,39.504371644],[45.081943512,39.785499572],[44.772602081,39.71364975]]]]},"properties":{"id":"707d4ea2-5c42-4092-b48f-a2c85575d12c","code":"AZE","name":"Azerbaijan","abbreviation":"C-AZE","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.758751,24.602083],[-78.018196,25.169027],[-78.22847,25.186251],[-78.184586,24.905416],[-78.461807,24.600695],[-78.037636,24.302639],[-77.715141,24.487364],[-77.758751,24.602083]]],[[[-73.016251,21.335974],[-73.262642,21.135139],[-73.514862,21.186253],[-73.678192,20.94125],[-73.158752,20.967361],[-73.016251,21.335974]]],[[[-77.596802,24.210138],[-77.801804,23.839025],[-77.530693,23.795975],[-77.596802,24.210138]]],[[[-78.802086,26.563749],[-77.980415,26.656528],[-78.581528,26.71764],[-78.802086,26.563749]]],[[[-77.165138,26.497915],[-77.204308,26.14986],[-77.405136,25.997917],[-77.180435,25.857639],[-77.165138,26.497915]]]]},"properties":{"id":"1583b0a1-0256-46ab-b40a-ccbbf1a47552","code":"BHS","name":"Bahamas","abbreviation":"C-BHS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.323799,26.182917],[50.607639,25.851805],[50.624863,26.187082],[50.324081,26.186251],[50.323799,26.182917]]]},"properties":{"id":"7c9c78e5-1555-4f0f-a9f2-ba31552f3b4a","code":"BHR","name":"Bahrain","abbreviation":"C-BHR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[88.929375,22.649809],[88.986068999,22.324126999],[89.202217,22.002501],[89.475281,22.230831],[89.547638,21.961491],[89.835861,21.850941],[90.230003356,22.1902771],[90.197502136,22.323610306],[90.256294251,22.351594925],[90.336112976,22.544183732],[90.582275,22.725403],[90.677444458,22.277025223],[91.4189,22.74806],[91.668342591,22.54360962],[91.916755676,21.862623214],[91.868286001,21.501081],[92.202880859,21.149477005],[92.380973816,21.479867936],[92.673660279,21.291280747],[92.608779907,21.984094619],[92.507926941,22.736080169],[92.376472473,22.928758622],[92.397560119,23.240600585],[92.249412537,23.724306106],[91.942307,23.681808001],[91.975188979,23.482410113],[91.772888184,23.270080567],[91.823081969,23.086977004],[91.620223998,22.938674927],[91.162727356,23.595209122],[91.378021241,24.109500886],[91.592201,24.078833],[91.745044069,24.24659535],[92.096565247,24.375444413],[92.425765991,25.028795242],[92.061836242,25.18711853],[91.63785553,25.122653962],[91.069572448,25.19852066],[90.440979005,25.144626617],[89.831161499,25.296140671],[89.885940551,25.943580628],[89.747596741,26.157444001],[89.542312622,26.004447937],[89.164398193,26.131744385],[88.431236267,26.550157546],[88.446456908,26.365034104],[88.18044281,26.145692826],[88.090324402,25.896469117],[88.547958374,25.518249512],[88.803260803,25.524435044],[88.830413818,25.205453872],[88.443840028,25.194890977],[88.010566712,24.666660309],[88.204414368,24.459466935],[88.740898133,24.254024506],[88.733383178,23.911117553],[88.562156677,23.637184144],[88.912178039,23.234027862],[88.854980469,22.959133148],[88.929375,22.649809]]],[[[90.616287,22.326458],[90.573989999,22.544640001],[90.30921173,22.464353561],[90.273887635,22.360126495],[90.207497,22.3225],[90.237381,22.179741],[90.034203,21.950544],[90.255500793,21.954013824],[90.616287,22.326458]]]]},"properties":{"id":"e32fd734-924e-41a4-b716-5aca2b33f9f2","code":"BGD","name":"Bangladesh","abbreviation":"C-BGD","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.474304199,13.076527597],[-59.41986084,13.150137901],[-59.650138854,13.30819416],[-59.612361908,13.079860688],[-59.474304199,13.076527597]]]},"properties":{"id":"6759b1fd-fc70-4810-a9df-2ba9c9d1301d","code":"BRB","name":"Barbados","abbreviation":"C-BRB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.624755996,51.514190675],[23.677938461,51.646072387],[24.027051925,51.584110261],[24.386892319,51.910644532],[24.995042802,51.91225052],[25.284065247,51.983413697],[26.366628646,51.876594544],[26.826513291,51.771430969],[27.193468093,51.787284852],[27.230190277,51.602363587],[27.833856582,51.640563964],[28.082235335,51.570156097],[28.274139405,51.69776535],[28.825105668,51.542804718],[29.160102844,51.650665283],[29.362110137,51.396415711],[29.72085762,51.529037476],[30.250274658,51.493740082],[30.463741303,51.282413484],[30.657110214,51.337585449],[30.520992279,51.662387849],[30.951120377,52.078479767],[31.235437392,52.048336029],[31.789606095,52.108219148],[31.59456253,52.302452087],[31.515312194,52.689311982],[31.606595994,52.766613007],[31.329481124,53.044277191],[31.641042709,53.23141098],[31.931325913,53.086585999],[32.227340699,53.096294403],[32.741893768,53.332733155],[32.462646485,53.574119569],[32.509155273,53.695682525],[32.122810364,53.809463502],[31.76597786,53.797252655],[31.780056,54.064109802],[31.330057143,54.260890961],[31.213983536,54.650382997],[30.76061058,54.811752319],[31.006025314,55.033226014],[30.93380165,55.634067536],[30.267707825,55.869976044],[29.969619752,55.889705658],[29.480318069,55.704460145],[29.39691162,55.976993561],[29.032892227,56.032539369],[28.729238511,55.966941835],[28.58208847,56.103076934],[28.151191847,56.161064718],[27.664216995,55.930789948],[27.591962814,55.781848907],[27.16709137,55.844951631],[26.63838005,55.663719178],[26.463254929,55.339340211],[26.826379777,55.3168602],[26.682971954,55.159259797],[26.386478423,55.149513246],[26.222475051,54.998104096],[25.85630989,54.924667359],[25.76096344,54.590614319],[25.571098328,54.32313919],[25.226644517,54.259243011],[24.36614418,53.892757415],[24.219413757,53.96680832],[23.792467117,53.895462037],[23.514919001,53.955994],[23.549049378,53.767780304],[23.915153504,53.162281036],[23.931631088,52.708972931],[23.466627121,52.549446106],[23.21557808,52.329654694],[23.640176774,52.085796357],[23.558965683,51.761566162],[23.624755996,51.514190675]]]},"properties":{"id":"9dd19590-d9fe-40ee-bdc8-f86b6f099a4c","code":"BLR","name":"Belarus","abbreviation":"C-BLR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.597444534,50.992469787],[2.634982824,50.812755586],[2.900430442,50.693286895],[3.147109031,50.789905548],[3.286531449,50.527576448],[3.660986186,50.457592011],[3.673676013,50.33493042],[4.025219917,50.357894897],[4.220833778,50.25430298],[4.140979291,49.978805543],[4.686140537,50.004943848],[5.430971622,49.592384338],[5.815077305,49.545166015],[5.746118069,49.838768006],[5.859116077,50.061710358],[6.138388158,50.134075166],[6.375073434,50.313796998],[6.036703586,50.723491668],[5.691102028,50.761138917],[5.834125043,51.168460847],[5.136709213,51.315532684],[4.75214386,51.497524261],[4.221158028,51.37612915],[4.216015817,51.370239257],[3.902096987,51.198947908],[3.360782249,51.367637642],[2.555355549,51.09192276],[2.597444534,50.992469787]]]},"properties":{"id":"b3639c43-44e3-4273-a439-229d8cb7d3e0","code":"BEL","name":"Belgium","abbreviation":"C-BEL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.912636,15.904163211],[-88.544029,16.272638],[-88.218193,16.967638],[-88.300415,17.118473],[-88.288475,17.564028],[-88.105698,18.099028],[-88.102913,18.356806],[-88.316290583,18.488474],[-88.51761409,18.463465209],[-88.857937985,17.924198107],[-89.146888732,17.814586639],[-89.14615631,17.049846649],[-89.21299,15.895202],[-88.912636,15.904163211]]]},"properties":{"id":"304bd2c0-b926-4756-b6af-c09ca4ae3356","code":"BLZ","name":"Belize","abbreviation":"C-BLZ","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.709382057,6.375693798],[2.792602062,7.041276932],[2.675815104,7.89320612],[2.754101038,8.211312294],[2.728413104,8.772684097],[2.780891894,9.0651083],[3.088170052,9.101576806],[3.130999089,9.440149307],[3.356626987,9.825662614],[3.529059887,9.861886979],[3.786003112,10.405379296],[3.840980053,10.704918862],[3.691904068,11.12815857],[3.496037007,11.292149545],[3.605076074,11.696969987],[3.302057982,11.8941288],[3.013609886,12.266388895],[2.79459405,12.418351173],[2.385479927,12.235549927],[2.405400038,11.901610374],[2.305728912,11.674420358],[2.019248008,11.427710534],[1.625131009,11.390871049],[1.440096974,11.473831178],[0.912175531,10.99653698],[0.774549218,10.384950389],[1.364112999,10.012135],[1.421417,9.306945],[1.624506,9.042144],[1.649164,8.490761],[1.641587,6.993990001],[1.578130797,6.685646682],[1.807527,6.286359999],[1.629444,6.236389],[2.709382057,6.375693798]]]},"properties":{"id":"01e1f6a9-a8d0-43e1-b85c-f09fa9d3ddcb","code":"BEN","name":"Benin","abbreviation":"C-BEN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.864166,32.266945],[-64.828888,32.247501],[-64.689163,32.33139],[-64.816948,32.302776],[-64.864166,32.266945]]]},"properties":{"id":"6addfd7c-efb6-4d59-a4c2-d4e5a0a66334","code":"BMU","name":"Bermuda","abbreviation":"C-BMU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[88.919456482,27.327699661],[88.869636535,26.962984086],[89.134277344,26.807836533],[89.378929138,26.862424851],[89.863151551,26.700654983],[90.416481017,26.904701233],[90.693458558,26.77026558],[91.097450256,26.822179795],[91.720634461,26.811922075],[92.102890015,26.867559434],[92.018768311,27.480323791],[91.651710511,27.484342576],[91.598152161,27.859909058],[91.333763123,28.066419602],[91.208480834,27.988225938],[90.805114746,28.071044922],[90.463912964,28.048666],[89.860267638,28.230169296],[89.595100403,28.155784607],[88.977752686,27.487577438],[88.919456482,27.327699661]]]},"properties":{"id":"25a3bc96-5200-4dae-a2ea-7fc962944557","code":"BTN","name":"Bhutan","abbreviation":"C-BTN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.642415671,-22.242894844],[-62.260665159,-21.058500007],[-62.266645605,-20.562743268],[-61.922404907,-20.089239513],[-61.735471105,-19.634178196],[-60.600998482,-19.45593368],[-59.9769183,-19.295172725],[-59.09957038,-19.349433196],[-58.235441178,-19.775484009],[-58.162684861,-20.160596096],[-57.876689911,-19.965881348],[-58.133399963,-19.75784111],[-57.784191132,-19.033510208],[-57.558310155,-18.242056503],[-57.785591125,-17.555549622],[-57.99858167,-17.514904824],[-58.395462036,-17.184459686],[-58.459285344,-16.652812851],[-58.430400848,-16.321298599],[-60.161426021,-16.263271258],[-60.235233306,-15.473531723],[-60.55948639,-15.111411094],[-60.244247436,-15.096813202],[-60.271699193,-14.626809107],[-60.480344189,-14.184560962],[-60.45925192,-13.804129065],[-61.011052255,-13.533012542],[-61.790934682,-13.536953212],[-62.15059327,-13.156011051],[-62.760529937,-13.017384637],[-63.241158696,-12.690587281],[-63.784982992,-12.428946293],[-63.956715292,-12.531071802],[-64.420083675,-12.436552791],[-64.514227294,-12.223264397],[-64.975176948,-12.01872597],[-65.18827838,-11.755368662],[-65.212701117,-11.528896244],[-65.358263495,-11.13131355],[-65.252590533,-10.991827172],[-65.427625114,-10.47545455],[-65.291822361,-10.22368913],[-65.287532739,-9.852728496],[-65.438783188,-9.670922913],[-66.623619763,-9.897011345],[-67.169441414,-10.337140925],[-67.322133893,-10.322699497],[-67.708760469,-10.709274587],[-68.002466731,-10.650083855],[-68.238342286,-10.956472397],[-68.71513751,-11.144829854],[-68.925365344,-11.017932009],[-69.572290111,-10.949385104],[-68.969980785,-11.91249812],[-68.656689167,-12.489146945],[-68.86907566,-12.867147652],[-68.852226841,-13.210676813],[-68.993478122,-13.651170541],[-68.979464007,-13.974804392],[-68.846679746,-14.237351286],[-69.226150512,-14.736579895],[-69.352312565,-14.801012166],[-69.285500317,-15.096910707],[-69.133278641,-15.222435145],[-69.401803,-15.606112],[-69.197731,-16.16449],[-68.959245123,-16.196491272],[-69.04381004,-16.688458262],[-69.641725,-17.286869445],[-69.468683249,-17.498589528],[-69.31293257,-17.908921723],[-69.081219707,-18.091429223],[-69.033063049,-18.629412354],[-68.889647131,-19.043426332],[-68.404887643,-19.416169786],[-68.688861978,-19.748411644],[-68.566246132,-20.050070443],[-68.763484151,-20.078681206],[-68.738742092,-20.456789412],[-68.439097392,-20.640955624],[-68.415715014,-20.941426367],[-68.178367054,-21.30354183],[-68.180564745,-21.604072323],[-67.965161463,-22.05414272],[-67.853363445,-22.557292016],[-67.883150134,-22.83444802],[-67.587988568,-22.906568379],[-67.181492683,-22.814198382],[-67.027275,-22.540883334],[-66.782475,-22.438075],[-66.739288889,-22.238458333],[-66.288490868,-22.085832402],[-66.241263978,-21.788823764],[-65.676173444,-22.111683849],[-65.052511111,-22.083347223],[-64.651743429,-22.189670368],[-64.267625,-22.770130556],[-63.930780939,-21.999327466],[-62.807725491,-22.003895703],[-62.642415671,-22.242894844]]]},"properties":{"id":"7461e14c-3e17-434a-b7f8-dad1c0250864","code":"BOL","name":"Bolivia","abbreviation":"C-BOL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-68.386528,12.311527],[-68.249306,12.024306],[-68.196526,12.220973],[-68.386528,12.311527]]]},"properties":{"id":"c05a439e-e3e8-4ba8-83f6-f99a49e9f931","code":"BES","name":"Bonaire, Sint Eustatius and Saba","abbreviation":"C-BES","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.648450851,42.888294219],[17.801698744,42.892517169],[18.458923007,42.565307821],[18.492286682,42.975170135],[18.678873063,43.037166595],[18.695547104,43.266609192],[18.958541871,43.515575408],[19.185674667,43.53514862],[19.510490417,43.719890595],[19.240442276,44.013515473],[19.612438202,44.023971559],[19.122179031,44.526576996],[19.365951539,44.896987915],[19.03316307,44.870052338],[18.540554047,45.104312898],[17.991212845,45.163642883],[17.178274154,45.15210724],[16.893648147,45.242534637],[16.501817703,45.218250274],[16.327577591,45.013275147],[16.024816513,45.21982193],[15.758016586,45.167304992],[15.819162369,44.738529205],[16.049072265,44.65209961],[16.244707107,44.197971345],[16.713905334,43.874317169],[17.036762238,43.57131195],[17.306247711,43.472480774],[17.346467972,43.267295837],[17.666503907,43.077087403],[17.576017379,42.942398072],[17.648450851,42.888294219]]]},"properties":{"id":"5c506e5a-faee-4aab-b53c-8f4d76970be2","code":"BIH","name":"Bosnia and Herzegovina","abbreviation":"C-BIH","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.000228881,-24.766942978],[20.384170532,-25.034299851],[20.788230896,-25.803110122],[20.82278061,-26.176500321],[20.604450227,-26.520839691],[20.622430802,-26.786249161],[21.134170532,-26.873760224],[21.694839477,-26.861240387],[21.787389756,-26.676059722],[22.052160263,-26.632860183],[22.192789078,-26.395849227],[22.557409286,-26.221759797],[22.863750458,-25.47961998],[23.014129638,-25.29821968],[23.468269348,-25.279470444],[23.90337944,-25.626810073],[24.685869217,-25.823329924],[25.015270232,-25.725570678],[25.334129334,-25.771020888],[25.580879211,-25.638799667],[25.888500213,-24.884290694],[25.858310699,-24.75717926],[26.393280029,-24.636629104],[26.868049622,-24.245109557],[26.971069337,-23.702760696],[27.134050369,-23.536640167],[27.528650284,-23.385269166],[27.599720002,-23.217590331],[28.342639923,-22.573720932],[28.921869277,-22.458379745],[29.036939622,-22.216310502],[29.368310928,-22.197811127],[29.051730088,-22.018145483],[29.075893597,-21.81884297],[28.568254707,-21.63236419],[28.021941118,-21.573519046],[27.68866457,-21.057577654],[27.683849335,-20.490339279],[27.35820961,-20.473520279],[27.23468983,-20.116282495],[26.72580104,-19.937199634],[26.160480498,-19.537670135],[25.826112962,-18.834878076],[25.782484898,-18.622416768],[25.521398886,-18.379168279],[25.237734174,-17.90915827],[25.265507709,-17.78990663],[24.804834366,-17.860858916],[24.575153351,-18.065099717],[24.201080322,-18.016550064],[23.612859726,-18.504049301],[23.296621322,-17.99752426],[22.98841095,-18.018289566],[21.468940734,-18.318029404],[20.998825074,-18.317876816],[21.001741409,-22.003839493],[19.999998093,-22.001777649],[20.000228881,-24.766942978]]]},"properties":{"id":"3a0e0aef-9625-4873-8429-8494368b314f","code":"BWA","name":"Botswana","abbreviation":"C-BWA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.358334,-54.391388],[3.322522,-54.464424],[3.467885,-54.45628],[3.358334,-54.391388]]]},"properties":{"id":"32b0bbd9-838a-46db-8fca-26b7bb8bd476","code":"BVT","name":"Bouvet Island","abbreviation":"C-BVT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-57.645093944,-30.193501761],[-57.203642,-30.285423],[-57.082138,-30.094591],[-56.661922,-30.197669],[-55.989596014,-30.858504928],[-55.9300561,-31.085948999],[-55.578888099,-30.839533899],[-55.2466824,-31.252289999],[-55.0024318,-31.269257799],[-54.8367023,-31.442002601],[-54.5867653,-31.4565633],[-54.4564064,-31.6517073],[-54.080886701,-31.9292828],[-53.849429147,-32.001130134],[-53.542809233,-32.479692961],[-53.09424591,-32.724189758],[-53.484397889,-33.078063965],[-53.53131893,-33.645071055],[-53.369862,-33.744077],[-52.802024041,-33.304912619],[-52.495181234,-32.867226341],[-52.293031035,-32.338318744],[-51.830878234,-31.919157778],[-51.220937466,-31.539408918],[-50.767239345,-31.110111934],[-50.306061095,-30.447115604],[-50.058691652,-29.84992048],[-49.710420656,-29.317146803],[-49.408244575,-28.98487884],[-48.746510677,-28.505077623],[-48.573133318,-27.885972956],[-48.373571688,-27.471578488],[-48.612309143,-27.232148529],[-48.688099445,-26.671169974],[-48.493002284,-26.218393272],[-48.606344076,-26.019602961],[-48.424970424,-25.634557975],[-47.923760624,-25.160517492],[-47.84292227,-24.976604957],[-47.003632747,-24.408957336],[-46.920548435,-24.2673684],[-46.128397417,-23.844086342],[-45.898320373,-23.76535289],[-45.396275849,-23.808126274],[-44.905663436,-23.334017091],[-44.785062842,-23.378034195],[-44.668552646,-23.054168567],[-44.144956264,-23.036039868],[-43.796785539,-22.916540849],[-43.562373013,-23.053156352],[-43.110429696,-22.953649568],[-42.07391171,-22.955523521],[-41.909864021,-22.778781867],[-41.995750037,-22.600623867],[-41.770404428,-22.359697125],[-41.16741523,-22.115829251],[-40.975188822,-21.9410341],[-41.06888923,-21.497579359],[-40.739539016,-20.845565924],[-40.426280799,-20.634230988],[-40.054781733,-19.814831266],[-39.810802381,-19.649612858],[-39.689057294,-19.304929624],[-39.728222387,-18.518274012],[-39.425725882,-17.933147112],[-39.138043704,-17.693288489],[-39.217629654,-17.334622057],[-39.062115333,-16.435783024],[-38.852839294,-15.849354111],[-38.934855462,-15.665390302],[-39.061626425,-14.624985381],[-38.891128845,-13.640530831],[-38.929186439,-13.218358031],[-38.643338711,-13.015313122],[-38.353537713,-12.957058848],[-37.769353531,-12.238366512],[-37.406328428,-11.536589824],[-36.867504964,-10.758052228],[-36.387711163,-10.498630692],[-35.813726073,-9.730833902],[-35.294821962,-9.17133322],[-34.943856225,-8.358564597],[-34.820238515,-7.925668667],[-34.79316128,-7.154560485],[-35.226191353,-5.581045065],[-35.489527922,-5.157047998],[-35.948300005,-5.044355052],[-36.729102552,-5.077184254],[-36.959969516,-4.918634926],[-37.157636256,-4.945371312],[-37.344569099,-4.690384437],[-37.603106682,-4.617299215],[-38.114891794,-4.149142501],[-38.46063248,-3.721207029],[-38.652404674,-3.682156009],[-39.256999743,-3.219521777],[-39.965598295,-2.851354987],[-40.439169455,-2.809254605],[-41.340349561,-2.927439202],[-41.612537884,-2.89649677],[-41.807247502,-2.730040289],[-42.562675645,-2.678419986],[-43.237413117,-2.358689584],[-43.627210474,-2.251233664],[-44.077571174,-2.742621222],[-44.031771361,-2.406280088],[-44.304569017,-2.487506015],[-44.496117507,-3.026581453],[-44.662510578,-3.012940532],[-44.60692285,-2.689780872],[-44.357824639,-2.340184334],[-44.6363315,-1.616559401],[-44.844302925,-1.489064174],[-45.198023675,-1.48842501],[-45.304897596,-1.33641137],[-45.957763063,-1.195137169],[-46.266679574,-0.961282844],[-46.469080189,-1.025289416],[-46.68055555,-0.796272877],[-46.809443306,-0.860981346],[-47.316377741,-0.592182533],[-47.869943193,-0.561225575],[-48.268463391,-0.902927531],[-48.474716129,-0.873902096],[-48.428806726,-0.227166938],[-48.743727379,-0.249922362],[-49.01688845,-0.160232963],[-49.422189245,-0.16844694],[-49.39700902,0.062159081],[-49.699578385,0.1505051],[-49.57316542,0.416555285],[-50.167818885,0.340290841],[-50.036412976,0.534178401],[-50.213510029,0.655974905],[-49.889782433,1.013596962],[-49.920618346,1.68792961],[-50.423725445,1.804464191],[-50.681866793,2.13340279],[-50.954207264,2.837236797],[-51.109308672,3.450626727],[-51.080682499,3.884808557],[-51.216393391,4.14995685],[-51.5678,4.474894094],[-51.605930328,4.236526966],[-51.657772065,4.05079317],[-51.921131133,3.773808003],[-52.330238341,3.063822984],[-52.672119141,2.375355005],[-52.986690522,2.171376944],[-53.460384369,2.331587077],[-53.789031982,2.365223885],[-54.084835053,2.191226005],[-54.332149507,2.163784981],[-54.524669648,2.304801942],[-54.858329773,2.435056925],[-54.972595215,2.604665996],[-55.42848587,2.439435006],[-55.738914489,2.401213885],[-55.946421067,2.531918521],[-56.047626495,2.228108883],[-55.909862517,2.03271699],[-55.994968415,1.831146002],[-56.480251313,1.941472054],[-56.800163269,1.863873958],[-57.081291199,2.01928401],[-57.423114777,1.90612495],[-57.544075013,1.702345014],[-57.769802093,1.719905019],[-58.001270294,1.505056024],[-58.318584443,1.593605041],[-58.507111,1.264407],[-59.15567,1.348349],[-59.744270325,1.846951007],[-59.723751068,2.278232097],[-59.908702999,2.392433001],[-59.981575,2.929233],[-59.798114776,3.356441021],[-59.844989777,3.603478909],[-59.515739441,3.941425085],[-59.725769043,4.192818165],[-59.671257019,4.37655878],[-60.159557342,4.519643783],[-59.976623535,5.034758091],[-60.121932984,5.24393177],[-60.73051803,5.197120977],[-60.587852477,4.965773106],[-60.991333008,4.516063213],[-61.537948608,4.383833886],[-62.134559632,4.091252804],[-62.355457306,4.150284767],[-62.73217392,4.035823821],[-62.984916687,3.609591961],[-63.204929351,3.951251983],[-63.512432098,3.847371101],[-63.850215911,3.949868918],[-63.964107513,3.867922068],[-64.17189026,4.128757954],[-64.560493469,4.10153389],[-64.810523986,4.174582006],[-64.472457886,3.781533958],[-64.185775758,3.559587002],[-64.235229493,3.114319085],[-63.982719421,2.717369079],[-64.056053162,2.497651101],[-63.780818939,2.391247988],[-63.406806946,2.435909988],[-63.397701264,2.14685607],[-64.061889648,1.930709957],[-64.065223694,1.675981998],[-64.397445679,1.526810051],[-64.763854981,1.230741025],[-65.155059815,1.124938964],[-65.44304657,0.689849974],[-65.585578919,1.008911015],[-65.964470003,0.80945348],[-66.318511964,0.755015015],[-66.856750488,1.229928494],[-67.074623107,1.108570457],[-67.092277527,1.464751483],[-67.351478578,1.950751424],[-67.312156678,2.213680267],[-67.750877381,2.018488885],[-67.878501891,1.803259612],[-68.188339233,2.015600205],[-68.186706543,1.730201364],[-69.390670776,1.731145025],[-69.848175049,1.702632667],[-69.846122742,1.092908501],[-69.322151185,1.088041425],[-69.20451355,1.013406396],[-69.107894897,0.645990491],[-69.481140137,0.73527646],[-69.806610108,0.573091447],[-70.040458679,0.565155268],[-70.040336608,-0.105598309],[-69.922966003,-0.325426221],[-69.602767944,-0.506716251],[-69.612365724,-0.762640893],[-69.422439574,-1.020315646],[-69.450973511,-1.553037286],[-69.923286438,-4.190330505],[-69.949440002,-4.228428841],[-70.290817261,-4.161428928],[-70.802276612,-4.183669091],[-70.93385315,-4.380801201],[-71.78704834,-4.482439041],[-72.415100098,-4.900139809],[-72.859657287,-5.137629032],[-73.006256104,-5.730760096],[-73.245590209,-6.143589019],[-73.101905823,-6.402639865],[-73.226615905,-6.587059022],[-73.711921691,-6.842709064],[-73.795677186,-7.11358881],[-73.692649841,-7.313790798],[-73.989059448,-7.535899161],[-73.701927185,-7.760611056],[-73.528968811,-8.350530624],[-73.162261962,-8.707448006],[-72.940460206,-9.096088408],[-73.209396363,-9.413648606],[-72.716049195,-9.412429809],[-72.281906129,-9.542189597],[-72.180335999,-10.000248909],[-71.375862122,-10.00070858],[-70.998168944,-9.818079948],[-70.611862182,-9.456370353],[-70.627861022,-11.003930091],[-70.347877502,-11.067590714],[-69.934013366,-10.922180175],[-69.572290111,-10.949385104],[-68.925365344,-11.017932009],[-68.71513751,-11.144829854],[-68.238342286,-10.956472397],[-68.002466731,-10.650083855],[-67.708760469,-10.709274587],[-67.322133893,-10.322699497],[-67.169441414,-10.337140925],[-66.623619763,-9.897011345],[-65.438783188,-9.670922913],[-65.287532739,-9.852728496],[-65.291822361,-10.22368913],[-65.427625114,-10.47545455],[-65.252590533,-10.991827172],[-65.358263495,-11.13131355],[-65.212701117,-11.528896244],[-65.18827838,-11.755368662],[-64.975176948,-12.01872597],[-64.514227294,-12.223264397],[-64.420083675,-12.436552791],[-63.956715292,-12.531071802],[-63.784982992,-12.428946293],[-63.241158696,-12.690587281],[-62.760529937,-13.017384637],[-62.15059327,-13.156011051],[-61.790934682,-13.536953212],[-61.011052255,-13.533012542],[-60.45925192,-13.804129065],[-60.480344189,-14.184560962],[-60.271699193,-14.626809107],[-60.244247436,-15.096813202],[-60.55948639,-15.111411094],[-60.235233306,-15.473531723],[-60.161426021,-16.263271258],[-58.430400848,-16.321298599],[-58.459285344,-16.652812851],[-58.395462036,-17.184459686],[-57.99858167,-17.514904824],[-57.785591125,-17.555549622],[-57.558310155,-18.242056503],[-57.784191132,-19.033510208],[-58.133399963,-19.75784111],[-57.876689911,-19.965881348],[-58.162684861,-20.160596096],[-57.818119049,-20.981237412],[-57.962818145,-21.549051285],[-57.98022461,-22.0855484],[-56.830467224,-22.297666549],[-56.402675628,-22.074739456],[-56.207736968,-22.278108597],[-55.860996247,-22.276325226],[-55.626670837,-22.6186409],[-55.682674409,-22.980436326],[-55.53881836,-23.16299057],[-55.534599305,-23.610954284],[-55.44090271,-23.909488678],[-55.230278015,-24.008590697],[-54.675334931,-23.8135643],[-54.283622743,-24.08297348],[-54.262443543,-24.374458313],[-54.595642089,-25.592119217],[-54.287284852,-25.559808731],[-53.875339508,-25.64199829],[-53.83657837,-25.965755463],[-53.591835021,-26.264888763],[-53.749443054,-26.648902892],[-53.671756744,-26.893024444],[-53.830710999,-27.156361],[-54.345546722,-27.468130111],[-54.902950287,-27.646493911],[-55.035362244,-27.85518837],[-55.322998047,-27.928085327],[-55.867664337,-28.353826524],[-55.893493653,-28.481349945],[-56.284252166,-28.791032791],[-56.424785614,-29.072883606],[-56.593063354,-29.122995376],[-57.341964722,-30.001224517],[-57.645093944,-30.193501761]]]},"properties":{"id":"de805084-4be9-458e-b991-9f591a06c2d5","code":"BRA","name":"Brazil","abbreviation":"C-BRA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[72.438750999,-7.233750001],[72.455414,-7.265694],[72.490974,-7.294027999],[72.463196,-7.353473001],[72.479308999,-7.383195],[72.439857,-7.429306],[72.420692001,-7.404028],[72.433745999,-7.356805],[72.429306,-7.320694001],[72.419861,-7.306249001],[72.353194999,-7.272916999],[72.426803999,-7.330417],[72.430138,-7.363748999],[72.417915001,-7.409583],[72.438194,-7.442638999],[72.494025999,-7.381529],[72.473473,-7.353751],[72.495697,-7.301527],[72.493195,-7.290416001],[72.464302001,-7.271251],[72.438750999,-7.233750001]]]},"properties":{"id":"2f879f48-ed3b-4870-96eb-96a5b5af9cd6","code":"IOT","name":"British Indian Ocean Territory","abbreviation":"C-IOT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.561806,18.459028],[-64.644302,18.453472],[-64.698471,18.380138],[-64.574303,18.415972],[-64.561806,18.459028]]]},"properties":{"id":"0b6fff18-16a7-480a-9860-d73957bdb5a3","code":"VGB","name":"British Virgin Islands","abbreviation":"C-VGB","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.128051758,4.586944104],[114.31780243,4.275939943],[114.679397584,4.034860134],[114.85179901,4.252079965],[114.794799804,4.746360779],[115.000923342,4.884733303],[114.835281371,4.953610898],[114.515274048,4.704998971],[114.128051758,4.586944104]]],[[[115.038032532,4.793191911],[115.110603333,4.405399799],[115.298309,4.436701],[115.155319,4.911237],[115.038032532,4.793191911]]]]},"properties":{"id":"0378c7e6-0fa8-46e7-ad17-cc027be591d8","code":"BRN","name":"Brunei","abbreviation":"C-BRN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.933700561,41.343158723],[23.622879028,41.375816346],[24.098924638,41.548641204],[24.5240345,41.566539765],[24.604471207,41.429771424],[25.124015808,41.339138032],[25.230846406,41.243373872],[26.118917466,41.349506378],[26.17133522,41.747638702],[26.368787765,41.714229584],[26.619506835,41.963897705],[27.271862029,42.106300353],[27.563875198,41.901424408],[28.034662246,41.98236084],[27.651806,42.450974],[27.734306336,42.709583282],[27.900138855,42.700138092],[27.885694503,43.007637024],[28.08430481,43.367916107],[28.470693588,43.380973816],[28.579860686,43.740417481],[27.99568367,43.843154908],[27.945737839,43.985065461],[27.400905609,44.012645721],[27.272911071,44.126605988],[26.899950027,44.131538392],[26.113164901,43.972503662],[25.781484604,43.710597992],[25.391643524,43.61933136],[25.000005722,43.727603913],[24.499534607,43.761753082],[24.174860001,43.682941436],[23.416744231,43.853130341],[22.868034362,43.838653565],[22.937503814,44.100097656],[22.680921891,44.212676857],[22.404434205,43.99427414],[22.34377861,43.795104981],[22.51262474,43.461688996],[22.734609604,43.370834351],[22.955797196,43.10042572],[22.423133849,42.786884307],[22.499036788,42.38879013],[22.345737457,42.304096222],[22.839433669,42.000568391],[23.0056324,41.70438385],[22.933700561,41.343158723]]]},"properties":{"id":"c4af993a-099f-4f7f-bce3-a1e8ceaf75d2","code":"BGR","name":"Bulgaria","abbreviation":"C-BGR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.405400038,11.901610374],[2.066420078,12.350940704],[2.271229983,12.467830659],[2.160629988,12.687950134],[1.576050043,12.633138657],[1.123366833,12.999508858],[0.997500003,12.999650002],[0.989960015,13.576399803],[0.635519028,13.693430902],[0.398788006,14.027869224],[0.403759987,14.249659539],[0.166250006,14.533438682],[0.229350001,14.989670753],[-0.231750994,15.071439744],[-0.701488019,15.081521034],[-1.087859989,14.790120125],[-1.67490995,14.506890298],[-1.975370049,14.480879784],[-2.10581994,14.150279999],[-2.476469993,14.297860145],[-2.837029934,14.060629844],[-2.871969938,13.655329704],[-3.256294012,13.669851302],[-3.256079912,13.283860207],[-3.532244921,13.171990395],[-3.973803044,13.393791199],[-4.345856189,13.146181106],[-4.230224133,12.937218666],[-4.294475078,12.69923973],[-4.65831089,12.053871156],[-5.156524181,11.9477911],[-5.35412693,11.824850082],[-5.203893185,11.5291996],[-5.272128105,11.234490395],[-5.490749835,11.071919442],[-5.422309875,10.852600098],[-5.518918037,10.433259965],[-5.407209873,10.295559883],[-5.128709793,10.307089806],[-4.972650052,9.907730102],[-4.707960129,9.68799019],[-4.267177104,9.73729229],[-3.708622933,9.942521095],[-3.21431303,9.920919418],[-2.763180018,9.401107789],[-2.687074716,9.491439935],[-2.744601263,9.949250734],[-2.940423865,10.612863705],[-2.833997491,11.004090181],[-0.684064326,10.998641683],[-0.134967872,11.13706899],[0.503931001,11.012744001],[0.912175531,10.99653698],[1.440096974,11.473831178],[1.625131009,11.390871049],[2.019248008,11.427710534],[2.305728912,11.674420358],[2.405400038,11.901610374]]]},"properties":{"id":"48249957-4ea2-49af-a321-d9002aa7a392","code":"BFA","name":"Burkina Faso","abbreviation":"C-BFA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.391475678,-4.445250033],[29.707078934,-4.462446212],[30.043811798,-4.275174141],[30.500318527,-3.517182112],[30.829259872,-3.263623953],[30.811143875,-3.045857906],[30.408998488,-2.858831882],[30.543420792,-2.413010359],[30.408830643,-2.309834957],[30.036838532,-2.353201627],[29.890018464,-2.750910998],[29.370906829,-2.839972734],[29.326025,-2.65336],[29.040174484,-2.743100167],[29.256701,-3.087956],[29.200918,-3.308666],[29.253709792,-3.918102026],[29.391475678,-4.445250033]]]},"properties":{"id":"cfd16738-c431-4fe3-a925-0901ca324cbe","code":"BDI","name":"Burundi","abbreviation":"C-BDI","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-24.977638244,17.06930542],[-25.085971832,17.19708252],[-25.33875084,17.092639924],[-25.299861908,16.906248092],[-24.977638244,17.06930542]]],[[[-23.462360381,14.972083091],[-23.757917404,15.33319378],[-23.774026871,15.074304581],[-23.462360381,14.972083091]]]]},"properties":{"id":"81491f8b-e584-4aff-ac2f-70bf7b2fa1ca","code":"CPV","name":"Cabo Verde","abbreviation":"C-CPV","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.439158228,10.423138713],[104.869073751,10.522200051],[105.098302155,10.721011909],[105.080220543,10.954634273],[105.346457139,10.868015445],[105.779420432,11.030489938],[105.898415874,10.844197791],[106.206101064,10.977754812],[105.875629837,11.287611961],[106.024236022,11.774410384],[106.440304342,11.6691752],[106.411855086,11.973559199],[106.724104774,11.975694743],[107.003350754,12.089350493],[107.155564344,12.27787959],[107.543897177,12.350877199],[107.589547299,12.559506696],[107.495837281,13.027784286],[107.627678766,13.36649583],[107.442549785,13.997592164],[107.338652423,14.127848981],[107.556381204,14.686234709],[107.164894989,14.415776632],[106.838009322,14.294179485],[106.543037842,14.593369493],[106.408975343,14.450810281],[106.026944179,14.345819227],[106.187717334,14.063011295],[105.910776905,13.930400213],[105.556608508,14.160638204],[105.362014285,14.104457227],[105.206786775,14.342509659],[104.805848828,14.43741878],[104.478402602,14.352013321],[104.277360904,14.408219692],[103.881708657,14.338021404],[103.655404711,14.439414871],[103.141920572,14.3263238],[102.52626428,13.564489859],[102.366648594,13.577938287],[102.349405943,13.277356414],[102.485721763,12.977163336],[102.510191085,12.670404413],[102.786861723,12.416207172],[102.704804795,12.179601672],[102.910336698,11.64827416],[103.070408264,11.283478137],[103.098227916,10.916735985],[103.41039827,10.957303166],[103.501023622,11.164731921],[103.713107705,10.851939149],[103.489587031,10.622755287],[103.631934299,10.487363308],[103.866108822,10.618308757],[104.246736157,10.570890599],[104.439158228,10.423138713]]]},"properties":{"id":"0593f89e-4fd0-4ae3-a5bd-8a95331a4bde","code":"KHM","name":"Cambodia","abbreviation":"C-KHM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.52579975,4.734583855],[8.503964424,4.513381959],[8.832584381,4.545902728],[8.977318763,4.102503301],[9.41250515,3.88299799],[9.523568153,4.027849675],[9.635525704,3.55503726],[9.878924369,3.325167895],[9.974259376,3.090297937],[9.821264267,2.34792018],[9.897463798,2.202226878],[10.190143585,2.171736956],[11.334410667,2.172394752],[11.376516343,2.296901227],[11.701069831,2.315644502],[13.087685584,2.236653806],[13.299013137,2.170983554],[14.597784042,2.203109742],[15.048355,1.976952],[15.248477937,2.027805066],[15.748046874,1.919481636],[16.149131774,1.694233536],[16.053611755,2.008360148],[16.189256826,2.224806177],[16.072393418,2.464571238],[16.032058715,2.983955861],[15.792780876,3.108941556],[15.248896949,3.710672085],[15.076349,4.021727],[15.094683648,4.290076255],[14.732311,4.616427],[14.692684173,5.102640152],[14.529488564,5.273755075],[14.630098343,5.509177209],[14.620351791,5.889361859],[14.418822288,6.032466412],[14.739759444,6.250890255],[14.961637496,6.749874115],[15.063464165,6.784061909],[15.245532037,7.267167092],[15.551923752,7.570376873],[15.58684349,7.773245334],[15.108338356,8.656015397],[14.492976188,9.057681084],[14.384911536,9.267045975],[13.982252121,9.644258499],[14.208049774,10.006105424],[14.802422523,9.935675621],[15.536723137,10.098784447],[15.150072098,10.531280518],[15.080502511,10.786525727],[15.058415414,11.395255089],[15.121359826,11.779808999],[14.823895454,12.63351059],[14.588504791,12.744703293],[14.45982933,13.073822022],[14.085529327,13.077386857],[14.224431039,12.361770629],[14.466317176,12.359292985],[14.676218987,12.159849167],[14.614504815,11.512958527],[14.194681167,11.252654076],[13.980623244,11.318759919],[13.708013535,10.972044945],[13.547357559,10.621170043],[13.436149598,10.137202262],[13.247768403,10.035773277],[13.207711219,9.557841301],[12.871006966,9.391368866],[12.898114204,9.11692524],[12.785830497,8.743083],[12.238751411,8.339077949],[12.221256256,8.002602577],[12.031183242,7.726894855],[12.03434372,7.521106719],[11.564294814,6.88794899],[11.423880577,6.530172825],[11.099142075,6.521626472],[10.841154098,6.939635754],[10.597702026,7.077906609],[10.528110504,6.926647186],[10.217097283,6.888836861],[10.153351784,7.038451672],[9.863946915,6.776453495],[9.706345557,6.515554429],[9.467670441,6.456195831],[9.265694619,6.184167861],[8.840985297,5.819804192],[8.920332908,5.564700603],[8.818734169,5.185620785],[8.52579975,4.734583855]]]},"properties":{"id":"52b87202-ced8-4003-844b-7c1d5b5fed3c","code":"CMR","name":"Cameroon","abbreviation":"C-CMR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.757721,49.002533],[-121.955391,49.000046],[-95.15139,48.999950001],[-95.149650789,49.383296893],[-94.825417,49.294743],[-94.535140992,48.702335358],[-93.850509643,48.631637573],[-93.751770019,48.519760133],[-93.25643921,48.642494202],[-92.947242737,48.621395111],[-91.399116515,48.057098388],[-90.839935302,48.245868684],[-90.742241,48.113663],[-90.033508301,48.09634781],[-89.867622,47.998009],[-89.339050292,47.969898224],[-88.689010621,48.241508484],[-88.370910645,48.304248809],[-86.772880555,47.681743622],[-84.843399049,46.887283326],[-84.763771057,46.634880066],[-84.55606842,46.459651948],[-84.129287719,46.531349183],[-83.954797,46.056241],[-83.571136474,46.10256958],[-83.592117,45.818684],[-82.525369359,45.340919612],[-82.122902456,43.588372864],[-82.424347,42.998291],[-82.521339416,42.610420228],[-82.868286134,42.327590943],[-83.095352172,42.284229278],[-83.067810059,41.862613679],[-82.681221008,41.67729187],[-82.407691956,41.67692566],[-81.260551452,42.20552063],[-80.073326112,42.392559052],[-78.936920166,42.831001282],[-79.058082581,43.252819061],[-79.202788827,43.450992751],[-78.681213378,43.633590698],[-76.798332215,43.631408691],[-76.441131592,44.094436646],[-75.307723999,44.840999604],[-74.764564515,45.005191803],[-74.452079772,45.159141542],[-74.189056397,45.27173233],[-74.148918151,45.303440094],[-74.052528382,45.306327819],[-73.89025879,45.348369599],[-73.783218384,45.436214448],[-73.526412963,45.461235048],[-73.492516,45.6931],[-73.172744751,46.101211549],[-72.295951842,46.430850983],[-72.194709778,46.55059433],[-71.859985351,46.678649902],[-71.720741271,46.654571534],[-71.293144226,46.747303009],[-70.715835572,47.108276367],[-70.452774047,47.426055908],[-70.23222351,47.487442017],[-69.905426026,47.769851685],[-69.756287,48.067272],[-69.151115418,48.562591553],[-69.04673,48.750099],[-68.633698,48.945],[-68.578331,49.060001],[-68.190551759,49.099445344],[-68.126366,49.270775],[-67.384162902,49.316112519],[-67.241111756,49.45639038],[-67.173615,49.776112],[-66.933891,49.997501],[-66.534447,50.151112],[-65.271545411,50.30344391],[-64.875,50.260276795],[-64.419998169,50.316352845],[-63.802082,50.302299],[-63.400486,50.200832],[-63.163887,50.286667],[-62.347656,50.278683],[-61.821373,50.190399],[-61.668594,50.097343],[-61.045059,50.226467],[-60.612221,50.201389],[-59.998257,50.246578],[-59.816082,50.43235],[-58.950794,50.823879],[-58.827042,51.06205],[-58.47139,51.302391],[-58.307106,51.260937],[-57.256863,51.498974],[-56.974998,51.420555],[-55.697529,52.094166],[-55.905224,52.332424],[-55.660374,52.443707],[-56.058517,52.589165],[-55.776112,53.121387],[-55.797222,53.334721],[-56.6852,53.725323],[-56.98602295,53.726684571],[-57.278877,53.470665],[-57.399414,53.648926],[-57.119995,53.746387],[-57.213787,53.954605],[-57.497803,54.199524],[-58.169998,54.237221],[-58.39389,54.028351],[-58.854187,53.94812],[-59.591991,53.528969],[-59.865723,53.497925],[-60.071594,53.339905],[-60.095795,53.746933],[-59.58886,53.819397],[-58.61058,54.039875],[-58.067688,54.386475],[-57.704712,54.368286],[-57.379192,54.508656],[-57.457222,54.658611],[-57.721493,54.642632],[-58.120483,54.88269],[-58.560001,54.757221],[-58.841667,54.814999],[-59.002197,55.147278],[-59.811668,55.312798],[-60.461121,55.154999],[-60.330387,55.77702],[-60.93222,55.861946],[-61.589706,56.221699],[-61.65229,56.320839],[-62.081482,56.41272],[-61.694481,56.718899],[-61.480099,57.164059],[-61.875847,57.167778],[-61.806519,57.376282],[-62.185791,57.47052],[-61.901749,57.623386],[-62.321793,58.020336],[-62.528622,58.108562],[-62.645729,58.410858],[-63.137817,58.479492],[-62.845455,58.672672],[-63.154419,59.02948],[-63.448074,59.100582],[-63.397083,59.282787],[-63.727222,59.344723],[-63.94389,59.688332],[-64.173889,59.688889],[-64.125549,59.897285],[-64.377602,60.235935],[-64.802605,60.322399],[-65.118752,60.0625],[-65.227219,59.834999],[-65.539444,59.714722],[-65.519447,59.270557],[-65.722229,59.282288],[-65.741669,58.973881],[-66.08667,58.814445],[-66.378601,58.853065],[-66.810555,58.448612],[-66.956604,58.498718],[-67.578331,58.225834],[-67.904999,58.506943],[-68.281113,58.532501],[-68.394447,58.817223],[-68.632202,58.910889],[-69.386597,58.873108],[-69.805885,58.585632],[-70.027222,58.824165],[-69.680405,58.809723],[-69.440125,58.900696],[-69.343811,59.09668],[-69.430557,59.364532],[-69.625000001,59.294166566],[-69.741508,59.512859],[-69.51886,59.616913],[-69.714478,59.965271],[-69.583855,60.224476],[-69.697395,60.688019],[-69.36302185,60.8203125],[-69.500579833,61.0640831],[-69.90208435,60.799999238],[-70.152084,61.089584],[-70.589584,61.014584],[-71.215103,61.15781],[-71.558334,61.160416],[-71.9151,61.691146999],[-72.237503,61.881248],[-72.599998,61.964584],[-72.60833,62.110416],[-73.095833,62.210415],[-73.6651,62.476563],[-74.393753,62.245834],[-75.34375,62.316666],[-76.11042,62.333332],[-76.92292,62.535416],[-77.5,62.577084],[-78.0401,62.401566],[-78.182816,62.149479],[-77.958336,61.683334],[-77.787498,61.6875],[-77.760414,61.231251],[-77.84375,61.047916],[-78.216667175,60.779167175],[-77.664581,60.789585],[-77.7724,60.38802],[-77.510414,60.231251],[-77.568748,60.039585],[-77.292221,59.80389],[-77.762207,59.703308],[-77.760559,59.386112],[-78.127777,59.214169],[-78.358398,58.910889],[-78.579529,58.898071],[-78.370674,58.612015],[-78.056229,58.375626],[-77.60498,58.23053],[-77.092224,57.940308],[-76.843285,57.663647],[-76.55558,57.080208],[-76.525024,56.466125],[-75.902779,56.121387],[-76.658333,56.165001],[-77.201218,55.611156],[-77.767204284,55.284954072],[-78.316757,55.042301],[-79.042221,54.823353],[-79.552223,54.724724],[-79.482178,54.309746],[-79.059998,54.102779],[-79.071701,53.683163],[-78.941109,53.387222],[-78.912780762,52.915279389],[-78.707222,52.781666],[-78.697777,52.525276],[-78.503334,52.467777],[-78.544998,52.15889],[-78.855743,51.801991],[-79.041687,51.760925],[-78.773826598,51.477527619],[-79.53772,51.541729],[-79.800697,51.15794],[-80.4328,51.361084],[-80.567223,51.704445],[-80.989456,52.014141],[-81.418343,52.145012],[-81.53611,52.44611],[-82.23893,52.926132],[-82.102203,53.267475],[-82.196106,53.523682],[-82.114441,53.775276],[-82.421692,54.34552],[-82.193336,54.797501],[-82.272209,55.048893],[-82.974976,55.22168],[-83.439445,55.209721],[-83.883911,55.293091],[-84.793892,55.235001],[-85.33831,55.377262],[-85.638336,55.553333],[-86.920555,55.920555],[-87.201668,55.935555],[-87.616669,56.094723],[-87.983887,56.474998],[-88.634445,56.685276],[-88.842781,56.855278],[-89.970558,57.009445],[-90.394447,57.17889],[-91.130493,57.251404],[-91.876663,57.072777],[-92.457214,57.043274],[-92.712852,56.925697],[-92.425003,57.357777],[-92.717224,57.783325],[-92.847221,58.13139],[-93.108887,58.476387],[-93.166687,58.722473],[-93.756668,58.795834],[-94.261665,58.791668],[-94.406128,58.705322],[-94.776108,59.020557],[-94.718887,59.384998],[-94.844711,59.971519],[-94.552605,60.52969],[-93.882812,61.534893],[-93.552605,61.65469],[-93.524483,61.885941],[-93.324997,61.877083],[-93.208336,62.174999],[-92.599998,62.272915],[-92.708336,62.477085],[-91.875,62.572918],[-92.518234,62.802605],[-92.11042,62.862499],[-91.410416,62.789585],[-91.032814,62.934898],[-90.70208,62.96875],[-90.762497,63.349998],[-90.987503,63.46875],[-91.370316,63.483856],[-91.78125,63.722916],[-90.814583,63.560417],[-90.224998,63.622917],[-89.810417,63.916668],[-89.824478,64.05677],[-88.75,63.981251],[-88.041664,64.185417],[-87.800003,64.508331],[-87.567184,64.558853],[-86.921349,65.139061],[-87.037498,65.23542],[-87.554169,65.291664],[-88.018234,65.264061],[-89.033333,65.322914],[-89.435417,65.599998],[-90.090103,65.891151],[-89.806252,65.98333],[-88.554687,65.589066],[-87.887497,65.324997],[-87.324997,65.32708],[-86.587502,65.662498],[-86.409897,65.881767],[-85.988022,66.023437],[-85.879684,66.186981],[-86.634895,66.323433],[-86.565102,66.55365],[-85.789581,66.497917],[-85.447395,66.591148],[-85.23333,66.26667],[-84.342186,66.167183],[-84.480728,66.405731],[-83.806252,66.145836],[-83.887497,66.45417],[-84.368752,66.706253],[-83.979164,66.697914],[-83.39167,66.34375],[-82.986984,66.547401],[-82.57708,66.564583],[-81.808334,66.995834],[-81.491669,66.989586],[-81.20417,67.470833],[-82.093231,67.917183],[-82.039581,68.10833],[-82.3349,68.158852],[-82.222916,68.356247],[-81.235939,68.640099],[-81.613022,68.889061],[-82.034897,68.801567],[-82.170311,68.567184],[-82.674484,68.607811],[-82.63958,68.712502],[-82.224998,68.729164],[-81.870834,68.918747],[-81.287498,69.11042],[-81.699997,69.268753],[-82.318748,69.368752],[-82.543747,69.70208],[-83.612503,69.691666],[-84.539581,69.862503],[-85.272919,69.816666],[-85.488022,69.672401],[-85.4375,69.260414],[-85.012497,69.066666],[-85.03125,68.92083],[-84.745834,68.741669],[-85.602081,68.741669],[-85.642189,68.547401],[-86.04583,67.997917],[-86.501564,67.699478],[-86.514061,67.342186],[-86.743752,67.42292],[-87.070831,67.322914],[-87.257812,67.113022],[-87.406769,67.316147],[-88.110939,67.674484],[-88.310417,67.89167],[-88.275002,68.158333],[-87.908333,68.21875],[-87.769272,68.336983],[-88.214584,68.92292],[-89.26667,69.258331],[-89.759895,68.96302],[-89.667183,68.813019],[-89.941147,68.622398],[-89.879166,68.460419],[-90.268753,68.252083],[-90.539063,68.421349],[-90.440102,68.889061],[-90.819267,69.246353],[-90.643753,69.541664],[-91.118752,69.512497],[-91.460419,69.662498],[-91.783852,69.484901],[-92.324997,69.658333],[-92.51667,69.8125],[-91.537498,70.147919],[-91.683853,70.355728],[-91.995316,70.335938],[-92.17083,70.572914],[-92.943748,70.82917],[-92.855728,71.00885],[-93.037498,71.370834],[-93.70417,71.61042],[-93.849998,71.745834],[-94.563019,71.853645],[-94.527084,71.997917],[-95.160416,71.956253],[-95.240105,71.832817],[-95.689583,71.635414],[-95.456253,71.48333],[-95.525002,71.287498],[-95.893753,71.408333],[-96.166145,71.395317],[-96.466148,71.111984],[-96.522919,70.770836],[-96.256248,70.643753],[-96.32708,70.404167],[-96.55365,70.280731],[-96.487503,70.11042],[-96.17292,69.856247],[-95.635414,69.775002],[-94.933334,69.585419],[-94.64167,69.683334],[-94.339584,69.481247],[-93.63958,69.36042],[-94.262497,69.320831],[-94.211983,69.13073],[-94.570831,68.977081],[-94.581253,68.758331],[-94.072914,68.760414],[-94.064064,68.890099],[-93.625,68.966667],[-93.71875,68.618752],[-93.472916,68.574997],[-94.186981,68.378647],[-94.2099,68.259895],[-94.78125,68.01458],[-95.400002,68.068748],[-95.684898,67.745316],[-95.298439,67.549484],[-95.21302,67.233849],[-95.330734,66.971352],[-95.456772,67.220314],[-95.733849,67.3526],[-96.094269,67.221352],[-96.189064,67.807816],[-95.910416,68.26667],[-96.502602,68.175522],[-96.902603,68.266151],[-97.32917,68.51667],[-97.810417,68.554169],[-98.17083,68.306252],[-98.479164,68.427086],[-98.643234,68.335937],[-98.043747,67.82917],[-98.035416,67.929169],[-97.583336,67.979164],[-97.085938,67.810936],[-97.539581,67.599998],[-98.091667,67.775002],[-98.60833,68.10833],[-98.635933,67.805733],[-98.907814,67.716148],[-99.758331,67.833336],[-100.6875,67.849998],[-100.925522,67.754684],[-101.458336,67.691666],[-102.841148,67.839066],[-103.339584,68.004166],[-103.308853,68.114067],[-104.268753,67.9375],[-104.684898,68.235939],[-105.491669,68.427086],[-105.308853,68.515099],[-105.433853,68.731766],[-105.78125,68.883331],[-106.206253,68.941666],[-106.650002,68.816666],[-107.677086,68.654167],[-108.357811,68.601563],[-108.727081,68.23542],[-108.410416,68.308334],[-108.211983,68.16198],[-107.770836,68.183334],[-107.79792,68.347916],[-107.027084,68.331253],[-106.252083,68.602081],[-105.887497,68.64167],[-105.743752,68.410416],[-106.42292,68.339584],[-106.708855,68.143234],[-107.364586,68.043747],[-107.833336,68.10833],[-108.028648,67.746353],[-107.567184,67.503647],[-107.51667,67.20417],[-107.268753,67.116669],[-107.747398,67.006767],[-107.520836,66.552086],[-108.302086,66.989586],[-107.860939,67.138016],[-108.012497,67.289581],[-108.6875,67.620834],[-108.769272,67.358849],[-109.029167,67.724998],[-109.7099,67.721352],[-110.029167,68.008331],[-110.970833,67.770836],[-111.793747,67.760414],[-112.4375,67.679169],[-113.852081,67.695831],[-114.720833,67.820831],[-114.991669,67.791664],[-115.46875,67.931252],[-115.191666,67.979164],[-115.206253,68.189583],[-114.870834,68.150002],[-114.443748,68.26458],[-114.116669,68.23542],[-113.947395,68.377602],[-114.175522,68.564064],[-114.973434,68.867188],[-115.770836,69],[-116.193748,68.991669],[-115.974998,68.806252],[-117.152084,68.897919],[-117.977081,69.01458],[-118.590103,69.205734],[-119.195831,69.29792],[-119.949997,69.34375],[-120.356247,69.425003],[-120.9375,69.664581],[-121.408333,69.775002],[-122.34375,69.824997],[-123.134895,69.765099],[-123.125519,69.546349],[-123.710419,69.333336],[-124.464584,69.36042],[-124.275002,69.552086],[-124.507812,69.715103],[-124.414581,70.143753],[-124.835937,70.003647],[-124.992187,69.820313],[-125.245834,69.756248],[-125.318748,69.375],[-125.510414,69.318748],[-125.910416,69.385414],[-126.699478,69.735939],[-127.060417,70.154167],[-127.319267,70.322395],[-128.00209,70.5625],[-128.211975,70.389061],[-127.65625,70.195831],[-128.349487,70.120316],[-128.274994,69.96875],[-128.632813,69.857811],[-129.016144,69.625519],[-129.179169,69.833336],[-129.59375,69.810417],[-130.335419,69.683334],[-130.623428,69.419266],[-130.90834,69.345833],[-131.235413,69.522919],[-132.1026,69.200516],[-132.116669,69.474998],[-131.048431,69.618233],[-130.956253,69.541664],[-130.5849,69.749481],[-129.463013,70.027603],[-129.852081,70.143753],[-130.21875,70.039581],[-130.612503,70.116669],[-130.933334,70.060417],[-131.094269,69.881767],[-131.329163,69.939583],[-131.983337,69.70417],[-132.487503,69.60833],[-132.954163,69.625],[-132.948441,69.433853],[-134.083328,69.306252],[-133.808334,69.46875],[-134.444275,69.594269],[-134.828644,69.456772],[-135.058334,69.466667],[-135.27916,69.210419],[-135.537506,69.310417],[-135.581253,69.120834],[-135.910934,69.239067],[-135.929169,69.074997],[-135.482819,68.94323],[-135.21875,68.533333],[-135.797913,68.70208],[-135.993744,68.82917],[-136.560928,68.829689],[-137.204163,68.927086],[-138.5,69.25],[-139.152084,69.502083],[-139.504166,69.497917],[-139.920837,69.61042],[-140.391663,69.587502],[-141.003036,69.646156],[-141.001572,60.305069],[-140.52034,60.219059],[-140.447968,60.307964],[-139.974075,60.184513],[-139.680069,60.33572],[-139.052078,60.353725],[-139.177017,60.082863],[-138.70578003,59.906238555],[-138.609207152,59.760002137],[-137.607437133,59.243480683],[-137.451507568,58.908535003],[-136.457763672,59.281421662],[-136.353545998,59.599884],[-135.47958374,59.798099518],[-135.028885,59.563640668],[-134.959777833,59.281040191],[-134.482727049,59.130969999],[-134.257995605,58.860870362],[-133.841049195,58.729854583],[-133.37997836,58.431814233],[-133.171951,58.153831],[-132.247803041,57.21112096],[-132.044800001,57.045104999],[-132.123107881,56.873901359],[-131.873108115,56.80627403],[-131.835388087,56.599121099],[-131.581298827,56.612304688],[-131.086975,56.406128],[-130.781799,56.367126],[-130.425476,56.141724],[-130.105408,56.122681],[-130.01001,55.909119],[-130.138763,55.752674],[-129.943909,55.288086],[-130.167068,55.080257],[-130.228882,54.716389],[-130.370239,54.680008],[-130.485718,54.363098],[-130.128616,54.148239],[-130.073181,53.891113],[-129.282654,53.362682],[-129.246109,53.616943],[-129.05249,53.76947],[-128.808228,53.770508],[-128.975311,53.494747],[-128.881592,53.300484],[-128.60556,53.161667],[-128.430557,52.814167],[-128.242294,52.798866],[-128.126129,52.891396],[-128.136108,52.712524],[-128.296112,52.255833],[-128.040741,52.331188],[-127.818138,52.249527],[-127.485283,52.340389],[-127.237778,52.51889],[-127.182289,52.29361],[-127.606125,52.121864],[-127.887787,51.885674],[-127.796112,51.52861],[-127.518028,51.520958],[-127.772781,51.320278],[-127.670914,51.092045],[-127.073334,50.839169],[-126.862946,50.957863],[-126.476311,50.813236],[-126.167557,50.846016],[-126.269287,50.507469],[-125.703461,50.422043],[-125.33667,50.470554],[-125.053337,50.315277],[-124.590881,50.247746],[-124.752075,49.963352],[-124.396591,49.765881],[-124.034325,49.741806],[-123.965279,49.509445],[-123.560325623,49.396697998],[-123.261108399,49.526264192],[-123.2005,49.134888],[-122.877533,49.22456],[-122.126328,49.178478],[-122.332519531,49.106079102],[-122.883506775,49.212554932],[-123.091667,49.003334],[-123.035355,49.00359],[-122.757721,49.002533]]],[[[-84.818748,73.085419],[-85.412498,73.13958],[-85.699478,72.74115],[-85.53125,72.470833],[-85.008331,72.404167],[-84.977081,72.252083],[-85.460419,72.26667],[-85.537498,72.060417],[-85.9375,71.972916],[-85.535416,71.88958],[-85.305733,71.68177],[-84.668747,71.585419],[-84.846352,71.169266],[-85.737503,71.145836],[-86.508331,70.979164],[-87.214584,71.002083],[-87.569267,70.933853],[-88.26667,70.9375],[-88.508331,71.035416],[-89.222916,71.01667],[-89.35833,70.822914],[-88.917183,70.645317],[-88.729164,70.48542],[-87.73542,70.335419],[-86.991669,70.289581],[-86.591667,70.362503],[-86.529167,70.229164],[-85.758331,70],[-84.939583,70.066666],[-84.64167,70.006248],[-83.637497,69.958336],[-83.070831,70.01667],[-82.675003,69.814583],[-82.131767,69.794266],[-81.722916,69.949997],[-81.456253,69.931252],[-80.921349,69.726563],[-80.750519,69.764061],[-81.269272,70.033852],[-81.065102,70.094269],[-80.302086,69.987503],[-79.935417,70.022919],[-79.75573,69.877602],[-78.831772,69.895317],[-78.746353,70.172401],[-79.01667,70.345833],[-79.236984,70.317184],[-79.582817,70.432816],[-79.058334,70.472916],[-78.70208,70.40625],[-78.393234,70.21302],[-77.783852,70.257813],[-77.643753,70.164581],[-77.63073,69.748436],[-77.481247,69.868752],[-76.933334,69.808334],[-77.191147,69.646355],[-76.653648,69.55677],[-75.583855,69.234901],[-75.581253,69.03125],[-75.92292,68.85833],[-76.010414,68.789581],[-76.243752,68.881248],[-76.405731,68.86927],[-76.597916,68.677086],[-76.256248,68.710419],[-76.160416,68.787498],[-76.012497,68.777084],[-75.949997,68.820831],[-75.581253,68.885414],[-75.460419,69.025002],[-75.125,68.89167],[-75.050003,69.01667],[-74.625519,69.021355],[-74.814636,68.781265],[-74.185417,68.51667],[-73.89167,68.560417],[-73.802086,68.320831],[-73.000519,68.239067],[-72.84375,67.845833],[-72.565102,67.740105],[-72.368233,67.319267],[-72.35833,67.102081],[-72.822914,67.037498],[-72.987503,66.741669],[-72.585419,66.6875],[-71.793747,66.683334],[-71.383331,66.625],[-70.989586,67.01667],[-70.550003,66.756248],[-69.976562,66.704689],[-69.410416,66.537498],[-69.957817,66.371353],[-69.3526,66.3974],[-69.510933,66.194267],[-69.854164,66.26667],[-70.322914,66.158333],[-70.439064,66.247398],[-70.833336,66.162498],[-71.177086,65.939583],[-71.293747,66.03125],[-71.09375,66.322914],[-71.308334,66.522919],[-72.152084,66.677086],[-73.203651,66.701561],[-73.96302,66.348434],[-74.468231,66.168228],[-74.018753,65.833336],[-73.702599,65.745316],[-73.548439,65.481766],[-74.14167,65.54583],[-74.632813,65.323433],[-75.108849,65.393234],[-75.115105,65.27552],[-75.904167,65.256248],[-76.806252,65.431252],[-77.337502,65.474998],[-77.641151,65.140106],[-78.139061,64.961983],[-78.177086,64.570831],[-77.868233,64.356766],[-77.497917,64.354164],[-76.650002,64.189583],[-75.73542,64.470833],[-75.800003,64.616669],[-75.28698,64.467186],[-74.49427,64.372398],[-74.368752,64.568748],[-74.041664,64.71875],[-73.9599,64.473434],[-73.662498,64.5],[-73.504684,64.3526],[-72.885414,64.179169],[-72.95417,64.0625],[-72.599998,63.868752],[-71.543747,63.568748],[-71.622917,63.408333],[-71.925003,63.441666],[-71.622917,63.139584],[-71.111984,62.977604],[-70.935417,63.002083],[-70.160416,62.743752],[-69.60833,62.739582],[-69.418747,62.545834],[-68.589584,62.256248],[-68.043747,62.220833],[-67.18177,62.100521],[-66.279167,61.864582],[-65.95208,61.875],[-66.20208,62.347916],[-66.50573,62.430729],[-66.74427,62.668228],[-67.535416,63.037498],[-68.1651,63.226563],[-68.749481,63.550522],[-68.929169,63.764584],[-68.456253052,63.731250762],[-67.92083,63.529167],[-67.675003,63.658333],[-67.497398,63.485939],[-66.643753,63.033333],[-66.058334,62.941666],[-65.841148,63.034897],[-65.541145,62.802605],[-65.285416,62.839584],[-65.197914,62.566666],[-64.662498,62.349998],[-64.358849,62.516144],[-64.831253,62.537498],[-65.179169,62.904167],[-64.806252,62.831249],[-64.61042,62.897915],[-64.887497,63.177082],[-64.9375,63.368752],[-64.48542,63.258335],[-64.458855,63.429688],[-64.074997,63.279167],[-64.433334,63.775002],[-64.699997,64.018753],[-65.060417,63.991665],[-65.191666,64.293747],[-65.054687,64.472397],[-65.533852,64.617187],[-65.565102,64.761978],[-66.80677,65.05677],[-67.072914,65.239586],[-67.056252,65.464584],[-67.265099,65.643234],[-67.745834,65.635414],[-68.166145,65.855728],[-68.166664,66.035416],[-67.802086,65.877083],[-67.14167,65.92083],[-67.15625,66.039581],[-67.716148,66.229683],[-67.867188,66.451561],[-67.410416,66.293747],[-67.10833,66.26667],[-67.150002,66.48542],[-66.816666,66.456253],[-66.231247,66.23542],[-65.949478,65.971352],[-64.912498,66.002083],[-65.347916,65.912498],[-65.4599,65.677605],[-65.14167,65.535416],[-65.068748,65.370834],[-64.518753,65.106247],[-64.439064,65.252602],[-64.14167,65.04792],[-63.585415,64.88958],[-63.319271,65.214066],[-63.495834,65.474998],[-63.391144,65.751564],[-62.791668,65.520836],[-62.600521,65.768234],[-62.297916,65.793747],[-62.508335,65.989586],[-61.969269,66.004684],[-62.315102,66.297401],[-62.197918,66.404167],[-61.885418,66.277084],[-61.525524,66.333855],[-61.605728,66.542183],[-61.285934,66.649483],[-61.645832,66.84375],[-61.949478,66.88073],[-62.041668,67.012497],[-62.422394,66.860939],[-62.987499,67.0625],[-63.147915,67.331253],[-63.450001,67.227081],[-64.560936,67.152603],[-64.279167,67.302086],[-64.022919,67.3125],[-64.106247,67.614586],[-64.552086,67.82917],[-65.029167,67.785416],[-65.068748,68.04583],[-65.402084,67.92083],[-65.650002,67.997917],[-65.833336,67.831253],[-66.259895,67.964066],[-66.781769,68.245316],[-67.239586,68.362503],[-67.136978,68.482811],[-67.716667,68.558334],[-68.127083,68.533333],[-68.224998,68.714584],[-69.34375,68.816666],[-69.333336,68.883331],[-68.635933,68.788017],[-68.375,68.92083],[-67.762497,69.010414],[-68.95417,69.356247],[-68.17292,69.316666],[-67.65625,69.175003],[-67.131248,69.195831],[-66.76667,69.143753],[-66.688019,69.282814],[-67.289062,69.47448],[-67.977081,69.458336],[-68.820831,69.658333],[-68.3125,69.631248],[-68.099998,69.76667],[-67.150002,69.745834],[-67.234901,69.970314],[-67.462502,70.147919],[-68.050522,70.324478],[-68.23542,70.102081],[-68.712502,69.9375],[-68.677086,70.210419],[-69.089584,70.17292],[-69.387497,70.260414],[-68.509895,70.377602],[-68.439583,70.602081],[-69.445831,70.793747],[-70.096352,70.606766],[-69.897919,70.877083],[-70.258331,70.745834],[-70.787498,70.654167],[-70.554169,70.958336],[-70.79583,71.120834],[-71.203651,71.009895],[-71.314583,70.881248],[-72.249481,70.730728],[-72.339584,70.877083],[-72.089584,71.083336],[-71.48542,71.0625],[-71.152603,71.270317],[-71.474998,71.470833],[-72.539581,71.660416],[-72.935936,71.308853],[-73.345833,71.345833],[-73.664581,71.59375],[-74.11042,71.21875],[-73.977081,71.533333],[-73.712502,71.775002],[-74.283333,71.724998],[-74.737503,71.527084],[-74.502602,71.826561],[-74.1651,71.865105],[-74.220833,72.064583],[-75.066666,72.112503],[-74.96875,72.277084],[-75.252083,72.510414],[-75.79583,72.585419],[-76.477081,72.612503],[-76.727081,72.71875],[-77.287498,72.775002],[-78.2099,72.6474],[-78.543747,72.435417],[-77.875519,72.295311],[-78.76458,72.32917],[-78.905731,72.00885],[-79.072914,72.324997],[-79.752083,72.497917],[-80.176567,72.332817],[-80.319267,72.069267],[-80.747917,71.98333],[-81.004166,72.097916],[-80.508331,72.375],[-80.756248,72.525002],[-80.2276,72.731766],[-80.652603,72.995316],[-80.57135,73.148437],[-81.168228,73.254684],[-81.294266,73.59948],[-81.558334,73.722916],[-82.849998,73.73542],[-83.035416,73.643753],[-83.654167,73.589584],[-85.120834,73.314583],[-85.174484,73.229683],[-84.227081,73.050003],[-84.818748,73.085419]]],[[[-82.462502,76.397919],[-82.095833,76.51458],[-81.70417,76.466667],[-81.308853,76.506767],[-80.79583,76.427086],[-81.05365,76.131767],[-79.625,76.310417],[-79.339584,76.304169],[-78.625,76.57917],[-78.45208,76.449997],[-77.792183,76.671349],[-77.820831,76.89167],[-78.199997,77.033333],[-78.631248,76.933334],[-79.404167,76.931252],[-79.320831,77.216667],[-79.927086,77.210419],[-80.29583,77.070831],[-80.3125,77.195831],[-81.122917,77.275002],[-81.79792,77.15625],[-82.193748,77.29583],[-81.379166,77.304169],[-81.789581,77.435417],[-81.668747,77.537498],[-80.754166,77.32917],[-80.054169,77.272919],[-79.17292,77.287498],[-78.291664,77.447914],[-77.712502,77.635414],[-77.302086,77.625],[-76.720833,77.714584],[-76.720833,77.935417],[-76.223434,78.024483],[-75.902084,77.95417],[-75.595833,78.127083],[-76.743752,78.17083],[-76.137497,78.241669],[-75.654167,78.197914],[-75.10833,78.368752],[-75.824997,78.497917],[-75.012497,78.533333],[-74.800003,78.631248],[-74.783333,78.82708],[-75.285416,78.88958],[-76.291664,78.866669],[-75.991669,78.995834],[-76.57708,79.018753],[-77.625,78.96875],[-77.810417,79.037498],[-76.893753,79.087502],[-76.67083,79.150002],[-78.306252,79.175003],[-77.839584,79.206253],[-76.087502,79.199997],[-75.558334,79.0625],[-74.556252,79.012497],[-74.566666,79.231247],[-76.004166,79.231247],[-76.120834,79.275002],[-77.272919,79.258331],[-77.122917,79.443748],[-76.941666,79.356247],[-76.085419,79.32917],[-75.970833,79.416664],[-75.29792,79.381248],[-74.043747,79.433334],[-73.947914,79.54792],[-73.175003,79.51667],[-73.34375,79.724998],[-73.560417,79.772919],[-74.729164,79.775002],[-74.778648,79.843231],[-73.956253,79.875],[-73.849998,79.816666],[-73.14167,79.810417],[-72.935417,79.70208],[-72.287498,79.654167],[-71.112503,79.779167],[-70.458336,80.091667],[-70.804169,80.129166],[-71.518753,80.0625],[-72.14167,80.058334],[-70.731247,80.195831],[-70.181252,80.181252],[-69.762497,80.34375],[-69.36042,80.393753],[-69.206772,80.503647],[-68.653648,80.6651],[-67.818748,80.841667],[-66.772919,81.002083],[-65.981247,81.229164],[-65.837502,81.214584],[-64.708336,81.364586],[-64.45417,81.543747],[-65.089584,81.529167],[-67.377083,81.36042],[-68.966667,81.21875],[-69.48542,81.208336],[-66.606247,81.512497],[-67.052086,81.5625],[-68.535416,81.508331],[-67.787498,81.587502],[-65.849998,81.625],[-65.654167,81.693748],[-64.849998,81.75],[-64.412498,81.708336],[-64.099998,81.78125],[-63.066666,81.89167],[-62.164585,82.029167],[-62.045834,82.129166],[-61.21875,82.212502],[-61.114582,82.366669],[-61.510418,82.472916],[-62.243752,82.529167],[-62.945835,82.510414],[-63.716667,82.712502],[-63.583332,82.833336],[-64.293747,82.785416],[-64.660934,82.895317],[-65.21875,82.885414],[-65.381248,82.783333],[-65.67292,82.849998],[-67.460419,82.647919],[-68.324997,82.6875],[-67.002083,82.789581],[-66.39167,82.88958],[-66.960419,82.95417],[-68.17083,82.945831],[-68.989586,83.022919],[-69.602081,82.987503],[-69.908333,83.11042],[-70.931252,83.091667],[-71.404167,83.01458],[-71.629166,83.091667],[-72.322914,83.09375],[-73.572914,82.943748],[-73.152084,82.802086],[-72.35833,82.714584],[-72.335419,82.535416],[-72.675003,82.5],[-72.625,82.699997],[-73.772919,82.849998],[-74.418747,83.027084],[-75.243752,83.018753],[-76.081253,83.054169],[-77.375,83.006248],[-76.660416,82.879166],[-76.206253,82.689583],[-76.552086,82.664581],[-77.091667,82.85833],[-77.76458,82.925003],[-77.98542,82.847916],[-78.502083,82.835419],[-78.525002,82.925003],[-79.556252,82.887497],[-79.925003,82.708336],[-80.572914,82.689583],[-80.787498,82.629166],[-80.333336,82.48333],[-80.79792,82.487503],[-81.145836,82.595833],[-81.583336,82.487503],[-82.352081,82.502083],[-82.379166,82.322914],[-81.291664,82.164581],[-80.631248,82.147919],[-80.502083,82.043747],[-81.164581,81.974998],[-81.252083,82.089584],[-82.150002,82.175003],[-82.581253,82.279167],[-82.956253,82.275002],[-82.6875,82.068748],[-83.010414,82.050003],[-83.654167,82.349998],[-84.554169,82.387497],[-84.581253,82.270836],[-84.939583,82.260414],[-85.533333,82.416664],[-85.34375,82.224998],[-86.79583,82.220833],[-86.520836,82.11042],[-85.6875,82.04583],[-85.397919,81.870834],[-86.26458,82.043747],[-86.854164,82.050003],[-87.106247,81.95208],[-87.364586,82.068748],[-88.04583,82.102081],[-88.939583,82.01667],[-89.447914,81.875],[-89.61042,81.908333],[-90.589584,81.877083],[-91.150002,81.754166],[-91.633331,81.73333],[-91.870834,81.60833],[-90.927086,81.552086],[-90.690102,81.660934],[-89.768753,81.602081],[-90.775002,81.460419],[-90.418747,81.36042],[-88.722916,81.54583],[-89.864586,81.300003],[-90.291145,81.170311],[-90.11042,81.043747],[-89.693748,81.004166],[-88.035416,81.064583],[-87.431252,81.058334],[-86.314583,81.125],[-86.018753,81.206253],[-84.714584,81.314583],[-85.95417,81.081253],[-86.695831,81],[-87.929169,81.004166],[-88.981247,80.962502],[-89.300003,80.852081],[-88.229164,80.685417],[-87.216667,80.622917],[-87.05365,80.708855],[-86.164581,80.956253],[-85.647919,81.043747],[-83.833336,81.099998],[-82.82917,81.162498],[-82.71875,81.129166],[-84.868752,81.027084],[-85.697914,80.964584],[-86.522919,80.712502],[-86.683334,80.587502],[-86.070831,80.527084],[-84.552086,80.508331],[-83.89167,80.529167],[-83.560417,80.745834],[-83.072914,80.645836],[-83.11042,80.537498],[-81.57917,80.597916],[-80.208336,80.737503],[-79.489586,80.841667],[-79.181252,80.98333],[-79.414581,81.189583],[-78.845833,81.095833],[-78.164581,81.29792],[-76.92083,81.395836],[-78.004166,81.254166],[-78.729164,81.043747],[-78.92292,80.847916],[-77.54792,80.910416],[-76.685417,80.885414],[-78.208336,80.804169],[-79.316666,80.708336],[-79.987503,80.606247],[-79.102081,80.612503],[-78.339584,80.570831],[-80.252083,80.53125],[-80.45208,80.462502],[-83.20417,80.32917],[-82.304169,80.04792],[-81.65625,79.912498],[-81.456253,79.712502],[-80.949478,79.667183],[-79.86042,79.650002],[-81.050003,79.581253],[-81.977081,79.706253],[-82.083855,79.848434],[-83.543747,80.210419],[-84.087502,80.272919],[-85.347916,80.272919],[-85.720833,80.32708],[-86.479164,80.308334],[-86.641151,80.124481],[-86.410416,79.966667],[-86.484901,79.794266],[-85.050003,79.622917],[-84.849998,79.474998],[-84.483849,79.409897],[-84.316666,79.191666],[-84.685417,79.01667],[-84.15625,78.960419],[-82.104164,78.912498],[-81.841667,79.018753],[-81.714584,78.86042],[-83.210419,78.802086],[-84.591667,78.852081],[-85.241669,78.914581],[-85.59375,78.849998],[-86.660416,78.789581],[-86.868752,78.643753],[-87.487503,78.439583],[-87.518753,78.129166],[-86.689583,78.118752],[-86.464584,78.220833],[-86.26667,78.068748],[-85.404167,78.11042],[-84.79792,78.34375],[-85.120834,78.054169],[-85.658333,77.95208],[-85.229164,77.652084],[-84.775002,77.522919],[-83.95208,77.5],[-83.46875,77.587502],[-83.125,77.793747],[-82.533852,77.924484],[-83.35833,77.520836],[-83.747917,77.412498],[-84.554169,77.402084],[-84.76458,77.320831],[-85.416664,77.387497],[-85.71302,77.4776],[-86.197914,77.79583],[-86.824997,77.885414],[-87.331253,77.895836],[-88.125,77.822914],[-88.191666,77.631248],[-87.691666,77.537498],[-87.720833,77.36042],[-87.09375,77.345833],[-87.15625,77.212502],[-87.65625,77.14167],[-88.410416,77.120834],[-88.76458,76.993752],[-89.522919,76.849998],[-89.441666,76.654167],[-89.65625,76.566666],[-88.900002,76.404167],[-88.527084,76.729164],[-88.404167,76.393753],[-87.76458,76.35833],[-87.433334,76.45417],[-85.73333,76.349998],[-85.241669,76.277084],[-84.427086,76.300003],[-84.20208,76.45208],[-84.189583,76.629166],[-83.6875,76.42083],[-82.462502,76.397919]]],[[[-117.677086,70.645836],[-116.697914,70.606247],[-116.106766,70.634895],[-116.050003,70.543747],[-114.48542,70.643753],[-113.947914,70.720833],[-113.181252,70.645836],[-112.61042,70.520836],[-112.150002,70.512497],[-111.980728,70.388016],[-112.522919,70.197914],[-113.238022,70.280731],[-114.51667,70.322914],[-115.958336,70.231247],[-117.114586,70.099998],[-117.364067,70.034897],[-117.19323,69.74427],[-116.560936,69.547401],[-116.602081,69.45417],[-115.943748,69.29583],[-115.17292,69.247917],[-114.179169,69.28125],[-113.679169,69.193748],[-113.544266,69.020317],[-113.657814,68.815102],[-113.245834,68.464584],[-111.520836,68.552086],[-110.956253,68.552086],[-110.54792,68.629166],[-109.635414,68.643753],[-108.902084,68.754166],[-108.502602,68.898438],[-107.491669,68.98333],[-106.910934,69.232811],[-106.964066,69.354683],[-106.560417,69.497917],[-106.304687,69.399483],[-106.379166,69.177086],[-105.527603,69.153648],[-104.920311,69.033852],[-105.141151,68.904686],[-104.529167,68.862503],[-104.439583,68.947914],[-104.04583,68.854164],[-103.004166,68.800003],[-102.449997,68.875],[-102.382813,68.964066],[-101.800003,68.995834],[-101.731766,69.185936],[-101.989067,69.254684],[-102.073433,69.49115],[-102.410934,69.499481],[-102.8125,69.400002],[-103.017189,69.256767],[-103.054687,69.529686],[-102.502602,69.560936],[-102.379166,69.831253],[-102.033333,69.895836],[-101.897919,69.73542],[-101.445312,69.819267],[-101.23333,69.664581],[-100.917183,69.691147],[-100.868752,69.885414],[-100.979683,70.191147],[-101.79583,70.097916],[-102.033333,70.13958],[-102.193748,70.377083],[-102.67292,70.504166],[-103.537498,70.585419],[-104.037498,70.900002],[-104.552086,71.081253],[-104.26458,71.356247],[-104.44635,71.725517],[-104.712502,71.816666],[-105.268753,72.45417],[-105.26667,72.679169],[-105.42865,72.891151],[-105.675003,72.910416],[-106.875,73.3125],[-107.050003,73.17083],[-107.583336,73.320831],[-108.010414,73.349998],[-108.052086,72.724998],[-107.95417,72.518753],[-107.227081,71.814583],[-107.48542,71.79583],[-107.804688,71.604683],[-108.145836,71.708336],[-108.64167,72.320831],[-108.55677,72.511978],[-108.991669,72.564583],[-109.106766,72.759895],[-109.34375,72.745834],[-109.645836,72.9375],[-110.455734,73.011978],[-110.508331,72.839584],[-110.17292,72.818748],[-109.810417,72.508331],[-110.04583,72.445831],[-110.347916,72.5625],[-110.697914,72.57708],[-111.039581,72.32708],[-111.260414,72.556252],[-111.104164,72.706253],[-112.043747,72.893753],[-113.070831,73.012497],[-113.816666,72.64167],[-114.570831,72.572914],[-114.216148,72.805733],[-113.988022,72.813019],[-113.953651,73.146355],[-114.456253,73.372917],[-116.26667,73.10833],[-117.409897,72.893234],[-117.558334,72.800003],[-118.50573,72.503647],[-118.462502,72.35833],[-118.08802,72.233849],[-118.554169,72.181252],[-119.112503,71.85833],[-119.072914,71.67083],[-118.572914,71.668747],[-118.01458,71.377083],[-117.393753,71.385414],[-115.70208,71.5625],[-116.135414,71.379166],[-117.01667,71.245834],[-117.808334,71.168747],[-118.370834,71.029167],[-118.04792,70.800003],[-117.677086,70.645836]]],[[[-74.637466091,44.999195099],[-71.511032104,45.013435364],[-71.413208008,45.220157624],[-70.823326111,45.40296936],[-70.266288756,45.884941102],[-70.292007446,46.190940856],[-70.057159424,46.414680481],[-69.997085572,46.6958313],[-69.221817016,47.457641603],[-69.043998718,47.42577362],[-68.897491455,47.176639558],[-68.243835448,47.352554321],[-67.783599854,47.063171386],[-67.802940368,45.695995331],[-67.425682082,45.578472085],[-67.4776,45.287292],[-67.266800009,45.191123994],[-66.890549,45.041817],[-65.908119,45.193939],[-65.33857,45.449642],[-64.788887,45.595001],[-64.582221985,45.815834046],[-64.45472,45.682777],[-64.913055,45.430557],[-64.708527,45.31422],[-63.611111,45.395557],[-64.339996,45.127224],[-64.47252655,45.239742279],[-64.948333741,45.104721069],[-65.741386,44.711945],[-66.127502441,44.332778932],[-66.213806152,44.108173372],[-66.11972,43.733612],[-65.821907,43.71328],[-65.726425,43.490128],[-65.495003,43.491112],[-65.326683,43.676567],[-65.011398,43.722294],[-64.813889,43.953609],[-64.264,44.316772],[-64.35611,44.440556],[-63.897892,44.663799],[-63.938114,44.505936],[-63.570782,44.458916],[-63.111946,44.738056],[-62.872952,44.732952],[-61.847221,45.103333],[-61.127499,45.207779],[-61.068333,45.350277],[-61.468334,45.353889],[-61.263054,45.454166],[-61.486862,45.692558],[-61.876389,45.686668],[-61.935001,45.887501],[-62.509445,45.601387],[-62.772778,45.762222],[-63.72833252,45.873054505],[-64.045555,46.044998],[-63.834446,46.153057],[-64.390724,46.223721],[-64.860558,46.692223],[-64.807503,47.076668],[-65.275032,47.112831],[-64.959442,47.299721],[-64.80116272,47.803852081],[-65.181114196,47.819168091],[-65.622498,47.651112],[-65.764442443,47.863887787],[-66.472847,48.061604],[-66.09222412,48.092777252],[-65.937667848,48.20092392],[-65.45639,48.006111],[-64.773612976,48.205638886],[-64.732224,48.335835],[-64.227356,48.501396],[-64.212471,48.874222],[-64.505219,49.068954],[-64.926582337,49.205387116],[-65.55833435,49.257221222],[-66.054725648,49.221389771],[-66.745552062,49.088333131],[-67.535301209,48.854000093],[-68.470001221,48.513889313],[-68.953887999,48.290001001],[-69.34861,48.013054],[-70.501113892,47.009666444],[-71.155830384,46.832500457],[-71.261390686,46.748275757],[-71.653419494,46.61681366],[-72.152778626,46.542678833],[-72.244079589,46.407123566],[-72.743553162,46.165287019],[-73.148010254,46.047466278],[-73.411766053,45.696609497],[-73.512878419,45.424804688],[-73.885421753,45.313762665],[-74.097480773,45.295528413],[-74.162567138,45.20267868],[-74.637466091,44.999195099]]],[[[-124.999481201,71.890098572],[-123.970833,71.67083],[-123.625519,71.497398],[-123.453651,71.24427],[-123.131248,71.07917],[-122.814583,71.083336],[-122.466667,71.224998],[-122.035416,71.29792],[-121.783333,71.506248],[-121.32708,71.381248],[-120.706253,71.470833],[-120.467186,71.565102],[-120.1651,72.077599],[-120.158333,72.237503],[-119.768753,72.229164],[-119.308853,72.365105],[-118.981247,72.67292],[-118.035416,72.883331],[-117.460419,73.04792],[-116.634895,73.222397],[-115.779167,73.34375],[-115.306252,73.46875],[-115.516151,73.58802],[-116.646355,74.009895],[-117.29792,74.20417],[-118.177086,74.277084],[-118.762497,74.212502],[-118.960419,74.004166],[-119.093231,74.199478],[-120.114586,74.277084],[-120.941666,74.429169],[-121.094269,74.518234],[-121.745834,74.550003],[-122.166664,74.487503],[-124.414581,74.377083],[-124.353645,74.017189],[-124.157814,73.86927],[-123.76458,73.754166],[-124.052086,73.666664],[-124.135414,73.491669],[-124.778648,73.157814],[-124.518753,72.925003],[-124.977081,72.820831],[-125.039581,72.558334],[-125.316147,72.480728],[-125.676567,72.251564],[-125.82917,71.958336],[-125.172920228,71.983329773],[-124.999481201,71.890098572]]],[[[-93.468231,81.373436],[-94.089584,81.364586],[-93.95208,81.20208],[-93.21875,81.214584],[-93.143753,81.089584],[-94.10833,81.089584],[-94.070831,81.002083],[-94.849998,81.058334],[-95.229164,81.008331],[-95.29583,80.779167],[-94.658333,80.722916],[-94.618752,80.554169],[-94.947914,80.604164],[-95.970833,80.583336],[-95.777084,80.447914],[-96.402084,80.275002],[-95.316666,80.114586],[-94.404167,80.17292],[-94.854164,80.052086],[-95.645836,80.043747],[-96.6875,80.147919],[-96.631248,79.900002],[-95.912498,79.652084],[-94.30677,79.683853],[-94.925003,79.587502],[-95.685417,79.541664],[-95.759895,79.416145],[-94.974998,79.268753],[-94.512497,79.42083],[-94.022919,79.377083],[-94.039581,79.256248],[-92.206253,79.51667],[-92.404167,79.366669],[-91.445831,79.320831],[-92.512497,79.306252],[-92.262497,79.206253],[-91.158333,79.247917],[-90.479164,79.21875],[-92.056252,79.152084],[-93.372917,79.162498],[-93.814583,79.035416],[-94.316666,78.987503],[-93.28125,78.57708],[-92.597916,78.591667],[-91.29583,78.558334],[-92.820831,78.504166],[-92.935417,78.418747],[-92.052086,78.199997],[-90.964584,78.137497],[-90.331253,78.14167],[-90.324997,78.279167],[-89.877083,78.210419],[-89.610939,78.279686],[-89.974998,78.433334],[-90.006248,78.620834],[-89.012497,78.166664],[-88.806252,78.152084],[-88.531769,78.401566],[-88.65625,78.627083],[-88.272919,78.462502],[-87.893753,78.585419],[-88.239586,78.768753],[-88.145836,79.004166],[-87.997398,78.785934],[-87.647919,78.64167],[-86.525002,79.054169],[-85.248436,79.186981],[-84.929687,79.320312],[-85.82708,79.616669],[-86.015099,79.572395],[-86.65625,79.662498],[-87.181252,79.57917],[-86.964584,79.916664],[-87.268753,80.081253],[-87.854164,80.060417],[-87.506767,80.24115],[-87.602081,80.408333],[-88.364586,80.441666],[-88.657814,80.382812],[-88.5,80.099998],[-89.086983,80.215103],[-89.029167,80.48333],[-90.550003,80.572914],[-90.724998,80.71875],[-91.114067,80.774483],[-92.027084,81.222916],[-93.468231,81.373436]]],[[[-95.675003,77.064583],[-96.806252,76.98333],[-96.543747,76.693748],[-96.033333,76.554169],[-95.824997,76.393753],[-95.222916,76.366669],[-95.387497,76.23333],[-94.216667,76.283333],[-93.697914,76.247917],[-93.102081,76.366669],[-92.472916,75.962502],[-92.122917,75.866669],[-92.002121,75.591682],[-92.445312,75.418228],[-92.501564,75.228645],[-92.038017,74.957817],[-91.86042,74.697914],[-91.125,74.625],[-90.789581,74.720833],[-90.629166,74.618752],[-89.987503,74.53125],[-89.26667,74.572914],[-88.992188,74.789063],[-88.796349,74.679688],[-88.6875,74.847916],[-88.414581,74.770836],[-88.543228,74.496353],[-87.737503,74.456253],[-85.618752,74.489586],[-85.552086,74.685417],[-85.21875,74.487503],[-84.25,74.506248],[-83.462502,74.583336],[-83.118752,74.810417],[-83.057816,74.613022],[-82.791664,74.529167],[-82.360939,74.544266],[-81.75,74.46875],[-81.227081,74.587502],[-80.277084,74.581253],[-80.131248,74.833336],[-79.356247,74.881248],[-79.645836,75.033333],[-80.189583,74.95208],[-79.599998,75.183334],[-79.493233,75.374481],[-79.947914,75.477081],[-80.243752,75.625],[-81.268753,75.64167],[-81.113022,75.750519],[-82.291664,75.82917],[-82.81823,75.748436],[-83.9375,75.814583],[-84.660416,75.64167],[-85.072914,75.662498],[-85.88958,75.502083],[-85.718231,75.398438],[-86.341667,75.393753],[-86.98333,75.506248],[-87.247917,75.614586],[-87.787498,75.570831],[-88.195831,75.46875],[-88.585419,75.587502],[-88.679169,75.40625],[-89.170311,75.496353],[-89.387497,75.822914],[-90.0625,75.981247],[-90.949997,75.912498],[-91.158333,76.025002],[-90.318748,76.081253],[-91.318748,76.160416],[-89.308334,76.193748],[-89.302086,76.302086],[-89.775002,76.320831],[-90.556252,76.45417],[-90.595833,76.566666],[-90.98542,76.652084],[-91.710419,76.6875],[-92.631248,76.59375],[-93.095833,76.620834],[-93.614586,76.904167],[-94.291664,76.893753],[-94.612503,76.981247],[-95.175003,76.993752],[-95.675003,77.064583]]],[[[-109.841667,74.877083],[-109.379166,74.902084],[-108.808334,75.07708],[-108.512497,74.947914],[-107.659897,74.9776],[-107.260414,74.916664],[-105.992188,75.052605],[-105.635414,75.533333],[-105.35833,75.652084],[-105.591667,75.941666],[-105.929169,76.01667],[-106.645317,76.064064],[-106.85833,75.979164],[-106.893753,75.714584],[-107.402084,75.92083],[-108.008331,75.837502],[-107.798439,76.061981],[-108.408333,76.058334],[-108.0625,76.231247],[-108.25885,76.389061],[-108.539581,76.414581],[-108.390099,76.7276],[-108.731247,76.847916],[-109.314583,76.800003],[-109.791664,76.48542],[-110.385414,76.431252],[-110.34375,76.308334],[-109.912498,76.20208],[-109.508331,76.1875],[-109.275002,76.056252],[-109.914581,75.929169],[-109.650002,75.808334],[-109.025002,75.758331],[-108.760414,75.625],[-108.872917,75.481247],[-110.466667,75.574997],[-111.229164,75.51458],[-111.390099,75.768234],[-111.71875,75.90625],[-112.3974,76.044266],[-112.460938,76.169266],[-113.262497,76.272919],[-113.949997,76.193748],[-114.063019,76.427605],[-114.323433,76.49115],[-115.181252,76.472916],[-115.777084,76.385414],[-115.845833,76.252083],[-116.543228,76.128647],[-116.729164,75.902084],[-115.308334,75.864586],[-116.849998,75.804169],[-117.1875,75.585419],[-116.349998,75.566666],[-115.298439,75.673439],[-116.002083,75.487503],[-117.154167,75.48542],[-117.520317,75.372398],[-117.529167,75.210419],[-116.695831,75.118752],[-116.254166,75.216667],[-116.229164,75.058334],[-115.652084,74.972916],[-115.166664,75.133331],[-115.04792,74.964584],[-114.42083,75.072914],[-114.029686,75.350517],[-113.81823,75.314064],[-113.935417,75.058334],[-112.845833,75.131248],[-112.647919,75.285416],[-112.432816,75.140099],[-111.472916,75.164581],[-111.224998,75.270836],[-110.92083,75.227081],[-111.700516,74.983849],[-112.849998,74.981247],[-113.487503,74.82708],[-114.089584,74.785416],[-114.216667,74.585419],[-113.504166,74.429169],[-112.727081,74.404167],[-111.642189,74.502602],[-110.78125,74.664581],[-110.316147,74.853645],[-109.841667,74.877083]]],[[[-53.594726562,46.63243866],[-53.370556,46.728889],[-53.091144562,46.645538331],[-52.893333435,46.940555573],[-52.659168244,47.646945954],[-52.803951,47.806328],[-52.920345306,47.541732788],[-53.127067565,47.427509308],[-53.266945,47.578335],[-52.889065,48.152088],[-53.301387786,48.009166717],[-53.554443,47.522778],[-53.799999,47.770279],[-53.637779,48.176109],[-53.366112,48.392776],[-53.101387,48.410557],[-53.093887,48.680557],[-53.574554,48.451279],[-53.891026,48.561852],[-53.785278,49.023613],[-53.487507,49.229507],[-54.08239,49.470112],[-54.497753,49.390831],[-54.556389,49.539722],[-54.797501,49.310833],[-55.243183,49.257854],[-55.441654001,49.503361],[-55.695347,49.424347],[-56.007187,49.724136],[-55.6553,49.849483],[-56.160556792,50.157775879],[-56.583527,49.845211],[-56.84777832,49.568332673],[-56.752857,50.023464],[-56.513584,50.225155],[-55.727158,51.124722],[-56.02005,51.215466],[-56.07172,51.366299],[-55.631111145,51.299533844],[-55.421997,51.584744],[-55.91111,51.628056],[-56.700001,51.338055],[-57.098404,50.782066],[-57.361347198,50.710769654],[-57.61401,50.187771],[-58.020279,49.555832],[-58.254444,49.284721],[-58.163612366,49.061668396],[-58.500031,49.007191],[-58.714168548,48.561111451],[-58.673889,48.374168],[-58.978839875,48.129489898],[-59.413334,47.899166],[-59.170555116,47.566387176],[-58.075279,47.701668],[-57.772778,47.623055],[-57.341034,47.648422],[-56.798889,47.533611],[-56.225113,47.622833],[-55.812923,47.793034],[-55.963768,47.553429],[-55.779167,47.452221],[-55.413872,47.483185],[-55.411613,47.692249],[-55.138504,47.577141],[-55.337352752,47.24545288],[-55.978889,46.987499],[-55.700916,46.861618],[-55.232223511,46.938331604],[-54.800835,47.421391],[-54.586113,47.347778],[-54.205833,47.795834],[-53.900505,47.607121],[-53.917499542,47.310832978],[-54.167084,46.990921],[-54.060508728,46.799354554],[-53.709953,47.088478],[-53.571666718,46.915687562],[-53.594726562,46.63243866]]],[[[-86.135933,73.8526],[-87.228645,73.791145],[-88.212502,73.595833],[-88.960419,73.293747],[-89.341667,73.004166],[-89.306252,72.89167],[-89.752083,72.620834],[-89.951561,72.256767],[-89.816666,72.143753],[-90.104164,71.941666],[-89.758331,71.762497],[-90.006248,71.599998],[-89.854164,71.345833],[-88.10833,71.216667],[-87.833336,71.26458],[-87.691666,71.129166],[-87.006248,71.002083],[-86.397919,71.037498],[-85.947914,71.185417],[-85.449997,71.185417],[-85.122917,71.302086],[-85.29792,71.464584],[-86.116669,71.791664],[-86.403648,72.0224],[-86.430733,72.276566],[-86.260933,72.449478],[-86.711983,72.660934],[-86.682816,72.857811],[-86.423439,72.975517],[-86.118752,73.26458],[-85.864586,73.393753],[-84.88958,73.6875],[-85.091667,73.8125],[-86.135933,73.8526]]],[[[-96.579689,72.691147],[-96.893234,72.686981],[-97.225517,72.935936],[-97.73333,73.037498],[-98.431252,73.004166],[-97.848434,73.273437],[-97.247917,73.370834],[-97.408333,73.5],[-96.949997,73.63958],[-97.195831,73.85833],[-97.618752,73.897919],[-98.756248,73.758331],[-99.131248,73.754166],[-99.70417,73.854164],[-99.897919,73.949997],[-100.150002,73.82917],[-100.866669,73.841667],[-100.909897,73.634895],[-101.558853,73.478645],[-100.819267,73.265099],[-100.329689,73.322395],[-100.075516,72.909897],[-100.300003,72.808334],[-101.34375,72.731247],[-101.458336,72.88958],[-101.902084,73.04583],[-102.387497,73.09375],[-102.636978,72.760933],[-101.904686,72.482811],[-101.805733,72.319267],[-101.185936,72.336983],[-100.92292,72.166664],[-100.598434,72.180733],[-100.28125,71.96875],[-99.706253,71.814583],[-99.264061,71.390099],[-98.725517,71.269272],[-98.492188,71.308853],[-98.064583,71.537498],[-97.970314,71.707817],[-97.604164,71.620834],[-97.081253,71.70208],[-96.902084,71.820831],[-96.614586,71.810417],[-96.467186,72.028648],[-96.650002,72.34375],[-96.320831,72.447914],[-96.579689,72.691147]]],[[[-85.483849,65.910934],[-85.984901,65.722397],[-86.156769,65.302605],[-86.190102,64.871353],[-86.3974,64.489067],[-86.140099,64.092186],[-86.816666,63.941666],[-87.216148,63.713024],[-87.087502,63.545834],[-86.589066,63.65781],[-86.018753,63.683334],[-85.996353,63.854691],[-85.450516,64.00885],[-85.663017,63.724476],[-85.628647,63.208855],[-85.195831,63.110416],[-84.581253,63.291668],[-84.339584,63.575001],[-83.629166,63.752083],[-83.533333,64.099998],[-83.129166,64.162498],[-83.135414,63.987499],[-82.460419,63.935417],[-81.948433,64.101562],[-81.590103,64.121353],[-81.747917,64.472916],[-82.050522,64.668228],[-82.629166,64.760414],[-83.300522,65.002602],[-83.497917,65.158333],[-84.087502,65.197914],[-84.125519,65.332817],[-84.554169,65.474998],[-84.862503,65.20417],[-85.054687,65.457817],[-85.18177,65.805733],[-85.483849,65.910934]]],[[[-95.117188,72.466148],[-95.197395,72.222397],[-95.11042,71.972916],[-94.241669,72.01667],[-93.820831,72.314583],[-93.438019,72.455734],[-93.935417,72.779167],[-93.145836,72.802086],[-92.34375,72.708336],[-91.801567,72.874481],[-91.195312,73.326561],[-90.346352,73.792183],[-90.32708,73.912498],[-90.693748,73.977081],[-91.51458,74.029167],[-92.104164,73.95417],[-92.587502,74.11042],[-93.574997,74.177086],[-94.779167,74.07708],[-95.277084,73.995834],[-95.287498,73.779167],[-95.625,73.741669],[-95.67292,73.45208],[-95.552086,73.291664],[-95.69323,72.985939],[-95.572914,72.691666],[-95.117188,72.466148]]],[[[-116.42292,77.535416],[-116.666664,77.527084],[-117.239586,77.289581],[-117.745834,77.362503],[-119.183334,77.318748],[-120.550003,76.754166],[-121.208336,76.685417],[-121.456253,76.441666],[-122.335419,76.402084],[-122.618233,76.343231],[-122.731766,76.17865],[-122.651566,75.960938],[-122.345833,75.883331],[-122.104164,76.043747],[-121.285416,75.970833],[-120.714066,76.033852],[-120.410416,75.977081],[-120.29583,75.8125],[-119.724998,75.885414],[-119.6875,76.097916],[-119.480728,76.288017],[-119.125,76.106247],[-118.654167,76.45417],[-118.335419,76.556252],[-118.320831,76.78125],[-117.800522,76.715103],[-118.029167,76.410416],[-117.32708,76.260414],[-116.96302,76.344269],[-117.04583,76.566666],[-116.502083,76.570831],[-115.897919,76.691666],[-115.84375,76.98542],[-116.409897,77.151566],[-115.541664,77.268753],[-115.535416,77.375],[-116.42292,77.535416]]],[[[-98.654167,76.685417],[-99.012497,76.612503],[-99.241669,76.435417],[-99.70417,76.612503],[-100.272919,76.63958],[-100.779167,76.51667],[-100.714584,76.379166],[-100.258331,76.38958],[-100.058334,76.20417],[-100.039581,75.925003],[-100.393753,76.112503],[-100.875,76.224998],[-101.48542,76.443748],[-101.902084,76.449997],[-102.0625,76.229164],[-101.537498,76.224998],[-101.90625,76.072914],[-101.587502,75.981247],[-102.339066,75.836983],[-102.766151,75.549484],[-101.1026,75.594269],[-99.806252,75.681252],[-100.677086,75.377083],[-100.4375,75.227081],[-100.372398,75.029686],[-100.081253,74.987503],[-99.003647,74.984901],[-97.958336,75.027084],[-97.614586,75.118752],[-98.025002,75.370834],[-97.691666,75.568748],[-97.383331,75.45208],[-97.366669,75.691666],[-97.73542,75.729164],[-97.477081,76.133331],[-97.787498,76.314583],[-97.92292,76.566666],[-98.654167,76.685417]]],[[[-103.92292,79.372917],[-105.125,79.29583],[-105.439583,79.337502],[-105.659897,79.16198],[-105.51458,79.018753],[-104.706253,79.035416],[-104.98333,78.79792],[-104.453651,78.953651],[-103.902084,78.925003],[-104.1875,78.770836],[-103.414581,78.787498],[-103.462502,78.510414],[-104.79792,78.581253],[-104.956253,78.441666],[-104.464584,78.275002],[-103.914581,78.245834],[-103.739586,78.318748],[-102.775002,78.38958],[-102.581253,78.237503],[-102.166664,78.293747],[-101.072914,78.20208],[-100.550003,77.875],[-99.847916,77.785416],[-99.181252,77.84375],[-98.916664,78.064583],[-99.785416,78.29792],[-99.508331,78.595833],[-100.364586,78.837502],[-101.050522,78.807816],[-100.952599,78.938019],[-101.604164,79.07708],[-102.387497,79.020836],[-103.09375,79.287498],[-103.92292,79.372917]]],[[[-123.591942,48.338612],[-123.29528,48.410831],[-123.508773804,48.552265168],[-123.592285,48.847874],[-123.818298,49.135902],[-124.188858,49.312557],[-124.792449952,49.465278627],[-124.863533,49.693649],[-125.182472,49.914444],[-125.441665649,50.320556642],[-126.08696,50.449799],[-126.608383,50.485554],[-127.135002,50.592224],[-127.485558,50.766388],[-127.908333,50.875],[-128.41333,50.775555],[-128.375763,50.672089],[-127.802673,50.249325],[-127.17778,49.877499],[-127.01889,49.849998],[-126.82222,49.882221],[-126.790833,49.92889],[-126.755836,49.875],[-126.678383,49.864391],[-126.645804999,49.907500999],[-126.652779,49.8125],[-126.593613,49.698334],[-126.439476,49.652626],[-126.555962,49.586861],[-126.583611,49.417778],[-126.078247,49.437748],[-126.031609,49.285732],[-125.737976,49.261288],[-125.75,49.068611],[-125.511261,48.921982],[-125.290703,49.023472],[-125.03083,48.960506],[-125.22068,48.785645],[-124.650276184,48.575000764],[-123.591942,48.338612]]],[[[-80.671349,73.774483],[-80.78125,73.775002],[-80.914581,73.375],[-80.760414,73.277084],[-80.195831,73.25],[-79.98333,72.864586],[-79.260414,72.743752],[-78.245834,72.895836],[-77.60833,72.900002],[-76.352081,72.816666],[-76.243752,73.09375],[-76.618752,73.129166],[-76.720833,73.32708],[-77.01458,73.337502],[-77.189583,73.510414],[-78.14167,73.67083],[-79.137497,73.633331],[-80.114586,73.699997],[-80.671349,73.774483]]],[[[-95.837502,68.658333],[-95.533333,68.789581],[-95.822914,68.881248],[-96.144272,69.282814],[-96.877083,69.502083],[-97.114586,69.63958],[-97.791664,69.879166],[-98.160416,69.8125],[-98.46875,69.585419],[-98.4375,69.38958],[-98.717186,69.18177],[-99.462502,69.118752],[-99.537498,69.008331],[-99.179169,68.831253],[-99.014061,68.955734],[-98.668747,68.787498],[-97.716667,68.662498],[-97.564583,68.57917],[-96.856247,68.527084],[-96.54583,68.45208],[-95.837502,68.658333]]],[[[-94.712502,74.64167],[-93.6875,74.63958],[-93.48333,74.67292],[-93.390099,74.910934],[-93.475517,75.253647],[-94.306252,75.589584],[-94.966667,75.625],[-95.583336,75.556252],[-96.01458,75.333336],[-96.445831,75.20208],[-96.370834,75.010414],[-95.818748,74.824997],[-95.260414,74.804169],[-95.089584,74.6875],[-94.712502,74.64167]]],[[[-97.761978,78.82135],[-98.40625,78.775002],[-98.098434,78.580734],[-98.399483,78.46302],[-98.056252,78.300003],[-97.60833,78.197914],[-96.966667,78.14167],[-97.693748,78.081253],[-97.131767,77.918228],[-96.925003,77.787498],[-96.70417,77.872917],[-96.085419,77.872917],[-95.11042,77.945831],[-94.885933,78.106766],[-95.21302,78.211983],[-94.822914,78.368752],[-95.518753,78.51458],[-95.9375,78.477081],[-96.293747,78.527084],[-96.520836,78.683334],[-97.761978,78.82135]]],[[[-75.902084,68.34375],[-76.666145,68.259895],[-76.984901,68.063019],[-77.294266,67.716148],[-77.086983,67.316147],[-75.86927,67.252602],[-75.183853,67.438019],[-74.938019,68.175522],[-75.902084,68.34375]]],[[[-109.849998,77.9375],[-109.64167,78.102081],[-111.279167,78.091667],[-112.487503,77.995834],[-113.305733,77.791145],[-113.20417,77.527084],[-112.583855,77.464066],[-112.462502,77.372917],[-111.947914,77.337502],[-111.322914,77.429169],[-110.877083,77.408333],[-110.220833,77.504166],[-110.04792,77.772919],[-110.664581,77.770836],[-110.91198,77.86615],[-109.849998,77.9375]]],[[[-60.238335,45.723331],[-59.803612,45.967457],[-59.837009,46.168251],[-60.285557,46.310555],[-60.719006,45.899002],[-60.791943,45.685833],[-61.103573,45.791313],[-60.819187,45.944057],[-60.351292,46.628334],[-60.304104,46.851387],[-60.592419,47.041843],[-60.894722,46.785],[-61.107521,46.439056],[-61.551666,46.041389],[-61.46611,45.716946],[-61.331112,45.564724],[-60.744446,45.573055],[-60.238335,45.723331]]],[[[-105.445831,73.768753],[-106.510414,73.716667],[-106.895317,73.492187],[-106.0625,73.283333],[-106.060417,73.185417],[-105.375519,72.902603],[-104.993752,73.006248],[-104.539581,73.306252],[-104.515099,73.574478],[-105.169266,73.759895],[-105.445831,73.768753]]],[[[-109.810417,78.625],[-110.385414,78.758331],[-111.095314,78.701561],[-111.647919,78.543747],[-112.241669,78.54583],[-113.185417,78.383331],[-113.147919,78.272919],[-112.17292,78.379166],[-111.791664,78.279167],[-111.418747,78.275002],[-111.302086,78.385414],[-110.368752,78.277084],[-110.052086,78.32917],[-109.335938,78.33802],[-109.306252,78.533333],[-109.810417,78.625]]],[[[-64.139458,49.948463],[-64.52356,49.863464],[-63.982635,49.697456],[-63.569168,49.389999],[-63.074165,49.225277],[-62.244289,49.062527],[-61.668716,49.139389],[-61.897068,49.352604],[-62.250278,49.426109],[-62.513386,49.588223],[-63.081417,49.767101],[-64.139458,49.948463]]],[[[-82.217186,62.983856],[-82.71875,62.941666],[-83.006248,62.84375],[-83.285416,62.931252],[-83.543228,62.826565],[-83.648437,62.579685],[-83.893753,62.508335],[-83.714584,62.139584],[-83.416664,62.252083],[-83.064583,62.185417],[-81.940102,62.721352],[-81.867188,62.914062],[-82.217186,62.983856]]],[[[-132.026657,53.247318],[-131.789978,54.074524],[-132.116638,54.031399],[-132.313904,54.114502],[-132.589447,54.025002],[-132.658875,54.153076],[-133.026367,54.184566],[-133.153336,53.886391],[-132.88945,53.466389],[-132.497223,53.142502],[-132.026657,53.247318]]],[[[-95.438019,77.801567],[-96.23333,77.697914],[-96.294266,77.59948],[-95.849998,77.46875],[-94.770836,77.497917],[-93.941666,77.441666],[-93.48333,77.46875],[-93.23333,77.73542],[-93.681252,77.78125],[-95.438019,77.801567]]],[[[-80.885414,64.11042],[-80.906769,63.98177],[-81.306252,64.070831],[-82.095833,63.924999],[-82.427086,63.810417],[-82.13385,63.695313],[-81.072914,63.450001],[-80.208336,63.802082],[-80.60833,63.858334],[-80.54792,63.985416],[-80.885414,64.11042]]],[[[-63.136112,46.199165],[-62.82888794,45.964443208],[-62.453903,46.017075],[-62.508888245,46.20916748],[-62.168056489,46.483333588],[-63.047501,46.415833],[-63.667473,46.56834],[-63.787776948,46.438610077],[-63.986946,46.73],[-63.99539566,47.058776855],[-64.397781372,46.72416687],[-64.055099,46.577579],[-64.133331298,46.401390075],[-63.755554198,46.390277862],[-63.621665954,46.217777252],[-63.251945,46.129166],[-63.136112,46.199165]]],[[[-105.847916,77.76667],[-105.761978,77.469269],[-105.276566,77.173439],[-104.191666,77.081253],[-104.348434,77.24115],[-105.199997,77.631248],[-105.847916,77.76667]]],[[[-79.560417,62.40625],[-79.854164,62.391666],[-80.203651,62.153648],[-80.181252,61.785416],[-79.716667,61.591667],[-79.25885,62.235935],[-79.560417,62.40625]]],[[[-117.622917,76.116669],[-118.695831,75.895836],[-119.402084,75.61042],[-118.54792,75.506248],[-118.212502,75.606247],[-117.450516,76.095314],[-117.622917,76.116669]]],[[[-90.829689,77.654686],[-91.206253,77.614586],[-91.20417,77.38958],[-90.268753,77.199997],[-89.71875,77.306252],[-89.789581,77.495834],[-90.32917,77.627083],[-90.829689,77.654686]]],[[[-99.558853,80.149483],[-100.159897,80.034897],[-100.060417,79.877083],[-99.54792,79.89167],[-99.302086,79.75],[-98.816666,79.67292],[-98.650002,79.770836],[-98.810936,80.075516],[-99.558853,80.149483]]],[[[-81.35611,53.217224],[-81.896606,53.151917],[-81.948891,52.961113],[-80.739998,52.696388],[-80.821594,53.007507],[-81.11441,53.194504],[-81.35611,53.217224]]],[[[-104.100517,75.448433],[-104.449997,75.445831],[-104.685417,75.341667],[-104.822914,75.114586],[-104.439583,75.033333],[-103.852081,75.060417],[-103.594269,75.15052],[-103.808853,75.36615],[-104.100517,75.448433]]],[[[-131.796661,53.254444],[-132.325562,53.039722],[-132.23761,52.799683],[-131.67038,52.477112],[-131.261719,52.118713],[-131.466766,52.500832],[-131.830551,52.715279],[-131.623291,52.918274],[-131.796661,53.254444]]],[[[-104.09375,76.675003],[-104.651566,76.605728],[-104.289581,76.36042],[-103.791664,76.3125],[-103.26458,76.347916],[-102.997917,76.449997],[-103.593231,76.533852],[-104.09375,76.675003]]],[[[-102.841667,76.318748],[-104.26667,76.224998],[-104.370834,76.102081],[-103.881248,76.043747],[-103.102081,76.0625],[-102.654167,76.116669],[-102.841667,76.318748]]],[[[-74.30365,68.175522],[-74.78125,68.010414],[-74.487503,67.789581],[-73.404167,67.777084],[-73.518753,68.050003],[-73.781769,67.992187],[-74.318748,68.09375],[-74.30365,68.175522]]],[[[-128.995483,53.296326],[-129.201111,52.962776],[-129.063339,52.738609],[-128.592712,52.608276],[-128.57428,53.092102],[-128.995483,53.296326]]],[[[-114.315102,78.070312],[-115.054169,77.92083],[-114.272919,77.708336],[-113.775002,77.743752],[-113.768753,77.904167],[-114.315102,78.070312]]],[[[-97.695312,74.118233],[-98.012497,74.112503],[-99.434898,73.906769],[-98.856247,73.810417],[-98.091667,73.893753],[-97.731766,74.002602],[-97.695312,74.118233]]],[[[-79.119194,56.478352],[-79.265015,56.553539],[-79.397095,56.22076],[-79.543602,56.260349],[-80.012222,55.923054],[-79.855255,55.835278],[-79.447014,55.885792],[-79.05558,56.34486],[-79.119194,56.478352]]],[[[-86.61927,68.297401],[-86.884895,68.182816],[-86.958336,67.895836],[-86.54792,67.729164],[-86.36042,67.897919],[-86.454689,68.249481],[-86.61927,68.297401]]],[[[-78.45208,69.393753],[-78.929687,69.113022],[-79.175003,69.097916],[-79.262497,68.837502],[-78.810936,68.919266],[-78.206772,69.297401],[-78.45208,69.393753]]],[[[-78.136978,63.46719],[-78.51458,63.433334],[-77.939583,63.089584],[-77.558334,63.170834],[-77.65625,63.422916],[-78.136978,63.46719]]],[[[-84.372398,66.139061],[-84.376564,65.985939],[-83.811981,65.679687],[-83.314583,65.614586],[-83.287498,65.724998],[-83.710938,65.80365],[-83.679688,65.934898],[-84.372398,66.139061]]],[[[-130.190125,53.905884],[-130.206116,53.72139],[-129.58815,53.211777],[-129.334412,53.363609],[-130.190125,53.905884]]],[[[-101.723434,77.906769],[-102.449997,77.881248],[-102.081253,77.6875],[-100.88385,77.752602],[-101.723434,77.906769]]],[[[-64.979164,61.681252],[-65.455734,61.639065],[-64.86042,61.316666],[-64.6651,61.477604],[-64.699997,61.65625],[-64.979164,61.681252]]],[[[-79.605728,69.811981],[-79.960419,69.724998],[-80.479164,69.793747],[-80.21302,69.534897],[-79.368752,69.6875],[-79.605728,69.811981]]],[[[-114.058334,76.89167],[-114.558334,76.88958],[-114.67083,76.752083],[-113.508331,76.73333],[-113.485939,76.830734],[-114.058334,76.89167]]],[[[-102.381248,76.09375],[-102.845833,76.074997],[-103.86042,75.949997],[-103.729164,75.841667],[-102.493752,76.012497],[-102.381248,76.09375]]],[[[-89.974998,76.835419],[-90.5,76.79792],[-90.199997,76.518753],[-89.816666,76.48333],[-89.974998,76.835419]]],[[[-77.279686,63.686981],[-77.344269,63.576565],[-77.01667,63.414585],[-76.693748,63.362499],[-76.568748,63.458332],[-77.03125,63.674999],[-77.279686,63.686981]]],[[[-71.104683,62.886978],[-70.677605,62.548435],[-70.167183,62.57552],[-70.36042,62.724998],[-71.104683,62.886978]]],[[[-102.129166,75.995834],[-103.061981,75.903648],[-103.356247,75.756248],[-102.5,75.800003],[-102.129166,75.995834]]],[[[-130.458328,53.634445],[-130.550842,53.552406],[-129.973877,53.193611],[-129.752197,53.214111],[-130.106674,53.514168],[-130.458328,53.634445]]],[[[-68.106247,60.59375],[-68.231247,60.587502],[-68.436981,60.270309],[-67.970833,60.289585],[-67.827599,60.446354],[-68.106247,60.59375]]],[[[-96.295311,75.65052],[-96.988022,75.482811],[-96.84375,75.36042],[-96.422401,75.526566],[-96.122917,75.460419],[-95.908852,75.564064],[-96.295311,75.65052]]],[[[-85.031769,66.026566],[-85.091148,65.735939],[-84.724998,65.539581],[-84.699997,65.831253],[-85.031769,66.026566]]],[[[-77.079689,69.449478],[-77.318748,69.431252],[-77.20208,69.127083],[-76.6875,69.3125],[-77.079689,69.449478]]],[[[-75.21875,68.71875],[-75.391151,68.626564],[-75.229164,68.435417],[-74.772919,68.458336],[-74.96302,68.653648],[-75.21875,68.71875]]],[[[-71.857811,71.055733],[-72.23333,70.88958],[-71.96302,70.823433],[-71.4151,70.925522],[-71.857811,71.055733]]],[[[-95.76458,69.625],[-95.947914,69.51458],[-95.489586,69.333336],[-95.319267,69.513016],[-95.76458,69.625]]],[[[-85.73333,79.068748],[-86.46875,78.895836],[-85.650002,78.941666],[-85.229164,79.052086],[-85.73333,79.068748]]],[[[-94.466667,75.977081],[-94.84375,75.949997],[-94.816666,75.79583],[-94.287498,75.758331],[-94.466667,75.977081]]],[[[-100.54583,76.76458],[-101.45208,76.65625],[-101.145836,76.583336],[-100.254166,76.747917],[-100.54583,76.76458]]],[[[-100.443748,69.043747],[-100.597397,68.768234],[-100.345314,68.731766],[-100.127602,68.918228],[-100.443748,69.043747]]],[[[-78.122398,69.746353],[-78.831253,69.518753],[-78.441666,69.522919],[-77.938019,69.643234],[-78.122398,69.746353]]],[[[-78.908333,76.112503],[-79.552086,75.949997],[-79.556252,75.818748],[-78.870834,76.029167],[-78.908333,76.112503]]],[[[-87.063019,70.149483],[-87.131248,70],[-86.560417,69.970833],[-86.633331,70.118752],[-87.063019,70.149483]]],[[[-96.802086,73.189583],[-97.020836,73.154167],[-96.987503,72.9375],[-96.662498,72.939583],[-96.802086,73.189583]]],[[[-126.789169,49.885277],[-126.969597,49.79805],[-126.982498,49.75],[-126.614052,49.590603],[-126.669243,49.854778],[-126.747932,49.8522],[-126.789169,49.885277]]],[[[-127.24086,52.423267],[-127.472107,52.319611],[-127.765511,52.245979],[-127.636192,52.140366],[-127.21563,52.320812],[-127.24086,52.423267]]],[[[-128.154663,52.773079],[-128.38501,52.803894],[-128.436417,52.556744],[-128.291107,52.523888],[-128.154663,52.773079]]],[[[-96.122398,69.567184],[-96.543228,69.570313],[-96.112503,69.352081],[-96.122398,69.567184]]],[[[-101.854164,68.816666],[-102.206253,68.720833],[-101.824478,68.591148],[-101.854164,68.816666]]],[[[-61.476112,56.954166],[-61.646679,56.724697],[-61.408333,56.601387],[-61.476112,56.954166]]],[[[-130.413086,54.095093],[-130.663605,53.994301],[-130.343597,53.827606],[-130.413086,54.095093]]],[[[-128.856079,53.713928],[-129.177078,53.626156],[-129.180023,53.411491],[-128.856079,53.713928]]],[[[-95.349998,80.699997],[-96.006248,80.660416],[-95.189583,80.60833],[-95.349998,80.699997]]],[[[-78.667549,56.434238],[-78.920853,56.126331],[-78.670326,56.169518],[-78.667549,56.434238]]],[[[-73.137497,71.550003],[-73.2724,71.365105],[-72.970833,71.316666],[-73.137497,71.550003]]],[[[-129.259445,52.822224],[-129.069443,52.514999],[-128.929993,52.612778],[-129.259445,52.822224]]],[[[-126.597656,50.690289],[-126.26889,50.654999],[-126.228035,50.822395],[-126.597656,50.690289]]],[[[-127.967697,52.067162],[-128.23111,51.846668],[-128.020004,51.816113],[-127.967697,52.067162]]]]},"properties":{"id":"156fe808-aad4-4f92-a850-303811ef4081","code":"CAN","name":"Canada","abbreviation":"C-CAN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.879386902,38.437000275],[48.940681457,37.880924225],[49.074810029,37.653205872],[49.323673248,37.515064239],[50.167907716,37.393962861],[50.29901886,37.155448915],[50.960655213,36.782432556],[51.673328399,36.599208832],[52.061759948,36.588085174],[53.284202576,36.8490448],[53.883243561,36.785064697],[54.036258697,36.957992554],[53.897811889,37.340808868],[53.814163207,37.814689636],[53.860424042,38.64951706],[53.993560791,38.93498993],[53.571869,39.188057],[53.551284836,39.296523962],[53.096298218,39.433078766],[53.236183166,39.545181274],[53.577148081,39.559826051],[53.430641175,39.721385955],[53.488838195,39.945686341],[52.757526398,40.019752502],[52.736713409,40.495632171],[52.940193005,40.947292025],[52.767284393,41.38925171],[52.441433127,41.765449602],[52.433998108,42.160961152],[52.740909577,42.62204361],[52.430751801,42.838626862],[51.893978118,42.841346742],[51.652057647,43.177623749],[51.268287659,43.151161194],[51.266693114,43.561321259],[51.016460419,43.805324555],[50.772907258,44.235294341],[50.264793396,44.351593018],[50.308731,44.644592],[50.89949417,44.611545562],[51.086864472,44.476280213],[51.265182496,44.579563141],[50.960926056,44.98260498],[51.243549173,45.049606324],[51.282299029,45.248268032],[51.735145883,45.445243863],[51.96490097,45.392425538],[52.71666,45.442379001],[52.925735473,45.912460327],[52.832126971,46.145469915],[53.030757639,46.594688236],[52.618930817,46.875389099],[52.256348,46.74585],[51.675995,46.830853],[51.510654449,46.983131408],[50.913021087,46.958156585],[50.574543,46.766182],[50.452445984,46.854782106],[49.966854,46.594189],[49.618847,46.269951],[49.242080688,46.432929993],[49.163757325,46.361011506],[49.202659608,46.209423065],[48.778842926,45.77584076],[48.589038849,45.921451568],[48.238803864,45.60303116],[47.874942779,45.569210052],[47.690681458,45.712604522],[47.546447754,45.205715179],[47.115840911,44.788352967],[46.915401459,44.821502685],[46.782440186,44.482982635],[46.993804932,44.438549043],[47.112876892,44.211730957],[47.525112152,43.835979462],[47.721809386,43.858303071],[47.474765777,43.388343811],[47.46616745,43.015335082],[47.707035064,42.878929138],[47.715496063,42.683696747],[48.072212218,42.339176178],[48.371982575,41.911006927],[48.505107879,41.864120484],[48.66060257,41.793498993],[49.095218658,41.331329346],[49.205043792,41.015556336],[49.498500823,40.826171875],[49.543399812,40.6314888],[50.062662502,40.592899248],[50.331802,40.404396],[49.680221649,40.275428794],[49.469009399,40.170124055],[49.478370667,39.98557663],[49.280376434,39.514598848],[49.189662934,39.048236847],[48.949310303,39.161060334],[48.825252533,38.824790954],[48.879386902,38.437000275]]]},"properties":{"id":"04ecc840-23e2-45be-bad5-5ec2f7286f31","code":"XCA","name":"Caspian Sea","abbreviation":"C-XCA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.251808167,19.274860381],[-81.115135193,19.292917252],[-81.095970154,19.353195192],[-81.237083,19.349583],[-81.251808167,19.274860381]]]},"properties":{"id":"639c2d34-3d40-4dc1-bcb3-6c3d387f5eab","code":"CYM","name":"Cayman Islands","abbreviation":"C-CYM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.189256826,2.224806177],[16.520128251,2.842302084],[16.596540451,3.477276088],[17.606319427,3.641251087],[18.123521805,3.566071034],[18.490898132,3.651686906],[18.63500023,3.471093416],[18.648849486,4.076396942],[18.545999527,4.302000046],[18.794000625,4.422999859],[19.097999573,4.921999932],[19.403354644,5.121106624],[19.847999573,5.073999882],[20.357860564,4.736951828],[20.612672805,4.401634216],[20.856983185,4.445547103],[21.564785005,4.247347833],[21.659999847,4.309000015],[22.281259536,4.11209488],[22.550441742,4.215419769],[22.790510177,4.714529992],[22.974784851,4.846968651],[23.275201798,4.63040018],[24.090251922,4.910327912],[24.407299043,5.110554695],[24.784543991,4.905525207],[25.317970276,5.036222934],[25.49746704,5.364079],[25.90848732,5.164886951],[26.208040237,5.237008095],[26.488008499,5.046394826],[26.872159957,5.033754826],[27.078672409,5.204131127],[27.463420868,5.016152859],[27.233200073,5.426796914],[27.153097152,5.771763801],[26.560180663,6.033278943],[26.29789734,6.387691975],[26.415109635,6.637384891],[26.11469078,6.815334797],[25.804990768,7.152908803],[25.361097335,7.344515801],[25.173980714,7.569643974],[25.284540177,7.803597927],[24.909490585,8.047219277],[24.864749909,8.180498123],[24.203580857,8.303997994],[24.257768631,8.67911911],[23.52010727,8.726968765],[23.588710785,8.93418789],[23.47631073,9.141964913],[23.653650285,9.293912889],[23.668241501,9.891513825],[23.301879884,10.474639892],[22.88133812,10.93089962],[22.520679475,11.007570267],[21.791240692,10.798089981],[21.675689697,10.237639426],[21.522939682,10.215540886],[20.991529465,9.734949113],[20.921909333,9.533323288],[20.528640747,9.337065696],[20.353200913,9.128197671],[19.927139281,9.060796738],[19.091669082,9.020450592],[18.868299484,8.875700952],[19.120649337,8.668691636],[18.601600647,8.046739578],[17.671670914,7.982767105],[16.843849183,7.529787063],[16.595449448,7.87835598],[16.392770768,7.671136857],[15.80959034,7.441069126],[15.551923752,7.570376873],[15.245532037,7.267167092],[15.063464165,6.784061909],[14.961637496,6.749874115],[14.739759444,6.250890255],[14.418822288,6.032466412],[14.620351791,5.889361859],[14.630098343,5.509177209],[14.529488564,5.273755075],[14.692684173,5.102640152],[14.732311,4.616427],[15.094683648,4.290076255],[15.076349,4.021727],[15.248896949,3.710672085],[15.792780876,3.108941556],[16.032058715,2.983955861],[16.072393418,2.464571238],[16.189256826,2.224806177]]]},"properties":{"id":"e9e81404-b954-4e13-a97f-78c3846fa4a8","code":"CAF","name":"Central African Republic","abbreviation":"C-CAF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.551923752,7.570376873],[15.80959034,7.441069126],[16.392770768,7.671136857],[16.595449448,7.87835598],[16.843849183,7.529787063],[17.671670914,7.982767105],[18.601600647,8.046739578],[19.120649337,8.668691636],[18.868299484,8.875700952],[19.091669082,9.020450592],[19.927139281,9.060796738],[20.353200913,9.128197671],[20.528640747,9.337065696],[20.921909333,9.533323288],[20.991529465,9.734949113],[21.522939682,10.215540886],[21.675689697,10.237639426],[21.791240692,10.798089981],[22.520679475,11.007570267],[22.88133812,10.93089962],[22.986078263,11.199601173],[22.56608963,11.620661736],[22.635040284,12.026799202],[22.372142792,12.441511155],[22.458890915,12.619771004],[22.197887421,12.750161171],[21.934240342,12.639361382],[21.925670623,13.046876907],[22.284210204,13.349691392],[22.092212677,13.776200295],[22.536350249,14.118578912],[22.411161423,14.595859527],[22.717199326,14.686429978],[22.671070099,14.848720551],[22.999729156,15.237211227],[22.930589676,15.550810815],[23.122280121,15.709900857],[23.578140259,15.753810882],[24.001709,15.704895],[24.000001907,19.50817303],[21.6808815,20.705064774],[18.726081848,22.167699815],[15.9981699,23.45037079],[14.995869636,23.001890182],[15.191865922,21.989744186],[15.198430062,21.491306305],[15.625590324,20.96323967],[15.590099335,20.774469377],[15.995641709,20.348470687],[15.75355053,19.947784424],[15.593798637,18.731866837],[15.505545616,16.897871017],[14.384760857,15.73155117],[13.789679527,14.863208772],[13.696022033,14.551117898],[13.485630036,14.358268738],[13.634547235,13.710688591],[14.085529327,13.077386857],[14.45982933,13.073822022],[14.588504791,12.744703293],[14.823895454,12.63351059],[15.121359826,11.779808999],[15.058415414,11.395255089],[15.080502511,10.786525727],[15.150072098,10.531280518],[15.536723137,10.098784447],[14.802422523,9.935675621],[14.208049774,10.006105424],[13.982252121,9.644258499],[14.384911536,9.267045975],[14.492976188,9.057681084],[15.108338356,8.656015397],[15.58684349,7.773245334],[15.551923752,7.570376873]]]},"properties":{"id":"b9953d64-f520-4c13-8732-5049d422edbf","code":"TCD","name":"Chad","abbreviation":"C-TCD","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.181492683,-22.814198382],[-67.587988568,-22.906568379],[-67.883150134,-22.83444802],[-67.853363445,-22.557292016],[-67.965161463,-22.05414272],[-68.180564745,-21.604072323],[-68.178367054,-21.30354183],[-68.415715014,-20.941426367],[-68.439097392,-20.640955624],[-68.738742092,-20.456789412],[-68.763484151,-20.078681206],[-68.566246132,-20.050070443],[-68.688861978,-19.748411644],[-68.404887643,-19.416169786],[-68.889647131,-19.043426332],[-69.033063049,-18.629412354],[-69.081219707,-18.091429223],[-69.31293257,-17.908921723],[-69.468683249,-17.498589528],[-69.822570801,-17.685899733],[-69.750244721,-17.947341111],[-69.965903027,-18.262184056],[-70.378163256,-18.350860664],[-70.357875727,-18.799987278],[-70.100470726,-20.07963356],[-70.051297,-20.699249999],[-69.819839001,-21.117135001],[-69.930628999,-21.424628999],[-70.145845,-21.636778],[-70.239299,-22.489432],[-70.387115215,-23.071089465],[-70.582188901,-23.104859328],[-70.589434,-23.426552],[-70.403674,-23.534922],[-70.501173,-23.791407],[-70.579852,-24.551777],[-70.455433,-25.383516],[-70.629645,-25.507031],[-70.730656,-25.779119],[-70.626709,-26.004412],[-70.738135,-26.756617],[-70.970242,-27.169323],[-70.898377,-27.621343],[-71.031817,-27.658814],[-71.295947857,-28.680443306],[-71.516856428,-28.906769243],[-71.498013404,-29.180218857],[-71.326685,-29.3466],[-71.293579628,-29.947742646],[-71.375371201,-30.15656622],[-71.653345108,-30.273595466],[-71.713883971,-30.59932215],[-71.670253823,-31.145013086],[-71.490676,-31.968316],[-71.541971,-32.178264],[-71.407531,-32.39303],[-71.431247,-32.641633],[-71.65448588,-33.027269575],[-71.682679949,-33.729164133],[-72.008708094,-34.132101926],[-72.053111649,-34.679926175],[-72.188291915,-35.066678011],[-72.638047719,-35.602068237],[-72.564276118,-35.755406185],[-72.785900497,-35.978045354],[-72.808358808,-36.273254051],[-73.15307,-37.117754],[-73.355688388,-37.243409234],[-73.644666126,-37.197470094],[-73.680869,-37.630528],[-73.478993972,-37.998132704],[-73.488589795,-38.656895695],[-73.203999728,-39.365935746],[-73.451072,-39.853883],[-73.678884,-39.96585],[-73.716352,-40.536961],[-73.936044,-40.963354],[-73.725489,-41.751519],[-73.160309,-41.791007],[-72.922115,-41.475001],[-72.628292,-41.70799],[-72.810434,-41.971646],[-72.535043,-42.043524],[-72.833957,-42.294109],[-72.83577,-42.832871],[-72.712538,-42.913202],[-73.062745,-43.322786],[-73.00256,-43.825747],[-73.271085,-44.185156],[-72.975936,-44.282823],[-72.664876,-44.503079],[-72.739695,-44.744514],[-73.097344,-44.950774],[-73.355609,-44.954429],[-73.195328,-45.292372],[-73.491328,-45.467078],[-73.531246,-45.824961],[-73.316243,-45.899499],[-73.804555,-46.573308],[-73.726146,-46.231638],[-74.103923,-45.808405],[-74.692984,-45.816294],[-75.089141,-45.891113],[-75.064346,-46.242889],[-75.641254,-46.70021],[-75.467439,-46.965078],[-75.254207,-46.852838],[-75.467937,-46.681468],[-75.04048,-46.618332],[-74.937651,-46.752741],[-74.599017,-46.820304],[-74.300432,-46.762176],[-74.06194,-46.984611],[-74.455357,-47.366532],[-74.348203,-47.599563],[-74.472604,-47.778016],[-73.681029,-47.759849],[-73.549004,-48.128984],[-74.070645,-47.966312],[-74.595886,-47.982359],[-73.980322,-48.428957],[-74.328559,-48.577413],[-74.39088,-49.388605],[-74.147793,-49.528901],[-74.306043,-49.642573],[-74.351914,-50.001944],[-74.682569,-50.162167],[-74.274639,-50.478773],[-74.096246,-50.869755],[-74.124712,-51.182954],[-73.768202,-51.244983],[-73.934908,-51.468926],[-73.521875,-52.060713],[-73.270094,-52.161469],[-73.124616,-51.93832],[-72.820462,-51.939524],[-73.362436,-52.221592],[-73.622346,-52.106921],[-73.668881,-52.624768],[-73.289558,-52.725611],[-73.18749,-53.110631],[-72.950475,-53.034139],[-73.025827,-52.861175],[-72.338002,-52.536864],[-71.559577,-52.562683],[-71.383467,-52.721609],[-71.35859,-52.807425],[-71.119242,-52.912389],[-71.34071,-53.112975],[-71.731236,-53.231518],[-72.290695,-53.25088],[-72.477668,-53.393965],[-72.147932,-53.667512],[-71.305641,-53.895229],[-70.971016,-53.782973],[-70.98837,-53.39],[-70.796291316,-52.755741609],[-70.526319009,-52.725738229],[-69.845973758,-52.487807469],[-69.670627191,-52.538360794],[-69.439505341,-52.256980984],[-69.138559463,-52.198831709],[-68.433293,-52.397915],[-69.190119444,-52.150044444],[-69.486129663,-52.151632106],[-69.995494443,-52.000708332],[-71.890351,-52.00008],[-72.338238,-51.584123],[-72.258646111,-51.24418388],[-72.285614976,-50.659898482],[-72.726647548,-50.617677445],[-73.145502512,-50.781864894],[-73.364469704,-50.518623004],[-73.521530682,-50.153553896],[-73.490898941,-49.81686292],[-73.054168004,-49.465268383],[-73.141814206,-49.179972521],[-72.919671096,-48.935912125],[-72.530041543,-48.796240413],[-72.580046554,-48.486580242],[-72.228044013,-48.318480186],[-72.527800304,-47.936881641],[-72.342077001,-47.455816],[-71.868416452,-47.233713127],[-71.95581618,-46.815213995],[-71.64779302,-46.688304825],[-71.794197195,-46.192042943],[-71.618024497,-45.980690747],[-71.79457471,-45.662713225],[-71.333301673,-45.318743324],[-71.559853112,-44.977869509],[-72.006406258,-44.783845574],[-71.205712551,-44.751327539],[-71.128883814,-44.471122393],[-71.389803141,-44.385807672],[-71.794390693,-44.414604117],[-71.797811421,-44.192879764],[-71.581183186,-43.6518247],[-71.9302424,-43.457052819],[-71.760372925,-43.164801116],[-72.037785766,-43.010184138],[-72.17871063,-42.695552514],[-72.01054811,-42.48835196],[-72.172372581,-42.138930024],[-71.727562064,-42.116925582],[-71.829096318,-41.481991565],[-71.818180143,-41.062598676],[-71.965041607,-40.745680183],[-71.827741308,-40.205795982],[-71.592099224,-39.912363552],[-71.683271746,-39.56787833],[-71.373655537,-39.28244924],[-71.426768338,-38.922759467],[-70.925051132,-38.763548118],[-70.983272634,-38.105245545],[-71.211416718,-37.689226369],[-71.118037151,-37.491514474],[-71.17382,-36.96809],[-71.018217353,-36.47394123],[-70.688477322,-36.407847756],[-70.705580202,-36.272048801],[-70.420954386,-36.156037296],[-70.365178385,-35.925422784],[-70.432174963,-35.318485103],[-70.217874398,-34.611871601],[-69.806585807,-34.248088741],[-69.897750177,-33.848213471],[-69.799914912,-33.288108503],[-70.038717763,-33.270228423],[-70.148729014,-32.465920957],[-70.321945136,-32.258538434],[-70.208194844,-31.977980942],[-70.454499837,-31.849211669],[-70.566551757,-31.583348822],[-70.49769772,-31.125102941],[-70.399898278,-31.167815713],[-70.195166881,-30.492360208],[-69.896476609,-30.354594573],[-69.963840001,-30.0883],[-69.879702066,-29.733743499],[-69.99705676,-29.28507877],[-69.791733093,-29.134665384],[-69.624443336,-28.37844621],[-69.121431621,-27.898420047],[-68.988255483,-27.447123635],[-68.787879498,-27.103729943],[-68.621655914,-27.169165029],[-68.263233,-26.918335],[-68.588014152,-26.492060427],[-68.381065119,-26.177901455],[-68.589488841,-25.448364052],[-68.457101718,-25.125571144],[-68.56809,-24.79555],[-68.2458,-24.39588],[-67.322616668,-24.034161112],[-66.99017821,-22.999960028],[-67.181492683,-22.814198382]]],[[[-68.610591855,-52.653473],[-68.795656164,-52.582131143],[-69.120586754,-52.699559825],[-69.430258554,-52.452982079],[-69.747068107,-52.776509315],[-70.417690353,-53.012635043],[-70.444823634,-53.37551112],[-70.213564001,-53.477230615],[-69.886555375,-53.379663696],[-69.37501976,-53.356481723],[-69.353206527,-53.521734871],[-69.899794788,-53.659792857],[-70.17447752,-53.834294031],[-70.024256744,-54.10558341],[-69.163199717,-54.384284066],[-69.201632629,-54.44862216],[-70.06719012,-54.252158258],[-70.267426625,-54.34770566],[-70.909758227,-54.123106987],[-70.996828696,-54.45564881],[-71.350521,-54.36765],[-72.017307,-54.516651],[-71.473878,-54.684414],[-70.975527,-54.634338],[-71.002631,-54.782484],[-70.612668,-54.910891],[-69.688526,-54.83642],[-69.084594,-54.964859],[-68.610413,-54.893407],[-68.610591855,-52.653473]]],[[[-73.360074,-42.297416],[-73.488951,-42.146002],[-73.538704,-41.796881],[-73.914677,-41.788996],[-74.17201,-42.26728],[-74.167446,-42.898953],[-74.402128,-43.235489],[-73.799645,-43.416849],[-73.563587,-43.113261],[-73.472716,-42.813658],[-73.78845,-42.596005],[-73.672758,-42.400967],[-73.360074,-42.297416]]],[[[-75.253166,-49.618196],[-75.110724,-49.863642],[-74.873351,-49.530377],[-74.871172,-50.016601],[-74.635281,-50.058952],[-74.406679,-49.902354],[-74.479476,-49.514023],[-74.388799,-49.310594],[-74.483173,-48.693504],[-74.682541,-48.652986],[-74.992268,-48.76439],[-74.793615,-49.085369],[-74.99824,-49.219619],[-75.45297,-49.274645],[-75.253166,-49.618196]]],[[[-68.50434,-54.924433],[-69.913841,-55.094063],[-69.768709,-55.35198],[-69.231595,-55.522466],[-69.229157,-55.254492],[-68.946198,-55.280998],[-68.777803,-55.513304],[-68.599071,-55.428355],[-67.979165,-55.631066],[-68.50434,-54.924433]]],[[[-71.468247,-52.662398],[-71.85594,-52.69817],[-71.960477,-52.652548],[-72.201698,-52.703154],[-72.423683,-52.815133],[-72.702362,-52.729328],[-73.008584,-52.861178],[-72.736345,-53.200088],[-73.213183,-53.243422],[-72.556456,-53.539218],[-72.521362,-53.30039],[-72.306761,-53.149657],[-71.409131,-52.833132],[-71.468247,-52.662398]]],[[[-67.97098,-54.893883],[-68.183002,-54.988203],[-68.114644,-55.223841],[-67.222538,-55.321208],[-67.043877,-55.131372],[-67.31444,-54.92631],[-67.97098,-54.893883]]],[[[-73.033365,-53.378152],[-73.246217,-53.632884],[-72.86212,-53.734006],[-72.653459,-54.045392],[-72.376886,-54.058622],[-72.312361,-53.850242],[-72.385658,-53.642305],[-73.033365,-53.378152]]],[[[-72.968914,-44.36671],[-73.247868,-44.438786],[-73.208624,-44.624391],[-73.451999,-44.639052],[-73.215242,-44.937469],[-72.821007,-44.7344],[-72.684957,-44.530165],[-72.968914,-44.36671]]],[[[-74.679074,-52.716179],[-74.56816,-52.96041],[-74.077798,-53.139659],[-73.868857,-53.087605],[-73.609347,-53.337174],[-73.096499,-53.374763],[-73.440468,-53.152588],[-74.075725,-52.960922],[-74.412124,-52.930809],[-74.679074,-52.716179]]],[[[-71.91498,-53.849754],[-72.286839,-53.918558],[-72.341808,-54.058534],[-72.564885,-54.287809],[-72.215085,-54.104159],[-71.846315,-54.321501],[-71.649556,-53.925393],[-71.91498,-53.849754]]],[[[-71.589968,-53.93649],[-71.671407,-54.230964],[-71.145698,-54.399236],[-71.000936,-54.091399],[-71.589968,-53.93649]]],[[[-70.470162,-53.56843],[-70.901383,-53.934978],[-70.844844,-54.119814],[-70.369848,-54.047818],[-70.470162,-53.56843]]],[[[-75.291465,-49.993764],[-75.469354,-50.365313],[-75.260663,-50.435801],[-74.770691,-50.151992],[-75.291465,-49.993764]]],[[[-75.311381,-47.998921],[-75.532539,-48.099802],[-75.286535,-48.38133],[-75.184788,-48.686699],[-75.024254,-48.452356],[-75.311381,-47.998921]]],[[[-74.685508,-48.114121],[-74.953275,-48.580219],[-74.521623,-48.598253],[-74.685508,-48.114121]]],[[[-74.631186,-50.712767],[-74.664222,-50.907976],[-74.934856,-50.88105],[-74.689363,-51.119331],[-74.449263,-51.000016],[-74.444202,-50.773866],[-74.631186,-50.712767]]],[[[-73.995232,-45.230427],[-73.744814,-45.284546],[-73.811131,-44.982104],[-74.234459,-45.076617],[-73.995232,-45.230427]]],[[[-75.392512,-50.464307],[-75.454026,-50.738288],[-75.300659,-50.808311],[-75.071378,-50.499863],[-75.392512,-50.464307]]],[[[-75.168401,-48.065846],[-74.96025,-48.448561],[-74.736632,-48.168719],[-75.168401,-48.065846]]],[[[-70.443368,-54.947088],[-71.000779,-54.954596],[-70.951733,-55.092215],[-70.572336,-55.113808],[-70.443368,-54.947088]]],[[[-74.606988,-51.189012],[-74.929845,-51.291613],[-75.030494,-51.478993],[-74.610918,-51.408999],[-74.606988,-51.189012]]],[[[-75.222392,-48.76939],[-75.497301,-48.781685],[-75.602094,-48.937676],[-75.449017,-49.037267],[-75.279571,-48.923654],[-75.250093,-49.048219],[-75.222392,-48.76939]]],[[[-75.280098,-48.943528],[-75.63156,-49.191176],[-75.469283,-49.244896],[-75.254148,-49.082211],[-75.280098,-48.943528]]],[[[-74.23397,-50.8483],[-74.360159,-50.458049],[-74.507655,-50.732788],[-74.23397,-50.8483]]],[[[-74.383597,-45.445498],[-74.44845,-45.783788],[-74.193319,-45.689166],[-74.383597,-45.445498]]],[[[-73.727095,-52.422384],[-74.061981,-52.632768],[-73.717323,-52.645642],[-73.727095,-52.422384]]],[[[-74.048565,-51.529985],[-74.226152,-51.736424],[-73.909357,-51.787453],[-74.048565,-51.529985]]],[[[-75.287695,-48.411663],[-75.589504,-48.455514],[-75.462712,-48.681372],[-75.287695,-48.411663]]],[[[-69.661632,-54.882373],[-69.928371,-55.069416],[-69.491202,-55.035984],[-69.661632,-54.882373]]],[[[-74.096765,-44.594313],[-74.398292,-44.616308],[-74.235994,-44.807353],[-74.096765,-44.594313]]],[[[-73.669563,-45.435988],[-73.814206,-45.623389],[-73.588378,-45.735318],[-73.669563,-45.435988]]],[[[-67.371647,-55.570057],[-67.542678,-55.729095],[-67.267165,-55.787007],[-67.371647,-55.570057]]]]},"properties":{"id":"0729a65c-4a5f-48c5-ae84-5af76f10e2fa","code":"CHL","name":"Chile","abbreviation":"C-CHL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[74.571556,37.034439],[74.821594239,37.060298921],[75.410117907,36.934669294],[75.454498276,36.721614872],[75.72970581,36.746459962],[75.918869019,36.620479584],[76.053016663,36.237319947],[75.936798095,36.13394928],[76.16899109,35.83821869],[76.555427551,35.917655945],[76.76377106,35.66964722],[77.427276612,35.469039918],[77.843078681,35.500984191],[78.017745971,35.249752045],[78.28436279,34.667362211],[78.56933594,34.611949921],[78.981460428,34.33285113],[78.729233001,34.095698999],[78.709297,33.679611],[78.823257001,33.48349],[79.180496217,33.194610595],[79.291969019,32.65344603],[79.104469299,32.371711732],[78.781181335,32.475299836],[78.760276793,32.684169769],[78.412239074,32.556060791],[78.439208983,32.246459961],[78.77102661,31.999811171],[78.72126007,31.540950776],[78.916648862,31.266628268],[79.056777951,31.47225952],[79.29962158,31.149240492],[79.589576721,30.942888261],[79.745590209,31.006151201],[80.15937042,30.81208992],[80.210960389,30.582300187],[80.593559265,30.48223114],[81.018875122,30.236837387],[81.220863342,30.007465363],[81.428161621,30.421175004],[81.992111207,30.321130754],[82.698730469,29.855230332],[82.829093933,29.689697265],[83.220184326,29.605421066],[83.635505676,29.158428193],[83.964813232,29.331315994],[84.250038147,29.037136079],[84.222602844,28.915599824],[84.859313965,28.570314407],[85.19985962,28.627033234],[85.11038208,28.346796035],[85.750267029,28.242406846],[86.06741333,27.899515151],[86.444831848,27.905500412],[86.566123962,28.108438491],[87.041618348,27.950115205],[87.128837585,27.833919525],[87.726615907,27.805114745],[87.859519959,27.94771576],[88.129981995,27.881515503],[88.616462707,28.103679658],[88.880187987,27.895240783],[88.767066956,27.564960479],[88.919456482,27.327699661],[88.977752686,27.487577438],[89.595100403,28.155784607],[89.860267638,28.230169296],[90.463912964,28.048666],[90.805114746,28.071044922],[91.208480834,27.988225938],[91.333763123,28.066419602],[91.598152161,27.859909058],[91.918762207,27.715101242],[92.255157471,27.862169266],[92.560691833,27.821041107],[92.783027649,28.183740617],[93.190368652,28.426019668],[93.336906433,28.640159607],[93.844039917,28.707389832],[94.214691163,29.084089279],[94.62815857,29.348590851],[94.871803285,29.184289932],[95.454338074,29.03699112],[95.545028687,29.215589524],[96.080535888,29.463344574],[96.477401734,28.994039535],[96.5859375,28.721588135],[96.324302673,28.530340196],[96.370941159,28.394300459],[96.66456604,28.465770721],[97.356887819,28.233200073],[97.589302063,28.534980774],[97.905067444,28.372102738],[98.150886535,28.113918305],[98.318817139,27.542770387],[98.467582703,27.690162659],[98.69291687,27.589670182],[98.686851501,27.213729858],[98.781059265,26.619880676],[98.572860719,26.119081497],[98.694259643,25.843719483],[98.475769044,25.797702789],[98.369155883,25.572999955],[97.845031738,25.267892838],[97.715736389,24.837230682],[97.575897217,24.763330459],[97.734268188,24.117031097],[97.67312622,23.862070084],[98.029762267,24.071229935],[98.846466065,24.134290695],[98.678543091,23.959962844],[98.923049926,23.42311287],[98.889778137,23.183111191],[99.511268617,23.083738327],[99.564208985,22.925800324],[99.32546234,22.751070024],[99.389518737,22.499420167],[99.218940736,22.118749619],[99.970596313,22.052030565],[99.986152649,21.718660356],[100.202583314,21.439350128],[100.577789306,21.450250626],[101.126541137,21.775440216],[101.154747009,21.563869477],[101.290397643,21.178060531],[101.74030304,21.31483078],[101.826705932,21.60297966],[101.547042847,22.250141143],[101.68901825,22.471498491],[102.145095826,22.400774002],[102.481575013,22.778799058],[103.030815125,22.4424572],[103.31943512,22.807647705],[103.531600952,22.594932557],[103.647262574,22.794525147],[103.961410522,22.506477357],[104.039291382,22.723707199],[104.267967225,22.839319229],[104.399238586,22.701955795],[104.86315918,22.943468094],[104.80116272,23.115056992],[105.237396241,23.264867783],[105.321228027,23.391620637],[105.872772217,22.932710648],[106.14502716,22.996707917],[106.278671265,22.868831635],[106.588005065,22.932483672],[106.835670471,22.806064606],[106.559577943,22.348882675],[106.765014649,22.013175964],[106.991722108,21.951656341],[107.382347107,21.595428466],[107.81551361,21.658439636],[107.991661,21.546322],[108.479309,21.560694],[108.637917,21.750416],[109.158752,21.55625],[109.171249,21.392361],[109.543472,21.505972],[109.768470764,21.355140686],[109.679581,20.858191],[109.934586,20.28125],[110.282639,20.25403],[110.530983,20.481251],[110.375969,20.82653],[110.199585,20.946882],[110.427917,21.196529],[111.064026,21.485149],[111.67292,21.53792],[111.815399,21.720423],[112.42514,21.82736],[112.592087,21.760971],[112.89875,21.854582],[113.10347,22.09153],[113.370407,21.990141],[113.553934,22.089897],[113.644028,22.640141],[114.022087,22.520416],[114.272919,22.262362],[114.610138,22.49736],[114.550972,22.72514],[114.724586,22.793751],[114.892365,22.592361],[115.210419,22.834032],[115.467636,22.70347],[115.662918,22.877361],[115.799858,22.749863],[116.26236,22.94875],[116.498756,22.93874],[116.939308,23.594585],[117.282082,23.63792],[117.713196,24.034861],[117.893196,24.027082],[118.135414,24.263193],[118.056808,24.412083],[118.457359,24.63764],[118.592636,24.572083],[119.107361,25.115417],[119.369026,25.26486],[119.150139,25.399311],[119.605141,25.568472],[119.515686,26.08292],[119.723473,26.278194],[119.783195,26.585974],[120.085693,26.647921],[120.031807,26.85931],[120.22097,26.92292],[120.509865,27.205416],[120.600418,27.58736],[121.133194,28.24625],[121.362923,28.213469],[121.624031,28.334305],[121.510139,28.664862],[121.706528,28.921806],[121.536789,29.221531],[121.935417,29.194311],[121.996246,29.822361],[121.685974,29.985971],[121.428467,30.286812],[121.161797,30.32181],[120.901786803,30.165971756],[120.689583,30.26181],[120.96875,30.538473],[121.505142211,30.814029693],[121.890419007,30.847917556],[121.861808777,31.114030838],[121.666809,31.328194],[121.299575806,31.519029617],[121.083747865,31.723470689],[121.097076417,31.786251068],[121.329032898,31.878749848],[121.629028321,31.737083434],[121.928466797,31.725690843],[121.728202821,32.031528474],[121.434028626,32.124309539],[121.393196105,32.379310608],[120.985137939,32.553749085],[120.859306,32.794579],[120.824303,33.149582],[120.278190612,34.297359467],[119.782081604,34.469860077],[119.171806,34.857361],[119.217918,35.050419],[119.640968,35.568748],[119.874863,35.613754],[120.285698,36.059029],[120.688469,36.153194],[120.930138,36.590141],[121.520142,36.752361],[122.009583,36.967922],[122.34375,36.8307],[122.646797,37.392921],[122.325966,37.408749],[122.157639,37.537922],[121.539581,37.435421],[121.376808,37.599583],[121.141525269,37.598472595],[120.94236,37.808189],[120.746529,37.830971],[120.302635,37.673472999],[120.084862,37.444031],[119.845139,37.375973],[119.749031,37.122921],[119.306526,37.055691],[118.932640075,37.341529847],[119.036529541,37.685699462],[119.289306641,37.686531066],[118.846252442,38.144584655],[118.111251831,38.144031524],[117.840698243,38.265140534],[117.56791687,38.624580384],[117.82347107,39.170139314],[118.030418396,39.217922211],[118.337082,39.02486],[118.631531,39.167919],[119.018196,39.2043],[119.201805,39.378193],[119.361808776,39.745418549],[119.529579163,39.88597107],[120.499862672,40.252082826],[120.58403,40.454029],[121.17930603,40.925140382],[121.85125,40.82848],[122.157363891,40.68069458],[122.301246643,40.474029541],[121.769859,39.913197],[121.294586,39.58403],[121.634583,39.278484],[121.657639,39.078476],[121.369308,39.059311],[121.106247,38.852089],[121.133751,38.725418],[121.717087,38.901806],[121.656807,39.020699],[122.058472,39.06097],[122.114586,39.219864],[123.227913,39.75264],[123.660416,39.855976],[124.155693,39.81736],[124.220642,39.914864],[124.385841369,40.123088836],[125.014091493,40.532649993],[125.774620056,40.88679123],[126.006347657,40.891548158],[126.287193299,41.159488679],[126.584831239,41.56418991],[126.926170349,41.808521272],[127.159362793,41.539051057],[127.408706665,41.455421448],[128.102462769,41.363018036],[128.313812255,41.583030701],[128.064025878,41.965419769],[128.955169679,42.075618745],[129.213943482,42.211853027],[129.234985351,42.374160767],[129.714370727,42.426753999],[129.89653015,43.001998902],[130.265823365,42.886070252],[130.248245239,42.71139145],[130.614608676,42.42395806],[130.623031616,42.622673035],[130.405136108,42.722320557],[130.789154053,42.864345552],[131.029602031,42.863281238],[131.305755618,43.392730724],[131.200576782,43.518459321],[131.29310608,44.07970047],[131.102661133,44.691558839],[130.954223633,44.854160308],[131.469848632,44.959480286],[131.826782226,45.308731079],[132.05859375,45.235588074],[132.18359375,44.95685196],[132.111618042,44.740684509],[132.560577393,44.555042267],[132.851974488,45.055690767],[133.135559081,45.127109528],[133.215194703,45.509113311],[133.476119995,45.654418945],[133.463882446,45.828979492],[133.908493043,46.271591188],[133.913009644,46.581459046],[134.149093627,47.259510041],[134.493530272,47.44380951],[134.771560668,47.75345993],[134.550552369,48.024398803],[134.711837769,48.275814057],[134.389266969,48.385704041],[133.468154907,48.06760025],[133.16029358,48.105701446],[132.504821778,47.711250305],[131.579559326,47.660648346],[131.500991822,47.727760315],[130.954193114,47.720272065],[130.652053833,48.109340668],[130.825531005,48.30009079],[130.525421142,48.638519288],[130.636672973,48.814239502],[130.257476806,48.861846923],[129.906417846,49.05399704],[129.520965576,49.411891938],[129.118133545,49.348709107],[128.797241211,49.562969207],[128.392028808,49.588878631],[128.260894775,49.499950409],[127.802421569,49.591247559],[127.515129089,49.834640503],[127.571479798,50.242759704],[127.368797302,50.293159486],[127.359352112,50.583278656],[127.111816406,50.933872224],[126.922851563,51.057998658],[126.979865964,51.307769913],[126.469207763,51.935310363],[126.549950174,52.130171937],[126.30267334,52.22328186],[126.343681336,52.395950318],[125.970428466,52.656791686],[125.967697143,52.760829926],[125.579658507,53.080730439],[125.188209534,53.191589356],[124.833045959,53.132690429],[124.375488281,53.246181487],[123.844421388,53.48871994],[123.257019043,53.56085968],[122.833541871,53.452903749],[122.329620361,53.497322083],[121.218490601,53.281291962],[120.876716613,53.287033081],[120.027206421,52.772190094],[120.061210632,52.584072114],[120.45249176,52.641300203],[120.719650268,52.528789521],[120.756332397,52.244480133],[120.652030945,51.934108734],[120.09249878,51.677181245],[119.987373352,51.452690125],[119.273490905,50.601753236],[119.183746337,50.345920563],[119.363807677,50.174949646],[119.197486878,50.012088775],[118.670799256,49.948379517],[117.842033386,49.506931306],[117.274269103,49.631549836],[116.700271606,49.839855194],[116.070678711,48.908874512],[116.111022949,48.792751313],[115.821495057,48.531665803],[115.8125,48.261475001],[115.514892577,48.183898925],[115.553779643,47.948326089],[115.949371337,47.679122924],[116.256286621,47.876708985],[116.826782226,47.898399354],[117.374511718,47.638057709],[117.75969696,47.990188598],[118.478698731,48.000122071],[118.775848388,47.806549072],[119.124084474,47.703308105],[119.187850952,47.51845932],[119.499694825,47.335502625],[119.716117859,47.320999145],[119.920722961,46.743499756],[119.402847289,46.454940797],[119.403701782,46.633621215],[118.935913086,46.819526674],[118.270050049,46.787563324],[117.852081299,46.532127381],[117.432952881,46.57503891],[117.37146759,46.354770661],[116.605285645,46.297119142],[116.262069702,45.950332642],[116.273498535,45.761108399],[115.72115326,45.438438415],[115.00012207,45.365173339],[114.548706,45.398499],[114.379272,45.165283],[113.62381,44.743958001],[112.758087158,44.870479583],[112.415527343,45.061523438],[111.833129883,45.048522949],[111.559875488,44.723083496],[111.393951416,44.321613311],[112.015686035,43.791320802],[111.753936767,43.690742494],[111.574508666,43.48953247],[111.047142029,43.343456268],[110.416503906,42.768920898],[110.143592835,42.636798859],[109.834716796,42.624961852],[109.547477721,42.471664429],[108.525352478,42.455341339],[107.912422181,42.412010193],[107.452796936,42.46188736],[107.266471862,42.356658935],[106.683631896,42.259391784],[105.801895141,41.957645417],[105.034484863,41.567687989],[104.534011841,41.662620545],[104.543746948,41.883792877],[103.86239624,41.807941437],[103.322082519,41.907470703],[102.73903656,42.134159088],[102.063293458,42.218688965],[101.822692871,42.470275879],[100.911582947,42.645259858],[100.326461791,42.683330537],[99.496276855,42.570083618],[98.339881897,42.639923096],[97.151489,42.773926],[96.93282318,42.712154388],[96.361427308,42.721248627],[96.324447632,42.88243103],[95.916450501,43.233505248],[95.881103515,43.40209961],[95.550781249,43.988658906],[95.374794007,44.021148682],[95.423660279,44.289268493],[94.990509033,44.254550934],[94.334007264,44.523059846],[94.197418214,44.66250229],[93.508270263,44.965343476],[91.652023316,45.05670929],[91.158081055,45.194137574],[90.8724823,45.198150635],[90.663696289,45.516906739],[90.69985199,45.690681457],[91.011497497,46.000534059],[90.934768676,46.205638885],[91.077636718,46.563964844],[90.881156921,46.976364136],[90.517845154,47.244155884],[90.456909155,47.487121602],[90.068908908,47.862121853],[89.796417236,47.818149566],[89.565917968,48.048706055],[89.041076661,47.947326659],[88.674240112,48.174560547],[88.601074218,48.34411621],[88.000106812,48.570583344],[87.792427063,48.821681976],[87.832260132,49.175006867],[87.312576295,49.099693298],[86.855201721,49.107521058],[86.810440063,48.850330353],[86.584747315,48.541519165],[85.735450745,48.371002197],[85.541595458,47.939437867],[85.698303222,47.397781373],[85.529724122,47.059398652],[85.219413756,47.051399232],[84.962593079,46.871639251],[84.704734801,46.996234894],[84.038215636,46.965351105],[83.03087616,47.212120056],[82.504440307,45.983379365],[82.275718689,45.545398712],[82.590141296,45.445621491],[82.486206055,45.120670319],[82.240821839,45.235359191],[81.827842712,45.199989319],[81.689582826,45.366630555],[81.452766419,45.268699646],[80.081832885,45.049560547],[79.851982117,44.904949188],[80.246673585,44.83958435],[80.489738464,44.711429595],[80.342826843,44.481296539],[80.519737243,43.834209442],[80.745956421,43.448501587],[80.799446107,43.175418854],[80.409706117,43.057289123],[80.590827942,42.895679475],[80.258331299,42.828430176],[80.167327881,42.63658905],[80.17819134,42.219617459],[80.226531982,42.063596725],[79.881523132,42.038009643],[79.785697936,41.909210205],[79.452018738,41.849201203],[78.708435059,41.550693513],[78.155588,41.380968],[77.669754027,41.001056672],[77.047279358,41.059703828],[76.86404419,41.020942689],[76.633987427,40.757339477],[76.521324158,40.462623597],[75.699920655,40.277290344],[75.593109132,40.658714295],[75.19393921,40.438751221],[74.82811737,40.524749755],[74.340438843,40.08385086],[74.023910523,40.09830475],[73.842292785,39.838752747],[73.941368103,39.602909088],[73.658241273,39.465084075],[73.565124512,39.240421295],[73.845520019,38.947700501],[73.80670929,38.633499145],[74.069793701,38.531066895],[74.382217408,38.653030395],[74.867256164,38.4984169],[74.822876,38.083057],[74.995079,37.762791],[74.928017,37.55624],[75.133827,37.437439],[74.89031601,37.235990524],[74.489113,37.24192],[74.571556,37.034439]]],[[[108.665413,19.308201],[108.61818695,19.099580765],[108.68624878,18.506811141],[109.155151,18.293751],[109.567917,18.18014],[109.767639,18.393751],[110.53125,18.788195],[110.640137,19.311529],[110.982635,19.643194],[110.933197,20.01264],[110.57486,20.095421],[110.197639465,20.063751221],[109.989295959,19.933750154],[109.710136,20.010695],[109.462906,19.871531],[109.261803,19.901251],[109.181252,19.653471],[108.665413,19.308201]]],[[[121.303749,31.867361],[121.161247,31.78764],[121.38958,31.616529],[121.832077,31.438473],[121.969017,31.535419],[121.303749,31.867361]]]]},"properties":{"id":"5569b043-49b7-43d8-bf38-43d1637a8290","code":"CHN","name":"China","abbreviation":"C-CHN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.70412445,-10.415103911],[105.552223206,-10.490558624],[105.667778016,-10.567778588],[105.70412445,-10.415103911]]]},"properties":{"id":"83e8e875-ab3d-4aeb-824d-d72fd51738d3","code":"CXR","name":"Christmas Island","abbreviation":"C-CXR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.22541809,10.320418358],[-109.23236084,10.299861909],[-109.201530456,10.292082787],[-109.22541809,10.320418358]]]},"properties":{"id":"2b75078e-315d-423d-bc55-7a8b6367d114","code":"XCL","name":"Clipperton Island","abbreviation":"C-XCL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.824188,-12.137175],[96.820526,-12.183445],[96.830101,-12.179369],[96.824188,-12.137175]]]},"properties":{"id":"62aad15a-eeef-4f0b-85de-6019e49a5d16","code":"CCK","name":"Cocos Islands","abbreviation":"C-CCK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.856750488,1.229928494],[-67.185218812,2.334057808],[-67.565872192,2.769107581],[-67.855041504,2.867162704],[-67.307891846,3.377990246],[-67.483940125,3.748416663],[-67.61592865,3.757788182],[-67.85066986,4.51061678],[-67.825698852,5.337379933],[-67.632926941,5.466629983],[-67.588737488,5.846688272],[-67.404739379,5.999525071],[-67.547523499,6.279095649],[-67.827026367,6.304127217],[-68.643798828,6.128194808],[-69.110298157,6.214188575],[-69.426879882,6.102223396],[-70.121681213,6.979224204],[-70.294609071,6.934592248],[-70.557540894,7.079834461],[-71.02204132,6.974288463],[-71.746429444,7.08072424],[-72.006774902,7.007916929],[-72.195358276,7.385155678],[-72.473007202,7.486440182],[-72.350975036,8.003447533],[-72.392242432,8.35640812],[-72.654380798,8.614500047],[-72.766471863,9.10688591],[-73.007209779,9.291072846],[-73.347015382,9.173742295],[-72.944748,9.842818],[-72.895729065,10.45032978],[-72.497787,11.085117],[-72.245132446,11.144904137],[-71.966057,11.650084],[-71.386253,11.81414],[-71.33847,11.853553],[-71.325264,11.846805],[-71.117111,12.091451],[-71.301804,12.353483],[-71.657639,12.435417],[-71.916939,12.162497],[-72.135551,12.238885],[-72.240692,11.89486],[-72.721802,11.699862],[-73.276382,11.285405],[-73.660706,11.251191],[-74.160141,11.32514],[-74.375137,10.745139],[-74.49292,10.966249],[-74.854584,11.105416],[-75.511703,10.572267],[-75.502304,10.303011],[-75.649582,9.752361],[-75.676803589,9.403195382],[-75.954475403,9.420597077],[-76.344764709,8.915883065],[-76.676483,8.659946],[-76.885406,8.622855],[-76.75769,8.385612],[-76.74958,7.920139],[-76.931808,7.933472],[-76.964027,8.237639],[-77.360969999,8.656805998],[-77.442207,8.484901],[-77.13267517,7.98251772],[-77.524711608,7.568700791],[-77.794425964,7.451959134],[-77.88031,7.220541],[-77.681808,7.04125],[-77.711754,6.87842],[-77.325691222,6.544029236],[-77.483192445,6.192640781],[-77.256248,5.733751],[-77.504211,5.585139],[-77.38958,5.442085],[-77.324303,4.745973],[-77.348473,4.417361],[-77.523369,4.129895],[-77.19651,3.743821],[-77.666236877,3.046441079],[-77.784858703,2.69097209],[-78.332107544,2.655323029],[-78.547637939,2.491527081],[-78.705696,2.193195],[-78.562363,1.760417],[-78.822639,1.814029],[-78.996452,1.609909],[-78.794106,1.409053],[-78.517769,1.176707],[-78.311515807,1.189986945],[-77.953781129,0.795303047],[-77.708503723,0.848449231],[-77.491744996,0.662462652],[-77.529472351,0.409131586],[-77.078193665,0.286261261],[-76.412010193,0.242288485],[-76.273429871,0.435924053],[-75.858093262,0.13493207],[-75.257133484,-0.117024026],[-74.795478821,-0.187000827],[-74.425308227,-0.498456061],[-74.249267578,-0.819948197],[-74.275863647,-0.97456342],[-73.618469239,-1.266004681],[-73.464942933,-1.589808464],[-73.538993835,-1.699926495],[-73.147605895,-1.804042936],[-73.119819641,-2.326871395],[-72.938217163,-2.452836037],[-72.595382691,-2.366598606],[-72.378677369,-2.484610319],[-71.919265746,-2.36468625],[-71.719032288,-2.174343825],[-71.389228821,-2.407346486],[-70.965286256,-2.211498736],[-70.227775574,-2.567085028],[-70.052902222,-2.76349306],[-70.698333739,-3.778891325],[-70.341461181,-3.810320138],[-69.949440002,-4.228428841],[-69.923286438,-4.190330505],[-69.450973511,-1.553037286],[-69.422439574,-1.020315646],[-69.612365724,-0.762640893],[-69.602767944,-0.506716251],[-69.922966003,-0.325426221],[-70.040336608,-0.105598309],[-70.040458679,0.565155268],[-69.806610108,0.573091447],[-69.481140137,0.73527646],[-69.107894897,0.645990491],[-69.20451355,1.013406396],[-69.322151185,1.088041425],[-69.846122742,1.092908501],[-69.848175049,1.702632667],[-69.390670776,1.731145025],[-68.186706543,1.730201364],[-68.188339233,2.015600205],[-67.878501891,1.803259612],[-67.750877381,2.018488885],[-67.312156678,2.213680267],[-67.351478578,1.950751424],[-67.092277527,1.464751483],[-67.074623107,1.108570457],[-66.856750488,1.229928494]]]},"properties":{"id":"18233c7f-16cb-4781-bb66-27b4b9daa440","code":"COL","name":"Colombia","abbreviation":"C-COL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.408473969,-11.465415955],[43.279026031,-11.39652729],[43.238750458,-11.780415534],[43.514026642,-11.900417327],[43.408473969,-11.465415955]]],[[[44.469028,-12.068751],[44.309307,-12.196248],[44.527637,-12.382082],[44.469028,-12.068751]]]]},"properties":{"id":"440f4e4e-42a7-4e2f-83d4-8836e401501a","code":"COM","name":"Comoros","abbreviation":"C-COM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-163.125075592,-18.029854459],[-163.158790248,-17.989024144],[-163.197926358,-18.058317084],[-163.157434884,-18.096097829],[-163.125075592,-18.029854459]]]},"properties":{"id":"73908a3c-edde-40e1-a4b9-1c0ac2a3b13c","code":"COK","name":"Cook Islands","abbreviation":"C-COK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.693022,11.078864],[-85.635032,10.635719],[-85.872476,10.348859],[-85.666444341,9.902468215],[-85.360711753,9.84001649],[-85.091732,9.570362],[-84.914159,9.904022],[-85.110498,10.176239],[-84.738782603,9.967175544],[-84.535842,9.519035],[-84.180849,9.444335],[-83.637464232,9.050675425],[-83.707479,8.5824],[-83.291356029,8.374353492],[-83.380639,8.746424],[-83.18215,8.621908],[-83.146502079,8.367234228],[-82.892775475,8.050566224],[-83.047992464,8.341606032],[-82.831501585,8.505536173],[-82.915588679,8.741304354],[-82.712114414,8.923196914],[-82.934218992,9.078669025],[-82.934121815,9.475080306],[-82.827215754,9.611233373],[-82.564486279,9.563861842],[-82.759735,9.654314],[-83.106993,10.009134],[-83.48714782,10.512239452],[-83.693022779,10.937869285],[-83.93912196,10.72180668],[-84.680368088,11.084493753],[-84.910777,10.943803],[-85.609820571,11.219757893],[-85.693022,11.078864]]]},"properties":{"id":"8d2e7742-c6b8-403c-8147-fe5f5c816ec7","code":"CRI","name":"Costa Rica","abbreviation":"C-CRI","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.03316307,44.870052338],[19.184112548,45.219303131],[18.919952392,45.549263],[18.81132698,45.911281586],[18.462974549,45.759075164],[17.858472825,45.774066925],[17.27098465,46.00510025],[17.179605484,46.153518678],[16.584312439,46.479049682],[16.254442216,46.515022278],[15.996046066,46.318244934],[15.651285172,46.213462829],[15.679810524,45.869182587],[15.256242751,45.740131379],[15.377919198,45.49200058],[14.689496994,45.527175903],[13.567174911,45.48513794],[13.635417,45.069305],[13.86625,44.808472],[14.170416833,44.980285646],[14.281527001,45.305138001],[14.479585,45.312916],[14.831528664,45.109584809],[14.9879179,44.574028016],[15.277361,44.365723],[15.161251068,44.185138703],[15.574027,43.816528],[15.938194,43.666527],[16.120695,43.471527],[16.349306106,43.550971984],[16.944583893,43.360137939],[17.576017379,42.942398072],[17.666503907,43.077087403],[17.346467972,43.267295837],[17.306247711,43.472480774],[17.036762238,43.57131195],[16.713905334,43.874317169],[16.244707107,44.197971345],[16.049072265,44.65209961],[15.819162369,44.738529205],[15.758016586,45.167304992],[16.024816513,45.21982193],[16.327577591,45.013275147],[16.501817703,45.218250274],[16.893648147,45.242534637],[17.178274154,45.15210724],[17.991212845,45.163642883],[18.540554047,45.104312898],[19.03316307,44.870052338]]],[[[17.648450851,42.888294219],[18.507923,42.45433],[18.458923007,42.565307821],[17.801698744,42.892517169],[17.648450851,42.888294219]]]]},"properties":{"id":"65cd3a6e-bc26-41da-90f9-7272072f65ec","code":"HRV","name":"Croatia","abbreviation":"C-HRV","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-78.641808,22.522381],[-78.099586,22.29875],[-77.938751,22.037916],[-78.314308,22.156527],[-78.699028,22.383751],[-79.249863,22.372641],[-80.013748,22.935417],[-80.260971,22.900417],[-80.624031,23.080973],[-81.169586,23.02486],[-81.257919,23.147362],[-82.029586793,23.187084198],[-82.736251832,23.019861222],[-83.220139,22.995695],[-84.206528,22.557917],[-84.429031,22.204306],[-84.301529,22.024029],[-84.584862,21.994305],[-84.439583,21.767084],[-84.035698,21.905416],[-83.905975,22.171806],[-83.359306,22.207083],[-83.066802979,22.490695953],[-82.630417,22.679583],[-81.880973817,22.679582596],[-81.701248,22.454027],[-82.143471,22.420973],[-81.755142,22.164583],[-81.414307,22.181805],[-80.886253,22.037361],[-80.462364,22.081249],[-80.008194,21.754864],[-79.214027405,21.543193818],[-78.74958,21.637917],[-78.602364,21.481527],[-78.487083,21.030138],[-78.039307,20.700695],[-77.347915649,20.715694428],[-77.07708,20.476251999],[-77.181526,20.28653],[-77.629303,20.019306],[-77.67292,19.825972],[-77.323753,19.900417],[-76.225418091,19.995416641],[-75.607361,19.89625],[-74.982635,19.920973],[-74.835975646,20.034584046],[-74.234863281,20.092361451],[-74.228752137,20.318750382],[-74.489860535,20.340694428],[-74.741531,20.62347],[-75.524582,20.792084],[-75.716804504,21.126806259],[-76.016525,21.084576],[-76.380142,21.277082],[-76.722359,21.292917],[-77.106819,21.605696],[-77.649025,21.879028],[-77.865417,22.20764],[-78.343475,22.53264],[-78.641808,22.522381]]],[[[-82.967087,21.941807],[-83.08625,21.778475],[-82.885414,21.437639],[-82.60347,21.524303],[-82.691254,21.88236],[-82.967087,21.941807]]]]},"properties":{"id":"37b0ea3d-3a32-48a3-8188-e2d8d0076bb6","code":"CUB","name":"Cuba","abbreviation":"C-CUB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.15097,12.392362],[-69.137917,12.26875],[-68.790413,12.034029],[-68.853752,12.175139],[-69.15097,12.392362]]]},"properties":{"id":"5bceb332-a2c3-4c27-b787-c1a33dbd0c39","code":"CUW","name":"Curaçao","abbreviation":"C-CUW","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[33.67452139,35.043880133],[33.400318146,35.197750091],[32.841957092,35.079792023],[32.722362518,35.180473329],[32.632953604,35.189304],[32.601997,35.178196],[32.27597,35.099583],[32.434326,34.734924],[32.760101319,34.669109344],[32.990730286,34.634426117],[33.603748322,34.816806793],[33.702095033,34.979026794],[33.67452139,35.043880133]]],[[[33.888787151,34.958677121],[34.004291534,35.065361023],[33.906524816,35.069122147],[33.888787151,34.958677121]]]]},"properties":{"id":"c2eeeb53-5fff-44f6-befc-f55e743b0d08","code":"CYP","name":"Cyprus","abbreviation":"C-CYP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.924345983,48.621355889],[17.199533462,48.881229401],[17.51516533,48.809707642],[18.106492997,49.081001282],[18.157957076,49.272239686],[18.558023453,49.512805939],[18.850496293,49.51858139],[18.572908402,49.921623231],[17.868484497,49.972496032],[17.604438781,50.170928956],[16.907901764,50.449447632],[17.018518448,50.235725402],[16.706027985,50.09658432],[16.360765458,50.37946701],[16.34308052,50.661506654],[16.180171966,50.62851715],[15.376022339,50.82126999],[15.236557961,50.99866867],[14.82269392,50.871021201],[14.57870388,51.00030899],[13.525244713,50.704410554],[12.936410998,50.411636001],[12.512522698,50.3961792],[12.261113167,50.06469345],[12.547730445,49.920341491],[12.40315628,49.761936188],[12.655893326,49.434547424],[12.949971199,49.342868806],[13.495621682,48.941345216],[13.84017735,48.771221552],[14.053661651,48.607290441],[14.707355335,48.586049934],[14.959571746,48.760716498],[14.99700186,49.015724043],[15.27795496,48.993056593],[16.094939897,48.747288846],[16.46746946,48.809132098],[16.924345983,48.621355889]]]},"properties":{"id":"8ea22f19-bb6b-4bb7-89b4-3a168457e565","code":"CZE","name":"Czechia","abbreviation":"C-CZE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.518918037,10.433259965],[-5.772508145,10.440250398],[-6.023159981,10.198860169],[-6.217734813,10.726328851],[-6.642239093,10.672245026],[-6.672196864,10.365130425],[-6.947463988,10.369640351],[-6.975772857,10.195070267],[-7.384366989,10.282631874],[-7.641550065,10.488121033],[-7.978549004,10.175108911],[-8.165474891,9.926783562],[-8.149227142,9.532054901],[-7.857914924,9.43301773],[-7.94704485,8.786557197],[-7.772655011,8.767118454],[-7.641070842,8.377433776],[-7.985136032,8.483769416],[-8.242429734,8.456877709],[-8.068925857,8.161513328],[-8.071770667,7.808342934],[-8.214912415,7.533728123],[-8.472180367,7.55458212],[-8.290595054,7.18177414],[-8.338418007,6.76061678],[-8.560628892,6.561457158],[-8.171671868,6.27564478],[-8.00530243,6.315148831],[-7.692998886,5.904920101],[-7.422359944,5.843457223],[-7.378786087,5.623882771],[-7.470920087,5.150407792],[-7.591788768,4.905591965],[-7.522624015,4.362362862],[-6.897084237,4.668472767],[-5.85014,5.035695],[-3.974859954,5.255138875],[-3.109048268,5.115950427],[-2.759933118,5.102472925],[-2.761353568,5.599316277],[-2.952731868,5.715983096],[-3.19022862,6.348717136],[-3.225754754,6.824867935],[-2.953354946,7.239177758],[-2.808562475,7.965602956],[-2.494887667,8.20517893],[-2.615926525,8.914301113],[-2.7789206,9.051471216],[-2.687074716,9.491439935],[-2.763180018,9.401107789],[-3.21431303,9.920919418],[-3.708622933,9.942521095],[-4.267177104,9.73729229],[-4.707960129,9.68799019],[-4.972650052,9.907730102],[-5.128709793,10.307089806],[-5.407209873,10.295559883],[-5.518918037,10.433259965]]]},"properties":{"id":"77aa3676-0cb0-49d2-b3e5-2a206fe161f7","code":"CIV","name":"Côte d'Ivoire","abbreviation":"C-CIV","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.992247019,-10.896182914],[24.374083939,-11.088782287],[24.297883939,-11.399182287],[25.343237939,-11.214876287],[25.331337939,-11.620076287],[25.508839191,-11.78707337],[26.040437939,-11.929776287],[26.473337939,-11.916376287],[26.711437939,-12.001076287],[27.008194646,-11.83967902],[27.016276636,-11.615638271],[27.46880253,-11.930631319],[27.650922915,-12.284833747],[27.934337939,-12.260276287],[28.315237939,-12.418976287],[28.809437939,-12.998476287],[28.995937939,-13.426676287],[29.175137939,-13.446276287],[29.574537939,-13.212476287],[29.811437939,-13.444976287],[29.822337939,-12.147576287],[29.585337939,-12.184976287],[29.494337939,-12.451376287],[29.050937939,-12.378176287],[28.964237939,-12.209376287],[28.447937939,-11.819576287],[28.391837939,-11.587176287],[28.631286621,-10.528686523],[28.670471191,-9.815185547],[28.390637939,-9.225676287],[28.782437939,-8.929676287],[28.994637939,-8.460476287],[30.429537939,-8.273276287],[30.795076198,-8.276758081],[30.238563537,-7.021797181],[29.82697487,-6.642999173],[29.594978333,-6.251998901],[29.575977326,-5.555999279],[29.373088836,-5.016916276],[29.391475678,-4.445250033],[29.253709792,-3.918102026],[29.200918,-3.308666],[29.256701,-3.087956],[29.040174484,-2.743100167],[28.866735459,-2.435736656],[29.093341827,-2.276407718],[29.125940323,-1.889606118],[29.360721948,-1.511828216],[29.593131994,-1.387020823],[29.587446213,-0.89732802],[29.738924475,0.128165841],[29.990437982,0.535014091],[29.991146088,0.850392998],[30.240121842,1.111332059],[30.549726485,1.266250968],[30.700956344,1.495999575],[31.033359528,1.757411479],[31.305704117,2.157105923],[30.957658768,2.403942585],[30.741388321,2.44887805],[30.884183883,2.814409017],[30.777761458,3.026928902],[30.870231629,3.482681989],[30.771329879,3.674677373],[30.264030457,3.956274986],[29.798370362,4.368258954],[29.820289612,4.558716774],[29.475528717,4.667393684],[29.199041366,4.356179715],[29.028129577,4.490709782],[28.414470673,4.282824516],[28.026273728,4.538108826],[27.463420868,5.016152859],[27.078672409,5.204131127],[26.872159957,5.033754826],[26.488008499,5.046394826],[26.208040237,5.237008095],[25.90848732,5.164886951],[25.49746704,5.364079],[25.317970276,5.036222934],[24.784543991,4.905525207],[24.407299043,5.110554695],[24.090251922,4.910327912],[23.275201798,4.63040018],[22.974784851,4.846968651],[22.790510177,4.714529992],[22.550441742,4.215419769],[22.281259536,4.11209488],[21.659999847,4.309000015],[21.564785005,4.247347833],[20.856983185,4.445547103],[20.612672805,4.401634216],[20.357860564,4.736951828],[19.847999573,5.073999882],[19.403354644,5.121106624],[19.097999573,4.921999932],[18.794000625,4.422999859],[18.545999527,4.302000046],[18.648849486,4.076396942],[18.63500023,3.471093416],[18.641740798,3.208940029],[18.429136276,2.76823306],[18.106023788,2.266630888],[18.067958831,1.521394849],[17.850116731,1.012439013],[17.962598801,0.408499987],[17.714000702,-0.128000065],[17.700065612,-0.567604006],[17.341194153,-0.990492999],[16.846000671,-1.263999939],[16.589008331,-1.745197058],[16.24200058,-2.122999907],[16.184278488,-2.382886887],[16.187095643,-3.395443915],[15.900524139,-3.951448679],[15.556356429,-4.048159598],[15.415301322,-4.296506881],[15.194307327,-4.347605228],[14.687930108,-4.9175601],[14.412021637,-4.893554688],[14.313832283,-4.31740141],[13.819194795,-4.422533989],[13.690182687,-4.768346786],[13.427568436,-4.88245964],[13.104763032,-4.648590087],[12.817461014,-4.782361985],[12.537505545,-5.138915619],[12.535100938,-5.733852863],[12.20804206,-5.768321414],[12.437361718,-6.057309628],[12.946122,-5.903196],[13.005095482,-5.85574007],[13.122765,-5.898057001],[13.304933547,-5.883372307],[13.987770558,-5.842859506],[14.610759735,-5.909718037],[14.962183952,-5.873423576],[16.365940093,-5.864689827],[16.599737167,-5.918553829],[16.721578598,-6.166262864],[16.689979553,-6.400587081],[16.94037056,-6.874828816],[16.955801011,-7.207468986],[17.185121537,-7.448730946],[17.560329437,-8.127449036],[18.10036087,-8.09905529],[18.216976166,-7.989453792],[19.435684204,-7.998535155],[19.357408524,-7.928155422],[19.529359817,-7.446960926],[19.543858846,-6.999790669],[20.301710128,-6.998032092],[20.621345521,-6.931686401],[20.543514251,-7.281459808],[21.779689788,-7.274680138],[21.853217601,-7.555323958],[21.745258332,-7.929479599],[21.95072174,-8.450712204],[21.797969819,-9.430346489],[22.024482726,-9.833795547],[22.184971492,-9.916891098],[22.312498092,-10.340161324],[22.334419251,-10.755910873],[22.180999755,-10.852000236],[22.299690247,-11.243968964],[22.584999084,-11.036000251],[23.202999115,-11.102000236],[23.435529709,-10.938199998],[23.871999741,-11.017000198],[23.992247019,-10.896182914]]]},"properties":{"id":"387e6dbc-43d3-4936-aa97-6676363be6f8","code":"COD","name":"Democratic Republic of the Congo","abbreviation":"C-COD","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.419618606,54.831581115],[9.752499,54.966526],[9.496388,55.154861],[9.715833,55.236252],[9.593055726,55.420417785],[9.969721,55.87986],[10.256389,55.915974],[10.21083355,56.13708496],[10.381388,56.288193],[10.51361,56.094582],[10.693055,56.140415],[10.951387999,56.456528],[10.356388,56.564860999],[10.238612,56.978195],[10.016943,57.078194],[9.286945,56.993195],[9.174166,56.711807],[8.949722,56.798195],[8.643611,56.46764],[8.162501,56.646252],[8.134705,56.118896],[8.301086,56.06427],[8.078611,55.556252],[8.620277,55.427082],[8.63841395,54.911201268],[9.419618606,54.831581115]]],[[[12.26513958,55.240970612],[12.251944542,55.553195954],[12.596389,55.680138],[12.606944,56.043472],[12.290834427,56.129306793],[11.850833,55.974861],[12.026945,55.900417],[11.838056565,55.685695648],[11.6497221,55.939025879],[11.367499352,55.767082215],[10.996944,55.722084],[11.158612,55.566807],[11.248054,55.204582],[11.646388,55.176529],[12.05361,54.962639],[12.26513958,55.240970612]]],[[[10.2725,57.619026],[9.95694542,57.597084045],[9.398611,57.163471],[8.589723,57.12236],[8.229166,56.790138],[8.469166,56.781528],[8.670833,56.952084],[9.130277,57.039307],[9.240277,56.990696],[9.784722,57.106529],[10.010835,57.089027],[10.333054,56.989029],[10.545835,57.226807],[10.534721,57.46875],[10.2725,57.619026]]],[[[10.439166069,55.469028473],[10.321944,55.620693],[9.754168,55.509861],[9.888612,55.244862],[10.197501,55.063194],[10.744167,55.069027],[10.749168,55.482082],[10.439166069,55.469028473]]],[[[11.54862,54.829029],[11.074166,54.940418],[11.003057,54.763474],[11.464167,54.608196],[11.818055,54.65097],[11.54862,54.829029]]],[[[15.139774323,55.139862061],[14.824723243,55.252082825],[14.710277558,55.081249237],[15.076389313,54.987640381],[15.139774323,55.139862061]]],[[[8.940362,56.980141],[8.54745,56.783474],[8.641945,56.669029],[8.876944,56.804306],[8.940362,56.980141]]],[[[11.829166,54.967083],[11.974167,54.697083],[12.1575,54.847084],[11.829166,54.967083]]],[[[10.944168,55.162361],[10.683057,54.920971],[10.7275,54.733196],[10.944168,55.162361]]]]},"properties":{"id":"b15c3edf-675f-4483-b54d-fb2a98f457c4","code":"DNK","name":"Denmark","abbreviation":"C-DNK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.93608288,10.966264936],[43.258129,11.460972],[43.152916,11.591805],[42.68486,11.54875],[42.783195496,11.749028206],[43.362640381,11.977083205],[43.408195496,12.219584466],[43.133750937,12.706777681],[42.865238191,12.592853547],[42.700863,12.356982],[42.35252012,12.439524959],[41.748233987,11.492749006],[41.780303585,10.958093459],[42.394844478,10.968598433],[42.626780081,11.073334723],[42.93608288,10.966264936]]]},"properties":{"id":"0b88d1da-065a-4cca-8fdb-4f9a818efef0","code":"DJI","name":"Djibouti","abbreviation":"C-DJI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.374862671,15.270695686],[-61.255695344,15.517915726],[-61.458751679,15.638195037],[-61.374862671,15.270695686]]]},"properties":{"id":"d758561e-3975-4f9b-9359-5f5f8f31f8a6","code":"DMA","name":"Dominica","abbreviation":"C-DMA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.753136,18.03014],[-71.422081,17.60486],[-71.057640076,18.15541649],[-70.842361,18.348194],[-70.58152771,18.40680504],[-70.506805,18.194027],[-70.154029846,18.230417252],[-70.007919312,18.423749924],[-69.208190917,18.452638627],[-68.84375,18.374027],[-68.640694,18.217361],[-68.34375,18.642360688],[-68.746528626,18.960138321],[-69.626808001,19.082361001],[-69.617638001,19.225414],[-69.228752,19.179859],[-69.151802,19.302361],[-69.846527099,19.379861832],[-69.9006958,19.646249772],[-70.303474426,19.653474808],[-70.839859008,19.905971527],[-71.249031067,19.829025269],[-71.661247,19.894861],[-71.758804322,19.702087403],[-71.636230468,19.234956741],[-71.770469666,19.03172493],[-71.732223511,18.726322175],[-72.003883361,18.626689911],[-71.687995911,18.34273529],[-71.753136,18.03014]]]},"properties":{"id":"6e4e15dc-5172-475e-878f-763c3dcf2f32","code":"DOM","name":"Dominican Republic","abbreviation":"C-DOM","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-78.794106,1.409053],[-79.160324097,1.098788142],[-79.41595459,1.076405883],[-80.092125,0.77552],[-80.003013612,0.565868259],[-80.141609192,-0.048787407],[-80.493171693,-0.398954509],[-80.421897888,-0.594650923],[-80.585426,-0.928411],[-80.912544,-1.058679],[-80.754807,-1.322586],[-80.851753,-1.60149],[-80.726470948,-1.92535162],[-80.910316467,-2.220810652],[-80.435424804,-2.641442538],[-79.769646,-2.521075],[-79.907554626,-3.160489558],[-80.236023,-3.425933],[-80.159003999,-3.868496001],[-80.431625366,-3.990227221],[-80.452453613,-4.388850213],[-80.104293823,-4.291343211],[-79.795356751,-4.492056846],[-79.487182618,-4.528632163],[-79.265213012,-4.967052459],[-78.894172668,-4.885650158],[-78.706146239,-4.6240592],[-78.560699464,-3.985218286],[-78.411712647,-3.788740157],[-78.355674744,-3.403700112],[-78.246658325,-3.402604818],[-77.845581054,-2.998627901],[-76.692108155,-2.609971286],[-76.043251038,-2.124619483],[-75.554389953,-1.5439471],[-75.387115479,-0.931501925],[-75.187149047,-0.972799777],[-75.253631592,-0.519662023],[-75.538246154,-0.175718456],[-75.257133484,-0.117024026],[-75.858093262,0.13493207],[-76.273429871,0.435924053],[-76.412010193,0.242288485],[-77.078193665,0.286261261],[-77.529472351,0.409131586],[-77.491744996,0.662462652],[-77.708503723,0.848449231],[-77.953781129,0.795303047],[-78.311515807,1.189986945],[-78.517769,1.176707],[-78.794106,1.409053]]],[[[-90.960922,-0.962562],[-90.829712,-0.716843],[-90.954842,-0.434625],[-91.176445,-0.220488],[-91.311005,0.133778],[-91.474457,0.107561],[-91.346481,-0.3192],[-91.072769,-0.61115],[-91.511742,-0.906241],[-91.181686,-1.044913],[-90.960922,-0.962562]]],[[[-80.012482,-2.679892],[-80.221092,-2.740364],[-80.124237,-3.020488],[-80.012482,-2.679892]]],[[[-90.310112,-0.750175],[-90.26593,-0.48935],[-90.513557,-0.533087],[-90.310112,-0.750175]]]]},"properties":{"id":"55c1c474-df3c-421b-be2e-2e2151fe7d4d","code":"ECU","name":"Ecuador","abbreviation":"C-ECU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.999998094,21.999200822],[27.633972168,22.007652283],[33.166507721,22.006193162],[33.564083,21.725389],[34.005215,21.772324],[34.16069,22.2071],[34.691956,22.297911],[34.951351,22.857571],[35.21217,22.787298],[35.621292,23.145147],[35.481529,23.501806],[35.497639,23.974306],[35.691528,23.909595],[35.136806,24.514862],[35.070972,24.753752],[34.541248322,25.74736023],[34.427360535,25.850416184],[33.932362,26.678194],[33.988194,26.883196],[33.511806,27.670416],[33.483196,27.98875],[32.869304656,28.570415497],[32.620693207,28.987361909],[32.574584961,29.373750688],[32.360694886,29.678195954],[32.558471681,29.959861755],[32.72403,29.463472],[33.181252,29.001247],[33.223472595,28.586805344],[33.567359924,28.293750762],[33.714027404,28.066249847],[34.054027557,27.810972214],[34.258472442,27.790971757],[34.416805268,27.964027404],[34.410694122,28.322916031],[34.627082825,28.730138779],[34.743195,29.313192],[34.910694122,29.497083664],[34.855873108,29.739179611],[34.268009186,31.22360611],[34.229026794,31.334306718],[33.70097351,31.120971679],[33.138748,31.044027],[33.105694,31.189028],[32.790417,31.044306],[32.576805,31.065695],[31.941528,31.516527],[31.532361983,31.44708252],[31.033195495,31.599306106],[30.070972,31.329584],[29.533750535,30.964582443],[28.976807001,30.832641999],[28.437362671,31.087083816],[27.904306412,31.108194352],[27.443743,31.216223],[27.340197,31.37278],[26.494532,31.495329],[25.885139466,31.628749848],[25.51625061,31.522916794],[25.173194885,31.535139084],[25.148199,31.667885],[24.861114124,31.405910214],[25.018274,30.777979],[24.926531784,30.481125907],[24.69809919,30.148845818],[24.999435,29.250158],[24.999998094,21.999200822]]]},"properties":{"id":"3afefe73-4b2a-491c-b2e8-fc075513b3f5","code":"EGY","name":"Egypt","abbreviation":"C-EGY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.124862672,13.741559982],[-89.822082519,13.532360077],[-89.292358399,13.483472824],[-88.733475,13.225418],[-87.899025001,13.15264],[-87.811859131,13.403461457],[-87.710273743,13.81076336],[-88.103027343,13.98646164],[-88.497642517,13.956601144],[-89.349784852,14.422576904],[-89.519424439,14.224593162],[-89.891952515,14.043659211],[-90.124862672,13.741559982]]]},"properties":{"id":"11ec7598-f183-46b1-ba77-74975a208061","code":"SLV","name":"El Salvador","abbreviation":"C-SLV","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.821264267,2.34792018],[9.811804771,1.941807032],[9.39541626,1.271805049],[9.585694,1.030909],[9.996741295,0.997637987],[11.334781647,0.999262989],[11.334410667,2.172394752],[10.190143585,2.171736956],[9.897463798,2.202226878],[9.821264267,2.34792018]]],[[[8.67736,3.209304999],[8.932083131,3.636250973],[8.61375,3.671805],[8.453472,3.269027],[8.67736,3.209304999]]]]},"properties":{"id":"0a87d86c-1195-4f60-b4a2-8380f2189505","code":"GNQ","name":"Equatorial Guinea","abbreviation":"C-GNQ","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.133750937,12.706777681],[43.019028,12.922083],[42.784306,12.842639],[42.547638,13.195417],[42.394859,13.202918],[42.289585,13.564305],[41.969582,13.852916],[41.69125,13.931806],[41.18597,14.627362],[40.750973,14.811805],[40.569584,14.999027],[40.160973,14.988195],[39.875137,15.492084],[39.715972901,15.246527672],[39.437084198,15.804582596],[39.241528,16.074026],[39.142082,16.705137],[38.937084,17.375694],[38.569859,18.006536],[38.260128,17.558592],[38.003860272,17.55707905],[37.515297616,17.336853131],[37.394653,17.047132],[37.021255182,17.096046089],[36.901100158,16.675794601],[36.962570191,16.435497283],[36.541568756,15.228030205],[36.438766479,15.156636239],[36.56085968,14.266368867],[37.089298247,14.267999649],[37.133842469,14.405420303],[37.670742035,14.50416851],[37.940296174,14.845477104],[38.261081696,14.667143822],[38.515857697,14.405078889],[39.200321198,14.611037255],[39.249748229,14.392259598],[39.502674103,14.677010537],[39.949863,14.410645],[40.222588,14.47863],[40.650531769,14.229389191],[41.077301025,13.878547669],[41.972553253,12.983165742],[42.35252012,12.439524959],[42.700863,12.356982],[42.865238191,12.592853547],[43.133750937,12.706777681]]],[[[39.958473,15.885971],[39.96236,15.619305],[40.42625,15.561805],[39.958473,15.885971]]]]},"properties":{"id":"30d801eb-5962-4d26-a34a-1e73c311526b","code":"ERI","name":"Eritrea","abbreviation":"C-ERI","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[24.353975,57.875771],[25.11867714,58.081226349],[26.058393479,57.836559296],[26.249240875,57.620002746],[26.499868392,57.524509431],[26.861667633,57.592041016],[27.336309299,57.546298988],[27.553926469,57.831874847],[27.782720999,57.830853],[27.479160308,58.291648864],[27.553665,58.423527],[27.455129624,58.790611267],[27.741879,58.995518],[28.075740814,59.455883027],[27.914077758,59.401725769],[26.937095642,59.438396455],[26.047449,59.623711],[25.42325592,59.489524841],[24.365475,59.471821],[24.093334198,59.273250581],[23.491331101,59.20994568],[23.426888,58.934429],[23.65733,58.746292],[23.764069,58.333492],[24.265896,58.27636],[24.587236405,58.311023712],[24.353975,57.875771]]],[[[22.007389,57.927116],[22.200743,57.981743],[22.330894,58.214085],[22.915325,58.300087],[23.3706,58.529499],[23.34874344,58.647228241],[22.282587051,58.559379577],[21.866737366,58.261470795],[22.21546936,58.157302856],[22.007389,57.927116]]],[[[22.59189415,58.690349579],[23.06917,58.838379],[22.657871246,59.086654663],[22.377954482,58.934356691],[22.59189415,58.690349579]]]]},"properties":{"id":"633dd12e-d695-4162-9b29-a5e6922637b3","code":"EST","name":"Estonia","abbreviation":"C-EST","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.35252012,12.439524959],[41.972553253,12.983165742],[41.077301025,13.878547669],[40.650531769,14.229389191],[40.222588,14.47863],[39.949863,14.410645],[39.502674103,14.677010537],[39.249748229,14.392259598],[39.200321198,14.611037255],[38.515857697,14.405078889],[38.261081696,14.667143822],[37.940296174,14.845477104],[37.670742035,14.50416851],[37.133842469,14.405420303],[37.089298247,14.267999649],[36.56085968,14.266368867],[36.499076842,13.846787453],[36.051094055,12.722047806],[35.64748764,12.60518551],[35.257106782,11.934239388],[35.046604156,11.735230447],[35.078003,11.521461],[34.929664611,11.235751152],[34.982345582,10.898525238],[34.765399933,10.755145074],[34.609779358,10.897207261],[34.297584534,10.58566761],[34.351406097,10.220916748],[34.233119964,10.047500611],[34.104160308,9.48771286],[34.142097473,8.610931397],[33.772457122,8.369579315],[33.62003708,8.468573571],[33.192653656,8.406893731],[33.189357758,8.13451004],[33.050086975,7.787284852],[33.672336578,7.692183971],[34.028770448,7.369585514],[34.19324112,7.054917813],[34.484283448,6.904287815],[35.013782502,6.444958211],[34.990890502,5.895375729],[35.300106049,5.332475186],[35.578666687,5.414402485],[35.854255676,5.314599514],[35.786293029,4.731453418],[35.869949342,4.627306938],[36.049079896,4.449375152],[36.838798524,4.443952083],[37.039394379,4.361724377],[38.12028122,3.608499527],[38.517353057,3.626324177],[38.907649994,3.509658813],[39.57862854,3.472568035],[39.861888886,3.864088296],[40.775180817,4.277197837],[41.112724304,3.986856937],[41.926216126,4.002295495],[42.203907014,4.161425592],[42.692008973,4.224504948],[43.033039094,4.554564476],[43.397472381,4.784063816],[44.028961182,4.939652444],[45.001667022,4.932207108],[47.958229065,8.012583732],[46.999328614,7.985087871],[44.156364442,8.937956809],[43.415462494,9.476858139],[43.213394165,9.871968269],[42.804515946,10.314758127],[42.704685212,10.574638368],[42.93608288,10.966264936],[42.626780081,11.073334723],[42.394844478,10.968598433],[41.780303585,10.958093459],[41.748233987,11.492749006],[42.35252012,12.439524959]]]},"properties":{"id":"7c9cdfc8-8c84-46b8-be2a-aa49cbb573de","code":"ETH","name":"Ethiopia","abbreviation":"C-ETH","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-58.965279,-51.234859],[-59.213287,-51.71764],[-59.591919,-51.903809],[-59.624168,-52.174583],[-59.41803,-52.141296],[-59.055832,-52.249306],[-58.930279,-52.105694],[-58.25473,-51.804306],[-57.83139,-51.722084],[-57.849724,-51.412918],[-58.669167,-51.334583],[-58.965279,-51.234859]]],[[[-59.388046,-51.335972],[-59.553612,-51.42625],[-60.012501,-51.417915],[-60.505798,-51.53009],[-60.22361,-51.631527],[-60.569702,-51.983704],[-61.004166,-52.038193],[-60.614162,-52.259598],[-60.333057,-52.154861],[-60.262501,-51.995693],[-59.858612,-51.964863],[-59.219723,-51.402084],[-59.388046,-51.335972]]],[[[-60.861946,-51.763474],[-61.156387,-51.83514],[-61.002499,-51.989861],[-60.861946,-51.763474]]]]},"properties":{"id":"a428172b-b4e6-4d63-afb5-1f6fc6bcf59f","code":"FLK","name":"Falkland Islands","abbreviation":"C-FLK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-6.911979,62.148438],[-6.989583,62.339584],[-7.261979103,62.176559448],[-6.770833,61.941666],[-6.911979,62.148438]]]},"properties":{"id":"b3b0c329-6a0a-4f8c-a9f6-d49d8c4994ae","code":"FRO","name":"Faroe Islands","abbreviation":"C-FRO","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[178.452499,-17.561945],[178.1875,-17.320833],[177.610748,-17.454168],[177.250046,-17.88839],[177.338715,-18.124662],[177.886948,-18.275],[178.34111,-18.120832],[178.557495,-18.1525],[178.584167,-17.645836],[178.452499,-17.561945]]],[[[179.045914,-16.820597],[179.197266,-16.699545],[179.589645,-16.802359],[179.835831,-16.222778],[179.648605,-16.19861],[179.292358,-16.419785],[178.945328,-16.46064],[178.586441,-16.801477],[178.688232,-16.997997],[179.045914,-16.820597]]]]},"properties":{"id":"ecacf86c-eaa4-4f17-9aec-b94f29ba3833","code":"FJI","name":"Fiji","abbreviation":"C-FJI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.154009,65.823013],[24.901562,65.657814],[25.34375,65.45417],[25.236979,65.13385],[25.415104,64.950516],[24.544271,64.81823],[24.331249,64.529167],[24.03489685,64.410934449],[23.403646,63.940102],[22.819271,63.899479],[22.423437,63.484894],[22.370312,63.292191],[21.997917,63.331249],[21.528646,63.23177],[21.560417,63.079166],[21.241667,62.854168],[21.081249,62.660416],[21.35573,62.331772],[21.289583,61.987499],[21.434896,61.926563],[21.655729,61.582809],[21.323437,61.039063],[21.358334,60.674999],[21.833334,60.356251],[22.59375,60.377083],[22.391666,60.002083],[22.680277,59.990971],[22.879168,60.137501],[22.970278,59.903473],[23.918612,59.94014],[24.35,60.089584],[24.415277,59.960693],[24.844271,60.207809],[24.956249,60.154167],[25.61875,60.331249],[25.785938,60.238022],[27.09375,60.53125],[27.616667,60.46875],[27.810535,60.536575],[28.840395,61.131451],[29.245567104,61.273418357],[30.718795777,62.212890625],[31.22984314,62.507061005],[31.576831817,62.914161682],[31.219272614,63.231616975],[30.505151749,63.461864471],[29.98095131,63.754478455],[30.23889923,63.816188812],[30.526166916,64.049087526],[30.484960555,64.254913331],[30.053009034,64.404251099],[30.045656205,64.792167664],[29.750923156,64.789619446],[29.625688553,65.059921265],[29.840818406,65.088310243],[29.734413147,65.6279068],[30.125448,65.665688],[29.917573928,66.127830506],[29.48065,66.537582],[29.086283,66.824265],[29.053629,66.977989],[29.959157944,67.517333985],[30.034530641,67.669364929],[29.694522858,67.793746948],[29.334667,68.074707],[28.659791947,68.195106507],[28.450369,68.547668],[28.803527751,68.874946602],[28.434746254,68.908416889],[28.924753394,69.056725056],[28.842869,69.23159],[29.326009888,69.4667209],[29.138516977,69.694747946],[28.44310945,69.81440719],[27.980879037,70.012123099],[27.621709871,70.077102662],[27.023665001,69.910004],[26.454679475,69.935172989],[25.896759033,69.673011781],[25.947675704,69.576324463],[25.709070206,69.258171082],[25.769058227,69.002952575],[25.143173218,68.791557312],[24.916858673,68.60825348],[24.249141694,68.724906921],[23.970842361,68.830650329],[23.677160264,68.706123351],[23.16020012,68.630416871],[23.045257569,68.691055298],[22.36974907,68.719413757],[22.182676316,68.956199647],[21.632258981,69.277549747],[21.267240525,69.312019348],[20.99707985,69.223571778],[21.063890458,69.03843689],[20.728641509,69.121208192],[20.551206589,69.058761598],[20.907672883,68.890602113],[21.396774292,68.756782532],[22.063533783,68.475395202],[22.834108352,68.383499146],[23.167139053,68.238021851],[23.509559994,67.861701958],[23.426544237,67.453193995],[23.773107485,67.423248011],[23.579597473,67.143524171],[24.011131286,66.813613892],[23.879522324,66.555374146],[23.661266327,66.452293396],[23.745273591,66.184555055],[23.940001,66.148361],[24.154009,65.823013]]]},"properties":{"id":"7bd99cf6-b75d-48cc-91f7-337ff44a3ea2","code":"FIN","name":"Finland","abbreviation":"C-FIN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.721941949,42.501228332],[2.015197993,42.347400666],[2.257082463,42.438488007],[2.582230091,42.357074737],[2.839868069,42.45898819],[3.17407012,42.435192107],[3.037361,42.610695],[3.063473,43.013195],[3.262916088,43.230140686],[3.5154171,43.274028779],[4.101250172,43.555137634],[4.578472137,43.362640382],[5.359028,43.317081],[5.803195001,43.115139009],[6.617361069,43.159305573],[6.731527805,43.408195496],[7.413652896,43.724304199],[7.413383032,43.734589023],[7.439582826,43.749214174],[7.529582501,43.78396225],[7.684199811,44.177261352],[7.426789284,44.115207672],[7.037686348,44.225566865],[6.86726904,44.531131744],[7.074445,44.681305],[6.630878926,45.108901978],[7.135106086,45.254562378],[6.820878982,45.826869964],[7.043088914,45.938652039],[6.822751999,46.423450469],[6.523421765,46.45698166],[6.221569065,46.312976932],[6.112953663,46.575119019],[6.424077035,46.754516602],[6.433014394,46.927818298],[6.955122947,47.243160248],[7.168905257,47.489501953],[7.386297704,47.43196869],[7.592329501,47.596214294],[7.521079,47.663849],[7.804824,48.592579],[8.202893257,48.95979309],[7.493984223,49.16936493],[7.05719614,49.111930847],[6.738600731,49.163673401],[6.550816059,49.425380707],[6.372303964,49.466461182],[6.042151451,49.447807313],[5.815077305,49.545166015],[5.430971622,49.592384338],[4.686140537,50.004943848],[4.140979291,49.978805543],[4.220833778,50.25430298],[4.025219917,50.357894897],[3.673676013,50.33493042],[3.660986186,50.457592011],[3.286531449,50.527576448],[3.147109031,50.789905548],[2.900430442,50.693286895],[2.634982824,50.812755586],[2.597444534,50.992469787],[2.546031475,51.089397432],[1.954722047,51.001525879],[1.580834032,50.870693206],[1.556388021,50.216804505],[1.017361045,49.915695191],[0.569584001,49.849303999],[0.206529001,49.714862999],[0.005694,49.328193665],[-1.070693969,49.390693664],[-1.299304962,49.530139924],[-1.266250968,49.695415496],[-1.67208302,49.657917024],[-1.926805974,49.727638246],[-1.822916031,49.399898528],[-1.558194996,48.994026184],[-1.571527958,48.742916107],[-1.838194966,48.61402893],[-2.328471898,48.673473358],[-2.687916994,48.500137329],[-3.08375,48.869305],[-3.565972,48.80875],[-3.580694914,48.670417785],[-3.985973,48.727917],[-4.765695,48.531807],[-4.769583224,48.327915191],[-4.400693893,48.389583588],[-4.270415783,48.133472442],[-4.72708416,48.032081603],[-4.423470973,47.962917327],[-4.191806,47.795418],[-3.32625,47.708195],[-2.817084074,47.485694885],[-2.505973101,47.524307252],[-2.526529,47.362362],[-1.981528043,47.027637481],[-2.142637968,46.818748475],[-1.816249966,46.499027253],[-1.212361,46.279026],[-1.06041801,46.045139314],[-1.23930502,45.713748933],[-0.777360023,45.435974122],[-1.152637959,45.485416413],[-1.260694,44.642918],[-1.191805005,44.660972596],[-1.446805954,43.643749237],[-1.786638975,43.350418091],[-1.384181142,43.253223419],[-1.345170616,43.092971803],[-0.752805233,42.966960908],[-0.573617934,42.807399751],[-0.306374997,42.841320038],[0.000748,42.685211183],[0.66871202,42.68893814],[0.708183944,42.861328126],[1.357378126,42.719421386],[1.440829039,42.588253022],[1.721941949,42.501228332]]],[[[9.284584,41.478474],[9.411251,41.953751],[9.554862022,42.124305724],[9.461251,42.988194],[9.28763771,42.674304962],[9.123472,42.732639],[8.797638893,42.602085113],[8.554582596,42.371807099],[8.783194,41.925415],[8.810137749,41.555973053],[9.219861,41.374863],[9.284584,41.478474]]]]},"properties":{"id":"f0f3e73c-d9c2-4731-a38d-1ff00eefcf56","code":"FRA","name":"France","abbreviation":"C-FRA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-51.605930328,4.236526966],[-51.840416,4.650138],[-51.999161,4.675746],[-52.552361,5.081806],[-52.784306,5.32264],[-53.258472443,5.561250209],[-53.801807403,5.726250171],[-54.011615754,5.621387005],[-54.474246978,4.903629781],[-54.362720489,4.057462215],[-54.026130677,3.634015083],[-54.014019012,3.425174952],[-54.21024704,3.128951073],[-54.22070694,2.756202937],[-54.524669648,2.304801942],[-54.332149507,2.163784981],[-54.084835053,2.191226005],[-53.789031982,2.365223885],[-53.460384369,2.331587077],[-52.986690522,2.171376944],[-52.672119141,2.375355005],[-52.330238341,3.063822984],[-51.921131133,3.773808003],[-51.657772065,4.05079317],[-51.605930328,4.236526966]]]},"properties":{"id":"a6631282-8752-462a-a6cc-8286f651e61c","code":"GUF","name":"French Guiana","abbreviation":"C-GUF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-149.487656,-17.498302],[-149.57666,-17.741945],[-149.305191,-17.719465],[-149.487656,-17.498302]]]},"properties":{"id":"941999bb-7afc-42bb-843f-a8605c90fa5a","code":"PYF","name":"French Polynesia","abbreviation":"C-PYF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[69.024734,-48.659935],[68.728889,-49.069168],[68.894165,-49.412777],[68.77417,-49.725834],[69.174721,-49.591389],[69.877831,-49.717384],[70.247612,-49.695957],[70.127098,-49.510254],[69.944702,-49.598137],[69.779884,-49.446564],[70.112221,-49.343056],[70.445,-49.382221],[70.519165,-49.09639],[69.989166,-49.137222],[69.704941,-49.305122],[69.172516,-49.111187],[69.024734,-48.659935]]]},"properties":{"id":"25aed1bb-eb13-49f8-912b-f9e16243cb97","code":"ATF","name":"French Southern Territories","abbreviation":"C-ATF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.334410667,2.172394752],[11.334781647,0.999262989],[9.996741295,0.997637987],[9.585694,1.030909],[9.604027,0.512084],[9.323194,0.619584],[9.472362,0.353194],[9.282918,-0.414861],[9.047916,-0.737639],[9.01875,-1.346528],[9.248473,-1.672638],[9.28514,-1.90625],[9.893751144,-2.699028969],[10.385418,-3.064028],[10.722638,-3.494028],[11.200858,-3.990695],[11.249577,-3.718149],[11.529373168,-3.512758017],[11.884313583,-3.747391939],[12.045451164,-3.352566003],[11.947383881,-3.171828031],[12.066580773,-2.969432115],[11.616085053,-2.784224986],[11.775189399,-2.456491947],[12.468323707,-2.421263933],[12.519983292,-2.086726904],[12.444073677,-1.874595046],[12.74332714,-1.868949055],[13.040926933,-2.333771943],[13.506067277,-2.429549932],[13.748804092,-2.120312928],[13.922572136,-2.464971066],[14.102894784,-2.473965883],[14.156409264,-2.194279909],[14.398568154,-1.875691056],[14.501670838,-1.425276994],[14.410247803,-0.908969998],[14.498720169,-0.680893004],[14.400787353,-0.477086007],[13.895365714,-0.212170004],[13.888682366,0.202671007],[14.119593621,0.558323026],[14.48871231,0.825231016],[14.278985978,1.34119296],[13.813871383,1.428683997],[13.313282013,1.225219011],[13.133171081,1.583217024],[13.161886216,1.901365995],[13.299013137,2.170983554],[13.087685584,2.236653806],[11.701069831,2.315644502],[11.376516343,2.296901227],[11.334410667,2.172394752]]]},"properties":{"id":"8d3ffa44-2b70-4e05-8fd4-fbf2961047c2","code":"GAB","name":"Gabon","abbreviation":"C-GAB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-16.747917175,13.064655303],[-16.701984405,13.162057877],[-15.802509309,13.181070328],[-15.802063943,13.34800148],[-15.37951374,13.355257988],[-15.022415162,13.508973121],[-14.347830771,13.227734565],[-13.85964489,13.322502136],[-13.9589777,13.578852653],[-14.321198463,13.455093384],[-14.49616623,13.616292955],[-14.780427999,13.651931],[-15.062114715,13.826889991],[-15.426857949,13.728193283],[-15.47307682,13.590885162],[-16.54521,13.592391],[-16.813194274,13.338193893],[-16.747917175,13.064655303]]]},"properties":{"id":"718bbfc4-d711-40fe-9826-2fe3aeb765ea","code":"GMB","name":"Gambia","abbreviation":"C-GMB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.004055024,41.301422119],[45.306873322,41.468112946],[45.94391632,41.180404664],[46.245433807,41.175765991],[46.623905182,41.056678771],[46.721359253,41.286907197],[46.351867676,41.492645265],[46.247806548,41.654754639],[46.418235779,41.907482147],[45.926872254,42.033927917],[45.606128692,42.218982696],[45.767868041,42.474258423],[45.350009918,42.529029847],[45.176540374,42.69070053],[44.662147523,42.750251771],[44.256622315,42.688716889],[43.948078155,42.558475494],[43.561706542,42.866088866],[43.192070008,42.934432984],[42.765430451,43.185348511],[41.582489014,43.235382081],[41.420257568,43.353103637],[41.043235778,43.390731811],[40.652301789,43.55947876],[40.096923827,43.563293457],[40.011955261,43.384860993],[40.277362823,43.190418244],[41.042362212,42.995693207],[41.103748321,42.8493042],[41.444862366,42.734306336],[41.769027711,41.802360535],[41.548194885,41.526275636],[42.504489899,41.445480347],[42.829284668,41.587890626],[43.47107315,41.129486085],[43.729671478,41.113761901],[44.183200837,41.244400025],[44.435482026,41.187656403],[45.004055024,41.301422119]]]},"properties":{"id":"98238973-6d83-427e-8e1f-653e1e1e6a7a","code":"GEO","name":"Georgia","abbreviation":"C-GEO","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[13.84017735,48.771221552],[13.495621682,48.941345216],[12.949971199,49.342868806],[12.655893326,49.434547424],[12.40315628,49.761936188],[12.547730445,49.920341491],[12.261113167,50.06469345],[12.512522698,50.3961792],[12.936410998,50.411636001],[13.525244713,50.704410554],[14.57870388,51.00030899],[14.82269392,50.871021201],[15.037851333,51.243991851],[14.922353745,51.482257843],[14.73576355,51.525955201],[14.590989113,51.819900513],[14.758355141,52.067401886],[14.53459072,52.39842987],[14.639436721,52.568908691],[14.130087853,52.828315736],[14.449595452,53.259456634],[14.22636401,53.928805997],[13.759721,54.015141],[13.14249897,54.254028321],[12.999167442,54.43624878],[12.810278893,54.349861145],[12.510835,54.482918],[12.138610839,54.192359924],[11.682499,54.153194],[11.436941999,53.909584001],[11.180833816,54.015415193],[10.750278473,54.038471223],[11.093610763,54.199859618],[10.951388359,54.384582519],[10.766388893,54.306804657],[10.13583374,54.484027862],[10.03361,54.692081],[9.419618606,54.831581115],[8.63841395,54.911201268],[8.884166718,54.594306947],[8.593054772,54.289859773],[8.830277443,54.289859773],[8.963610648,53.894584656],[8.55583477,53.831527711],[8.259165763,53.40097046],[8.011943816,53.711250305],[7.296945095,53.680694581],[6.999166966,53.359027863],[7.210575105,53.236904145],[7.212802409,53.010959625],[7.054698943,52.644401551],[6.743166923,52.645790101],[6.697720062,52.48634338],[7.072173595,52.352268219],[6.407779694,51.828090669],[6.055318833,51.852569581],[6.205219745,51.399517059],[6.072657108,51.242588043],[6.036703586,50.723491668],[6.375073434,50.313796998],[6.138388158,50.134075166],[6.262069226,49.880931854],[6.513945103,49.802768707],[6.372303964,49.466461182],[6.550816059,49.425380707],[6.738600731,49.163673401],[7.05719614,49.111930847],[7.493984223,49.16936493],[8.202893257,48.95979309],[7.804824,48.592579],[7.521079,47.663849],[7.592329501,47.596214294],[7.696352958,47.532772064],[8.204054833,47.62089157],[8.428743362,47.566894532],[8.489027024,47.773269653],[8.898453712,47.648422241],[9.275901794,47.656135559],[9.561736197,47.502418292],[9.96354695,47.535236416],[10.338881796,47.310740933],[10.454786787,47.556405837],[10.886474708,47.537278766],[10.980255356,47.397505434],[11.287422711,47.405635416],[11.633031787,47.59245468],[12.16300994,47.70174582],[12.499803947,47.625656643],[12.732470362,47.680211084],[13.004363656,47.463922448],[13.098878033,47.63497621],[12.753676468,48.087443995],[12.869480201,48.201261797],[13.410012307,48.373654518],[13.515751092,48.591540164],[13.7265817,48.514094787],[13.84017735,48.771221552]]],[[[13.718055725,54.284305573],[13.498806954,54.558864594],[13.169724,54.452641],[13.144167901,54.280971527],[13.718055725,54.284305573]]]]},"properties":{"id":"464f456e-b2dc-4469-ac69-1262b037c457","code":"DEU","name":"Germany","abbreviation":"C-DEU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.687074716,9.491439935],[-2.7789206,9.051471216],[-2.615926525,8.914301113],[-2.494887667,8.20517893],[-2.808562475,7.965602956],[-2.953354946,7.239177758],[-3.225754754,6.824867935],[-3.19022862,6.348717136],[-2.952731868,5.715983096],[-2.761353568,5.599316277],[-2.759933118,5.102472925],[-3.109048268,5.115950427],[-2.268430308,4.899010809],[-1.974251232,4.758838586],[-1.609871288,5.027429781],[-0.830442307,5.210631983],[-0.344515642,5.501953801],[0.332379886,5.783476511],[0.924009157,5.786507337],[1.199555296,6.130090006],[0.749223939,6.448189283],[0.562348456,6.906712047],[0.644656864,7.397928189],[0.519026965,7.513392359],[0.626224007,7.850379392],[0.645860944,8.486721407],[0.379434582,8.749738712],[0.566590189,9.405599734],[0.23890288,9.570471323],[0.382733564,9.937065217],[0.396027973,10.314177108],[-0.087270273,10.716004724],[0.033877909,10.992621832],[-0.134967872,11.13706899],[-0.684064326,10.998641683],[-2.833997491,11.004090181],[-2.940423865,10.612863705],[-2.744601263,9.949250734],[-2.687074716,9.491439935]]]},"properties":{"id":"2f4cae5c-1678-4d7f-abb9-d48006a790a5","code":"GHA","name":"Ghana","abbreviation":"C-GHA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.339028,36.154674549],[-5.353473187,36.157154083],[-5.365415,36.149307],[-5.346806,36.108471],[-5.339028,36.154674549]]]},"properties":{"id":"2402c891-ba0d-44e3-bd61-3f888778b038","code":"GIB","name":"Gibraltar","abbreviation":"C-GIB","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[20.008482885,39.694003607],[20.183252,39.622513],[20.294027,39.31847],[20.44375,39.28014],[20.869028,38.795971],[21.232361,38.299026],[21.835140228,38.392360688],[22.697918,38.312916],[23.10708,38.205971],[22.872639,37.933193],[22.491529464,38.136249542],[21.849029542,38.339309692],[21.600969315,38.142639161],[21.370138169,38.214862823],[21.273750305,37.785694123],[21.690416,37.360973],[21.565689,37.16431],[21.702917,36.812637],[21.93569,36.760971],[21.930416108,36.982082366],[22.153469,37.014309],[22.39097,36.54097],[22.565687,36.77597],[22.782922746,36.79875183],[22.967916,36.519585],[23.100418,36.777641],[22.727916718,37.494583129],[23.132917,37.409584],[23.51903,37.4557],[23.008751,37.91264],[23.450695,38.023472],[24.022079,37.65736],[24.085695,37.797359],[23.954309,38.285419],[23.677640914,38.339580537],[23.59264,38.471249],[23.110697,38.624306],[22.817907,39.272087],[22.943750382,39.342079163],[23.351801,39.18792],[22.548189164,40.141799928],[22.655416489,40.522914887],[22.951805115,40.621528625],[22.910688,40.380421],[23.330694,40.210693],[23.650969,40.224861],[23.918194,39.947639],[23.920416,40.364582],[23.695692063,40.66708374],[24.045416,40.718472],[24.553749085,40.952640533],[24.803470612,40.845970155],[25.12694168,40.952476501],[25.950142,40.842361],[26.031528,40.733902],[26.35091,40.949791],[26.331443787,41.253940582],[26.641773224,41.390888214],[26.596136093,41.615470886],[26.368787765,41.714229584],[26.17133522,41.747638702],[26.118917466,41.349506378],[25.230846406,41.243373872],[25.124015808,41.339138032],[24.604471207,41.429771424],[24.5240345,41.566539765],[24.098924638,41.548641204],[23.622879028,41.375816346],[22.933700561,41.343158723],[22.592737199,41.119709015],[21.907794953,41.093132019],[21.594812394,40.871620179],[20.991338731,40.858062744],[21.049087524,40.658621471],[20.841936112,40.476444244],[20.657573901,40.090528991],[20.306022372,39.984871455],[20.256948524,39.667319957],[20.008482885,39.694003607]]],[[[25.880419,35.160973],[25.65097,35.34264],[25.047079085,35.344860077],[24.699028,35.427082],[24.262359619,35.363193511],[24.176531,35.585972],[23.580137,35.491531],[23.587360381,35.231250763],[24.38014,35.194031],[24.75403,35.05431],[24.74736,34.939579],[25.187360764,34.946529389],[26.272079,35.089031],[26.025415,35.229862],[25.880419,35.160973]]],[[[24.240419,38.29681],[24.155689,38.65181],[23.758753,38.705971],[23.470138551,38.836250306],[23.196250916,38.834583283],[23.626249,38.541809],[23.64625,38.399578],[24.04347,38.394859],[24.337919,37.986252],[24.584297,38.02486],[24.240419,38.29681]]],[[[26.344307,39.38736],[25.919308,39.293472],[25.832083,39.189861],[26.419029,38.96125],[26.53014,39.17181],[26.344307,39.38736]]],[[[28.221806,36.456249],[27.878469,36.322639],[27.733471,35.916809],[28.05958,36.061531],[28.221806,36.456249]]],[[[20.563749,38.472919],[20.338753,38.1782],[20.81625,38.113472],[20.563749,38.472919]]],[[[25.447639,40.034863],[25.043753,39.982639],[25.049307,39.842083],[25.35486,39.782082],[25.447639,40.034863]]],[[[19.850416,39.821804],[19.640141,39.750416],[19.937084,39.472637],[19.850416,39.821804]]]]},"properties":{"id":"e1fd18b0-00ef-4052-bdcf-984a3bdd586a","code":"GRC","name":"Greece","abbreviation":"C-GRC","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-48.007813,60.823441],[-47.447918,60.810417],[-46.960415,60.947918],[-46.860416,60.787498],[-46.239582,60.966667],[-46.164585,60.712502],[-45.976563,60.81406],[-45.568748,60.458332],[-45.454166,60.622917],[-45.227604,60.421356],[-44.891666,60.529167],[-44.964584,60.3125],[-45.191143,60.207809],[-44.914585,60.014584],[-44.61438,59.976685],[-44.476562,60.141144],[-44.178646,60.196354],[-43.941814,59.989521],[-43.588318,59.906677],[-43.119274,60.004684],[-43.095833,60.366665],[-43.299999,60.525002],[-42.841667,60.59375],[-42.56778,61.202595],[-42.544338,61.541653],[-42.132362,61.790092],[-42.106838,62.018738],[-42.258404,62.198421],[-42.025066,62.801552],[-41.544857,62.915092],[-41.107357,63.219261],[-41.267258,63.381237],[-40.511524,63.70676],[-40.633404,63.953636],[-40.530273,64.090088],[-40.625587,64.397903],[-40.261524,64.3703],[-40.249023,64.561966],[-40.600071,65.056755],[-40.213089,65.014572],[-39.733921,65.322906],[-39.50684,65.283318],[-39.213089,65.710403],[-38.871944,65.508842],[-38.541733,65.636971],[-38.196423,65.645821],[-37.81934,66.162491],[-37.757362,65.940086],[-37.958401,65.717171],[-37.738091,65.591652],[-37.406837,65.641655],[-37.065174,65.852074],[-37.06934,65.591652],[-36.894341,65.589569],[-36.590172,65.799988],[-36.427673,66.083321],[-36.358921,65.837486],[-35.436005,66.312485],[-35.179756,66.264572],[-34.699024,66.478638],[-34.392258,66.483322],[-34.019863,66.814049],[-34.010483,66.998421],[-33.743816,67.105721],[-33.217773,67.107803],[-32.916733,67.564049],[-33.046421,67.633324],[-32.123505,68.00415],[-32.265171,68.374985],[-31.69948,68.13073],[-31.270313,68.197395],[-30.510416,68.09375],[-30.470833,68.25],[-29.74375,68.414581],[-29.436979,68.289063],[-29.060417,68.42292],[-28.864584,68.345833],[-28.316668,68.447914],[-27.68125,68.683334],[-27.075001,68.61042],[-26.439583,68.691666],[-26.339582,68.814583],[-25.752083,68.866669],[-25.481251,69.116669],[-25.139584,69.131248],[-25.204166,69.277084],[-24.827084,69.247917],[-24.13125,69.568748],[-23.772917,69.518753],[-23.289583,69.650002],[-23.077084,69.939583],[-22.570833,69.943748],[-22.098438,70.090103],[-23.052084,70.074997],[-24.597918,70.241669],[-24.891666,70.337502],[-25.418751,70.26667],[-25.439583,70.35833],[-26.231251,70.197914],[-26.856251,70.247917],[-27.143749,70.162498],[-27.137501,70.01667],[-27.875,70.097916],[-26.88125,70.316666],[-26.447916,70.316666],[-26.456249,70.45208],[-28.166666,70.352081],[-28.25625,70.539581],[-27.895834,70.86042],[-27.633333,70.916664],[-26.783333,70.92292],[-25.65,71.14167],[-25.420834,71.268753],[-25.841667,71.474998],[-26.947395,71.473434],[-27.470833,71.564583],[-27.464582,71.737503],[-28.239584,71.945831],[-27.862499,71.927086],[-27.0375,71.574997],[-25.635416,71.53125],[-25.127083,71.29583],[-24.683853,71.359901],[-24.59948,71.222397],[-24.216667,71.022919],[-23.977083,70.627083],[-23.364584,70.456253],[-22.637501,70.441666],[-22.653646,70.717186],[-22.529167,70.875],[-22.391146,70.465103],[-22.058332,70.51667],[-21.972918,70.412498],[-21.502083,70.512497],[-21.816668,70.777084],[-21.695833,71.01667],[-21.843229,71.123436],[-21.725,71.443748],[-22.208334,71.466667],[-22.376562,71.342186],[-22.521355,71.756767],[-23.022917,71.614586],[-23.153646,71.6651],[-22.554167,71.887497],[-23.25,72.09375],[-23.733334,72.162498],[-24.622917,72.42083],[-24.775,72.6875],[-25.252083,72.79583],[-25.847918,72.710419],[-26.2875,72.772919],[-25.660418,72.893753],[-25.170834,72.925003],[-25.177084,73.070831],[-25.548437,73.080734],[-26.097918,73.195831],[-26.716667,73.13958],[-26.291666,73.302086],[-25.758333,73.254166],[-25.339582,73.460419],[-24.472918,73.537498],[-24.372917,73.791664],[-24.054687,73.822395],[-23.997396,73.590103],[-23.077084,73.349998],[-22.183332,73.252083],[-21.314062,73.450516],[-20.495832,73.449997],[-20.518749,73.770836],[-20.71875,73.870834],[-21.735416,74.058334],[-22.004168,73.989586],[-22.516666,74.050003],[-21.970833,74.220833],[-21.302084,74.089584],[-20.185417,74.160416],[-20.220833,74.29583],[-19.372917,74.260414],[-18.969271,74.482811],[-19.227083,74.506248],[-19.30677,74.664063],[-19.691668,74.572914],[-20.266666,74.660416],[-20.779167,74.67292],[-20.565104,75.197395],[-21.116667,75.322914],[-22.002083,75.604164],[-21.46875,75.54583],[-21.200001,75.412498],[-20.645834,75.287498],[-20.143749,75.333336],[-19.984896,75.1651],[-19.612499,75.127083],[-19.339582,75.320831],[-19.527082,75.758331],[-20.043751,75.958336],[-21.668751,75.956253],[-22.077084,76.020836],[-22.733334,75.883331],[-23.189583,75.845833],[-23.739584,75.943748],[-23.94375,75.89167],[-23.934896,76.129684],[-23.573437,76.319267],[-23.858334,76.368752],[-25.06875,76.302086],[-25.354166,76.335419],[-23.572916,76.416664],[-22.993229,76.704689],[-23.195833,77.135414],[-23.558332,77.195831],[-23.891146,77.423439],[-23.747917,77.970833],[-23.603645,78.194267],[-23.168751,78.439583],[-22.785418,78.431252],[-22.908333,78.64167],[-22.15625,78.660416],[-21.597918,78.487503],[-21.039583,78.48333],[-20.927084,78.629166],[-21.270834,78.76667],[-20.745832,79.050003],[-20.220833,78.997917],[-19.158333,79.13958],[-19.143749,79.275002],[-19.56875,79.287498],[-19.68125,79.410416],[-21.004168,79.445831],[-21.991667,79.291664],[-22.856251,79.495834],[-22.684896,79.61927],[-21.785418,79.57917],[-20.629168,79.689583],[-20.197916,80.022919],[-19.56875,80.231247],[-19.314583,80.25],[-18.127083,80.160416],[-16.772917,80.17083],[-16.3375,80.23333],[-15.735416,80.427086],[-16.829166,80.537498],[-18.064583,80.481247],[-18.71875,80.583336],[-17.964582,80.566666],[-17.385416,80.787498],[-17.05625,80.658333],[-16.085417,80.60833],[-15.464583,80.616669],[-15.30625,80.712502],[-14.352083,80.741669],[-14.295834,80.972916],[-13.452084,80.970833],[-12.6125,81.143753],[-13.65625,81.287498],[-13.725,81.368752],[-12.502084,81.362503],[-12.308333,81.541664],[-13.079166,81.61042],[-13.464583,81.737503],[-14.210417,81.637497],[-14.372916,81.495834],[-15.3125,81.445831],[-15.85,81.458336],[-16.095833,81.574997],[-16.697916,81.622917],[-16.918751,81.366669],[-17.322916,81.191666],[-18.147917,81.133331],[-19.595833,80.88958],[-19.44375,80.995834],[-17.802084,81.237503],[-17.264584,81.287498],[-17.75625,81.443748],[-18.427084,81.48333],[-19.28125,81.366669],[-19.314583,81.568748],[-19.81875,81.666664],[-19.916666,81.504166],[-20.579166,81.379166],[-20.725,81.279167],[-21.335417,81.183334],[-22.045834,80.991669],[-22.929167,80.879166],[-23.047916,80.73542],[-23.927084,80.57708],[-23.133333,80.820831],[-23.262501,80.88958],[-22.664583,81.018753],[-22.00625,81.272919],[-21.308853,81.453651],[-21.020834,81.741669],[-21.013021,81.918228],[-21.262501,82.04792],[-22.489584,82.041664],[-23.254168,81.993752],[-23.408333,81.697914],[-23.808332,81.710419],[-26.299999,81.429169],[-27.552084,81.400002],[-29.239584,81.195831],[-30.166666,81.333336],[-28.602083,81.393753],[-27.43177,81.504684],[-26.633333,81.541664],[-24.7125,81.758331],[-24.543751,81.993752],[-26.668751,82.03125],[-28.179167,82.020836],[-31.31875,81.82917],[-32.045834,81.695831],[-31.883333,81.541664],[-31.15,81.397919],[-33.012501,81.5],[-32.65625,81.625],[-32.791668,81.802086],[-31.414583,81.972916],[-29.285418,82.13958],[-27.695833,82.193748],[-25.572916,82.152084],[-24.395834,82.150002],[-23.339582,82.260414],[-21.470833,82.308334],[-20.8375,82.464584],[-20.4375,82.477081],[-19.802605,82.595314],[-20.885416,82.785416],[-21.545834,82.806252],[-22.402082,82.902084],[-22.7875,82.810417],[-23.108334,82.972916],[-23.810417,82.960419],[-24.69375,82.85833],[-24.133333,83.052086],[-24.852083,83.252083],[-26.891666,83.120834],[-29.739584,83.179169],[-30.616667,83.162498],[-32.112499,83.01458],[-33.614582,82.981247],[-32.977085,83.081253],[-32.285416,83.07917],[-31.025,83.206253],[-29.666666,83.23333],[-27.829166,83.20208],[-26.983334,83.214584],[-25.764584,83.316666],[-25.481251,83.404167],[-26.237499,83.48542],[-27.702084,83.566666],[-29.0625,83.51667],[-29.283333,83.591667],[-29.622917,83.541664],[-30.55625,83.63958],[-31.514584,83.647919],[-31.8125,83.61042],[-33.325001,83.658333],[-34.639584,83.622917],[-34.635418,83.525002],[-35.179165,83.612503],[-35.777084,83.612503],[-35.943748,83.502083],[-36.179165,83.599998],[-37.732815,83.549484],[-37.181252,83.479164],[-37.404167,83.39167],[-37.654167,83.456253],[-38.708332,83.539581],[-38.795834,83.38958],[-39.629166,83.42292],[-39.672916,83.252083],[-39.381248,83.193748],[-38.289585,83.191666],[-38.53125,83.116669],[-39.450001,83.058334],[-39.8125,82.949997],[-39.087502,82.729164],[-40.141666,82.929169],[-41.335415,82.935417],[-42.860416,83.222916],[-44.116665,83.21875],[-44.733334,83.164581],[-43.854168,83.064583],[-44.539585,83.0625],[-45.489582,83.112503],[-46.26823,83.060936],[-45.460415,82.793747],[-43.989582,82.783333],[-43.043751,82.800003],[-41.660416,82.727081],[-41.241665,82.662498],[-40.602085,82.660416],[-40.375,82.574997],[-40.120316,82.274483],[-39.404167,82.112503],[-41.058334,82.175003],[-41.285416,82.275002],[-42.28125,82.377083],[-42.431252,82.572914],[-42.724998,82.691666],[-43.260418,82.71875],[-44.549999,82.691666],[-46.233334,82.716667],[-46.391666,82.666664],[-45.391666,82.493752],[-45.022915,82.372917],[-44.408333,82.302086],[-44.491665,82.216667],[-45.537498,82.14167],[-45.34375,81.956253],[-45.802082,81.845833],[-44.914585,81.789581],[-45.120834,81.660416],[-44.485935,81.483849],[-44.96875,81.38958],[-45.979168,81.42083],[-45.983334,81.604164],[-47.404167,82],[-48.424999,82.081253],[-48.902084,82.199997],[-49.433334,82.243752],[-50.004166,82.404167],[-50.525002,82.45208],[-51.754166,82.458336],[-51.604168,82.135414],[-51.016666,81.95208],[-50.502602,81.86615],[-49.362499,81.277084],[-50.432816,81.360939],[-50.745834,81.489586],[-51.233334,81.525002],[-51.235416,81.620834],[-52.377083,81.841667],[-52.910416,81.872917],[-53.59375,81.98333],[-53.879166,81.970833],[-53.904167,81.777084],[-54.529167,81.589584],[-54.41927,81.899483],[-54.595833,82.168747],[-55.212502,82.337502],[-55.856251,82.304169],[-56.035416,82.21875],[-56.71875,82.25],[-56.981251,82.162498],[-57.339584,82.208336],[-59.333332,82.104164],[-60.168751,82.006248],[-59.295834,81.879166],[-58.881248,81.652084],[-59.297916,81.654167],[-59.537498,81.831253],[-60.783333,81.910416],[-61.868752,81.78125],[-61.904167,81.67083],[-61.356251,81.51667],[-61.756248,81.272919],[-60.702084,80.987503],[-60.125,80.731247],[-59.618752,80.612503],[-61.03125,80.612503],[-61.46875,80.762497],[-62.083332,81.0625],[-62.716667,81.17292],[-63.462502,81.199997],[-65.010414,80.966667],[-65.32708,80.762497],[-66.106247,80.664581],[-66.775002,80.462502],[-67.511978,80.331772],[-67.464584,80.181252],[-67.047401,80.054688],[-66.35833,80.095833],[-66.04583,80.008331],[-65.20417,80.10833],[-64.981247,79.979164],[-64.602081,79.98333],[-64.285416,79.88958],[-64.752083,79.831253],[-64.502083,79.59375],[-65.020836,79.45208],[-66.004166,79.087502],[-67.1875,79.150002],[-68.462502,79.050003],[-69.10833,78.945831],[-69.285934,78.7901],[-69.806252,78.800003],[-70.720314,78.671349],[-70.745834,78.604164],[-71.418747,78.625],[-71.70417,78.556252],[-72.3125,78.533333],[-72.806252,78.320831],[-72.564583,78.056252],[-72.197914,77.935417],[-71.566666,77.856247],[-71.237503,77.89167],[-71.066666,77.760414],[-70.175003,77.822914],[-70.456253,77.67083],[-70.185417,77.589584],[-69.183334,77.456253],[-68.573433,77.520317],[-67.602081,77.518753],[-67.152084,77.677086],[-66.614586,77.699997],[-66.215103,77.624481],[-66.07917,77.42292],[-66.522919,77.435417],[-66.722916,77.349998],[-67.497398,77.386978],[-68.451561,77.361984],[-69.033333,77.258331],[-68.341667,77.166664],[-70.09375,77.237503],[-70.791664,77.199997],[-71.333336,77.01458],[-70.333336,76.802086],[-69.73333,76.95417],[-69.993233,76.771355],[-69.220833,76.679169],[-68.447914,76.666664],[-68.033333,76.712502],[-67.931252,76.568748],[-68.711983,76.586983],[-69.037498,76.477081],[-69.583336,76.429169],[-69.3125,76.302086],[-68.864586,76.25],[-68.48333,76.085419],[-66.464584,75.939583],[-66.960419,76.060417],[-67.112503,76.258331],[-66.82708,76.258331],[-66.410416,76.083336],[-66.17292,76.275002],[-65.64167,76.29792],[-65.754166,76.122917],[-65.32917,76.037498],[-65.262497,76.193748],[-64.55677,76.131767],[-64.32917,76.356247],[-64.018753,76.066666],[-63.762501,76.118752],[-63.468231,76.375519],[-63.112499,76.364586],[-62.700001,76.252083],[-62.260418,76.283333],[-61.491665,76.164581],[-60.813019,76.155731],[-60.689583,76.01667],[-60.166668,76.056252],[-59.785416,75.841667],[-59.166668,75.875],[-58.98698,75.723434],[-58.521351,75.739067],[-58.28125,75.470833],[-58.241665,75.268753],[-57.929165,75.191666],[-57.802082,75.025002],[-57.367187,74.972397],[-57.068748,74.650002],[-56.643749,74.631248],[-56.233334,74.477081],[-56.197918,74.347916],[-56.695835,74.349998],[-56.549999,74.15625],[-56.071354,74.280731],[-56.227085,74.041664],[-55.820835,73.925003],[-55.752083,73.724998],[-56.012501,73.64167],[-55.058857,73.38073],[-55.421356,73.104683],[-55.131248,73.006248],[-54.804165,73.01667],[-54.246357,72.797401],[-54.852085,72.666664],[-54.972916,72.510414],[-55.429165,72.51667],[-55.183857,72.356766],[-54.864582,72.431252],[-54.922916,72.214584],[-55.285416,72.127083],[-55.241665,71.929169],[-55.539062,71.743233],[-55.508335,71.477081],[-54.818748,71.35833],[-53.914585,71.445831],[-53.877602,71.574478],[-53.484894,71.799484],[-53.558857,72.045311],[-53.220833,71.816666],[-52.827084,72.025002],[-52.775002,71.866669],[-53.016666,71.720833],[-52.137501,71.620834],[-51.664585,71.745834],[-51.770832,71.589584],[-52.489582,71.54583],[-52.929165,71.408333],[-52.272915,71.395836],[-52.377083,71.150002],[-51.392185,71.103645],[-50.96875,70.868752],[-51.054165,70.431252],[-50.616665,70.322914],[-51.572918,70.414581],[-52.660416,70.739586],[-53.522915,70.75],[-53.972916,70.824997],[-54.581249,70.708336],[-53.893749,70.38958],[-52.841667,70.279167],[-52.349998,70.060417],[-51.940102,70.006767],[-51.286976,70.059898],[-51.166668,69.962502],[-50.737499,69.993752],[-50.395832,69.895836],[-50.843231,69.645317],[-50.935417,69.270836],[-51.197918,69.243752],[-51.090107,68.9776],[-51.275002,68.73333],[-51.033333,68.572914],[-51.885418,68.502083],[-52.247917,68.645836],[-52.460415,68.458336],[-52.829166,68.408333],[-52.933334,68.279167],[-52.481251,68.168747],[-51.672916,68.26667],[-51.166668,68.056252],[-51.868752,68.033333],[-52.572399,68.188019],[-52.700001,68.099998],[-53.083851,68.186981],[-53.079166,68.056252],[-53.779167,67.76458],[-53.662498,67.479164],[-52.993752,67.756248],[-52.364059,67.822395],[-51.724998,67.683334],[-51.395832,67.747917],[-50.797916,67.762497],[-51.793228,67.621353],[-52.414585,67.770836],[-53.035416,67.706253],[-53.447918,67.502083],[-53.804165,67.408333],[-53.880726,67.215103],[-52.489582,67.310417],[-53.796356,67.169266],[-53.770832,66.958336],[-52.568748,66.872917],[-52.983334,66.70417],[-53.231251,66.706253],[-53.6875,66.479164],[-53.57552,66.214066],[-53.085415,65.652084],[-52.827084,65.660416],[-52.779167,65.504166],[-52.474998,65.381248],[-52.474998,65.220833],[-52.068748,64.949997],[-52.164062,64.628647],[-52.110935,64.2901],[-51.954685,64.11927],[-51.444271,64.50885],[-51.202084,64.76458],[-51.037498,64.60833],[-50.635937,64.819267],[-50.300522,64.731766],[-49.965107,64.396355],[-50.489582,64.691666],[-50.918751,64.591667],[-50.599998,64.4375],[-50.910416,64.402084],[-51.414585,64.035416],[-51.464584,63.589584],[-51.174999,63.493752],[-51.059898,63.178646],[-50.878643,63.052601],[-50.271351,62.833851],[-50.291149,62.527607],[-49.914063,62.258854],[-49.52969,62.242188],[-49.631248,61.970833],[-49.186981,61.823441],[-49.23698,61.597393],[-48.856251,61.366665],[-48.456249,61.360416],[-48.539062,61.18594],[-47.681252,60.985416],[-48.007813,60.823441]]],[[[-21,77.970833],[-21.235416,77.95208],[-21.291666,77.599998],[-21.624479,77.503647],[-21.995832,77.291664],[-22.106251,76.856247],[-21.508333,76.558334],[-21.141666,76.543747],[-21.106251,76.762497],[-20.52552,76.889061],[-19.854166,76.918747],[-19.375,76.816666],[-18.895834,76.800003],[-18.552084,76.691666],[-18.183332,76.89167],[-18.2125,77.20417],[-18.933332,77.318748],[-18.933332,77.175003],[-19.345833,77.216667],[-19.991667,77.402084],[-20.489584,77.658333],[-19.941147,77.664063],[-19.268749,77.518753],[-18.897917,77.558334],[-19.264584,77.724998],[-19.683332,77.741669],[-21,77.970833]]],[[[-54.367188,70.315102],[-54.837502,70.195831],[-54.795834,69.599998],[-54.056252,69.550003],[-54.1875,69.445831],[-53.849476,69.265099],[-53.516666,69.252083],[-52.273437,69.448433],[-51.860935,69.631767],[-51.99844,69.80365],[-52.731251,69.925003],[-53.158852,70.157814],[-53.456249,70.23542],[-54.367188,70.315102]]],[[[-47.270832,82.604164],[-48.339584,82.574997],[-47.787498,82.387497],[-47.775002,82.29792],[-46.127083,82.054169],[-45.951565,81.925522],[-45.570835,81.931252],[-45.724998,82.158333],[-45.122917,82.229164],[-45.602085,82.427086],[-46.837502,82.57917],[-47.270832,82.604164]]],[[[-25.68125,71.0625],[-26.520834,70.870834],[-27.043751,70.85833],[-27.177084,70.775002],[-27.91823,70.628647],[-27.985416,70.414581],[-26.606251,70.512497],[-26.216667,70.57917],[-26.020834,70.512497],[-25.283333,70.647919],[-25.364584,70.904167],[-25.68125,71.0625]]],[[[-24.052605,72.878647],[-24.524479,72.829689],[-24.370832,72.585419],[-23.901562,72.452599],[-23.279167,72.35833],[-22.727083,72.177086],[-22.185938,72.13385],[-22.060417,72.262497],[-22.691668,72.32708],[-22.775,72.45417],[-21.945833,72.397919],[-22.168751,72.520836],[-22.597918,72.59375],[-23.168751,72.835419],[-24.052605,72.878647]]],[[[-17.543751,80.074997],[-18.089582,80.074997],[-18.864584,80.002083],[-18.929167,80.052086],[-19.63125,79.972916],[-19.947916,79.854164],[-20.016666,79.6875],[-19.00625,79.741669],[-18.029167,79.693748],[-17.341667,79.931252],[-17.543751,80.074997]]],[[[-24.690104,73.42865],[-25.299479,73.393234],[-25.720833,73.17292],[-24.408333,73.020836],[-23.014584,73.09375],[-23.210417,73.237503],[-23.779167,73.356247],[-24.690104,73.42865]]],[[[-23.191668,73.060417],[-24.549999,72.98333],[-24.535418,72.88958],[-23.952084,72.908333],[-22.956249,72.849998],[-22.714582,72.720833],[-21.902082,72.67083],[-21.989584,72.929169],[-23.191668,73.060417]]],[[[-20.966667,76.300003],[-21.81823,76.184898],[-21.883854,76.010933],[-20.383333,75.972916],[-19.731771,76.11927],[-20.03125,76.260414],[-20.495832,76.20208],[-20.966667,76.300003]]],[[[-42.354168,82.681252],[-42.022915,82.372917],[-40.849998,82.279167],[-40.271351,82.296349],[-40.754166,82.495834],[-41.097916,82.502083],[-41.860416,82.652084],[-42.354168,82.681252]]],[[[-22.075001,76.635414],[-22.612499,76.504166],[-22.514584,76.291664],[-22.702604,76.044266],[-21.700001,76.247917],[-21.679687,76.517189],[-22.075001,76.635414]]],[[[-53.835415,82.293747],[-54.220833,82.210419],[-54.058334,82.064583],[-52.525002,81.897919],[-52.158852,81.941147],[-53.339584,82.224998],[-53.835415,82.293747]]],[[[-18.016666,75.414581],[-18.347918,75.306252],[-18.854166,75.304169],[-18.897917,75.006248],[-18.454166,74.964584],[-17.862499,75.027084],[-17.344271,75.019272],[-18.022396,75.156769],[-18.016666,75.414581]]],[[[-46.689583,83.03125],[-47.122917,83.010414],[-47.483334,82.904167],[-46.835415,82.785416],[-45.610416,82.79583],[-45.854168,82.92292],[-46.689583,83.03125]]],[[[-21.5,78.20208],[-21.86875,78.183334],[-21.86927,78.029686],[-22.145834,77.972916],[-22.191668,77.67083],[-21.929687,77.557816],[-21.586979,77.951561],[-21.106771,78.072395],[-21.5,78.20208]]],[[[-51.945835,81.877083],[-51.418751,81.67083],[-50.933334,81.54583],[-50.325001,81.518753],[-50.942184,81.799484],[-51.945835,81.877083]]],[[[-19.052605,76.723434],[-19.1625,76.489586],[-18.466667,75.927086],[-18.454687,76.079689],[-18.741667,76.477081],[-18.704687,76.610939],[-19.052605,76.723434]]],[[[-20.35,75.033333],[-20.575001,74.98542],[-20.464582,74.737503],[-20.035418,74.708336],[-19.723438,74.856766],[-20.35,75.033333]]],[[[-19.200001,82.120834],[-19.614063,82.05677],[-19.075001,81.824997],[-18.549999,81.79792],[-18.652603,81.909897],[-19.200001,82.120834]]],[[[-51.210415,69.92292],[-51.37656,69.722397],[-51.231251,69.525002],[-50.960937,69.564064],[-50.982815,69.74115],[-50.689583,69.866669],[-51.210415,69.92292]]],[[[-41.370834,83.337502],[-41.554165,83.241669],[-40.893749,83.23333],[-40.379166,83.13958],[-39.587502,83.089584],[-40.489582,83.26667],[-41.370834,83.337502]]],[[[-40.977085,83.143753],[-41.152084,83.064583],[-40.179165,82.972916],[-39.989582,83.070831],[-40.977085,83.143753]]],[[[-19.239584,80.206253],[-19.704166,80.020836],[-18.6875,80.118752],[-19.239584,80.206253]]],[[[-17.577084,77.856247],[-17.772917,77.849998],[-18.064583,77.606247],[-17.710417,77.614586],[-17.577084,77.856247]]],[[[-41.922916,83.14167],[-41.295834,82.960419],[-40.84375,83.025002],[-41.922916,83.14167]]],[[[-52.893749,71.35833],[-52.964584,71.154167],[-52.635418,71.162498],[-52.566666,71.302086],[-52.893749,71.35833]]],[[[-55.102085,72.845833],[-55.599998,72.752083],[-55.497917,72.558334],[-55.102085,72.845833]]],[[[-48.995834,82.835419],[-48.974998,82.716667],[-48.170834,82.71875],[-48.995834,82.835419]]],[[[-23.163021,78.18177],[-22.870832,77.962502],[-22.642187,78.094269],[-23.163021,78.18177]]],[[[-56.575001,73.918747],[-56.595833,73.808334],[-55.923435,73.851562],[-56.575001,73.918747]]],[[[-19.270313,78.898438],[-19.691668,78.789581],[-19.479166,78.67292],[-19.270313,78.898438]]],[[[-27.245312,70.851562],[-27.672916,70.868752],[-27.672916,70.714584],[-27.245312,70.851562]]],[[[-24.802605,72.903648],[-25.333334,72.839584],[-24.86927,72.773437],[-24.802605,72.903648]]],[[[-43.964443,59.973057],[-44.128479,59.804871],[-43.698303,59.854919],[-43.964443,59.973057]]],[[[-70.964584,77.460419],[-71.083336,77.377083],[-70.314583,77.393753],[-70.964584,77.460419]]],[[[-53.635418,71.258331],[-53.930729,71.182816],[-53.695835,71.033333],[-53.635418,71.258331]]],[[[-49.510418,82.472916],[-49.104168,82.316666],[-49.049999,82.439583],[-49.510418,82.472916]]],[[[-54.987499,72.379166],[-55.414585,72.291664],[-55.414585,72.164581],[-54.987499,72.379166]]],[[[-21.002083,76.368752],[-20.458855,76.231766],[-20.466667,76.331253],[-21.002083,76.368752]]]]},"properties":{"id":"0b5be7c5-2327-45dc-a4b2-f8643ba66c10","code":"GRL","name":"Greenland","abbreviation":"C-GRL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.637359619,12.046250344],[-61.654583,12.23514],[-61.753192901,12.120973588],[-61.637359619,12.046250344]]]},"properties":{"id":"3e5af7bb-6268-433c-98f4-277b7985e61b","code":"GRD","name":"Grenada","abbreviation":"C-GRD","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.61402893,15.981528283],[-61.583195,16.235138],[-61.240139008,16.254863739],[-61.535694122,16.454584122],[-61.801529,16.314860999],[-61.61402893,15.981528283]]]},"properties":{"id":"7e9800b0-60fc-483e-826f-510a56f8a401","code":"GLP","name":"Guadeloupe","abbreviation":"C-GLP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[144.718246,13.250545],[144.776611327,13.39494896],[144.640213013,13.442012788],[144.718246,13.250545]]]},"properties":{"id":"41bb4074-ddf0-4563-8df7-24b4bfa88f04","code":"GUM","name":"Guam","abbreviation":"C-GUM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.146888732,17.814586639],[-90.987639511,17.815473446],[-90.987460023,17.251392669],[-91.264726288,17.168226467],[-91.067180679,16.901246329],[-90.803295848,16.795231396],[-90.64563778,16.517452403],[-90.417543396,16.422987835],[-90.44204187,16.074256897],[-91.731384147,16.074020363],[-92.210596348,15.261423482],[-92.074705575,15.089259225],[-92.220236314,14.536805152],[-91.798751831,14.199861526],[-91.304581,13.950693],[-90.639305115,13.924583436],[-90.124862672,13.741559982],[-89.891952515,14.043659211],[-89.519424439,14.224593162],[-89.349784852,14.422576904],[-89.126739503,14.715138436],[-89.147872926,15.070316314],[-88.683761598,15.334857941],[-88.225975254,15.722982996],[-88.554581,15.945972],[-88.60125,15.741529],[-88.912636,15.904163211],[-89.21299,15.895202],[-89.14615631,17.049846649],[-89.146888732,17.814586639]]]},"properties":{"id":"d9a6e806-d2a8-41a1-95b1-6b6e3b953c7a","code":"GTM","name":"Guatemala","abbreviation":"C-GTM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.581250906,49.424304962],[-2.537083,49.509304],[-2.651806001,49.453472001],[-2.581250906,49.424304962]]]},"properties":{"id":"33737746-7e85-4344-94b2-fa520adb2d08","code":"GGY","name":"Guernsey","abbreviation":"C-GGY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.978549004,10.175108911],[-8.301472663,10.636231422],[-8.287079811,10.995130539],[-8.68062973,10.967069627],[-8.396868706,11.382309914],[-8.854325295,11.628337861],[-8.794913293,11.923871994],[-8.968897819,12.348448754],[-9.362003327,12.495670318],[-9.340385436,12.242920875],[-9.630397796,12.172830583],[-9.699756623,12.023820878],[-10.340060235,12.215589524],[-10.672221185,11.893879891],[-10.93279934,12.223349572],[-11.257471084,11.992480279],[-11.497797013,12.20952511],[-11.377452851,12.417995453],[-12.061086654,12.433949471],[-12.389674186,12.374944686],[-12.757684708,12.43312931],[-13.071542,12.643987],[-13.708568573,12.674434662],[-13.666210174,12.311989784],[-13.941760063,12.135919571],[-13.713780403,12.008872032],[-13.713431359,11.709819794],[-14.268070221,11.678389549],[-14.665384031,11.506735114],[-14.913196,11.079076],[-14.789582,10.759584],[-14.542916298,10.827638626],[-14.667917,10.515972],[-14.398471,10.235417],[-14.079862,10.175417],[-13.824861,9.848472],[-13.662917,9.926806],[-13.609028816,9.573193551],[-13.303506,9.039858],[-13.002149581,9.097373962],[-12.935078621,9.286656379],[-12.686799049,9.40917778],[-12.431738854,9.881637574],[-12.12001896,9.871853828],[-11.885848999,9.997462272],[-11.206748962,10.000431061],[-10.668852807,9.309306145],[-10.584836005,9.043245315],[-10.553540229,8.307664871],[-10.268709182,8.49120617],[-9.795275689,8.508511543],[-9.486963272,8.380972862],[-9.359363555,7.796105863],[-9.405579566,7.42003107],[-9.065999984,7.20096016],[-8.706716538,7.514249802],[-8.472180367,7.55458212],[-8.214912415,7.533728123],[-8.071770667,7.808342934],[-8.068925857,8.161513328],[-8.242429734,8.456877709],[-7.985136032,8.483769416],[-7.641070842,8.377433776],[-7.772655011,8.767118454],[-7.94704485,8.786557197],[-7.857914924,9.43301773],[-8.149227142,9.532054901],[-8.165474891,9.926783562],[-7.978549004,10.175108911]]]},"properties":{"id":"3b8764b5-6cd5-4bb6-ab19-0132853461d4","code":"GIN","name":"Guinea","abbreviation":"C-GIN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-13.708568573,12.674434662],[-15.173559189,12.68426323],[-15.680843353,12.424531937],[-16.201256,12.460594],[-16.714891435,12.339930535],[-15.954861,11.742361],[-15.521859,11.77988],[-15.500695,11.326528],[-15.327638,11.133472],[-14.958195,10.979813],[-14.932769,11.05625],[-14.913196,11.079076],[-14.665384031,11.506735114],[-14.268070221,11.678389549],[-13.713431359,11.709819794],[-13.713780403,12.008872032],[-13.941760063,12.135919571],[-13.666210174,12.311989784],[-13.708568573,12.674434662]]]},"properties":{"id":"bb5696c6-bd25-4eca-8863-1e6dcbfbfcc5","code":"GNB","name":"Guinea-Bissau","abbreviation":"C-GNB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-56.480251313,1.941472054],[-56.689189911,2.018347026],[-57.103607178,2.767931939],[-57.207618714,2.841795922],[-57.30506134,3.373516083],[-57.692398071,3.402242899],[-58.086399078,4.131200791],[-57.845840453,4.630971909],[-57.928577423,4.832964897],[-57.680843354,5.020936966],[-57.329795837,5.04158783],[-57.348628997,5.312994956],[-57.180747985,5.613527776],[-57.146744,5.992897],[-57.302639007,6.241250038],[-58.012916565,6.792916774],[-58.420970916,6.865417004],[-58.490139007,7.355138779],[-59.12625122,8.031249046],[-59.987640381,8.530454636],[-59.821274,8.31208],[-60.006241,8.062861],[-60.636600001,7.604187],[-60.547969818,7.14073801],[-60.343052,7.03345],[-60.720569633,6.747941029],[-61.132141,6.723821],[-61.219208,6.593304],[-61.130009,6.181298],[-61.386719,5.946328],[-60.73051803,5.197120977],[-60.121932984,5.24393177],[-59.976623535,5.034758091],[-60.159557342,4.519643783],[-59.671257019,4.37655878],[-59.725769043,4.192818165],[-59.515739441,3.941425085],[-59.844989777,3.603478909],[-59.798114776,3.356441021],[-59.981575,2.929233],[-59.908702999,2.392433001],[-59.723751068,2.278232097],[-59.744270325,1.846951007],[-59.15567,1.348349],[-58.507111,1.264407],[-58.318584443,1.593605041],[-58.001270294,1.505056024],[-57.769802093,1.719905019],[-57.544075013,1.702345014],[-57.423114777,1.90612495],[-57.081291199,2.01928401],[-56.800163269,1.863873958],[-56.480251313,1.941472054]]]},"properties":{"id":"581b37a5-d124-4efc-8ac9-30bdff8cd1db","code":"GUY","name":"Guyana","abbreviation":"C-GUY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.758804322,19.702087403],[-72.314315795,19.760194779],[-72.780136108,19.951528549],[-73.157913,19.930695],[-73.426247,19.796806001],[-73.364585877,19.622638703],[-73.053474,19.630136],[-72.682113647,19.411931992],[-72.821525999,19.067362],[-72.34967041,18.545743943],[-72.728752,18.426525],[-73.456802369,18.528749466],[-73.662857,18.499863],[-74.210136,18.675974],[-74.407150269,18.629838943],[-74.369628906,18.296346664],[-74.091308594,18.247360231],[-73.902877999,18.031035999],[-73.632919312,18.249305725],[-72.85319519,18.142915726],[-72.052917481,18.237083434],[-71.753136,18.03014],[-71.687995911,18.34273529],[-72.003883361,18.626689911],[-71.732223511,18.726322175],[-71.770469666,19.03172493],[-71.636230468,19.234956741],[-71.758804322,19.702087403]]]},"properties":{"id":"638de2b9-ba1c-46d2-a55e-103b46f7ccb7","code":"HTI","name":"Haiti","abbreviation":"C-HTI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[73.311111,-52.976112],[73.493332,-53.194443],[73.761665,-53.122501],[73.311111,-52.976112]]]},"properties":{"id":"ce4f0f6a-0cf9-44af-810a-7db680aac2af","code":"HMD","name":"Heard Island and McDonald Island","abbreviation":"C-HMD","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-87.811859131,13.403461457],[-87.534302,13.343194],[-87.311523438,12.99064827],[-86.958984376,13.032221793],[-86.907913366,13.256347016],[-86.706542969,13.295379639],[-86.76284027,13.773123741],[-86.352073669,13.759555818],[-86.092407226,14.063927651],[-85.901016235,13.899938584],[-85.405273438,14.124769212],[-84.903411866,14.807711601],[-84.469063,14.614528],[-83.851472523,14.766824124],[-83.506614685,14.998771667],[-83.147117605,14.991808973],[-83.390137,15.255694],[-83.768196,15.265139],[-83.873474,15.454583],[-84.30542,15.815694],[-85.000968933,15.982082367],[-85.489029001,15.860696],[-85.823471,15.986807],[-86.413192748,15.777916909],[-86.924858094,15.756250382],[-87.713470458,15.918472291],[-88.225975254,15.722982996],[-88.683761598,15.334857941],[-89.147872926,15.070316314],[-89.126739503,14.715138436],[-89.349784852,14.422576904],[-88.497642517,13.956601144],[-88.103027343,13.98646164],[-87.710273743,13.81076336],[-87.811859131,13.403461457]]]},"properties":{"id":"d684434c-4db9-4a48-81cc-bb381812a734","code":"HND","name":"Honduras","abbreviation":"C-HND","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.113840435,46.869569682],[16.293876649,46.873706818],[16.584312439,46.479049682],[17.179605484,46.153518678],[17.27098465,46.00510025],[17.858472825,45.774066925],[18.462974549,45.759075164],[18.81132698,45.911281586],[19.274522782,45.99798584],[19.563688278,46.180782318],[20.265501022,46.124713898],[20.635412215,46.127063751],[20.875003815,46.287754058],[21.171640395,46.298370361],[21.331487655,46.631893159],[21.530939102,46.721061707],[22.0256958,47.52017212],[22.266178132,47.731449128],[22.6818676,47.788032532],[22.904510498,47.957382203],[22.157321931,48.405391694],[21.732946395,48.34992218],[21.441425324,48.585346222],[21.16075325,48.523136139],[20.840295791,48.58637619],[20.507484436,48.53308487],[20.2871418,48.263687134],[19.816638946,48.170585633],[19.628635406,48.251419069],[19.468629838,48.087902069],[18.848052978,48.052459718],[18.662952422,47.761344909],[17.725038529,47.754268647],[17.160628178,48.008037749],[17.094339254,47.708666039],[16.749597917,47.682820257],[16.446919674,47.406014134],[16.475166652,46.997389787],[16.113840435,46.869569682]]]},"properties":{"id":"5b350c27-adc2-4baf-a284-3cc58866572d","code":"HUN","name":"Hungary","abbreviation":"C-HUN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-19.418750763,63.462501526],[-18.672916,63.397915],[-17.971354,63.515106],[-17.76198,63.68906],[-17.385416,63.775002],[-16.629688,63.800522],[-15.941667,64.150002],[-15.322917,64.291664],[-15.017187,64.264061],[-14.541667,64.402084],[-14.584896,64.580734],[-13.995833,64.722916],[-13.496354,65.073433],[-13.770833,65.306252],[-13.606771,65.504684],[-14.125,65.620834],[-14.33125,65.785416],[-14.83125,65.716667],[-14.613021,65.99115],[-15.095313073,66.045310975],[-15.002084,66.26458],[-15.379167,66.147919],[-15.777083,66.268753],[-15.954166,66.512497],[-16.541666,66.506248],[-16.458855,66.206772],[-16.926563,66.122398],[-17.278646469,66.160934448],[-17.639584,65.979164],[-17.964582,66.152083999],[-18.262501,66.17292],[-18.203646,65.921349],[-18.512500762,65.960418702],[-18.77083397,66.19166565],[-19.364584,66.074997],[-19.398437,65.731766],[-19.629168,65.743752],[-20.013021,66.05365],[-20.41666603,66.087501527],[-20.265104293,65.723434449],[-20.518749,65.491669],[-20.672916,65.6875],[-21.194271088,65.430732726],[-21.435938,65.688019],[-21.279688,65.905731],[-21.702084,66.050003],[-21.75625,66.177086],[-22.234896,66.270317],[-22.417187,66.457817],[-23.1,66.433334],[-22.939062,66.183853],[-22.489584,66.074997],[-22.892187,65.967186],[-23.000521,66.086983],[-23.458334,66.193748],[-23.768749,66.066666],[-23.870312,65.885933],[-23.63125,65.70417],[-24.114063,65.782814],[-24.36927,65.552605],[-23.955729,65.4151],[-23.220833,65.48542],[-22.941668,65.614586],[-22.70677,65.503647],[-22.36875,65.529167],[-21.973438,65.379684],[-22.475,65.239586],[-22.245832,65.122917],[-21.723438,65.197395],[-21.8125,65.027084],[-22.737499,65.083336],[-23.637501,64.883331],[-23.370832,64.82708],[-22.535418,64.779167],[-22.340103,64.69323],[-22.060417,64.316666],[-21.760937,64.156769],[-22.018749,64.04583],[-22.529167,63.974998],[-22.384895,63.859894],[-21.664583,63.820835],[-21.203646,63.877602],[-20.162500382,63.53125],[-19.418750763,63.462501526]]]},"properties":{"id":"6bf21979-8aad-4ce3-87fd-71e867606203","code":"ISL","name":"Iceland","abbreviation":"C-ISL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[92.608779907,21.984094619],[92.703437805,22.15378189],[93.009246827,21.983930589],[93.190811157,22.427259445],[93.091751098,22.709341049],[93.141853333,23.060609818],[93.332641601,23.035671235],[93.427642823,23.534370423],[93.398719787,23.930280686],[93.756942749,24.009492875],[94.161460876,23.852779389],[94.262718201,24.167747498],[94.745658874,25.136590958],[94.585357665,25.215749742],[94.688636779,25.465499878],[95.052528381,25.762659072],[95.18535614,26.084682464],[95.068786621,26.466672897],[95.240440369,26.691640854],[95.423309326,26.696712494],[96.234329224,27.284879685],[96.802360534,27.354431152],[96.866226197,27.199689865],[97.171737671,27.136810304],[96.911849975,27.462709428],[96.897583009,27.620801926],[97.41516113,28.024080278],[97.356887819,28.233200073],[96.66456604,28.465770721],[96.370941159,28.394300459],[96.324302673,28.530340196],[96.5859375,28.721588135],[96.477401734,28.994039535],[96.080535888,29.463344574],[95.545028687,29.215589524],[95.454338074,29.03699112],[94.871803285,29.184289932],[94.62815857,29.348590851],[94.214691163,29.084089279],[93.844039917,28.707389832],[93.336906433,28.640159607],[93.190368652,28.426019668],[92.783027649,28.183740617],[92.560691833,27.821041107],[92.255157471,27.862169266],[91.918762207,27.715101242],[91.598152161,27.859909058],[91.651710511,27.484342576],[92.018768311,27.480323791],[92.102890015,26.867559434],[91.720634461,26.811922075],[91.097450256,26.822179795],[90.693458558,26.77026558],[90.416481017,26.904701233],[89.863151551,26.700654983],[89.378929138,26.862424851],[89.134277344,26.807836533],[88.869636535,26.962984086],[88.919456482,27.327699661],[88.767066956,27.564960479],[88.880187987,27.895240783],[88.616462707,28.103679658],[88.129981995,27.881515503],[88.009925842,27.142959595],[88.190498352,26.771411896],[88.097404,26.437443],[87.794944893,26.468524937],[87.343414307,26.347515106],[86.835800171,26.438697816],[86.310241699,26.61964035],[85.85331726,26.609516145],[85.626220977,26.87341498],[85.336318969,26.741415024],[85.191314697,26.869815827],[84.644851685,27.047246934],[84.624473572,27.336078644],[84.293411254,27.385042191],[84.110717773,27.521514893],[83.833221435,27.369508743],[83.390930175,27.479490281],[82.73700714,27.503101348],[82.701217651,27.721824647],[82.450714112,27.67861557],[82.072883607,27.922525407],[81.904022217,27.853683471],[81.322411,28.197168],[81.212418,28.360516],[80.716300964,28.567897796],[80.373321534,28.62902069],[80.060142517,28.916316985],[80.274406434,29.144750595],[80.243347169,29.411586761],[80.605339051,29.958717346],[81.018875122,30.236837387],[80.593559265,30.48223114],[80.210960389,30.582300187],[80.15937042,30.81208992],[79.745590209,31.006151201],[79.589576721,30.942888261],[79.29962158,31.149240492],[79.056777951,31.47225952],[78.916648862,31.266628268],[78.72126007,31.540950776],[78.77102661,31.999811171],[78.439208983,32.246459961],[78.412239074,32.556060791],[78.760276793,32.684169769],[78.781181335,32.475299836],[79.104469299,32.371711732],[79.291969019,32.65344603],[79.180496217,33.194610595],[78.823257001,33.48349],[78.709297,33.679611],[78.729233001,34.095698999],[78.981460428,34.33285113],[78.56933594,34.611949921],[78.28436279,34.667362211],[78.017745971,35.249752045],[77.843078681,35.500984191],[77.156822204,35.054698945],[75.749206544,34.515830994],[75.142295837,34.662410736],[74.302780151,34.797538757],[73.960220336,34.696681976],[73.898170471,34.032821656],[74.261123656,33.924797059],[73.966461181,33.740322114],[74.185081483,33.38351059],[74.014274597,33.198249816],[74.337921142,33.025939942],[74.466056824,32.781360626],[74.650138855,32.718410491],[74.698417663,32.484939576],[75.082626344,32.480045319],[75.330421448,32.331710816],[75.239166259,32.087150573],[74.602500915,31.886489868],[74.517280579,31.722911835],[74.642066955,31.461549758],[74.553443909,31.062601089],[73.873214722,30.383438111],[73.966316224,30.195049286],[73.385398865,29.926019669],[73.271316527,29.55696106],[72.943756103,29.029911041],[72.384696961,28.763940812],[72.208847046,28.399982453],[71.658287049,27.868930818],[70.757667542,27.717208863],[70.5626297,28.019802093],[70.366165161,28.008249284],[70.01626587,27.555995942],[69.586662292,27.177984238],[69.522415161,26.736011505],[69.855552674,26.582920074],[70.167739868,26.550743104],[70.106681824,25.924209595],[70.285263061,25.698930741],[70.681137086,25.66076088],[70.674171447,25.389320373],[70.894309997,25.144058228],[71.107139769,24.680650803],[70.998428,24.360571],[70.805763,24.222727001],[70.574867,24.420315],[70.1101,24.284897],[70.024085999,24.169353486],[69.600677,24.277847],[69.199768,24.235199],[68.764122,24.284122],[68.749245,23.962046],[68.547081,23.963186],[68.687363,23.82181],[68.489296,23.635139],[68.659027,23.14986],[69.197357177,22.838470459],[69.711250305,22.73819542],[70.229309081,22.977081299],[70.4118042,22.919860841],[70.16291809,22.551530838],[69.223473,22.257917],[69.007919,22.439859],[68.957916,22.237358],[69.704582,21.539307],[70.180137634,21.035970688],[70.742363,20.720694],[70.977363587,20.70347023],[71.474586,20.88986],[72.115417,21.202085],[72.305969,21.628469],[72.323753,22.147083],[72.569862365,22.188751221],[72.51763916,21.713472367],[72.666809,21.484585],[72.58847,21.293194],[72.897636414,20.587083816],[72.665412903,19.934860231],[72.78125,19.157638551],[73.00125122,18.970689773],[72.855423,18.695971],[73.004859924,18.019029617],[73.281525,17.113474],[73.311248779,16.542360306],[73.491806,15.981528],[73.873466,15.370141],[74.12542,14.774585],[74.24958,14.739584],[74.661796569,13.655420303],[74.821525574,12.851249695],[75.164307,12.13319],[75.546524047,11.673193933],[75.830406189,11.115421296],[75.910140991,10.792360305],[76.230141,10.058472],[76.354027,9.373191],[76.618751526,8.850972176],[76.984863281,8.376251221],[77.303467,8.131529],[77.552361,8.077921],[78.054863,8.382918],[78.209587,8.959582],[78.41153,9.112084],[78.980698,9.274862],[78.979858398,9.68735981],[79.396797,10.31792],[79.884033204,10.305970193],[79.859024,11.13986],[79.761253356,11.62097168],[79.884865,12.064861],[80.157363892,12.471248627],[80.25402832,12.779030799],[80.328186,13.429861],[80.109024,13.519305],[80.252357483,13.782921791],[80.126235961,14.159030915],[80.199028015,14.587082863],[80.04847,15.094585],[80.27041626,15.67319584],[80.566802978,15.860695839],[80.997643,15.749581],[81.282639,16.290701],[81.71875,16.311540605],[82.299576,16.59181],[82.250969,16.905695],[82.431526185,17.165700913],[83.159027,17.55986],[83.669586182,18.084030152],[84.069580078,18.275972367],[84.356246949,18.556804656],[84.84153,19.193201],[85.139442444,19.443330765],[85.663612,19.739168],[86.362663,19.95278],[86.769173,20.331112],[86.76667,20.644444],[86.970001,20.827778],[86.824173,21.137781],[87.123611,21.521393],[87.789718629,21.694999695],[88.153831,21.95961],[88.217224,21.764444],[88.461884,21.91803],[88.849236,22.364542],[88.929375,22.649809],[88.854980469,22.959133148],[88.912178039,23.234027862],[88.562156677,23.637184144],[88.733383178,23.911117553],[88.740898133,24.254024506],[88.204414368,24.459466935],[88.010566712,24.666660309],[88.443840028,25.194890977],[88.830413818,25.205453872],[88.803260803,25.524435044],[88.547958374,25.518249512],[88.090324402,25.896469117],[88.18044281,26.145692826],[88.446456908,26.365034104],[88.431236267,26.550157546],[89.164398193,26.131744385],[89.542312622,26.004447937],[89.747596741,26.157444001],[89.885940551,25.943580628],[89.831161499,25.296140671],[90.440979005,25.144626617],[91.069572448,25.19852066],[91.63785553,25.122653962],[92.061836242,25.18711853],[92.425765991,25.028795242],[92.096565247,24.375444413],[91.745044069,24.24659535],[91.592201,24.078833],[91.378021241,24.109500886],[91.162727356,23.595209122],[91.620223998,22.938674927],[91.823081969,23.086977004],[91.772888184,23.270080567],[91.975188979,23.482410113],[91.942307,23.681808001],[92.249412537,23.724306106],[92.397560119,23.240600585],[92.376472473,22.928758622],[92.507926941,22.736080169],[92.608779907,21.984094619]]],[[[92.903847,12.91579],[92.72438,12.827971],[92.699478,12.330251],[92.888542,12.331139],[92.97551,12.5419],[92.903847,12.91579]]],[[[92.703712,12.232751],[92.513519,11.848001],[92.711906,11.477872],[92.78791,11.883134],[92.703712,12.232751]]],[[[93.031113,13.56861],[92.842087,13.398197],[92.801483,12.90075],[93.003311,13.02822],[93.031113,13.56861]]],[[[93.848053,7.233333],[93.67028,7.013054],[93.828316,6.754256],[93.94548,7.00941],[93.848053,7.233333]]]]},"properties":{"id":"50d1eaf6-3a2a-496b-bb90-ef16b530aaf5","code":"IND","name":"India","abbreviation":"C-IND","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.624588,1.996794],[109.3385849,1.941905617],[109.235954286,1.644246459],[109.060317993,1.525548339],[108.842545,0.816602],[108.919425964,0.323104024],[109.179481507,0.072386124],[109.11642456,-0.514100552],[109.656921387,-0.6708768],[109.732421875,-0.9874444],[110.07399,-1.387309],[110.02671814,-1.682713628],[110.224220275,-2.885951518],[110.578522,-2.8421],[110.652992249,-3.041867732],[110.959053039,-3.06536293],[111.339103698,-2.909324884],[111.812271118,-2.99652648],[111.89741516,-3.542062521],[112.337402345,-3.315941334],[112.535125733,-3.441864728],[112.921897889,-3.238713503],[113.032417298,-2.972462415],[113.342804,-3.279737],[113.601440429,-3.165406703],[113.58581543,-3.44644618],[114.243034364,-3.368203878],[114.611717225,-3.640892982],[114.683036805,-4.1791749],[115.964515686,-3.611709117],[116.031372069,-3.366861343],[116.270240785,-3.111385344],[116.365867616,-2.672401429],[116.512283324,-2.563509226],[116.593369,-2.195264],[116.459739685,-2.052443981],[116.53527832,-1.475076198],[116.765319824,-1.356079102],[117.248970032,-0.906305015],[117.280968,-0.577501],[117.450249,-0.444761],[117.567100525,0.393028348],[117.751098632,0.756317557],[118.063789367,0.902976156],[118.763107299,0.805851876],[118.988754272,1.021342517],[118.410736,1.485248],[117.917747498,1.812506913],[117.805130006,2.198928356],[118.094032,2.307733],[117.782905579,2.74784255],[117.365143,2.864171001],[117.413071,3.391303],[117.217666626,3.491787196],[117.674225,3.87754],[117.457763671,3.929105998],[117.498283,4.171653],[117.243782,4.371089],[116.431716919,4.320870876],[116.171295166,4.38439417],[115.688980102,4.156349182],[115.5809021,3.662290097],[115.521697999,3.065089941],[115.103012085,2.817517997],[115.257774354,2.540449619],[114.917160033,2.255297662],[114.874076844,2.01555276],[114.565574646,1.426023008],[113.978843689,1.452879191],[113.623542785,1.220432401],[113.538345338,1.320459724],[113.012138367,1.407223105],[113.054672241,1.555753469],[112.486129762,1.576064468],[112.215278625,1.453703285],[112.153068542,1.156006695],[111.871452331,1.007290006],[111.526313783,0.96554184],[111.225815,1.083907999],[110.898285393,1.019389316],[110.693939209,0.860897661],[110.278541566,0.995830537],[110.189216613,1.178480983],[109.660652,1.619312],[109.624588,1.996794]]],[[[105.160392761,-5.808333396],[105.303802491,-5.45079565],[105.604125976,-5.831177712],[105.779465,-5.836386],[105.916366577,-4.642699241],[105.818252563,-4.294650078],[105.960365294,-3.839518547],[105.847946166,-3.523632287],[106.087615967,-3.256056308],[106.051315308,-2.987094163],[105.880615235,-2.967072724],[105.633728028,-2.434134006],[104.844398,-2.285701],[104.838097,-2.001547],[104.4646,-1.929979],[104.540596,-1.726725],[104.439971925,-1.515801071],[104.370070999,-1.02667],[104.134552003,-1.050532102],[103.674087524,-0.951296567],[103.436882018,-0.713689386],[103.318886,-0.344853001],[103.615715,-0.005973],[103.814613343,-0.000158655],[103.715126037,0.296708822],[103.331481934,0.547348857],[103.121437,0.463034],[102.910904,0.716624],[102.507682799,0.748653471],[102.225936889,1.000107527],[102.159194947,1.36056149],[101.76185608,1.659353376],[101.387428285,1.720337987],[101.305038452,2.041098117],[101.052154999,2.291224999],[100.835243225,2.29874134],[100.784339905,2.077689409],[100.435050965,2.256663084],[100.220123291,2.705239773],[99.990875244,2.75462985],[99.993431091,2.951893091],[99.22606659,3.519003391],[98.72530365,3.773217916],[98.530273438,4.015266895],[98.249153137,4.130448342],[98.285926818,4.416927815],[97.99382019,4.629590987],[97.905937195,4.889208318],[97.497711181,5.250098706],[97.210029602,5.144330978],[96.844718934,5.276879788],[96.534622193,5.199260712],[96.086044311,5.289859772],[95.885276795,5.50460291],[95.430633544,5.65618229],[95.193840028,5.527317047],[95.219963,5.290723],[95.540611267,4.673852921],[96.191932678,4.107213974],[96.536537171,3.72982192],[96.879310608,3.677451373],[97.425125122,2.934293509],[97.582183839,2.886370898],[97.663917541,2.394431592],[98.446998596,1.999656678],[98.838058471,1.647732377],[98.780380248,1.42890966],[99.057922,0.739319],[99.160522,0.274475],[99.617095948,0.065934927],[99.819580079,-0.300586462],[100.331352,-0.860596],[100.404816,-1.242092],[100.563056945,-1.329312205],[100.644028,-1.621163],[100.842185975,-1.883555651],[100.891799927,-2.328118563],[101.322853089,-2.740678548],[101.625701905,-3.248636246],[102.222618104,-3.667291403],[102.332122803,-4.009813309],[103.3276062,-4.80769682],[103.709732056,-4.961152076],[103.917976379,-5.234260558],[104.570831001,-5.875068],[104.724502563,-5.934115886],[104.616790771,-5.497878551],[105.160392761,-5.808333396]]],[[[141.006118775,-9.118924141],[140.993881,-7.329677],[141.019394,-6.889868],[140.858093,-6.780619],[141,-6.313278198],[141.000015259,-4.776979781],[140.999969482,-2.60434413],[140.111022949,-2.328604699],[139.803543091,-2.376547575],[138.681808472,-1.803019165],[138.099197388,-1.615403651],[137.931945801,-1.458024024],[137.68144226,-1.504881382],[137.089157,-1.851616],[137.230484009,-2.041861534],[136.670516967,-2.260367631],[136.333557129,-2.277705669],[136.214736939,-2.62057066],[135.5052948,-3.354982376],[135.111907959,-3.381504297],[134.860123,-3.242199],[134.688522,-2.964816],[134.66275,-2.613233],[134.215637208,-2.423775911],[134.104202,-2.052907],[134.075393676,-1.649155975],[134.255874633,-1.318073034],[134.010345458,-0.957240999],[133.973419,-0.719785],[133.38948059,-0.739691018],[132.956192016,-0.439283371],[132.647338866,-0.357080131],[132.257461547,-0.379496871],[131.827316285,-0.711149155],[131.24305725,-0.819980383],[131.173690797,-1.229457736],[130.99331665,-1.464565396],[131.486923217,-1.486194014],[131.88444519,-1.637040973],[132.038619995,-2.069724083],[132.316009522,-2.280059099],[132.591079712,-2.189533949],[132.71257019,-2.298666001],[133.154403687,-2.199510097],[133.784988,-2.233622],[133.877518,-2.386076],[133.52005,-2.578495],[133.216110229,-2.413822889],[132.794555664,-2.783658027],[132.14303589,-2.66640091],[132.115723,-2.938363],[132.478683471,-3.038420915],[132.679138,-3.3288],[132.813202,-3.268378],[132.896057,-3.650675],[132.730957,-3.64249],[132.89502,-4.111579],[133.320800781,-4.01021099],[133.40057373,-3.735447883],[133.601806641,-3.535187243],[133.846832276,-3.638400077],[134.317642213,-4.04279995],[134.440475,-3.916685],[134.719436646,-4.198254109],[135.207473755,-4.465709209],[135.90498352,-4.486999989],[136.83136,-4.913599],[136.917023,-4.868505],[137.874908446,-5.357656955],[138.075637817,-5.737028122],[138.272476196,-5.837137699],[138.431152344,-6.361507415],[138.696090699,-6.623121739],[138.596375,-6.995641],[138.833145141,-7.206202507],[138.95817566,-7.511467456],[139.107025147,-7.552192687],[139.018386841,-7.750627041],[139.02507019,-7.834036827],[138.935013,-7.899798],[138.903412,-8.025966],[138.92775,-8.068726],[138.84317,-8.101594],[138.921722,-8.276816],[139.223876953,-8.094909668],[139.339844,-8.205907],[139.71156311,-8.098835945],[139.993820189,-8.200130462],[140.461151123,-8.58795929],[140.615905762,-8.813299179],[141.006118775,-9.118924141]]],[[[119.403374,-5.133888],[119.360633851,-5.410863876],[119.794303895,-5.700706483],[119.92678833,-5.549067975],[120.344779967,-5.513638019],[120.270874024,-5.142509461],[120.383285522,-4.837916373],[120.345184326,-3.891014575],[120.440834046,-3.742367744],[120.38180542,-3.202057123],[120.189628602,-2.968562126],[120.68585968,-2.642954111],[121.097007751,-2.715504884],[121.060989381,-3.14469719],[120.865684509,-3.428196192],[120.943748474,-3.619586943],[121.371002198,-4.003673554],[121.608726502,-4.067216396],[121.469367982,-4.691642284],[121.983726502,-4.901478767],[122.038230896,-4.650875091],[122.22049,-4.479372],[122.595085145,-4.396935462],[122.740173339,-4.509743213],[122.90649414,-4.22953558],[122.663124001,-4.133118001],[122.639572144,-3.890891791],[122.196273804,-3.608415365],[122.323371888,-3.241330386],[122.320655823,-2.921017646],[122.010147095,-2.718406915],[121.966026305,-2.524500131],[121.680297851,-2.180105685],[121.317596,-1.936926],[121.71206665,-1.924854874],[121.867401124,-1.676618815],[122.212425231,-1.604879618],[122.633102416,-1.235369443],[122.790847778,-0.95554775],[123.059692,-0.896321],[123.373809815,-1.009126067],[123.394501,-0.641795],[123.060173034,-0.56426072],[122.961227417,-0.754234075],[122.202888489,-0.787952244],[121.942367554,-0.988707841],[121.473899842,-0.909771561],[121.100852966,-1.437565803],[120.675254821,-1.414874792],[120.580109,-1.102361],[120.308914184,-0.962940871],[120.059684753,-0.629910349],[120.008705139,-0.28593853],[120.136314391,0.191650033],[120.3540802,0.455051274],[120.687934875,0.511105119],[121.080795289,0.397595913],[121.526108,0.551146],[121.804359437,0.40910715],[122.388649,0.520108],[123.058883668,0.507392943],[123.267593383,0.322410912],[123.673515319,0.300021172],[124.511871339,0.473472416],[124.716094971,0.889207006],[125.012161255,1.124909878],[125.241378783,1.511345744],[124.962234498,1.727959752],[124.623527526,1.418198466],[124.297431946,1.0096668],[123.880096435,0.838884712],[123.060050965,0.919099331],[122.844741821,0.802401423],[122.476539612,0.999547185],[121.932128907,1.101992727],[121.58391571,1.057510019],[120.94215393,1.350355864],[120.573883058,0.769613803],[120.244644165,0.819336833],[120.014167785,0.65180248],[119.845214843,0.335258723],[119.885688782,-0.001156563],[119.754364013,-0.437489838],[119.762130737,-0.685218155],[119.337974549,-1.185040235],[119.295440674,-1.698355078],[119.140396,-2.473994],[118.762496948,-2.748895883],[118.886009216,-2.887312412],[118.844345093,-3.378340006],[118.935104371,-3.569032669],[119.461494445,-3.486102818],[119.636581421,-3.973892928],[119.524276734,-4.924047469],[119.403374,-5.133888]]],[[[113.547661,-8.433408],[113.960716247,-8.616950036],[114.308326721,-8.619472504],[114.447860717,-7.795710086],[114.045837403,-7.608644962],[113.755897522,-7.737349986],[113.280357361,-7.783669949],[112.908851623,-7.628913402],[112.846443176,-7.306200028],[112.668289185,-7.220039845],[112.593658448,-6.939204216],[112.052757264,-6.886740207],[111.562553406,-6.639440059],[111.153884888,-6.658454417],[111.046302795,-6.42489004],[110.722747803,-6.448070049],[110.479148864,-6.917310237],[110.171012879,-6.844626426],[109.867668152,-6.914680004],[109.533042907,-6.792719841],[109.303337098,-6.872597217],[108.749877929,-6.815760136],[108.575080871,-6.719658375],[108.539527892,-6.483580113],[108.338867187,-6.272709846],[108.129890442,-6.334380149],[107.656097412,-6.240968704],[107.297996522,-5.957699775],[107.031227112,-5.913770199],[106.834526062,-6.121558666],[106.04057312,-5.878389834],[105.882148999,-6.073499999],[105.808097839,-6.472459792],[105.469147,-6.8277],[105.960823058,-6.812019826],[106.545547485,-7.055105686],[106.400596618,-7.186749935],[106.525993347,-7.408440113],[107.399726867,-7.495810032],[107.846847534,-7.736849785],[108.442909242,-7.823215962],[108.710083009,-7.676701069],[109.006248,-7.77767],[109.382446288,-7.719540119],[109.969337464,-7.874005317],[110.725021,-8.199212],[112.334243774,-8.332969666],[112.655853272,-8.447119713],[113.206382752,-8.28028965],[113.547661,-8.433408]]],[[[128.034683228,-0.697566448],[128.209747314,-0.691757738],[127.889656067,0.000721144],[127.900749207,0.427369744],[128.042282104,0.478144675],[128.675354004,0.338716209],[128.689376831,0.52536446],[128.198349,0.789425373],[128.683395386,1.067884088],[128.756820679,1.398520827],[128.667144775,1.589380383],[128.156494141,1.353886843],[128.166000366,1.124824286],[127.981170655,1.087141753],[127.843917846,0.804880977],[127.626838684,0.973798693],[127.974212647,1.282081605],[128.021987915,1.703574659],[127.853363037,1.926856519],[127.573433,1.756215],[127.405670165,1.228685141],[127.491653442,0.89361012],[127.638237,0.81730026],[127.527290344,0.552828313],[127.734298707,0.311129868],[127.661079406,-0.208500624],[127.881164551,-0.389597923],[128.034683228,-0.697566448]]],[[[130.839005,-3.849008],[130.881256104,-3.595609427],[130.643310546,-3.37420535],[130.600997926,-3.146677733],[130.38571167,-2.9892416],[130.034942626,-3.003699063],[129.4347229,-2.782511234],[129.132736207,-2.968344926],[128.836380005,-2.86700344],[128.186218,-2.866192],[128.114303999,-3.064966999],[127.873802,-3.193861],[128.051849,-3.346145],[128.201782,-3.126565],[128.40524292,-3.428550244],[128.674392699,-3.433373212],[128.858901978,-3.211663483],[129.528869629,-3.470292807],[129.524551392,-3.297897339],[129.918579101,-3.337438344],[130.017089844,-3.483620644],[130.839005,-3.849008]]],[[[118.71283,-8.741232],[119.031997681,-8.634238243],[119.000549317,-8.310337066],[118.463470458,-8.24598217],[118.279907,-8.364652],[118.080718995,-8.100283623],[117.711776734,-8.24288845],[118.230843,-8.551757],[117.973701,-8.739981],[117.77285,-8.711727],[117.625122,-8.444584],[117.107811,-8.371702],[116.753227235,-8.663045883],[116.788841,-9.035892],[117.009483,-9.107514],[117.676452636,-8.924649239],[118.184951782,-8.854052544],[118.358680725,-8.683226584],[118.450561523,-8.884840011],[118.71283,-8.741232]]],[[[124.058174134,-9.357751847],[123.674133301,-9.62847042],[123.57849884,-9.943302155],[123.771102905,-10.043377877],[123.455482483,-10.349164963],[123.797683715,-10.355237961],[124.170722961,-10.155522347],[124.408966064,-10.164546965],[124.75075531,-9.881637573],[125.087966919,-9.458633422],[124.949935914,-8.958686829],[124.476135254,-9.174365043],[124.35659027,-9.481808662],[124.058174134,-9.357751847]]],[[[121.136238099,-8.901107789],[121.387016296,-8.789483071],[121.737098693,-8.876834869],[122.117263794,-8.729596137],[122.376228332,-8.752476692],[122.831116,-8.589704],[122.8720932,-8.29373455],[122.597190856,-8.392876626],[122.474945068,-8.608397483],[122.221282959,-8.619996071],[121.913383483,-8.495615958],[121.52342987,-8.613854408],[121.307807922,-8.481608391],[120.590805053,-8.297114371],[120.260612488,-8.282972336],[119.877304,-8.45892],[119.799667,-8.759757],[120.233001709,-8.844263077],[120.595825196,-8.815032005],[120.946533203,-8.939885139],[121.136238099,-8.901107789]]],[[[106.513931,-3.115415],[106.602348327,-2.862340449],[106.848869324,-2.572971344],[106.355865479,-2.465632915],[106.226158142,-2.299868345],[106.185806273,-1.895643233],[105.92099762,-1.509147525],[105.602096558,-1.529024958],[105.333625793,-1.678076028],[105.127212524,-1.959434152],[105.274848939,-2.14543128],[105.530265808,-2.078721047],[105.789131165,-2.172405004],[105.977684021,-2.815489769],[106.428001405,-2.973839044],[106.513931,-3.115415]]],[[[138.910278,-8.058805],[138.889099,-8.036685],[138.890442,-7.920838],[139.081481933,-7.568960666],[138.934677124,-7.543481349],[138.745117188,-7.370589732],[138.226837157,-7.466503144],[137.90689087,-7.7868371],[137.640274049,-8.417581559],[138.44116211,-8.384651183],[138.683182,-8.14716],[138.910278,-8.058805]]],[[[120.755744935,-10.15686798],[120.815940858,-9.977185248],[120.468086243,-9.616630555],[120.254737853,-9.640706061],[119.935180664,-9.276160241],[119.807006835,-9.393884658],[119.301574706,-9.357491492],[118.927276612,-9.550208092],[119.134552002,-9.730921746],[119.678535462,-9.789696693],[120.165825,-10.236554],[120.454178,-10.312617],[120.755744935,-10.15686798]]],[[[126.740753173,-3.853120089],[127.25152588,-3.592304945],[126.983726501,-3.137866735],[126.789634704,-3.059232711],[126.109367371,-3.120108366],[126.006820679,-3.358839272],[126.166900635,-3.59172678],[126.740753173,-3.853120089]]],[[[115.510192872,-8.521165848],[115.711273194,-8.399796485],[115.558189391,-8.23131752],[115.156463624,-8.064938544],[114.987098693,-8.180230141],[114.431785584,-8.173428535],[114.58152008,-8.398272514],[114.930770873,-8.474633217],[115.180725098,-8.759304999],[115.510192872,-8.521165848]]],[[[108.01145935,-3.247590064],[108.29801941,-2.847179889],[108.0936203,-2.607734441],[107.65802,-2.558983],[107.560738,-2.996609],[107.640495,-3.235681],[108.01145935,-3.247590064]]],[[[112.704719544,-7.108722209],[113.099830627,-7.228542328],[113.548110963,-7.23251009],[114.124053956,-6.978487014],[113.967453003,-6.873029232],[112.849266053,-6.89673376],[112.704719544,-7.108722209]]],[[[116.299828,-8.910368],[116.510109,-8.779023],[116.718102,-8.348289],[116.430160523,-8.221002579],[116.03314209,-8.442401887],[115.996407,-8.887922],[116.299828,-8.910368]]],[[[122.578300476,-5.548549653],[122.885040282,-5.578798293],[122.971771241,-5.395234108],[123.224349977,-5.279626846],[122.973335267,-5.115417004],[123.025124,-4.767722],[123.196594239,-4.59279871],[123.042076111,-4.36948967],[122.8486557,-4.589632511],[122.732559,-5.241979],[122.578300476,-5.548549653]]],[[[99.247192,-1.785758],[99.300713,-1.700422],[98.894897461,-0.907442153],[98.664535522,-0.980397999],[98.604553224,-1.22767675],[98.879554748,-1.680401802],[99.247192,-1.785758]]],[[[97.819717407,0.567742229],[97.919197083,1.025689959],[97.68827057,1.179981113],[97.488441466,1.473486662],[97.111877,1.398926],[97.819717407,0.567742229]]],[[[131.338669,-7.963975],[131.619094848,-7.644904137],[131.674087525,-7.45622015],[131.517487,-7.162083],[131.23436,-7.474852],[131.084594727,-7.842069626],[131.338669,-7.963975]]],[[[130.644104001,-0.11264],[130.943389893,-0.350276649],[131.240417481,-0.384050667],[131.310516358,-0.187608659],[130.772675,-0.009458],[130.275192,-0.147114],[130.916625976,-0.402442663],[130.644104001,-0.11264]]],[[[122.43610382,-5.402635098],[122.762481689,-4.944459916],[122.682250977,-4.611240864],[122.318161011,-4.835999011],[122.384635926,-5.085618495],[122.278900146,-5.394608974],[122.43610382,-5.402635098]]],[[[125.801879883,-8.001961708],[126.062393188,-7.888549804],[126.46812439,-7.9742527],[126.724067688,-7.741872788],[126.642311097,-7.564958095],[126.194374085,-7.724751473],[125.947815,-7.663053],[125.801879883,-8.001961708]]],[[[124.836822509,-1.898545861],[125.314796448,-1.893466949],[124.671463012,-1.64392495],[124.400550843,-1.66007471],[124.342567443,-1.909198165],[124.524337768,-2.018272162],[124.836822509,-1.898545861]]],[[[135.910568238,-1.164718627],[136.189193725,-1.044927119],[135.811187744,-0.685331523],[135.363906999,-0.630261],[135.910568238,-1.164718627]]],[[[127.520805358,-1.725568294],[128.157562256,-1.681981326],[127.93499,-1.448598],[127.641387939,-1.330205082],[127.444229,-1.434258],[127.520805358,-1.725568294]]],[[[122.876693726,-1.599668741],[123.159751892,-1.310571789],[123.405662536,-1.527194977],[123.559341431,-1.28135395],[123.193641663,-1.153718829],[122.911865234,-1.180307388],[122.796257019,-1.370748282],[122.876693726,-1.599668741]]],[[[134.200836,-6.926732],[134.480988,-6.664789],[134.468582153,-6.452956675],[134.133743286,-6.312607766],[134.051086425,-6.774370669],[134.200836,-6.926732]]],[[[136.230285645,-1.905666708],[136.643600463,-1.870345592],[136.788772583,-1.740105152],[136.182937622,-1.655636669],[135.732254,-1.687958],[136.230285645,-1.905666708]]],[[[124.449440003,-8.445055008],[125.125907897,-8.337098122],[125.099136353,-8.149916649],[124.400184631,-8.214764595],[124.449440003,-8.445055008]]],[[[128.246703932,2.169415172],[128.52192688,2.06884098],[128.673324584,2.498558999],[128.560180665,2.64194727],[128.322738648,2.471097469],[128.246703932,2.169415172]]],[[[116.203254701,-3.961705685],[116.273796081,-3.907421351],[116.280418397,-3.220753432],[116.114761352,-3.307065486],[116.005928039,-3.682915926],[116.203254701,-3.961705685]]],[[[130.264038,-1.700521],[129.717865,-1.871969],[130.253723145,-2.053534984],[130.439453,-1.820975],[130.264038,-1.700521]]],[[[130.973403931,-1.359525323],[131.083251954,-1.009961963],[130.902648926,-0.898563981],[130.635986,-0.960175],[130.74987793,-1.243622184],[130.973403931,-1.359525323]]],[[[134.753235,-6.144626],[134.664169,-5.975677],[134.536591,-5.918522],[134.439132999,-6.014733001],[134.417984,-6.024866001],[134.381638,-6.018772],[134.358215,-6.040759],[134.326050001,-6.022862],[134.279205,-6.050471],[134.341248,-6.218519],[134.626922608,-6.370035647],[134.753235,-6.144626]]],[[[101.670150758,1.726776838],[101.776527405,1.988644242],[101.655235291,2.124876738],[101.397827,2.00513],[101.458031,1.723877],[101.670150758,1.726776838]]],[[[108.237221,3.746668],[108.402671814,3.96578598],[108.219353,4.230133999],[107.973732,4.014323],[108.237221,3.746668]]],[[[134.36763,-6.022528],[134.379928589,-6.015765666],[134.417984009,-6.022800921],[134.433670045,-6.016252041],[134.462081909,-5.979030132],[134.53862,-5.915985],[134.713242,-5.815829],[134.452667,-5.530589],[134.293762206,-5.918820858],[134.36763,-6.022528]]],[[[96.426132202,2.32999444],[96.078659057,2.756767273],[95.770210001,2.90755],[95.828605652,2.629637956],[96.075378418,2.569583417],[96.426132202,2.32999444]]],[[[103.049369812,0.741127431],[102.740089417,1.021193743],[102.40890503,0.887848139],[102.547676086,0.772206367],[103.049369812,0.741127431]]],[[[104.594444276,0.811659753],[104.625908,1.115315],[104.393501,1.204543],[104.226135,1.020533],[104.594444276,0.811659753]]],[[[123.232711948,-10.605085092],[122.810020447,-10.781994819],[122.824790954,-10.923083305],[123.228080749,-10.818738938],[123.232711948,-10.605085092]]],[[[100.451576,-3.348188],[100.45459,-3.010141],[100.235092,-2.783605],[100.186523,-2.989037],[100.451576,-3.348188]]],[[[102.47756195,0.969034732],[102.481254578,1.243583919],[102.205879212,1.281857133],[102.275894165,1.005383254],[102.47756195,0.969034732]]],[[[127.47869873,-0.642082751],[127.692604,-0.456365],[127.372497558,-0.317009866],[127.315979005,-0.516701937],[127.47869873,-0.642082751]]],[[[102.504516601,1.303766369],[102.45840454,1.519497513],[102.071350098,1.603242995],[102.111015319,1.463557719],[102.504516601,1.303766369]]],[[[125.461533,-1.943452],[125.919952393,-1.938752055],[126.196655274,-1.804840803],[125.628975,-1.828337],[125.461533,-1.943452]]],[[[109.654633,-1.012008],[109.488045,-0.973071],[109.501129,-1.309427],[109.777802,-1.147516],[109.654633,-1.012008]]],[[[104.772697449,-0.26165247],[104.55367279,0.029490042],[104.424263,-0.223633],[104.772697449,-0.26165247]]],[[[103.087036132,0.828794122],[102.972236633,1.09624505],[102.670661926,1.091048836],[103.087036132,0.828794122]]],[[[122.025513,-5.474644],[122.03495,-5.160401],[121.794395,-5.277483],[122.025513,-5.474644]]],[[[123.386520386,-8.580831528],[123.787750245,-8.272621154],[123.473426818,-8.333025932],[123.386520386,-8.580831528]]],[[[124.097312928,-8.544382095],[124.299781798,-8.332283974],[123.965232849,-8.34744835],[124.097312928,-8.544382095]]],[[[128.093826,-3.794373],[128.3538208,-3.633579731],[128.025543212,-3.59310317],[128.093826,-3.794373]]],[[[138.813126,-8.153157],[138.567276,-8.355647],[138.845016,-8.379976],[138.813126,-8.153157]]],[[[120.498901,-6.459674],[120.568092346,-6.056100844],[120.462013245,-5.791158199],[120.498901,-6.459674]]]]},"properties":{"id":"ba302a38-cfdd-4f71-8b27-de08d7654845","code":"IDN","name":"Indonesia","abbreviation":"C-IDN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[61.282627426,35.60869039],[61.159267425,35.989597321],[61.229221344,36.172401428],[61.140239716,36.662059785],[60.370674133,36.624248505],[60.020957947,37.033267975],[59.552013398,37.166263581],[59.276287078,37.497314454],[58.821933747,37.692005157],[58.459835052,37.625049592],[58.211891174,37.760105133],[57.359134674,37.974437714],[57.245121002,38.261688232],[57.080413818,38.176662446],[56.754673004,38.272594451],[56.417045593,38.24036026],[56.339199066,38.070625305],[55.474193572,38.084331512],[55.129325867,37.950969697],[54.823841095,37.725212098],[54.797786713,37.523056031],[54.243572,37.309181],[53.897811889,37.340808868],[54.036258697,36.957992554],[53.883243561,36.785064697],[53.284202576,36.8490448],[52.061759948,36.588085174],[51.673328399,36.599208832],[50.960655213,36.782432556],[50.29901886,37.155448915],[50.167907716,37.393962861],[49.323673248,37.515064239],[49.074810029,37.653205872],[48.940681457,37.880924225],[48.879386902,38.437000275],[48.632034301,38.402408599],[48.315654756,38.601352691],[48.013500214,38.904579163],[48.357784272,39.040542604],[48.144172668,39.200191498],[48.374633789,39.370769501],[47.990760804,39.696315765],[47.807823182,39.650070191],[46.852722169,39.139621734],[46.547237396,38.87273407],[46.136863709,38.834842682],[45.43636322,38.998386383],[44.820220947,39.625209808],[44.606552125,39.773357391],[44.441123963,39.435874939],[44.0472641,39.366794587],[44.316131591,38.833858491],[44.401329041,38.140964508],[44.238861083,37.887115478],[44.597114563,37.763763428],[44.602615356,37.444278717],[44.804965973,37.148143768],[44.851741792,36.804908754],[45.047481537,36.729343415],[45.092689515,36.434841155],[45.252738952,36.426975251],[45.387119294,36.078411103],[45.757408143,35.803981781],[46.086872102,35.860054016],[45.989261628,35.499626159],[46.20400238,35.194175721],[45.701057435,34.811962128],[45.748313904,34.541561127],[45.551986695,34.592617035],[45.524715424,33.931819916],[45.766818999,33.635517121],[45.910202026,33.623016358],[46.19726944,33.253376007],[46.107192994,33.01379013],[46.646747589,32.820686341],[47.108314513,32.475811005],[47.451286317,32.397624969],[47.864948273,31.779157638],[47.699180603,31.400041581],[47.701721192,30.992502213],[48.030826569,30.993814468],[48.03692627,30.482715608],[48.398678,30.210382],[48.568558,29.901806],[48.889027,30.004305],[48.927082,30.410139],[49.194275,30.470137],[49.240139,30.13236],[49.587639,30.005972],[49.907917,30.195139],[50.086250305,30.17930603],[50.138195039,29.944026948],[50.66486,29.380695],[50.645138,29.163471],[50.921242,29.06625],[51.133472,28.419861],[51.402084,27.927639],[51.701248,27.823473],[52.047359,27.839306],[52.501804,27.602638],[52.577084,27.38236],[52.823471069,27.209028245],[53.459583282,26.981250762],[53.607639312,26.770969391],[54.277915955,26.728471757],[54.624584198,26.500415803],[54.845695496,26.517362595],[55.098194123,26.695417405],[55.564583,26.813749],[55.64875,26.983749],[55.948193,27.021805],[56.353195,27.189306],[56.770416,27.135975],[57.007637,26.837641],[57.061527,26.374306],[57.19875,26.011806],[57.389862,25.765139],[57.950138,25.700138],[58.096806,25.562639],[58.801529,25.572363],[59.00153,25.422916],[59.476528,25.468472],[59.605972,25.389584],[60.293472,25.384863],[60.532082,25.443195],[60.627083,25.300694],[61.398472,25.067083],[61.576805,25.184269],[61.655613,25.297499],[61.68920517,25.799165725],[61.870754243,26.246740341],[62.315067291,26.528869629],[62.778697968,26.652280807],[63.169185639,26.647294998],[63.275531769,26.864767074],[63.184223176,27.241436004],[62.781478881,27.251426697],[62.855392457,27.465137482],[62.786937714,28.281179428],[61.804157257,28.640169145],[61.504318237,29.007545472],[61.37260437,29.348672867],[60.89943695,29.837495804],[61.807563782,30.83760643],[61.834262848,31.087860107],[61.706481933,31.377180099],[60.845687866,31.486900331],[60.775035858,31.742471694],[60.880195618,32.200416566],[60.58412552,33.12753296],[60.899990081,33.538909912],[60.531753541,33.650173188],[60.504928589,34.076797486],[60.727661133,34.510429383],[60.991390229,34.641555786],[61.099864959,35.275653839],[61.282627426,35.60869039]]],[[[56.158749,26.998194],[55.334862,26.643749],[55.852085,26.733749],[56.158749,26.998194]]]]},"properties":{"id":"4680069a-0ee6-43a3-870e-82cf68b75278","code":"IRN","name":"Iran","abbreviation":"C-IRN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[44.804965973,37.148143768],[44.637741089,37.186740876],[44.268787385,36.982971192],[44.237377166,37.279071808],[43.666557312,37.230865479],[43.167404175,37.373977662],[42.730808259,37.345062255],[42.591648101,37.147251128],[42.363708497,37.10926056],[41.828254699,36.593154908],[41.423007964,36.524684905],[41.258010865,36.054573059],[41.394287108,35.630271911],[41.282604217,35.48614502],[41.23449707,34.777236939],[41.012367249,34.419864655],[38.796836853,33.368171693],[39.053546905,32.581970215],[39.03950882,32.340393067],[39.212409951,32.152431774],[40.4132544,31.9480762],[41.440726101,31.3732074],[42.0855991,31.1116578],[43.6072998,30.023021699],[44.7268814,29.191659599],[46.4245353,29.058566099],[46.542605136,29.097971216],[46.940269,29.571663],[47.128876,29.974716],[47.351105,30.081661],[47.952911,30.020096],[48.232918,30.019306],[48.568558,29.901806],[48.398678,30.210382],[48.03692627,30.482715608],[48.030826569,30.993814468],[47.701721192,30.992502213],[47.699180603,31.400041581],[47.864948273,31.779157638],[47.451286317,32.397624969],[47.108314513,32.475811005],[46.646747589,32.820686341],[46.107192994,33.01379013],[46.19726944,33.253376007],[45.910202026,33.623016358],[45.766818999,33.635517121],[45.524715424,33.931819916],[45.551986695,34.592617035],[45.748313904,34.541561127],[45.701057435,34.811962128],[46.20400238,35.194175721],[45.989261628,35.499626159],[46.086872102,35.860054016],[45.757408143,35.803981781],[45.387119294,36.078411103],[45.252738952,36.426975251],[45.092689515,36.434841155],[45.047481537,36.729343415],[44.851741792,36.804908754],[44.804965973,37.148143768]]]},"properties":{"id":"b969c94a-f37d-45a6-b8e0-eae8a4ba244f","code":"IRQ","name":"Iraq","abbreviation":"C-IRQ","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-7.258676313,55.066255673],[-6.937031,55.245847],[-7.332665,55.311082],[-8.284505,55.158727],[-8.351504,54.883088],[-8.678881,54.622772],[-8.135601,54.614067],[-8.287966,54.47686],[-8.826647961,54.252802232],[-9.810998,54.341672],[-10.069687,54.024854],[-9.901428,53.764351],[-10.074954,53.438394],[-9.26491,53.154253],[-9.498435,52.750078],[-9.912879,52.576062],[-9.689401,52.482792],[-9.951174,52.231744],[-10.176072,52.290759],[-10.470781,52.182091],[-9.967165,52.05692],[-10.385779,51.883282],[-10.179237,51.766031],[-9.655403,51.87041],[-10.065833,51.622908],[-9.622968,51.681152],[-9.75819,51.452051],[-9.347055,51.468003],[-8.550164,51.646183],[-7.586367,51.99186],[-7.585773,52.103591],[-6.360125,52.174453],[-6.385312286,52.355459447],[-6.020925665,52.925371551],[-6.079548,53.546851],[-6.376199624,53.957080095],[-6.291696642,54.112307601],[-6.623755254,54.03647201],[-7.029644529,54.421295102],[-7.375242211,54.136791006],[-7.861760257,54.21872503],[-8.153852873,54.437100244],[-7.760272,54.594236],[-7.258676313,55.066255673]]]},"properties":{"id":"594423d7-bee9-4194-bc99-d381656bd664","code":"IRL","name":"Ireland","abbreviation":"C-IRL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.749723,54.068748],[-4.386943817,54.194583893],[-4.363056182,54.418193817],[-4.709722042,54.221248628],[-4.749723,54.068748]]]},"properties":{"id":"b047feda-f8db-4fe4-ab1e-c619af22d56d","code":"IMN","name":"Isle of Man","abbreviation":"C-IMN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.910694122,29.497083664],[34.966011047,29.547065734],[35.175811768,30.119136811],[35.152011872,30.418621064],[35.459789277,31.120376588],[35.475585937,31.488241196],[34.913940429,31.349792481],[34.953735351,31.583011627],[35.23241806,31.787845613],[35.026138306,31.869983674],[34.968978883,32.214244843],[35.231681823,32.551567078],[35.55973053,32.390434265],[35.579998017,32.632896424],[35.779568177,32.751945711],[35.900936001,32.938732],[35.817222992,33.364033],[35.518657685,33.116241455],[35.102920532,33.094058991],[34.954029083,32.822082519],[34.782917022,32.127082824],[34.48902893,31.594427109],[34.268009186,31.22360611],[34.855873108,29.739179611],[34.910694122,29.497083664]]]},"properties":{"id":"7fff6054-09ce-4886-9f98-445892450044","code":"ISR","name":"Israel","abbreviation":"C-ISR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[10.472848197,46.856806865],[10.392670631,46.680843353],[10.057415008,46.548709869],[10.173440933,46.258937835],[9.90239904,46.385559073],[9.297103883,46.315807342],[9.021220208,46.052516937],[8.463932038,46.226081848],[8.469340324,46.451969148],[7.873587131,45.92811966],[7.552368164,45.98715973],[7.122085095,45.862365722],[7.043088914,45.938652039],[6.820878982,45.826869964],[7.135106086,45.254562378],[6.630878926,45.108901978],[7.074445,44.681305],[6.86726904,44.531131744],[7.037686348,44.225566865],[7.426789284,44.115207672],[7.684199811,44.177261352],[7.529582501,43.78396225],[8.128749847,43.925693511],[8.27263832,44.141803742],[8.744027,44.427082],[9.230415345,44.348194122],[10.240416526,43.872081756],[10.330417,43.473473],[10.501806259,43.290973663],[10.485138893,42.957359313],[10.774860382,42.908195497],[11.192083358,42.510139466],[11.550415994,42.34236145],[11.834304809,42.029304505],[12.142640001,41.91486],[12.62263775,41.444026947],[12.871804238,41.405693055],[13.039860726,41.230693818],[13.292362213,41.29763794],[13.811805726,41.187084199],[14.082360267,40.828472137],[14.306249,40.830696],[14.488751412,40.627082825],[14.755415916,40.677360534],[15.000416756,40.389026643],[14.904582978,40.253192903],[15.420415879,39.990139009],[15.574583053,40.078193665],[15.792915344,39.863750459],[15.994859695,39.444305419],[16.18486023,38.749584197],[15.986249924,38.723472596],[15.638750075,38.001529694],[16.063474655,37.92402649],[16.323749542,38.294029235],[16.569583999,38.424026],[16.604583741,38.812915802],[17.093193054,38.905971528],[17.154029845,39.401527405],[16.780416488,39.615695953],[16.529581,39.660973],[16.605693818,40.079303742],[17.015138627,40.504306793],[17.505416871,40.29486084],[17.864027,40.281528],[18.045694351,39.929584504],[18.369028092,39.793193818],[18.520694733,40.107917785],[18.424028396,40.294303894],[17.93375,40.680973],[17.472360612,40.831806184],[17.045694,41.080971],[15.981805801,41.444862366],[15.900696,41.615971],[16.189583,41.774582],[16.059583663,41.949306489],[15.430973001,41.900969999],[15.10208416,41.93347168],[14.717914581,42.105693817],[14.108750343,42.563194275],[13.93764019,42.816249848],[13.628750801,43.548194886],[12.717082978,43.972637176],[12.390137673,44.214862824],[12.240417,44.687084],[12.479583,44.865417],[12.175417,45.384583],[13.384029,45.674862],[13.628750801,45.768749238],[13.722361565,45.594970704],[13.609933854,45.816722871],[13.666212924,46.170339168],[13.382119179,46.293251038],[13.713896501,46.523197941],[12.690494923,46.657394214],[12.281117482,46.792312472],[12.121946009,47.007597392],[11.627675189,47.013811474],[11.110455747,46.927683873],[11.022877157,46.766339508],[10.472848197,46.856806865]],[[12.453890215,43.970825504],[12.486310959,43.899871826],[12.412594795,43.897838593],[12.453890215,43.970825504]],[[12.449790001,41.905609131],[12.455550193,41.907550812],[12.458400726,41.90184021],[12.44662857,41.90184021],[12.449790001,41.905609131]]],[[[15.13708,36.687916],[15.296528816,37.105972291],[15.104311,37.310421],[15.204579,37.7407],[15.477640151,38.054862976],[15.519311906,38.297916413],[15.089580536,38.119861604],[14.915138245,38.192638397],[14.364581109,38.014862061],[13.745139122,37.97013855],[13.104578971,38.191532135],[12.894860268,38.024028778],[12.76736,38.180695],[12.558751106,38.06375122],[12.424027,37.802361],[12.672915458,37.559581757],[12.946810723,37.571250916],[13.903471,37.09486],[14.356527329,36.984859466],[14.493748664,36.785968781],[15.13708,36.687916]]],[[[9.626805305,40.225139618],[9.820971,40.494305],[9.56375,40.919304],[9.561806,41.120415],[9.224305,41.259304],[8.81208229,40.932361603],[8.54319191,40.82597351],[8.218471527,40.868473054],[8.137640954,40.733749389],[8.483194351,40.285972596],[8.40125,39.898472],[8.453472138,39.550418854],[8.366805,39.228474],[8.649582,38.894585],[9.027082,38.999027],[9.092081,39.212917001],[9.55764,39.134861],[9.736527444,40.076248169],[9.626805305,40.225139618]]]]},"properties":{"id":"25e3d434-698d-4369-ae49-4b4be9c1a188","code":"ITA","name":"Italy","abbreviation":"C-ITA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.40235901,17.860694885],[-76.926529,17.848473],[-76.845138549,17.997638702],[-76.524307,17.850414],[-76.181526,17.911806],[-76.331253,18.145695],[-76.954025269,18.401805878],[-77.845695,18.524858],[-78.212364,18.456528],[-78.357086182,18.241247177],[-78.070419312,18.211805345],[-77.740417,17.865694],[-77.40235901,17.860694885]]]},"properties":{"id":"86547c4f-0687-4531-a7af-f33f732ecae3","code":"JAM","name":"Jamaica","abbreviation":"C-JAM","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.630463,33.509155],[135.911865,33.549095],[136.088882447,33.87361145],[136.272781,33.971943],[136.337784,34.203056],[136.688339,34.305832],[136.835556,34.50111],[136.533050538,34.608612062],[136.655838,34.998055],[136.867538452,35.040523529],[136.914443969,34.77166748],[137.440292,34.667969],[138.192596,34.600735],[138.557968139,35.100849153],[138.783417,35.025593],[138.741744995,34.723983765],[138.972275,34.674179],[139.148330688,34.936111451],[139.07663,35.097824],[139.326843262,35.312091827],[139.568313598,35.294116974],[139.74707,35.589745],[140.083465575,35.596694947],[139.823029,35.344563],[139.824172974,34.909999847],[140.405426025,35.236873627],[140.454162598,35.53250122],[140.870544434,35.718254089],[140.575271606,36.171943666],[140.605743408,36.481838227],[140.800827,36.894722],[140.920273,36.934444],[141.035568237,37.372226715],[140.922500611,37.914165498],[141.106033,38.384926],[141.408707,38.403759],[141.462234,38.647026],[141.81424,39.058109],[142.071396,39.542221],[141.953613281,39.98670578],[141.754379,40.369125],[141.485549926,40.562221526],[141.310836791,41.351112366],[140.908691,41.494185999],[140.763885,41.148056],[141.278610229,41.159358978],[141.104171752,40.8722229],[140.879745,41.009338001],[140.68824768,40.876407624],[140.631561,41.099403],[140.345276,41.260834],[140.242645264,40.785060883],[139.924438476,40.644721985],[140.007401,40.219913],[139.755889892,39.85630417],[140.073776246,40.040203095],[140.016662597,39.389167785],[139.746201,38.77496],[139.454605102,38.389385224],[139.312103272,38.047786714],[138.819961548,37.794296266],[138.547241211,37.372329713],[138.215789795,37.169185639],[137.425827027,36.924945831],[137.334533692,36.763320923],[137.064163208,36.793056488],[136.943756103,37.224323272],[137.265090943,37.326511383],[137.276092529,37.534393312],[136.756134,37.364048],[136.6900177,36.730751039],[135.96432495,35.997283936],[136.100280761,35.776943207],[135.73538208,35.492839814],[135.288085937,35.516139985],[135.225662232,35.774921417],[134.920562745,35.645000459],[134.539840697,35.670860291],[134.160278321,35.531665803],[133.590042115,35.531734466],[133.11412,35.450459],[133.068878,35.583672],[132.627578735,35.433727264],[132.416626,35.177288],[131.81376648,34.692752837],[131.300613,34.382042],[130.890503,34.346474],[130.934525,33.947742],[131.268966674,33.922798158],[131.785248,34.053143],[132.131485,33.882843],[132.220916749,34.234031677],[132.503098,34.354717],[132.797028,34.31002],[133.684265,34.507103],[133.934998,34.450928],[134.293884,34.736389],[134.756104,34.765278],[135.060272217,34.625278473],[135.343063355,34.713436127],[135.418320001,34.520302],[135.225860596,34.349327087],[135.078476,33.903759],[135.630463,33.509155]]],[[[143.323059082,42.14805603],[143.323730469,42.309253693],[143.615829469,42.66166687],[144.183883667,42.988334657],[144.485001,42.939167],[144.787521,43.05621],[145.535629,43.189999],[145.389725,43.261665],[145.070557,43.745277],[145.344299316,44.339351655],[144.791687011,43.930076599],[144.387985,43.925293],[144.194977,44.100773],[143.736145019,44.105686188],[142.741485595,44.757888794],[142.507080079,45.040786743],[141.95539856,45.515579224],[141.57206726,45.237918853],[141.784439086,44.723609925],[141.64805603,44.314777375],[141.661132813,44.012611389],[141.329498291,43.725006104],[141.423706055,43.328109741],[141.161376953,43.143909455],[140.792221069,43.194721223],[140.498566,43.372578],[140.326812743,43.233192444],[140.529998779,43.023612975],[140.246795654,42.768482208],[139.867218017,42.66444397],[139.764999389,42.310832977],[140.119430543,42.00379944],[140.008758544,41.691452026],[140.040756,41.449726],[140.410675048,41.520809175],[140.661193847,41.821941376],[140.99765,41.714066],[140.961014,41.914825],[140.708374023,42.138389587],[140.275085449,42.28735733],[140.45639038,42.578590394],[140.707687378,42.583023072],[141.013381958,42.322097778],[141.629669,42.636238],[141.902755738,42.576175691],[142.476715088,42.273468019],[142.964172363,42.118690491],[143.246261596,41.927898408],[143.323059082,42.14805603]]],[[[131.01767,31.364532],[131.371796,31.42853],[131.45575,31.903278],[131.680832,32.542221],[131.985001,32.912498],[131.88942,33.26712],[131.702041625,33.405937195],[131.661727906,33.670352936],[131.432647704,33.573139191],[131.084075928,33.635063172],[130.895157,33.89217],[130.699814,33.939278],[130.451080323,33.801174164],[130.393341,33.603382],[129.967606,33.455063],[129.856949,33.545551],[129.565094,33.21949],[129.699921,32.833275],[129.896393,32.662777],[130.178298951,32.79441452],[130.148132325,33.111732484],[130.372909546,33.138275146],[130.634979,32.632656],[130.301193237,32.1091156],[130.166672,31.794722],[130.329162598,31.53111267],[130.212219,31.25639],[130.627228,31.181108],[130.513336,31.458334],[130.686386107,31.735000611],[130.803894043,31.33472252],[130.722229,31.044998],[131.129013,31.276188],[131.01767,31.364532]]],[[[133.008606,32.909721],[133.33313,33.376125],[133.602249145,33.519550324],[133.935119628,33.486873628],[134.185486,33.258446],[134.317383,33.580349],[134.69751,33.949928],[134.639816,34.175148],[134.250839,34.351944],[133.894302,34.382641],[133.491104001,33.969165999],[133.127990722,33.920299531],[132.941772,34.141323],[132.659194947,33.70298767],[132.305664,33.473331],[132.538834,33.234699],[132.492188,32.940296],[132.792404,32.747822],[133.008606,32.909721]]],[[[138.507172,38.331673],[138.321365,38.188721],[138.248184,37.803127],[138.499634,37.91954],[138.507172,38.331673]]],[[[129.426117,28.191942],[129.689713,28.530134],[129.134995,28.253334],[129.426117,28.191942]]],[[[130.354843,32.407169],[130.04536438,32.513462067],[130.078339,32.212502],[130.354843,32.407169]]],[[[129.449585,34.704861],[129.205414,34.331806],[129.413467,34.353195],[129.449585,34.704861]]],[[[134.855881,34.233952],[134.993606568,34.522777557],[134.661118,34.270832],[134.855881,34.233952]]]]},"properties":{"id":"da0501c6-5a36-4a67-924b-c2ffc27bc5b2","code":"JPN","name":"Japan","abbreviation":"C-JPN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.161804915,49.194305419],[-2.028192997,49.164585114],[-2.016804933,49.224861146],[-2.152083,49.26236],[-2.161804915,49.194305419]]]},"properties":{"id":"bf268aa5-6b5e-4bb1-b0e9-b1ede39cc0bf","code":"JEY","name":"Jersey","abbreviation":"C-JEY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[38.796836853,33.368171693],[36.956195832,32.390777588],[36.845825196,32.312484742],[36.409656525,32.382194519],[36.032905578,32.657917024],[35.779568177,32.751945711],[35.579998017,32.632896424],[35.55973053,32.390434265],[35.555721282,31.758476257],[35.475585937,31.488241196],[35.459789277,31.120376588],[35.152011872,30.418621064],[35.175811768,30.119136811],[34.966011047,29.547065734],[35.053088,29.344404],[36.072811699,29.183401],[36.527287199,29.5143326],[36.7849032,29.8679012],[37.5055049,30.000768799],[37.665557401,30.3326227],[37.997146101,30.5006607],[37.006171199,31.5006395],[39.0063116,32.0006304],[39.212409951,32.152431774],[39.03950882,32.340393067],[39.053546905,32.581970215],[38.796836853,33.368171693]]]},"properties":{"id":"cf5f231f-5c99-42bd-90de-11b9d77067aa","code":"JOR","name":"Jordan","abbreviation":"C-JOR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[52.441433127,41.765449602],[52.959403991,42.103263856],[53.420188903,42.258811952],[54.189052581,42.341464997],[54.836013795,42.022384643],[55.283367157,41.415798187],[55.525760814,41.25026702],[56.000598907,41.318046571],[55.998100282,45],[58.569717406,45.571105956],[59.792713165,44.923030853],[61.036132813,44.137073516],[61.275432586,44.136764527],[62.028697967,43.486515046],[63.388889314,43.672855378],[64.53653717,43.603313447],[65.010261535,43.766853333],[65.651077271,43.303516389],[65.827186585,42.868133545],[66.099205017,42.962192535],[66.105667115,42.347320557],[66.008545,41.943497],[66.53076172,41.89629364],[66.60610199,41.251403808],[67.736282349,41.202819824],[67.993492127,41.063732147],[67.889350892,40.85754776],[68.416770934,40.575237274],[68.684867859,40.59570694],[68.515808105,40.98153305],[68.744804383,40.987457275],[69.033241272,41.342170716],[69.621070862,41.658016204],[70.159736633,41.844303131],[70.433303833,42.130077362],[70.626960755,42.000823975],[70.945350647,42.262252808],[71.031219483,42.594951631],[71.410499573,42.797004699],[71.863639832,42.832809449],[73.298103332,42.506076814],[73.571296692,43.034244538],[74.294303894,43.238235474],[75.157318116,42.849918366],[75.716285706,42.797195435],[75.799247742,42.914913177],[76.723236084,42.905181885],[76.859680175,42.985080719],[77.968093872,42.849822999],[78.500473022,42.900447846],[79.186851502,42.688053131],[79.509452819,42.456367492],[79.951629639,42.429565431],[80.17819134,42.219617459],[80.167327881,42.63658905],[80.258331299,42.828430176],[80.590827942,42.895679475],[80.409706117,43.057289123],[80.799446107,43.175418854],[80.745956421,43.448501587],[80.519737243,43.834209442],[80.342826843,44.481296539],[80.489738464,44.711429595],[80.246673585,44.83958435],[79.851982117,44.904949188],[80.081832885,45.049560547],[81.452766419,45.268699646],[81.689582826,45.366630555],[81.827842712,45.199989319],[82.240821839,45.235359191],[82.486206055,45.120670319],[82.590141296,45.445621491],[82.275718689,45.545398712],[82.504440307,45.983379365],[83.03087616,47.212120056],[84.038215636,46.965351105],[84.704734801,46.996234894],[84.962593079,46.871639251],[85.219413756,47.051399232],[85.529724122,47.059398652],[85.698303222,47.397781373],[85.541595458,47.939437867],[85.735450745,48.371002197],[86.584747315,48.541519165],[86.810440063,48.850330353],[86.855201721,49.107521058],[87.312576295,49.099693298],[87.268363953,49.216480256],[86.902008056,49.350772858],[86.623611451,49.773181915],[86.160621643,49.462154388],[85.931335449,49.55242157],[85.212295532,49.626808166],[84.998016357,50.056076051],[84.262550353,50.269672395],[84.218879699,50.532268525],[83.811912537,50.884899139],[83.119659423,51.035377503],[82.76071167,50.950439453],[82.548309325,50.769207001],[82.1199646,50.751029969],[81.862052918,50.821155547],[81.449348449,50.762870789],[81.390983581,50.996295929],[81.061470033,50.959373474],[81.144691468,51.201690674],[80.671470643,51.308059693],[80.440895081,51.20583725],[80.468841553,50.974452973],[80.068260192,50.768203736],[79.074035645,52.041656494],[78.249931336,52.954257965],[77.911514283,53.278541566],[77.570335388,53.480957031],[76.583824159,53.967754364],[76.426696778,54.168167115],[76.748634339,54.160350799],[76.86203003,54.353019715],[76.347198486,54.330379487],[75.600860595,54.105052948],[75.016845704,53.784523011],[74.803153993,53.815925598],[74.242156982,53.593765259],[73.903366089,53.648433686],[73.448959351,53.444801332],[73.245964049,53.575260163],[73.511665345,53.951465606],[73.084388733,53.990512848],[72.981140137,54.098300934],[72.600944519,54.134002685],[72.722053529,53.949485779],[72.37752533,53.953296662],[72.418136598,54.149536133],[72.263275146,54.320018769],[71.746566773,54.138534547],[71.210388184,54.11090088],[71.136878967,54.708236695],[71.01499939,55.072921754],[70.820190429,55.297958374],[70.217918397,55.133277893],[69.668045043,55.3429451],[68.724693298,55.340278625],[68.61743927,55.188999176],[68.1769104,55.182292939],[68.201416015,54.957935334],[67.301628112,54.859153747],[66.020050048,54.618091584],[65.501312256,54.651184082],[64.977943421,54.419624329],[63.880405426,54.28585434],[62.816135,54.115837],[62.531342,53.900391001],[62.437507996,54.055069],[62.088390351,54.057872772],[61.949588777,53.945785523],[61.306427001,54.073474884],[61.218322753,53.815872192],[60.915958404,53.616710662],[61.257511139,53.503433227],[61.182743073,53.296154022],[62.110614777,53.116798402],[62.137271881,53.005737305],[61.657840728,52.960647582],[61.236839295,53.031814575],[60.825820923,52.762458802],[61.071880341,52.337680818],[60.721912384,52.16866684],[60.059509277,51.983501434],[60.522563935,51.782234193],[60.598567962,51.615192413],[60.905143738,51.614124298],[61.002735138,51.465114593],[61.510490418,51.413852693],[61.57982254,51.232040406],[61.450839996,50.807315826],[60.82793045,50.660999298],[60.354919434,50.679359435],[60.069004059,50.865581512],[59.832714081,50.584293366],[59.531326294,50.514469146],[59.484378814,50.656082154],[58.883399963,50.709072113],[58.598819732,50.826702117],[58.545825959,51.075065613],[57.754291534,51.129745483],[57.731479644,50.930778504],[57.426898957,50.895694733],[57.183509827,51.095264434],[56.497066498,51.088077545],[56.210704804,50.937343597],[56.138401031,50.771224975],[55.663722991,50.572235108],[55.069023131,50.820140839],[54.706298829,50.894241334],[54.728641511,50.634586335],[54.508094787,50.540035249],[54.443283082,50.872009278],[54.129528045,51.118804932],[53.659057616,51.241256715],[53.378768922,51.514003754],[52.545627594,51.467365265],[52.328147888,51.76607132],[51.857337951,51.683288574],[51.793949126,51.530666352],[51.275642396,51.500308992],[51.266777038,51.689735413],[50.56764984,51.642440797],[50.36763382,51.340312957],[49.735996247,51.114719391],[49.420497895,51.12958908],[49.410907746,50.858425141],[49.092971803,50.783470154],[48.824748994,50.600337982],[48.632793427,50.662883758],[48.761886596,50.101909639],[48.734996796,49.926750183],[48.348060607,49.828926087],[47.816562653,50.331314086],[47.551460266,50.462715149],[47.319606782,50.331794739],[47.224128723,49.966365815],[46.892875671,49.839294433],[46.782657623,49.332653047],[47.052845001,49.164913177],[46.778491973,48.938533784],[46.491855621,48.443012237],[47.097595216,48.211013795],[47.017651,48],[47.174313,47.760746],[47.406677247,47.812576295],[48.058250427,47.760650634],[48.380716676,47.433582129],[48.607757568,47.414466857],[48.78133,47.010876],[49.005325,46.767155],[48.480705,46.657673],[49.163757325,46.361011506],[49.242080688,46.432929993],[49.618847,46.269951],[49.966854,46.594189],[50.452445984,46.854782106],[50.574543,46.766182],[50.913021087,46.958156585],[51.510654449,46.983131408],[51.675995,46.830853],[52.256348,46.74585],[52.618930817,46.875389099],[53.030757639,46.594688236],[52.832126971,46.145469915],[52.925735473,45.912460327],[52.71666,45.442379001],[51.96490097,45.392425538],[51.735145883,45.445243863],[51.282299029,45.248268032],[51.243549173,45.049606324],[50.960926056,44.98260498],[51.265182496,44.579563141],[51.086864472,44.476280213],[50.89949417,44.611545562],[50.308731,44.644592],[50.264793396,44.351593018],[50.772907258,44.235294341],[51.016460419,43.805324555],[51.266693114,43.561321259],[51.268287659,43.151161194],[51.652057647,43.177623749],[51.893978118,42.841346742],[52.430751801,42.838626862],[52.740909577,42.62204361],[52.433998108,42.160961152],[52.441433127,41.765449602]]]},"properties":{"id":"541a8e89-8137-4375-b89a-36f23d4f6011","code":"KAZ","name":"Kazakhstan","abbreviation":"C-KAZ","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.869949342,4.627306938],[35.583602906,4.623889923],[35.537353516,4.95882702],[35.350734712,5.009996415],[34.371459961,4.624292374],[34.001964569,4.221364975],[34.30795288,3.711992026],[34.463199615,3.669833899],[34.400592804,3.370894908],[34.599010467,2.924946069],[34.736316681,2.855247975],[34.916610719,2.424907923],[34.991203307,1.664512038],[34.795150757,1.223237038],[34.502487183,1.070647955],[34.446399688,0.864027978],[34.137580872,0.585696995],[33.91394806,0.112544],[33.987014999,-0.128465],[33.930904389,-0.993206023],[34.077529908,-1.026245951],[37.430202484,-2.908893346],[37.672573089,-3.067704915],[37.585449219,-3.440469265],[37.785800934,-3.677098513],[39.19791031,-4.6660614],[39.404861,-4.646249],[39.775417329,-3.943195105],[39.976528,-3.390138],[40.113471985,-3.299026967],[40.179028,-2.778751],[40.452640533,-2.543195009],[40.825138,-2.392362],[40.950417,-2.084583],[41.280972,-1.986806],[41.575416566,-1.642361999],[41.004299,-0.823578],[40.988632202,0.014013001],[40.986560822,2.819380999],[41.328128815,3.158634902],[41.926216126,4.002295495],[41.112724304,3.986856937],[40.775180817,4.277197837],[39.861888886,3.864088296],[39.57862854,3.472568035],[38.907649994,3.509658813],[38.517353057,3.626324177],[38.12028122,3.608499527],[37.039394379,4.361724377],[36.838798524,4.443952083],[36.049079896,4.449375152],[35.869949342,4.627306938]]]},"properties":{"id":"c5de99a2-a3ba-42ba-aa32-a769124ee104","code":"KEN","name":"Kenya","abbreviation":"C-KEN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-157.446945,2.047356],[-157.328888,1.829999],[-157.313629,1.986945],[-157.446945,2.047356]]]},"properties":{"id":"bfa9233b-add9-4ea7-ae16-45fc7f78b2f1","code":"KIR","name":"Kiribati","abbreviation":"C-KIR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.591096878,41.878536225],[21.094049454,42.197029114],[21.239177704,42.083351135],[21.59392166,42.247520448],[21.7405262,42.547992706],[21.43242836,42.858020783],[21.071443557,43.106533051],[20.56627655,43.185661316],[20.633623124,43.015964509],[20.313747407,42.826240539],[20.017023086,42.768047332],[20.033109664,42.548316956],[20.524585089,42.201494852],[20.591096878,41.878536225]]]},"properties":{"id":"0d79ef39-e29c-4fc0-b39d-bfd1eee801b0","code":"XKO","name":"Kosovo","abbreviation":"C-XKO","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[46.542605136,29.097971216],[47.4651668,28.999916901],[47.704461,28.524362],[48.429306,28.535696],[48.396526,28.744305],[48.184029,28.957361],[48.057361602,29.340694428],[47.749863,29.396807],[47.990139,29.571251],[48.191528,29.547361],[48.055695,29.764584],[47.952911,30.020096],[47.351105,30.081661],[47.128876,29.974716],[46.940269,29.571663],[46.542605136,29.097971216]]],[[[48.157917,29.983749],[48.071804,29.767916],[48.195137,29.585417],[48.375694,29.740974],[48.157917,29.983749]]]]},"properties":{"id":"cd9e1a9b-173c-4332-80d1-c1bbdf5b05c9","code":"KWT","name":"Kuwait","abbreviation":"C-KWT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.17819134,42.219617459],[79.951629639,42.429565431],[79.509452819,42.456367492],[79.186851502,42.688053131],[78.500473022,42.900447846],[77.968093872,42.849822999],[76.859680175,42.985080719],[76.723236084,42.905181885],[75.799247742,42.914913177],[75.716285706,42.797195435],[75.157318116,42.849918366],[74.294303894,43.238235474],[73.571296692,43.034244538],[73.298103332,42.506076814],[71.863639832,42.832809449],[71.410499573,42.797004699],[71.031219483,42.594951631],[70.945350647,42.262252808],[71.271270752,42.200099946],[70.507652284,41.727169037],[70.222991943,41.606998444],[70.491859436,41.399368287],[70.713249206,41.464733125],[70.779647827,41.221355438],[71.435073852,41.123622895],[71.726005555,41.553714752],[71.935165406,41.308265685],[71.890357971,41.172172546],[72.497581483,41.030647279],[72.575523376,40.890445709],[73.123123168,40.797458649],[72.766708374,40.673404694],[72.420814513,40.4049263],[72.152488709,40.457317353],[71.939475999,40.224644],[71.716194,40.150803],[71.277320862,40.326725006],[70.968498,40.228043],[70.565094,40.020699],[69.996131897,40.221988678],[69.562545777,40.103820801],[69.279899597,39.802967071],[69.340202331,39.53924942],[70.10424,39.602165],[70.304527,39.53006],[70.524002136,39.632574943],[70.768028,39.399357],[71.498931885,39.613620758],[71.562438965,39.454872132],[72.035629271,39.36648941],[72.257003785,39.175136566],[72.349525452,39.329994202],[72.679946899,39.394828796],[73.178894044,39.355201721],[73.658241273,39.465084075],[73.941368103,39.602909088],[73.842292785,39.838752747],[74.023910523,40.09830475],[74.340438843,40.08385086],[74.82811737,40.524749755],[75.19393921,40.438751221],[75.593109132,40.658714295],[75.699920655,40.277290344],[76.521324158,40.462623597],[76.633987427,40.757339477],[76.86404419,41.020942689],[77.047279358,41.059703828],[77.669754027,41.001056672],[78.155588,41.380968],[78.708435059,41.550693513],[79.452018738,41.849201203],[79.785697936,41.909210205],[79.881523132,42.038009643],[80.226531982,42.063596725],[80.17819134,42.219617459]]]},"properties":{"id":"c87121d8-7ef1-4f2b-b3a8-38851a81c023","code":"KGZ","name":"Kyrgyzstan","abbreviation":"C-KGZ","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.556381204,14.686234709],[107.595420837,15.381952285],[107.381584167,15.493277549],[107.210578918,15.826229096],[107.467460633,16.024957658],[106.969863891,16.302373885],[106.830574036,16.549053192],[106.660644531,16.473194122],[106.549835204,16.997842789],[106.092086792,17.360090256],[105.619293212,17.873899461],[105.642876,17.992552],[105.103874207,18.447423936],[105.198867798,18.638824462],[104.738937379,18.800678254],[104.543571472,18.973827362],[103.901992798,19.308712005],[104.16191864,19.695711137],[104.641685487,19.621925354],[104.993026733,20.094930649],[104.614379882,20.242595673],[104.38721466,20.48799324],[104.524391175,20.701698304],[104.120582581,20.972215653],[103.80531311,20.854190827],[103.674446105,20.668684005],[103.11478424,20.896928788],[102.911886385,21.230425288],[102.985512,21.726517],[102.675338745,21.655506134],[102.611213683,21.922199249],[102.145095826,22.400774002],[101.68901825,22.471498491],[101.547042847,22.250141143],[101.826705932,21.60297966],[101.74030304,21.31483078],[101.290397643,21.178060531],[101.154747009,21.563869477],[101.005386353,21.392230987],[100.727104187,21.312124253],[100.503486634,20.809890747],[100.259483338,20.746959687],[100.086769104,20.350891113],[100.331817627,20.39661026],[100.515289307,20.143909454],[100.408561835,19.733940126],[100.481719971,19.487640382],[100.884979248,19.604930878],[101.283370971,19.579750061],[101.189300538,19.398460388],[101.272979737,18.688631058],[101.056282043,18.440540313],[101.185272217,18.06191063],[101.02128601,17.890699388],[100.968528899,17.573548983],[101.267036438,17.595661163],[102.091217041,18.217750551],[102.687477112,17.866380691],[103.038780213,17.97546959],[103.24874878,18.366689682],[103.414916992,18.446161271],[103.853431702,18.285520554],[103.977539063,18.332412719],[104.277770996,17.85559082],[104.803031922,17.372699737],[104.736419678,16.569469451],[105.043159485,16.107429505],[105.414192199,16.012958526],[105.402229308,15.793421746],[105.63761139,15.658711434],[105.474609375,15.098529816],[105.578819275,14.995071411],[105.537147522,14.558449746],[105.206786775,14.342509659],[105.362014285,14.104457227],[105.556608508,14.160638204],[105.910776905,13.930400213],[106.187717334,14.063011295],[106.026944179,14.345819227],[106.408975343,14.450810281],[106.543037842,14.593369493],[106.838009322,14.294179485],[107.164894989,14.415776632],[107.556381204,14.686234709]]]},"properties":{"id":"40713f62-59d8-487d-a817-d5bab8eb7214","code":"LAO","name":"Laos","abbreviation":"C-LAO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.151191847,56.161064718],[28.225418101,56.295959473],[27.963555987,56.829177939],[27.668026,56.83918],[27.844026565,57.316173554],[27.336309299,57.546298988],[26.861667633,57.592041016],[26.499868392,57.524509431],[26.249240875,57.620002746],[26.058393479,57.836559296],[25.11867714,58.081226349],[24.353975,57.875771],[24.412498001,57.270695],[23.933056,57.007084001],[23.563053,56.975418001],[23.306388855,57.063751221],[23.12194252,57.367084504],[22.625278474,57.592918397],[22.605833053,57.759029388],[21.689722062,57.559028626],[21.411943435,57.269584656],[21.410833358,57.05291748],[21.063613893,56.840972901],[20.981943131,56.522083283],[21.066389083,56.064453124],[21.594837188,56.319328308],[21.996791839,56.416721344],[23.374534606,56.381507874],[24.556377411,56.279502869],[24.873378753,56.411182404],[25.095140457,56.18573761],[25.654636,56.138058],[26.016508102,55.971542358],[26.374826432,55.704692841],[26.63838005,55.663719178],[27.16709137,55.844951631],[27.591962814,55.781848907],[27.664216995,55.930789948],[28.151191847,56.161064718]]]},"properties":{"id":"9d1f9855-b1c7-4f31-ab78-1d9329272dac","code":"LVA","name":"Latvia","abbreviation":"C-LVA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.817222992,33.364033],[35.933517,33.650841],[36.617130279,34.207813263],[36.451049804,34.59230423],[35.97533,34.639839],[35.984741211,34.528503418],[35.651355744,34.273349762],[35.649856568,34.100738526],[35.186275483,33.171699524],[35.102920532,33.094058991],[35.518657685,33.116241455],[35.817222992,33.364033]]]},"properties":{"id":"0364b6e2-1b13-47fb-a201-9ce4f77df15f","code":"LBN","name":"Lebanon","abbreviation":"C-LBN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.37182045,-30.169679641],[28.858789444,-30.088230132],[29.108989716,-29.936969756],[29.162639617,-29.677009582],[29.455610276,-29.341199874],[29.356149673,-29.127580642],[28.94380951,-28.782659531],[28.612779616,-28.597480774],[28.168510438,-28.705259322],[28.028430939,-28.873949051],[27.75358963,-28.898000716],[27.614170075,-29.164180756],[27.096581,-29.729931001],[27.366889954,-30.273660659],[27.781669616,-30.617300033],[28.123199462,-30.663389206],[28.20690918,-30.290670395],[28.37182045,-30.169679641]]]},"properties":{"id":"4dc8177c-64e8-41f9-9fa3-dbd0368ecc50","code":"LSO","name":"Lesotho","abbreviation":"C-LSO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.472180367,7.55458212],[-8.706716538,7.514249802],[-9.065999984,7.20096016],[-9.405579566,7.42003107],[-9.359363555,7.796105863],[-9.486963272,8.380972862],[-9.795275689,8.508511543],[-10.268709182,8.49120617],[-10.346570968,8.149065017],[-10.600068092,8.026383401],[-10.601117133,7.770023823],[-11.30880928,7.203296184],[-11.485695,6.91783],[-11.351804732,6.701528072],[-10.865695001,6.463194848],[-10.818195,6.312362],[-10.393749236,6.14430523],[-9.595137596,5.477639199],[-9.295140266,5.149582864],[-8.25014019,4.572638036],[-7.522624015,4.362362862],[-7.591788768,4.905591965],[-7.470920087,5.150407792],[-7.378786087,5.623882771],[-7.422359944,5.843457223],[-7.692998886,5.904920101],[-8.00530243,6.315148831],[-8.171671868,6.27564478],[-8.560628892,6.561457158],[-8.338418007,6.76061678],[-8.290595054,7.18177414],[-8.472180367,7.55458212]]]},"properties":{"id":"3515582d-20d2-40d1-829e-aa95733fc2b7","code":"LBR","name":"Liberia","abbreviation":"C-LBR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.979550363,23.525030136],[13.397974969,23.217527389],[13.680399896,23.072240829],[14.189322471,22.644483567],[14.995869636,23.001890182],[15.9981699,23.45037079],[18.726081848,22.167699815],[21.6808815,20.705064774],[24.000001907,19.50817303],[24.000001907,20.000000001],[24.999998094,20.000000001],[24.999998094,21.999200822],[24.999435,29.250158],[24.69809919,30.148845818],[24.926531784,30.481125907],[25.018274,30.777979],[24.861114124,31.405910214],[25.148199,31.667885],[24.996529,31.962639],[24.664028,32.021805],[24.087915,32.012085],[23.769583,32.166527],[23.253471,32.203472],[23.110971,32.313194],[23.118195,32.627361],[22.113749,32.93486],[21.716528,32.940971],[21.332914352,32.77180481],[21.109861375,32.771251679],[20.577638626,32.547916412],[20.207084656,32.282917024],[19.949029922,31.978471756],[19.92152977,31.746250154],[20.164639,31.071251],[20.054363,30.847363],[19.607973,30.412914],[19.185474,30.267084],[18.65625,30.41986084],[18.174303054,30.789861678],[17.390138626,31.075695037],[16.69930458,31.219305039],[16.124305725,31.251806259],[15.66041565,31.449028016],[15.390692711,31.870695115],[15.357639313,32.166526795],[15.214306831,32.374584197],[14.491323,32.506527],[14.177155,32.711529],[13.177083016,32.905693054],[12.755971908,32.794029237],[12.341251374,32.822917938],[11.564454379,33.165408809],[11.488797189,32.667663575],[11.527318954,32.402809142],[10.982084275,32.186714173],[10.639128684,31.967941285],[10.529793739,31.747297288],[10.291164399,31.690118791],[10.140620232,31.493297578],[10.30777359,30.908971787],[9.888902664,30.349187851],[9.557297706,30.236810685],[9.391736985,30.166704178],[9.780570983,29.424129486],[9.902783394,28.75975132],[9.833545,28.285259],[9.962219033,27.886574222],[9.782815219,27.258794785],[9.924463463,26.861048889],[9.863895417,26.519117356],[9.512980461,26.384302139],[9.399593353,26.194828033],[10.032671929,25.358707428],[10.037577153,24.962379456],[10.357405344,24.536915144],[10.950188638,24.531810761],[11.423026085,24.199550629],[11.603411752,24.263750935],[11.979550363,23.525030136]]]},"properties":{"id":"067a7b79-882c-4101-abeb-639f54d2ea10","code":"LBY","name":"Libya","abbreviation":"C-LBY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.532011599,47.270304645],[9.486402,47.181839],[9.607548925,47.061646232],[9.532011599,47.270304645]]]},"properties":{"id":"ad2a20ff-0f47-41ba-b420-a2550bd94e57","code":"LIE","name":"Liechtenstein","abbreviation":"C-LIE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.63838005,55.663719178],[26.374826432,55.704692841],[26.016508102,55.971542358],[25.654636,56.138058],[25.095140457,56.18573761],[24.873378753,56.411182404],[24.556377411,56.279502869],[23.374534606,56.381507874],[21.996791839,56.416721344],[21.594837188,56.319328308],[21.066389083,56.064453124],[21.083611,55.729305],[21.283080829,55.240722997],[21.388672,55.29071],[22.051698684,55.030902863],[22.563661576,55.074752808],[22.887853623,54.788215638],[22.73958397,54.723331453],[22.787775041,54.363601684],[23.337519,54.251724],[23.514919001,53.955994],[23.792467117,53.895462037],[24.219413757,53.96680832],[24.36614418,53.892757415],[25.226644517,54.259243011],[25.571098328,54.32313919],[25.76096344,54.590614319],[25.85630989,54.924667359],[26.222475051,54.998104096],[26.386478423,55.149513246],[26.682971954,55.159259797],[26.826379777,55.3168602],[26.463254929,55.339340211],[26.63838005,55.663719178]]]},"properties":{"id":"5054f7d8-9b30-43e1-bb95-49a09b54f493","code":"LTU","name":"Lithuania","abbreviation":"C-LTU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.815077305,49.545166015],[6.042151451,49.447807313],[6.372303964,49.466461182],[6.513945103,49.802768707],[6.262069226,49.880931854],[6.138388158,50.134075166],[5.859116077,50.061710358],[5.746118069,49.838768006],[5.815077305,49.545166015]]]},"properties":{"id":"2f5ae20e-3cb0-4293-9e98-9d6ef55e8dc7","code":"LUX","name":"Luxembourg","abbreviation":"C-LUX","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.445972,-13.55875],[48.290416718,-13.806806564],[47.950138,-13.544583],[47.858196,-13.763473],[48.016529,-13.973195],[48.034306,-14.272361],[47.84375,-14.256806],[47.689304,-14.445416],[47.792915,-14.584584],[47.470974,-15.089862],[47.448193,-14.679027],[47.044861,-15.185695],[46.87125,-15.229306],[46.235416,-15.722361],[45.67514,-15.787918],[45.266804,-16.106806],[45.265694,-15.935973],[44.875972747,-16.193471909],[44.449306,-16.187639],[44.439583,-16.660137],[43.928196,-17.512638],[44.028751372,-17.772083281],[44.038193,-18.396528],[44.213196,-18.695141],[44.28125,-19.172585],[44.467361,-19.459028],[44.397362,-19.796528],[44.486252,-19.983192],[43.903194,-20.855139],[43.836246,-21.148781],[43.515972,-21.305416],[43.463749,-21.649305],[43.276249,-21.906252],[43.227917,-22.325972],[43.370140075,-22.845415116],[43.610694885,-23.104583741],[43.766804,-23.461805],[43.633194,-23.750416],[43.683193207,-24.375694274],[43.917362213,-24.604860305],[44.026805878,-25.000972747],[44.432362,-25.269583],[44.806804656,-25.340139389],[45.140140534,-25.597082137],[45.600139619,-25.545139313],[45.873474122,-25.364860535],[46.334583282,-25.185972213],[46.635139,-25.199583],[46.995140075,-25.037914275],[47.201248,-24.77486],[47.405922,-24.156176],[47.5881958,-23.797637939],[47.893749238,-22.481527327],[48.308750152,-21.412361144],[48.554863,-20.527639],[48.816528321,-19.921806336],[48.863193513,-19.611528396],[49.337917,-18.408472],[49.520694733,-17.696252823],[49.410416,-17.369583],[49.584861755,-16.911804199],[49.839863,-16.561527],[49.859028,-16.223473],[49.615417481,-15.55430603],[49.901248933,-15.440416336],[50.015972,-15.872362],[50.221249,-15.989029],[50.433193,-15.52736],[50.472084,-15.215417],[50.223751068,-14.76097107],[50.139862062,-13.796250344],[49.91986084,-13.201526641],[49.92791748,-13.044861792],[49.222637,-12.179305],[48.85125,-12.415695],[48.944583892,-12.850971222],[48.76125,-13.405695],[48.445972,-13.55875]]]},"properties":{"id":"bb29f129-559c-41a1-a750-93d9ba17048d","code":"MDG","name":"Madagascar","abbreviation":"C-MDG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.24020417,-13.998174991],[33.680450439,-14.604950904],[33.915218354,-14.476108552],[34.393241882,-14.395601272],[34.540897369,-14.599422455],[34.604110718,-15.267201424],[34.453739167,-15.60632515],[34.248569488,-15.841149329],[34.437480927,-16.061609267],[34.423492432,-16.254018783],[34.757629394,-16.510850906],[34.924369812,-16.744358063],[35.155979156,-16.831890107],[35.097358704,-17.127210618],[35.297000884,-17.126190185],[35.262172699,-16.470340728],[35.308395385,-16.212516784],[35.814365387,-16.030702591],[35.85213852,-15.417542457],[35.789237977,-15.167897224],[35.915046692,-14.895030022],[35.870323182,-14.674477577],[35.483951569,-14.167408944],[34.866371155,-13.481945038],[34.603542329,-13.481781006],[34.520900726,-13.337208748],[34.523887634,-12.729702949],[34.42527771,-12.159543037],[34.642639161,-11.58250904],[34.957931518,-11.571338654],[34.92570877,-11.415079117],[34.628341676,-11.102042198],[34.651935577,-10.757631302],[34.555122375,-10.549004555],[34.501525879,-9.976361274],[34.036300659,-9.491929054],[33.943237305,-9.706129074],[33.760337829,-9.582036972],[33.440303803,-9.61266613],[32.955853378,-9.399693235],[33.098510742,-9.674194336],[33.395690918,-9.916687012],[33.706237939,-10.602376287],[33.248537939,-10.873776287],[33.402937939,-11.160576287],[33.230537939,-11.428776287],[33.304837939,-11.605776287],[33.241837939,-12.130776287],[33.530737939,-12.365076287],[32.961237939,-12.775676287],[33.026137939,-13.214176287],[32.802737939,-13.655476287],[33.037637939,-14.042876287],[33.24020417,-13.998174991]]]},"properties":{"id":"0ddacaf2-975b-4a5a-bf7b-cc6a49fd9ffa","code":"MWI","name":"Malawi","abbreviation":"C-MWI","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.128051758,4.586944104],[113.967804,4.580873],[113.940834,4.275833],[112.941261291,3.122179986],[111.708885193,2.848054886],[111.428886413,2.694720983],[111.439163,2.3775],[111.207489,2.09122],[110.992775,1.487778],[110.325554,1.712779],[109.959396,1.701675],[109.624588,1.996794],[109.660652,1.619312],[110.189216613,1.178480983],[110.278541566,0.995830537],[110.693939209,0.860897661],[110.898285393,1.019389316],[111.225815,1.083907999],[111.526313783,0.96554184],[111.871452331,1.007290006],[112.153068542,1.156006695],[112.215278625,1.453703285],[112.486129762,1.576064468],[113.054672241,1.555753469],[113.012138367,1.407223105],[113.538345338,1.320459724],[113.623542785,1.220432401],[113.978843689,1.452879191],[114.565574646,1.426023008],[114.874076844,2.01555276],[114.917160033,2.255297662],[115.257774354,2.540449619],[115.103012085,2.817517997],[115.521697999,3.065089941],[115.5809021,3.662290097],[115.688980102,4.156349182],[116.171295166,4.38439417],[116.431716919,4.320870876],[117.243782,4.371089],[117.498283,4.171653],[117.591621,4.403351],[117.996567,4.2219],[118.551918,4.354108],[118.573326,4.520282],[118.306839,4.630371],[118.125557,4.878334],[118.326668,5.018891],[118.668816,4.932924],[119.089867,5.0766],[119.256737,5.359213],[118.709442,5.564167],[118.3554,5.824706],[118.133331,5.851388],[118.010277,6.06028],[117.614723,5.891945],[117.742233,6.423611],[117.291756,6.615906],[117.153053,7.012781],[116.981094,6.702823],[116.746391,7.035281],[116.642776,6.707782],[116.243607,6.285281],[115.903473,5.751735],[115.873283,5.582794],[115.540756,5.53565],[115.38028,5.292501],[115.590614318,5.180620193],[115.322029,4.893452],[115.155319,4.911237],[115.298309,4.436701],[115.110603333,4.405399799],[115.038032532,4.793191911],[115.000923342,4.884733303],[114.794799804,4.746360779],[114.85179901,4.252079965],[114.679397584,4.034860134],[114.31780243,4.275939943],[114.128051758,4.586944104]]],[[[100.124443,6.40509],[100.32964325,6.036911965],[100.339935,5.56948],[100.443054,4.915554],[100.663887,4.745],[100.613609,4.167777],[100.713814,3.877285],[101.054801941,3.593972921],[101.294021606,3.256279945],[101.475891001,2.691651001],[101.763412,2.600183],[101.856346,2.417291],[102.479446,2.104722],[103.354935,1.541905],[103.443611,1.319167],[103.799156189,1.485582949],[104.283058,1.369584],[104.25972,1.612501],[103.81208,2.579965],[103.453056336,2.864957095],[103.477219,3.505829],[103.325546,3.737501],[103.491577149,4.328821183],[103.42495,4.814764],[103.187225342,5.26666689],[102.973938,5.524339],[102.479721069,5.877778054],[102.345993042,6.168600082],[102.086631774,6.245808125],[101.814651489,5.737160207],[101.585510254,5.932411194],[101.286239623,5.821051121],[101.134300231,5.616197109],[100.986099244,5.806541921],[101.126502991,5.981280804],[101.094100952,6.26108122],[100.85369873,6.243780137],[100.818595887,6.437360763],[100.366157531,6.539310933],[100.171897888,6.693915845],[100.124443,6.40509]]]]},"properties":{"id":"8e18d807-65e7-4dad-ab03-6edd73d6f538","code":"MYS","name":"Malaysia","abbreviation":"C-MYS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[73.419861,-0.278473],[73.426804,-0.308473],[73.440697,-0.306805],[73.419861,-0.278473]]]},"properties":{"id":"fde74558-b3d2-405b-8106-24bafe830085","code":"MDV","name":"Maldives","abbreviation":"C-MDV","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-4.829955324,24.996582606],[-6.564404965,25],[-6.004528045,20.154289246],[-5.602798938,16.499429704],[-5.32711506,16.333139419],[-5.506422997,15.507969857],[-5.998631954,15.49462986],[-9.328486443,15.496250153],[-9.793499946,15.372710229],[-10.320601463,15.431160928],[-10.664280891,15.404599191],[-10.998529435,15.238161087],[-11.498941422,15.642840385],[-11.714699745,15.526490213],[-11.838081359,15.17191124],[-11.806099892,14.901631355],[-12.062081338,14.717201233],[-12.238911629,14.759259224],[-12.201363564,14.408751489],[-12.019219399,14.279276847],[-11.947833062,13.812830925],[-12.067743301,13.707526207],[-11.796690942,13.313722611],[-11.62743187,13.397066117],[-11.382016183,12.995388032],[-11.377452851,12.417995453],[-11.497797013,12.20952511],[-11.257471084,11.992480279],[-10.93279934,12.223349572],[-10.672221185,11.893879891],[-10.340060235,12.215589524],[-9.699756623,12.023820878],[-9.630397796,12.172830583],[-9.340385436,12.242920875],[-9.362003327,12.495670318],[-8.968897819,12.348448754],[-8.794913293,11.923871994],[-8.854325295,11.628337861],[-8.396868706,11.382309914],[-8.68062973,10.967069627],[-8.287079811,10.995130539],[-8.301472663,10.636231422],[-7.978549004,10.175108911],[-7.641550065,10.488121033],[-7.384366989,10.282631874],[-6.975772857,10.195070267],[-6.947463988,10.369640351],[-6.672196864,10.365130425],[-6.642239093,10.672245026],[-6.217734813,10.726328851],[-6.023159981,10.198860169],[-5.772508145,10.440250398],[-5.518918037,10.433259965],[-5.422309875,10.852600098],[-5.490749835,11.071919442],[-5.272128105,11.234490395],[-5.203893185,11.5291996],[-5.35412693,11.824850082],[-5.156524181,11.9477911],[-4.65831089,12.053871156],[-4.294475078,12.69923973],[-4.230224133,12.937218666],[-4.345856189,13.146181106],[-3.973803044,13.393791199],[-3.532244921,13.171990395],[-3.256079912,13.283860207],[-3.256294012,13.669851302],[-2.871969938,13.655329704],[-2.837029934,14.060629844],[-2.476469993,14.297860145],[-2.10581994,14.150279999],[-1.975370049,14.480879784],[-1.67490995,14.506890298],[-1.087859989,14.790120125],[-0.701488019,15.081521034],[-0.231750994,15.071439744],[0.229350001,14.989670753],[0.973188996,14.978949548],[1.324030041,15.265146256],[2.628789901,15.367120743],[3.527507066,15.341489791],[3.538172006,15.488309861],[3.872142076,15.691880226],[4.076467038,16.320419311],[4.076756001,16.912309646],[4.241202832,16.987697601],[4.242887021,19.136716843],[3.335249067,18.960230827],[3.10806799,19.178124428],[3.272078037,19.409557343],[3.229897976,19.825234413],[3.002441882,19.936761857],[2.399214983,20.071929931],[2.185602009,20.291712761],[1.905501008,20.25015068],[1.653113961,20.552160264],[1.176954984,20.733539581],[1.166674017,21.118892669],[-0.000170999,21.838685989],[-0.027551999,21.917940139],[-2.156348945,23.310470582],[-4.829955324,24.996582606]]]},"properties":{"id":"4555783e-b5ad-4e6f-b9e8-450fa6347e08","code":"MLI","name":"Mali","abbreviation":"C-MLI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.544306755,35.829582215],[14.491250992,35.930973054],[14.335695267,35.879581451],[14.544306755,35.829582215]]]},"properties":{"id":"8a552b93-fc8f-4f3d-9e45-0c3175514850","code":"MLT","name":"Malta","abbreviation":"C-MLT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[171.205276,7.0625],[171.143692,7.086691],[171.064453,7.114588],[171.03923,7.144704],[171.027771,7.144426],[171.051041,7.121735],[171.072159,7.109729],[171.144882,7.084679],[171.188766,7.064832],[171.205276,7.0625]]]},"properties":{"id":"d148f676-74a5-4a3d-9498-19dcd958907c","code":"MHL","name":"Marshall Islands","abbreviation":"C-MHL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.817638,14.467362],[-60.90097,14.695139],[-61.227359771,14.803195],[-61.094028473,14.525137902],[-60.817638,14.467362]]]},"properties":{"id":"1faa4e07-d2e8-4e52-ac1e-fab216319dda","code":"MTQ","name":"Martinique","abbreviation":"C-MTQ","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.673868179,27.298070908],[-8.674157142,25.997608184],[-12.003888131,25.99864006],[-12.000000001,23.454519272],[-12.740400313,23.391349792],[-12.957139015,23.213079453],[-13.145749092,22.731409073],[-13.00176,21.330811],[-15.877051,21.341209],[-16.939711,21.326639],[-17.045986,20.771763],[-16.884859,21.120417],[-16.675974,20.673471],[-16.528475,20.73097],[-16.201248,20.197639],[-16.256248,19.782084],[-16.544582367,19.385414124],[-16.25180626,19.071805954],[-16.05291748,18.439027787],[-16.02041626,17.982084275],[-16.086250305,17.503749848],[-16.442083359,16.616249085],[-16.509552003,16.061672211],[-16.280223847,16.515396117],[-15.705521584,16.47363472],[-14.893631935,16.632528306],[-14.327065468,16.630088807],[-13.843576432,16.106767654],[-13.374959946,16.053251267],[-13.251791001,15.655238151],[-12.963149071,15.497569085],[-12.849134446,15.199854852],[-12.461545944,14.982006074],[-12.238911629,14.759259224],[-12.062081338,14.717201233],[-11.806099892,14.901631355],[-11.838081359,15.17191124],[-11.714699745,15.526490213],[-11.498941422,15.642840385],[-10.998529435,15.238161087],[-10.664280891,15.404599191],[-10.320601463,15.431160928],[-9.793499946,15.372710229],[-9.328486443,15.496250153],[-5.998631954,15.49462986],[-5.506422997,15.507969857],[-5.32711506,16.333139419],[-5.602798938,16.499429704],[-6.004528045,20.154289246],[-6.564404965,25],[-4.829955324,24.996582606],[-7,26.341360092],[-8.673868179,27.298070908]]]},"properties":{"id":"7a3ff1e9-3067-4316-9699-8aba396dde51","code":"MRT","name":"Mauritania","abbreviation":"C-MRT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[57.779861,-20.31514],[57.610973,-19.98097],[57.365139,-20.279861],[57.354305,-20.487083],[57.679585,-20.476528],[57.779861,-20.31514]]]},"properties":{"id":"b25c92e8-6097-46d0-b49c-29646a94aa2a","code":"MUS","name":"Mauritius","abbreviation":"C-MUS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.126804,-12.932361],[45.222363,-12.870973],[45.100971,-12.663195],[45.126804,-12.932361]]]},"properties":{"id":"82b6562d-4fc8-4608-b663-ace8c0e2b994","code":"MYT","name":"Mayotte","abbreviation":"C-MYT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[158.276108,6.794722],[158.318054,6.934445],[158.17778,6.985279001],[158.161392,6.805557],[158.276108,6.794722]]]},"properties":{"id":"7af0944f-1bba-4a73-94a0-976d51b96cf8","code":"FSM","name":"Micronesia","abbreviation":"C-FSM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.214229823,45.466758923],[28.516287001,45.505466001],[28.547887803,45.737163545],[28.790444916,45.846446887],[29.057643821,46.201114867],[28.934158326,46.460590362],[29.242206573,46.563331604],[29.593429566,46.364337921],[29.917805,46.517345],[29.979202271,46.763614654],[29.605106353,46.969490051],[29.57916069,47.378166199],[29.397924423,47.310413361],[29.133705139,47.548999786],[29.241861344,47.639930725],[29.188543319,47.994007111],[28.943750382,47.956123352],[28.854471207,48.121669769],[28.346273423,48.249347687],[28.107629775,48.234107972],[27.763639451,48.458564758],[27.284778595,48.384082795],[26.726482391,48.394992829],[26.631242753,48.2574234],[26.808113098,48.254699707],[27.179763794,47.94707489],[27.27690506,47.687496186],[27.801059722,47.142501831],[28.097082138,46.979564668],[28.236099243,46.681240081],[28.090349,46.059769],[28.214229823,45.466758923]]]},"properties":{"id":"a940219b-08ec-4459-aa42-adf451ea1dcf","code":"MDA","name":"Moldova","abbreviation":"C-MDA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.413652896,43.724304199],[7.439582826,43.749214174],[7.413383032,43.734589023],[7.413652896,43.724304199]]]},"properties":{"id":"fa6cfd25-37d2-432c-99e7-d1c344b2cdf6","code":"MCO","name":"Monaco","abbreviation":"C-MCO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.700271606,49.839855194],[116.20514679,50.031681061],[115.720947265,49.884578705],[115.37463379,49.9078331],[115.004051209,50.177375793],[114.349037171,50.282894135],[113.795715333,50.094085694],[113.230262756,49.834945679],[113.087524,49.608276],[112.716309,49.49184],[112.513168334,49.546485902],[111.934509,49.395508],[111.392272949,49.37310791],[110.766296,49.145081],[110.399475098,49.258483887],[110.234123,49.165123],[109.539673,49.226074],[109.329101999,49.341491999],[108.555587999,49.334319999],[108.02533,49.615295],[107.937965393,49.925693512],[107.130737305,50.02691269],[106.924499513,50.247497559],[106.567321778,50.347106934],[106.279296874,50.295722961],[106.080101013,50.393844604],[105.387695312,50.479309081],[105.151931762,50.400051117],[104.405113221,50.304992675],[104.061096191,50.15447998],[103.690460206,50.137237549],[102.98071289,50.304321289],[102.320617676,50.584091186],[102.354049682,50.726699829],[102.068778992,51.397094728],[101.392089843,51.455402375],[101.258636475,51.539417267],[100.515640259,51.750377655],[99.993530273,51.753295899],[99.770606994,51.881752014],[99.294784545,51.975227356],[98.953674316,52.147888184],[98.696296693,51.820365907],[98.315307617,51.717895508],[98.234313965,51.462280275],[97.944885255,51.322875977],[97.867279,50.949818],[98.132652283,50.59640503],[98.324486,50.538971],[98.116180001,50.103947001],[97.316200257,49.75738907],[97.002983093,49.914520263],[96.453681946,49.901294708],[96.302124024,49.987121582],[95.47781372,49.922348022],[95.129554748,49.948928833],[94.964225768,50.061710358],[94.608818054,50.038711548],[94.398925781,50.23413086],[94.223670959,50.58272171],[93.104125976,50.566894532],[93.03299,50.762951],[92.748024,50.709347],[92.325317,50.886372],[92.19577012,50.684822066],[91.83609,50.734692],[91.44431305,50.465400697],[90.737731933,50.487930298],[90.662528992,50.163562775],[90.274085999,50.018138886],[89.620727539,49.973991395],[89.681831359,49.709709168],[88.852722168,49.450073242],[88.650024414,49.520069122],[88.223335265,49.489871979],[87.994293213,49.186321258],[87.832260132,49.175006867],[87.792427063,48.821681976],[88.000106812,48.570583344],[88.601074218,48.34411621],[88.674240112,48.174560547],[89.041076661,47.947326659],[89.565917968,48.048706055],[89.796417236,47.818149566],[90.068908908,47.862121853],[90.456909155,47.487121602],[90.517845154,47.244155884],[90.881156921,46.976364136],[91.077636718,46.563964844],[90.934768676,46.205638885],[91.011497497,46.000534059],[90.69985199,45.690681457],[90.663696289,45.516906739],[90.8724823,45.198150635],[91.158081055,45.194137574],[91.652023316,45.05670929],[93.508270263,44.965343476],[94.197418214,44.66250229],[94.334007264,44.523059846],[94.990509033,44.254550934],[95.423660279,44.289268493],[95.374794007,44.021148682],[95.550781249,43.988658906],[95.881103515,43.40209961],[95.916450501,43.233505248],[96.324447632,42.88243103],[96.361427308,42.721248627],[96.93282318,42.712154388],[97.151489,42.773926],[98.339881897,42.639923096],[99.496276855,42.570083618],[100.326461791,42.683330537],[100.911582947,42.645259858],[101.822692871,42.470275879],[102.063293458,42.218688965],[102.73903656,42.134159088],[103.322082519,41.907470703],[103.86239624,41.807941437],[104.543746948,41.883792877],[104.534011841,41.662620545],[105.034484863,41.567687989],[105.801895141,41.957645417],[106.683631896,42.259391784],[107.266471862,42.356658935],[107.452796936,42.46188736],[107.912422181,42.412010193],[108.525352478,42.455341339],[109.547477721,42.471664429],[109.834716796,42.624961852],[110.143592835,42.636798859],[110.416503906,42.768920898],[111.047142029,43.343456268],[111.574508666,43.48953247],[111.753936767,43.690742494],[112.015686035,43.791320802],[111.393951416,44.321613311],[111.559875488,44.723083496],[111.833129883,45.048522949],[112.415527343,45.061523438],[112.758087158,44.870479583],[113.62381,44.743958001],[114.379272,45.165283],[114.548706,45.398499],[115.00012207,45.365173339],[115.72115326,45.438438415],[116.273498535,45.761108399],[116.262069702,45.950332642],[116.605285645,46.297119142],[117.37146759,46.354770661],[117.432952881,46.57503891],[117.852081299,46.532127381],[118.270050049,46.787563324],[118.935913086,46.819526674],[119.403701782,46.633621215],[119.402847289,46.454940797],[119.920722961,46.743499756],[119.716117859,47.320999145],[119.499694825,47.335502625],[119.187850952,47.51845932],[119.124084474,47.703308105],[118.775848388,47.806549072],[118.478698731,48.000122071],[117.75969696,47.990188598],[117.374511718,47.638057709],[116.826782226,47.898399354],[116.256286621,47.876708985],[115.949371337,47.679122924],[115.553779643,47.948326089],[115.514892577,48.183898925],[115.8125,48.261475001],[115.821495057,48.531665803],[116.111022949,48.792751313],[116.070678711,48.908874512],[116.700271606,49.839855194]]]},"properties":{"id":"6d7902ea-a17f-4c19-bbf1-4e721ba85b9a","code":"MNG","name":"Mongolia","abbreviation":"C-MNG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.033109664,42.548316956],[20.017023086,42.768047332],[20.313747407,42.826240539],[19.797666549,43.086166381],[19.179483414,43.471149444],[19.185674667,43.53514862],[18.958541871,43.515575408],[18.695547104,43.266609192],[18.678873063,43.037166595],[18.492286682,42.975170135],[18.458923007,42.565307821],[18.507923,42.45433],[19.377112809,41.866320183],[19.285785675,42.180006028],[19.706918717,42.658889772],[19.833229066,42.467416764],[20.033109664,42.548316956]]]},"properties":{"id":"78401f7f-d5ca-45ef-a39a-5bc4f4fb6796","code":"MNE","name":"Montenegro","abbreviation":"C-MNE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.150138855,16.71152687],[-62.199028015,16.824026107],[-62.239860534,16.721252441],[-62.150138855,16.71152687]]]},"properties":{"id":"f8ffe052-bddf-4747-bcee-4399708c2b8e","code":"MSR","name":"Montserrat","abbreviation":"C-MSR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.211107969,35.062023163],[-2.424860955,35.147914886],[-2.809583902,35.102359771],[-2.936805009,35.28042221],[-2.954027891,35.322704316],[-3.338195085,35.185695649],[-3.708472014,35.288471222],[-4.355138,35.147362],[-4.782638073,35.237915038],[-5.243473053,35.552917481],[-5.341249942,35.874599458],[-5.384860993,35.911529541],[-5.930694103,35.787361145],[-6.297638893,34.873748779],[-6.783195018,34.093471528],[-7.029861,33.877918],[-7.521805764,33.624862672],[-8.513471603,33.265140533],[-8.920140266,32.825138092],[-9.285973549,32.543193818],[-9.262079239,32.175140381],[-9.675415993,31.70152855],[-9.833471299,31.414028168],[-9.783750534,30.609580993],[-9.598472595,30.400138856],[-9.832362175,29.805416108],[-10.215138,29.314028],[-10.509860039,29.028472901],[-11.045694351,28.759860994],[-11.529027939,28.293193818],[-12.052916526,28.0965271],[-12.917082787,27.953193664],[-13.167089462,27.68309784],[-8.670013428,27.670074462],[-8.667710305,28.713489533],[-7.591602802,29.376918793],[-7.148672104,29.522182465],[-6.77609682,29.461568833],[-6.446598053,29.56458664],[-5.798730849,29.614160538],[-5.539897442,29.512680054],[-5.239676,29.933425904],[-4.606369971,30.282133104],[-4.320165157,30.528390886],[-3.642934083,30.699592591],[-3.535881519,31.011262075],[-3.776664972,31.121631622],[-3.661837458,31.633885385],[-2.83160901,31.798009872],[-2.915163995,32.118808747],[-2.013864041,32.181777955],[-1.205126046,32.084774017],[-1.197920978,32.404144288],[-0.996272867,32.51703914],[-1.38121903,32.739322663],[-1.460718036,33.041847229],[-1.670274496,33.285953523],[-1.598497032,33.615089416],[-1.737028957,33.700263978],[-1.647634029,34.106685639],[-1.732338012,34.507414818],[-1.88649717,34.809758466],[-2.211107969,35.062023163]]]},"properties":{"id":"0e5618c2-c1f8-4998-b254-02fe68054a5c","code":"MAR","name":"Morocco","abbreviation":"C-MAR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.24020417,-13.998174991],[32.454837939,-14.271576287],[31.956115723,-14.401000977],[31.506437939,-14.600976287],[30.687337939,-14.819876287],[30.219437939,-14.997876287],[30.411541281,-15.610714701],[30.424594879,-15.999998093],[31.152347135,-15.988616026],[31.691698074,-16.201686859],[32.037540435,-16.442369462],[32.285324096,-16.434577942],[32.978549958,-16.707206727],[32.838451386,-16.932029724],[33.045261384,-17.346971511],[32.942576249,-17.978823341],[33.054321289,-18.357774734],[32.888331142,-18.511163488],[32.954124451,-18.690193176],[32.704511366,-18.843793876],[32.845279693,-19.024831772],[32.850135803,-19.684627532],[33.052776336,-19.780582428],[33.013950347,-20.010980607],[32.658370972,-20.561620712],[32.488540649,-20.627471923],[32.516838075,-20.914373397],[32.399799348,-21.327598572],[31.307275773,-22.420276642],[31.56360054,-23.198230744],[31.561019898,-23.481960297],[31.987129211,-24.302200318],[32.03358841,-25.132520676],[31.973690033,-25.953199387],[32.087741853,-26.010898591],[32.133117676,-26.840190888],[32.89125061,-26.858415603],[32.949306,-26.093472],[32.834026336,-26.288471223],[32.587917,-25.984585],[32.812915802,-25.606250762],[33.223194,-25.33264],[33.693195,-25.132639],[34.810417175,-24.749860762],[35.150417328,-24.580974578],[35.499863,-24.105971999],[35.331806182,-23.999860763],[35.591804505,-22.971250533],[35.51347351,-22.804582595],[35.543194,-22.324306],[35.329861,-22.184584],[35.272362,-21.636806],[35.127918,-21.394859],[34.997082,-20.714582],[34.73764,-20.512362],[34.774307251,-19.855693817],[34.890415,-19.849585],[35.405972,-19.452915],[35.778751,-19.044306],[36.276527,-18.883751],[36.508194,-18.539581],[37.197918,-17.763474],[37.837360383,-17.410419464],[38.55986,-17.125694],[39.073193,-17.013472],[39.175415,-16.850973],[39.861252,-16.44014],[40.122082,-15.955694],[40.569584,-15.487083],[40.678749,-15.25625],[40.649029,-14.917361],[40.806526,-14.84625],[40.807914734,-14.41124916],[40.620971679,-14.218194961],[40.535416,-13.635972],[40.554584503,-13.060694694],[40.630138,-12.746806],[40.506527,-12.533472],[40.498474,-12.054306],[40.379581,-11.330416],[40.564861297,-11.030139924],[40.589027,-10.604028],[40.436207,-10.47125],[39.991428376,-10.81612873],[39.529575349,-10.985413551],[39.241691589,-11.179941178],[38.884738922,-11.175510406],[38.486148835,-11.41489029],[38.261924743,-11.288425444],[37.933540345,-11.256524087],[37.747936248,-11.548653603],[37.419445038,-11.680004121],[36.826648712,-11.57818985],[36.719501496,-11.692878724],[36.201259614,-11.716184616],[36.172279359,-11.58955574],[35.823818207,-11.406799316],[35.575569152,-11.603464127],[34.957931518,-11.571338654],[34.642639161,-11.58250904],[34.42527771,-12.159543037],[34.523887634,-12.729702949],[34.520900726,-13.337208748],[34.603542329,-13.481781006],[34.866371155,-13.481945038],[35.483951569,-14.167408944],[35.870323182,-14.674477577],[35.915046692,-14.895030022],[35.789237977,-15.167897224],[35.85213852,-15.417542457],[35.814365387,-16.030702591],[35.308395385,-16.212516784],[35.262172699,-16.470340728],[35.297000884,-17.126190185],[35.097358704,-17.127210618],[35.155979156,-16.831890107],[34.924369812,-16.744358063],[34.757629394,-16.510850906],[34.423492432,-16.254018783],[34.437480927,-16.061609267],[34.248569488,-15.841149329],[34.453739167,-15.60632515],[34.604110718,-15.267201424],[34.540897369,-14.599422455],[34.393241882,-14.395601272],[33.915218354,-14.476108552],[33.680450439,-14.604950904],[33.24020417,-13.998174991]]]},"properties":{"id":"06c8f150-7262-4a7d-881e-b444c5c4fe06","code":"MOZ","name":"Mozambique","abbreviation":"C-MOZ","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[92.202880859,21.149477005],[92.386108,20.701944],[92.761192321,20.20195961],[93.165558,20.036945],[93.353737,20.06806],[93.632225,19.721111],[94.068199,19.392191],[94.030281,18.85],[94.165283,18.802778],[94.385002,18.367781],[94.43824,17.976154],[94.582497,17.623611],[94.561943,17.33111],[94.20108,16.039995],[94.416946,16.066944],[94.707336,16.373631],[94.578613,15.933612],[94.71833,15.85417],[94.855278,16.12389],[95.111656,15.807781],[95.440650999,15.729969],[95.743057,16.129444],[96.651947,16.553333],[96.903053,17.23472],[97.166389465,16.962781906],[97.349998,16.519999],[97.619667,16.517076],[97.557503,16.08222],[97.691391,15.890833],[97.773331,15.433057],[97.789223,14.91301],[98.178337,13.815],[98.576111,13.184721],[98.648056,12.659166],[98.59639,12.476671],[98.724442,12.19667],[98.617226,12.102223],[98.815277,11.84611],[98.711426,11.520221],[98.698334,10.928612],[98.448334,10.688334],[98.552002,9.974082],[98.773597863,10.423904136],[98.782463073,10.675721169],[99.172996649,11.045432036],[99.65927124,11.828301431],[99.403457642,12.459459304],[99.099800111,13.077100754],[99.211135865,13.206250191],[99.171791077,13.719991684],[98.970832825,14.07981968],[98.601577759,14.323830605],[98.251457215,14.830780983],[98.186272,15.09499],[98.30885315,15.310970306],[98.581329346,15.363599777],[98.609298706,16.041229248],[98.93257904,16.327238083],[98.669479371,16.282550811],[98.658470153,16.455762863],[98.33856964,17.049209594],[97.67626953,17.868341445],[97.640449524,18.285829544],[97.539405822,18.48759079],[97.771896361,18.575000764],[97.738777161,19.038570404],[97.837272644,19.092201232],[97.863769531,19.573209762],[98.085845948,19.807189941],[98.32598114,19.694761277],[98.850227356,19.805711746],[98.984138488,19.733381272],[99.07108307,20.09041977],[99.541389466,20.144479751],[99.518218995,20.360139847],[100.086769104,20.350891113],[100.259483338,20.746959687],[100.503486634,20.809890747],[100.727104187,21.312124253],[101.005386353,21.392230987],[101.154747009,21.563869477],[101.126541137,21.775440216],[100.577789306,21.450250626],[100.202583314,21.439350128],[99.986152649,21.718660356],[99.970596313,22.052030565],[99.218940736,22.118749619],[99.389518737,22.499420167],[99.32546234,22.751070024],[99.564208985,22.925800324],[99.511268617,23.083738327],[98.889778137,23.183111191],[98.923049926,23.42311287],[98.678543091,23.959962844],[98.846466065,24.134290695],[98.029762267,24.071229935],[97.67312622,23.862070084],[97.734268188,24.117031097],[97.575897217,24.763330459],[97.715736389,24.837230682],[97.845031738,25.267892838],[98.369155883,25.572999955],[98.475769044,25.797702789],[98.694259643,25.843719483],[98.572860719,26.119081497],[98.781059265,26.619880676],[98.686851501,27.213729858],[98.69291687,27.589670182],[98.467582703,27.690162659],[98.318817139,27.542770387],[98.150886535,28.113918305],[97.905067444,28.372102738],[97.589302063,28.534980774],[97.356887819,28.233200073],[97.41516113,28.024080278],[96.897583009,27.620801926],[96.911849975,27.462709428],[97.171737671,27.136810304],[96.866226197,27.199689865],[96.802360534,27.354431152],[96.234329224,27.284879685],[95.423309326,26.696712494],[95.240440369,26.691640854],[95.068786621,26.466672897],[95.18535614,26.084682464],[95.052528381,25.762659072],[94.688636779,25.465499878],[94.585357665,25.215749742],[94.745658874,25.136590958],[94.262718201,24.167747498],[94.161460876,23.852779389],[93.756942749,24.009492875],[93.398719787,23.930280686],[93.427642823,23.534370423],[93.332641601,23.035671235],[93.141853333,23.060609818],[93.091751098,22.709341049],[93.190811157,22.427259445],[93.009246827,21.983930589],[92.703437805,22.15378189],[92.608779907,21.984094619],[92.673660279,21.291280747],[92.380973816,21.479867936],[92.202880859,21.149477005]]],[[[93.814453,19.22583],[93.468918,19.36713],[93.661713,19.02977],[93.98645,18.970772],[93.814453,19.22583]]]]},"properties":{"id":"3c6b4315-d867-401f-891a-e5f08fed6a2b","code":"MMR","name":"Myanmar","abbreviation":"C-MMR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.316290583,18.488474],[-88.069200436,18.861151737],[-88.054040372,18.476920148],[-87.859396305,18.190969],[-87.845011326,18.193383909],[-87.549974852,19.08851024],[-87.645490812,19.370597357],[-87.440134479,19.469225662],[-87.748368327,19.599120133],[-87.449043961,19.929279283],[-87.523585148,20.096041096],[-87.246348586,20.484854076],[-86.874689063,20.847540965],[-86.740640678,21.135330311],[-86.965998786,21.530134873],[-87.232462184,21.418610787],[-88.128818576,21.624266174],[-88.737480251,21.431135408],[-89.695933605,21.280902799],[-90.09461233,21.155552768],[-90.369320098,20.953595044],[-90.50226056,20.497775877],[-90.452152996,19.952173286],[-90.706729627,19.675827523],[-90.722545596,19.358565411],[-91.362523505,18.877554904],[-91.308749903,18.558675734],[-91.565813802,18.441439931],[-91.793244462,18.494017306],[-91.956861031,18.697425485],[-92.674272128,18.610567621],[-92.890685463,18.444116788],[-93.405922869,18.432296094],[-93.570459417,18.341667594],[-94.447114921,18.152185963],[-94.815678187,18.537788295],[-95.290894379,18.714126902],[-95.803878815,18.751455932],[-95.969853779,19.04867098],[-96.296698036,19.323729774],[-96.451213393,19.849137128],[-97.179144498,20.665745115],[-97.72190328,21.834606076],[-97.888069965,22.653393087],[-97.761198101,23.000478606],[-97.774628627,24.110269472],[-97.70788613,24.658994661],[-97.703042857,25.306919563],[-97.202527172,25.63064952],[-97.160128874,25.952016647],[-97.522961192,25.888194409],[-97.803342767,26.05993454],[-98.148976714,26.05055035],[-98.799294669,26.361960984],[-99.086828109,26.401394077],[-99.280285164,26.857823757],[-99.451691697,27.056946331],[-99.478806331,27.479124943],[-99.877781971,27.801462911],[-99.930937875,27.978954726],[-100.29424398,28.283574509],[-100.398499623,28.585093732],[-100.79427047,29.242100333],[-101.463746268,29.789341929],[-102.389945827,29.782801462],[-102.674098893,29.744528998],[-102.839219769,29.358895347],[-103.153168174,28.971745931],[-103.97337839,29.296052619],[-104.450749093,29.58167358],[-104.674580674,29.910828075],[-104.687275952,30.179880005],[-105.00756693,30.686026093],[-105.401847967,30.854443587],[-105.955292739,31.365126226],[-106.21959714,31.481547519],[-106.528523272,31.783817453],[-108.208373456,31.783754008],[-108.208473175,31.333363342],[-111.075016146,31.332382343],[-114.813572763,32.493913162],[-114.720236764,32.718626008],[-117.123496463,32.530884],[-116.879219041,32.017381569],[-116.610207407,31.810927394],[-116.690701206,31.571139962],[-116.309885736,31.157569442],[-116.05116314,30.779506145],[-116.046704893,30.470401393],[-115.802799786,30.279913304],[-115.804804756,29.973575409],[-115.505785134,29.617174496],[-114.950815479,29.361511334],[-114.596922363,28.976153029],[-114.408424633,28.868946833],[-114.044723652,28.458594781],[-114.12495521,28.256836154],[-114.040173415,28.02276174],[-114.178641445,27.822942768],[-114.605328131,27.773517998],[-115.054720206,27.860279961],[-115.007000204,27.718651985],[-114.50700549,27.409009017],[-114.488005697,27.228717353],[-113.871941484,26.979691784],[-113.716137727,26.790722693],[-113.203116092,26.851133496],[-113.061707767,26.599053062],[-112.19516617,25.99370846],[-112.074105704,25.676200975],[-112.149452517,25.137408841],[-112.064014302,24.746910216],[-111.027318067,24.097846999],[-110.684598173,23.770154898],[-110.313507841,23.545193083],[-110.099425596,23.021957603],[-109.857361163,22.898588628],[-109.439302662,23.234129777],[-109.468263269,23.552779284],[-109.676959498,23.645513935],[-109.827008338,24.060675343],[-110.234448434,24.344196647],[-110.304674486,24.174798863],[-110.563462555,24.213531188],[-110.739499999,24.624600001],[-110.657225602,24.806043145],[-110.907629052,25.145784305],[-111.03583694,25.517827229],[-111.306607854,25.774026738],[-111.319076273,26.076503568],[-111.5707182,26.572558598],[-111.56202216,26.697265273],[-112.010092006,26.961221385],[-112.213269704,27.204602733],[-112.37223815,27.563218917],[-112.77137824,27.861994328],[-112.903436324,28.474988246],[-113.102530689,28.50457298],[-113.196445278,28.791939111],[-113.34708699,28.799673729],[-113.637853728,29.28373536],[-114.534485995,29.968121544],[-114.668870598,30.198252357],[-114.631252731,30.419917607],[-114.721695752,30.936926288],[-114.891102218,31.15802457],[-114.805810107,31.819820122],[-114.271475684,31.543405878],[-113.972361083,31.629894441],[-113.638093455,31.477325156],[-113.6223715,31.326951263],[-113.101509255,31.189443841],[-113.12683299,30.810476777],[-112.775871346,30.22572556],[-112.747566114,29.916561257],[-112.256050316,29.326945954],[-112.149948908,28.989159748],[-111.492016,28.387058196],[-111.077217457,27.936148828],[-110.578104025,27.882357704],[-110.626074102,27.618482847],[-110.522225985,27.290907355],[-109.919540132,27.065073285],[-109.837726201,26.771350268],[-109.52545474,26.760137225],[-109.216133544,26.333941841],[-109.445866687,25.957160909],[-109.428731389,25.819475972],[-108.887736782,25.568949556],[-108.652110441,25.344172506],[-108.04638113,25.062235489],[-107.999163395,24.652871101],[-107.111950092,24.056451361],[-106.386811775,23.177746802],[-105.847713828,22.685198123],[-105.686333531,22.379039483],[-105.638759729,21.979278489],[-105.444864836,21.636644226],[-105.187833938,21.45968672],[-105.241544014,21.051257941],[-105.453869358,20.870665127],[-105.232958285,20.615433297],[-105.694275218,20.409694976],[-105.548632516,20.09502128],[-105.031515505,19.389122252],[-104.700757345,19.179923138],[-104.310080246,19.084735001],[-103.805230048,18.750493787],[-103.491759729,18.32952376],[-102.186374308,17.915052054],[-101.809243659,17.887460466],[-101.642932107,17.667275513],[-101.057970546,17.274652951],[-99.96140092,16.894948588],[-99.672983376,16.701607594],[-98.906375044,16.534520484],[-98.569118518,16.325257145],[-98.204272844,16.2285446],[-97.766992737,15.976341207],[-97.274047389,15.938656296],[-96.555252427,15.658766448],[-95.435617037,15.976096407],[-94.866206659,16.432631705],[-94.699761607,16.209910335],[-93.89833911,16.083716687],[-93.906780636,15.97940793],[-93.335351085,15.599505196],[-92.220236314,14.536805152],[-92.074705575,15.089259225],[-92.210596348,15.261423482],[-91.731384147,16.074020363],[-90.44204187,16.074256897],[-90.417543396,16.422987835],[-90.64563778,16.517452403],[-90.803295848,16.795231396],[-91.067180679,16.901246329],[-91.264726288,17.168226467],[-90.987460023,17.251392669],[-90.987639511,17.815473446],[-89.146888732,17.814586639],[-88.857937985,17.924198107],[-88.51761409,18.463465209],[-88.316290583,18.488474]]],[[[-112.328570893,29.220139502],[-112.47751905,29.167428185],[-112.572834023,28.868471051],[-112.309705776,28.747013966],[-112.202367016,29.01490454],[-112.328570893,29.220139502]]],[[[-113.503129569,29.535345744],[-113.593930874,29.437584035],[-113.115839771,28.987051319],[-113.183177899,29.28819783],[-113.370693511,29.311112574],[-113.503129569,29.535345744]]]]},"properties":{"id":"068d8bf3-9e3d-4489-8eab-b4029748a716","code":"MEX","name":"México","abbreviation":"C-MEX","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.757551193,-17.252080917],[11.735972404,-17.584861756],[11.832361221,-18.094028472],[12.03374958,-18.500692368],[12.32013893,-18.73402977],[12.566249848,-19.084304809],[13.05458355,-20.072639466],[13.195972443,-20.2131958],[13.413750648,-20.875139236],[14.063751,-21.866249],[14.392361,-22.282364],[14.539305686,-22.898471832],[14.402359962,-23.012638092],[14.498194695,-23.311805726],[14.45014,-24.005695],[14.876527,-25.083471],[14.801528,-25.30125],[14.826806,-25.748751],[15.094584,-26.407639],[15.080417,-26.654861],[15.238472,-26.963472],[15.294029,-27.322083],[15.679583,-27.952915],[16.45813,-28.636805],[16.73399,-28.494261],[16.754579545,-28.272560118],[17.082199097,-28.032949448],[17.41403969,-28.37603967],[17.410549,-28.71348],[17.92565,-28.768841001],[18.19383,-28.91527],[18.728670119,-28.831699371],[19.11829,-28.96944],[19.54847908,-28.540840149],[19.999160766,-28.427820206],[20.000228881,-24.766942978],[19.999998093,-22.001777649],[21.001741409,-22.003839493],[20.998825074,-18.317876816],[21.468940734,-18.318029404],[22.98841095,-18.018289566],[23.296621322,-17.99752426],[23.612859726,-18.504049301],[24.201080322,-18.016550064],[24.575153351,-18.065099717],[24.804834366,-17.860858916],[25.265507709,-17.78990663],[25.267707964,-17.782541854],[25.040837939,-17.584176287],[24.701937939,-17.493276287],[24.224937928,-17.471576287],[23.440829367,-17.635094307],[21.433547973,-18.024074554],[21.219751357,-17.932115555],[20.812007905,-18.040735245],[20.2483387,-17.893465042],[18.89899063,-17.819267272],[18.422714232,-17.394428252],[14.214320183,-17.384059906],[13.956889152,-17.433372497],[13.510655404,-17.135110855],[13.460853576,-17.013067244],[12.992523193,-16.981487274],[12.604594258,-17.229342106],[12.167506218,-17.158584595],[11.757551193,-17.252080917]]]},"properties":{"id":"1f6398c8-4802-425b-a601-e6361e61655c","code":"NAM","name":"Namibia","abbreviation":"C-NAM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[166.927444459,-0.553635],[166.959335328,-0.517763972],[166.912216186,-0.523055971],[166.927444459,-0.553635]]]},"properties":{"id":"b874b6b6-d00f-4a86-903a-a4c35dce3330","code":"NRU","name":"Nauru","abbreviation":"C-NRU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[81.018875122,30.236837387],[80.605339051,29.958717346],[80.243347169,29.411586761],[80.274406434,29.144750595],[80.060142517,28.916316985],[80.373321534,28.62902069],[80.716300964,28.567897796],[81.212418,28.360516],[81.322411,28.197168],[81.904022217,27.853683471],[82.072883607,27.922525407],[82.450714112,27.67861557],[82.701217651,27.721824647],[82.73700714,27.503101348],[83.390930175,27.479490281],[83.833221435,27.369508743],[84.110717773,27.521514893],[84.293411254,27.385042191],[84.624473572,27.336078644],[84.644851685,27.047246934],[85.191314697,26.869815827],[85.336318969,26.741415024],[85.626220977,26.87341498],[85.85331726,26.609516145],[86.310241699,26.61964035],[86.835800171,26.438697816],[87.343414307,26.347515106],[87.794944893,26.468524937],[88.097404,26.437443],[88.190498352,26.771411896],[88.009925842,27.142959595],[88.129981995,27.881515503],[87.859519959,27.94771576],[87.726615907,27.805114745],[87.128837585,27.833919525],[87.041618348,27.950115205],[86.566123962,28.108438491],[86.444831848,27.905500412],[86.06741333,27.899515151],[85.750267029,28.242406846],[85.11038208,28.346796035],[85.19985962,28.627033234],[84.859313965,28.570314407],[84.222602844,28.915599824],[84.250038147,29.037136079],[83.964813232,29.331315994],[83.635505676,29.158428193],[83.220184326,29.605421066],[82.829093933,29.689697265],[82.698730469,29.855230332],[81.992111207,30.321130754],[81.428161621,30.421175004],[81.220863342,30.007465363],[81.018875122,30.236837387]]]},"properties":{"id":"d96f8b82-0568-46fa-8382-1a163fc0b251","code":"NPL","name":"Nepal","abbreviation":"C-NPL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.036703586,50.723491668],[6.072657108,51.242588043],[6.205219745,51.399517059],[6.055318833,51.852569581],[6.407779694,51.828090669],[7.072173595,52.352268219],[6.697720062,52.48634338],[6.743166923,52.645790101],[7.054698943,52.644401551],[7.212802409,53.010959625],[7.210575105,53.236904145],[6.816945,53.463196],[5.86916685,53.382083893],[4.876945018,52.88847351],[4.719167232,52.951526642],[4.556388854,52.425971985],[4.068055153,51.85180664],[3.7075,51.729305],[3.437500001,51.540974],[3.811389924,51.385692596],[4.221158028,51.37612915],[4.75214386,51.497524261],[5.136709213,51.315532684],[5.834125043,51.168460847],[5.691102028,50.761138917],[6.036703586,50.723491668]]],[[[4.216015817,51.370239257],[3.360782249,51.367637642],[3.902096987,51.198947908],[4.216015817,51.370239257]]]]},"properties":{"id":"01902b87-aabf-4b46-9b69-63c89c166e85","code":"NLD","name":"Netherlands","abbreviation":"C-NLD","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[166.49556,-22.232222],[166.78334,-22.390835],[167.02417,-22.276945],[166.886383,-22.043333],[166.687943,-21.986719],[166.409912,-21.699713],[165.630005,-21.264723],[165.263428,-20.793907],[164.848022,-20.612347],[164.503097533,-20.298866272],[164.169983,-20.233992],[164.176437,-20.485327],[164.462555,-20.848629],[165.287445,-21.573559],[166.147522,-21.962402],[166.219452,-22.144444],[166.49556,-22.232222]]],[[[167.197845,-20.680269],[167.054001,-20.985458],[167.339996,-21.183889],[167.458054,-21.052778],[167.197845,-20.680269]]],[[[167.97583,-21.348612],[167.798889,-21.383333],[167.979721,-21.661388],[168.132782,-21.445276],[167.97583,-21.348612]]]]},"properties":{"id":"bab44793-1e32-4319-b894-633615eaa249","code":"NCL","name":"New Caledonia","abbreviation":"C-NCL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[167.913116,-44.671185],[167.749817,-44.581112],[167.24884,-44.90218],[166.842285,-45.276684],[166.680649,-45.522709],[166.73259,-45.728348],[166.647034,-46.194088],[167.217133,-46.262524],[167.533218,-46.162388],[167.783005,-46.388866],[168.064941,-46.339298],[168.26564,-46.493935],[168.846725,-46.660732],[169.360657,-46.637104],[169.776123,-46.469002],[169.798096,-46.354698],[170.168564,-46.154541],[170.34201,-45.942745],[170.739227,-45.879276],[170.571274,-45.721889],[170.831314,-45.473431],[170.831467,-45.305561],[171.101669,-45.001862],[171.15918,-44.627833999],[171.352340699,-44.280597686],[171.614822388,-44.131828307],[172.353378296,-43.859703063],[172.997711,-43.887375],[173.124023,-43.738075],[172.726517,-43.525356],[172.81690979,-43.13325882],[173.239532471,-42.954284668],[173.594741821,-42.428356171],[173.939880371,-42.158241271],[174.274979,-41.742981],[174.029053,-41.453552],[174.200531,-41.172703],[174.163437,-40.969677],[173.799118,-41.162842],[173.849686,-40.926929],[173.203873,-41.330276],[173.009537,-41.14378],[173.065491,-40.878357],[172.80246,-40.818054],[172.642624,-40.50806],[172.100098,-40.896],[172.063309,-41.384216],[171.857925,-41.624512],[171.466156,-41.746387],[171.304550172,-42.267253876],[171.051285,-42.65044],[170.721069,-42.930035],[170.260864,-43.107822],[169.591599,-43.599041],[169.209381,-43.719299],[168.836075,-43.95607],[168.389542,-44.002506],[168.097519,-44.327164],[167.872681,-44.434273],[167.913116,-44.671185]]],[[[174.786774,-41.264675],[174.915878,-41.436577],[175.216735839,-41.431575775],[175.429626465,-41.572307587],[175.811813354,-41.359714508],[176.062454224,-41.131015778],[176.309814452,-40.716312408],[176.622650147,-40.49040985],[177.005325,-39.841152],[176.873138427,-39.456344605],[177.045792,-39.194225],[177.259155,-39.100662],[177.88707,-39.031628],[177.950348,-38.764778],[178.346725,-38.416084],[178.339935,-38.004948],[178.549728,-37.687328],[178.048233,-37.542103],[177.731598,-37.678417],[177.546783,-37.907581],[177.160568,-37.989845],[176.736145,-37.879597],[175.928055,-37.583672],[175.941985999,-37.345284],[175.781189,-36.693546],[175.614777,-36.754417],[175.409973,-36.470554],[175.544891,-37.157333],[175.343796,-37.209450001],[175.283325,-36.988506],[174.813812,-36.826981],[174.700714,-36.594437],[174.84761,-36.377693],[174.460144,-35.914165],[174.521744,-35.568119],[174.293045,-35.235821],[174.115906,-35.303528],[173.938324,-35.052177],[173.562714,-34.921623],[173.433975,-34.985928],[173.025131,-34.653519],[173.014435,-34.424137],[172.660934,-34.477726],[173.087479,-34.900742],[173.054276,-35.191353],[173.983704,-36.233746],[174.040634,-36.392918],[174.39418,-36.389038],[174.493774,-37.052605],[174.682785,-37.16766],[174.87851,-37.959309],[174.680740357,-38.114383697],[174.559952,-38.855915],[173.91124,-39.120087],[173.751663209,-39.281101228],[173.915725707,-39.520290374],[174.201873778,-39.588165284],[174.558547974,-39.817302704],[174.947662353,-39.911254882],[175.162490845,-40.107124327],[175.180816651,-40.597503661],[174.786774,-41.264675]]],[[[168.094498,-46.972614],[167.974045,-46.722744],[167.704117,-46.75444],[167.759033,-46.937084],[167.559677,-47.09058],[167.813324,-47.192028],[168.109711,-47.115761],[168.094498,-46.972614]]],[[[166.185562,-50.516388],[165.877579,-50.769611],[166.19014,-50.865387],[166.185562,-50.516388]]],[[[-176.625076,-43.694023],[-176.578033,-44.130848],[-176.358276,-44.058533],[-176.625076,-43.694023]]]]},"properties":{"id":"1c90cea3-d99b-4ccd-b953-e6d59c5b3dcb","code":"NZL","name":"New Zealand","abbreviation":"C-NZL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.693022779,10.937869285],[-83.873192,11.295288],[-83.647362,11.597082],[-83.765137,11.951527],[-83.618195,12.35236],[-83.491249,12.393193],[-83.569305,13.232084],[-83.456871,13.921805],[-83.205696,14.303193],[-83.303749084,14.782361031],[-83.147117605,14.991808973],[-83.506614685,14.998771667],[-83.851472523,14.766824124],[-84.469063,14.614528],[-84.903411866,14.807711601],[-85.405273438,14.124769212],[-85.901016235,13.899938584],[-86.092407226,14.063927651],[-86.352073669,13.759555818],[-86.76284027,13.773123741],[-86.706542969,13.295379639],[-86.907913366,13.256347016],[-86.958984376,13.032221793],[-87.311523438,12.99064827],[-87.690971,12.91236],[-86.777641,12.202083],[-86.517364502,11.775416375],[-85.693022,11.078864],[-85.609820571,11.219757893],[-84.910777,10.943803],[-84.680368088,11.084493753],[-83.93912196,10.72180668],[-83.693022779,10.937869285]]]},"properties":{"id":"0b54d6f1-5769-484d-85f7-225a79501c5a","code":"NIC","name":"Nicaragua","abbreviation":"C-NIC","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.242887021,19.136716843],[4.241202832,16.987697601],[4.076756001,16.912309646],[4.076467038,16.320419311],[3.872142076,15.691880226],[3.538172006,15.488309861],[3.527507066,15.341489791],[2.628789901,15.367120743],[1.324030041,15.265146256],[0.973188996,14.978949548],[0.229350001,14.989670753],[0.166250006,14.533438682],[0.403759987,14.249659539],[0.398788006,14.027869224],[0.635519028,13.693430902],[0.989960015,13.576399803],[0.997500003,12.999650002],[1.123366833,12.999508858],[1.576050043,12.633138657],[2.160629988,12.687950134],[2.271229983,12.467830659],[2.066420078,12.350940704],[2.405400038,11.901610374],[2.385479927,12.235549927],[2.79459405,12.418351173],[3.013609886,12.266388895],[3.302057982,11.8941288],[3.605076074,11.696969987],[3.642555952,12.520148278],[4.096078872,12.995821953],[4.13045311,13.472638131],[4.464822768,13.703294754],[4.870658875,13.782539368],[5.270487786,13.746100425],[5.526512146,13.892009735],[6.149414062,13.642833711],[6.43363285,13.591984748],[6.928008079,12.989852905],[7.426324845,13.11047554],[7.804233073,13.334292413],[8.067596436,13.302456856],[8.415629387,13.054848671],[8.956508636,12.839921952],[9.650238991,12.803606988],[9.996533393,13.163274764],[10.654708862,13.35411644],[11.395575523,13.37007904],[11.875433922,13.249657632],[12.104241371,13.093460083],[12.480481148,13.064720154],[12.589188575,13.277810096],[12.877059937,13.497050285],[13.208338738,13.526625633],[13.341100692,13.710021019],[13.634547235,13.710688591],[13.485630036,14.358268738],[13.696022033,14.551117898],[13.789679527,14.863208772],[14.384760857,15.73155117],[15.505545616,16.897871017],[15.593798637,18.731866837],[15.75355053,19.947784424],[15.995641709,20.348470687],[15.590099335,20.774469377],[15.625590324,20.96323967],[15.198430062,21.491306305],[15.191865922,21.989744186],[14.995869636,23.001890182],[14.189322471,22.644483567],[13.680399896,23.072240829],[13.397974969,23.217527389],[11.979550363,23.525030136],[9.575286866,22.129539489],[7.445679189,20.842470168],[7.160675049,20.619380952],[5.817081929,19.437709809],[4.242887021,19.136716843]]]},"properties":{"id":"293a55e4-59a3-4009-80e8-38ca95497595","code":"NER","name":"Niger","abbreviation":"C-NER","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.709382057,6.375693798],[3.947082999,6.433473001],[4.400972844,6.360138894],[4.804029,6.075694],[5.043472,5.784306],[5.290695,5.916806],[5.355693,5.696806],[5.726805,5.506806],[5.464028,5.347362],[5.376527,5.125971],[5.742638,4.485418],[5.978194,4.310973],[6.444304,4.315973],[6.832639,4.405416],[6.759584,4.770417],[7.00736,4.774305],[7.210418,4.628472],[7.655416,4.51014],[8.265138,4.533471],[8.355137825,4.785416127],[8.52579975,4.734583855],[8.818734169,5.185620785],[8.920332908,5.564700603],[8.840985297,5.819804192],[9.265694619,6.184167861],[9.467670441,6.456195831],[9.706345557,6.515554429],[9.863946915,6.776453495],[10.153351784,7.038451672],[10.217097283,6.888836861],[10.528110504,6.926647186],[10.597702026,7.077906609],[10.841154098,6.939635754],[11.099142075,6.521626472],[11.423880577,6.530172825],[11.564294814,6.88794899],[12.03434372,7.521106719],[12.031183242,7.726894855],[12.221256256,8.002602577],[12.238751411,8.339077949],[12.785830497,8.743083],[12.898114204,9.11692524],[12.871006966,9.391368866],[13.207711219,9.557841301],[13.247768403,10.035773277],[13.436149598,10.137202262],[13.547357559,10.621170043],[13.708013535,10.972044945],[13.980623244,11.318759919],[14.194681167,11.252654076],[14.614504815,11.512958527],[14.676218987,12.159849167],[14.466317176,12.359292985],[14.224431039,12.361770629],[14.085529327,13.077386857],[13.634547235,13.710688591],[13.341100692,13.710021019],[13.208338738,13.526625633],[12.877059937,13.497050285],[12.589188575,13.277810096],[12.480481148,13.064720154],[12.104241371,13.093460083],[11.875433922,13.249657632],[11.395575523,13.37007904],[10.654708862,13.35411644],[9.996533393,13.163274764],[9.650238991,12.803606988],[8.956508636,12.839921952],[8.415629387,13.054848671],[8.067596436,13.302456856],[7.804233073,13.334292413],[7.426324845,13.11047554],[6.928008079,12.989852905],[6.43363285,13.591984748],[6.149414062,13.642833711],[5.526512146,13.892009735],[5.270487786,13.746100425],[4.870658875,13.782539368],[4.464822768,13.703294754],[4.13045311,13.472638131],[4.096078872,12.995821953],[3.642555952,12.520148278],[3.605076074,11.696969987],[3.496037007,11.292149545],[3.691904068,11.12815857],[3.840980053,10.704918862],[3.786003112,10.405379296],[3.529059887,9.861886979],[3.356626987,9.825662614],[3.130999089,9.440149307],[3.088170052,9.101576806],[2.780891894,9.0651083],[2.728413104,8.772684097],[2.754101038,8.211312294],[2.675815104,7.89320612],[2.792602062,7.041276932],[2.709382057,6.375693798]]]},"properties":{"id":"91bf590c-3d5d-4c05-98d6-359b162a65d0","code":"NGA","name":"Nigeria","abbreviation":"C-NGA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-169.850631715,-19.147567748],[-169.773605348,-19.059444428],[-169.878890991,-18.958610534],[-169.949172975,-19.078332901],[-169.850631715,-19.147567748]]]},"properties":{"id":"23d9532d-9486-48e4-9a93-87fdadb5cee8","code":"NIU","name":"Niue","abbreviation":"C-NIU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[167.925003,-28.99502],[167.917496,-29.034447],[167.995697,-29.02696],[167.925003,-28.99502]]]},"properties":{"id":"e5a61e39-c356-4f58-96ca-00c5fbda990f","code":"NFK","name":"Norfolk Island","abbreviation":"C-NFK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.220642,39.914864],[124.648193,39.679863],[125.218193054,39.606803894],[125.397636413,39.263198852],[125.032364,38.589027],[124.71875,38.137089],[124.980141,37.924866],[125.300415,37.881531],[125.31292,37.715977],[125.617363,37.763477],[125.56652832,38.029308318],[125.809029,37.994865],[125.909027,37.813198],[126.390136718,37.890419007],[126.543949242,37.781810761],[126.667114257,37.785064698],[126.975593999,38.199679999],[127.139442444,38.307243347],[128.137710571,38.328300476],[128.358484762,38.611772897],[127.760696,39.112644],[127.369583129,39.220695496],[127.568473817,39.605415344],[127.501251221,39.731254578],[127.873192,39.898476],[127.994308,40.060421],[128.318192,40.028751],[129.152359009,40.547641755],[129.20791626,40.689029693],[129.730423,40.857643],[129.806533813,41.382919311],[129.649581909,41.495693208],[129.909302,41.915699],[130.296249,42.239586],[130.674393,42.284584],[130.614608676,42.42395806],[130.248245239,42.71139145],[130.265823365,42.886070252],[129.89653015,43.001998902],[129.714370727,42.426753999],[129.234985351,42.374160767],[129.213943482,42.211853027],[128.955169679,42.075618745],[128.064025878,41.965419769],[128.313812255,41.583030701],[128.102462769,41.363018036],[127.408706665,41.455421448],[127.159362793,41.539051057],[126.926170349,41.808521272],[126.584831239,41.56418991],[126.287193299,41.159488679],[126.006347657,40.891548158],[125.774620056,40.88679123],[125.014091493,40.532649993],[124.385841369,40.123088836],[124.220642,39.914864]]]},"properties":{"id":"8cba2b3e-b182-4675-a35b-cb876dd054cd","code":"PRK","name":"North Korea","abbreviation":"C-PRK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.991338731,40.858062744],[21.594812394,40.871620179],[21.907794953,41.093132019],[22.592737199,41.119709015],[22.933700561,41.343158723],[23.0056324,41.70438385],[22.839433669,42.000568391],[22.345737457,42.304096222],[21.94235611,42.32038498],[21.59392166,42.247520448],[21.239177704,42.083351135],[21.094049454,42.197029114],[20.591096878,41.878536225],[20.455766677,41.524791719],[20.737983704,40.912139893],[20.991338731,40.858062744]]]},"properties":{"id":"f007a045-7160-4db9-b566-3c71cb843e95","code":"MKD","name":"North Macedonia","abbreviation":"C-MKD","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.906524816,35.069122147],[34.004291534,35.065361023],[33.904583,35.253750001],[34.556526001,35.691807001],[34.125694,35.505417],[33.427917,35.332085],[32.994305,35.368195],[32.722362518,35.180473329],[32.841957092,35.079792023],[33.400318146,35.197750091],[33.67452139,35.043880133],[33.906524816,35.069122147]]]},"properties":{"id":"9deef05f-4565-439e-9446-89a8d8423d65","code":"ZNC","name":"Northern Cyprus","abbreviation":"C-ZNC","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[145.816666,15.287778],[145.715271,15.217223],[145.751663,15.160003],[145.816666,15.287778]]]},"properties":{"id":"8054df4a-2eca-4ab9-a2bd-b5b0e5f5b7e9","code":"MNP","name":"Northern Mariana Islands","abbreviation":"C-MNP","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[28.924753394,69.056725056],[29.30975,69.182114],[29.314947,69.30278],[29.986135,69.413345],[30.145369,69.671532],[30.526632,69.542526],[30.945555,69.58622],[30.842518,69.791664],[30.41823,69.773437],[30.168751,69.881248],[28.706249,70.104164],[29.029167,70.125],[29.825001,70.0625],[30.289583,70.120834],[30.514584,70.239586],[31.045834,70.28125],[30.933332,70.447914],[30.43385315,70.551567077],[30.010416031,70.708335876],[29.388021,70.697395],[29.249479,70.844269],[28.754168,70.852081],[28.402082,70.543747],[28.23073,70.788017],[28.549479,70.976562],[28.245832,71.087502],[27.820833,71.03125],[27.737499,71.10833],[27.289583,71.041664],[27.122917,70.916664],[27.53125,70.866669],[27.135416,70.747917],[26.716667,70.414581],[26.512501,70.435417],[26.689062,70.748436],[26.677084,70.96875],[26.383333,70.879166],[25.986979,70.610939],[25.447916,70.366669],[25.486979,70.269272],[25.1,70.070831],[25.222918,70.525002],[25.895834,70.85833],[25.551563,70.91198],[25.268749,70.810417],[24.960417,70.972916],[24.620312,70.993233],[24.597397,70.783852],[24.356251,70.875],[24.11875,70.53125],[23.796354,70.478645],[23.202604,70.202599],[23.133854,69.966148],[22.960417,70.197914],[21.952084,70.32708],[21.725,70.23333],[21.485937,70.309898],[21.194271,70.223434],[21.854166,70.010414],[21.870832,69.84375],[21.441668,70.01458],[21.275,69.887497],[20.858334,69.914581],[20.526562,69.702599],[20.256771087,69.41822815],[20.378647,69.860939],[20.158333,69.941666],[19.76927,69.679687],[19.728645,69.805733],[19.096354,69.734901],[18.833334,69.5625],[18.302084,69.479164],[17.985416,69.310417],[18.054166795,69.150001526],[17.538021,69.028648],[17.622917,68.89167],[17.287500382,68.735420227],[16.614584,68.643753],[16.533333,68.5625],[16.475,68.543747],[16.179688,68.518234],[16.077604,68.416145],[17.070312,68.501564],[17.495832,68.464584],[17.029167,68.356247],[16.758333,68.42083],[16.277082,68.375],[16.447395,68.223434],[16.218229,67.972397],[15.952084,68.26667],[15.80625,68.09375],[15.622916,68.189583],[15.290104,68.02552],[15.68125,67.960419],[15.00625,67.904167],[14.752084,67.816666],[14.916667,67.658333],[15.435416,67.808334],[15.09375,67.587502],[14.652604,67.478645],[14.325,67.254166],[15.170312882,67.326560973],[15.164583206,67.254165651],[14.350521,67.2099],[14.2375,66.997917],[14.0375,67.07917],[13.279166,66.73333],[13.133854,66.259895],[12.933333,66.020836],[12.291667,65.587502],[12.077084,65.208336],[12.458333,65.368752],[12.579166,65.129166],[12.222917,65.214584],[11.322917,64.88958],[11.153646,64.971352],[10.764584,64.92083],[11.391666,64.75],[11.34375,64.572914],[11.077084,64.652084],[10.714063,64.548439],[10.039583,64.060417],[10.054167,63.918751],[9.714583,63.870834],[10.110416,63.495834],[10.920833587,63.733333587],[10.9625,63.90625],[11.439063071,63.828643799],[10.671354,63.582809],[10.895312,63.448441],[9.980729102,63.441143036],[9.751563,63.645309],[9.154166,63.393749],[8.820833,63.433334],[8.410417,63.325001],[8.547916,63.141666],[8.467187,62.84219],[8.029166,63.108334],[7.835417,62.950000999],[7.583333,63.054165],[7.097917,62.989582],[6.985416,62.724998],[7.447917,62.756248],[7.359896,62.599476],[7.08125019,62.652084351],[6.3375,62.612499],[6.716667,62.491665],[5.9375,62.222916],[5.591667,62.158333],[5.304167,61.820835],[4.973437,61.722393],[5.345833,61.554165],[5.075,61.450001],[4.95625,61.275002],[5.152604,61.08073],[5.202083,60.833332],[5.272917,60.820835],[4.972917,60.731251],[5.302083492,60.525001527],[5.245833396,60.243751526],[5.58125,60.075001],[5.535834,59.893471],[5.893229,60.01302],[6.03125,60.272915],[6.241667,60.295834],[5.778024,59.831249],[5.246944,59.556805],[5.348056,59.27264],[5.946388,59.357639],[6.154722,59.260418],[5.848055,58.932083],[5.578610999,59.035973],[5.501389,58.765972],[5.661945,58.552917],[6.393612,58.270416],[6.666944,58.238472],[6.624167,58.071804],[7.666944,58.013195],[7.985278,58.142082],[8.210833,58.108196],[9.621946,58.933746],[9.695277,59.097637],[9.974722,58.964584],[10.4375,59.16375],[10.525279,59.320137],[10.543612,59.88736],[10.729722,59.232639],[11.219166,59.086342],[11.464693,58.890198],[11.653469,58.907196],[11.815518379,59.32925415],[11.693858146,59.606498719],[11.941164971,59.694381715],[11.879952431,59.871490479],[12.182251931,59.889839172],[12.462190629,60.046268464],[12.59488,60.541663999],[12.231455961,61.018287777],[12.688180924,61.061740876],[12.852286339,61.368545533],[12.568354606,61.57032013],[12.14113617,61.718437196],[12.295542717,62.283195495],[12.059845925,62.622909546],[12.216041565,63.002391816],[11.987943649,63.252304077],[12.155960082,63.596260071],[12.697851182,63.981346131],[13.257819176,64.0936203],[13.977729798,64.011589051],[14.156627654,64.190147401],[14.09589386,64.476539611],[13.677269,64.613113],[14.512542725,65.32219696],[14.618681908,65.808624269],[14.516809464,66.13457489],[15.036372,66.151505],[15.480572653,66.281852991],[15.389968929,66.473189997],[16.030618668,66.9092865],[16.388906479,67.043693543],[16.398286819,67.215156555],[16.109629,67.425087],[16.578447,67.665138],[16.733610152,67.911590577],[17.270755767,68.114746094],[17.909151077,67.970481872],[18.15452385,68.194000244],[18.126932145,68.536102294],[18.997116088,68.516189576],[19.927127838,68.356903077],[20.334260941,68.793495178],[20.062599181,69.046081544],[20.551206589,69.058761598],[20.728641509,69.121208192],[21.063890458,69.03843689],[20.99707985,69.223571778],[21.267240525,69.312019348],[21.632258981,69.277549747],[22.182676316,68.956199647],[22.36974907,68.719413757],[23.045257569,68.691055298],[23.16020012,68.630416871],[23.677160264,68.706123351],[23.970842361,68.830650329],[24.249141694,68.724906921],[24.916858673,68.60825348],[25.143173218,68.791557312],[25.769058227,69.002952575],[25.709070206,69.258171082],[25.947675704,69.576324463],[25.896759033,69.673011781],[26.454679475,69.935172989],[27.023665001,69.910004],[27.621709871,70.077102662],[27.980879037,70.012123099],[28.44310945,69.81440719],[29.138516977,69.694747946],[29.326009888,69.4667209],[28.842869,69.23159],[28.924753394,69.056725056]]],[[[16.262501,68.897919],[16.014063,68.773438],[15.891666,68.96875],[15.639584,68.947914],[15.266666,68.477081],[14.416667,68.393753],[14.223437,68.166145],[14.968229,68.340103],[15.639584,68.306252],[16.001562,68.41198],[16.118229,68.545311],[16.241667,68.5625],[16.514584,68.564583],[16.579166,68.631248],[16.487499,68.856247],[16.262501,68.897919]]],[[[17.805077,69.162109],[18.043751,69.491669],[17.862499,69.581253],[17.479687,69.558853],[17.104166,69.383331],[17.185938,69.083855],[17.450521,69.195312],[17.805077,69.162109]]],[[[18.732813,69.861984],[18.304167,69.777084],[18.197916,69.518753],[18.764063,69.563019],[19.055729,69.776566],[18.732813,69.861984]]],[[[22.68125,70.550003],[23.0625,70.568748],[23.497396,70.796349],[22.262501,70.65625],[22.11875,70.48333],[22.68125,70.550003]]],[[[15.03698,68.674484],[15.416667,68.685417],[15.182813,69.013016],[15.089583,68.866669],[14.608334,68.76458],[14.427604,68.606766],[15.03698,68.674484]]],[[[19.340103,69.822395],[19.674479,69.995316],[19.295834,70.083336],[18.845833,70.025002],[19.097918,69.785416],[19.340103,69.822395]]],[[[23.624479,70.497398],[23.127083,70.54583],[22.885937,70.36615],[23.195833,70.275002],[23.624479,70.497398]]],[[[25.696354,71.155731],[25.360416,71.104164],[25.549999,70.931252],[26.118229,70.992187],[25.696354,71.155731]]],[[[8.831771,63.658852],[8.35625,63.537498],[8.33125,63.431252],[9.08125,63.504166],[8.831771,63.658852]]],[[[14.163021,68.267189],[13.889584,68.34375],[13.572917,68.285416],[13.50625,68.056252],[14.163021,68.267189]]],[[[16.1625,69.291664],[15.875,69.254166],[15.43177,68.986984],[15.820833,69.012497],[16.1625,69.291664]]],[[[24.063021,70.645317],[23.672916,70.745834],[23.733854,70.52552],[24.063021,70.645317]]],[[[20.745832,70.229164],[20.397917,70.058334],[20.802084,70.050003],[20.745832,70.229164]]],[[[19.647396,70.27552],[19.733334,70.058334],[20.004168,70.118752],[19.647396,70.27552]]],[[[5.766146,62.202606],[6.110416412,62.34791565],[5.852604,62.40781],[5.766146,62.202606]]]]},"properties":{"id":"0fd8875c-6ace-4ef2-b8b1-b2f059d281ef","code":"NOR","name":"Norway","abbreviation":"C-NOR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[53.082321166,16.642362594],[53.512359619,16.761806489],[54.044582367,16.990417481],[55.047359466,17.02069664],[55.264026641,17.23819542],[55.227638244,17.534584046],[55.425140381,17.81652832],[55.750415803,17.90263939],[56.319862365,17.91708374],[56.551250457,18.125694275],[56.640415193,18.579584121],[56.78791809,18.739582061],[57.309581757,18.924304962],[57.840973,19.00375],[57.683472,19.738194],[57.849861,20.241249],[58.167915,20.604305],[58.199306,20.405416],[58.444584,20.347918],[58.856529236,21.068473816],[59.348194122,21.434305191],[59.810138702,22.227083207],[59.793751,22.53875],[59.542641,22.569027],[59.292362,22.763474],[58.754028,23.522917],[58.565418,23.636806],[58.285137176,23.619581222],[57.138473511,23.957914353],[56.623748779,24.489027023],[56.345531,24.973074],[56.08108139,24.743289948],[55.960251105,25.005985181],[55.812599182,24.910671234],[55.834701538,24.410011291],[56.018131256,24.066028594],[55.484859467,23.939989091],[55.572658539,23.631528854],[55.232471465,23.110408782],[55.213485447,22.702154118],[55.666685101,22.0000149],[54.999999999,20.000000001],[51.999999999,18.999998094],[52.782176971,17.349733353],[52.712574005,17.080316544],[53.082321166,16.642362594]]],[[[56.270771027,25.625865937],[56.427639,25.939306],[56.447083,26.222639],[56.184029,26.225416],[56.086029052,26.050539017],[56.270771027,25.625865937]]],[[[58.901249,20.696251],[58.633751,20.343195],[58.636528,20.160694],[58.962917,20.51597],[58.901249,20.696251]]]]},"properties":{"id":"6712d593-967b-47b3-9f05-aee800fe5b80","code":"OMN","name":"Oman","abbreviation":"C-OMN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[60.89943695,29.837495804],[61.37260437,29.348672867],[61.504318237,29.007545472],[61.804157257,28.640169145],[62.786937714,28.281179428],[62.855392457,27.465137482],[62.781478881,27.251426697],[63.184223176,27.241436004],[63.275531769,26.864767074],[63.169185639,26.647294998],[62.778697968,26.652280807],[62.315067291,26.528869629],[61.870754243,26.246740341],[61.68920517,25.799165725],[61.655613,25.297499],[61.576805,25.184269],[61.871807,25.097918],[62.330139,25.150694],[62.590416,25.270695],[63.488472,25.205694],[63.692081,25.385693],[64.40097,25.236528],[65.142914,25.302082],[66.285141,25.468197],[66.746529,25.185696],[66.69458,24.894583],[67.407364,24.779581],[67.300972,24.555695],[67.450142,24.425695],[67.431808,24.089027],[67.909584,24.072363],[68.114304,23.856251],[68.547081,23.963186],[68.749245,23.962046],[68.764122,24.284122],[69.199768,24.235199],[69.600677,24.277847],[70.024085999,24.169353486],[70.1101,24.284897],[70.574867,24.420315],[70.805763,24.222727001],[70.998428,24.360571],[71.107139769,24.680650803],[70.894309997,25.144058228],[70.674171447,25.389320373],[70.681137086,25.66076088],[70.285263061,25.698930741],[70.106681824,25.924209595],[70.167739868,26.550743104],[69.855552674,26.582920074],[69.522415161,26.736011505],[69.586662292,27.177984238],[70.01626587,27.555995942],[70.366165161,28.008249284],[70.5626297,28.019802093],[70.757667542,27.717208863],[71.658287049,27.868930818],[72.208847046,28.399982453],[72.384696961,28.763940812],[72.943756103,29.029911041],[73.271316527,29.55696106],[73.385398865,29.926019669],[73.966316224,30.195049286],[73.873214722,30.383438111],[74.553443909,31.062601089],[74.642066955,31.461549758],[74.517280579,31.722911835],[74.602500915,31.886489868],[75.239166259,32.087150573],[75.330421448,32.331710816],[75.082626344,32.480045319],[74.698417663,32.484939576],[74.650138855,32.718410491],[74.466056824,32.781360626],[74.337921142,33.025939942],[74.014274597,33.198249816],[74.185081483,33.38351059],[73.966461181,33.740322114],[74.261123656,33.924797059],[73.898170471,34.032821656],[73.960220336,34.696681976],[74.302780151,34.797538757],[75.142295837,34.662410736],[75.749206544,34.515830994],[77.156822204,35.054698945],[77.843078681,35.500984191],[77.427276612,35.469039918],[76.76377106,35.66964722],[76.555427551,35.917655945],[76.16899109,35.83821869],[75.936798095,36.13394928],[76.053016663,36.237319947],[75.918869019,36.620479584],[75.72970581,36.746459962],[75.454498276,36.721614872],[75.410117907,36.934669294],[74.821594239,37.060298921],[74.571556,37.034439],[74.029205322,36.84624672],[73.832992554,36.909191133],[73.352516175,36.853221894],[72.656166077,36.849842072],[71.657035828,36.477924347],[71.614257812,36.321292877],[71.230941772,36.069679261],[71.571235657,35.721515656],[71.690170289,35.21439171],[71.525493623,34.960206986],[71.301200867,34.865463258],[71.006813049,34.461116791],[71.169471741,34.363609314],[71.076286317,34.062507629],[70.767936706,33.954856873],[69.914024352,34.023826599],[70.004165649,33.740234375],[70.155033112,33.725603104],[70.340229035,33.392023087],[70.155620575,33.197887421],[69.589210511,33.08392334],[69.240699768,32.461387635],[69.323501588,31.944173813],[69.11794281,31.703262329],[68.804939,31.609982],[68.570144654,31.827964783],[68.168876648,31.834236144],[67.710716247,31.50006485],[67.774806976,31.333582878],[67.306285859,31.182589531],[66.902275086,31.296169281],[66.389030456,30.837862969],[66.375152587,30.474360943],[66.241653442,30.055051803],[66.266502379,29.841995239],[65.097137451,29.542835236],[64.631927489,29.581081391],[64.26334381,29.503400803],[64.140842438,29.362118721],[63.664894105,29.476406098],[62.480146407,29.376457215],[60.89943695,29.837495804]]]},"properties":{"id":"000e1932-a25b-4594-8dd7-f8d3c032fd63","code":"PAK","name":"Pakistan","abbreviation":"C-PAK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.507431031,7.478404045],[134.595551,7.361945],[134.646941999,7.629722001],[134.507431031,7.478404045]]]},"properties":{"id":"69ee330e-c6c0-4ac2-a1c6-5bd436e395de","code":"PLW","name":"Palau","abbreviation":"C-PLW","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.475585937,31.488241196],[35.555721282,31.758476257],[35.55973053,32.390434265],[35.231681823,32.551567078],[34.968978883,32.214244843],[35.026138306,31.869983674],[35.23241806,31.787845613],[34.953735351,31.583011627],[34.913940429,31.349792481],[35.475585937,31.488241196]]],[[[34.268009186,31.22360611],[34.48902893,31.594427109],[34.229026794,31.334306718],[34.268009186,31.22360611]]]]},"properties":{"id":"e443cefa-3f44-4e80-96ac-343e886c2c7e","code":"PSE","name":"Palestine","abbreviation":"C-PSE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.360969999,8.656805998],[-77.546806,8.712638],[-78.044312,9.245484],[-78.575974,9.443472],[-78.902916,9.42239],[-79.621528626,9.617082595],[-79.917076,9.310421],[-80.495414733,9.11708355],[-80.824028014,8.895139695],[-81.200417,8.787083],[-81.519576999,8.808749001],[-81.769585,8.974861],[-82.108749,8.931806],[-82.564486279,9.563861842],[-82.827215754,9.611233373],[-82.934121815,9.475080306],[-82.934218992,9.078669025],[-82.712114414,8.923196914],[-82.915588679,8.741304354],[-82.831501585,8.505536173],[-83.047992464,8.341606032],[-82.892775475,8.050566224],[-82.829582215,8.29681015],[-82.269584657,8.290416718],[-81.804031,8.151528],[-81.541527,7.767084],[-81.203178,7.630969],[-81.06236267,7.825140001],[-80.888191,7.204306],[-80.437080384,7.241808891],[-80.049309,7.62903],[-80.488746643,8.16763878],[-79.958473205,8.462920189],[-79.740417,8.84903],[-79.285698,9.024581],[-78.911247,8.925418],[-78.527359,8.63682],[-78.49765,8.44819],[-78.156525,8.418194],[-78.261803001,8.112917001],[-78.447365,8.070138],[-78.29792,7.702639],[-77.88031,7.220541],[-77.794425964,7.451959134],[-77.524711608,7.568700791],[-77.13267517,7.98251772],[-77.442207,8.484901],[-77.360969999,8.656805998]]]},"properties":{"id":"c3274332-4368-4018-b380-7b2ace1e8a7f","code":"PAN","name":"Panama","abbreviation":"C-PAN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.006118775,-9.118924141],[141.621384,-9.211112],[142.213547,-9.145176],[142.638916,-9.333087],[143.419724,-8.963889],[143.401382,-8.753334],[142.98584,-8.336389],[143.698608,-8.226945],[143.446671,-8.028888],[143.863327,-8.047221],[143.820358,-7.713731],[144.142685,-7.798257],[144.215561,-7.614167],[144.446671,-7.581388],[144.535828,-7.398055],[144.903351,-7.774739],[145.759445,-7.960555],[146.072784,-8.095001],[146.564575,-8.776804],[146.638062,-9.03],[146.900558,-9.119167],[147.07666,-9.468333],[147.324997,-9.540834],[147.507781983,-9.857221604],[147.97171,-10.161418],[149.165222,-10.24671],[149.425369,-10.351243],[149.758698,-10.348827],[150.055954,-10.472265],[150.034576,-10.636217],[150.696106,-10.561388],[150.34227,-10.395868],[150.180115,-10.091977],[149.921951,-10.055001],[149.760025,-9.787259],[149.984924,-9.62624],[149.446793,-9.609564],[149.18222,-9.401666],[149.305252,-9.02335],[148.723618,-9.11],[148.526031,-9.002664],[148.437225,-8.680278],[148.224167,-8.559167],[148.131668,-8.063335],[147.697113,-7.922452],[147.664551,-7.791488],[147.14505,-7.380218],[146.962784,-6.748332],[147.810425,-6.692865],[147.852951,-6.432321],[147.444656,-5.966238],[146.997635,-5.937915],[146.474167,-5.614999999],[145.731949001,-5.4225],[145.805801,-4.847602],[145.318283,-4.383066],[145.007782,-4.330377],[144.856674,-4.113611],[144.55011,-3.970805],[144.519714,-3.809777],[144.013062,-3.822223],[143.449173,-3.421945],[142.861664,-3.327778],[142.07222,-3.061388],[141.204788,-2.63243],[141.000168,-2.6063],[141.000015259,-4.776979781],[141,-6.313278198],[140.858093,-6.780619],[141.019394,-6.889868],[140.993881,-7.329677],[141.006118775,-9.118924141]]],[[[152.160828,-4.295698],[151.490402,-4.21018],[151.685532,-4.865399],[151.357651,-4.906884],[151.082199,-5.152463],[150.905197,-5.482569],[150.675827,-5.545555],[150.412338,-5.438493],[150.150833,-5.550834],[150.022751,-5.280307],[149.857101,-5.519562],[149.209473,-5.554501],[148.414444,-5.443158],[148.365341,-5.749296],[148.745987,-5.862546],[149.065002,-6.140833],[149.473831,-6.103118],[149.610275,-6.291111],[150.367783,-6.278334],[150.788605,-6.021667],[151.219727,-5.91111],[151.499451,-5.68889],[151.473053,-5.521389],[151.815826,-5.586666],[152.134857,-5.337709],[151.972778,-4.972223],[152.217468,-4.971591],[152.365387,-4.768819],[152.398711999,-4.324057],[152.160828,-4.295698]]],[[[155.893326,-6.489167],[155.404449,-5.988056],[155.205826,-5.866945],[155.033203,-5.532979],[154.762497,-5.568333],[154.731949,-5.910556],[155.168106,-6.277014],[155.167816,-6.538515],[155.339996,-6.728518],[155.71106,-6.878052],[155.964996,-6.6875],[155.893326,-6.489167]]],[[[151.550552,-2.996112],[150.840836,-2.669999],[151.589432,-3.160207],[151.933334,-3.443335],[152.34523,-3.645538],[152.685562,-4.181438],[152.650482,-4.459479],[152.897873,-4.829925],[153.059906,-4.598902],[153.115479,-4.26938],[152.825577,-3.935708],[152.026642,-3.247354],[151.550552,-2.996112]]],[[[146.848053,-1.954722],[146.528641,-2.132802],[147.179367,-2.208265],[147.296112,-2.061944],[146.848053,-1.954722]]],[[[150.207809,-2.369684],[149.976227,-2.476986],[150.171097,-2.680707],[150.448883,-2.652222],[150.441681,-2.477538],[150.207809,-2.369684]]],[[[150.497772,-9.331389],[150.558594,-9.623934],[150.938843,-9.656934],[150.762497,-9.400278],[150.497772,-9.331389]]],[[[152.461945,-8.946944],[152.831665,-9.262499],[153.01445,-9.152499],[152.78299,-9.002505],[152.461945,-8.946944]]],[[[147.792679,-5.464552],[147.760666,-5.612632],[148.032791,-5.819355],[148.048035,-5.582787],[147.792679,-5.464552]]],[[[153.20813,-11.326152],[153.353333,-11.55361],[153.678406,-11.513248],[153.20813,-11.326152]]],[[[150.764862,-9.712469],[150.964493,-10.106643],[151.109726,-10.040833],[150.764862,-9.712469]]]]},"properties":{"id":"e8cb0f8e-6037-40d9-8194-80abab6e158f","code":"PNG","name":"Papua New Guinea","abbreviation":"C-PNG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.586296,16.083588],[112.558632,16.081541],[112.527435,16.068979],[112.565407,16.081676],[112.586296,16.083588]]]},"properties":{"id":"ba160f5d-1f85-4a47-b482-c4c8a9419ca2","code":"XPI","name":"Paracel Islands","abbreviation":"C-XPI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-54.595642089,-25.592119217],[-54.262443543,-24.374458313],[-54.283622743,-24.08297348],[-54.675334931,-23.8135643],[-55.230278015,-24.008590697],[-55.44090271,-23.909488678],[-55.534599305,-23.610954284],[-55.53881836,-23.16299057],[-55.682674409,-22.980436326],[-55.626670837,-22.6186409],[-55.860996247,-22.276325226],[-56.207736968,-22.278108597],[-56.402675628,-22.074739456],[-56.830467224,-22.297666549],[-57.98022461,-22.0855484],[-57.962818145,-21.549051285],[-57.818119049,-20.981237412],[-58.162684861,-20.160596096],[-58.235441178,-19.775484009],[-59.09957038,-19.349433196],[-59.9769183,-19.295172725],[-60.600998482,-19.45593368],[-61.735471105,-19.634178196],[-61.922404907,-20.089239513],[-62.266645605,-20.562743268],[-62.260665159,-21.058500007],[-62.642415671,-22.242894844],[-62.284908295,-22.491340637],[-61.989246368,-23.020784379],[-61.495021821,-23.415639877],[-61.091682434,-23.618074417],[-61.002472,-23.794147],[-60.32008,-24.048525],[-60.046623,-24.012133001],[-59.494984,-24.325085],[-59.352993,-24.484718001],[-58.654743,-24.833561],[-58.246482849,-24.933790206],[-57.787567138,-25.151655197],[-57.555946349,-25.444845199],[-57.815349579,-25.771087646],[-57.84935379,-26.006015777],[-58.115341187,-26.1532135],[-58.190357207,-26.644302367],[-58.662487031,-27.172166825],[-58.606578826,-27.295120239],[-58.243350983,-27.249126434],[-57.288253785,-27.421615601],[-56.833343506,-27.601108552],[-56.598140717,-27.445108414],[-56.364120483,-27.595844268],[-56.143482209,-27.312519074],[-55.725994111,-27.439798355],[-55.430381774,-27.005846023],[-54.814025879,-26.673847199],[-54.620338441,-26.217113494],[-54.674434661,-25.982574463],[-54.595642089,-25.592119217]]]},"properties":{"id":"58ba071e-9150-4210-9970-c66e84397b92","code":"PRY","name":"Paraguay","abbreviation":"C-PRY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.572290111,-10.949385104],[-69.934013366,-10.922180175],[-70.347877502,-11.067590714],[-70.627861022,-11.003930091],[-70.611862182,-9.456370353],[-70.998168944,-9.818079948],[-71.375862122,-10.00070858],[-72.180335999,-10.000248909],[-72.281906129,-9.542189597],[-72.716049195,-9.412429809],[-73.209396363,-9.413648606],[-72.940460206,-9.096088408],[-73.162261962,-8.707448006],[-73.528968811,-8.350530624],[-73.701927185,-7.760611056],[-73.989059448,-7.535899161],[-73.692649841,-7.313790798],[-73.795677186,-7.11358881],[-73.711921691,-6.842709064],[-73.226615905,-6.587059022],[-73.101905823,-6.402639865],[-73.245590209,-6.143589019],[-73.006256104,-5.730760096],[-72.859657287,-5.137629032],[-72.415100098,-4.900139809],[-71.78704834,-4.482439041],[-70.93385315,-4.380801201],[-70.802276612,-4.183669091],[-70.290817261,-4.161428928],[-69.949440002,-4.228428841],[-70.341461181,-3.810320138],[-70.698333739,-3.778891325],[-70.052902222,-2.76349306],[-70.227775574,-2.567085028],[-70.965286256,-2.211498736],[-71.389228821,-2.407346486],[-71.719032288,-2.174343825],[-71.919265746,-2.36468625],[-72.378677369,-2.484610319],[-72.595382691,-2.366598606],[-72.938217163,-2.452836037],[-73.119819641,-2.326871395],[-73.147605895,-1.804042936],[-73.538993835,-1.699926495],[-73.464942933,-1.589808464],[-73.618469239,-1.266004681],[-74.275863647,-0.97456342],[-74.249267578,-0.819948197],[-74.425308227,-0.498456061],[-74.795478821,-0.187000827],[-75.257133484,-0.117024026],[-75.538246154,-0.175718456],[-75.253631592,-0.519662023],[-75.187149047,-0.972799777],[-75.387115479,-0.931501925],[-75.554389953,-1.5439471],[-76.043251038,-2.124619483],[-76.692108155,-2.609971286],[-77.845581054,-2.998627901],[-78.246658325,-3.402604818],[-78.355674744,-3.403700112],[-78.411712647,-3.788740157],[-78.560699464,-3.985218286],[-78.706146239,-4.6240592],[-78.894172668,-4.885650158],[-79.265213012,-4.967052459],[-79.487182618,-4.528632163],[-79.795356751,-4.492056846],[-80.104293823,-4.291343211],[-80.452453613,-4.388850213],[-80.431625366,-3.990227221],[-80.159003999,-3.868496001],[-80.236023,-3.425933],[-80.494583,-3.499584],[-81.240135193,-4.250137805],[-81.32875061,-4.68319416],[-81.07708,-4.982916],[-81.196251,-5.209861],[-80.85202,-5.635451],[-81.088753,-6.088751],[-79.974304199,-6.760972976],[-79.686805725,-7.123748778],[-79.309028625,-7.926249028],[-78.988471984,-8.208193779],[-78.786529541,-8.563195229],[-78.362358,-9.624862],[-78.227386,-9.79514],[-78.164306641,-10.147082329],[-77.662086,-10.948472],[-77.643470763,-11.304027558],[-77.366806,-11.459026],[-77.17124939,-11.733471871],[-77.135696,-12.069861],[-76.835693359,-12.317917823],[-76.803474426,-12.506250381],[-76.522362,-12.846527],[-76.490974426,-13.030692101],[-76.23097229,-13.344305991],[-76.185974121,-13.576805114],[-76.25263977,-14.151805878],[-75.97403,-14.471528],[-75.917641,-14.660694],[-75.49597168,-14.930137635],[-75.186531067,-15.354862212],[-74.053192138,-15.952916146],[-73.700141907,-16.21875],[-73.303474426,-16.347639083],[-72.767639,-16.63125],[-72.446807861,-16.70513916],[-71.806251525,-17.188749314],[-71.47264099,-17.298194885],[-71.373192,-17.680695],[-70.378163256,-18.350860664],[-69.965903027,-18.262184056],[-69.750244721,-17.947341111],[-69.822570801,-17.685899733],[-69.468683249,-17.498589528],[-69.641725,-17.286869445],[-69.04381004,-16.688458262],[-68.959245123,-16.196491272],[-69.197731,-16.16449],[-69.401803,-15.606112],[-69.133278641,-15.222435145],[-69.285500317,-15.096910707],[-69.352312565,-14.801012166],[-69.226150512,-14.736579895],[-68.846679746,-14.237351286],[-68.979464007,-13.974804392],[-68.993478122,-13.651170541],[-68.852226841,-13.210676813],[-68.86907566,-12.867147652],[-68.656689167,-12.489146945],[-68.969980785,-11.91249812],[-69.572290111,-10.949385104]]]},"properties":{"id":"3c7cab6e-aa49-4664-9192-1e3cab4738e4","code":"PER","name":"Peru","abbreviation":"C-PER","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.082359,12.55146],[124.141937257,12.933059692],[123.754631043,13.176759721],[123.586082458,13.729330064],[123.938179,13.79621],[123.083946228,13.981699943],[122.848808289,14.28057003],[122.510147,14.34456],[122.164612001,14.140730001],[122.23261261,13.895560264],[121.729377746,14.178739548],[121.603996276,14.652609826],[121.733802796,14.69367981],[121.373367309,15.336930275],[121.639542,15.70584],[121.554809571,15.898360253],[121.759521484,16.076919556],[122.236656189,16.313329696],[122.199531555,16.434970856],[122.434173585,16.79693985],[122.528893,17.098061],[122.256897,17.35675],[122.16443634,17.604719162],[122.165412903,18.070890427],[122.335281,18.30694],[122.238357544,18.513299942],[122.004447938,18.284999847],[121.611259461,18.36833954],[121.096832,18.626381],[120.5625,18.492500305],[120.601387024,18.364999771],[120.351387024,17.548889161],[120.460281372,17.407499313],[120.445800781,16.976060868],[120.303611756,16.503429414],[120.425231934,16.171670913],[120.223609924,16.034719468],[119.778893001,16.308888999],[120.082779,14.78722],[120.611366,14.50873],[120.556388855,14.814490319],[120.826393,14.755560001],[120.980972291,14.572970391],[120.581108,14.17222],[120.744163512,13.936109544],[121.285957337,13.596899986],[121.715622,13.96993],[122.403793336,13.519989967],[122.503089904,13.245869637],[122.702949524,13.224100112],[122.497100831,13.647660255],[122.535186768,13.963749886],[122.975456239,13.521309854],[123.199920654,13.419400216],[123.406547547,13.045949936],[123.83027649,12.828060151],[124.082359,12.55146]]],[[[125.314163209,5.572500229],[125.686393739,5.97138977],[125.589752198,6.489820004],[125.373123169,6.727000238],[125.648361207,7.237679958],[125.819794,7.36644],[126.0858078,6.804729938],[126.445747376,7.018889905],[126.566589356,7.287759782],[126.552147,7.69882],[126.360527,7.88291],[126.441169739,8.09465027],[126.361038,8.5446],[126.123611449,8.54360962],[126.307540893,8.956549645],[125.860558,9.53472],[125.392219544,9.647780418],[125.535003662,9.080280303],[125.211669921,9.094169617],[125.167358397,8.852410318],[124.77166748,8.96555996],[124.699172973,8.472780229],[124.453613282,8.624719621],[124.311668395,8.536109924],[124.231391906,8.220279694],[123.86453247,8.157420159],[123.689743042,8.64023018],[123.436149597,8.715769768],[123.273857117,8.512000084],[123.076980591,8.517499924],[122.906936646,8.144169808],[122.359443665,8.042779922],[122.087219239,7.740829945],[122.139022827,7.562270165],[121.922271728,6.989659786],[122.181663512,6.94860983],[122.362052918,7.47412014],[122.543457031,7.734350204],[122.810959,7.74736],[122.798447,7.54577],[123.162696838,7.489930153],[123.405609131,7.35766983],[123.420280456,7.774439812],[123.534156799,7.846389771],[124.011672973,7.647500039],[124.250831604,7.401390076],[123.95665741,6.893889903],[124.040557861,6.423610211],[124.325141907,6.113609792],[125.174453735,5.797780038],[125.314163209,5.572500229]]],[[[123.033607484,9.049510002],[123.313163758,9.318849565],[123.107498169,9.628890038],[123.358047484,10.441940307],[123.568031001,10.79294],[123.493134,10.93632],[123.194999694,11.003609657],[122.95361328,10.895830154],[122.79548645,10.522649764],[122.862701,10.10505],[122.450546264,9.976110459],[122.379997253,9.710559845],[122.553337096,9.473329544],[122.81111145,9.357780457],[123.033607484,9.049510002]]],[[[125.741111755,11.016389848],[125.47264099,11.544890403],[125.423606872,11.930279732],[125.506111146,12.20611],[125.291656494,12.468330384],[125.03527832,12.585559845],[124.734718322,12.514630317],[124.260932923,12.549249649],[124.389663697,12.195899964],[124.649932861,12.043049812],[124.918769836,11.742509843],[124.94718933,11.571680069],[124.832069396,11.476039887],[124.986656,11.41611],[125.00026703,11.269439698],[125.151390076,11.274169922],[125.294441222,11.140830039],[125.741111755,11.016389848]]],[[[122.174720764,10.610280038],[122.581481933,10.687330246],[122.760002,10.94694],[123.094169617,11.223890304],[123.145553589,11.588060379],[122.565826416,11.566940309],[122.384613037,11.725720406],[122.094436645,11.71582985],[122.053886414,11.032219887],[121.924339294,10.759710312],[121.961029053,10.413390159],[122.174720764,10.610280038]]],[[[117.237541,8.36831],[118.003166199,8.88010025],[118.124198913,9.14470005],[118.344169617,9.177780152],[118.76222229,9.683609962],[118.756943,9.92861],[119.206947327,10.055279731],[119.373229981,10.3457098],[119.718887329,10.517780304],[119.48487091,10.87302971],[119.568237304,11.29226017],[119.431107,11.34528],[119.459457397,10.727029801],[119.17749,10.41362],[118.806427001,10.193039894],[118.475830077,9.732780456],[118.01358,9.24228],[117.90667,9.26139],[117.367996001,8.74718],[117.237541,8.36831]]],[[[120.934196,12.59213],[121.138046,12.25611],[121.394996642,12.285829545],[121.552223,12.62583],[121.53515625,13.139780046],[121.193588,13.424388],[120.41455841,13.531189919],[120.530830383,13.227219581],[120.736076355,13.057600022],[120.796302795,12.723730088],[120.934196,12.59213]]],[[[124.980659484,10.037010193],[125.024719238,10.368330003],[125.249183654,10.254759789],[125.183891297,10.595000267],[125.014167786,10.746669769],[125.039169311,11.068610192],[125.003829957,11.253569604],[124.96476,11.27277],[124.97844696,11.399539947],[124.814148,11.43163],[124.585067749,11.305100442],[124.315002441,11.563610078],[124.390556335,11.291939735],[124.375427,10.9231],[124.59111786,11.014149666],[124.79322052,10.73235035],[124.753387451,10.187509537],[124.980659484,10.037010193]]],[[[123.443641663,9.536669732],[123.76802063,10.226940155],[124.020759583,10.382390022],[124.035476685,11.148489953],[123.667648315,10.41425991],[123.366333008,9.945949555],[123.300331115,9.515319824],[123.443641663,9.536669732]]],[[[124.09879303,9.589759827],[124.569702149,9.731719972],[124.569443,9.99667],[124.152450562,10.153579712],[123.804740906,9.837490083],[123.871971131,9.627619744],[124.09879303,9.589759827]]],[[[123.31276703,12.052220344],[123.540000915,12.212499619],[123.74582672,11.921669961],[124.069946,11.85355],[123.872779847,12.222220422],[123.449172974,12.514719963],[123.287781,12.42111],[123.141670227,11.929719926],[123.31276703,12.052220344]]],[[[124.330566,13.56167],[124.421173096,13.846579551],[124.208129999,14.09895],[124.023399352,13.663390159],[124.330566,13.56167]]],[[[122.044724,6.41361],[122.212219239,6.578889847],[122.013679505,6.746200085],[121.795883,6.60052],[122.044724,6.41361]]],[[[120.334717,12.02056],[119.880287171,12.327839851],[119.978889,12.00861],[120.334717,12.02056]]],[[[122.012779236,12.100279808],[122.121109,12.666939999],[121.921669007,12.318610191],[122.012779236,12.100279808]]],[[[121.929397584,14.631950378],[121.99778,15.04444],[121.837898254,15.039620399],[121.929397584,14.631950378]]],[[[121.914016723,13.265580178],[122.124282836,13.460949898],[121.86567688,13.526479721],[121.914016723,13.265580178]]],[[[125.704437257,9.876110078],[125.643837,10.18498],[125.482567,10.1028],[125.704437257,9.876110078]]]]},"properties":{"id":"f2c760bd-0f2e-466f-ae48-64cf2504f5f0","code":"PHL","name":"Philippines","abbreviation":"C-PHL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-128.305756,-24.342447],[-128.356888,-24.362972],[-128.291489,-24.418861],[-128.305756,-24.342447]]]},"properties":{"id":"acca3607-3519-4889-81be-28c2be1289a9","code":"PCN","name":"Pitcairn Islands","abbreviation":"C-PCN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.514919001,53.955994],[23.337519,54.251724],[22.787775041,54.363601684],[21.440334321,54.322387695],[19.803611755,54.442424775],[19.180257798,54.351047515],[18.58037567,54.437705994],[18.423324586,54.788673402],[17.967777252,54.832305909],[17.243352891,54.729930877],[16.529882431,54.540683747],[16.204683304,54.315219879],[15.286024094,54.147052766],[14.344528,53.911945],[14.22636401,53.928805997],[14.449595452,53.259456634],[14.130087853,52.828315736],[14.639436721,52.568908691],[14.53459072,52.39842987],[14.758355141,52.067401886],[14.590989113,51.819900513],[14.73576355,51.525955201],[14.922353745,51.482257843],[15.037851333,51.243991851],[14.82269392,50.871021201],[15.236557961,50.99866867],[15.376022339,50.82126999],[16.180171966,50.62851715],[16.34308052,50.661506654],[16.360765458,50.37946701],[16.706027985,50.09658432],[17.018518448,50.235725402],[16.907901764,50.449447632],[17.604438781,50.170928956],[17.868484497,49.972496032],[18.572908402,49.921623231],[18.850496293,49.51858139],[19.197399139,49.41456604],[19.467376709,49.613761902],[19.767303466,49.206016541],[20.075502396,49.178764343],[20.192207337,49.341156006],[20.739860535,49.417110442],[20.925634385,49.296051025],[21.124021531,49.436580657],[21.63094139,49.447307587],[22.04066658,49.2251091],[22.567663194,49.088626862],[22.734502792,49.211853027],[22.640830993,49.529991149],[23.279327392,50.086288452],[23.766684,50.413635],[23.997543,50.41214],[24.107311248,50.838729858],[23.635988235,51.31881714],[23.624755996,51.514190675],[23.558965683,51.761566162],[23.640176774,52.085796357],[23.21557808,52.329654694],[23.466627121,52.549446106],[23.931631088,52.708972931],[23.915153504,53.162281036],[23.549049378,53.767780304],[23.514919001,53.955994]]]},"properties":{"id":"28ed4ee7-150c-4599-be87-217ce14a42d9","code":"POL","name":"Poland","abbreviation":"C-POL","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.873302459,41.869888305],[-8.644305228,41.017433167],[-9.075139999,39.588470459],[-9.364860535,39.348194123],[-9.486052,38.707886],[-9.105258941,38.729610444],[-9.22012,38.412624],[-8.887047768,38.521755219],[-8.777916909,38.19430542],[-8.785672188,37.532802582],[-8.994803,37.024105],[-8.614027024,37.122638702],[-8.184753419,37.090560914],[-7.887083,36.981529],[-7.403612138,37.177665711],[-7.508997916,37.523159028],[-7.245584965,37.991802216],[-7.002025127,38.022396087],[-7.317526817,38.440353394],[-7.260046005,38.722942352],[-6.951142788,39.023593902],[-7.144035817,39.108627319],[-7.294268131,39.456821443],[-7.499413014,39.589603425],[-7.015522957,39.6704216],[-6.866662979,40.015232087],[-7.012691975,40.225448608],[-6.78121519,40.36379242],[-6.859950065,40.950763703],[-6.64836502,41.24753952],[-6.437616825,41.305305481],[-6.189142226,41.574813843],[-6.548253059,41.685581208],[-6.599432945,41.948291779],[-7.076929092,41.951931],[-7.427977085,41.808166505],[-7.733328818,41.892276764],[-8.164990425,41.818115234],[-8.196352005,42.152729034],[-8.526394843,42.077056885],[-8.873302459,41.869888305]]],[[[-17.245393999,32.785526],[-16.822495,32.648018],[-16.900581088,32.834461053],[-17.245393999,32.785526]]],[[[-25.632042,37.747253],[-25.150135039,37.757431031],[-25.174343109,37.857250213],[-25.632042,37.747253]]]]},"properties":{"id":"0479cd62-b5b8-49a9-b0de-10267685a733","code":"PRT","name":"Portugal","abbreviation":"C-PRT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-66.022087096,17.977361679],[-65.830139159,18.019027711],[-65.619308,18.365973],[-65.904861,18.453194],[-67.090698243,18.515972138],[-67.270416259,18.366527557],[-67.105698,17.945415],[-66.022087096,17.977361679]]]},"properties":{"id":"b3b0315f-de54-4337-b22d-022c2cc8b4cf","code":"PRI","name":"Puerto Rico","abbreviation":"C-PRI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[51.113519,24.472111],[51.301926,24.506807],[51.629307,25.020969],[51.493473053,25.599027634],[51.579304,25.914305],[51.262917,26.155695],[51.039028,26.040138],[50.749863,25.424864],[50.858196,24.902363],[50.804335,24.743569],[51.113519,24.472111]]]},"properties":{"id":"d7a5c518-71b8-4d92-b05a-1d6a8421fbe4","code":"QAT","name":"Qatar","abbreviation":"C-QAT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.104763032,-4.648590087],[13.427568436,-4.88245964],[13.690182687,-4.768346786],[13.819194795,-4.422533989],[14.313832283,-4.31740141],[14.412021637,-4.893554688],[14.687930108,-4.9175601],[15.194307327,-4.347605228],[15.415301322,-4.296506881],[15.556356429,-4.048159598],[15.900524139,-3.951448679],[16.187095643,-3.395443915],[16.184278488,-2.382886887],[16.24200058,-2.122999907],[16.589008331,-1.745197058],[16.846000671,-1.263999939],[17.341194153,-0.990492999],[17.700065612,-0.567604006],[17.714000702,-0.128000065],[17.962598801,0.408499987],[17.850116731,1.012439013],[18.067958831,1.521394849],[18.106023788,2.266630888],[18.429136276,2.76823306],[18.641740798,3.208940029],[18.63500023,3.471093416],[18.490898132,3.651686906],[18.123521805,3.566071034],[17.606319427,3.641251087],[16.596540451,3.477276088],[16.520128251,2.842302084],[16.189256826,2.224806177],[16.053611755,2.008360148],[16.149131774,1.694233536],[15.748046874,1.919481636],[15.248477937,2.027805066],[15.048355,1.976952],[14.597784042,2.203109742],[13.299013137,2.170983554],[13.161886216,1.901365995],[13.133171081,1.583217024],[13.313282013,1.225219011],[13.813871383,1.428683997],[14.278985978,1.34119296],[14.48871231,0.825231016],[14.119593621,0.558323026],[13.888682366,0.202671007],[13.895365714,-0.212170004],[14.400787353,-0.477086007],[14.498720169,-0.680893004],[14.410247803,-0.908969998],[14.501670838,-1.425276994],[14.398568154,-1.875691056],[14.156409264,-2.194279909],[14.102894784,-2.473965883],[13.922572136,-2.464971066],[13.748804092,-2.120312928],[13.506067277,-2.429549932],[13.040926933,-2.333771943],[12.74332714,-1.868949055],[12.444073677,-1.874595046],[12.519983292,-2.086726904],[12.468323707,-2.421263933],[11.775189399,-2.456491947],[11.616085053,-2.784224986],[12.066580773,-2.969432115],[11.947383881,-3.171828031],[12.045451164,-3.352566003],[11.884313583,-3.747391939],[11.529373168,-3.512758017],[11.249577,-3.718149],[11.200858,-3.990695],[11.826251,-4.612083],[12.012652398,-5.028289555],[12.462395669,-4.596130848],[12.723011016,-4.426958084],[13.104763032,-4.648590087]]]},"properties":{"id":"65ee9773-a59f-4d9a-b3a9-9f118c3bac18","code":"COG","name":"Republic of the Congo","abbreviation":"C-COG","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[28.579860686,43.740417481],[28.667917252,43.987640381],[28.647361754,44.332359314],[29.116528,44.764027],[29.616806,44.864029],[29.655805587,45.216060639],[29.6526165,45.339988709],[29.251850128,45.435325623],[28.720420838,45.224594116],[28.351459503,45.320152282],[28.214229823,45.466758923],[28.090349,46.059769],[28.236099243,46.681240081],[28.097082138,46.979564668],[27.801059722,47.142501831],[27.27690506,47.687496186],[27.179763794,47.94707489],[26.808113098,48.254699707],[26.631242753,48.2574234],[26.336137772,48.184467316],[26.189668656,47.995712281],[25.31250763,47.9145813],[24.884765624,47.724624634],[24.625005722,47.952026367],[24.220169,47.897835],[23.182813644,48.117553711],[22.904510498,47.957382203],[22.6818676,47.788032532],[22.266178132,47.731449128],[22.0256958,47.52017212],[21.530939102,46.721061707],[21.331487655,46.631893159],[21.171640395,46.298370361],[20.875003815,46.287754058],[20.635412215,46.127063751],[20.265501022,46.124713898],[20.349887848,46.000003814],[20.804250717,45.738155364],[20.834533691,45.480304719],[21.018157958,45.325023652],[21.484310151,45.192481994],[21.457685471,45.040779113],[21.642705916,44.659656524],[21.991159439,44.634048462],[22.181060791,44.479679108],[22.462968826,44.715568544],[22.764814377,44.540554048],[22.475465774,44.480968476],[22.680921891,44.212676857],[22.937503814,44.100097656],[22.868034362,43.838653565],[23.416744231,43.853130341],[24.174860001,43.682941436],[24.499534607,43.761753082],[25.000005722,43.727603913],[25.391643524,43.61933136],[25.781484604,43.710597992],[26.113164901,43.972503662],[26.899950027,44.131538392],[27.272911071,44.126605988],[27.400905609,44.012645721],[27.945737839,43.985065461],[27.99568367,43.843154908],[28.579860686,43.740417481]]]},"properties":{"id":"72c525e3-e850-4f8a-8473-90754eeff8ea","code":"ROU","name":"Romania","abbreviation":"C-ROU","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.505107879,41.864120484],[48.371982575,41.911006927],[48.072212218,42.339176178],[47.715496063,42.683696747],[47.707035064,42.878929138],[47.46616745,43.015335082],[47.474765777,43.388343811],[47.721809386,43.858303071],[47.525112152,43.835979462],[47.112876892,44.211730957],[46.993804932,44.438549043],[46.782440186,44.482982635],[46.915401459,44.821502685],[47.115840911,44.788352967],[47.546447754,45.205715179],[47.690681458,45.712604522],[47.874942779,45.569210052],[48.238803864,45.60303116],[48.589038849,45.921451568],[48.778842926,45.77584076],[49.202659608,46.209423065],[49.163757325,46.361011506],[48.480705,46.657673],[49.005325,46.767155],[48.78133,47.010876],[48.607757568,47.414466857],[48.380716676,47.433582129],[48.058250427,47.760650634],[47.406677247,47.812576295],[47.174313,47.760746],[47.017651,48],[47.097595216,48.211013795],[46.491855621,48.443012237],[46.778491973,48.938533784],[47.052845001,49.164913177],[46.782657623,49.332653047],[46.892875671,49.839294433],[47.224128723,49.966365815],[47.319606782,50.331794739],[47.551460266,50.462715149],[47.816562653,50.331314086],[48.348060607,49.828926087],[48.734996796,49.926750183],[48.761886596,50.101909639],[48.632793427,50.662883758],[48.824748994,50.600337982],[49.092971803,50.783470154],[49.410907746,50.858425141],[49.420497895,51.12958908],[49.735996247,51.114719391],[50.36763382,51.340312957],[50.56764984,51.642440797],[51.266777038,51.689735413],[51.275642396,51.500308992],[51.793949126,51.530666352],[51.857337951,51.683288574],[52.328147888,51.76607132],[52.545627594,51.467365265],[53.378768922,51.514003754],[53.659057616,51.241256715],[54.129528045,51.118804932],[54.443283082,50.872009278],[54.508094787,50.540035249],[54.728641511,50.634586335],[54.706298829,50.894241334],[55.069023131,50.820140839],[55.663722991,50.572235108],[56.138401031,50.771224975],[56.210704804,50.937343597],[56.497066498,51.088077545],[57.183509827,51.095264434],[57.426898957,50.895694733],[57.731479644,50.930778504],[57.754291534,51.129745483],[58.545825959,51.075065613],[58.598819732,50.826702117],[58.883399963,50.709072113],[59.484378814,50.656082154],[59.531326294,50.514469146],[59.832714081,50.584293366],[60.069004059,50.865581512],[60.354919434,50.679359435],[60.82793045,50.660999298],[61.450839996,50.807315826],[61.57982254,51.232040406],[61.510490418,51.413852693],[61.002735138,51.465114593],[60.905143738,51.614124298],[60.598567962,51.615192413],[60.522563935,51.782234193],[60.059509277,51.983501434],[60.721912384,52.16866684],[61.071880341,52.337680818],[60.825820923,52.762458802],[61.236839295,53.031814575],[61.657840728,52.960647582],[62.137271881,53.005737305],[62.110614777,53.116798402],[61.182743073,53.296154022],[61.257511139,53.503433227],[60.915958404,53.616710662],[61.218322753,53.815872192],[61.306427001,54.073474884],[61.949588777,53.945785523],[62.088390351,54.057872772],[62.437507996,54.055069],[62.531342,53.900391001],[62.816135,54.115837],[63.880405426,54.28585434],[64.977943421,54.419624329],[65.501312256,54.651184082],[66.020050048,54.618091584],[67.301628112,54.859153747],[68.201416015,54.957935334],[68.1769104,55.182292939],[68.61743927,55.188999176],[68.724693298,55.340278625],[69.668045043,55.3429451],[70.217918397,55.133277893],[70.820190429,55.297958374],[71.01499939,55.072921754],[71.136878967,54.708236695],[71.210388184,54.11090088],[71.746566773,54.138534547],[72.263275146,54.320018769],[72.418136598,54.149536133],[72.37752533,53.953296662],[72.722053529,53.949485779],[72.600944519,54.134002685],[72.981140137,54.098300934],[73.084388733,53.990512848],[73.511665345,53.951465606],[73.245964049,53.575260163],[73.448959351,53.444801332],[73.903366089,53.648433686],[74.242156982,53.593765259],[74.803153993,53.815925598],[75.016845704,53.784523011],[75.600860595,54.105052948],[76.347198486,54.330379487],[76.86203003,54.353019715],[76.748634339,54.160350799],[76.426696778,54.168167115],[76.583824159,53.967754364],[77.570335388,53.480957031],[77.911514283,53.278541566],[78.249931336,52.954257965],[79.074035645,52.041656494],[80.068260192,50.768203736],[80.468841553,50.974452973],[80.440895081,51.20583725],[80.671470643,51.308059693],[81.144691468,51.201690674],[81.061470033,50.959373474],[81.390983581,50.996295929],[81.449348449,50.762870789],[81.862052918,50.821155547],[82.1199646,50.751029969],[82.548309325,50.769207001],[82.76071167,50.950439453],[83.119659423,51.035377503],[83.811912537,50.884899139],[84.218879699,50.532268525],[84.262550353,50.269672395],[84.998016357,50.056076051],[85.212295532,49.626808166],[85.931335449,49.55242157],[86.160621643,49.462154388],[86.623611451,49.773181915],[86.902008056,49.350772858],[87.268363953,49.216480256],[87.312576295,49.099693298],[87.832260132,49.175006867],[87.994293213,49.186321258],[88.223335265,49.489871979],[88.650024414,49.520069122],[88.852722168,49.450073242],[89.681831359,49.709709168],[89.620727539,49.973991395],[90.274085999,50.018138886],[90.662528992,50.163562775],[90.737731933,50.487930298],[91.44431305,50.465400697],[91.83609,50.734692],[92.19577012,50.684822066],[92.325317,50.886372],[92.748024,50.709347],[93.03299,50.762951],[93.104125976,50.566894532],[94.223670959,50.58272171],[94.398925781,50.23413086],[94.608818054,50.038711548],[94.964225768,50.061710358],[95.129554748,49.948928833],[95.47781372,49.922348022],[96.302124024,49.987121582],[96.453681946,49.901294708],[97.002983093,49.914520263],[97.316200257,49.75738907],[98.116180001,50.103947001],[98.324486,50.538971],[98.132652283,50.59640503],[97.867279,50.949818],[97.944885255,51.322875977],[98.234313965,51.462280275],[98.315307617,51.717895508],[98.696296693,51.820365907],[98.953674316,52.147888184],[99.294784545,51.975227356],[99.770606994,51.881752014],[99.993530273,51.753295899],[100.515640259,51.750377655],[101.258636475,51.539417267],[101.392089843,51.455402375],[102.068778992,51.397094728],[102.354049682,50.726699829],[102.320617676,50.584091186],[102.98071289,50.304321289],[103.690460206,50.137237549],[104.061096191,50.15447998],[104.405113221,50.304992675],[105.151931762,50.400051117],[105.387695312,50.479309081],[106.080101013,50.393844604],[106.279296874,50.295722961],[106.567321778,50.347106934],[106.924499513,50.247497559],[107.130737305,50.02691269],[107.937965393,49.925693512],[108.02533,49.615295],[108.555587999,49.334319999],[109.329101999,49.341491999],[109.539673,49.226074],[110.234123,49.165123],[110.399475098,49.258483887],[110.766296,49.145081],[111.392272949,49.37310791],[111.934509,49.395508],[112.513168334,49.546485902],[112.716309,49.49184],[113.087524,49.608276],[113.230262756,49.834945679],[113.795715333,50.094085694],[114.349037171,50.282894135],[115.004051209,50.177375793],[115.37463379,49.9078331],[115.720947265,49.884578705],[116.20514679,50.031681061],[116.700271606,49.839855194],[117.274269103,49.631549836],[117.842033386,49.506931306],[118.670799256,49.948379517],[119.197486878,50.012088775],[119.363807677,50.174949646],[119.183746337,50.345920563],[119.273490905,50.601753236],[119.987373352,51.452690125],[120.09249878,51.677181245],[120.652030945,51.934108734],[120.756332397,52.244480133],[120.719650268,52.528789521],[120.45249176,52.641300203],[120.061210632,52.584072114],[120.027206421,52.772190094],[120.876716613,53.287033081],[121.218490601,53.281291962],[122.329620361,53.497322083],[122.833541871,53.452903749],[123.257019043,53.56085968],[123.844421388,53.48871994],[124.375488281,53.246181487],[124.833045959,53.132690429],[125.188209534,53.191589356],[125.579658507,53.080730439],[125.967697143,52.760829926],[125.970428466,52.656791686],[126.343681336,52.395950318],[126.30267334,52.22328186],[126.549950174,52.130171937],[126.469207763,51.935310363],[126.979865964,51.307769913],[126.922851563,51.057998658],[127.111816406,50.933872224],[127.359352112,50.583278656],[127.368797302,50.293159486],[127.571479798,50.242759704],[127.515129089,49.834640503],[127.802421569,49.591247559],[128.260894775,49.499950409],[128.392028808,49.588878631],[128.797241211,49.562969207],[129.118133545,49.348709107],[129.520965576,49.411891938],[129.906417846,49.05399704],[130.257476806,48.861846923],[130.636672973,48.814239502],[130.525421142,48.638519288],[130.825531005,48.30009079],[130.652053833,48.109340668],[130.954193114,47.720272065],[131.500991822,47.727760315],[131.579559326,47.660648346],[132.504821778,47.711250305],[133.16029358,48.105701446],[133.468154907,48.06760025],[134.389266969,48.385704041],[134.711837769,48.275814057],[134.550552369,48.024398803],[134.771560668,47.75345993],[134.493530272,47.44380951],[134.149093627,47.259510041],[133.913009644,46.581459046],[133.908493043,46.271591188],[133.463882446,45.828979492],[133.476119995,45.654418945],[133.215194703,45.509113311],[133.135559081,45.127109528],[132.851974488,45.055690767],[132.560577393,44.555042267],[132.111618042,44.740684509],[132.18359375,44.95685196],[132.05859375,45.235588074],[131.826782226,45.308731079],[131.469848632,44.959480286],[130.954223633,44.854160308],[131.102661133,44.691558839],[131.29310608,44.07970047],[131.200576782,43.518459321],[131.305755618,43.392730724],[131.029602031,42.863281238],[130.789154053,42.864345552],[130.405136108,42.722320557],[130.623031616,42.622673035],[130.614608676,42.42395806],[130.674393,42.284584],[130.847076,42.505417],[130.722916,42.702084],[131.080978,42.637638],[131.760696,43.233196],[132.291534423,43.288471221],[132.298187,42.866806],[132.437912,42.935139],[133.230698,42.751804],[133.894867,42.867916],[134.175415,43.064861],[135.135422,43.50153],[135.503189,43.849304],[135.528793,44.007278],[135.880325317,44.412231445],[136.150115966,44.496025086],[136.242202759,44.675735475],[136.800003052,45.196487427],[137.137954713,45.374702453],[137.358078003,45.611133575],[137.686477661,45.808692932],[138.108886718,46.245834351],[138.167221069,46.4347229],[138.603881835,47.075000763],[139.052719,47.408043],[139.264816,47.802357],[140.166519,48.44146],[140.192978,48.75893],[140.361694,48.919968],[140.31105,49.202229],[140.547318,49.56493],[140.398682,49.876091],[140.687851,50.089855],[140.502701,50.166245],[140.417221,50.554722],[140.498337,50.867779],[140.641052,50.951969],[140.671326,51.326893],[140.963898,51.66584],[141.421875,51.953197],[141.38504,52.222366],[141.116776,52.410492],[141.265686,52.589321],[141.188217,52.855835],[140.960205,52.934475],[141.443893,53.1525],[140.942215,53.499722],[140.550552,53.644444],[140.253326,53.873611],[140.199997,54.054245],[139.784225,54.291496],[139.318619,54.176987],[138.727386,54.306786],[138.769409,53.980762],[138.491669,53.53611],[138.272217,53.511944],[138.574448,53.810001],[137.951111,53.581112],[137.311661,53.533611],[137.765549,53.950832],[137.43074,54.038372],[137.740555,54.311943],[137.453064,54.313568],[137.116058,54.166412],[137.298019,54.04266],[137.195557,53.848057],[136.71373,53.791428],[136.75415,54.427612],[136.829437,54.642776],[135.71666,54.573891],[135.260559,54.737221],[135.182785,54.864445],[135.597092,55.108089],[135.860382,55.172558],[136.540558,55.582222],[137.564484,56.10585],[138.610001,56.954445],[138.903656,57.03046],[139.186111,57.272221],[139.790756,57.483852],[139.992783,57.697224],[140.490311,57.842163],[140.772903,58.300308],[141.678894,58.68],[141.96167,58.945],[142.422226,59.188057],[143.210831,59.355484],[143.481949,59.318367],[143.875504,59.400448],[145.029449,59.371944],[145.967773,59.406944],[145.82991,59.241714],[146.050049,59.141769],[146.303665,59.185715],[146.443268,59.462395],[146.781921,59.372066],[147.797272,59.261845],[147.883347,59.385826],[148.399811,59.376167],[148.413162,59.254543],[148.841919,59.2799],[148.712784,59.453888],[149.164597,59.484509],[149.058105,59.623154],[149.588531,59.758198],[150.893967,59.551411],[151.405045,59.605206],[152.11496,59.150661],[151.432373,59.164539],[151.173889,59.086113],[151.361862,58.856052],[152.064438,58.888268],[152.408875,59.024334],[152.913315,58.915833],[153.016113,59.066666],[153.338333,59.088333],[153.387833,59.248363],[153.839951,59.168602],[154.051666,59.048054],[154.48555,59.220554],[155.18219,59.174129],[155.011734,59.478317],[154.413681,59.551075],[154.22319,59.87402],[154.804688,60.293228],[155.81459,60.729168],[156.044266,60.972393],[156.659897,61.206772],[156.669266,61.515106],[157.49791,61.789585],[158.039063,61.73177],[158.254166,61.822918],[158.841141,61.819271],[159.202087,61.918751],[159.538025,61.801559],[159.529678,61.667191],[159.875,61.704166],[160.362503,61.9375],[160.389587,61.756248],[159.910416,61.258335],[160.09584,61.016666],[160.445831,61.035416],[160.181763,60.819271],[160.15625,60.662498],[160.780731,60.724476],[160.913025,60.899479],[161.395828,61.15625],[161.985413,61.372917],[162.425003,61.672916],[162.847916,61.708332],[163.010422,61.514584],[163.25,61.733334],[162.998428,61.781769],[163.141663,62.002083],[163.077606,62.222393],[163.277603,62.526566],[164.375519,62.691143],[164.611984,62.680729],[164.735413,62.456249],[164.156769,62.274479],[164.055725,61.684898],[163.752609,61.45052],[163.978653,61.416149],[163.920319,61.213024],[163.617188,61.108856],[163.702087,60.891666],[162.892181,60.747398],[162.770309,60.631771],[161.949997,60.420834],[161.943237,60.227604],[161.492187,60.039062],[160.853409,59.609299],[160.496017,59.556122],[160.412781,59.397499],[159.86496,59.132198],[159.73056,58.866112],[159.024841,58.403049],[158.321945,58.070518],[157.902222,57.977501],[157.677216,58.017223],[157.526108,57.821388],[156.849442,57.798054],[157.000549,57.433475],[156.687775,57.057499],[156.114441,56.807499],[155.947784,56.611111],[155.650513,55.96693],[155.557220459,55.197223664],[155.73500061,54.433887482],[155.980560303,53.694999696],[156.128326415,52.915554047],[156.4659729,52.13974762],[156.539123535,51.303520203],[156.767227173,50.994167327],[157.23436,51.209],[157.504074,51.455009],[157.903885,51.641666],[158.569229,52.380447],[158.42128,53.016804],[158.705566,52.884422],[158.901108,53.021111],[159.629944,53.256237],[160.023895,53.095001],[159.846619,53.400959],[159.956131,53.572983],[159.842041,53.794273],[159.977905,54.125374],[160.586105,54.468613],[161.009995,54.591526],[161.287994,54.481899],[161.715805,54.505299],[162.125549,54.750832],[162.137222,54.864166],[161.78244,55.216522],[161.750519,55.550083],[162.2061,56.146774],[162.602615,56.262257],[162.436249,56.388096],[162.730927,56.483349],[162.627045,56.228275],[163.04805,56.015976],[163.361542,56.184387],[163.226486,56.742874],[162.776672,56.774445],[162.852936,57.038834],[162.782074,57.348778],[163.096115,57.483334],[163.303329,57.718613],[162.698761,57.950287],[162.532043,57.752728],[162.136505,57.843441],[161.983505,58.007103],[162.134995,58.373333],[162.545563,58.748055],[163.016251,59.005821],[163.10556,59.267502],[163.335495,59.286125],[163.188339,59.515835],[163.422989,59.655922],[163.477478,59.860821],[163.953186,60.016521],[164.215683,59.965321],[164.477081,60.104168],[164.856888,59.781219],[165.106079,59.863922],[165.356766,60.155731],[166.274994,60.472916],[166.314072,60.194271],[166.103882,59.800278],[166.282425,59.810745],[166.722397,60.085938],[167.048431,60.395313],[167.204163,60.337502],[168.21666,60.579166],[169.389069,60.574478],[169.749481,60.386978],[169.960419,60.068748],[170.430695,59.969471],[170.635422,60.418751],[171.21875,60.558334],[171.706253,60.833332],[172.066666,60.845833],[172.40625,61.008335],[172.347397,61.208855],[172.652084,61.166668],[173.507813,61.558857],[173.488022,61.726562],[173.816147,61.672398],[174.022919,61.814583],[174.460419,61.806252],[175.220322,62.008854],[175.284897,62.089066],[176.343231,62.315102],[177.045837,62.537498],[177.639587,62.560417],[179.036987,62.336979],[179.629166,62.6875],[179.564072,62.839066],[179.139587,63.027084],[179.336975,63.193226],[178.650513,63.392185],[178.774475,63.636978],[178.710937,63.908852],[178.3349,64.32135],[177.885422,64.224998],[177.483856,64.410934],[177.53334,64.73542],[177.087494,64.706253],[176.78125,64.539581],[176.310928,64.763016],[176.679169,64.854164],[177.079163,64.754166],[177.489578,64.916664],[177.65834,64.697914],[178.337494,64.635414],[178.857819,64.652603],[179.522919,64.800003],[179.99791,65.027084],[180,68.949738],[179.31459,69.254166],[178.722916,69.277084],[178.539581,69.443748],[177.97084,69.472916],[177.527084,69.583336],[177.148437,69.598434],[175.734894,69.828651],[174.422913,69.847916],[174.018753,69.89167],[173.758331,69.810417],[173.454163,69.933334],[173.277084,69.754166],[172.741669,69.962502],[172.397919,69.941666],[170.612503,70.102081],[170.602081,69.758331],[170.152603,69.595314],[170.666153,69.555733],[170.936981,69.267189],[170.9599,69.016151],[170.133331,68.793747],[169.463013,68.808853],[169.414062,69.030731],[168.714584,69.197914],[168.34166,69.206253],[168.270309,69.551567],[167.745834,69.768753],[166.960419,69.477081],[165.804169,69.570831],[164.56041,69.581253],[163.985413,69.75],[163.839584,69.685417],[163.197922,69.697914],[162.868744,69.635414],[162.378647,69.668228],[161.510422,69.379166],[161.615097,68.875519],[161.043747,69.052086],[161.097397,69.297401],[160.96666,69.618752],[159.822922,69.775002],[159.868225,69.978645],[160.097397,70.242187],[159.96666,70.445831],[159.630737,70.670311],[159.125,70.831253],[158.125,70.993752],[157.022919,71.070831],[155.943756,71.074997],[153.010422,70.810417],[152.179169,70.864586],[152.02916,71.039581],[151.52916,71.320831],[150.264587,71.53125],[150.068237,71.634895],[149.012497,71.689583],[149.410416,71.88958],[149.702087,71.747917],[150.105728,71.842186],[149.901566,72.028648],[149.508331,72.158333],[148.397919,72.318748],[147.135422,72.306252],[146.09584,71.785416],[145.385422,71.654167],[144.938019,71.706772],[145.232819,71.83802],[145.847397,71.947395],[145.672913,72.135414],[146.30365,72.125519],[146.001572,72.029686],[146.009903,71.888016],[146.407822,72.02552],[146.93541,72.314583],[144.504166,72.229164],[144.793747,72.404167],[145.243744,72.429169],[145.397919,72.34375],[146.704163,72.341667],[146.03125,72.472916],[144.335419,72.637497],[143.477081,72.685417],[141.795837,72.731247],[141.347916,72.84375],[140.710419,72.868752],[141.166153,72.653648],[140.90625,72.510414],[140.522919,72.46875],[139.608337,72.491669],[139.15834,72.28125],[139.333328,72.122917],[139.635422,72.227081],[139.929687,72.157814],[139.743744,71.914581],[139.78334,71.681252],[140.091141,71.4599],[139.477081,71.493752],[139.233337,71.402084],[138.983337,71.689583],[138.762497,71.629166],[138.21666,71.583336],[137.993744,71.408333],[138.28125,71.268753],[137.853653,71.148438],[137.386978,71.393234],[136.910416,71.533333],[136.59166,71.522919],[136.079163,71.633331],[135.645828,71.622917],[134.43959,71.362503],[133.647919,71.441666],[132.792191,71.75885],[132.754166,71.947914],[132.202606,71.580734],[132.06041,71.241669],[131.754166,70.972916],[131.318756,70.722916],[131.06459,70.706253],[130.809891,70.867187],[130.358337,70.902084],[130.160934,71.061981],[129.833847,71.078651],[129.495834,71.260414],[129.247391,71.595314],[128.933334,71.57917],[128.514069,72.03698],[127.79583,72.324997],[127.214584,72.40625],[126.645836,72.395836],[126.645836,72.512497],[127.243752,72.614586],[127.381767,72.706772],[128.11615,72.752602],[128.385422,72.908333],[127.745834,72.900002],[128.243744,72.935417],[128.370834,72.970833],[128.520828,72.979164],[128.816666,73.041664],[128.824997,73.23542],[128.460419,73.239586],[128.225006,73.408333],[127.013016,73.520317],[126.879166,73.368752],[126.472916,73.364586],[126.29792,73.550003],[125.724998,73.462502],[125.242188,73.543228],[124.887497,73.724998],[124.404167,73.760414],[124.014061,73.596352],[123.429688,73.651566],[123.372917,73.379166],[123.664581,73.102081],[123.322395,72.923439],[122.879166,72.902084],[122.670311,72.841148],[121.729164,72.966667],[120.96875,72.925003],[119.847916,73.01458],[118.51667,73.175003],[118.440102,73.426567],[118.629166,73.5625],[117.335419,73.572914],[116.637497,73.668747],[115.26458,73.697914],[114.914581,73.597916],[114.32917,73.599998],[113.57708,73.512497],[113.916664,73.339584],[113.573433,73.228645],[113.551567,72.927605],[113.220833,72.82708],[113.518234,72.942184],[113.581253,73.322914],[113.195313,73.444267],[113.441666,73.658333],[113.160416,73.875],[112.831772,73.997398],[112.885414,73.73333],[111.824997,73.73542],[111.033852,73.918228],[110.375,74.01458],[109.974998,74],[109.654686,73.677605],[110.247917,73.681252],[110.67292,73.793747],[110.932816,73.698433],[110.472916,73.637497],[109.88385,73.447395],[109.310417,73.497917],[109.300003,73.38958],[108.25,73.289581],[107.79583,73.154167],[106.352081,73.1875],[106.239586,72.960419],[105.84375,72.881248],[105.910416,73.10833],[106.239586,73.3125],[106.802086,73.318748],[107.1875,73.585419],[108.157814,73.654686],[108.763016,73.930733],[109.181252,74.0625],[109.543747,74.081253],[109.949478,74.311981],[110.57917,74.487503],[111.04583,74.554169],[111.39167,74.677086],[111.800003,74.652084],[112.245834,74.883331],[112.745834,74.935417],[113.564064,75.233849],[113.708336,75.502083],[113.381248,75.51667],[113.270836,75.660416],[112.79792,75.543747],[112.808334,75.75],[113.751564,75.635933],[113.868233,75.918228],[113.604164,75.912498],[113.466148,76.16198],[112.987503,76.239586],[112.018753,76.502083],[111.614586,76.654167],[110.4375,76.739586],[109.802086,76.683334],[109.434898,76.740105],[108.662498,76.695831],[107.974998,76.729164],[107.943748,76.539581],[106.57917,76.48333],[106.79583,76.681252],[107.495834,76.902084],[107.179169,77],[106.63958,76.995834],[105.868752,77.099998],[105.027084,77.056252],[104.627083,77.152084],[105.377083,77.195831],[105.808334,77.36042],[105.877083,77.550003],[105.29792,77.537498],[104.818748,77.67083],[104.008331,77.699997],[103.710419,77.618752],[103.285416,77.629166],[102.640099,77.489067],[101.35833,77.09375],[101.349998,76.964584],[100.925522,76.857811],[101.256248,76.743752],[101.033333,76.506248],[101.856247,76.449997],[102.416664,76.308334],[100.935417,76.51667],[100.568748,76.460419],[99.739586,76.4375],[98.964584,76.5],[99.88958,76.091667],[99.335419,76.20208],[98.78125,76.199997],[97.73542,76.07917],[97.837502,75.96875],[97.066666,75.981247],[96.943748,75.914581],[96.4375,76.002083],[95.819267,75.870316],[96.11042,76.072914],[95.46875,76.162498],[95.106247,76.09375],[94.14167,76.118752],[93.529686,76.026566],[93.29792,75.8125],[92.354164,75.729164],[91.690102,75.716148],[91.685417,75.643753],[89.966667,75.552086],[89.770836,75.431252],[89.185417,75.470833],[88.620834,75.324997],[88.095833,75.085419],[87.20208,75.150002],[86.9151,75.091148],[87.70208,75.037498],[87.087502,74.856247],[86.683853,74.622398],[86.366669,74.787498],[85.785416,74.64167],[86.385414,74.614586],[86.447914,74.479164],[85.964584,74.304169],[86.629166,74.254166],[86.835419,74.07708],[87.097916,74.056252],[87.241669,73.854164],[87.179169,73.61042],[86.387535,73.560417],[87.139061,73.845314],[86.918747,73.885414],[86.097916,73.85833],[85.5625,73.793747],[85.51667,73.716667],[84.445831,73.706253],[83.14167,73.633331],[81.895836,73.635414],[80.841667,73.541664],[80.679169,73.40625],[80.589584,73.064583],[80.826561,73.016151],[80.692184,72.726563],[80.767189,72.506767],[81.310417,72.347916],[82.216667,72.283333],[82.283333,72.085419],[82.677086,71.90625],[83.375,71.835419],[83.660934,71.642189],[83.614067,71.513016],[83.164062,71.239067],[83.420311,71.00573],[83.809898,70.451561],[83.402084,70.29792],[82.979683,70.294266],[83.184898,70.143234],[82.904167,70.04792],[82.644272,70.217186],[82.995316,70.394272],[83.143234,70.801567],[82.882812,70.949478],[82.46875,70.600204],[82.291245,70.693748],[82.200516,71.011978],[82.250519,71.249481],[82.968231,71.388016],[83.282814,71.703651],[82.722916,71.762497],[82.308334,71.70417],[81.629166,71.699997],[80.573433,72.1026],[79.933334,72.206253],[79.566666,72.335419],[78.525002,72.375],[77.894272,72.307816],[77.525002,72.052086],[77.997917,72.099998],[78.21875,71.92083],[77.822395,71.813019],[77.48333,71.839584],[76.697914,72.043747],[76.035934,71.903648],[76.32917,71.558334],[77.699997,71.26458],[77.840103,71.341148],[78.307816,71.234901],[78.36042,71.064583],[78.461983,70.935936],[77.9151,70.979683],[77.800003,71.125],[77.447914,71.164581],[76.020836,71.212502],[75.29583,71.331253],[75.495316,71.541145],[75.260933,71.7276],[75.254166,71.947914],[75.558853,72.220314],[75.408333,72.756248],[74.947914,72.870834],[75.078651,72.267189],[74.962502,72.14167],[74.529167,71.995834],[73.50885,71.799484],[73.370834,71.5625],[73.039581,71.375],[73.555733,71.218231],[73.902084,70.856247],[74.268234,70.664063],[74.232811,70.429688],[73.675522,70.115105],[73.529686,69.733849],[73.901566,69.363022],[73.769272,69.163017],[73.974998,69.066666],[74.258331,69.129166],[75.102081,69.097916],[75.5,69.247917],[76.03125,69.239586],[76.92083,69.006248],[77.682816,68.876564],[77.694267,68.624481],[78.116669,68.227081],[77.533852,68.122398],[77.452599,67.764061],[78.122917,67.637497],[78.543747,67.666664],[78.466667,67.533333],[77.889061,67.531769],[77.120834,67.75],[77.3125,68.237503],[77.185417,68.568748],[76.675003,68.73542],[76.601562,68.961983],[76.208336,68.977081],[75.32917,68.881248],[74.70417,68.772919],[74.442184,68.663017],[74.3125,68.364586],[74.799484,68.024483],[74.791145,67.770317],[74.629166,67.625],[74.11927,67.436981],[73.908333,67.26667],[73.853645,66.988022],[73.489586,66.822914],[72.48542,66.597916],[72.418747,66.349998],[72.089584,66.229164],[71.229164,66.352081],[70.416664,66.331253],[69.427086,66.489586],[69.129684,66.613022],[69.147919,66.770836],[68.789581,66.756248],[68.341667,66.547821],[68.258331,66.693748],[69.04792,66.814583],[69.645836,66.754166],[69.949997,66.852081],[70.268753,66.67292],[71.064583,66.808334],[71.418747,66.966667],[71.764061,66.9151],[72.199997,67.32708],[72.38958,67.3125],[72.589584,67.60833],[73.104164,67.722916],[73.195313,67.932816],[73.074997,68.199997],[73.597397,68.497398],[72.783333,68.806252],[72.479683,69.094269],[72.643234,69.488022],[72.49427,69.643234],[72.67865,69.773437],[72.496353,69.979683],[72.45208,70.310417],[72.749481,70.426567],[72.675522,70.61615],[72.78698,70.878647],[72.570831,71.133331],[72.247917,71.199997],[71.841667,71.522919],[72.31823,71.700516],[72.723434,72.214066],[72.800003,72.70417],[71.631248,72.887497],[69.454689,72.878647],[69.063019,72.707817],[68.585419,71.914581],[68.306252,71.67292],[67.962502,71.51667],[66.9375,71.270836],[66.720314,70.773438],[67.26667,70.824997],[67.381248,70.699997],[67.125519,70.21302],[67.316666,70],[66.846352,69.903648],[66.874481,69.610939],[67.056252,69.691666],[68.136978,69.468231],[68.08802,69.242188],[68.564583,68.9375],[69.01667,68.939583],[69.052605,68.791145],[68.857811,68.552605],[68.387497,68.20417],[68.13958,68.400002],[67.171349,68.706772],[67.07708,68.8125],[66.34375,68.935417],[65.745834,69.127083],[65.104164,69.260414],[64.783852,69.155731],[64.716667,69.379166],[64.23333,69.51458],[62.670834,69.724998],[61.454166,69.770836],[60.887501,69.856247],[60.715107,69.6651],[60.206772,69.622398],[60.254684,69.485939],[60.943226,69.074478],[60.950001,68.933334],[60.518749,68.708336],[59.804688,68.632813],[59.972393,68.499481],[59.686981,68.315102],[59.174999,68.387497],[59.195835,68.666664],[59.459896,68.753647],[58.879166,68.977081],[57.65625,68.743752],[57.339066,68.533852],[56.637501,68.618752],[56.102085,68.633331],[55.381248,68.54792],[54.990101,68.416145],[54.899479,68.169266],[54.464584,68.291664],[54.093231,68.231766],[53.234894,68.229683],[53.433334,68.370834],[53.823441,68.331772],[53.723434,68.605728],[53.995316,68.8349],[53.375,68.883331],[52.290104,68.595314],[52.75156,68.478645],[52.293751,68.310417],[52.208332,68.572914],[51.547916,68.48333],[51.075001,68.341667],[50.783333,68.36042],[50.397915,68.20417],[49.335415,67.887497],[48.787498,67.84375],[48.739582,67.71875],[47.831772,67.578651],[47.735935,67.013016],[47.458332,66.916664],[46.660416,66.814583],[46.018749,66.816666],[45.808857,66.898437],[45.581249,67.160416],[44.917191,67.323433],[44.963024,67.47448],[45.308334,67.572914],[45.362499,67.714584],[46.352085,67.816666],[46.691666,67.806252],[46.545315,68.120316],[45.877602,68.425522],[45.470833,68.525002],[44.0625,68.53125],[43.431252,68.668747],[43.5,68.543747],[44.203644,68.301567],[44.14323,67.75885],[43.767185,67.25885],[44.077084,67.160416],[44.528648,66.898437],[44.471352,66.671349],[44.12344,66.31823],[44.159893,66.042183],[43.268749,66.410416],[42.561981,66.390099],[42.118752,66.491669],[41.731251,66.222916],[41.372917,66.070831],[40.764584,65.991669],[40.493229,65.817184],[39.872917,65.627083],[39.721352,65.335937],[40.39323,64.922401],[40.506771,64.5401],[39.822918,64.658333],[39.547916,64.541664],[38.870834,64.741669],[38.28125,64.802086],[37.831249,64.908333],[37.693226,65.0224],[37.191666,65.145836],[36.847916,65.152084],[36.802082,64.95208],[36.444271,64.924484],[36.535416,64.714584],[36.747398,64.682816],[37.108856,64.40052],[37.320835,64.341667],[37.650524,64.420311],[37.931252,64.34375],[38.072399,64.001564],[37.4375,63.783333],[37.224998,63.872917],[36.65469,63.910934],[36.252602,64.006767],[36.211979,64.143234],[35.83073,64.320313],[35.327084,64.300003],[34.777084,64.522919],[34.93906,64.863022],[34.780731,65.082817],[34.464584,65.268753],[34.696354,65.426567],[34.822918,65.88958],[34.534893,66.070313],[33.604168,66.3125],[32.5,66.908333],[32.356251,67.160416],[32.744274,67.079689],[32.979168,66.895836],[33.502083,66.716667],[33.690102,66.804688],[33.916668,66.6875],[34.370834,66.660416],[34.504166,66.535416],[34.902084,66.59375],[35.379166,66.414581],[36.556252,66.275002],[37.183334,66.23542],[37.685417,66.11042],[38.243752,66.060417],[39.118752,66.102081],[40.002083,66.254166],[40.561981,66.450516],[41.224476,66.831772],[41.395309,67.109901],[41.079685,67.250519],[41.035416,67.633331],[39.864582,68.029167],[39.581249,68.03125],[38.779167,68.306252],[38.619274,68.302605],[37.560417,68.722916],[36.716667,68.970833],[35.811981,69.176567],[35.316666,69.247917],[34.952084,69.20208],[34.314583,69.302086],[33.452084,69.29583],[33.502083,69.402084],[32.572918,69.481247],[33.099998,69.737503],[32.658333,69.772919],[32.058334,69.943748],[32.091148,69.763016],[31.77552,69.830734],[31.48073,69.673439],[30.842518,69.791664],[30.945555,69.58622],[30.526632,69.542526],[30.145369,69.671532],[29.986135,69.413345],[29.314947,69.30278],[29.30975,69.182114],[28.924753394,69.056725056],[28.434746254,68.908416889],[28.803527751,68.874946602],[28.450369,68.547668],[28.659791947,68.195106507],[29.334667,68.074707],[29.694522858,67.793746948],[30.034530641,67.669364929],[29.959157944,67.517333985],[29.053629,66.977989],[29.086283,66.824265],[29.48065,66.537582],[29.917573928,66.127830506],[30.125448,65.665688],[29.734413147,65.6279068],[29.840818406,65.088310243],[29.625688553,65.059921265],[29.750923156,64.789619446],[30.045656205,64.792167664],[30.053009034,64.404251099],[30.484960555,64.254913331],[30.526166916,64.049087526],[30.23889923,63.816188812],[29.98095131,63.754478455],[30.505151749,63.461864471],[31.219272614,63.231616975],[31.576831817,62.914161682],[31.22984314,62.507061005],[30.718795777,62.212890625],[29.245567104,61.273418357],[28.840395,61.131451],[27.810535,60.536575],[28.216667,60.522915],[28.652603,60.668228],[28.679167,60.429165],[29.010937,60.188019],[29.926563,60.145309],[30.028944,59.862251],[29.123695373,59.986251832],[28.978057861,59.811805725],[28.472658,59.827442],[28.432695,59.679672],[28.099298,59.789135],[28.075740814,59.455883027],[27.741879,58.995518],[27.455129624,58.790611267],[27.553665,58.423527],[27.479160308,58.291648864],[27.782720999,57.830853],[27.553926469,57.831874847],[27.336309299,57.546298988],[27.844026565,57.316173554],[27.668026,56.83918],[27.963555987,56.829177939],[28.225418101,56.295959473],[28.151191847,56.161064718],[28.58208847,56.103076934],[28.729238511,55.966941835],[29.032892227,56.032539369],[29.39691162,55.976993561],[29.480318069,55.704460145],[29.969619752,55.889705658],[30.267707825,55.869976044],[30.93380165,55.634067536],[31.006025314,55.033226014],[30.76061058,54.811752319],[31.213983536,54.650382997],[31.330057143,54.260890961],[31.780056,54.064109802],[31.76597786,53.797252655],[32.122810364,53.809463502],[32.509155273,53.695682525],[32.462646485,53.574119569],[32.741893768,53.332733155],[32.227340699,53.096294403],[31.931325913,53.086585999],[31.641042709,53.23141098],[31.329481124,53.044277191],[31.606595994,52.766613007],[31.515312194,52.689311982],[31.59456253,52.302452087],[31.789606095,52.108219148],[32.072063446,52.022766114],[32.351173402,52.138980865],[32.358680726,52.335777284],[32.68713379,52.253459931],[33.185310364,52.368099213],[33.510398865,52.292736054],[33.796646118,52.360004426],[34.11433792,52.134010314],[34.092494964,52.015304566],[34.400947571,51.845066072],[34.126987458,51.686840058],[34.318195343,51.528808595],[34.270694732,51.259902954],[34.819721221,51.176284791],[35.123470307,51.220962524],[35.312839508,51.086719514],[35.491317749,50.771396638],[35.413085938,50.589736938],[35.631309509,50.360713959],[36.154998779,50.44929886],[36.597061156,50.238174439],[36.925628663,50.347408295],[37.49312973,50.428993226],[37.760421753,50.096336365],[38.047847749,49.956104279],[38.611801148,49.977611542],[38.937122345,49.811283113],[39.6032753,49.743476868],[39.794551848,49.569641114],[40.131904601,49.619560241],[40.200325012,49.270580291],[39.93523407,49.06344223],[39.688667297,48.590930938],[40.014892578,48.266578674],[39.762969971,47.825042724],[38.840553284,47.861789704],[38.764785767,47.684131623],[38.371608735,47.611076355],[38.234565911,47.120139457],[38.511806,47.127361],[39.197361,47.284863],[39.10125,47.039307],[38.061527252,46.647640229],[37.755416871,46.660694123],[37.873748779,46.447082519],[38.100139617,46.396251679],[38.581527709,46.094306946],[38.25375,46.170696],[37.97514,46.035416],[37.832916,45.755138],[37.611252,45.659027],[37.572639,45.410694],[37.171249,45.340973],[36.857639,45.450974],[36.633472,45.141251],[37.135139,45.03653],[37.386806488,44.757915498],[37.830970764,44.720417023],[38.20124817,44.417362213],[38.801250458,44.273750306],[39.294029236,43.943473817],[40.011955261,43.384860993],[40.096923827,43.563293457],[40.652301789,43.55947876],[41.043235778,43.390731811],[41.420257568,43.353103637],[41.582489014,43.235382081],[42.765430451,43.185348511],[43.192070008,42.934432984],[43.561706542,42.866088866],[43.948078155,42.558475494],[44.256622315,42.688716889],[44.662147523,42.750251771],[45.176540374,42.69070053],[45.350009918,42.529029847],[45.767868041,42.474258423],[45.606128692,42.218982696],[45.926872254,42.033927917],[46.418235779,41.907482147],[46.748703002,41.863056182],[47.262393951,41.324737549],[47.535915375,41.207206727],[47.878814698,41.219219208],[48.051055909,41.49119568],[48.414409638,41.626567841],[48.505107879,41.864120484]]],[[[-176.422913,65.510414],[-175.933334,65.42083],[-175.731766,65.153648],[-175.78334,64.945831],[-175.4375,64.800003],[-174.670837,64.729164],[-174.043228,64.534897],[-173.97084,64.408333],[-173.097916,64.241669],[-172.418747,64.539581],[-172.77916,64.612503],[-172.754166,64.833336],[-172.252609,64.969269],[-172.152603,65.145317],[-172.172913,65.535416],[-171.287506,65.529167],[-171.166153,65.702599],[-170.62291,65.599998],[-170.536987,65.859901],[-170.174484,66.003647],[-169.729172,66.002083],[-169.673431,66.123436],[-170.101563,66.174484],[-170.272919,66.29583],[-171.349487,66.6651],[-171.713013,66.947395],[-172.193756,66.95417],[-172.699997,66.885414],[-173.052597,67.042183],[-173.6026,67.100517],[-174.145828,67.081253],[-173.914581,66.681252],[-174.097916,66.537498],[-173.68959,66.4375],[-173.978653,66.231766],[-173.960938,66.44635],[-174.177078,66.456253],[-174.335419,66.287498],[-174.440109,66.528648],[-174.947922,66.658333],[-174.706253,66.760414],[-174.914581,67.07917],[-174.9151,67.426567],[-175.25209,67.341667],[-175.25885,67.65052],[-175.753647,67.791145],[-175.888016,67.63073],[-176.168747,67.629166],[-176.179169,67.904167],[-176.485413,67.883331],[-177.34166,68.241669],[-177.96666,68.241669],[-178.018753,68.416664],[-178.668747,68.533333],[-178.852081,68.752083],[-179.270828,68.802086],[-179.454163,68.918747],[-179.99791,68.979164],[-179.998428,65.048439],[-179.677078,65.137497],[-179.31041,65.625],[-179.693756,65.78125],[-179.799484,65.932816],[-179.610931,66.176567],[-179.129684,66.273437],[-178.7276,66.194267],[-178.536987,66.393234],[-178.515106,66.100517],[-178.841141,65.895317],[-178.448441,65.743233],[-178.4375,65.46875],[-177.331253,65.48542],[-176.93541,65.604164],[-176.422913,65.510414]]],[[[67.79792,76.997917],[67.066666,76.941666],[66.633331,76.814583],[66.027084,76.737503],[65.945831,76.495834],[65.568748,76.556252],[65.279167,76.447914],[64.895836,76.460419],[64.629166,76.352081],[64.069267,76.273438],[63.724998,76.32917],[63.03125,76.185417],[62.770832,76.260414],[61.691666,76.29792],[61.047916,76.256248],[61.045834,76.027084],[60.554165,75.987503],[60.489582,76.114586],[60.110416,76.054169],[59.727085,75.893753],[59.207809,75.909897],[58.868752,75.845833],[58.791668,75.720833],[58.089584,75.660416],[57.997917,75.556252],[57.610416,75.504166],[57.572918,75.308334],[57.029167,75.379166],[56.420834,75.039581],[56.293751,75.158333],[55.958332,75.179169],[55.854168,74.95417],[56.299999,75],[56.410416,74.877083],[55.839584,74.772919],[56.399479,74.692184],[55.581249,74.537498],[56.033333,74.433334],[55.379166,74.408333],[55.625,74.272919],[55.130726,74.229683],[54.727604,74.070313],[54.622917,73.933334],[54.325001,73.914581],[53.90625,73.760414],[54.004166,73.620834],[55.108334,73.689583],[54.427082,73.568748],[54.366665,73.324997],[54.927082,73.439583],[55.395832,73.324997],[56.722916,73.231247],[57.886978,73.769272],[57.714584,74.043747],[58.166149,73.9776],[58.185417,74.125],[58.636978,74.194267],[58.647396,74.409897],[59.075001,74.456253],[59.218231,74.6474],[59.597916,74.570831],[59.918751,74.706253],[60.529167,74.839584],[60.489582,75.104164],[61.636978,75.254684],[61.924999,75.4375],[62.314583,75.416664],[62.637501,75.506248],[64.587502,75.73542],[65.720833,75.925003],[66.92292,76.052086],[68.214584,76.254166],[68.625,76.402084],[68.965103,76.721352],[68.574997,76.95208],[67.79792,76.997917]]],[[[142.118195,46.000805],[142.449371337,46.645759584],[143.377777,46.531113],[143.561661,46.340279],[143.472549,46.830345],[143.154724,46.717777],[143.014862061,47.252056122],[142.551330567,47.70288849],[142.543640137,48.060783386],[142.747634888,48.549049378],[142.979721,48.898335],[143.050827,49.187222],[143.509171,49.341946],[144.147781,49.213612],[144.336868,49.033726],[144.238831,49.499428],[143.83223,50.237499],[143.439438,51.486389],[143.21167,51.499722],[143.309448,51.74361],[143.10556,51.927776],[143.108337,52.345833],[143.316666,52.581944],[143.323334,52.808887],[143.099014,53.038704],[143.250549,53.208332],[142.929459,53.76601],[142.997345,54.080555],[142.725296,54.419884],[142.3853,54.278202],[142.693329,53.94611],[142.789597,53.707302],[142.400497,53.373646],[142.195419,53.53236],[141.764587,53.377514],[141.918335,53.06889],[141.767899,52.462444],[141.653534,52.392067],[141.626525879,51.886627197],[142.072219849,51.479999543],[142.253326416,51.143054961],[142.085861206,50.821243286],[142.048095703,50.516494751],[142.150970459,50.372501374],[142.16748,49.803391],[142.094451903,49.223384857],[141.846939087,48.76638794],[142.142181397,48.326137543],[142.202514649,47.986114502],[141.961303711,47.619003297],[142.051666261,47.18901062],[141.810867,46.6012],[141.931931,46.09771],[142.118195,46.000805]]],[[[54.970833,73.414581],[54.233334,73.256248],[53.90625,73.293747],[53.194271,73.136978],[53.337502,73.010414],[52.612499,72.852081],[52.421356,72.730728],[52.8125,72.64167],[52.702084,72.293747],[52.362499,72.04583],[51.868229,72.151566],[51.563019,72.061981],[51.432816,71.833855],[51.635941,71.527603],[52.125,71.45208],[52.277084,71.560417],[53.300522,71.424484],[53.695835,71.083336],[53.752083,70.777084],[54.224998,70.712502],[54.504166,70.768753],[55.07552,70.565102],[55.368752,70.716667],[55.875519,70.569267],[56.512501,70.737503],[56.566666,70.637497],[57.291668,70.541664],[57.414585,70.802086],[57.035416,70.854164],[56.21719,71.183853],[55.733334,71.556252],[55.400002,71.931252],[55.367188,72.289062],[55.84531,72.732811],[56.114582,72.775002],[56.193748,72.956253],[56.553646,73.106766],[56.40625,73.222916],[55.435417,73.310417],[54.970833,73.414581]]],[[[139.058334,76.197914],[138.21666,76.11042],[138.100006,75.997917],[137.631256,75.987503],[137.425003,75.883331],[137.706253,75.743752],[137.162506,75.731247],[137.466141,75.33802],[136.931763,75.345314],[137.397919,75.04583],[137.90625,74.933334],[138.1875,74.75],[139.0625,74.633331],[139.452087,74.699997],[139.527084,74.916664],[139.816666,74.979164],[140.268753,74.814583],[141.574997,74.931252],[141.983337,74.912498],[142.493744,74.789581],[142.87709,74.862503],[143.547913,74.897919],[143.589584,74.995834],[142.664581,75.09375],[142.250519,75.313019],[141.99791,75.664581],[142.389587,75.743752],[142.99791,75.720833],[143.018753,75.581253],[142.550522,75.392189],[142.897919,75.179169],[143.322922,75.064583],[144.02916,75.020836],[144.730728,75.153648],[144.835419,75.433334],[145.103653,75.605728],[143.614578,75.852081],[143.15834,75.79792],[142.585419,75.85833],[141.820831,76.106247],[141.40416,76.15625],[140.990097,76.0224],[141.070831,75.660416],[140.90834,75.602081],[140.447922,75.793747],[140.15834,75.804169],[139.058334,76.197914]]],[[[97.560417,80.162498],[96.354164,80.099998],[95.64167,80.114586],[95.375,80.029167],[95.039581,80.11042],[94.397919,79.943748],[94.591667,79.779167],[94.17083,79.777084],[93.404167,79.57917],[94.337502,79.48333],[94.42292,79.229164],[95.11042,79.022919],[95.510414,79.102081],[95.722916,78.995834],[96.904167,79.004166],[97.435417,78.84375],[98.279167,78.808334],[99.529167,78.816666],[99.956253,78.927086],[99.859901,79.086983],[99.270836,79.229164],[99.775002,79.262497],[99.847916,79.570831],[100.058334,79.800003],[99.372917,80.025002],[98.612503,80.081253],[98.470833,80],[97.970833,80],[97.560417,80.162498]]],[[[102.45208,79.418747],[102.164581,79.224998],[101.936981,79.336983],[101.614586,79.32708],[100.939583,78.977081],[100.818748,78.808334],[100.372917,78.664581],[100.125,78.333336],[99.647919,78.17292],[99.416664,78.01458],[100.03125,77.941666],[101.268753,78.168747],[102.534897,78.202599],[102.981247,78.1875],[104.92083,78.318748],[105.22448,78.419266],[105.339066,78.757813],[104.943748,78.847916],[104.699997,78.816666],[104.464584,78.991669],[103.902084,79.168747],[103.460419,79.120834],[102.842186,78.947395],[102.564583,78.802086],[103.072914,79.32708],[102.45208,79.418747]]],[[[95.762497,81.270836],[94.527084,81.008331],[94.395836,81.050003],[93.1651,80.948433],[92.645836,80.714584],[93.462502,80.78125],[92.89167,80.599998],[92.472916,80.362503],[92.377083,80.158333],[93.060417,80.116669],[93.808334,79.997917],[94.783333,80.131248],[95.824997,80.214584],[97.189583,80.239586],[97.599998,80.29583],[97.258331,80.520836],[97.34375,80.616669],[98.029167,80.679169],[97.849998,80.791664],[96.875,80.902084],[96.493752,81.114586],[95.762497,81.270836]]],[[[146.514587,75.585419],[146.223434,75.382813],[146.34166,75.160416],[147.139587,75],[147.6875,74.95417],[148.104172,74.793747],[148.702087,74.737503],[149.581253,74.747917],[150.639587,74.864586],[150.891663,75.106247],[150.387497,75.114586],[150.149994,75.208336],[149.387497,75.262497],[148.616669,75.199997],[148.539581,75.375],[147.606247,75.439583],[147.133331,75.318748],[146.802078,75.345833],[146.514587,75.585419]]],[[[21.283080829,55.240722997],[21.21694374,54.924583436],[20.541943,54.945972],[20.983093,55.272888],[20.950596,55.276806],[20.604717,55.012699],[20.348612,54.937084],[19.978088,54.961304],[19.945833,54.701248],[20.360277,54.69014],[19.803611755,54.442424775],[21.440334321,54.322387695],[22.787775041,54.363601684],[22.73958397,54.723331453],[22.887853623,54.788215638],[22.563661576,55.074752808],[22.051698684,55.030902863],[21.388672,55.29071],[21.283080829,55.240722997]]],[[[142.09166,73.904167],[140.945831,73.787498],[140.739059,73.573433],[140.370834,73.443748],[139.87291,73.435417],[139.879166,73.339584],[140.366669,73.408333],[140.931244,73.408333],[141.46666,73.308334],[143.214584,73.181252],[143.577087,73.206253],[143.563019,73.440102],[143.28125,73.602081],[142.495834,73.837502],[142.09166,73.904167]]],[[[-179.008331,71.583336],[-179.99791,71.528847],[-179.99791,70.979164],[-179.183334,70.893753],[-177.919266,71.021355],[-177.542191,71.140099],[-177.510422,71.26667],[-178.010422,71.445831],[-178.539581,71.556252],[-179.008331,71.583336]]],[[[50.883335,80.935417],[50.239582,80.881248],[49.793751,80.908333],[49.102085,80.779167],[49.206249,80.51458],[48.866665,80.48542],[48.408333,80.554169],[47.520832,80.477081],[48.070835,80.293747],[47.243752,80.29792],[47.177082,80.381248],[46.71875,80.291664],[47.141666,80.15625],[47.387501,80.23542],[47.879166,80.193748],[47.724998,80.050003],[48.502083,80.20208],[48.768749,80.147919],[48.744274,80.36927],[49.520832,80.345833],[49.720833,80.481247],[50.75,80.529167],[51.706249,80.689583],[51.28125,80.79792],[50.333332,80.73542],[50.883335,80.935417]]],[[[49.166668,69.502083],[48.706249,69.45208],[48.314583,69.254166],[48.210937,68.906769],[48.585415,68.70417],[48.943748,68.722916],[49.716667,68.868752],[50.16927,69.177605],[49.932816,69.31823],[49.166668,69.502083]]],[[[64.572914,81.208336],[63.839584,81.125],[63.891666,81.043747],[63.045834,80.962502],[62.541668,80.806252],[63.122917,80.645836],[64.29792,80.70208],[64.961983,80.781769],[65.397919,80.90625],[65.397919,81.152084],[64.572914,81.208336]]],[[[61.822918,80.866669],[60.439583,80.785416],[59.674999,80.79792],[59.431774,80.657814],[59.381248,80.46875],[59.668751,80.383331],[60.393749,80.458336],[61.120834,80.370834],[61.504684,80.53698],[61.989582,80.583336],[62.122398,80.828651],[61.822918,80.866669]]],[[[59.068748,70.441666],[58.808857,70.424484],[58.489582,70.25],[58.617188,70.078651],[59.066666,69.85833],[59.197918,69.914581],[59.633335,69.833336],[59.61198,69.716148],[59.987499,69.65625],[60.5,69.71875],[60.452084,69.929169],[60.227604,69.985939],[59.068748,70.441666]]],[[[91.970314,80.080734],[91.581253,80.068748],[91.15625,79.95208],[91.300003,79.831253],[92.114586,79.810417],[92.51667,79.666664],[93.14167,79.70417],[93.841667,79.92083],[92.989586,80.027084],[92.412498,80.006248],[91.970314,80.080734]]],[[[179.979172,70.972916],[179.99791,71.529167],[179.479691,71.405731],[178.629684,71.070312],[178.837494,70.789581],[179.108337,70.862503],[179.612503,70.870834],[179.979172,70.972916]]],[[[127.918747,72.629166],[127.05677,72.53698],[127.229164,72.441666],[127.67292,72.433334],[128.177078,72.25],[129.022919,72.20208],[129.522919,72.304169],[129.199997,72.464584],[128.697922,72.45208],[127.918747,72.629166]]],[[[112.154167,74.541664],[112.018753,74.377083],[111.67083,74.239586],[112.833336,74.07917],[113.195313,74.198433],[113.424484,74.44323],[113.058334,74.508331],[112.154167,74.541664]]],[[[70.881767,73.473434],[70.32917,73.441666],[70.032814,73.355728],[70.025002,73.17083],[70.377083,73.010414],[70.92292,73.10833],[71.675003,73.154167],[71.499481,73.297401],[70.881767,73.473434]]],[[[47.504166,80.849998],[46.189583,80.662498],[44.916668,80.59375],[46.097916,80.554169],[46.295834,80.443748],[46.875,80.529167],[47.299999,80.685417],[47.829166,80.754166],[48.063019,80.667183],[48.741146,80.63073],[48.508335,80.79583],[47.504166,80.849998]]],[[[168.545837,70.01667],[168.162506,69.997917],[167.850006,69.789581],[168.160934,69.68177],[168.914581,69.554169],[169.18541,69.554169],[169.402084,69.864586],[168.545837,70.01667]]],[[[57.979168,80.474998],[56.979168,80.45208],[57.232815,80.395317],[57.331249,80.158333],[58.058334,80.091667],[58.791668,80.320831],[58.858334,80.429169],[57.979168,80.474998]]],[[[54.729168,81.102081],[54.575001,80.989586],[55.422916,80.95417],[55.895832,80.839584],[56.674999,80.79792],[57.081249,80.675003],[57.743752,80.758331],[57.389584,80.831253],[56.570835,80.904167],[56.162498,81.012497],[55.364582,81.01667],[54.729168,81.102081]]],[[[164.596115,59.228611],[163.924942,59.024212],[163.580109,58.568192],[164.187225,58.814724],[164.640717,58.871029],[164.73555,59.030556],[164.596115,59.228611]]],[[[77.758331,72.597916],[77.33802,72.518234],[76.962502,72.275002],[77.8125,72.287498],[78.293747,72.447914],[78.181252,72.558334],[77.758331,72.597916]]],[[[148.805283,45.551945],[148.343338,45.289722],[147.870834,45.224167],[147.283844,44.877655],[146.990829,44.451389],[147.336136,44.714519],[148.100006,45.114166],[148.65416,45.336666],[148.805283,45.551945]]],[[[57.00156,80.347397],[55.933334,80.306252],[56.204166,80.060417],[57.079166,80.083336],[57.00156,80.347397]]],[[[137.66713,55.182125],[137.304672,54.907513],[137.7005,54.614952],[138.006668,54.796391],[138.057526,55.053085],[137.66713,55.182125]]],[[[140.785416,74.268753],[140.297913,74.241669],[140.163025,74.0849],[140.420837,73.918747],[141.03334,74.004166],[141.058334,74.23333],[140.785416,74.268753]]],[[[156.059448,50.763332],[155.648499,50.377586],[155.238815,50.304287],[155.239624,50.05582],[155.879028,50.242622],[156.169449,50.603611],[156.059448,50.763332]]],[[[71.429687,66.885933],[70.254684,66.605728],[70.597916,66.506248],[71.093231,66.620316],[71.583336,66.63958],[71.429687,66.885933]]],[[[56.664585,81.395836],[56.566666,81.243752],[55.683334,81.322914],[55.568748,81.199997],[56.339584,81.216667],[56.420834,81.158333],[57.170834,81.260414],[57.797916,81.289581],[56.664585,81.395836]]],[[[79.219269,73.069267],[78.698433,72.886978],[78.89167,72.73333],[79.51667,72.71875],[79.379166,73.012497],[79.219269,73.069267]]],[[[61.429165,81.122917],[60.291668,81.03125],[60.022915,80.960419],[60.8125,80.895836],[61.560417,81.027084],[61.429165,81.122917]]],[[[90.89167,81.229164],[90.158333,81.17083],[90.474998,81.043747],[91.072914,81.029167],[91.566666,81.175003],[90.89167,81.229164]]],[[[53.045834,80.38958],[52.416668,80.183334],[53.541668,80.145836],[53.635418,80.289581],[53.045834,80.38958]]],[[[52.743752,71.39167],[52.258335,71.324997],[52.597916,71.23333],[52.821354,71.065102],[53.129166,71.060417],[53.185417,71.252083],[52.743752,71.39167]]],[[[138.837494,71.966667],[138.43541,71.900002],[138.250519,71.747398],[138.618744,71.627083],[139.045837,71.76667],[138.837494,71.966667]]],[[[135.735413,75.864586],[135.589584,75.364586],[135.978653,75.402603],[136.106247,75.599998],[135.735413,75.864586]]],[[[150.541946,46.208332],[150.33667,46.223331],[149.669998,45.848888],[149.666672,45.623611],[150.541946,46.208332]]],[[[58.989582,81.854164],[57.997917,81.818748],[58.179165,81.689583],[59.239582,81.741669],[58.989582,81.854164]]],[[[161.413025,69.523437],[161.094269,69.447395],[161.139069,69.127602],[161.318756,69.033333],[161.476562,69.174484],[161.413025,69.523437]]],[[[56.227085,81.089584],[57.262501,80.933334],[57.510418,80.839584],[57.897915,80.833336],[57.575001,81.022919],[56.227085,81.089584]]],[[[146.17305,44.513332],[145.747757,44.05999],[145.399246,43.831741],[145.544449,43.732498],[145.944275,44.152424],[146.295273,44.275002],[146.17305,44.513332]]],[[[165.997253,55.357368],[166.175644,54.961899],[166.67099,54.678589],[166.593887,54.913055],[165.997253,55.357368]]],[[[95.908333,76.306252],[95.352081,76.28125],[95.800003,76.147919],[96.45417,76.13958],[96.283333,76.29792],[95.908333,76.306252]]],[[[57.616665,81.554169],[57.006248,81.525002],[57.868752,81.377083],[58.481251,81.45417],[57.616665,81.554169]]],[[[79.596352,80.895317],[79.120834,80.877083],[79.072914,80.741669],[80.131248,80.783333],[80.054169,80.868752],[79.596352,80.895317]]],[[[63.275002,81.706253],[62.202084,81.685417],[62.741665,81.59375],[63.647915,81.591667],[63.275002,81.706253]]],[[[55.102085,80.866669],[54.358334,80.85833],[54.941666,80.716667],[55.654167,80.758331],[55.102085,80.866669]]],[[[69.550522,66.761978],[69.673439,66.533852],[69.875,66.464584],[70.149483,66.672401],[69.550522,66.761978]]],[[[56.485416,80.747917],[55.9375,80.739586],[55.802082,80.635414],[56.739582,80.612503],[56.485416,80.747917]]],[[[129.147919,73.125],[128.864578,73.035416],[128.573441,72.982811],[128.383331,72.96875],[128.22084,72.910416],[128.464584,72.925003],[128.777084,72.908333],[129.236984,72.985939],[129.147919,73.125]]],[[[51.033333,80.097916],[50.402084,79.929169],[51.362499,79.912498],[51.033333,80.097916]]],[[[74.504166,73.104164],[74.112503,72.991669],[74.616669,72.84375],[74.731247,73.081253],[74.504166,73.104164]]],[[[107.592186,78.173439],[106.579689,78.1474],[106.822914,78.087502],[107.625,78.052086],[107.592186,78.173439]]],[[[76.287498,79.65625],[76.777084,79.487503],[77.527084,79.481247],[76.65625,79.633331],[76.287498,79.65625]]],[[[58.829166,80.875],[58.164585,80.854164],[57.929165,80.758331],[58.545834,80.727081],[58.829166,80.875]]],[[[137.831253,71.595833],[137.050522,71.53698],[137.78125,71.410416],[137.831253,71.595833]]],[[[135.491669,74.227081],[135.748428,74.038017],[136.199478,73.875519],[136.260422,73.981247],[135.491669,74.227081]]],[[[96.502083,77.175003],[95.844269,77.050522],[95.995834,76.962502],[96.543228,77.090103],[96.502083,77.175003]]],[[[59.514584,80.085419],[59.150002,80.072914],[59.279167,79.92083],[59.743752,79.945831],[59.514584,80.085419]]],[[[149.458328,76.752083],[148.847916,76.724998],[148.504166,76.635414],[149.225006,76.637497],[149.458328,76.752083]]],[[[53.945835,80.597916],[53.889584,80.45417],[54.352085,80.416664],[54.247917,80.583336],[53.945835,80.597916]]],[[[137.19278,55.113888],[136.682129,54.950035],[137.06311,54.916367],[137.19278,55.113888]]],[[[50.110416,80.220833],[49.602085,80.175003],[49.912498,80.04792],[50.110416,80.220833]]],[[[83.386978,70.776566],[83.11927,70.638016],[83.162498,70.375],[83.386978,70.776566]]],[[[128.508331,72.883331],[128.354172,72.787498],[129.147919,72.793747],[128.508331,72.883331]]],[[[57.902084,81.212502],[57.258335,81.193748],[57.733334,81.10833],[57.902084,81.212502]]],[[[58.135418,81.07917],[58.270832,80.945831],[58.670834,81.022919],[58.135418,81.07917]]],[[[-172.370834,64.82917],[-172.635422,64.691666],[-172.063019,64.756767],[-172.370834,64.82917]]],[[[154.855835,49.63139],[154.654449,49.416943],[154.84166,49.326389],[154.855835,49.63139]]],[[[35.78125,65.164581],[35.500519,65.11927],[35.739582,64.956253],[35.78125,65.164581]]],[[[156.495438,50.846275],[156.200439,50.768822],[156.402023,50.630035],[156.495438,50.846275]]],[[[112.183334,76.61042],[112.472916,76.433334],[112.48333,76.606247],[112.183334,76.61042]]]]},"properties":{"id":"537face1-04f5-41f1-a8e6-b31ea20e3a00","code":"RUS","name":"Russia","abbreviation":"C-RUS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.543420792,-2.413010359],[30.853281022,-2.319875717],[30.839162826,-1.650841832],[30.56898117,-1.337487221],[30.471065521,-1.055845856],[30.169265747,-1.343921662],[29.593131994,-1.387020823],[29.360721948,-1.511828216],[29.125940323,-1.889606118],[29.093341827,-2.276407718],[28.866735459,-2.435736656],[29.040174484,-2.743100167],[29.326025,-2.65336],[29.370906829,-2.839972734],[29.890018464,-2.750910998],[30.036838532,-2.353201627],[30.408830643,-2.309834957],[30.543420792,-2.413010359]]]},"properties":{"id":"e3d75233-17cc-4379-a616-7fc9a22d6d96","code":"RWA","name":"Rwanda","abbreviation":"C-RWA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[55.587638855,-21.373472214],[55.837360382,-21.183750152],[55.666526795,-20.925971985],[55.453193665,-20.87236023],[55.216251373,-21.040138245],[55.339027406,-21.28125],[55.587638855,-21.373472214]]]},"properties":{"id":"9f1b3ed6-0e41-481b-8866-0d6771e412fe","code":"REU","name":"Réunion","abbreviation":"C-REU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-5.727557,-16.01469],[-5.636167,-15.973866],[-5.656857,-15.911479],[-5.757792,-15.948486],[-5.727557,-16.01469]]]},"properties":{"id":"c922c100-2c3f-400b-b78b-c0c49cdeff7c","code":"SHN","name":"Saint Helena, Ascension and Tris","abbreviation":"C-SHN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.683750152,17.294305801],[-62.809860229,17.417917251],[-62.863750459,17.369583131],[-62.683750152,17.294305801]]]},"properties":{"id":"868c31be-c216-47a5-8275-5bf48898a4d5","code":"KNA","name":"Saint Kitts and Nevis","abbreviation":"C-KNA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.895138,13.870139],[-60.947917939,14.107639314],[-61.079303741,13.882640838],[-60.895138,13.870139]]]},"properties":{"id":"9162ab94-600e-4245-b416-d66dcbada350","code":"LCA","name":"Saint Lucia","abbreviation":"C-LCA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-56.323501587,46.940872193],[-56.260833741,47.064445496],[-56.389999389,47.055831909],[-56.323501587,46.940872193]]]},"properties":{"id":"71a11d7b-c3f3-4fce-b837-852195ebd69c","code":"SPM","name":"Saint Pierre and Miquelon","abbreviation":"C-SPM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.237083435,13.156528473],[-61.114307404,13.239307404],[-61.202084,13.371528],[-61.237083435,13.156528473]]]},"properties":{"id":"8bb3de78-8162-4131-8185-47b04794e4b6","code":"VCT","name":"Saint Vincent and the Grenadines","abbreviation":"C-VCT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.799503896,17.896336971],[-62.852435426,17.903673548],[-62.840301853,17.879994274],[-62.799503896,17.896336971]]]},"properties":{"id":"bf02ea96-d76c-4299-8754-144d2ea5d35d","code":"BLM","name":"Saint-Barthélemy","abbreviation":"C-BLM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.139431,18.052361],[-63.013588,18.053194],[-63.018471,18.121248],[-63.139431,18.052361]]]},"properties":{"id":"6024195f-fca3-4f95-ae76-5c15a2658327","code":"MAF","name":"Saint-Martin","abbreviation":"C-MAF","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-172.221100001,-13.796589],[-172.316116333,-13.451110839],[-172.786911011,-13.544398308],[-172.52784729,-13.803797723],[-172.221100001,-13.796589]]],[[[-171.432434,-14.032986],[-171.830551147,-13.792776109],[-172.054443359,-13.903334617],[-171.761810303,-14.044890403],[-171.432434,-14.032986]]]]},"properties":{"id":"35cd3d99-c916-471d-8742-2a06bab02e16","code":"WSM","name":"Samoa","abbreviation":"C-WSM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.453890215,43.970825504],[12.412594795,43.897838593],[12.486310959,43.899871826],[12.453890215,43.970825504]]]},"properties":{"id":"4d4981ee-bb40-4037-8515-a5687c048381","code":"SMR","name":"San Marino","abbreviation":"C-SMR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[39.212409951,32.152431774],[39.0063116,32.0006304],[37.006171199,31.5006395],[37.997146101,30.5006607],[37.665557401,30.3326227],[37.5055049,30.000768799],[36.7849032,29.8679012],[36.527287199,29.5143326],[36.072811699,29.183401],[35.053088,29.344404],[34.957162,29.356106],[34.679531,28.131656],[35.199913,28.055198],[35.534833,27.53145],[36.283261199,26.5470127],[36.4975477,26.116931699],[36.7057866,26.030756801],[36.67217,25.843733],[36.967747,25.605577],[37.264117,25.129794],[37.225005,24.703742],[37.578886,24.245693],[37.687503,24.301231],[38.45925,23.782058],[38.637701,23.507053],[38.79017,23.028488],[39.078501,22.580371],[39.135271,22.369981],[38.948576,21.915825],[39.183766,21.392113],[39.196351,21.095846],[39.665516,20.454228],[40.06219,20.288358],[40.738455,19.797265],[40.809963,19.577074],[41.166696,19.04041],[41.256674,18.613302],[41.716299,17.913257],[42.310096,17.4461],[42.325965,17.285885],[42.669198,16.790083],[42.768123,16.405297],[42.909798,16.392508],[43.120722,16.528583],[43.24075,17.480527799],[43.484638901,17.5451111],[43.683332587,17.366667371],[44.4666667,17.4333333],[45.216666699,17.4333333],[45.399999999,17.3333333],[46.366666701,17.2333333],[46.75,17.2833333],[47,16.95],[47.4666667,17.1166667],[47.6000003,17.449999401],[48.183333299,18.1666667],[49.116666701,18.616666699],[50.7833333,18.7888889],[51.999999999,18.999998094],[54.999999999,20.000000001],[55.666685101,22.0000149],[55.213485447,22.702154118],[55.137337901,22.631621401],[52.58104,22.939204],[51.590376094,24.126970892],[51.589015,24.254543],[51.280093,24.290886299],[51.113519,24.472111],[50.804335,24.743569],[50.545470499,25.1339727],[50.490124901,25.4068959],[50.2226499,25.7346793],[49.953640001,26.1979299],[49.589979999,26.4503399],[49.75098,26.668929899],[50.016460001,26.4481099],[49.953379,26.853285199],[49.782228,26.89852],[49.533575,27.195611],[49.420236,27.09918],[49.256006,27.524062],[48.867128,27.595978],[48.883715,27.834157],[48.622857,28.084743],[48.430363,28.534302],[47.704461,28.524362],[47.4651668,28.999916901],[46.542605136,29.097971216],[46.4245353,29.058566099],[44.7268814,29.191659599],[43.6072998,30.023021699],[42.0855991,31.1116578],[41.440726101,31.3732074],[40.4132544,31.9480762],[39.212409951,32.152431774]]]},"properties":{"id":"4ced6744-a307-4ff2-9e9f-678428053a91","code":"SAU","name":"Saudi Arabia","abbreviation":"C-SAU","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-16.747917175,13.064655303],[-16.791250228,12.48486042],[-16.714891435,12.339930535],[-16.201256,12.460594],[-15.680843353,12.424531937],[-15.173559189,12.68426323],[-13.708568573,12.674434662],[-13.071542,12.643987],[-12.757684708,12.43312931],[-12.389674186,12.374944686],[-12.061086654,12.433949471],[-11.377452851,12.417995453],[-11.382016183,12.995388032],[-11.62743187,13.397066117],[-11.796690942,13.313722611],[-12.067743301,13.707526207],[-11.947833062,13.812830925],[-12.019219399,14.279276847],[-12.201363564,14.408751489],[-12.238911629,14.759259224],[-12.461545944,14.982006074],[-12.849134446,15.199854852],[-12.963149071,15.497569085],[-13.251791001,15.655238151],[-13.374959946,16.053251267],[-13.843576432,16.106767654],[-14.327065468,16.630088807],[-14.893631935,16.632528306],[-15.705521584,16.47363472],[-16.280223847,16.515396117],[-16.509552003,16.061672211],[-16.543750763,15.764617921],[-17.128749848,14.910416604],[-17.525965,14.751797],[-17.252508163,14.703039169],[-16.775417328,14.060695649],[-16.758751,13.809583],[-16.54521,13.592391],[-15.47307682,13.590885162],[-15.426857949,13.728193283],[-15.062114715,13.826889991],[-14.780427999,13.651931],[-14.49616623,13.616292955],[-14.321198463,13.455093384],[-13.9589777,13.578852653],[-13.85964489,13.322502136],[-14.347830771,13.227734565],[-15.022415162,13.508973121],[-15.37951374,13.355257988],[-15.802063943,13.34800148],[-15.802509309,13.181070328],[-16.701984405,13.162057877],[-16.747917175,13.064655303]]]},"properties":{"id":"08f90ab4-d601-467c-96f5-2c7cad000e1c","code":"SEN","name":"Senegal","abbreviation":"C-SEN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.185674667,43.53514862],[19.179483414,43.471149444],[19.797666549,43.086166381],[20.313747407,42.826240539],[20.633623124,43.015964509],[20.56627655,43.185661316],[21.071443557,43.106533051],[21.43242836,42.858020783],[21.7405262,42.547992706],[21.59392166,42.247520448],[21.94235611,42.32038498],[22.345737457,42.304096222],[22.499036788,42.38879013],[22.423133849,42.786884307],[22.955797196,43.10042572],[22.734609604,43.370834351],[22.51262474,43.461688996],[22.34377861,43.795104981],[22.404434205,43.99427414],[22.680921891,44.212676857],[22.475465774,44.480968476],[22.764814377,44.540554048],[22.462968826,44.715568544],[22.181060791,44.479679108],[21.991159439,44.634048462],[21.642705916,44.659656524],[21.457685471,45.040779113],[21.484310151,45.192481994],[21.018157958,45.325023652],[20.834533691,45.480304719],[20.804250717,45.738155364],[20.349887848,46.000003814],[20.265501022,46.124713898],[19.563688278,46.180782318],[19.274522782,45.99798584],[18.81132698,45.911281586],[18.919952392,45.549263],[19.184112548,45.219303131],[19.03316307,44.870052338],[19.365951539,44.896987915],[19.122179031,44.526576996],[19.612438202,44.023971559],[19.240442276,44.013515473],[19.510490417,43.719890595],[19.185674667,43.53514862]]]},"properties":{"id":"5cabf248-c889-4e7c-b6a4-2910c2264e06","code":"SRB","name":"Serbia","abbreviation":"C-SRB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[55.46939,-4.63127],[55.374512,-4.63375],[55.490081787,-4.730409145],[55.46939,-4.63127]]]},"properties":{"id":"a27c589c-b6a1-4ac7-acc3-c1ca91d7fd9c","code":"SYC","name":"Seychelles","abbreviation":"C-SYC","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-13.303506,9.039858],[-13.169306,8.52625],[-13.293194772,8.435694696],[-13.16514,8.173472],[-12.987915992,8.234581947],[-12.946805,7.902362],[-12.443194,7.520417],[-12.509861,7.383749],[-11.883749961,7.159584999],[-11.485695,6.91783],[-11.30880928,7.203296184],[-10.601117133,7.770023823],[-10.600068092,8.026383401],[-10.346570968,8.149065017],[-10.268709182,8.49120617],[-10.553540229,8.307664871],[-10.584836005,9.043245315],[-10.668852807,9.309306145],[-11.206748962,10.000431061],[-11.885848999,9.997462272],[-12.12001896,9.871853828],[-12.431738854,9.881637574],[-12.686799049,9.40917778],[-12.935078621,9.286656379],[-13.002149581,9.097373962],[-13.303506,9.039858]]],[[[-12.620417,7.640694],[-12.945417,7.579306],[-12.587085,7.456807],[-12.620417,7.640694]]]]},"properties":{"id":"96066e81-14c6-46b9-89e8-827e69aeb14b","code":"SLE","name":"Sierra Leone","abbreviation":"C-SLE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.7575,1.298612],[103.990639,1.329312],[103.804443,1.470279],[103.7575,1.298612]]]},"properties":{"id":"26db71a4-5236-420c-9320-547fb0a98a13","code":"SGP","name":"Singapore","abbreviation":"C-SGP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-63.139431,18.052361],[-63.069862,18.015694],[-63.013588,18.053194],[-63.139431,18.052361]]]},"properties":{"id":"fc0f7d94-7b4b-46fc-83e5-09dce7b80058","code":"SXM","name":"Sint Maarten","abbreviation":"C-SXM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.160628178,48.008037749],[17.725038529,47.754268647],[18.662952422,47.761344909],[18.848052978,48.052459718],[19.468629838,48.087902069],[19.628635406,48.251419069],[19.816638946,48.170585633],[20.2871418,48.263687134],[20.507484436,48.53308487],[20.840295791,48.58637619],[21.16075325,48.523136139],[21.441425324,48.585346222],[21.732946395,48.34992218],[22.157321931,48.405391694],[22.567663194,49.088626862],[22.04066658,49.2251091],[21.63094139,49.447307587],[21.124021531,49.436580657],[20.925634385,49.296051025],[20.739860535,49.417110442],[20.192207337,49.341156006],[20.075502396,49.178764343],[19.767303466,49.206016541],[19.467376709,49.613761902],[19.197399139,49.41456604],[18.850496293,49.51858139],[18.558023453,49.512805939],[18.157957076,49.272239686],[18.106492997,49.081001282],[17.51516533,48.809707642],[17.199533462,48.881229401],[16.924345983,48.621355889],[16.851498404,48.449987858],[17.160628178,48.008037749]]]},"properties":{"id":"be351ddb-ecf0-4aa9-b669-ba13f598741a","code":"SVK","name":"Slovakia","abbreviation":"C-SVK","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.713896501,46.523197941],[13.382119179,46.293251038],[13.666212924,46.170339168],[13.609933854,45.816722871],[13.722361565,45.594970704],[13.567174911,45.48513794],[14.689496994,45.527175903],[15.377919198,45.49200058],[15.256242751,45.740131379],[15.679810524,45.869182587],[15.651285172,46.213462829],[15.996046066,46.318244934],[16.254442216,46.515022278],[16.584312439,46.479049682],[16.293876649,46.873706818],[16.113840435,46.869569682],[16.000324829,46.680454388],[15.654891813,46.706565746],[15.044928171,46.652472602],[14.525084622,46.422349759],[13.713896501,46.523197941]]]},"properties":{"id":"01437db2-f586-455d-b94c-dd60d9081180","code":"SVN","name":"Slovenia","abbreviation":"C-SVN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[160.742783,-9.904999],[160.834503,-9.852404],[160.383605957,-9.421388626],[159.905838012,-9.425000191],[159.6875,-9.250555039],[159.613616943,-9.538612365],[159.822494506,-9.800556184],[160.322662354,-9.81156826],[160.742783,-9.904999]]],[[[161.397507,-9.5425],[161.158462524,-8.977778434],[160.940002442,-8.821389198],[161.001190186,-8.641811371],[160.807495,-8.380278],[160.577224732,-8.3908329],[160.849517822,-9.139634131],[161.397507,-9.5425]]],[[[159.770554,-8.428055],[159.853333,-8.341945001],[159.365051,-7.979791],[159.066116,-7.899722],[158.720718,-7.588844],[158.61528,-7.771111],[159.197495,-8.186112],[159.770554,-8.428055]]],[[[156.790664672,-7.068397999],[156.931061,-7.219061],[157.444717,-7.428889],[157.138535,-7.12442],[157.098328,-6.956944],[156.461945,-6.589445],[156.40834,-6.734721],[156.790664672,-7.068397999]]],[[[162.278763,-10.822577],[162.104446412,-10.494444847],[161.811966,-10.444297],[161.427215577,-10.212222099],[161.511795,-10.568451],[161.939163209,-10.797681808],[162.278763,-10.822577]]],[[[157.853607,-8.564444],[157.90416,-8.481111],[157.371109009,-8.024998665],[157.213333,-8.309167],[157.525833,-8.252776],[157.609161,-8.471945],[157.853607,-8.564444]]]]},"properties":{"id":"aa1baed3-429f-4c7c-91a0-2a2c4e8492fd","code":"SLB","name":"Solomon Islands","abbreviation":"C-SLB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.93608288,10.966264936],[42.704685212,10.574638368],[42.804515946,10.314758127],[43.213394165,9.871968269],[43.415462494,9.476858139],[44.156364442,8.937956809],[46.999328614,7.985087871],[47.958229065,8.012583732],[45.001667022,4.932207108],[44.028961182,4.939652444],[43.397472381,4.784063816],[43.033039094,4.554564476],[42.692008973,4.224504948],[42.203907014,4.161425592],[41.926216126,4.002295495],[41.328128815,3.158634902],[40.986560822,2.819380999],[40.988632202,0.014013001],[41.004299,-0.823578],[41.575416566,-1.642361999],[42.108749,-0.844583],[43.379859923,0.536249996],[44.59375,1.586806059],[45.084862,1.906806],[45.901248931,2.351804972],[46.66986084,3.065694094],[47.937362672,4.447360993],[48.289028168,5.028749944],[48.912361145,5.92097187],[49.214584351,6.748472214],[49.666805267,7.433751106],[49.818195344,7.920138837],[50.130138396,8.196528434],[50.445972443,8.898471832],[50.829029083,9.419029237],[50.898472,10.311529],[51.134583,10.672916],[51.183472,11.144305],[51.077362,11.239862],[51.288192749,11.834028244],[50.795139313,11.988192558],[50.57208252,11.905693055],[50.444862366,11.682083129],[50.071250916,11.505417823],[49.555137634,11.449027061],[49.393196106,11.332082749],[48.955139159,11.240415573],[48.656806947,11.325694084],[48.156528472,11.132362365],[47.668194,11.095417],[47.417915,11.178193],[46.653194427,10.740416526],[46.431251526,10.681249619],[45.804584504,10.868472099],[44.945972443,10.408472061],[44.292915343,10.428749084],[43.652084,10.991527],[43.478748,11.328194],[43.258129,11.460972],[42.93608288,10.966264936]]]},"properties":{"id":"143d55cf-04ce-4f09-b7fd-c40c6df9849b","code":"SOM","name":"Somalia","abbreviation":"C-SOM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.000228881,-24.766942978],[19.999160766,-28.427820206],[19.54847908,-28.540840149],[19.11829,-28.96944],[18.728670119,-28.831699371],[18.19383,-28.91527],[17.92565,-28.768841001],[17.410549,-28.71348],[17.41403969,-28.37603967],[17.082199097,-28.032949448],[16.754579545,-28.272560118],[16.73399,-28.494261],[16.45813,-28.636805],[16.817919,-29.096527],[17.357915879,-30.482082367],[17.87735939,-31.320972442],[18.280416489,-31.897361756],[18.334304809,-32.476528168],[18.136806487,-32.778194427],[17.922085,-32.720974],[17.871528626,-33.000415802],[18.284027,-33.454861],[18.488193513,-33.851249694],[18.310695648,-34.044303893],[18.867639541,-34.160694122],[18.810972213,-34.350971221],[19.30514,-34.424862],[19.655416,-34.785973],[20.08291626,-34.733196259],[20.930696,-34.366806],[21.290693,-34.438751],[21.905971527,-34.344306946],[22.155695,-34.08625],[22.564027786,-33.996250153],[23.375416,-34.098473],[23.569305,-33.980415],[24.195138931,-34.059860229],[24.825695039,-34.211250306],[24.995138169,-33.978748321],[25.578193665,-34.049304962],[25.6720829,-33.814582824],[25.931805,-33.71014],[26.466528,-33.773193],[27.113194,-33.523472],[27.919027,-33.029305],[28.880138,-32.278473],[29.414581298,-31.691528321],[29.961805,-31.33736],[30.228195191,-31.058195114],[30.624860763,-30.513473511],[31.127084732,-29.653472899],[31.756526947,-28.971250533],[32.010139466,-28.88041687],[32.375415803,-28.560138702],[32.53541565,-28.191528321],[32.683193208,-27.48513794],[32.89125061,-26.858415603],[32.133117676,-26.840190888],[32.015861512,-26.819879532],[31.977760314,-27.317520141],[31.493259431,-27.314920424],[31.150550842,-27.202079774],[30.81321907,-26.844480514],[30.805059432,-26.46667099],[31.126600265,-25.921150208],[31.41629982,-25.718759537],[31.867860794,-25.999599456],[31.973690033,-25.953199387],[32.03358841,-25.132520676],[31.987129211,-24.302200318],[31.561019898,-23.481960297],[31.56360054,-23.198230744],[31.307275773,-22.420276642],[30.831733698,-22.289381165],[30.278530774,-22.349150761],[29.773590088,-22.141420365],[29.368310928,-22.197811127],[29.036939622,-22.216310502],[28.921869277,-22.458379745],[28.342639923,-22.573720932],[27.599720002,-23.217590331],[27.528650284,-23.385269166],[27.134050369,-23.536640167],[26.971069337,-23.702760696],[26.868049622,-24.245109557],[26.393280029,-24.636629104],[25.858310699,-24.75717926],[25.888500213,-24.884290694],[25.580879211,-25.638799667],[25.334129334,-25.771020888],[25.015270232,-25.725570678],[24.685869217,-25.823329924],[23.90337944,-25.626810073],[23.468269348,-25.279470444],[23.014129638,-25.29821968],[22.863750458,-25.47961998],[22.557409286,-26.221759797],[22.192789078,-26.395849227],[22.052160263,-26.632860183],[21.787389756,-26.676059722],[21.694839477,-26.861240387],[21.134170532,-26.873760224],[20.622430802,-26.786249161],[20.604450227,-26.520839691],[20.82278061,-26.176500321],[20.788230896,-25.803110122],[20.384170532,-25.034299851],[20.000228881,-24.766942978]],[[28.37182045,-30.169679641],[28.20690918,-30.290670395],[28.123199462,-30.663389206],[27.781669616,-30.617300033],[27.366889954,-30.273660659],[27.096581,-29.729931001],[27.614170075,-29.164180756],[27.75358963,-28.898000716],[28.028430939,-28.873949051],[28.168510438,-28.705259322],[28.612779616,-28.597480774],[28.94380951,-28.782659531],[29.356149673,-29.127580642],[29.455610276,-29.341199874],[29.162639617,-29.677009582],[29.108989716,-29.936969756],[28.858789444,-30.088230132],[28.37182045,-30.169679641]]]},"properties":{"id":"178f827c-71f2-476f-b552-aa37787042dd","code":"ZAF","name":"South Africa","abbreviation":"C-ZAF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-37.68042,-53.986694],[-37.268921,-54.260803],[-36.487793,-54.573608],[-36.097778,-54.891388],[-35.894016,-54.540279],[-36.633972,-54.118408],[-37.68042,-53.986694]]]},"properties":{"id":"70d7df9c-517e-47eb-a3df-e661fd590c9e","code":"SGS","name":"South Georgia and the South Sand","abbreviation":"C-SGS","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.543949242,37.781810761],[126.531617391,37.655161402],[126.782781022,36.975124799],[126.489059037,37.059524972],[126.135563915,36.775970858],[126.455276798,36.595386616],[126.706761878,35.796515504],[126.467247722,35.634431611],[126.320603542,35.12748167],[126.412419969,34.842656662],[126.280147402,34.595421721],[126.635438309,34.412052906],[127.268826014,34.481762546],[127.983378336,34.975738435],[128.132242555,34.888523276],[128.618753616,35.135871898],[128.834798112,35.010656104],[129.194398717,35.160222339],[129.458429814,35.553256352],[129.547180357,36.084892837],[129.372556342,36.207016416],[129.474994054,36.697908085],[129.356620835,37.235680276],[129.055406499,37.675422113],[128.60879611,38.150147848],[128.358484762,38.611772897],[128.137710571,38.328300476],[127.139442444,38.307243347],[126.975593999,38.199679999],[126.667114257,37.785064698],[126.543949242,37.781810761]]],[[[126.531660744,33.52128762],[126.161540511,33.334150037],[126.272150083,33.194066745],[126.83006446,33.306582277],[126.824935608,33.558744107],[126.531660744,33.52128762]]]]},"properties":{"id":"b204e9c9-5bb4-4a31-ba1e-fa755c7d7ea8","code":"KOR","name":"South Korea","abbreviation":"C-KOR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[27.463420868,5.016152859],[28.026273728,4.538108826],[28.414470673,4.282824516],[29.028129577,4.490709782],[29.199041366,4.356179715],[29.475528717,4.667393684],[29.820289612,4.558716774],[29.798370362,4.368258954],[30.264030457,3.956274986],[30.771329879,3.674677373],[30.870231629,3.482681989],[30.972940444,3.696516037],[31.290119172,3.796540976],[31.507926941,3.676660061],[31.827354431,3.818788051],[32.089031219,3.538037063],[32.415290832,3.745963096],[33.027759551,3.893971919],[33.17881775,3.779093028],[33.514507293,3.755254031],[34.001964569,4.221364975],[34.371459961,4.624292374],[35.350734712,5.009996415],[35.537353516,4.95882702],[35.583602906,4.623889923],[35.869949342,4.627306938],[35.786293029,4.731453418],[35.854255676,5.314599514],[35.578666687,5.414402485],[35.300106049,5.332475186],[34.990890502,5.895375729],[35.013782502,6.444958211],[34.484283448,6.904287815],[34.19324112,7.054917813],[34.028770448,7.369585514],[33.672336578,7.692183971],[33.050086975,7.787284852],[33.189357758,8.13451004],[33.192653656,8.406893731],[33.62003708,8.468573571],[33.772457122,8.369579315],[34.142097473,8.610931397],[34.104160308,9.48771286],[33.891750335,9.484760284],[33.987941742,9.929388047],[33.951808929,10.166219712],[33.306148529,10.815569878],[33.138408661,11.583299638],[33.255249024,12.201219558],[32.723999023,12.218999864],[32.723999023,11.906000137],[32.174358369,11.905389786],[32.39307022,11.693539619],[32.396339416,11.196709633],[32.472740174,11.027890207],[31.99682045,10.629859925],[31.802619935,10.307259561],[31.348680496,9.773063659],[30.83126068,9.71126175],[30.60239029,9.923901557],[29.996770859,10.288800239],[29.520380021,10.069600105],[29.522029878,9.738073349],[29.067770004,9.729149819],[28.759059906,9.337123871],[28.033979416,9.33458805],[27.899959564,9.603263855],[27.288549424,9.617733955],[26.719720841,9.482310295],[26.369260789,9.570934295],[26.214450837,9.90997982],[25.92811966,10.172309875],[25.822000503,10.418999672],[25.079000473,10.291999816],[24.924999237,9.899000168],[24.742860795,9.728356362],[24.615940095,9.383694649],[24.579860687,8.935362815],[24.257768631,8.67911911],[24.203580857,8.303997994],[24.864749909,8.180498123],[24.909490585,8.047219277],[25.284540177,7.803597927],[25.173980714,7.569643974],[25.361097335,7.344515801],[25.804990768,7.152908803],[26.11469078,6.815334797],[26.415109635,6.637384891],[26.29789734,6.387691975],[26.560180663,6.033278943],[27.153097152,5.771763801],[27.233200073,5.426796914],[27.463420868,5.016152859]]]},"properties":{"id":"42a57f46-76e6-4ccb-abea-670cd507689a","code":"SSD","name":"South Sudan","abbreviation":"C-SSD","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.440829039,42.588253022],[1.357378126,42.719421386],[0.708183944,42.861328126],[0.66871202,42.68893814],[0.000748,42.685211183],[-0.306374997,42.841320038],[-0.573617934,42.807399751],[-0.752805233,42.966960908],[-1.345170616,43.092971803],[-1.384181142,43.253223419],[-1.786638975,43.350418091],[-2.177917,43.28764],[-2.947083951,43.435970306],[-3.034028053,43.367637634],[-3.597637892,43.512638093],[-4.220973014,43.393749237],[-4.653751,43.40097],[-5.693749905,43.547084809],[-7.244027137,43.566249848],[-7.355971813,43.670139313],[-7.867915999,43.770695],[-8.262639,43.556252],[-8.547637939,43.311248779],[-8.984583,43.28125],[-9.256805,43.092083],[-9.298193932,42.921527864],[-8.889862,42.49625],[-8.873302459,41.869888305],[-8.526394843,42.077056885],[-8.196352005,42.152729034],[-8.164990425,41.818115234],[-7.733328818,41.892276764],[-7.427977085,41.808166505],[-7.076929092,41.951931],[-6.599432945,41.948291779],[-6.548253059,41.685581208],[-6.189142226,41.574813843],[-6.437616825,41.305305481],[-6.64836502,41.24753952],[-6.859950065,40.950763703],[-6.78121519,40.36379242],[-7.012691975,40.225448608],[-6.866662979,40.015232087],[-7.015522957,39.6704216],[-7.499413014,39.589603425],[-7.294268131,39.456821443],[-7.144035817,39.108627319],[-6.951142788,39.023593902],[-7.260046005,38.722942352],[-7.317526817,38.440353394],[-7.002025127,38.022396087],[-7.245584965,37.991802216],[-7.508997916,37.523159028],[-7.403612138,37.177665711],[-6.93014,37.184307],[-6.517917157,36.975139618],[-6.365906,36.620728],[-6.054305078,36.203472138],[-5.581250191,36.012638091],[-5.353473187,36.157154083],[-5.339028,36.154674549],[-5.217360974,36.379306793],[-4.639028072,36.506248474],[-4.428472,36.708752],[-3.260972977,36.753192903],[-2.699583053,36.682361604],[-2.367361,36.841526],[-2.194027901,36.720973968],[-2.002084016,36.836250305],[-1.795415997,37.232917785],[-1.356202,37.55072],[-0.717638,37.606804],[-0.85958302,37.722915651],[-0.63847202,38.136806488],[-0.376805008,38.440692903],[0.221806,38.757637],[-0.149583996,38.987361909],[-0.316249996,39.523471833],[0.742082001,40.82347107],[1.04541695,41.063194276],[2.113472,41.289585],[2.25708294,41.452640533],[2.777362108,41.649307251],[3.202639103,41.891250611],[3.124861956,42.127082825],[3.17407012,42.435192107],[2.839868069,42.45898819],[2.582230091,42.357074737],[2.257082463,42.438488007],[2.015197993,42.347400666],[1.721941949,42.501228332],[1.456564,42.435902],[1.440829039,42.588253022]]],[[[3.240138053,39.37486267],[3.457916,39.744583],[3.154861927,39.766803741],[3.023472,39.933472],[2.344584,39.587917],[2.644583941,39.564861298],[2.788750886,39.361804963],[3.049583911,39.265140533],[3.240138053,39.37486267]]],[[[-16.599306106,28.027360917],[-16.43486023,28.140415192],[-16.330415726,28.577083589],[-16.513474001,28.419305999],[-16.923749924,28.354305267],[-16.70652771,28.008472442],[-16.599306106,28.027360917]]],[[[-15.563194275,27.760139465],[-15.430972099,27.802360536],[-15.423471,28.121529],[-15.698193551,28.164028168],[-15.831527711,27.909582138],[-15.563194275,27.760139465]]],[[[-13.921806336,28.250694275],[-13.840417999,28.727638],[-14.019583001,28.692083],[-14.215418,28.225973],[-13.921806336,28.250694275]]],[[[4.300695,39.840416],[4.173193,40.060696],[3.827915906,40.053749085],[3.822361946,39.922637941],[4.300695,39.840416]]],[[[-17.795139312,28.52263832],[-17.788194657,28.843751907],[-18.007359,28.782915],[-17.795139312,28.52263832]]]]},"properties":{"id":"f0d28cf6-0e73-460c-b40a-e900ab9e2602","code":"ESP","name":"Spain","abbreviation":"C-ESP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.286942,11.055],[114.280556,11.051945],[114.286942,11.050555],[114.286942,11.055]]]},"properties":{"id":"dc3668c4-d415-4166-87fd-1c0a60357b8c","code":"XSP","name":"Spratly Islands","abbreviation":"C-XSP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[79.920418,8.805417],[79.834305,8.129582],[79.74514,7.996016],[79.871803284,7.120972157],[79.841247559,6.931249141],[80.063194275,6.190764905],[80.261528016,5.999584199],[80.717087,5.959861],[81.416252135,6.264306069],[81.697639466,6.492639066],[81.878471375,7.022084235],[81.862083434,7.34236002],[81.48764,8.016806],[81.321526,8.525138],[81.037918,8.881529],[80.815414,9.287361],[80.449303,9.544584],[80.248191833,9.828194618],[79.863747,9.76264],[80.170975,9.65625],[80.054581,9.39236],[80.120697,9.22375],[79.920418,8.805417]]]},"properties":{"id":"bf1eb127-aa61-4ed8-be8c-533634323d1a","code":"LKA","name":"Sri Lanka","abbreviation":"C-LKA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[24.257768631,8.67911911],[24.579860687,8.935362815],[24.615940095,9.383694649],[24.742860795,9.728356362],[24.924999237,9.899000168],[25.079000473,10.291999816],[25.822000503,10.418999672],[25.92811966,10.172309875],[26.214450837,9.90997982],[26.369260789,9.570934295],[26.719720841,9.482310295],[27.288549424,9.617733955],[27.899959564,9.603263855],[28.033979416,9.33458805],[28.759059906,9.337123871],[29.067770004,9.729149819],[29.522029878,9.738073349],[29.520380021,10.069600105],[29.996770859,10.288800239],[30.60239029,9.923901557],[30.83126068,9.71126175],[31.348680496,9.773063659],[31.802619935,10.307259561],[31.99682045,10.629859925],[32.472740174,11.027890207],[32.396339416,11.196709633],[32.39307022,11.693539619],[32.174358369,11.905389786],[32.723999023,11.906000137],[32.723999023,12.218999864],[33.255249024,12.201219558],[33.138408661,11.583299638],[33.306148529,10.815569878],[33.951808929,10.166219712],[33.987941742,9.929388047],[33.891750335,9.484760284],[34.104160308,9.48771286],[34.233119964,10.047500611],[34.351406097,10.220916748],[34.297584534,10.58566761],[34.609779358,10.897207261],[34.765399933,10.755145074],[34.982345582,10.898525238],[34.929664611,11.235751152],[35.078003,11.521461],[35.046604156,11.735230447],[35.257106782,11.934239388],[35.64748764,12.60518551],[36.051094055,12.722047806],[36.499076842,13.846787453],[36.56085968,14.266368867],[36.438766479,15.156636239],[36.541568756,15.228030205],[36.962570191,16.435497283],[36.901100158,16.675794601],[37.021255182,17.096046089],[37.394653,17.047132],[37.515297616,17.336853131],[38.003860272,17.55707905],[38.260128,17.558592],[38.569859,18.006536],[38.405418,18.177359],[38.100693,18.281805],[37.954582,18.558472],[37.543194,18.717638],[37.411804,18.876528],[37.237362,19.674028],[37.193748,20.463753],[37.241806,20.545694],[37.09264,21.072639],[37.140141,21.228193],[36.911804,21.615973],[36.892918,22.066528],[36.440418,22.358194],[36.187916,22.661528],[35.94014,22.687916],[35.621292,23.145147],[35.21217,22.787298],[34.951351,22.857571],[34.691956,22.297911],[34.16069,22.2071],[34.005215,21.772324],[33.564083,21.725389],[33.166507721,22.006193162],[27.633972168,22.007652283],[24.999998094,21.999200822],[24.999998094,20.000000001],[24.000001907,20.000000001],[24.000001907,19.50817303],[24.001709,15.704895],[23.578140259,15.753810882],[23.122280121,15.709900857],[22.930589676,15.550810815],[22.999729156,15.237211227],[22.671070099,14.848720551],[22.717199326,14.686429978],[22.411161423,14.595859527],[22.536350249,14.118578912],[22.092212677,13.776200295],[22.284210204,13.349691392],[21.925670623,13.046876907],[21.934240342,12.639361382],[22.197887421,12.750161171],[22.458890915,12.619771004],[22.372142792,12.441511155],[22.635040284,12.026799202],[22.56608963,11.620661736],[22.986078263,11.199601173],[22.88133812,10.93089962],[23.301879884,10.474639892],[23.668241501,9.891513825],[23.653650285,9.293912889],[23.47631073,9.141964913],[23.588710785,8.93418789],[23.52010727,8.726968765],[24.257768631,8.67911911]]]},"properties":{"id":"8e61ebbf-3973-403a-a69c-fb6cab5b5831","code":"SDN","name":"Sudan","abbreviation":"C-SDN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-54.524669648,2.304801942],[-54.22070694,2.756202937],[-54.21024704,3.128951073],[-54.014019012,3.425174952],[-54.026130677,3.634015083],[-54.362720489,4.057462215],[-54.474246978,4.903629781],[-54.011615754,5.621387005],[-54.018470763,5.827361106],[-54.663471222,5.975972175],[-55.852085,5.979029],[-55.935695648,5.805416108],[-56.958473,6.012639],[-57.146744,5.992897],[-57.180747985,5.613527776],[-57.348628997,5.312994956],[-57.329795837,5.04158783],[-57.680843354,5.020936966],[-57.928577423,4.832964897],[-57.845840453,4.630971909],[-58.086399078,4.131200791],[-57.692398071,3.402242899],[-57.30506134,3.373516083],[-57.207618714,2.841795922],[-57.103607178,2.767931939],[-56.689189911,2.018347026],[-56.480251313,1.941472054],[-55.994968415,1.831146002],[-55.909862517,2.03271699],[-56.047626495,2.228108883],[-55.946421067,2.531918521],[-55.738914489,2.401213885],[-55.42848587,2.439435006],[-54.972595215,2.604665996],[-54.858329773,2.435056925],[-54.524669648,2.304801942]]]},"properties":{"id":"fa5cf9f2-57c9-4761-bedc-e9facd89f600","code":"SUR","name":"Suriname","abbreviation":"C-SUR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[16.272917,80.056252],[15.639584,79.864586],[15.652083,79.741669],[16.379168,78.902084],[16.070833,79.012497],[15.414583,79.366669],[14.927083,79.73542],[14.5375,79.800003],[13.85,79.533333],[14.116667,79.32708],[13.054167,79.591667],[12.38125,79.51667],[12.3625,79.585419],[13.225,79.708336],[13.683333,79.685417],[13.741667,79.879166],[12.58125,79.758331],[12.195833,79.835419],[12.248437,79.660934],[11.925,79.70417],[11.783334,79.839584],[11.202084,79.779167],[11.333854,79.652603],[10.727083,79.558334],[10.85625,79.337502],[11.204687,79.109901],[11.664062,79.180733],[11.458333,79.333336],[12.03125,79.28125],[11.704166,79.064583],[12.520833,78.991669],[12.372916,78.885414],[11.535937,78.97448],[11.898437,78.638016],[12.389584,78.541664],[13.083333,78.229164],[13.689584,78.197914],[14.277083,78.29792],[14.185416,78.395836],[14.75625,78.387497],[14.541667,78.543747],[14.620833,78.73333],[14.927083,78.591667],[15.479167,78.683334],[15.425,78.458336],[16.293751,78.554169],[16.49375,78.697914],[16.772917,78.645836],[16.139584,78.362503],[15.615104,78.307816],[14.8125,78.120834],[13.60625,78.060417],[13.79375,77.745834],[15.070833,77.79792],[15.339583,77.870834],[16.470833,77.849998],[16.762501,77.8125],[15.425,77.73333],[14.735416,77.645836],[15.810416,77.522919],[14.352083,77.57917],[13.945833,77.427086],[14.471354,77.173439],[15.047916,77.158333],[15.18125,77.022919],[15.825,76.95417],[15.495833,76.879166],[16.664583,76.558334],[17.045313,76.635933],[16.793751,76.787498],[17.258333,76.939583],[17.44375,77.306252],[17.768749,77.518753],[18.229166,77.5],[18.347918,77.883331],[18.522917,78.056252],[19.04323,78.098434],[19.0625,78.335419],[18.845833,78.541664],[19.970833,78.629166],[20.479166,78.727081],[21.214582,78.67292],[21.104166,78.845833],[20.639584,78.852081],[20.129168,78.997917],[19.793751,78.95417],[19.677084,79.127083],[19.370832,79.179169],[18.829166,79.145836],[18.6625,79.537498],[18.210417,79.612503],[18.004168,79.445831],[17.689583,79.35833],[17.61875,79.550003],[17.972918,79.745834],[17.560417,79.88958],[16.918751,79.943748],[16.7875,79.862503],[16.529167,80.043747],[16.272917,80.056252]]],[[[22.7875,80.5],[22.802084,80.385414],[22.121353,80.02552],[21.685417,80.220833],[20.825001,80.199997],[20.310417,80.412498],[19.633333,80.504166],[19.604166,80.214584],[18.991667,80.34375],[19.202084,80.089584],[18.883333,80.1875],[17.983334,80.17292],[18.152082,80.037498],[18.93125,80.083336],[18.833334,79.960419],[18.177084,79.895836],[18.452084,79.78125],[19.904167,79.75],[20.65625,79.804169],[21.604166,79.820831],[21.856251,79.693748],[20.991667,79.697914],[20.208334,79.614586],[19.6625,79.61042],[20.05625,79.458336],[21.820833,79.335419],[22.879688,79.364067],[22.941668,79.247917],[23.950001,79.210419],[24.320833,79.3125],[25.35,79.372917],[25.620832,79.5625],[26.59375,79.706253],[27.147917,79.82917],[27.197916,80.07708],[26.762501,80.150002],[25.85,80.168747],[24.18125,80.35833],[24.1875,80.243752],[23.737499,80.283333],[23.579166,80.114586],[22.971354,80.151566],[23.254168,80.256248],[23.216667,80.445831],[22.7875,80.5]]],[[[22.8375,78.25],[22.160418,78.195831],[21.672916,78.21875],[20.841667,78.116669],[21.529167,77.935417],[20.924999,77.587502],[20.862499,77.441666],[21.772917,77.497917],[22.549999,77.614586],[22.885416,77.574997],[22.65625,77.237503],[23.422916,77.408333],[24.191147,77.738022],[24.268229,77.933853],[23.510416,77.927086],[22.8375,78.25]]],[[[21.30625,78.629166],[21.014584,78.558334],[20.204166,78.502083],[20.55625,78.443748],[21.052084,78.20208],[22.195833,78.324997],[21.960417,78.61042],[21.30625,78.629166]]],[[[32.953644,80.311981],[32.345833,80.285416],[31.643229,80.18177],[31.641666,80.041664],[32.306252,80.10833],[33.337502,80.145836],[33.456249,80.239586],[32.953644,80.311981]]],[[[10.554687,78.892189],[10.50625,78.779167],[11.052604,78.464066],[11.829687,78.3974],[11.3,78.543747],[10.966666,78.841667],[10.554687,78.892189]]],[[[-8.047916,71.191666],[-8.477083,71.01458],[-8.00625,71.012497],[-8.047916,71.191666]]]]},"properties":{"id":"8e4ca0c3-6bd9-4487-a030-be7fa1a93b41","code":"SJM","name":"Svalbard and Jan Mayen","abbreviation":"C-SJM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[31.973690033,-25.953199387],[31.867860794,-25.999599456],[31.41629982,-25.718759537],[31.126600265,-25.921150208],[30.805059432,-26.46667099],[30.81321907,-26.844480514],[31.150550842,-27.202079774],[31.493259431,-27.314920424],[31.977760314,-27.317520141],[32.015861512,-26.819879532],[32.133117676,-26.840190888],[32.087741853,-26.010898591],[31.973690033,-25.953199387]]]},"properties":{"id":"67d6a637-df21-4db5-8127-0cfaff15298a","code":"SWZ","name":"Swaziland","abbreviation":"C-SWZ","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[20.551206589,69.058761598],[20.062599181,69.046081544],[20.334260941,68.793495178],[19.927127838,68.356903077],[18.997116088,68.516189576],[18.126932145,68.536102294],[18.15452385,68.194000244],[17.909151077,67.970481872],[17.270755767,68.114746094],[16.733610152,67.911590577],[16.578447,67.665138],[16.109629,67.425087],[16.398286819,67.215156555],[16.388906479,67.043693543],[16.030618668,66.9092865],[15.389968929,66.473189997],[15.480572653,66.281852991],[15.036372,66.151505],[14.516809464,66.13457489],[14.618681908,65.808624269],[14.512542725,65.32219696],[13.677269,64.613113],[14.09589386,64.476539611],[14.156627654,64.190147401],[13.977729798,64.011589051],[13.257819176,64.0936203],[12.697851182,63.981346131],[12.155960082,63.596260071],[11.987943649,63.252304077],[12.216041565,63.002391816],[12.059845925,62.622909546],[12.295542717,62.283195495],[12.14113617,61.718437196],[12.568354606,61.57032013],[12.852286339,61.368545533],[12.688180924,61.061740876],[12.231455961,61.018287777],[12.59488,60.541663999],[12.462190629,60.046268464],[12.182251931,59.889839172],[11.879952431,59.871490479],[11.941164971,59.694381715],[11.693858146,59.606498719],[11.815518379,59.32925415],[11.653469,58.907196],[11.464693,58.890198],[11.219166,59.086342],[11.116389,58.992363],[11.2925,58.441528],[11.479168,58.236805],[11.767499,58.337639],[11.859168,58.196251],[11.734723,57.700974],[12.109723,57.434029],[12.360833,56.918751],[12.608056,56.822639],[12.949167,56.549026],[12.624723,56.428749],[12.772500038,56.217918396],[12.567501069,56.143470764],[13.054720879,55.692359925],[12.96861,55.401806],[13.359722137,55.336250306],[13.709722,55.425972],[14.200278,55.38625],[14.358612061,55.559307098],[14.240279,55.862083],[14.6875,56.166805],[15.354168,56.12764],[15.591946,56.212082],[15.851389,56.075417],[15.996387,56.202084],[16.575832,57.081528],[16.487499,57.28875],[16.720278,57.439583],[16.719725,57.688473],[16.47139,57.894859],[16.778055,57.966805],[16.949722,58.485138],[16.794167,58.597637],[17.387501,58.740139],[17.623611,58.882084],[17.826389,58.802917],[18.036945,59.046249],[18.7075,59.276527],[18.308056,59.454861],[18.804167,59.679028],[18.944721,59.877918],[18.573437,60.256771],[18.125,60.427082],[17.9375,60.602085],[17.353645,60.752602],[17.138021,60.952606],[17.195833,61.220833],[17.079166,61.543751],[17.253647,61.672394],[17.527082,62.166668],[17.365105,62.334896],[17.527603,62.452606],[18.059896,62.610935],[17.785938,62.984894],[18.111979,62.770309],[18.44323,62.869274],[18.583855,63.176559],[19.012501,63.1875],[19.452084,63.572918],[19.65,63.431252],[20,63.662498],[20.393749,63.670834],[20.726796,63.841667],[20.973438,64.15052],[21.51198,64.408852],[21.247917,64.606247],[21.241667,64.947914],[21.53125,65.056252],[21.597918,65.412498],[21.922916,65.397919],[22.314583,65.5625],[22.371353,65.868233],[23.054167,65.754166],[23.203646,65.832817],[24.154009,65.823013],[23.940001,66.148361],[23.745273591,66.184555055],[23.661266327,66.452293396],[23.879522324,66.555374146],[24.011131286,66.813613892],[23.579597473,67.143524171],[23.773107485,67.423248011],[23.426544237,67.453193995],[23.509559994,67.861701958],[23.167139053,68.238021851],[22.834108352,68.383499146],[22.063533783,68.475395202],[21.396774292,68.756782532],[20.907672883,68.890602113],[20.551206589,69.058761598]]],[[[18.738054,57.928471],[18.46139,57.819862],[18.105286,57.533749],[18.14971,57.168194],[18.290833,57.099583],[18.890837,57.444897],[18.738054,57.928471]]],[[[16.716389,56.652363],[17.150833,57.308193],[16.515278,56.74514],[16.379723,56.519306],[16.468611,56.226528],[16.716389,56.652363]]]]},"properties":{"id":"9004e7e2-b034-4e39-9bc5-3706f8ac3a64","code":"SWE","name":"Sweden","abbreviation":"C-SWE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.607548925,47.061646232],[9.486402,47.181839],[9.532011599,47.270304645],[9.561736197,47.502418292],[9.275901794,47.656135559],[8.898453712,47.648422241],[8.489027024,47.773269653],[8.428743362,47.566894532],[8.204054833,47.62089157],[7.696352958,47.532772064],[7.592329501,47.596214294],[7.386297704,47.43196869],[7.168905257,47.489501953],[6.955122947,47.243160248],[6.433014394,46.927818298],[6.424077035,46.754516602],[6.112953663,46.575119019],[6.221569065,46.312976932],[6.523421765,46.45698166],[6.822751999,46.423450469],[7.043088914,45.938652039],[7.122085095,45.862365722],[7.552368164,45.98715973],[7.873587131,45.92811966],[8.469340324,46.451969148],[8.463932038,46.226081848],[9.021220208,46.052516937],[9.297103883,46.315807342],[9.90239904,46.385559073],[10.173440933,46.258937835],[10.057415008,46.548709869],[10.392670631,46.680843353],[10.472848197,46.856806865],[10.348499919,46.990232983],[10.104813924,46.842195451],[9.607548925,47.061646232]]]},"properties":{"id":"1d26a62a-064f-48cd-937d-ced66f495556","code":"CHE","name":"Switzerland","abbreviation":"C-CHE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.363708497,37.10926056],[42.193946839,37.282180786],[41.975143432,37.159572601],[41.500850677,37.079544068],[40.781726837,37.120582581],[39.841827393,36.755321503],[39.227348327,36.6649971],[38.731472016,36.707485199],[38.563400268,36.838825226],[38.200469971,36.908008575],[37.461143494,36.638145447],[37.126838684,36.661655426],[36.668354034,36.836250305],[36.553031921,36.501113891],[36.674854279,36.22928238],[36.403385163,36.226360321],[36.368366242,35.994792938],[36.11644745,35.865512849],[35.91847229,35.932331085],[35.732910155,35.563751221],[35.915134429,35.416126251],[35.880974,34.882637],[35.97533,34.639839],[36.451049804,34.59230423],[36.617130279,34.207813263],[35.933517,33.650841],[35.817222992,33.364033],[35.900936001,32.938732],[35.779568177,32.751945711],[36.032905578,32.657917024],[36.409656525,32.382194519],[36.845825196,32.312484742],[36.956195832,32.390777588],[38.796836853,33.368171693],[41.012367249,34.419864655],[41.23449707,34.777236939],[41.282604217,35.48614502],[41.394287108,35.630271911],[41.258010865,36.054573059],[41.423007964,36.524684905],[41.828254699,36.593154908],[42.363708497,37.10926056]]]},"properties":{"id":"f9205fad-5022-45f0-af6d-3a72174bc7ee","code":"SYR","name":"Syria","abbreviation":"C-SYR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.673749,0.15625],[6.608748,0.407638],[6.461806,0.224305],[6.673749,0.15625]]]},"properties":{"id":"3e537ef2-b45d-41af-8006-a776bad5e0c7","code":"STP","name":"São Tomé and Príncipe","abbreviation":"C-STP","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.145691,23.525143],[120.03514099,23.102083207],[120.165412902,22.971527099],[120.335419,22.53264],[120.588196,22.369308],[120.728752,21.917641],[120.893196,22.048199],[120.894028,22.334028],[121.026253,22.658194],[121.321251,22.989027],[121.513748,23.482916],[121.615974,24.062084],[121.865135,24.588751],[121.945137,25.019305999],[121.598472999,25.291802999],[121.049858094,25.036806107],[120.830970765,24.66847229],[120.186806,23.811251],[120.145691,23.525143]]]},"properties":{"id":"8b173e78-7b01-4899-8e27-edfa7ada1d8f","code":"TWN","name":"Taiwan","abbreviation":"C-TWN","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[74.89031601,37.235990524],[75.133827,37.437439],[74.928017,37.55624],[74.995079,37.762791],[74.822876,38.083057],[74.867256164,38.4984169],[74.382217408,38.653030395],[74.069793701,38.531066895],[73.80670929,38.633499145],[73.845520019,38.947700501],[73.565124512,39.240421295],[73.658241273,39.465084075],[73.178894044,39.355201721],[72.679946899,39.394828796],[72.349525452,39.329994202],[72.257003785,39.175136566],[72.035629271,39.36648941],[71.562438965,39.454872132],[71.498931885,39.613620758],[70.768028,39.399357],[70.524002136,39.632574943],[70.304527,39.53006],[70.10424,39.602165],[69.340202331,39.53924942],[69.279899597,39.802967071],[69.562545777,40.103820801],[69.996131897,40.221988678],[70.565094,40.020699],[70.968498,40.228043],[70.645622254,40.165016174],[70.33267975,40.449245452],[70.789672852,40.725135803],[70.496482848,41.031852723],[70.365493775,40.891174316],[69.667678833,40.629947662],[69.400970458,40.782024384],[69.316139221,40.201591492],[68.999465942,40.220531465],[68.514877319,39.534103394],[67.70501709,39.65655899],[67.425483703,39.496959686],[67.462097169,39.20318985],[67.715362549,38.999656678],[68.115348815,39.010017396],[68.068481446,38.540653229],[68.402641297,38.194988252],[67.82836914,37.463287355],[67.790663956,37.185199858],[68.027057648,36.930368424],[68.305309296,37.103076936],[68.968215942,37.320434571],[69.250095368,37.095895767],[69.40558815,37.171580315],[69.378969193,37.43544674],[69.56879425,37.579673766],[70.265062968,37.607241313],[70.189167023,37.844972611],[70.504997253,38.122574807],[70.610661825,38.345732371],[70.989463806,38.490411123],[71.374122619,38.255630493],[71.252235413,37.931758881],[71.524085998,37.957069398],[71.59519577,37.805957794],[71.432665791,37.056616925],[71.566844941,36.764213562],[71.842369079,36.681288401],[72.342979431,36.989185334],[72.662944793,37.017257691],[72.817558289,37.232394219],[73.301261903,37.46227646],[73.775794984,37.439640045],[73.761749268,37.219787597],[74.276100158,37.401042938],[74.809270223,37.351248424],[74.89031601,37.235990524]]]},"properties":{"id":"824776b9-3bcf-4dfb-816b-0445f638fec1","code":"TJK","name":"Tajikistan","abbreviation":"C-TJK","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[29.391475678,-4.445250033],[29.373088836,-5.016916276],[29.575977326,-5.555999279],[29.594978333,-6.251998901],[29.82697487,-6.642999173],[30.238563537,-7.021797181],[30.795076198,-8.276758081],[31.016937939,-8.576676287],[31.376548793,-8.588562276],[31.98806949,-9.075258924],[32.437154381,-9.118147416],[32.545851713,-9.254399438],[32.955853378,-9.399693235],[33.440303803,-9.61266613],[33.760337829,-9.582036972],[33.943237305,-9.706129074],[34.036300659,-9.491929054],[34.501525879,-9.976361274],[34.555122375,-10.549004555],[34.651935577,-10.757631302],[34.628341676,-11.102042198],[34.92570877,-11.415079117],[34.957931518,-11.571338654],[35.575569152,-11.603464127],[35.823818207,-11.406799316],[36.172279359,-11.58955574],[36.201259614,-11.716184616],[36.719501496,-11.692878724],[36.826648712,-11.57818985],[37.419445038,-11.680004121],[37.747936248,-11.548653603],[37.933540345,-11.256524087],[38.261924743,-11.288425444],[38.486148835,-11.41489029],[38.884738922,-11.175510406],[39.241691589,-11.179941178],[39.529575349,-10.985413551],[39.991428376,-10.81612873],[40.436207,-10.47125],[40.238194,-10.233473],[39.957084657,-10.109862328],[39.654305,-9.369582],[39.619862,-9.064862],[39.357360839,-8.681248664],[39.265694,-8.317916],[39.449028015,-8.005985259],[39.290973663,-7.719583988],[39.305137635,-7.469027042],[39.551529,-7.13486],[39.076248,-6.503471],[38.843472,-6.338195],[38.779304504,-6.024027824],[39.211529,-4.869584],[39.19791031,-4.6660614],[37.785800934,-3.677098513],[37.585449219,-3.440469265],[37.672573089,-3.067704915],[37.430202484,-2.908893346],[34.077529908,-1.026245951],[33.930904389,-0.993206023],[30.823883057,-0.998916268],[30.471065521,-1.055845856],[30.56898117,-1.337487221],[30.839162826,-1.650841832],[30.853281022,-2.319875717],[30.543420792,-2.413010359],[30.408998488,-2.858831882],[30.811143875,-3.045857906],[30.829259872,-3.263623953],[30.500318527,-3.517182112],[30.043811798,-4.275174141],[29.707078934,-4.462446212],[29.391475678,-4.445250033]]],[[[39.560138702,-6.441804885],[39.510417939,-6.12597084],[39.183193,-5.912083],[39.198471069,-6.223473072],[39.560138702,-6.441804885]]],[[[39.678470904,-4.886805014],[39.642082214,-5.339028835],[39.79763794,-5.389307021],[39.846527,-4.930138],[39.678470904,-4.886805014]]]]},"properties":{"id":"d25c9892-b406-4873-abf6-48d9f2b3e9b2","code":"TZA","name":"Tanzania","abbreviation":"C-TZA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.206786775,14.342509659],[105.537147522,14.558449746],[105.578819275,14.995071411],[105.474609375,15.098529816],[105.63761139,15.658711434],[105.402229308,15.793421746],[105.414192199,16.012958526],[105.043159485,16.107429505],[104.736419678,16.569469451],[104.803031922,17.372699737],[104.277770996,17.85559082],[103.977539063,18.332412719],[103.853431702,18.285520554],[103.414916992,18.446161271],[103.24874878,18.366689682],[103.038780213,17.97546959],[102.687477112,17.866380691],[102.091217041,18.217750551],[101.267036438,17.595661163],[100.968528899,17.573548983],[101.02128601,17.890699388],[101.185272217,18.06191063],[101.056282043,18.440540313],[101.272979737,18.688631058],[101.189300538,19.398460388],[101.283370971,19.579750061],[100.884979248,19.604930878],[100.481719971,19.487640382],[100.408561835,19.733940126],[100.515289307,20.143909454],[100.331817627,20.39661026],[100.086769104,20.350891113],[99.518218995,20.360139847],[99.541389466,20.144479751],[99.07108307,20.09041977],[98.984138488,19.733381272],[98.850227356,19.805711746],[98.32598114,19.694761277],[98.085845948,19.807189941],[97.863769531,19.573209762],[97.837272644,19.092201232],[97.738777161,19.038570404],[97.771896361,18.575000764],[97.539405822,18.48759079],[97.640449524,18.285829544],[97.67626953,17.868341445],[98.33856964,17.049209594],[98.658470153,16.455762863],[98.669479371,16.282550811],[98.93257904,16.327238083],[98.609298706,16.041229248],[98.581329346,15.363599777],[98.30885315,15.310970306],[98.186272,15.09499],[98.251457215,14.830780983],[98.601577759,14.323830605],[98.970832825,14.07981968],[99.171791077,13.719991684],[99.211135865,13.206250191],[99.099800111,13.077100754],[99.403457642,12.459459304],[99.65927124,11.828301431],[99.172996649,11.045432036],[98.782463073,10.675721169],[98.773597863,10.423904136],[98.31868,9.182605],[98.205856,8.556886],[98.282257081,8.245348931],[98.699379,8.308691],[98.738922,8.076463],[98.919486999,8.035420001],[99.245918,7.685317],[99.394936,7.307931],[99.521584,7.249407999],[100.124443,6.40509],[100.171897888,6.693915845],[100.366157531,6.539310933],[100.818595887,6.437360763],[100.85369873,6.243780137],[101.094100952,6.26108122],[101.126502991,5.981280804],[100.986099244,5.806541921],[101.134300231,5.616197109],[101.286239623,5.821051121],[101.585510254,5.932411194],[101.814651489,5.737160207],[102.086631774,6.245808125],[101.758666993,6.525876046],[101.557220459,6.846111774],[101.018745423,6.853234768],[100.77571106,6.976421833],[100.511947633,7.309722901],[100.218330384,8.434444427],[99.952262879,8.632295609],[99.843330384,9.29389],[99.266388,9.219167],[99.171386718,9.653332711],[99.146957398,10.342486382],[99.492424,10.933751],[99.635002137,11.509166717],[100.020554,12.189307],[99.95451355,12.621125222],[100.103889464,13.056666374],[99.952217102,13.262779237],[100.057777406,13.416119575],[100.572502136,13.514442445],[100.93528,13.4625],[100.840546,12.675601],[101.418678,12.584942],[101.749443054,12.707782745],[102.259163,12.30557],[102.294441,12.186941],[102.751335144,12.044395447],[102.910336698,11.64827416],[102.704804795,12.179601672],[102.786861723,12.416207172],[102.510191085,12.670404413],[102.485721763,12.977163336],[102.349405943,13.277356414],[102.366648594,13.577938287],[102.52626428,13.564489859],[103.141920572,14.3263238],[103.655404711,14.439414871],[103.881708657,14.338021404],[104.277360904,14.408219692],[104.478402602,14.352013321],[104.805848828,14.43741878],[105.206786775,14.342509659]]]},"properties":{"id":"b1e59cb0-c888-4760-822e-0b5e80bb179c","code":"THA","name":"Thailand","abbreviation":"C-THA","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.087966919,-9.458633422],[125.393333436,-9.263611793],[125.943611144,-9.133055688],[126.143608093,-8.99416542],[126.478088379,-8.946998597],[126.582496642,-8.80611229],[127.012779235,-8.68638897],[127.301109,-8.431112],[126.96055603,-8.326665878],[126.553970338,-8.481455802],[125.852783203,-8.474960327],[125.126113892,-8.640001296],[124.949935914,-8.958686829],[125.087966919,-9.458633422]]],[[[124.476135254,-9.174365043],[124.058174134,-9.357751847],[124.35659027,-9.481808662],[124.476135254,-9.174365043]]]]},"properties":{"id":"3ffbaf01-47d6-4379-8898-60ace0c72853","code":"TLS","name":"Timor-Leste","abbreviation":"C-TLS","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.912175531,10.99653698],[0.503931001,11.012744001],[-0.134967872,11.13706899],[0.033877909,10.992621832],[-0.087270273,10.716004724],[0.396027973,10.314177108],[0.382733564,9.937065217],[0.23890288,9.570471323],[0.566590189,9.405599734],[0.379434582,8.749738712],[0.645860944,8.486721407],[0.626224007,7.850379392],[0.519026965,7.513392359],[0.644656864,7.397928189],[0.562348456,6.906712047],[0.749223939,6.448189283],[1.199555296,6.130090006],[1.629444,6.236389],[1.807527,6.286359999],[1.578130797,6.685646682],[1.641587,6.993990001],[1.649164,8.490761],[1.624506,9.042144],[1.421417,9.306945],[1.364112999,10.012135],[0.774549218,10.384950389],[0.912175531,10.99653698]]]},"properties":{"id":"24c91178-e84a-4267-bd43-a7aae74ce30f","code":"TGO","name":"Togo","abbreviation":"C-TGO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-171.785004,-9.149167],[-171.787781,-9.156944],[-171.783615,-9.172499],[-171.766113,-9.206111],[-171.785004,-9.159444],[-171.785004,-9.149167]]]},"properties":{"id":"b3b74c0d-410a-4a38-b064-a1c2e2652144","code":"TKL","name":"Tokelau","abbreviation":"C-TKL","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-175.091659999,-21.197221999],[-175.246154999,-21.109592001],[-175.334717,-21.159165999],[-175.139998999,-21.271944],[-175.091659999,-21.197221999]]]},"properties":{"id":"2a36b92f-75aa-4fbd-bba2-78a4854b3d13","code":"TON","name":"Tonga","abbreviation":"C-TON","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.506053925,10.071544648],[-61.009029388,10.154305459],[-61.037918091,10.685138703],[-60.910694122,10.835973739],[-61.365695954,10.812084199],[-61.507637025,10.645695687],[-61.456298829,10.30180645],[-61.787918091,10.148472786],[-61.506053925,10.071544648]]]},"properties":{"id":"a4cdc6bd-3bdd-46d4-a8ac-2f594d5746e7","code":"TTO","name":"Trinidad and Tobago","abbreviation":"C-TTO","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.557297706,30.236810685],[9.888902664,30.349187851],[10.30777359,30.908971787],[10.140620232,31.493297578],[10.291164399,31.690118791],[10.529793739,31.747297288],[10.639128684,31.967941285],[10.982084275,32.186714173],[11.527318954,32.402809142],[11.488797189,32.667663575],[11.564454379,33.165408809],[11.188195,33.201805],[11.108195,33.55764],[10.918749,33.669304],[10.480695,33.644028],[10.123472213,33.880695342],[10.025138855,34.086250305],[10.120694161,34.315692901],[10.600695611,34.549304963],[10.869861603,34.797359467],[11.11986,35.22403],[11.047083001,35.626804],[10.647639275,35.815139771],[10.483473,36.052917],[10.555137634,36.384860993],[10.811804771,36.459583282],[11.132361412,36.86958313],[11.060140001,37.071250999],[10.586528777,36.864860535],[10.412083,36.714584],[10.066528,37.270138001],[9.667362213,37.338470459],[9.027916909,37.139583589],[8.645665995,36.936630792],[8.448978782,36.620546818],[8.309052468,36.173706056],[8.268895595,35.737574513],[8.335195541,35.280849457],[8.475512505,35.236818314],[8.249697685,34.920059204],[8.282794953,34.653060914],[7.856798268,34.406207276],[7.81585312,34.212932586],[7.580777167,34.085739136],[7.531700135,33.804058076],[7.832243681,33.190273285],[8.117932321,33.097696304],[8.323304176,32.82302475],[8.357524872,32.502140044],[9.065976143,32.086891174],[9.557297706,30.236810685]]]},"properties":{"id":"45dba9be-79c2-4e9b-8e70-61f95d11e5af","code":"TUN","name":"Tunisia","abbreviation":"C-TUN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.47107315,41.129486085],[42.829284668,41.587890626],[42.504489899,41.445480347],[41.548194885,41.526275636],[41.402362824,41.381526948],[40.230693818,40.928470611],[39.664859771,40.994861602],[39.418193817,41.107639314],[38.36541748,40.908748627],[37.536529541,41.020973205],[36.997917175,41.282917023],[36.651806,41.383472],[36.392082214,41.252639771],[35.954860688,41.73513794],[35.565418244,41.630973817],[35.278751374,41.714862823],[35.016250611,42.093193054],[34.801528931,41.955417633],[34.290416718,41.941806793],[33.338195801,42.020416261],[32.498474122,41.800415039],[32.124584199,41.596805573],[31.391805649,41.305973053],[31.307638168,41.120693208],[30.755695344,41.086250304],[30.278748999,41.205418001],[29.819583893,41.143196105],[29.257360458,41.234584808],[29.02180481,40.978195191],[29.35375023,40.755416869],[28.793193818,40.552360534],[29.053192139,40.362915039],[28.145695001,40.395695],[27.532083511,40.300971984],[27.287082672,40.474582672],[26.776527,40.405972],[26.177083969,39.988193513],[26.070972442,39.471805573],[26.727363587,39.567359925],[26.930692672,39.48513794],[26.696251,39.266251],[27.062916,38.869026],[26.727081,38.71986],[26.92375,38.456806],[26.644583,38.339584],[26.515972,38.430695],[26.272638,38.269306],[26.615137,38.111805],[26.751249,38.222084],[27.277360917,37.926528932],[27.10014,37.680695],[27.226807,37.40097],[27.476805,37.334862],[27.646528,36.979027],[28.326530457,37.049304963],[28.027914,36.791527],[28.095694,36.641251],[28.407639,36.788193],[28.669584,36.692085],[29.091249,36.679028],[29.139307,36.358749],[29.777639,36.136532],[30.149027,36.300415],[30.487638,36.279026],[30.577917,36.800694],[30.982918,36.858196],[31.315971,36.812637],[32.01625061,36.542915344],[32.295417787,36.234306336],[32.802916999,36.015694],[32.950138092,36.103748323],[33.687363,36.159863],[34.57375,36.77375],[34.762917,36.809582],[35.342918,36.539585],[35.622639,36.605141],[36.017082214,36.930137634],[36.203194,36.78764],[36.163192748,36.595138549],[35.779582977,36.319026948],[35.91847229,35.932331085],[36.11644745,35.865512849],[36.368366242,35.994792938],[36.403385163,36.226360321],[36.674854279,36.22928238],[36.553031921,36.501113891],[36.668354034,36.836250305],[37.126838684,36.661655426],[37.461143494,36.638145447],[38.200469971,36.908008575],[38.563400268,36.838825226],[38.731472016,36.707485199],[39.227348327,36.6649971],[39.841827393,36.755321503],[40.781726837,37.120582581],[41.500850677,37.079544068],[41.975143432,37.159572601],[42.193946839,37.282180786],[42.363708497,37.10926056],[42.591648101,37.147251128],[42.730808259,37.345062255],[43.167404175,37.373977662],[43.666557312,37.230865479],[44.237377166,37.279071808],[44.268787385,36.982971192],[44.637741089,37.186740876],[44.804965973,37.148143768],[44.602615356,37.444278717],[44.597114563,37.763763428],[44.238861083,37.887115478],[44.401329041,38.140964508],[44.316131591,38.833858491],[44.0472641,39.366794587],[44.441123963,39.435874939],[44.606552125,39.773357391],[44.820220947,39.625209808],[44.772602081,39.71364975],[44.262771606,40.050014497],[43.905479431,40.018466949],[43.546657562,40.468128205],[43.748699189,40.735939026],[43.47107315,41.129486085]]],[[[26.368787765,41.714229584],[26.596136093,41.615470886],[26.641773224,41.390888214],[26.331443787,41.253940582],[26.35091,40.949791],[26.031528,40.733902],[26.09514,40.604305],[26.818750382,40.647083283],[26.834863662,40.581249238],[26.21846962,40.319583894],[26.381805419,40.14402771],[26.740140916,40.477085114],[27.309305191,40.702362061],[27.511249542,40.974304199],[27.894306184,40.965137482],[28.233473,41.077641],[28.873750687,40.968471528],[29.105417251,41.205696106],[28.261806487,41.502082825],[27.976804733,41.845973969],[28.034662246,41.98236084],[27.563875198,41.901424408],[27.271862029,42.106300353],[26.619506835,41.963897705],[26.368787765,41.714229584]]]]},"properties":{"id":"8e41e4ce-8c38-481d-970c-f10b1bd0d176","code":"TUR","name":"Turkey","abbreviation":"C-TUR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[66.526388264,37.34608813],[66.548225403,37.79177475],[66.676628112,37.961967468],[65.851486207,38.274082183],[65.481369018,38.31899643],[65.025039673,38.61246109],[64.177116395,38.959190369],[63.539127349,39.383579254],[62.487949371,39.951393128],[62.349460616,40.438297203],[62.113071442,40.596107484],[61.970878602,41.019138337],[61.62688446,41.264987945],[61.299812,41.145222001],[61.04604721,41.234687805],[60.469356537,41.221382141],[60.131248473,41.394821166],[60.163757324,41.609516144],[59.949272156,41.973506928],[60.039135,42.19593],[59.827965,42.306316],[59.419246674,42.276561737],[59.169483185,42.52803421],[58.297172547,42.689449311],[57.904190063,42.426219939],[57.858409882,42.181613922],[57.312805176,42.137798309],[57.001541138,41.895999909],[57.042415618,41.263214112],[56.000598907,41.318046571],[55.525760814,41.25026702],[55.283367157,41.415798187],[54.836013795,42.022384643],[54.189052581,42.341464997],[53.420188903,42.258811952],[52.959403991,42.103263856],[52.441433127,41.765449602],[52.767284393,41.38925171],[52.940193005,40.947292025],[52.736713409,40.495632171],[52.757526398,40.019752502],[53.488838195,39.945686341],[53.430641175,39.721385955],[53.577148081,39.559826051],[53.236183166,39.545181274],[53.096298218,39.433078766],[53.551284836,39.296523962],[53.571869,39.188057],[53.993560791,38.93498993],[53.860424042,38.64951706],[53.814163207,37.814689636],[53.897811889,37.340808868],[54.243572,37.309181],[54.797786713,37.523056031],[54.823841095,37.725212098],[55.129325867,37.950969697],[55.474193572,38.084331512],[56.339199066,38.070625305],[56.417045593,38.24036026],[56.754673004,38.272594451],[57.080413818,38.176662446],[57.245121002,38.261688232],[57.359134674,37.974437714],[58.211891174,37.760105133],[58.459835052,37.625049592],[58.821933747,37.692005157],[59.276287078,37.497314454],[59.552013398,37.166263581],[60.020957947,37.033267975],[60.370674133,36.624248505],[61.140239716,36.662059785],[61.229221344,36.172401428],[61.159267425,35.989597321],[61.282627426,35.60869039],[61.58953476,35.435199738],[62.066204071,35.431550981],[62.264902115,35.295410156],[62.745594025,35.253723144],[63.094561259,35.420649212],[63.307189941,35.857135772],[64.061935425,36.001911163],[64.635253905,36.438274384],[64.616859436,36.630912781],[64.796134949,36.91607666],[64.753700256,37.111557008],[65.130973817,37.247154237],[65.530151367,37.239753723],[65.704481125,37.538148881],[66.305900573,37.319385529],[66.526388264,37.34608813]]]},"properties":{"id":"ab9268ac-556c-4fbe-bb9e-21958088044f","code":"TKM","name":"Turkmenistan","abbreviation":"C-TKM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.837082,21.857916],[-71.90403,21.773472],[-71.637085,21.715139],[-71.673195,21.833471],[-71.837082,21.857916]]]},"properties":{"id":"d673e661-cf87-4571-a32f-92d136ef13a1","code":"TCA","name":"Turks and Caicos Islands","abbreviation":"C-TCA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[178.428268,-7.956933],[178.431946,-7.971668],[178.419724,-7.990833],[178.39917,-8.013333],[178.385712,-8.037432],[178.378403,-8.0599],[178.371368,-8.064609],[178.380554,-8.073055],[178.381378,-8.053872],[178.387634,-8.036903],[178.400803,-8.013326],[178.437439,-7.973486],[178.428268,-7.956933]]]},"properties":{"id":"ef3efe4c-def8-4230-bcdc-488fbe85d3c3","code":"TUV","name":"Tuvalu","abbreviation":"C-TUV","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.593131994,-1.387020823],[30.169265747,-1.343921662],[30.471065521,-1.055845856],[30.823883057,-0.998916268],[33.930904389,-0.993206023],[33.987014999,-0.128465],[33.91394806,0.112544],[34.137580872,0.585696995],[34.446399688,0.864027978],[34.502487183,1.070647955],[34.795150757,1.223237038],[34.991203307,1.664512038],[34.916610719,2.424907923],[34.736316681,2.855247975],[34.599010467,2.924946069],[34.400592804,3.370894908],[34.463199615,3.669833899],[34.30795288,3.711992026],[34.001964569,4.221364975],[33.514507293,3.755254031],[33.17881775,3.779093028],[33.027759551,3.893971919],[32.415290832,3.745963096],[32.089031219,3.538037063],[31.827354431,3.818788051],[31.507926941,3.676660061],[31.290119172,3.796540976],[30.972940444,3.696516037],[30.870231629,3.482681989],[30.777761458,3.026928902],[30.884183883,2.814409017],[30.741388321,2.44887805],[30.957658768,2.403942585],[31.305704117,2.157105923],[31.033359528,1.757411479],[30.700956344,1.495999575],[30.549726485,1.266250968],[30.240121842,1.111332059],[29.991146088,0.850392998],[29.990437982,0.535014091],[29.738924475,0.128165841],[29.587446213,-0.89732802],[29.593131994,-1.387020823]]]},"properties":{"id":"8acc088d-d59a-4939-a122-ff91c918b1bc","code":"UGA","name":"Uganda","abbreviation":"C-UGA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.624755996,51.514190675],[23.635988235,51.31881714],[24.107311248,50.838729858],[23.997543,50.41214],[23.766684,50.413635],[23.279327392,50.086288452],[22.640830993,49.529991149],[22.734502792,49.211853027],[22.567663194,49.088626862],[22.157321931,48.405391694],[22.904510498,47.957382203],[23.182813644,48.117553711],[24.220169,47.897835],[24.625005722,47.952026367],[24.884765624,47.724624634],[25.31250763,47.9145813],[26.189668656,47.995712281],[26.336137772,48.184467316],[26.631242753,48.2574234],[26.726482391,48.394992829],[27.284778595,48.384082795],[27.763639451,48.458564758],[28.107629775,48.234107972],[28.346273423,48.249347687],[28.854471207,48.121669769],[28.943750382,47.956123352],[29.188543319,47.994007111],[29.241861344,47.639930725],[29.133705139,47.548999786],[29.397924423,47.310413361],[29.57916069,47.378166199],[29.605106353,46.969490051],[29.979202271,46.763614654],[29.917805,46.517345],[29.593429566,46.364337921],[29.242206573,46.563331604],[28.934158326,46.460590362],[29.057643821,46.201114867],[28.790444916,45.846446887],[28.547887803,45.737163545],[28.516287001,45.505466001],[28.214229823,45.466758923],[28.351459503,45.320152282],[28.720420838,45.224594116],[29.251850128,45.435325623],[29.6526165,45.339988709],[29.655805587,45.216060639],[29.965973,45.88625],[30.249844,45.885971],[30.561527253,46.160972595],[30.72986,46.512085],[31.177917481,46.627918243],[31.904306,46.65625],[32.312363,46.465137],[31.766251,46.487362],[31.897638,46.298473],[32.529861,46.068195],[33.227917,46.154026],[33.53986,45.834862],[32.955970765,45.662082672],[32.483470916,45.404861451],[32.654304504,45.315692903],[32.988750458,45.350139617],[33.280971527,45.148471832],[33.569026947,45.074584962],[33.542641,44.657639],[33.401527406,44.559307099],[33.776805878,44.386249542],[34.127083,44.428471],[34.46069336,44.712638854],[34.772914886,44.818473816],[35.082637787,44.79208374],[35.565803527,45.130416871],[35.839027405,44.998748779],[36.454029084,45.095695496],[36.597084045,45.437637329],[35.818473817,45.458751679],[35.5284729,45.283473968],[35.092082977,45.612361907],[34.809307098,46.157638551],[35.19986,46.380974],[35.358196,46.360416],[35.863471986,46.64402771],[37.322360993,46.884304047],[37.535694122,47.080696107],[38.234565911,47.120139457],[38.371608735,47.611076355],[38.764785767,47.684131623],[38.840553284,47.861789704],[39.762969971,47.825042724],[40.014892578,48.266578674],[39.688667297,48.590930938],[39.93523407,49.06344223],[40.200325012,49.270580291],[40.131904601,49.619560241],[39.794551848,49.569641114],[39.6032753,49.743476868],[38.937122345,49.811283113],[38.611801148,49.977611542],[38.047847749,49.956104279],[37.760421753,50.096336365],[37.49312973,50.428993226],[36.925628663,50.347408295],[36.597061156,50.238174439],[36.154998779,50.44929886],[35.631309509,50.360713959],[35.413085938,50.589736938],[35.491317749,50.771396638],[35.312839508,51.086719514],[35.123470307,51.220962524],[34.819721221,51.176284791],[34.270694732,51.259902954],[34.318195343,51.528808595],[34.126987458,51.686840058],[34.400947571,51.845066072],[34.092494964,52.015304566],[34.11433792,52.134010314],[33.796646118,52.360004426],[33.510398865,52.292736054],[33.185310364,52.368099213],[32.68713379,52.253459931],[32.358680726,52.335777284],[32.351173402,52.138980865],[32.072063446,52.022766114],[31.789606095,52.108219148],[31.235437392,52.048336029],[30.951120377,52.078479767],[30.520992279,51.662387849],[30.657110214,51.337585449],[30.463741303,51.282413484],[30.250274658,51.493740082],[29.72085762,51.529037476],[29.362110137,51.396415711],[29.160102844,51.650665283],[28.825105668,51.542804718],[28.274139405,51.69776535],[28.082235335,51.570156097],[27.833856582,51.640563964],[27.230190277,51.602363587],[27.193468093,51.787284852],[26.826513291,51.771430969],[26.366628646,51.876594544],[25.284065247,51.983413697],[24.995042802,51.91225052],[24.386892319,51.910644532],[24.027051925,51.584110261],[23.677938461,51.646072387],[23.624755996,51.514190675]]]},"properties":{"id":"3ec95f20-0b66-4d45-9ec1-3aa9ef483071","code":"UKR","name":"Ukraine","abbreviation":"C-UKR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[56.345531,24.973074],[56.35636139,25.593320847],[56.270771027,25.625865937],[56.086029052,26.050539017],[55.990196229,25.838352204],[55.293705001,25.299462999],[55.040618897,24.993881225],[54.634311676,24.726459504],[54.605430603,24.44852066],[54.37788,24.25045],[54.217449,24.35573],[54.103378,24.14822],[53.579589845,24.046949388],[52.561748505,24.131299973],[52.096439,23.942301],[51.82954,23.98719],[51.781521,24.263411],[51.589015,24.254543],[51.590376094,24.126970892],[52.58104,22.939204],[55.137337901,22.631621401],[55.213485447,22.702154118],[55.232471465,23.110408782],[55.572658539,23.631528854],[55.484859467,23.939989091],[56.018131256,24.066028594],[55.834701538,24.410011291],[55.812599182,24.910671234],[55.960251105,25.005985181],[56.08108139,24.743289948],[56.345531,24.973074]]]},"properties":{"id":"68644b96-7383-4fe5-9090-ef4c51935002","code":"ARE","name":"United Arab Emirates","abbreviation":"C-ARE","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.753942,50.254355],[-3.506388,50.542308728],[-3.257779779,50.672622553],[-2.780398912,50.714952154],[-1.960896887,50.590836891],[-1.307725687,50.840415955],[-1.137762467,50.773684],[-0.237162587,50.828251828],[0.241702,50.733525],[1.057723772,51.057968487],[1.380935048,51.142160466],[1.425832033,51.394252418],[0.896164,51.341526],[0.555502707,51.398974708],[0.928236775,51.591393956],[1.045834,51.769081],[1.583469588,52.091073347],[1.764392698,52.480140686],[1.657930194,52.756473127],[1.303055562,52.933139387],[0.528612018,52.975364276],[0.356337221,52.807909855],[0.070202426,52.923698012],[0.337723629,53.094306946],[0.123551585,53.656563916],[-0.573610008,54.482585436],[-1.168386467,54.637584202],[-1.493775364,55.100085566],[-1.62377,55.552307],[-2.073706,55.869626],[-2.621813,56.051989],[-3.064945535,55.945361535],[-3.391944,56.006581],[-2.977274483,56.202416009],[-2.583432,56.279081],[-2.921945,56.451751],[-2.549805,56.56078],[-1.775363,57.47467],[-1.928055047,57.678420443],[-3.027276624,57.664252652],[-3.346945,57.725086],[-3.814585,57.603419],[-3.790004,57.83849],[-3.9843,57.968248],[-3.107915,58.37144],[-3.023966,58.643536],[-3.863569,58.563378],[-4.656368,58.549771],[-4.997211,58.627083],[-5.132187,58.26767],[-5.424309,58.037652],[-5.194328,57.957237],[-5.81219,57.860165],[-5.873473,57.473473],[-5.625692,57.21547],[-6.051242,56.692413],[-5.679493,56.500155],[-5.316677,56.649876],[-5.577649,56.333478],[-5.514319,56.190468],[-5.706234,55.961025],[-5.612993,55.760343],[-5.762152,55.288803],[-5.446977,55.709964],[-5.18465,55.937973],[-4.978322,55.861516],[-4.61939156,55.492030561],[-4.846613,55.324375],[-5.136616,54.849984],[-4.959391,54.729637],[-4.809391568,54.86019143],[-4.387119677,54.678776977],[-4.352563613,54.813140568],[-3.960876,54.772508],[-3.534722999,54.968525431],[-3.365278005,54.893142214],[-3.594391589,54.482971664],[-3.165052402,54.083248604],[-2.860832,54.194252],[-3.038611889,53.44147448],[-3.609946539,53.290362885],[-4.124929,53.237446],[-4.767172,52.794362],[-4.220609352,52.918804351],[-4.020501262,52.525363673],[-4.208345,52.264414],[-4.833055,52.021751],[-5.07103927,52.030357996],[-5.059426,51.620509],[-4.375052,51.776806],[-4.205278,51.535191],[-3.844392644,51.619304658],[-3.404166937,51.380470638],[-2.653462942,51.607693095],[-2.962168809,51.381859185],[-3.023282,51.195919],[-3.766165365,51.237586628],[-4.205083,51.198696],[-4.309390682,50.995364803],[-4.525723692,51.022909732],[-4.562169706,50.78203169],[-5.024946,50.539635],[-5.4375,50.194251692],[-5.215756,49.960499],[-4.756021542,50.330485636],[-4.122156,50.350315],[-3.753942,50.254355]]],[[[-6.291696642,54.112307601],[-6.064038464,54.023893456],[-5.823835596,54.244861999],[-5.611948,54.247189],[-5.678836588,54.58269141],[-5.577474011,54.675378565],[-6.058385434,55.062308566],[-6.033783752,55.169722428],[-6.473470268,55.251953178],[-6.959256788,55.194251517],[-7.258676313,55.066255673],[-7.760272,54.594236],[-8.153852873,54.437100244],[-7.861760257,54.21872503],[-7.375242211,54.136791006],[-7.029644529,54.421295102],[-6.623755254,54.03647201],[-6.291696642,54.112307601]]],[[[-7.112076,58.151199],[-7.068661,57.823612],[-6.472553,57.937382],[-6.271263,58.49847],[-7.112076,58.151199]]],[[[-6.407371,57.653695],[-6.722016,57.373036],[-6.430656,57.340028],[-6.322603,57.160012],[-5.780177,57.166075],[-6.145023,57.370977],[-6.149305,57.586753],[-6.407371,57.653695]]],[[[-1.203882,60.048614],[-1.100137,60.321059],[-1.300253,60.62258],[-1.574702,60.500811],[-1.328337,60.357644],[-1.69247,60.236785],[-1.203882,60.048614]]],[[[-6.198518,56.516304],[-6.194493,56.358215],[-5.834615,56.310431],[-5.645486,56.44705],[-6.065833,56.63842],[-6.198518,56.516304]]],[[[-6.190677,55.628418],[-6.01914,55.684279],[-6.196944,55.927032],[-6.455732,55.85257],[-6.190677,55.628418]]],[[[-4.172602115,53.299505113],[-4.57345,53.404127],[-4.358612061,53.130749181],[-4.172602115,53.299505113]]],[[[-7.549544,57.602816],[-7.149071,57.51084],[-7.198611,57.697585],[-7.549544,57.602816]]]]},"properties":{"id":"dfbf69a1-2bfc-4b49-a5b6-9c5087fbd011","code":"GBR","name":"United Kingdom","abbreviation":"C-GBR","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.757721,49.002533],[-122.535622,48.775448],[-122.342888,48.09737],[-122.395378,47.806622],[-122.323952,47.350388],[-122.684998,47.097778],[-122.472778,47.748394],[-122.792137,48.09761],[-124.049538,48.177586],[-124.564598,48.367649],[-124.733887,48.162498],[-124.629448,47.892223],[-124.424721,47.736946],[-124.133041,46.904232],[-123.90538,46.429077],[-123.855835,46.156387],[-123.969345,45.780788],[-123.97068,45.173737],[-124.076385,44.771946],[-124.12247467,44.092742921],[-124.23262,43.560917],[-124.555832,42.838333],[-124.389847,42.573269],[-124.357414,42.118076],[-124.211746,42],[-124.063332,41.433334],[-124.222778,40.722221],[-124.409279,40.443237],[-124.363724,40.261848],[-123.852806,39.833057],[-123.827057,39.348717],[-123.730003,38.954166],[-123.333336,38.564445],[-123.130623,38.452255],[-122.85611,38.016945],[-122.52845,37.819679],[-122.480003,38.114445],[-122.106392,37.499168],[-122.515274,37.781113],[-122.360558,37.149723],[-121.78805542,36.805000306],[-121.943336487,36.488887788],[-121.280861,35.666775],[-120.887169,35.434029],[-120.858887,35.209721],[-120.638756,35.133442],[-120.640831,34.563332],[-120.471664,34.447777],[-119.602295,34.420288],[-118.9375,34.043056],[-118.541992,34.038696],[-118.296669,33.708611],[-118.11528,33.75],[-117.470772,33.297253],[-117.32637,33.119179],[-117.123496463,32.530884],[-114.720236764,32.718626008],[-114.813572763,32.493913162],[-111.075016146,31.332382343],[-108.208473175,31.333363342],[-108.208373456,31.783754008],[-106.528523272,31.783817453],[-106.21959714,31.481547519],[-105.955292739,31.365126226],[-105.401847967,30.854443587],[-105.00756693,30.686026093],[-104.687275952,30.179880005],[-104.674580674,29.910828075],[-104.450749093,29.58167358],[-103.97337839,29.296052619],[-103.153168174,28.971745931],[-102.839219769,29.358895347],[-102.674098893,29.744528998],[-102.389945827,29.782801462],[-101.463746268,29.789341929],[-100.79427047,29.242100333],[-100.398499623,28.585093732],[-100.29424398,28.283574509],[-99.930937875,27.978954726],[-99.877781971,27.801462911],[-99.478806331,27.479124943],[-99.451691697,27.056946331],[-99.280285164,26.857823757],[-99.086828109,26.401394077],[-98.799294669,26.361960984],[-98.148976714,26.05055035],[-97.803342767,26.05993454],[-97.522961192,25.888194409],[-97.160128874,25.952016647],[-97.272362,26.08736],[-97.463753,26.690695],[-97.411591,27.322586],[-97.042503,28.02861],[-96.206108,28.614719],[-95.643021,28.754951],[-95.218292,29.005157],[-95.14978,29.181299],[-94.870224,29.290434],[-94.982445,29.681267],[-94.691391,29.741388],[-94.561058,29.483212],[-93.710891723,29.741563798],[-93.171714783,29.768846512],[-92.31778,29.531668],[-91.879478,29.83437],[-91.619934,29.735989],[-91.519997,29.528889],[-91.265274,29.478058],[-91.09568,29.192047],[-90.729164,29.143333],[-90.577225,29.31889],[-90.083885,29.167225],[-90.207222,29.565001],[-89.093887,29.177219],[-89.669998,29.510555],[-89.471504,29.725945],[-89.487778,30.041389],[-89.658058,29.861389],[-89.837776,29.941942],[-89.638336,30.150537],[-88.849442,30.43111],[-88.710625,30.342327],[-88.359215,30.404615],[-88.129448,30.338333],[-88.087219,30.566944],[-87.57074,30.271423],[-87.178635,30.423088],[-87.158783,30.58046],[-86.819443,30.407778],[-86.254997253,30.486686707],[-85.989998,30.268612],[-85.360001,29.893333],[-85.313156,29.687716],[-84.990555,29.715],[-84.445488,29.929701],[-84.35778,30.065275],[-84.001663,30.105833],[-83.637062,29.884033],[-83.071114,29.191668],[-82.810387,29.164019],[-82.643692,28.584093],[-82.847244,27.868116],[-82.652077,27.69924],[-82.641388,28.019444],[-82.416115,27.900278],[-82.654167,27.452223],[-82.298195,26.841806],[-81.842361,26.402361],[-81.802086,26.094862],[-81.592918,25.883472],[-81.346802,25.821251],[-81.000969,25.124306],[-80.465416,25.211527],[-80.30986,25.374027],[-80.308197,25.608194],[-80.119026,25.846527],[-80.030975,26.796251],[-80.377281,27.658491],[-80.71833,28.386108],[-80.575554,28.58639],[-80.816666,28.832777],[-81.257225036,29.78583336],[-81.499725,30.921665],[-81.375763,31.424612],[-81.135666,31.618725],[-81.173485,31.840246],[-80.75972,32.276669],[-80.751282,32.547119],[-80.465149,32.519573],[-80.102623,32.788315],[-80.013298,32.63932],[-79.247223,33.124722],[-78.937225,33.639721],[-78.539169,33.876945],[-78.022095,33.915157],[-77.701683,34.343971],[-77.092827,34.672848],[-76.617226,34.7075],[-76.278053,34.961388],[-76.601242,35.071358],[-76.414658,35.444004],[-76.150932,35.337067],[-75.734726,35.62611],[-75.810822,35.959499],[-76.013054,35.660831],[-76.148888,35.995556],[-76.574226,36.009212],[-76.01812,36.187019],[-75.929726,36.364445],[-75.995178,36.921883],[-76.430557,36.965832],[-76.270233,37.087776],[-76.266945,37.911945],[-76.631439,38.153419],[-76.952126,38.209114],[-76.861389,38.365002],[-76.320831,38.049999],[-76.559448,38.766945],[-76.51487,39.070305],[-76.33374,39.323177],[-76.202774,38.970001],[-76.342781,38.748333],[-76.331947,38.474167],[-76.006943,38.37389],[-75.675552,37.877224],[-75.905281,37.626945],[-76.025551,37.258156],[-75.598892,37.567501],[-75.579445,37.744446],[-75.050278,38.44389],[-75.089745,38.797222],[-75.390831,39.052223],[-75.438331604,39.393333435],[-74.782219,39.04361],[-74.416771,39.543613],[-74.168907,39.70232],[-73.982224,40.402222],[-74.206665,40.624722],[-74.085686,40.654892],[-74.038612,40.709999],[-73.977279663,40.711074829],[-73.935837,40.785278],[-73.818054,40.81361],[-73.640556,41.004166],[-72.844719,41.258335],[-71.852478,41.309322],[-71.421661,41.471092],[-71.360443115,41.74930954],[-71.175957,41.458912],[-70.558609,41.774166],[-70.538887,41.925278],[-70.774399,42.254681001],[-71.011391,42.276943],[-70.784515,42.70335],[-70.815628,42.896801],[-70.521942,43.343334],[-70.197235,43.564999],[-70.118889,43.813889],[-69.700836,43.942223],[-69.202469,43.942287],[-68.953888,44.323891],[-68.605553,44.275833],[-68.458054,44.446945],[-67.900024,44.393311],[-67.383614,44.689167],[-67.234375,44.636719],[-66.979034,44.805553],[-67.266800009,45.191123994],[-67.4776,45.287292],[-67.425682082,45.578472085],[-67.802940368,45.695995331],[-67.783599854,47.063171386],[-68.243835448,47.352554321],[-68.897491455,47.176639558],[-69.043998718,47.42577362],[-69.221817016,47.457641603],[-69.997085572,46.6958313],[-70.057159424,46.414680481],[-70.292007446,46.190940856],[-70.266288756,45.884941102],[-70.823326111,45.40296936],[-71.413208008,45.220157624],[-71.511032104,45.013435364],[-74.637466091,44.999195099],[-74.674439056,45.00328786],[-74.764564515,45.005191803],[-75.307723999,44.840999604],[-76.441131592,44.094436646],[-76.798332215,43.631408691],[-78.681213378,43.633590698],[-79.202788827,43.450992751],[-79.058082581,43.252819061],[-78.936920166,42.831001282],[-80.073326112,42.392559052],[-81.260551452,42.20552063],[-82.407691956,41.67692566],[-82.681221008,41.67729187],[-83.067810059,41.862613679],[-83.095352172,42.284229278],[-82.868286134,42.327590943],[-82.521339416,42.610420228],[-82.424347,42.998291],[-82.122902456,43.588372864],[-82.525369359,45.340919612],[-83.592117,45.818684],[-83.571136474,46.10256958],[-83.954797,46.056241],[-84.129287719,46.531349183],[-84.55606842,46.459651948],[-84.763771057,46.634880066],[-84.843399049,46.887283326],[-86.772880555,47.681743622],[-88.370910645,48.304248809],[-88.689010621,48.241508484],[-89.339050292,47.969898224],[-89.867622,47.998009],[-90.033508301,48.09634781],[-90.742241,48.113663],[-90.839935302,48.245868684],[-91.399116515,48.057098388],[-92.947242737,48.621395111],[-93.25643921,48.642494202],[-93.751770019,48.519760133],[-93.850509643,48.631637573],[-94.535140992,48.702335358],[-94.825417,49.294743],[-95.149650789,49.383296893],[-95.15139,48.999950001],[-121.955391,49.000046],[-122.757721,49.002533]]],[[[-141.003036,69.646156],[-141.395828,69.637497],[-142.010422,69.79583],[-142.727081,70.037498],[-143.21666,70.097916],[-144.412506,70.027084],[-144.59584,69.970833],[-145.262497,69.989586],[-145.827606,70.155731],[-146.541153,70.184898],[-146.945831,70.150002],[-147.78125,70.216667],[-148.12709,70.32708],[-148.475006,70.308334],[-149.164581,70.48542],[-149.864578,70.504166],[-150.49791,70.387497],[-151.887497,70.431252],[-151.760422,70.54583],[-152.414581,70.606247],[-152.222916,70.824997],[-153.145828,70.92083],[-153.885422,70.883331],[-154.15625,70.768753],[-154.612503,70.820831],[-155.156769,71.018234],[-155.574997,70.82917],[-156.147919,70.824997],[-156.234894,70.922401],[-155.725525,70.983849],[-155.747391,71.191147],[-156.599487,71.3349],[-156.809891,71.28698],[-157.490097,70.948433],[-158.024994,70.82917],[-159.68541,70.777084],[-160.706772,70.381767],[-161.306244,70.247917],[-161.990097,70.242187],[-162.468231,70.057816],[-162.573441,69.919266],[-163.028641,69.728645],[-163.143234,69.339066],[-163.690109,69.069267],[-164.139587,68.941666],[-165.31459,68.856247],[-166.212494,68.879166],[-166.224487,68.570312],[-166.359894,68.404686],[-165.881256,68.11042],[-165.366669,68.039581],[-164.131775,67.632812],[-163.870316,67.4151],[-163.660416,67.097916],[-162.47084,66.981247],[-161.835419,67.050003],[-161.878647,66.71302],[-161.486984,66.529686],[-161.118744,66.63958],[-160.254166,66.618752],[-160.2276,66.385933],[-160.785416,66.362503],[-161.239578,66.520836],[-161.583328,66.439583],[-162.072403,66.648437],[-162.010941,66.756767],[-162.318756,66.941666],[-162.620316,66.854683],[-161.875519,66.509895],[-161.916153,66.347397],[-161.535416,66.402084],[-161.141663,66.339584],[-160.985931,66.225517],[-161.556763,66.2276],[-161.824478,66.003647],[-162.759903,66.095314],[-163.137497,66.052086],[-163.767181,66.078651],[-163.829163,66.591667],[-164.43959,66.57708],[-164.92865,66.449478],[-165.43959,66.402084],[-165.876572,66.234901],[-165.524994,66.145836],[-166.058334,66.106247],[-166.264587,66.166664],[-166.604172,66.089584],[-167.189072,65.842186],[-167.522919,65.824997],[-167.889587,65.552086],[-167.393753,65.400002],[-166.808853,65.374481],[-166.37709,65.254166],[-166.677078,65.106247],[-166.500519,64.947395],[-166.409897,64.652603],[-166.210419,64.57917],[-165.018753,64.4375],[-164.354172,64.5625],[-163.643753,64.568748],[-163.172913,64.397919],[-162.858337,64.502083],[-162.80365,64.335937],[-162.545319,64.530731],[-162.170837,64.681252],[-161.413025,64.763016],[-161.149475,64.913017],[-160.8974,64.824478],[-160.783859,64.626564],[-161.03334,64.495834],[-161.37709,64.533333],[-160.960938,64.249481],[-160.785934,63.744274],[-161.137497,63.5],[-161.96666,63.431252],[-162.265106,63.492187],[-162.435928,63.34219],[-163.037506,63.060417],[-163.608856,63.07552],[-163.760422,63.214584],[-164.322922,63.239582],[-164.582809,63.120316],[-164.861984,62.822399],[-164.504684,62.71719],[-164.844269,62.526566],[-165.266144,62.43906],[-165.766144,62.059898],[-165.636978,61.850521],[-166.097916,61.802082],[-166.143234,61.506771],[-165.722916,61.302082],[-165.643234,61.140106],[-165.293747,61.179165],[-164.539581,60.847916],[-164.141663,60.883335],[-163.914062,61.191143],[-163.577087,60.881248],[-163.460419,60.645832],[-163.793228,60.579685],[-163.773437,60.732815],[-164.684891,60.823441],[-164.725006,60.897915],[-165.368744,60.506248],[-164.704681,60.29427],[-164.140808,59.849819],[-163.681015,59.797619],[-163.147217,59.84782],[-162.515381,59.989319],[-162.36615,60.158852],[-161.708069,59.500042],[-161.958755,59.372211],[-161.975021,59.140419],[-161.788544,58.968216],[-161.763214,58.550022],[-161.290283,58.771912],[-160.778015,58.89222],[-160.358521,59.073822],[-160.248718,58.890621],[-159.904816,58.768322],[-159.736221,58.930519],[-159.317612,58.696121],[-159.058914,58.421219],[-158.751312,58.495422],[-158.880508,58.72842],[-158.782211,58.88242],[-158.407013,59.064621],[-158.548416,58.79232],[-158.087219,58.62022],[-157.095215,58.875622],[-157.093521118,58.704021455],[-157.472015,58.49332],[-157.696518,57.612419],[-158.331161,57.280643],[-158.678864,57.005276],[-158.795471,56.78009],[-159.053711,56.800621],[-159.818008,56.53912],[-160.384521,56.254822],[-160.522919,55.94302],[-160.783112,55.883121],[-161.097717,55.959221],[-161.804611,55.88792],[-162.255615,55.689121],[-162.486221,55.37672],[-162.809296,55.30146],[-162.865082,55.181072],[-163.298218,55.108719],[-163.345108,54.800121],[-163.047791,54.969727],[-162.706177,54.956726],[-162.665527,55.290894],[-162.413818,55.032471],[-162.049698,55.069675],[-161.681519,55.407619],[-161.59552,55.609119],[-161.39209,55.626892],[-161.476318,55.3573],[-161.239075,55.354675],[-160.842819,55.522522],[-160.53064,55.475677],[-159.832611,55.848221],[-159.622513,55.81992],[-158.504913,55.978722],[-158.190384,56.19231],[-158.331116,56.482121],[-157.887619,56.468121],[-157.392883,56.863525],[-157.203308,56.764221],[-156.727921,57.038219],[-156.583817,56.987122],[-156.338913,57.176121],[-156.183517,57.477119],[-156.025513,57.433521],[-155.571411,57.78912],[-155.068817,57.904221],[-155.039108,58.020119],[-154.588318,58.02042],[-154.007401,58.37521],[-153.901016,58.609722],[-153.594315,58.631821],[-153.312515,58.854221],[-153.699615,59.07552],[-154.24881,59.116619],[-154.113113,59.305222],[-153.729309,59.440922],[-153.479813,59.644722],[-153.059219,59.690422],[-152.706909,59.92012],[-152.673431,60.164063],[-152.239578,60.395832],[-152.3349,60.469269],[-151.845322,60.726562],[-151.782822,60.857815],[-151.142181,61.06094],[-150.597916,61.360416],[-150.452087,61.25],[-149.918747,61.266666],[-149.762497,61.443748],[-149.381256,61.466667],[-150.072403,61.159893],[-149.731247,61.014584],[-150.236984,60.933857],[-150.370834,61.037498],[-151.052597,60.788021],[-151.405731,60.72031],[-151.270309,60.528648],[-151.413025,60.215107],[-151.695312,60.034893],[-151.871109,59.76762],[-151.483521,59.638622],[-151.058807,59.796921],[-151.268967,59.557129],[-151.892517,59.428822],[-151.981812,59.257919],[-151.593414,59.162922],[-151.453918,59.23732],[-150.914917,59.251221],[-150.747116,59.42432],[-150.32431,59.471321],[-149.739014,59.713921],[-149.75032,59.94112],[-149.470215,59.918221],[-149.358856,60.114063],[-148.84581,59.924221],[-148.455994,59.941284],[-148.335419,60.245834],[-147.975006,60.514584],[-148.402084,60.777084],[-148.185928,60.990105],[-147.858337,60.820835],[-147.616669,61.008335],[-147.366669,60.883335],[-147.111984,61.003643],[-146.735931,60.936981],[-146.149994,60.631248],[-145.949997,60.697918],[-145.600006,60.450001],[-145.295837,60.337502],[-144.983337,60.535416],[-144.953644,60.288021],[-144.46875,60.166668],[-144.229172,60.179165],[-144.02916,60.020832],[-142.675003,60.099998],[-141.750214,59.951519],[-140.668121,59.710522],[-140.344116,59.69392],[-139.804413,59.81842],[-139.712112,59.918819],[-139.471664,59.703056],[-139.854446,59.534168],[-139.291107,59.386665],[-138.604568,59.122143],[-138.364441,59.089443],[-137.937637,58.876682],[-137.679993,58.623333],[-136.893326,58.381668],[-136.686111,58.211666],[-136.039993,58.384998],[-136.204483,58.613327],[-136.561722,58.832375],[-136.088638,58.818325],[-135.858887,58.57],[-135.908249,58.379036],[-135.623337,58.426945],[-135.16394,58.208805],[-135.047134,58.308216],[-135.140549,58.617779],[-135.401672,58.97361],[-135.393539,59.297504],[-135.138336,58.830555],[-134.787781,58.494999],[-134.219681,58.205128],[-133.888824,57.974072],[-133.515549,57.545555],[-133.465698,57.150513],[-132.782898,57.002075],[-132.570328,56.634182],[-131.990509,56.342552],[-131.931671,56.236389],[-131.763,56.205116],[-131.968811,56.175903],[-131.9487,55.982853],[-132.181122,55.797169],[-132.18512,55.587944],[-131.969482,55.500832],[-131.759445,55.877777],[-131.216537,55.983082],[-130.904083,55.711655],[-130.878265,55.331635],[-131.093979,55.191402],[-130.934204,54.801697],[-130.718597,54.764301],[-130.369995,54.907223],[-129.994186,55.290195],[-130.172501,55.778164],[-130.01001,55.909119],[-130.105408,56.122681],[-130.425476,56.141724],[-130.781799,56.367126],[-131.086975,56.406128],[-131.581298827,56.612304688],[-131.835388087,56.599121099],[-131.873108115,56.80627403],[-132.123107881,56.873901359],[-132.044800001,57.045104999],[-132.247803041,57.21112096],[-133.171951,58.153831],[-133.37997836,58.431814233],[-133.841049195,58.729854583],[-134.257995605,58.860870362],[-134.482727049,59.130969999],[-134.959777833,59.281040191],[-135.028885,59.563640668],[-135.47958374,59.798099518],[-136.353545998,59.599884],[-136.457763672,59.281421662],[-137.451507568,58.908535003],[-137.607437133,59.243480683],[-138.609207152,59.760002137],[-138.70578003,59.906238555],[-139.177017,60.082863],[-139.052078,60.353725],[-139.680069,60.33572],[-139.974075,60.184513],[-140.447968,60.307964],[-140.52034,60.219059],[-141.001572,60.305069],[-141.003036,69.646156]]],[[[-153.251953,57.996807],[-153.179642,57.796879],[-153.73024,57.892883],[-154.032715,57.654949],[-154.335754,57.637417],[-154.691116,57.445835],[-154.528336,56.992222],[-154.222229,56.895],[-154.11055,57.127224],[-153.881805,57.117107],[-154.150558,56.746666],[-153.977829,56.743275],[-153.341888,57.189838],[-152.338287,57.422363],[-152.469437,57.599007],[-152.345779,57.833126],[-153.251953,57.996807]]],[[[-133.602722,56.355309],[-133.696121,55.912777],[-133.287781,56.015556],[-133.049454,55.607777],[-133.237228,55.285],[-132.946106,55.270325],[-132.524994,55.116112],[-132.166107,54.691387],[-132.022781,54.698612],[-131.985001,55.168335],[-132.616394,55.908325],[-132.932053,56.059891],[-133.198914,56.336304],[-133.602722,56.355309]]],[[[-155.87638855,20.095554351],[-156.061950683,19.727777482],[-155.884719848,19.332223892],[-155.88194275,19.036388397],[-155.638061524,18.9347229],[-155.29359436,19.263383866],[-154.972503662,19.348888398],[-154.811111449,19.526111602],[-155.089996337,19.734165191],[-155.279251098,20.018821717],[-155.836410522,20.267154694],[-155.87638855,20.095554351]]],[[[-135.892776,57.998611],[-135.202515,57.77652],[-135.021164,57.779461],[-134.951981,58.039471],[-135.467224,58.131111],[-135.828293,58.281052],[-136.44751,58.120377],[-136.43222,57.843056],[-135.845001,57.391666],[-135.547302,57.479309],[-135.728882,57.720276],[-135.021591,57.456352],[-134.867783,57.463055],[-134.939713,57.762535],[-135.208328,57.727779],[-135.892776,57.998611]]],[[[-171.649994,63.772915],[-171.828644,63.58073],[-171.743225,63.371357],[-171.433334,63.308334],[-170.852081,63.456249],[-169.904678,63.145309],[-169.702606,63.031769],[-169.212494,63.200001],[-168.879166,63.160416],[-168.699997,63.299999],[-169.556244,63.360416],[-170.050003,63.472916],[-170.289581,63.6875],[-170.916672,63.566666],[-171.460419,63.587502],[-171.649994,63.772915]]],[[[-166.104172,60.364582],[-166.481766,60.37344],[-166.844269,60.204685],[-167.420319,60.198441],[-167.134903,60],[-166.108612,59.75312],[-166.029648,59.867043],[-165.57991,59.91272],[-165.688019,60.290104],[-166.104172,60.364582]]],[[[-135.410126,57.557362],[-135.692474,57.353489],[-135.338882,57.047222],[-134.901489,56.325073],[-134.623886,56.256111],[-134.617844,56.631592],[-134.862778,57.271667],[-134.830154,57.400558],[-135.410126,57.557362]]],[[[-134.177032,58.154564],[-134.709015,58.227726],[-134.730881,57.721672],[-134.579727,57.476494],[-134.600174,57.033569],[-133.862442,57.367729],[-133.93515,57.610878],[-134.332474,58.000721],[-134.177032,58.154564]]],[[[-163.761673,55.047501],[-164.300598,54.898071],[-164.433334,54.932777],[-164.847778,54.419998],[-164.448883,54.421391],[-164.237793,54.585327],[-163.604034,54.616199],[-163.330002,54.753056],[-163.542297,55.050991],[-163.761673,55.047501]]],[[[-131.251114,55.967007],[-131.712051,55.833611],[-131.831116,55.448612],[-131.235046,55.196762],[-130.970596,55.392273],[-130.939667,55.619781],[-131.251114,55.967007]]],[[[-133.866089,57.095886],[-134.025406,57.017223],[-133.773926,56.878571],[-133.712006,56.788292],[-133.710876,56.649475],[-133.65332,56.591675],[-133.652451,56.442009],[-133.156128,56.458313],[-133.097137,56.569347],[-132.931625,56.663376],[-132.97728,56.919994],[-133.866089,57.095886]]],[[[-166.646439,54.013237],[-167.009277,53.961098],[-167.16185,53.467297],[-167.854507,53.309505],[-167.503738,53.258499],[-167.05278,53.431717],[-166.76445,53.443611],[-166.554443,53.622223],[-166.274445,53.687778],[-166.274994,53.983082],[-166.549438,53.859497],[-166.646439,54.013237]]],[[[-73.739998,40.594444],[-73.224007,40.718792],[-72.697701,40.77784],[-72.110275,40.99472],[-72.576385,40.933334],[-73.11869,40.977837],[-73.171074,40.904167],[-73.295837,40.924915],[-73.541351,40.876873],[-73.565735,40.915516],[-73.765717,40.812897],[-73.942665,40.765854],[-73.974564,40.702126],[-73.994164,40.704723],[-74.042038,40.628414],[-74,40.57111],[-73.739998,40.594444]]],[[[-152.64859,58.475895],[-152.784042,58.278412],[-153.042053,58.304794],[-153.220322,58.15778],[-152.861343,57.992355],[-152.08493,58.152836],[-151.995651,58.345192],[-152.442368,58.372734],[-152.64859,58.475895]]],[[[-134.244995,56.935486],[-134.401062,56.726135],[-134.042267,56.40752],[-134.294449,56.353333],[-134.223068,56.063274],[-133.957703,56.094727],[-133.972534,56.348499],[-133.853302,56.60968],[-133.744568,56.556488],[-133.72998,56.777527],[-133.92778,56.779167],[-134.244995,56.935486]]],[[[-167.993546,53.564182],[-168.407776,53.421944],[-168.344452,53.261391],[-168.764877,53.183079],[-168.858337,52.950832],[-168.460007,53.054722],[-168.272217,53.241112],[-167.841324,53.386139],[-167.993546,53.564182]]],[[[-156.593445,21.030005],[-156.620285,20.806944],[-156.366669,20.575556],[-156.044998,20.653055],[-156.001938,20.794722],[-156.593445,21.030005]]],[[[-157.97583,21.709999],[-158.283325,21.575018],[-158.103134,21.294956],[-157.651077,21.298845],[-157.97583,21.709999]]],[[[-147.089066,60.364059],[-147.398437,60.113022],[-147.706787,59.99231],[-147.883118,59.765121],[-147.525009,59.841122],[-147.031769,60.21719],[-147.089066,60.364059]]],[[[-70.190834,42.081112],[-70.053337,41.776112],[-70.550003,41.775276],[-70.677498,41.527222],[-70.008331,41.673054],[-69.945831,41.846668],[-70.190834,42.081112]]],[[[-132.419998,56.347778],[-132.716492,56.216137],[-132.353683,55.912666],[-132.220963,56.084019],[-132.419998,56.347778]]],[[[-174.139999,52.413334],[-174.636108,52.112778],[-174.412781,52.048611],[-174.095001,52.142223],[-174.139999,52.413334]]],[[[-159.401321,22.23068],[-159.723038,22.152674],[-159.764725,21.986944],[-159.451263,21.872543],[-159.401321,22.23068]]],[[[172.790558,53.004723],[172.738892,52.791389],[173.116104,52.784443],[173.303894,52.924168],[172.790558,53.004723]]],[[[-133.102783,55.236397],[-133.239456,55.086666],[-132.972412,54.7995],[-132.71611,54.761665],[-133.061417,55.078743],[-133.102783,55.236397]]],[[[-132.368332,56.486668],[-132.34668,56.271397],[-132.134186,56.176537],[-131.922256,56.203094],[-132.030334,56.352665],[-132.14502,56.343872],[-132.368332,56.486668]]],[[[-132.931671,56.821716],[-132.913208,56.643921],[-132.952133,56.509674],[-132.54303,56.583313],[-132.931671,56.821716]]],[[[-122.600555,48.40889],[-122.764511,48.216187],[-122.606812,48.032074],[-122.376656,48.034527],[-122.65786,48.282558],[-122.600555,48.40889]]],[[[-156.911896,21.165503],[-157.260315,21.216921],[-157.311356,21.102251],[-156.874313,21.046503],[-156.911896,21.165503]]],[[[-176.563339,51.997223],[-176.867218,51.682777],[-176.583328,51.687778],[-176.563339,51.997223]]],[[[-173.516113,52.15139],[-173.936661,52.055],[-173.152771,52.059166],[-173.516113,52.15139]]],[[[-146.535416,60.474998],[-146.618744,60.235416],[-146.308334,60.345833],[-146.535416,60.474998]]],[[[-160.688339,58.81361],[-161.052948,58.70266],[-160.882217,58.58139],[-160.688339,58.81361]]],[[[-159.867218,55.285278],[-160.19278,55.102779],[-159.867065,55.094757],[-159.867218,55.285278]]],[[[-131.551468,55.281345],[-131.601105,54.996944],[-131.386505,55.012527],[-131.551468,55.281345]]],[[[-160.695801,55.400616],[-160.861084,55.274719],[-160.538849,55.157417],[-160.695801,55.400616]]],[[[-153.213882,57.203609],[-153.305328,56.991093],[-152.945526,57.187572],[-153.213882,57.203609]]],[[[-147.68541,60.489582],[-147.902084,60.227085],[-147.777084,60.15625],[-147.68541,60.489582]]]]},"properties":{"id":"a9382f9a-2939-4f52-b5d4-c9ba3b6f3def","code":"USA","name":"United States","abbreviation":"C-USA","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-177.368942,28.217222],[-177.387772,28.215164],[-177.392502,28.195],[-177.36055,28.2075],[-177.368942,28.217222]]]},"properties":{"id":"3c424fb9-fd08-451e-9c84-31ac00f38882","code":"UMI","name":"United States Minor Outlying Isl","abbreviation":"C-UMI","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-58.348822999,-33.112979999],[-58.417815715,-33.354201126],[-58.419534,-33.909168],[-57.84264,-34.476528],[-57.133958599,-34.449881199],[-56.8208431,-34.6883397],[-56.448952,-34.752924],[-56.157917023,-34.929862977],[-55.780971527,-34.771251677],[-55.410309,-34.790119],[-54.941419,-34.956249],[-54.213413,-34.663673],[-53.805131,-34.405596],[-53.369862,-33.744077],[-53.53131893,-33.645071055],[-53.484397889,-33.078063965],[-53.09424591,-32.724189758],[-53.542809233,-32.479692961],[-53.849429147,-32.001130134],[-54.080886701,-31.9292828],[-54.4564064,-31.6517073],[-54.5867653,-31.4565633],[-54.8367023,-31.442002601],[-55.0024318,-31.269257799],[-55.2466824,-31.252289999],[-55.578888099,-30.839533899],[-55.9300561,-31.085948999],[-55.989596014,-30.858504928],[-56.661922,-30.197669],[-57.082138,-30.094591],[-57.203642,-30.285423],[-57.645093944,-30.193501761],[-57.859237999,-30.47701],[-57.8095954,-30.9133178],[-58.085653199,-31.8192923],[-58.206526299,-31.867727099],[-58.106447,-32.240017001],[-58.204637,-32.460549001],[-58.084104699,-32.9978188],[-58.348822999,-33.112979999]]]},"properties":{"id":"57a46119-abe3-4928-8bf3-e9440cdf059e","code":"URY","name":"Uruguay","abbreviation":"C-URY","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[67.790663956,37.185199858],[67.82836914,37.463287355],[68.402641297,38.194988252],[68.068481446,38.540653229],[68.115348815,39.010017396],[67.715362549,38.999656678],[67.462097169,39.20318985],[67.425483703,39.496959686],[67.70501709,39.65655899],[68.514877319,39.534103394],[68.999465942,40.220531465],[69.316139221,40.201591492],[69.400970458,40.782024384],[69.667678833,40.629947662],[70.365493775,40.891174316],[70.496482848,41.031852723],[70.789672852,40.725135803],[70.33267975,40.449245452],[70.645622254,40.165016174],[70.968498,40.228043],[71.277320862,40.326725006],[71.716194,40.150803],[71.939475999,40.224644],[72.152488709,40.457317353],[72.420814513,40.4049263],[72.766708374,40.673404694],[73.123123168,40.797458649],[72.575523376,40.890445709],[72.497581483,41.030647279],[71.890357971,41.172172546],[71.935165406,41.308265685],[71.726005555,41.553714752],[71.435073852,41.123622895],[70.779647827,41.221355438],[70.713249206,41.464733125],[70.491859436,41.399368287],[70.222991943,41.606998444],[70.507652284,41.727169037],[71.271270752,42.200099946],[70.945350647,42.262252808],[70.626960755,42.000823975],[70.433303833,42.130077362],[70.159736633,41.844303131],[69.621070862,41.658016204],[69.033241272,41.342170716],[68.744804383,40.987457275],[68.515808105,40.98153305],[68.684867859,40.59570694],[68.416770934,40.575237274],[67.889350892,40.85754776],[67.993492127,41.063732147],[67.736282349,41.202819824],[66.60610199,41.251403808],[66.53076172,41.89629364],[66.008545,41.943497],[66.105667115,42.347320557],[66.099205017,42.962192535],[65.827186585,42.868133545],[65.651077271,43.303516389],[65.010261535,43.766853333],[64.53653717,43.603313447],[63.388889314,43.672855378],[62.028697967,43.486515046],[61.275432586,44.136764527],[61.036132813,44.137073516],[59.792713165,44.923030853],[58.569717406,45.571105956],[55.998100282,45],[56.000598907,41.318046571],[57.042415618,41.263214112],[57.001541138,41.895999909],[57.312805176,42.137798309],[57.858409882,42.181613922],[57.904190063,42.426219939],[58.297172547,42.689449311],[59.169483185,42.52803421],[59.419246674,42.276561737],[59.827965,42.306316],[60.039135,42.19593],[59.949272156,41.973506928],[60.163757324,41.609516144],[60.131248473,41.394821166],[60.469356537,41.221382141],[61.04604721,41.234687805],[61.299812,41.145222001],[61.62688446,41.264987945],[61.970878602,41.019138337],[62.113071442,40.596107484],[62.349460616,40.438297203],[62.487949371,39.951393128],[63.539127349,39.383579254],[64.177116395,38.959190369],[65.025039673,38.61246109],[65.481369018,38.31899643],[65.851486207,38.274082183],[66.676628112,37.961967468],[66.548225403,37.79177475],[66.526388264,37.34608813],[66.996528625,37.389896393],[67.277362824,37.177192688],[67.517433167,37.274326325],[67.790663956,37.185199858]]]},"properties":{"id":"ec906103-fb6c-4877-bec1-0d138440cc65","code":"UZB","name":"Uzbekistan","abbreviation":"C-UZB","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[167.22416687,-15.52000141],[167.077225,-15.019168],[166.822494506,-15.153609276],[166.623672485,-14.665554999],[166.541442871,-14.84546566],[166.648605347,-15.399168013],[166.815552,-15.668612],[167.22416687,-15.52000141]]],[[[167.565933228,-16.19914627],[167.225281,-15.878331],[167.152938843,-16.077356338],[167.388611,-16.189722],[167.459579,-16.567957],[167.834167,-16.470833],[167.565933228,-16.19914627]]],[[[169.29750061,-18.858888626],[169.041382,-18.629444],[169.003326416,-18.885833741],[169.29750061,-18.858888626]]],[[[168.499512,-17.597761],[168.249451,-17.572222],[168.386108,-17.826111],[168.499512,-17.597761]]]]},"properties":{"id":"1f15f00b-4150-4620-bc97-a265206dc5ca","code":"VUT","name":"Vanuatu","abbreviation":"C-VUT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.449790001,41.905609131],[12.44662857,41.90184021],[12.458400726,41.90184021],[12.455550193,41.907550812],[12.449790001,41.905609131]]]},"properties":{"id":"7c9e51f2-2160-4bc8-8e60-1ef9b9bfae95","code":"VAT","name":"Vatican City","abbreviation":"C-VAT","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.73051803,5.197120977],[-61.386719,5.946328],[-61.130009,6.181298],[-61.219208,6.593304],[-61.132141,6.723821],[-60.720569633,6.747941029],[-60.343052,7.03345],[-60.547969818,7.14073801],[-60.636600001,7.604187],[-60.006241,8.062861],[-59.821274,8.31208],[-59.987640381,8.530454636],[-60.201527,8.629862],[-60.591805,8.539305],[-60.78875,9.310416],[-61.008472442,9.539027215],[-61.43208313,9.812084198],[-61.869583,9.811806],[-62.194305,10.020695],[-62.35236,9.884027],[-62.792362213,10.555973053],[-62.322918,10.538194],[-62.251526,10.633751],[-62.752083,10.740973],[-63.53125,10.62736],[-64.295135,10.636805],[-63.663471223,10.475694656],[-64.19236,10.475695],[-64.364586,10.300972],[-64.765976,10.098195],[-65.160141001,10.083193999],[-65.872917176,10.30430603],[-66.236251832,10.649306297],[-67.028473,10.612917],[-67.903473,10.473751],[-68.184028626,10.51680565],[-68.240974,10.89125],[-68.404305,11.190694],[-68.829307556,11.444028854],[-69.282363893,11.534029961],[-69.607361,11.458748],[-69.751251,11.66764],[-69.93264,12.172083],[-70.199303,12.101806],[-70.290969848,11.901806831],[-70.185691834,11.60486126],[-69.931526,11.51736],[-70.515694,11.238194],[-70.843193,11.195417],[-71.247643,10.984029],[-71.48764,10.94514],[-71.47958374,10.391804695],[-71.039306642,9.742918969],[-71.063194,9.313195],[-71.334305001,9.09375],[-71.696807862,9.058471679],[-71.73652649,9.353193284],[-71.931526183,9.482916833],[-72.125694,9.806805],[-71.990135,10.073195],[-71.630142213,10.439306259],[-71.581802368,10.701806069],[-71.960419,11.425418],[-71.941528,11.601251],[-71.439308,11.718749],[-71.386253,11.81414],[-71.966057,11.650084],[-72.245132446,11.144904137],[-72.497787,11.085117],[-72.895729065,10.45032978],[-72.944748,9.842818],[-73.347015382,9.173742295],[-73.007209779,9.291072846],[-72.766471863,9.10688591],[-72.654380798,8.614500047],[-72.392242432,8.35640812],[-72.350975036,8.003447533],[-72.473007202,7.486440182],[-72.195358276,7.385155678],[-72.006774902,7.007916929],[-71.746429444,7.08072424],[-71.02204132,6.974288463],[-70.557540894,7.079834461],[-70.294609071,6.934592248],[-70.121681213,6.979224204],[-69.426879882,6.102223396],[-69.110298157,6.214188575],[-68.643798828,6.128194808],[-67.827026367,6.304127217],[-67.547523499,6.279095649],[-67.404739379,5.999525071],[-67.588737488,5.846688272],[-67.632926941,5.466629983],[-67.825698852,5.337379933],[-67.85066986,4.51061678],[-67.61592865,3.757788182],[-67.483940125,3.748416663],[-67.307891846,3.377990246],[-67.855041504,2.867162704],[-67.565872192,2.769107581],[-67.185218812,2.334057808],[-66.856750488,1.229928494],[-66.318511964,0.755015015],[-65.964470003,0.80945348],[-65.585578919,1.008911015],[-65.44304657,0.689849974],[-65.155059815,1.124938964],[-64.763854981,1.230741025],[-64.397445679,1.526810051],[-64.065223694,1.675981998],[-64.061889648,1.930709957],[-63.397701264,2.14685607],[-63.406806946,2.435909988],[-63.780818939,2.391247988],[-64.056053162,2.497651101],[-63.982719421,2.717369079],[-64.235229493,3.114319085],[-64.185775758,3.559587002],[-64.472457886,3.781533958],[-64.810523986,4.174582006],[-64.560493469,4.10153389],[-64.17189026,4.128757954],[-63.964107513,3.867922068],[-63.850215911,3.949868918],[-63.512432098,3.847371101],[-63.204929351,3.951251983],[-62.984916687,3.609591961],[-62.73217392,4.035823821],[-62.355457306,4.150284767],[-62.134559632,4.091252804],[-61.537948608,4.383833886],[-60.991333008,4.516063213],[-60.587852477,4.965773106],[-60.73051803,5.197120977]]]},"properties":{"id":"01797f8e-2811-48e1-837d-906ed10f5e1a","code":"VEN","name":"Venezuela","abbreviation":"C-VEN","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.439158228,10.423138713],[104.616219,10.148005],[104.732826233,10.227804185],[105.055603028,9.945043563],[104.850509644,9.681191444],[104.782066345,8.80614853],[104.837974548,8.561211585],[105.107864379,8.636026383],[105.54222107,9.11970234],[106.186874391,9.379118919],[106.308753967,9.595242501],[106.487960815,9.550541877],[106.783775329,10.097368241],[106.782730102,10.375644683],[107.041458131,10.465604783],[107.254615784,10.379359245],[107.896888733,10.722084999],[108.085067749,10.914100647],[108.33107,10.951362],[108.786437989,11.312409402],[109.014511109,11.355934144],[109.282211,11.944951],[109.197166443,12.254286767],[109.337311,12.387954],[109.190285,12.630007],[109.456024171,12.91322899],[109.301185608,13.126836777],[109.214638,13.74518],[109.293678,13.89363],[108.920478821,15.014450074],[108.909256,15.248987],[108.618339538,15.514917373],[108.247932433,16.056728364],[107.980674744,16.316909791],[107.309417725,16.802339553],[107.112930298,17.085716247],[106.655471801,17.450939179],[106.463745117,17.759805679],[106.420937,18.102571],[106.100547791,18.275972367],[105.637176515,18.89720726],[105.736854553,19.102783203],[105.837295532,19.662765503],[105.953071595,19.919231416],[106.35673523,20.173336028],[106.583358765,20.21803856],[106.585105896,20.550251007],[106.961929322,20.950782776],[107.199333,20.9347],[107.558731,21.155949],[107.792060851,21.472227096],[107.991661,21.546322],[107.81551361,21.658439636],[107.382347107,21.595428466],[106.991722108,21.951656341],[106.765014649,22.013175964],[106.559577943,22.348882675],[106.835670471,22.806064606],[106.588005065,22.932483672],[106.278671265,22.868831635],[106.14502716,22.996707917],[105.872772217,22.932710648],[105.321228027,23.391620637],[105.237396241,23.264867783],[104.80116272,23.115056992],[104.86315918,22.943468094],[104.399238586,22.701955795],[104.267967225,22.839319229],[104.039291382,22.723707199],[103.961410522,22.506477357],[103.647262574,22.794525147],[103.531600952,22.594932557],[103.31943512,22.807647705],[103.030815125,22.4424572],[102.481575013,22.778799058],[102.145095826,22.400774002],[102.611213683,21.922199249],[102.675338745,21.655506134],[102.985512,21.726517],[102.911886385,21.230425288],[103.11478424,20.896928788],[103.674446105,20.668684005],[103.80531311,20.854190827],[104.120582581,20.972215653],[104.524391175,20.701698304],[104.38721466,20.48799324],[104.614379882,20.242595673],[104.993026733,20.094930649],[104.641685487,19.621925354],[104.16191864,19.695711137],[103.901992798,19.308712005],[104.543571472,18.973827362],[104.738937379,18.800678254],[105.198867798,18.638824462],[105.103874207,18.447423936],[105.642876,17.992552],[105.619293212,17.873899461],[106.092086792,17.360090256],[106.549835204,16.997842789],[106.660644531,16.473194122],[106.830574036,16.549053192],[106.969863891,16.302373885],[107.467460633,16.024957658],[107.210578918,15.826229096],[107.381584167,15.493277549],[107.595420837,15.381952285],[107.556381204,14.686234709],[107.338652423,14.127848981],[107.442549785,13.997592164],[107.627678766,13.36649583],[107.495837281,13.027784286],[107.589547299,12.559506696],[107.543897177,12.350877199],[107.155564344,12.27787959],[107.003350754,12.089350493],[106.724104774,11.975694743],[106.411855086,11.973559199],[106.440304342,11.6691752],[106.024236022,11.774410384],[105.875629837,11.287611961],[106.206101064,10.977754812],[105.898415874,10.844197791],[105.779420432,11.030489938],[105.346457139,10.868015445],[105.080220543,10.954634273],[105.098302155,10.721011909],[104.869073751,10.522200051],[104.439158228,10.423138713]]],[[[104.034828185,10.053902626],[104.079086,10.370454],[103.861168,10.305357],[104.034828185,10.053902626]]]]},"properties":{"id":"420e0bb8-8cfd-45b4-afe6-05137404bfb2","code":"VNM","name":"Vietnam","abbreviation":"C-VNM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.664306641,17.714860916],[-64.747642517,17.783750534],[-64.903198243,17.681249618],[-64.664306641,17.714860916]]]},"properties":{"id":"a95c6223-4a0a-4084-b9dc-981098c7dd6a","code":"VIR","name":"Virgin Islands, U.S.","abbreviation":"C-VIR","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-176.186386,-13.3075],[-176.218612999,-13.230553999],[-176.246384,-13.314445],[-176.186386,-13.3075]]]},"properties":{"id":"6c46fdb4-a4f6-4e04-8095-4f429b1edcb4","code":"WLF","name":"Wallis and Futuna","abbreviation":"C-WLF","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.670013428,27.670074462],[-13.167089462,27.68309784],[-13.573749543,26.731527328],[-13.977640152,26.470693588],[-14.182916641,26.424583435],[-14.474305153,26.180694581],[-14.845693588,25.207359314],[-14.882638932,24.701805114],[-15.219028,24.442083],[-15.599585,24.039026],[-16.188749,23.126806],[-16.494583,22.325138],[-16.812361,22.151251],[-16.982082,21.718752],[-17.045986,20.771763],[-16.939711,21.326639],[-15.877051,21.341209],[-13.00176,21.330811],[-13.145749092,22.731409073],[-12.957139015,23.213079453],[-12.740400313,23.391349792],[-12.000000001,23.454519272],[-12.003888131,25.99864006],[-8.674157142,25.997608184],[-8.673868179,27.298070908],[-8.670013428,27.670074462]]]},"properties":{"id":"5e61a81a-17c4-4c18-8329-c29fd342b3ef","code":"ESH","name":"Western Sahara","abbreviation":"C-ESH","parent_id":null}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[51.999999999,18.999998094],[50.7833333,18.7888889],[49.116666701,18.616666699],[48.183333299,18.1666667],[47.6000003,17.449999401],[47.4666667,17.1166667],[47,16.95],[46.75,17.2833333],[46.366666701,17.2333333],[45.399999999,17.3333333],[45.216666699,17.4333333],[44.4666667,17.4333333],[43.683332587,17.366667371],[43.484638901,17.5451111],[43.24075,17.480527799],[43.120722,16.528583],[42.909798,16.392508],[42.778236,16.369196],[42.810696,15.87014],[42.683193,15.727362],[43.01236,14.544308],[43.097363,14.063472],[43.292640686,13.605972291],[43.25375,13.215973],[43.494583,12.817363],[43.928749,12.597085],[44.727638,12.753472],[45.377361,13.055695],[45.639584,13.338752],[46.241528,13.433473],[46.685138703,13.425138473],[47.391529,13.653473],[47.707085,13.91236],[48.023472,14.055417],[48.17625,13.970417],[48.679584504,14.045694351],[49.112640382,14.531525612],[49.934307097,14.850416183],[50.14680481,14.841806412],[50.475139618,15.023472787],[51.22013855,15.192361831],[52.224582673,15.635418892],[52.14680481,15.972361566],[52.23764038,16.202362061],[52.49597168,16.440416336],[53.082321166,16.642362594],[52.712574005,17.080316544],[52.782176971,17.349733353],[51.999999999,18.999998094]]],[[[53.740970612,12.634861946],[53.543468,12.713688],[53.305138,12.536528],[53.678195953,12.304026603],[54.140415192,12.351250649],[54.473197936,12.54490757],[54.110473632,12.70068264],[53.740970612,12.634861946]]]]},"properties":{"id":"d3d10463-5ede-462d-be64-199bc1336fda","code":"YEM","name":"Yemen","abbreviation":"C-YEM","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.440829367,-17.635094307],[24.224937928,-17.471576287],[24.701937939,-17.493276287],[25.040837939,-17.584176287],[25.267707964,-17.782541854],[25.688637939,-17.804176287],[25.973437939,-17.997676287],[26.399237939,-17.935876287],[26.717837939,-18.077376287],[27.005437939,-17.953576287],[27.561737939,-17.401676287],[27.837637939,-16.963376287],[28.829284668,-16.491699219],[28.867919922,-16.045898438],[29.217937939,-15.778476287],[29.800737939,-15.607276287],[30.411541281,-15.610714701],[30.219437939,-14.997876287],[30.687337939,-14.819876287],[31.506437939,-14.600976287],[31.956115723,-14.401000977],[32.454837939,-14.271576287],[33.24020417,-13.998174991],[33.037637939,-14.042876287],[32.802737939,-13.655476287],[33.026137939,-13.214176287],[32.961237939,-12.775676287],[33.530737939,-12.365076287],[33.241837939,-12.130776287],[33.304837939,-11.605776287],[33.230537939,-11.428776287],[33.402937939,-11.160576287],[33.248537939,-10.873776287],[33.706237939,-10.602376287],[33.395690918,-9.916687012],[33.098510742,-9.674194336],[32.955853378,-9.399693235],[32.545851713,-9.254399438],[32.437154381,-9.118147416],[31.98806949,-9.075258924],[31.376548793,-8.588562276],[31.016937939,-8.576676287],[30.795076198,-8.276758081],[30.429537939,-8.273276287],[28.994637939,-8.460476287],[28.782437939,-8.929676287],[28.390637939,-9.225676287],[28.670471191,-9.815185547],[28.631286621,-10.528686523],[28.391837939,-11.587176287],[28.447937939,-11.819576287],[28.964237939,-12.209376287],[29.050937939,-12.378176287],[29.494337939,-12.451376287],[29.585337939,-12.184976287],[29.822337939,-12.147576287],[29.811437939,-13.444976287],[29.574537939,-13.212476287],[29.175137939,-13.446276287],[28.995937939,-13.426676287],[28.809437939,-12.998476287],[28.315237939,-12.418976287],[27.934337939,-12.260276287],[27.650922915,-12.284833747],[27.46880253,-11.930631319],[27.016276636,-11.615638271],[27.008194646,-11.83967902],[26.711437939,-12.001076287],[26.473337939,-11.916376287],[26.040437939,-11.929776287],[25.508839191,-11.78707337],[25.331337939,-11.620076287],[25.343237939,-11.214876287],[24.297883939,-11.399182287],[24.374083939,-11.088782287],[23.992247019,-10.896182914],[24.075883939,-11.375682287],[23.967137939,-11.661876287],[23.975437939,-12.124776287],[24.067937939,-12.295176287],[23.900085449,-12.783295233],[24.065917969,-12.998383124],[22.002890145,-12.997291326],[21.980037939,-14.513876287],[22.001337939,-16.211876287],[22.141337939,-16.476076287],[22.828637939,-17.163676287],[23.440829367,-17.635094307]]]},"properties":{"id":"3a400384-79de-4709-a6b2-3766aeb76d70","code":"ZMB","name":"Zambia","abbreviation":"C-ZMB","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.368310928,-22.197811127],[29.773590088,-22.141420365],[30.278530774,-22.349150761],[30.831733698,-22.289381165],[31.307275773,-22.420276642],[32.399799348,-21.327598572],[32.516838075,-20.914373397],[32.488540649,-20.627471923],[32.658370972,-20.561620712],[33.013950347,-20.010980607],[33.052776336,-19.780582428],[32.850135803,-19.684627532],[32.845279693,-19.024831772],[32.704511366,-18.843793876],[32.954124451,-18.690193176],[32.888331142,-18.511163488],[33.054321289,-18.357774734],[32.942576249,-17.978823341],[33.045261384,-17.346971511],[32.838451386,-16.932029724],[32.978549958,-16.707206727],[32.285324096,-16.434577942],[32.037540435,-16.442369462],[31.691698074,-16.201686859],[31.152347135,-15.988616026],[30.424594879,-15.999998093],[30.411541281,-15.610714701],[29.800737939,-15.607276287],[29.217937939,-15.778476287],[28.867919922,-16.045898438],[28.829284668,-16.491699219],[27.837637939,-16.963376287],[27.561737939,-17.401676287],[27.005437939,-17.953576287],[26.717837939,-18.077376287],[26.399237939,-17.935876287],[25.973437939,-17.997676287],[25.688637939,-17.804176287],[25.267707964,-17.782541854],[25.265507709,-17.78990663],[25.237734174,-17.90915827],[25.521398886,-18.379168279],[25.782484898,-18.622416768],[25.826112962,-18.834878076],[26.160480498,-19.537670135],[26.72580104,-19.937199634],[27.23468983,-20.116282495],[27.35820961,-20.473520279],[27.683849335,-20.490339279],[27.68866457,-21.057577654],[28.021941118,-21.573519046],[28.568254707,-21.63236419],[29.075893597,-21.81884297],[29.051730088,-22.018145483],[29.368310928,-22.197811127]]]},"properties":{"id":"a1d8e1a5-b0ad-4d39-b83d-7a4146a53c6d","code":"ZWE","name":"Zimbabwe","abbreviation":"C-ZWE","parent_id":null}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.026562001,60.093231],[20.254687999,60.285934],[19.798437,60.401566001],[19.758333,60.091666999],[20.026562001,60.093231]]]},"properties":{"id":"63367b72-6ebc-4222-bcc7-f4384ff4e8a4","code":"ALA","name":"Åland","abbreviation":"C-ALA","parent_id":null}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60.89943695, 29.837495804], + [62.480146407, 29.376457215], + [63.664894105, 29.476406098], + [64.140842438, 29.362118721], + [64.26334381, 29.503400803], + [64.631927489, 29.581081391], + [65.097137451, 29.542835236], + [66.266502379, 29.841995239], + [66.241653442, 30.055051803], + [66.375152587, 30.474360943], + [66.389030456, 30.837862969], + [66.902275086, 31.296169281], + [67.306285859, 31.182589531], + [67.774806976, 31.333582878], + [67.710716247, 31.50006485], + [68.168876648, 31.834236144], + [68.570144654, 31.827964783], + [68.804939, 31.609982], + [69.11794281, 31.703262329], + [69.323501588, 31.944173813], + [69.240699768, 32.461387635], + [69.589210511, 33.08392334], + [70.155620575, 33.197887421], + [70.340229035, 33.392023087], + [70.155033112, 33.725603104], + [70.004165649, 33.740234375], + [69.914024352, 34.023826599], + [70.767936706, 33.954856873], + [71.076286317, 34.062507629], + [71.169471741, 34.363609314], + [71.006813049, 34.461116791], + [71.301200867, 34.865463258], + [71.525493623, 34.960206986], + [71.690170289, 35.21439171], + [71.571235657, 35.721515656], + [71.230941772, 36.069679261], + [71.614257812, 36.321292877], + [71.657035828, 36.477924347], + [72.656166077, 36.849842072], + [73.352516175, 36.853221894], + [73.832992554, 36.909191133], + [74.029205322, 36.84624672], + [74.571556, 37.034439], + [74.489113, 37.24192], + [74.89031601, 37.235990524], + [74.809270223, 37.351248424], + [74.276100158, 37.401042938], + [73.761749268, 37.219787597], + [73.775794984, 37.439640045], + [73.301261903, 37.46227646], + [72.817558289, 37.232394219], + [72.662944793, 37.017257691], + [72.342979431, 36.989185334], + [71.842369079, 36.681288401], + [71.566844941, 36.764213562], + [71.432665791, 37.056616925], + [71.59519577, 37.805957794], + [71.524085998, 37.957069398], + [71.252235413, 37.931758881], + [71.374122619, 38.255630493], + [70.989463806, 38.490411123], + [70.610661825, 38.345732371], + [70.504997253, 38.122574807], + [70.189167023, 37.844972611], + [70.265062968, 37.607241313], + [69.56879425, 37.579673766], + [69.378969193, 37.43544674], + [69.40558815, 37.171580315], + [69.250095368, 37.095895767], + [68.968215942, 37.320434571], + [68.305309296, 37.103076936], + [68.027057648, 36.930368424], + [67.790663956, 37.185199858], + [67.517433167, 37.274326325], + [67.277362824, 37.177192688], + [66.996528625, 37.389896393], + [66.526388264, 37.34608813], + [66.305900573, 37.319385529], + [65.704481125, 37.538148881], + [65.530151367, 37.239753723], + [65.130973817, 37.247154237], + [64.753700256, 37.111557008], + [64.796134949, 36.91607666], + [64.616859436, 36.630912781], + [64.635253905, 36.438274384], + [64.061935425, 36.001911163], + [63.307189941, 35.857135772], + [63.094561259, 35.420649212], + [62.745594025, 35.253723144], + [62.264902115, 35.295410156], + [62.066204071, 35.431550981], + [61.58953476, 35.435199738], + [61.282627426, 35.60869039], + [61.099864959, 35.275653839], + [60.991390229, 34.641555786], + [60.727661133, 34.510429383], + [60.504928589, 34.076797486], + [60.531753541, 33.650173188], + [60.899990081, 33.538909912], + [60.58412552, 33.12753296], + [60.880195618, 32.200416566], + [60.775035858, 31.742471694], + [60.845687866, 31.486900331], + [61.706481933, 31.377180099], + [61.834262848, 31.087860107], + [61.807563782, 30.83760643], + [60.89943695, 29.837495804] + ] + ] + }, + "properties": { + "id": "b9195449-7fe4-488a-8a2a-8348c029333d", + "code": "AFG", + "name": "Afghanistan", + "abbreviation": "C-AFG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.888787151, 34.958677121], + [33.906524816, 35.069122147], + [33.67452139, 35.043880133], + [33.702095033, 34.979026794], + [33.888787151, 34.958677121] + ] + ] + }, + "properties": { + "id": "41526f66-0180-4c1f-b3f9-dcefe0d10299", + "code": "XAD", + "name": "Akrotiri and Dhekelia", + "abbreviation": "C-XAD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.008482885, 39.694003607], + [20.256948524, 39.667319957], + [20.306022372, 39.984871455], + [20.657573901, 40.090528991], + [20.841936112, 40.476444244], + [21.049087524, 40.658621471], + [20.991338731, 40.858062744], + [20.737983704, 40.912139893], + [20.455766677, 41.524791719], + [20.591096878, 41.878536225], + [20.524585089, 42.201494852], + [20.033109664, 42.548316956], + [19.833229066, 42.467416764], + [19.706918717, 42.658889772], + [19.285785675, 42.180006028], + [19.377112809, 41.866320183], + [19.593598867, 41.811992433], + [19.41737859, 41.389046242], + [19.520535501, 41.262886047], + [19.36916542, 40.727085114], + [19.487427026, 40.450543352], + [19.443881989, 40.234898249], + [19.853961786, 40.043861072], + [20.008482885, 39.694003607] + ] + ] + }, + "properties": { + "id": "ca274103-3078-4f20-910b-d3cc0cec2fa4", + "code": "ALB", + "name": "Albania", + "abbreviation": "C-ALB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.645665995, 36.936630792], + [8.226361465, 36.951721573], + [7.85763979, 36.842222215], + [7.756013799, 36.957865716], + [7.209791125, 37.088697813], + [6.95097208, 36.882499695], + [6.469667964, 37.088606093], + [6.233988285, 36.918055943], + [5.247870843, 36.641111056], + [4.7583204, 36.8952492], + [3.738847614, 36.887623597], + [3.498645723, 36.769513846], + [2.896966652, 36.803000667], + [2.60316364, 36.60160531], + [2.348562008, 36.643912601], + [1.998946836, 36.565867266], + [1.184817195, 36.514409542], + [0.340172887, 36.191688588], + [-0.112743001, 35.787922753], + [-0.340502507, 35.908724169], + [-0.653028526, 35.711235047], + [-0.825172644, 35.767311097], + [-1.193301646, 35.565007782], + [-1.273857636, 35.368790415], + [-1.779365156, 35.118819646], + [-2.211107969, 35.062023163], + [-1.88649717, 34.809758466], + [-1.732338012, 34.507414818], + [-1.647634029, 34.106685639], + [-1.737028957, 33.700263978], + [-1.598497032, 33.615089416], + [-1.670274496, 33.285953523], + [-1.460718036, 33.041847229], + [-1.38121903, 32.739322663], + [-0.996272867, 32.51703914], + [-1.197920978, 32.404144288], + [-1.205126046, 32.084774017], + [-2.013864041, 32.181777955], + [-2.915163995, 32.118808747], + [-2.83160901, 31.798009872], + [-3.661837458, 31.633885385], + [-3.776664972, 31.121631622], + [-3.535881519, 31.011262075], + [-3.642934083, 30.699592591], + [-4.320165157, 30.528390886], + [-4.606369971, 30.282133104], + [-5.239676, 29.933425904], + [-5.539897442, 29.512680054], + [-5.798730849, 29.614160538], + [-6.446598053, 29.56458664], + [-6.77609682, 29.461568833], + [-7.148672104, 29.522182465], + [-7.591602802, 29.376918793], + [-8.667710305, 28.713489533], + [-8.670013428, 27.670074462], + [-8.673868179, 27.298070908], + [-7, 26.341360092], + [-4.829955324, 24.996582606], + [-2.156348945, 23.310470582], + [-0.027551999, 21.917940139], + [-0.000170999, 21.838685989], + [1.166674017, 21.118892669], + [1.176954984, 20.733539581], + [1.653113961, 20.552160264], + [1.905501008, 20.25015068], + [2.185602009, 20.291712761], + [2.399214983, 20.071929931], + [3.002441882, 19.936761857], + [3.229897976, 19.825234413], + [3.272078037, 19.409557343], + [3.10806799, 19.178124428], + [3.335249067, 18.960230827], + [4.242887021, 19.136716843], + [5.817081929, 19.437709809], + [7.160675049, 20.619380952], + [7.445679189, 20.842470168], + [9.575286866, 22.129539489], + [11.979550363, 23.525030136], + [11.603411752, 24.263750935], + [11.423026085, 24.199550629], + [10.950188638, 24.531810761], + [10.357405344, 24.536915144], + [10.037577153, 24.962379456], + [10.032671929, 25.358707428], + [9.399593353, 26.194828033], + [9.512980461, 26.384302139], + [9.863895417, 26.519117356], + [9.924463463, 26.861048889], + [9.782815219, 27.258794785], + [9.962219033, 27.886574222], + [9.833545, 28.285259], + [9.902783394, 28.75975132], + [9.780570983, 29.424129486], + [9.391736985, 30.166704178], + [9.557297706, 30.236810685], + [9.065976143, 32.086891174], + [8.357524872, 32.502140044], + [8.323304176, 32.82302475], + [8.117932321, 33.097696304], + [7.832243681, 33.190273285], + [7.531700135, 33.804058076], + [7.580777167, 34.085739136], + [7.81585312, 34.212932586], + [7.856798268, 34.406207276], + [8.282794953, 34.653060914], + [8.249697685, 34.920059204], + [8.475512505, 35.236818314], + [8.335195541, 35.280849457], + [8.268895595, 35.737574513], + [8.309052468, 36.173706056], + [8.448978782, 36.620546818], + [8.645665995, 36.936630792] + ] + ] + }, + "properties": { + "id": "6bfa9c4d-e213-4c3d-b9ef-12f8c6341228", + "code": "DZA", + "name": "Algeria", + "abbreviation": "C-DZA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-170.680638631, -14.282476107], + [-170.82071228, -14.300050544], + [-170.759218852, -14.373241822], + [-170.680638631, -14.282476107] + ] + ] + }, + "properties": { + "id": "67035707-e12b-4533-9a48-3de519c30fa6", + "code": "ASM", + "name": "American Samoa", + "abbreviation": "C-ASM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [1.721941949, 42.501228332], + [1.440829039, 42.588253022], + [1.456564, 42.435902], + [1.721941949, 42.501228332] + ] + ] + }, + "properties": { + "id": "b3b642ab-e384-4ef9-9b55-72ab47c2751b", + "code": "AND", + "name": "Andorra", + "abbreviation": "C-AND", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [11.757551193, -17.252080917], + [12.167506218, -17.158584595], + [12.604594258, -17.229342106], + [12.992523193, -16.981487274], + [13.460853576, -17.013067244], + [13.510655404, -17.135110855], + [13.956889152, -17.433372497], + [14.214320183, -17.384059906], + [18.422714232, -17.394428252], + [18.89899063, -17.819267272], + [20.2483387, -17.893465042], + [20.812007905, -18.040735245], + [21.219751357, -17.932115555], + [21.433547973, -18.024074554], + [23.440829367, -17.635094307], + [22.828637939, -17.163676287], + [22.141337939, -16.476076287], + [22.001337939, -16.211876287], + [21.980037939, -14.513876287], + [22.002890145, -12.997291326], + [24.065917969, -12.998383124], + [23.900085449, -12.783295233], + [24.067937939, -12.295176287], + [23.975437939, -12.124776287], + [23.967137939, -11.661876287], + [24.075883939, -11.375682287], + [23.992247019, -10.896182914], + [23.871999741, -11.017000198], + [23.435529709, -10.938199998], + [23.202999115, -11.102000236], + [22.584999084, -11.036000251], + [22.299690247, -11.243968964], + [22.180999755, -10.852000236], + [22.334419251, -10.755910873], + [22.312498092, -10.340161324], + [22.184971492, -9.916891098], + [22.024482726, -9.833795547], + [21.797969819, -9.430346489], + [21.95072174, -8.450712204], + [21.745258332, -7.929479599], + [21.853217601, -7.555323958], + [21.779689788, -7.274680138], + [20.543514251, -7.281459808], + [20.621345521, -6.931686401], + [20.301710128, -6.998032092], + [19.543858846, -6.999790669], + [19.529359817, -7.446960926], + [19.357408524, -7.928155422], + [19.435684204, -7.998535155], + [18.216976166, -7.989453792], + [18.10036087, -8.09905529], + [17.560329437, -8.127449036], + [17.185121537, -7.448730946], + [16.955801011, -7.207468986], + [16.94037056, -6.874828816], + [16.689979553, -6.400587081], + [16.721578598, -6.166262864], + [16.599737167, -5.918553829], + [16.365940093, -5.864689827], + [14.962183952, -5.873423576], + [14.610759735, -5.909718037], + [13.987770558, -5.842859506], + [13.304933547, -5.883372307], + [13.115099906, -5.90045309], + [13.01874447, -5.876550992], + [12.893875123, -5.946836471], + [12.620997428, -6.017598152], + [12.276110875, -6.148043917], + [12.57603572, -6.683002508], + [12.814434494, -6.968035698], + [13.099692214, -7.843908714], + [13.392083167, -8.386458397], + [13.39911916, -8.74327568], + [13.220417534, -8.806478474], + [12.99298625, -9.086528], + [13.152812441, -9.344259182], + [13.19589035, -9.678651753], + [13.768460711, -10.6586109], + [13.865000249, -11.017805862], + [13.798052732, -11.772460609], + [13.655417204, -12.234166622], + [13.344074408, -12.612361272], + [13.201720522, -12.598487839], + [12.93791675, -12.859375], + [12.876667, -13.1035275], + [12.533590786, -13.41788], + [12.421465007, -13.878288095], + [12.287778, -14.751736312], + [12.058120906, -15.228600937], + [12.019232546, -15.568557875], + [11.736805558, -15.908888697], + [11.826074727, -16.453064537], + [11.757551193, -17.252080917] + ] + ], + [ + [ + [12.20804206, -5.768321414], + [12.535100938, -5.733852863], + [12.537505545, -5.138915619], + [12.817461014, -4.782361985], + [13.104763032, -4.648590087], + [12.723011016, -4.426958084], + [12.462395669, -4.596130848], + [12.012652398, -5.028289555], + [12.229742323, -5.494874954], + [12.20804206, -5.768321414] + ] + ] + ] + }, + "properties": { + "id": "31d0527f-11ff-45ef-ad43-ef7198ea8a07", + "code": "AGO", + "name": "Angola", + "abbreviation": "C-AGO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-63.020638275, 18.207500076], + [-62.968292215, 18.2731804], + [-63.071110812, 18.233150483], + [-63.020638275, 18.207500076] + ] + ] + }, + "properties": { + "id": "16863bc5-5b7f-422c-adf5-50f4c3e0ee0f", + "code": "AIA", + "name": "Anguilla", + "abbreviation": "C-AIA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-57.272915, -63.220833], + [-57.895309, -63.319271], + [-58.160416, -63.470833], + [-58.943748, -63.545834], + [-58.917191, -63.659893], + [-59.362499, -63.708332], + [-59.460415, -63.910416], + [-59.772915, -63.864582], + [-59.947918, -63.954166], + [-60.314583, -63.912498], + [-60.879166, -64.04583], + [-61.292191, -64.42865], + [-61.460415, -64.362503], + [-61.591667, -64.666664], + [-61.825001, -64.59375], + [-62.147915, -64.779167], + [-62.370316, -64.753647], + [-62.59375, -64.910416], + [-63.252083, -64.962502], + [-63.222916, -65.150002], + [-63.768749, -65.018753], + [-64.072395, -65.152603], + [-63.788021, -65.601563], + [-64.181252, -65.520836], + [-64.485939, -65.935936], + [-64.695831, -66.041664], + [-64.947914, -65.925003], + [-65.293747, -65.964584], + [-65.094269, -66.155731], + [-65.583336, -66.099998], + [-65.787498, -66.720833], + [-66.114586, -66.589584], + [-66.495316, -66.621353], + [-66.616669, -67.029167], + [-66.448433, -67.326561], + [-66.728645, -67.219269], + [-66.986984, -67.2724], + [-66.964584, -66.925003], + [-67.435936, -67.050522], + [-67.602081, -67.1875], + [-67.5625, -67.556252], + [-66.970833, -67.466667], + [-66.729164, -67.533333], + [-66.862503, -67.918747], + [-67.25, -67.956253], + [-66.875, -68.229164], + [-67.01458, -68.789581], + [-67.385414, -68.789581], + [-67.258331, -68.945831], + [-66.83802, -68.971352], + [-67.002083, -69.260414], + [-67.277084, -69.287498], + [-67.377083, -69.508331], + [-68.25, -69.28125], + [-68.352081, -69.40625], + [-68.839066, -69.424484], + [-68.344269, -69.679688], + [-68.49115, -70.047401], + [-67.965103, -70.294266], + [-67.673439, -70.638016], + [-67.6474, -70.859901], + [-67.413017, -70.988022], + [-67.444267, -71.223434], + [-67.622398, -71.356766], + [-67.433334, -71.616669], + [-66.773437, -71.9776], + [-66.783852, -72.16198], + [-67.176567, -72.444267], + [-67.50885, -72.827599], + [-69.320831, -73.181252], + [-70.29792, -73.29583], + [-70.820831, -73.252083], + [-71.458336, -73.362503], + [-72.254166, -73.38958], + [-72.375, -73.470833], + [-73.152084, -73.464584], + [-73.20208, -73.554169], + [-73.643753, -73.57917], + [-74.018753, -73.73542], + [-74.268753, -73.662498], + [-74.675003, -73.741669], + [-74.900002, -73.63958], + [-75.318748, -73.625], + [-75.51458, -73.712502], + [-76.254684, -73.816147], + [-76.756248, -73.78125], + [-77.106247, -73.88958], + [-77.239067, -73.80677], + [-76.725517, -73.597397], + [-76.845833, -73.464584], + [-77.558334, -73.470833], + [-78.747917, -73.61042], + [-78.723434, -73.399483], + [-79.620834, -73.043747], + [-80.539581, -72.95417], + [-80.39167, -73.418747], + [-80.831253, -73.260414], + [-81.197914, -73.243752], + [-81.322395, -73.495316], + [-81.077599, -73.5849], + [-81.240105, -73.74115], + [-82.083336, -73.89167], + [-82.925003, -73.708336], + [-83.893753, -73.685417], + [-83.752083, -73.560417], + [-84.539581, -73.570831], + [-85.097916, -73.491669], + [-85.59375, -73.354164], + [-85.591667, -73.193748], + [-85.914581, -73.181252], + [-86.441666, -73.339584], + [-86.995834, -73.385414], + [-87.339584, -73.168747], + [-87.92083, -73.254166], + [-88.447914, -73.268753], + [-88.650002, -73.09375], + [-88.092186, -72.831772], + [-88.191666, -72.70208], + [-89.291664, -72.631248], + [-89.054687, -72.941147], + [-89.256248, -73.106247], + [-90.216667, -73.145836], + [-90.525002, -73.287498], + [-91.11042, -73.300003], + [-91.849998, -73.254166], + [-92.435417, -73.160416], + [-93.602081, -73.179169], + [-94.306252, -73.32708], + [-94.53125, -73.23542], + [-95.712502, -73.245834], + [-95.84375, -73.333336], + [-96.683334, -73.272919], + [-97.98333, -73.029167], + [-98.856247, -72.989586], + [-100.402084, -73.0625], + [-100.810417, -72.970833], + [-101.997917, -73.054169], + [-102.466667, -72.98333], + [-102.104164, -72.785416], + [-103.04792, -72.70417], + [-103.432816, -72.842186], + [-103.252083, -73.17083], + [-102.884895, -73.305733], + [-102.447914, -73.333336], + [-100.370834, -73.316666], + [-99.700516, -73.381767], + [-99.5849, -73.524483], + [-98.868752, -73.587502], + [-99.564583, -73.706253], + [-100.625, -73.78125], + [-101.175003, -73.772919], + [-101.362503, -73.668747], + [-102.252083, -73.604164], + [-102.977081, -73.597916], + [-102.76667, -73.933334], + [-102.425003, -73.927086], + [-101.535416, -74.010414], + [-101.308853, -74.309898], + [-101.414063, -74.501564], + [-100.841667, -74.541664], + [-100.099998, -74.46875], + [-99.950516, -74.789062], + [-100.285416, -74.933334], + [-99.349998, -74.927086], + [-99.325516, -75.074478], + [-98.941666, -75.17083], + [-98.42292, -75.120834], + [-99.01667, -75.339584], + [-99.36042, -75.304169], + [-100.352081, -75.345833], + [-101.131248, -75.433334], + [-101.556252, -75.349998], + [-101.629684, -75.110939], + [-102.622917, -75.129166], + [-103.40625, -75.089584], + [-103.695831, -75.147919], + [-104.558334, -75.164581], + [-105.09375, -75.114586], + [-105.191666, -75.185417], + [-106.458336, -75.316666], + [-107.841667, -75.32708], + [-108.112503, -75.260414], + [-108.820831, -75.23542], + [-109.67292, -75.13958], + [-110.168747, -75.245834], + [-110.416664, -75.191666], + [-111.14167, -75.20208], + [-111.606247, -75.154167], + [-111.002083, -74.987503], + [-110.677086, -74.82917], + [-110.25885, -74.770317], + [-110.09375, -74.564583], + [-110.381767, -74.281769], + [-111.595833, -74.17083], + [-111.903648, -74.283852], + [-111.472916, -74.504166], + [-111.824997, -74.489586], + [-111.909897, -74.620316], + [-111.54583, -74.802086], + [-112.604164, -74.845833], + [-113.729164, -74.95417], + [-114.09375, -75.070831], + [-113.856247, -74.681252], + [-113.269272, -74.468231], + [-113.787498, -74.46875], + [-113.900002, -74.239586], + [-113.419266, -74.174484], + [-113.5625, -74.029167], + [-114.118752, -74.068748], + [-113.954689, -73.910934], + [-114.252083, -73.862503], + [-114.78125, -73.931252], + [-115.145836, -74.14167], + [-114.877083, -74.48333], + [-116.050003, -74.504166], + [-116.635414, -74.552086], + [-117.787498, -74.518753], + [-118.179169, -74.320831], + [-118.668747, -74.34375], + [-119.095314, -74.44635], + [-118.622917, -74.512497], + [-118.914581, -74.60833], + [-119.9375, -74.681252], + [-120.254166, -74.658333], + [-120.852081, -74.743752], + [-123.231247, -74.754166], + [-124.091667, -74.808334], + [-124.293747, -74.712502], + [-125.650002, -74.716667], + [-126.395836, -74.756248], + [-127.275002, -74.681252], + [-128.683334, -74.822914], + [-129.191666, -74.82708], + [-130.054169, -74.916664], + [-130.639587, -74.837502], + [-131.577087, -74.84375], + [-132.045837, -74.760414], + [-132.59166, -74.831253], + [-132.768753, -74.770836], + [-133.887497, -74.931252], + [-134.590103, -74.732811], + [-134.579163, -74.631248], + [-135.391663, -74.5625], + [-135.693756, -74.75], + [-136.239578, -74.693748], + [-136.832809, -74.748436], + [-136.997391, -75.00573], + [-136.4375, -75.099998], + [-137.170837, -75.17083], + [-137.743744, -75.060417], + [-138.110413, -75.118752], + [-139.65416, -75.15625], + [-140.389587, -75.462502], + [-140.777084, -75.520836], + [-141.322922, -75.497917], + [-140.641663, -75.806252], + [-141.179169, -75.741669], + [-141.556244, -75.76458], + [-141.8526, -75.521355], + [-142.333328, -75.435417], + [-142.53125, -75.539581], + [-143.537506, -75.54792], + [-144.102081, -75.616669], + [-144.15416, -75.804169], + [-144.9375, -75.841667], + [-145.172913, -75.908333], + [-146.208328, -75.908333], + [-146.509903, -76.069267], + [-145.910416, -76.260414], + [-145.4776, -76.331772], + [-145.714584, -76.466667], + [-146.270828, -76.42083], + [-147.429169, -76.193748], + [-148.243744, -76.081253], + [-148.558334, -76.23333], + [-149.489578, -76.293747], + [-149.53125, -76.445831], + [-148.52916, -76.51458], + [-148.06459, -76.447914], + [-147.045837, -76.435417], + [-146.40416, -76.550003], + [-146.114578, -76.708336], + [-145.4375, -76.75], + [-145.962494, -76.833336], + [-145.606247, -77.037498], + [-145.901566, -77.077599], + [-145.270828, -77.237503], + [-145.806244, -77.252083], + [-145.450516, -77.5224], + [-145.933334, -77.470833], + [-146.397919, -77.508331], + [-146.910416, -77.243752], + [-147.27916, -77.262497], + [-147.647919, -77.397919], + [-148.02916, -77.20208], + [-148.8125, -77.11042], + [-149.051559, -77.329689], + [-147.760422, -77.449997], + [-148.524994, -77.560417], + [-148.972916, -77.706253], + [-149.420837, -77.61042], + [-149.339584, -77.775002], + [-149.800003, -77.822914], + [-151.324997, -77.506248], + [-151.431244, -77.431252], + [-152.118744, -77.39167], + [-152.447922, -77.304169], + [-152.61615, -77.442184], + [-153.370834, -77.439583], + [-153.416672, -77.289581], + [-154.887497, -77.104164], + [-155.485413, -77.168747], + [-155.837494, -77.064583], + [-156.40625, -77.072914], + [-156.99791, -77.36042], + [-157.931244, -77.058334], + [-158.199997, -77.068748], + [-158.336975, -77.304688], + [-158.144272, -77.408852], + [-158.28334, -77.616669], + [-158.62709, -77.870834], + [-158.329163, -77.98333], + [-156.929169, -78.252083], + [-156.63385, -78.177605], + [-155.387497, -78.1875], + [-154.835419, -78.243752], + [-154.516663, -78.127083], + [-154.160416, -78.224998], + [-154.316666, -78.397919], + [-155.175003, -78.48333], + [-156.09166, -78.497917], + [-156.441666, -78.689583], + [-154.510422, -79.095833], + [-152.587494, -79.175003], + [-151.71666, -79.083336], + [-152.258331, -79.3125], + [-150.589584, -79.535416], + [-147.918747, -79.78125], + [-147.204163, -79.941666], + [-147.995834, -79.935417], + [-148.06041, -79.887497], + [-148.831253, -79.902084], + [-147.885422, -80.068748], + [-148.50209, -80.066666], + [-148.925003, -80.14167], + [-150.016663, -80.070831], + [-150.664581, -80.322914], + [-150.004166, -80.395836], + [-150.308334, -80.518753], + [-149.635422, -80.529167], + [-149.214584, -80.625], + [-149.181244, -80.741669], + [-148.410416, -80.747917], + [-147.856247, -80.956253], + [-148.820831, -81.058334], + [-149.893753, -81.122917], + [-150.556244, -81.118752], + [-152.40625, -81.17083], + [-153.199997, -81.13958], + [-154.037506, -81.060417], + [-154.722916, -81.052086], + [-155.893753, -81.095833], + [-157.12709, -81.270836], + [-156.760422, -81.377083], + [-155.899994, -81.383331], + [-154.34375, -81.574997], + [-153.829163, -81.679169], + [-153.850006, -81.793747], + [-154.425003, -81.831253], + [-154.774994, -81.96875], + [-154.202087, -82.039581], + [-154.227081, -82.122917], + [-153.012497, -82.339584], + [-152.541672, -82.550003], + [-153.09375, -82.631248], + [-154.914581, -82.777084], + [-155.443756, -82.933334], + [-155.556244, -83.041664], + [-155.956253, -83.074997], + [-157.40834, -83.04792], + [-158.291672, -83.168747], + [-156.929169, -83.21875], + [-157.524994, -83.385414], + [-158.797913, -83.445831], + [-159.422913, -83.552086], + [-160.097916, -83.48333], + [-162.149994, -83.529167], + [-162.3125, -83.431252], + [-163.135422, -83.316666], + [-164.214584, -83.408333], + [-164.493744, -83.518753], + [-165.054169, -83.197914], + [-165.956253, -83.17292], + [-168.177078, -83.262497], + [-169.606247, -83.241669], + [-169.535416, -83.3125], + [-170.733337, -83.197914], + [-170.920837, -83.0625], + [-171.487503, -82.9375], + [-172.191666, -82.868752], + [-172.725006, -82.918747], + [-173.3125, -82.902084], + [-173.879166, -82.79583], + [-173.90625, -82.9375], + [-173.004166, -83.068748], + [-170.883331, -83.287498], + [-169.387497, -83.416664], + [-168.056244, -83.785416], + [-167.25, -83.831253], + [-166.241669, -83.831253], + [-165.56041, -83.745834], + [-164.037506, -83.92083], + [-163.68959, -84.050003], + [-165.087494, -84.066666], + [-165.137497, -84.13958], + [-164.206253, -84.21875], + [-164.135422, -84.293747], + [-163.014587, -84.364586], + [-164.570831, -84.385414], + [-165.443756, -84.366669], + [-165.445831, -84.433334], + [-164.385422, -84.410416], + [-163.652084, -84.427086], + [-163.850006, -84.54583], + [-163.179169, -84.57917], + [-160.68541, -84.650002], + [-159.618744, -84.712502], + [-158.40416, -84.752083], + [-158.327087, -84.79792], + [-156.866669, -84.793747], + [-155.612503, -84.833336], + [-155.87709, -84.904167], + [-157.556244, -84.887497], + [-156.824997, -85.029167], + [-155.975006, -85.081253], + [-155.875, -85.17083], + [-156.739578, -85.183334], + [-156.964584, -85.231247], + [-158.675003, -85.133331], + [-159.335419, -85.006248], + [-160.266663, -84.939583], + [-162.745834, -84.877083], + [-163.12709, -84.912498], + [-166.214584, -84.791664], + [-167.34166, -84.86042], + [-168.0625, -84.777084], + [-168.264587, -84.645836], + [-171.697922, -84.533333], + [-173.545837, -84.439583], + [-175.037506, -84.416664], + [-175.204163, -84.491669], + [-175.90416, -84.54583], + [-176.456253, -84.425003], + [-176.995834, -84.372917], + [-177.735413, -84.416664], + [-178.233337, -84.308334], + [-179.99791, -84.349998], + [-180, -90], + [180, -90], + [179.99791, -84.349998], + [179.479172, -84.210419], + [178.5, -84.177086], + [178.34584, -84.120834], + [177.306244, -84.068748], + [176.129166, -83.949997], + [175.254166, -83.979164], + [174.90416, -83.831253], + [174.177078, -83.881248], + [173.714584, -83.783333], + [172.774994, -83.664581], + [172.050003, -83.71875], + [171.954163, -83.622917], + [171.347916, -83.554169], + [171.229172, -83.447914], + [170.766663, -83.42292], + [170.410416, -83.489586], + [170.081253, -83.402084], + [169.287506, -83.337502], + [168.708328, -83.395836], + [168.116669, -83.366669], + [168.806244, -83.1875], + [168.643753, -83.002083], + [168.0625, -82.962502], + [167.768753, -83.054169], + [167.427078, -83.035416], + [167.272919, -82.804169], + [166.568756, -82.777084], + [166.172913, -82.64167], + [165.59375, -82.620834], + [165.241669, -82.38958], + [164.65834, -82.335419], + [163.931244, -82.408333], + [163.231247, -82.425003], + [162.941666, -82.535416], + [162.708328, -82.479164], + [160.835419, -82.5], + [160.683334, -82.408333], + [162.197922, -82.268753], + [163.800003, -82.237503], + [162.862503, -81.916664], + [162.366669, -81.664581], + [161.539581, -81.606247], + [161.447922, -81.429169], + [160.589584, -81.362503], + [160.102081, -81.208336], + [160.993744, -81.26667], + [160.59584, -81.0625], + [160.870834, -80.914581], + [159.59166, -80.79792], + [160.270828, -80.779167], + [161.175003, -80.804169], + [161.183334, -80.637497], + [160.777084, -80.61042], + [160.31459, -80.681252], + [160.06459, -80.585419], + [160.65416, -80.543747], + [160.770828, -80.379166], + [159.818756, -80.402084], + [158.741669, -80.472916], + [158.222916, -80.45417], + [158.770828, -80.260414], + [160.710419, -80.0625], + [160.852081, -79.958336], + [160.356247, -79.86042], + [159.704163, -79.92083], + [159.77916, -79.777084], + [160.089584, -79.772919], + [160.791672, -79.643753], + [159.835419, -79.658333], + [160, -79.574997], + [160.683334, -79.445831], + [160.392181, -79.169266], + [161.131256, -79.058334], + [161.225006, -78.914581], + [161.50209, -79.027084], + [162.02916, -79.07917], + [161.718231, -78.817184], + [161.529678, -78.807816], + [161.376572, -78.58802], + [161.864059, -78.496353], + [161.827087, -78.643753], + [162.811981, -78.92865], + [163.042191, -78.735939], + [163.46666, -78.783333], + [163.914581, -78.737503], + [164.483337, -78.589584], + [165.229172, -78.614586], + [165.829163, -78.550003], + [166.522919, -78.708336], + [167.181244, -78.689583], + [167.02916, -78.502083], + [166.550003, -78.506248], + [165.792191, -78.422401], + [165.764069, -78.302605], + [165.344269, -78.19635], + [164.539581, -78.320831], + [163.952606, -78.192184], + [164.418228, -78.0849], + [164.481247, -77.852081], + [163.90834, -77.697914], + [163.491669, -77.720833], + [163.833328, -77.51667], + [163.112503, -77.027084], + [162.535416, -76.96875], + [162.835419, -76.666664], + [162.422913, -76.643753], + [162.864059, -76.482811], + [162.774994, -76.23542], + [162.168747, -76.252083], + [162.195831, -76.147919], + [162.724487, -76.080734], + [162.822922, -75.783333], + [162.288025, -75.690102], + [162.210419, -75.38958], + [161.635422, -75.36042], + [160.639587, -75.404167], + [161.004166, -75.283333], + [161.555725, -75.2724], + [161.833328, -75.193748], + [162.31041, -75.270836], + [162.572403, -75.239067], + [162.745834, -74.972916], + [162.483337, -74.943748], + [163.18541, -74.447914], + [163.535416, -74.339584], + [163.654678, -74.609901], + [164.329163, -74.493752], + [164.487503, -74.566666], + [165.100006, -74.558334], + [165.422394, -74.643234], + [165.456253, -74.48333], + [164.860413, -74.222916], + [165.070313, -74.023438], + [164.713013, -73.782814], + [164.909897, -73.672401], + [165.042191, -73.402603], + [165.24115, -73.610939], + [165.27916, -73.893753], + [165.645828, -73.918747], + [166.291153, -73.717186], + [165.885422, -73.560417], + [166.61615, -73.589066], + [166.770828, -73.487503], + [167.691666, -73.339584], + [166.950516, -73.27552], + [166.933334, -73.018753], + [167.191666, -73.15625], + [168.082809, -73.117187], + [168.393753, -73.158333], + [168.387497, -72.964584], + [168.979172, -73.091667], + [169.231247, -73.272919], + [169.25209, -73.072914], + [169.922394, -72.747398], + [169.396347, -72.666145], + [169.272919, -72.574997], + [168.870834, -72.581253], + [168.383331, -72.366669], + [168.81041, -72.383331], + [169.120834, -72.489586], + [169.40416, -72.458336], + [170.15625, -72.620834], + [170.280731, -72.317184], + [169.756775, -72.24115], + [170.072403, -72.118233], + [170.370316, -71.815102], + [170.621353, -71.971352], + [170.840103, -71.791145], + [170.270828, -71.293747], + [170.349487, -71.547401], + [170.058334, -71.658333], + [169.768753, -71.504166], + [169.543747, -71.525002], + [169.295319, -71.381767], + [168.463013, -71.156769], + [168.082809, -71.134895], + [167.452087, -70.754166], + [166.464584, -70.770836], + [166.714584, -70.612503], + [166.304169, -70.591667], + [165.84375, -70.679169], + [165.422913, -70.5625], + [164.852081, -70.572914], + [164.297913, -70.493752], + [164.016663, -70.791664], + [163.858337, -70.620834], + [163.637497, -70.668747], + [163.183334, -70.595833], + [162.840103, -70.449478], + [162.728653, -70.298439], + [162.075516, -70.317184], + [161.985931, -70.456772], + [162.046356, -70.843231], + [162.42865, -71.067184], + [162.060928, -71.024483], + [161.952087, -70.90625], + [161.337494, -70.904167], + [161.447403, -70.689064], + [160.99791, -70.239586], + [160.616669, -70.043747], + [159.773437, -69.871353], + [160.245834, -69.877083], + [160.243744, -69.76458], + [159.768753, -69.504166], + [159.270828, -69.429169], + [159.029678, -69.492187], + [158.856247, -69.32708], + [158.606247, -69.345833], + [158.22084, -69.214584], + [157.62709, -69.185417], + [157.378647, -69.354683], + [157.152084, -69.162498], + [156.329163, -69.20208], + [155.787506, -68.949997], + [155.012497, -68.900002], + [154.820831, -68.710419], + [154.545837, -68.818748], + [154.462494, -68.620834], + [154.71875, -68.529167], + [153.881256, -68.277084], + [153.719269, -68.285934], + [153.700516, -68.550522], + [153.835419, -68.760414], + [153.337494, -68.777084], + [153.045837, -68.883331], + [152.541672, -68.710419], + [151.579163, -68.689583], + [151.543747, -68.92292], + [151.150513, -68.88073], + [150.971359, -68.720314], + [151.108856, -68.481766], + [150.933334, -68.34375], + [150.34584, -68.441666], + [149.397919, -68.381248], + [149.231247, -68.458336], + [148.731247, -68.404167], + [148.363022, -68.484901], + [147.854172, -68.368752], + [147.027084, -68.429169], + [147.089584, -68.293747], + [146.717178, -68.283852], + [146.4375, -67.722916], + [146.189072, -67.617188], + [145.756256, -67.572914], + [145.521347, -67.711983], + [145.439072, -67.50885], + [145.2276, -67.527603], + [144.960419, -67.720833], + [144.647919, -67.745834], + [144.339066, -67.918228], + [143.945831, -67.95417], + [143.860931, -67.795311], + [144.180725, -67.618233], + [144.270828, -67.42083], + [144.664063, -67.109901], + [144.504166, -67.012497], + [143.910416, -67.050003], + [143.77916, -66.885414], + [143.464584, -66.84375], + [142.797913, -67.022919], + [142.479172, -67.027084], + [142.106247, -66.824997], + [141.5625, -66.772919], + [141.256775, -66.857811], + [140.897919, -66.743752], + [140.114578, -66.724998], + [139.254166, -66.560417], + [138.304169, -66.54583], + [137.710419, -66.377083], + [136.958328, -66.32708], + [136.532822, -66.40052], + [136.143753, -66.229164], + [135.645828, -66.26458], + [135.335419, -66.099998], + [135.180725, -66.328651], + [134.739578, -66.345833], + [134.306244, -66.525002], + [134.287506, -66.322914], + [133.802078, -66.106247], + [133.100006, -66.102081], + [132.839584, -66.195831], + [132.422913, -66.150002], + [131.727081, -66.247917], + [131.333328, -66.241669], + [130.733337, -66.143753], + [130.591141, -66.247398], + [130.087494, -66.275002], + [129.717178, -66.440102], + [129.591141, -66.74115], + [129.104172, -67.17083], + [128.860413, -67.035416], + [128.477081, -67.145836], + [128.089584, -67.022919], + [127.40625, -67.074997], + [127.36615, -66.933853], + [127.080734, -66.954689], + [126.995834, -66.806252], + [126.675003, -66.845833], + [126.761978, -66.646355], + [126.679169, -66.404167], + [126.404686, -66.363022], + [126.397919, -66.552086], + [125.883331, -66.306252], + [125.393753, -66.418747], + [125.131248, -66.664581], + [124.63385, -66.766151], + [124.26458, -66.595833], + [124.002083, -66.587502], + [123.624481, -66.728645], + [123.14167, -66.73333], + [122.222916, -66.845833], + [121.8125, -67.027084], + [120.300003, -67.247917], + [118.887497, -67.427086], + [118.777084, -67.268753], + [119.533333, -67.189583], + [120.387497, -67], + [120.370834, -66.931252], + [119.335419, -67.131248], + [118.64167, -67.183334], + [118.427086, -67.033333], + [117.850517, -67.096352], + [116.844269, -67.132813], + [116.9375, -66.947914], + [116.532814, -67.11615], + [115.877083, -67.222916], + [115.366669, -67.21875], + [115.227081, -67.324997], + [114.574997, -67.370834], + [113.689583, -67.502083], + [114.027603, -67.190102], + [115.224998, -67.043747], + [115.7724, -66.805733], + [115.568748, -66.581253], + [114.956253, -66.472916], + [114.393753, -66.462502], + [114.447395, -66.266151], + [114.259895, -66.135933], + [113.224998, -65.76667], + [110.939583, -66.04583], + [110.512497, -66.279167], + [110.722397, -66.404686], + [110.627083, -66.724998], + [110.431252, -66.654167], + [109.602081, -66.92083], + [109.081253, -66.88958], + [108.82917, -66.970833], + [108.6474, -66.829689], + [108.122917, -66.614586], + [107.116669, -66.460419], + [106.768753, -66.45417], + [104.59375, -66.14167], + [103.893753, -65.974998], + [103.60833, -66.010414], + [103.300003, -65.92292], + [102.614586, -65.864586], + [102.347397, -65.951561], + [101.289581, -65.945831], + [101.356247, -66.07708], + [100.88073, -66.378647], + [99.916664, -66.489586], + [99.607811, -66.659897], + [99.025002, -66.685417], + [98.814583, -66.918747], + [98.777084, -66.65625], + [98.485939, -66.607811], + [98.535416, -66.449997], + [98.21875, -66.456253], + [97.67292, -66.683334], + [97.150002, -66.489586], + [96.631248, -66.618752], + [95.622398, -66.699478], + [95.31823, -66.544266], + [94.933334, -66.470833], + [94.439583, -66.616669], + [93.752083, -66.75], + [93.69323, -66.592186], + [93.010414, -66.558334], + [92.806252, -66.633331], + [92.189583, -66.512497], + [91.42083, -66.604164], + [91.064583, -66.57917], + [90.467186, -66.752602], + [89.629166, -66.84375], + [88.745834, -66.779167], + [88.237503, -66.856247], + [87.95417, -66.770836], + [87.135414, -66.92292], + [86.70417, -67.066666], + [86.050003, -67.041664], + [85.877083, -67.13958], + [85.431252, -67.189583], + [84.929169, -67.070831], + [84.39167, -67.120834], + [84.224998, -67.23333], + [83.695831, -67.324997], + [83.197914, -67.574997], + [82.572914, -67.604164], + [82.28698, -67.714066], + [81.870834, -67.699997], + [80.912498, -67.89167], + [80.439583, -67.92292], + [79.043747, -68.164581], + [78.535934, -68.381767], + [78.620834, -68.693748], + [77.969269, -68.825516], + [77.82917, -69.137497], + [77.012497, -69.208336], + [76.851562, -69.364067], + [76.587502, -69.362503], + [75.958336, -69.487503], + [75.750519, -69.613022], + [75.847397, -69.824478], + [75.097916, -69.935417], + [74.729164, -69.82708], + [74.42083, -69.933334], + [74.231247, -69.73333], + [73.897919, -69.73333], + [73.695831, -69.864586], + [73.478645, -69.769272], + [73.193748, -70], + [72.810417, -70.04583], + [72.613022, -70.17865], + [72.893234, -70.406769], + [72.467186, -70.5401], + [72.32917, -70.685417], + [71.820831, -70.70417], + [71.53125, -70.956253], + [71.163017, -71.486984], + [71.191666, -71.606247], + [70.802086, -71.818748], + [70.645836, -72.006248], + [69.912498, -72.083336], + [69.939064, -72.210938], + [69.560417, -72.462502], + [69.052086, -72.416664], + [68.421349, -72.475517], + [68.02552, -72.629684], + [68.132813, -72.941147], + [67.964584, -73.14167], + [67.212502, -73.318748], + [67.112503, -73.222916], + [66.70208, -73.252083], + [66.345314, -73.142189], + [67.014061, -72.899483], + [67.11927, -72.577599], + [67.297401, -72.36615], + [67.252602, -72.085938], + [67.495834, -72.006248], + [67.552086, -71.791664], + [67.889061, -71.674484], + [67.80677, -71.547401], + [68.054169, -71.354164], + [68.54583, -71.245834], + [68.843231, -71.074478], + [69.207817, -70.703651], + [69.26458, -70.447914], + [69.150002, -70.308334], + [68.09375, -70.456253], + [67.775002, -70.400002], + [67.49115, -70.203651], + [67.542183, -70.035934], + [67.889061, -69.999481], + [68.110939, -69.735939], + [68.558853, -70.026566], + [69.157814, -69.878647], + [69.34948, -69.608849], + [68.972916, -69.54792], + [68.740105, -69.390099], + [69.012497, -69.314583], + [69.728645, -69.322395], + [69.761978, -69.177605], + [69.335938, -69.09948], + [69.741669, -68.964584], + [69.354164, -68.89167], + [69.63958, -68.57917], + [70.04583, -68.522919], + [70.041145, -68.410934], + [69.646355, -68.155731], + [69.689064, -67.876564], + [69.352081, -67.729164], + [69.066666, -67.854164], + [68.341667, -67.897919], + [66.716667, -67.79583], + [65.32708, -67.675003], + [64.731247, -67.660416], + [64.01458, -67.529167], + [63.108334, -67.53125], + [62.643749, -67.662498], + [62.0625, -67.552086], + [61.543751, -67.543747], + [60.643749, -67.404167], + [59.650002, -67.39167], + [59.53125, -67.612503], + [58.764584, -67.335419], + [58.932816, -67.18177], + [58.410934, -67.195312], + [57.585415, -66.991669], + [57.272915, -67.089584], + [56.922916, -67.04583], + [56.483856, -67.13385], + [56.202606, -67.340103], + [56.156769, -67.202599], + [55.765106, -67.19635], + [56.36198, -67.018234], + [56.497917, -66.685417], + [57.295315, -66.705734], + [57.191666, -66.518753], + [56.772915, -66.400002], + [56.332809, -66.40052], + [55.610416, -66.020836], + [55.195835, -65.929169], + [53.78125, -65.841667], + [52.922916, -65.960419], + [52.214584, -65.972916], + [51.497917, -66.114586], + [51.341667, -66.224998], + [50.602085, -66.287498], + [50.188019, -66.558853], + [50.225521, -66.730728], + [50.493752, -66.789581], + [50.418751, -66.970833], + [50.977085, -67.166664], + [50.629166, -67.241669], + [50.185417, -67.114586], + [49.912498, -67.241669], + [49.816666, -67.03125], + [49.28125, -67.043747], + [49.256248, -66.820831], + [48.346352, -67.021355], + [48.34219, -67.13073], + [48.775002, -67.224998], + [49.075001, -67.145836], + [49.403648, -67.210937], + [49.091667, -67.370834], + [48.617188, -67.452599], + [48.732815, -67.692184], + [48.397915, -68.027084], + [48.177601, -67.88385], + [48.452084, -67.729164], + [48.170834, -67.65625], + [47.252083, -67.650002], + [47.039585, -67.48542], + [47.441143, -67.41198], + [46.866665, -67.262497], + [46.395832, -67.289581], + [46.219269, -67.373436], + [46.393749, -67.614586], + [45.849998, -67.65625], + [45.693226, -67.809898], + [45.389584, -67.695831], + [44.740101, -67.771355], + [44.485416, -67.95417], + [43.945835, -67.977081], + [43.735416, -68.052086], + [43.189583, -68.04792], + [42.610935, -68.179687], + [42.53125, -68.379166], + [41.922916, -68.40625], + [41.022915, -68.587502], + [40.745834, -68.752083], + [39.846352, -68.829689], + [39.690102, -69.035934], + [39.702606, -69.314064], + [39.859894, -69.38073], + [39.662498, -69.64167], + [39.148437, -69.723434], + [39.137501, -69.908333], + [38.795834, -69.981247], + [38.993752, -70.206253], + [38.535416, -70.116669], + [38.125, -69.872917], + [38.227085, -69.756248], + [37.770832, -69.679169], + [37.004684, -69.88073], + [36.710415, -69.629166], + [36.345833, -69.60833], + [35.254166, -69.741669], + [35.065102, -69.676567], + [35.181252, -69.279167], + [34.632813, -69.07135], + [34.339584, -69.14167], + [33.889584, -69.122917], + [34.325001, -68.695831], + [33.289585, -68.664581], + [32.877083, -68.741669], + [32.492187, -68.908852], + [32.488022, -69.079689], + [32.964066, -69.36927], + [32.982815, -69.676567], + [32.754166, -70.018753], + [31.43125, -70.229164], + [30.981251, -70.210419], + [30.691668, -70.275002], + [29.822916, -70.3125], + [28.464582, -70.697914], + [27.594271, -70.748436], + [27.304167, -70.98333], + [26.95677, -70.932816], + [26.418751, -71.035416], + [25.933332, -71.041664], + [25.543751, -70.962502], + [24.904167, -70.933334], + [24.313021, -70.747398], + [24.299479, -70.460937], + [23.735416, -70.402084], + [23.336979, -70.805733], + [22.866667, -70.824997], + [22.35, -70.768753], + [22.570313, -70.529686], + [21.779167, -70.231247], + [21.614063, -70.261978], + [21.194271, -70.575516], + [21.127083, -70.839584], + [20.447916, -70.925003], + [19.722918, -70.883331], + [19.547916, -70.949997], + [19.13125, -70.864586], + [18.909897, -70.641151], + [19.2875, -70.387497], + [19.169271, -70.250519], + [18.768749, -70.247917], + [18.254688, -70.332817], + [18.439583, -70.5], + [18.066668, -70.54583], + [17.754168, -70.491669], + [16.483854, -70.44635], + [16.591667, -70.137497], + [15.941667, -70.189583], + [15.866146, -70.381767], + [15.645833, -70.331253], + [14.860416, -70.333336], + [14.579166, -70.285416], + [13.8375, -70.352081], + [13.33125, -70.270836], + [12.98125, -70.041664], + [12.504167, -70.054169], + [12.978646, -70.173439], + [12.735416, -70.320831], + [12.273437, -70.392189], + [12.032813, -70.701561], + [11.825, -70.783333], + [10.614583, -70.614586], + [9.946354, -70.44323], + [9.297916, -70.07708], + [8.902604, -70.232811], + [9.139584, -70.377083], + [8.277083, -70.495834], + [7.8375, -70.425003], + [7.870313, -70.160934], + [7.415104, -70.210937], + [7.545833, -70.539581], + [6.829166, -70.527084], + [6.774479, -70.601562], + [5.085417, -70.633331], + [3.5125, -70.862503], + [2.525, -70.902084], + [1.139583, -71.160416], + [0.642187, -71.225517], + [0.208854, -71.354683], + [-0.539063, -71.766151], + [-0.952083, -71.614586], + [-0.796354, -71.390099], + [-1.232813, -71.265099], + [-1.370833, -71.439583], + [-1.948438, -71.410934], + [-2.661979, -71.289062], + [-3.318229, -71.2901], + [-3.570833, -71.508331], + [-3.9, -71.29792], + [-5.48125, -71.354164], + [-6.297917, -71.3125], + [-6.05625, -71.116669], + [-5.717187, -71.032814], + [-5.654687, -70.742188], + [-6.389584, -70.720833], + [-6.60625, -70.925003], + [-7.227083, -70.791664], + [-7.90625, -70.835419], + [-7.899479, -70.976562], + [-7.554687, -71.144272], + [-7.556771, -71.316147], + [-7.789062, -71.507813], + [-7.629167, -71.658333], + [-8.614583, -71.693748], + [-9.110416, -71.429169], + [-9.038021, -71.21302], + [-9.377084, -71.10833], + [-9.939063, -71.066147], + [-10.195833, -70.918747], + [-10.123437, -71.186981], + [-10.541146, -71.277603], + [-10.8, -71.589584], + [-11.677083, -71.272919], + [-12.252084, -71.308334], + [-12.366146, -71.453651], + [-12.158334, -71.635414], + [-11.422916, -71.76667], + [-10.858854, -71.765099], + [-11.0125, -72.033333], + [-11.191667, -72.099998], + [-11.317187, -72.394272], + [-12.432813, -72.554688], + [-12.88073, -72.656769], + [-13.172916, -72.806252], + [-13.520833, -72.852081], + [-14.09375, -72.720833], + [-14.22448, -72.828651], + [-13.890104, -72.975517], + [-13.956771, -73.141151], + [-14.435416, -73.166664], + [-14.860416, -73.041664], + [-15.558333, -73.07708], + [-15.882812, -73.142189], + [-15.964583, -73.300003], + [-16.555729, -73.4776], + [-16.593229, -73.682816], + [-15.88125, -73.756248], + [-16.418751, -73.877083], + [-15.658334, -73.947914], + [-14.739583, -73.783333], + [-14.513021, -73.968231], + [-15.299479, -74.221352], + [-15.272917, -74.341667], + [-15.627604, -74.432816], + [-16.595833, -74.302086], + [-17.385416, -74.333336], + [-17.620312, -74.402603], + [-17.617188, -74.591148], + [-17.961979, -74.666145], + [-18.135937, -74.939064], + [-18.532812, -75.03698], + [-18.877083, -75.258331], + [-18.402082, -75.48333], + [-18.810417, -75.456253], + [-19.240105, -75.547401], + [-19.789583, -75.54792], + [-20.247917, -75.481247], + [-20.722918, -75.533333], + [-21.070833, -75.683334], + [-21.770834, -75.706253], + [-22.53125, -75.63958], + [-23.25625, -75.737503], + [-24.168751, -75.747917], + [-25.137501, -75.877083], + [-25.964582, -75.929169], + [-26.929167, -76.160416], + [-27.225, -76.160416], + [-28.139584, -76.291664], + [-28.889584, -76.356247], + [-30.403646, -76.7099], + [-30.635416, -76.847916], + [-31.683332, -76.96875], + [-31.895834, -77.150002], + [-32.575001, -77.125], + [-33.185417, -77.26667], + [-33.706249, -77.306252], + [-34.360416, -77.477081], + [-34.728649, -77.629684], + [-34.754166, -77.75], + [-35.327084, -77.845833], + [-35.618752, -78.160416], + [-35.989582, -78.191666], + [-36.280731, -78.399483], + [-36.443226, -78.632813], + [-36.355728, -78.816147], + [-36.091667, -78.879166], + [-35.037498, -78.970833], + [-34.200001, -79.091667], + [-34.147915, -79.160416], + [-32.981251, -79.243752], + [-32.108334, -79.21875], + [-30.1875, -79.041664], + [-29.839582, -79.375], + [-30.708334, -79.585419], + [-28.839582, -79.697914], + [-26.795834, -79.791664], + [-25.893749, -79.814583], + [-24.81875, -79.793747], + [-24.3375, -79.729164], + [-24.268749, -79.820831], + [-23.064583, -79.85833], + [-22.99375, -79.987503], + [-24.112499, -80.074997], + [-26.258333, -80.122917], + [-27.683332, -80.083336], + [-28.893749, -80.114586], + [-29.822916, -80.185417], + [-30.014584, -80.29792], + [-30.741667, -80.268753], + [-31.335417, -80.308334], + [-30.643749, -80.48333], + [-31.970833, -80.42292], + [-33.404167, -80.61042], + [-34.462502, -80.660416], + [-35.270832, -80.61042], + [-36.120834, -80.931252], + [-37.268749, -81.087502], + [-37.606251, -80.997917], + [-38.789585, -80.900002], + [-39.591667, -80.995834], + [-40.3125, -81.162498], + [-40.954166, -81.193748], + [-41.786976, -81.416145], + [-41.929165, -81.612503], + [-43.189583, -81.897919], + [-43.141666, -82.120834], + [-44.043751, -82.397919], + [-44.191666, -82.247917], + [-44.533333, -82.387497], + [-45.522915, -82.525002], + [-45.670834, -82.45208], + [-46.039585, -82.554169], + [-46.502083, -82.510414], + [-46.466667, -82.366669], + [-46.041668, -82.193748], + [-46.239582, -81.912498], + [-47.518749, -82.04792], + [-47.381248, -81.92292], + [-48.952084, -81.893753], + [-49.541668, -81.958336], + [-50.597916, -81.989586], + [-52.131248, -82.07917], + [-52.645832, -82.158333], + [-53.108334, -82.14167], + [-54.212502, -82.224998], + [-55.15625, -82.393753], + [-55.166668, -82.512497], + [-55.564583, -82.462502], + [-56.639584, -82.712502], + [-57.668751, -82.897919], + [-58.104168, -83.089584], + [-59.231251, -83.414581], + [-60.895832, -83.474998], + [-61.177082, -83.381248], + [-61.856251, -83.377083], + [-61.019272, -83.107811], + [-61.331772, -82.941147], + [-61.668751, -83.0625], + [-61.943748, -83.027084], + [-62.081772, -82.86615], + [-62.777084, -82.518753], + [-62.064583, -82.46875], + [-60.566666, -82.241669], + [-60.764584, -82.162498], + [-62.164585, -82.291664], + [-63.087502, -82.252083], + [-63.285416, -82.333336], + [-63.872917, -82.308334], + [-65.054169, -82.404167], + [-65.21875, -82.262497], + [-65.866669, -82.245834], + [-65.916145, -82.073433], + [-65.650002, -81.875], + [-64.591667, -81.916664], + [-63.581249, -81.868752], + [-63.545834, -81.772919], + [-64.933334, -81.79583], + [-65.67083, -81.779167], + [-65.716667, -81.716667], + [-63.700001, -81.685417], + [-62.787498, -81.722916], + [-62.270832, -81.706253], + [-62.297916, -81.5625], + [-63.21875, -81.543747], + [-63.922916, -81.57917], + [-64.76458, -81.504166], + [-65.258331, -81.510414], + [-66.793747, -81.29792], + [-68.433334, -81.102081], + [-68.060936, -81.035934], + [-68.618752, -80.962502], + [-69.224998, -81.029167], + [-69.960419, -80.979164], + [-70.3974, -80.829689], + [-70.493752, -80.645836], + [-71.104164, -80.595833], + [-71.581253, -80.720833], + [-72.474998, -80.745834], + [-72.57708, -80.960419], + [-73.050003, -80.95208], + [-74.15625, -80.79583], + [-74.82917, -80.92292], + [-75.543747, -80.89167], + [-75.289581, -80.79583], + [-75.693748, -80.647919], + [-75.557816, -80.419266], + [-76.002083, -80.316666], + [-76.262497, -80.07917], + [-77.70417, -80.166664], + [-78.377083, -80.150002], + [-79.456253, -80.060417], + [-79.427086, -79.962502], + [-78.175003, -80.039581], + [-76.756248, -79.962502], + [-76.189583, -79.804169], + [-75.935417, -79.51667], + [-76.587502, -79.304169], + [-77.48333, -79.252083], + [-80.095833, -79.231247], + [-80.502083, -79.277084], + [-80.460419, -79.574997], + [-81.158333, -79.45417], + [-81.429169, -79.17292], + [-81.712502, -79.072914], + [-82.45208, -78.972916], + [-83.081253, -78.833336], + [-83.736984, -78.557816], + [-83.689583, -78.32708], + [-83.064583, -78.410416], + [-83.609901, -78.222397], + [-83.820831, -77.96875], + [-82.45208, -78.470833], + [-81.568748, -78.67292], + [-80.712502, -78.810417], + [-80.070831, -78.856247], + [-78.729164, -78.839584], + [-77.960419, -78.768753], + [-77.38958, -78.637497], + [-77.373436, -78.433853], + [-77.977081, -78.308334], + [-80.63958, -78.025002], + [-81.67083, -77.841667], + [-81.122917, -77.849998], + [-80.663017, -77.759895], + [-79.318748, -77.883331], + [-79.164581, -77.845833], + [-78.256248, -77.941666], + [-76.643753, -77.979164], + [-75.583336, -78.087502], + [-75.006248, -78.185417], + [-73.972916, -78.125], + [-73.206253, -77.893753], + [-72.742188, -77.653648], + [-72.856247, -77.57708], + [-74.76458, -77.431252], + [-75.289581, -77.466667], + [-75.435417, -77.554169], + [-76.5, -77.147919], + [-77.518753, -76.727081], + [-77.557816, -76.580734], + [-76.805733, -76.589066], + [-76.512497, -76.518753], + [-75.86042, -76.633331], + [-75.272919, -76.568748], + [-74.20417, -76.689583], + [-73.897919, -76.658333], + [-72.885414, -76.67292], + [-71.633331, -76.76667], + [-70.095833, -76.695831], + [-70.116669, -76.416664], + [-69.162498, -76.308334], + [-68.060417, -76.239586], + [-68.116669, -76.15625], + [-67.431252, -76.125], + [-66.23542, -76.012497], + [-65.375519, -75.845314], + [-64.23542, -75.679169], + [-63.121357, -75.393234], + [-63.272915, -75.333336], + [-64.349998, -75.366669], + [-64.033333, -75.20417], + [-63.033852, -75.145317], + [-63.325001, -75.006248], + [-63.877083, -75.037498], + [-63.572918, -74.868752], + [-63.065102, -74.907814], + [-63.139584, -74.647919], + [-62.585938, -74.760933], + [-62.582809, -74.97448], + [-62.147915, -74.956253], + [-61.770832, -74.722916], + [-62.360416, -74.441666], + [-61.285416, -74.54583], + [-61.008335, -74.504166], + [-60.887501, -74.247917], + [-61.450001, -74.333336], + [-61.029167, -74.091667], + [-61.809898, -73.914063], + [-61.402084, -73.870834], + [-61.006248, -73.964584], + [-60.737499, -73.6875], + [-60.856251, -73.558334], + [-61.477085, -73.477081], + [-61.583332, -73.552086], + [-61.947399, -73.375519], + [-61.569271, -73.3526], + [-61.983334, -73.106247], + [-61.427601, -73.156769], + [-61.150002, -73.331253], + [-60.891144, -73.242187], + [-60.700001, -73.395836], + [-60.618752, -73.181252], + [-60.34375, -73.32917], + [-59.975521, -73.249481], + [-59.943748, -72.893753], + [-60.329166, -73.058334], + [-60.547916, -72.981247], + [-60.541668, -72.654167], + [-61.213024, -72.710938], + [-61.395832, -72.408333], + [-60.708332, -72.45208], + [-60.660934, -72.000519], + [-61.400002, -72.064583], + [-62.096352, -72.013016], + [-62.435417, -71.918747], + [-61.752083, -71.862503], + [-61.070835, -71.864586], + [-60.793751, -71.67083], + [-61.181252, -71.533333], + [-61.577084, -71.691666], + [-61.489582, -71.445831], + [-60.963024, -71.368233], + [-61.022915, -71.137497], + [-61.226562, -71.090103], + [-61.283852, -70.860939], + [-62.059898, -70.895317], + [-62, -70.716667], + [-61.370834, -70.585419], + [-61.460415, -70.491669], + [-62.089584, -70.54792], + [-62.410416, -70.404167], + [-62.370834, -70.212502], + [-61.865101, -70.228645], + [-61.992188, -70.077599], + [-62.536976, -69.8526], + [-62.383854, -69.7099], + [-62.443748, -69.48542], + [-62.777084, -69.34375], + [-62.952084, -69.381248], + [-63.418751, -68.95208], + [-63.254684, -68.808853], + [-63.853645, -68.699478], + [-63.414585, -68.414581], + [-64.126564, -68.542183], + [-64.095833, -68.835419], + [-64.737503, -68.689583], + [-65.268234, -68.628647], + [-65.058334, -68.364586], + [-65.429169, -68.308334], + [-64.752602, -68.11615], + [-65.031769, -68.080734], + [-65.758331, -68.164581], + [-65.40625, -68.027084], + [-65.582817, -67.7276], + [-65.362503, -67.708336], + [-65.589584, -67.3125], + [-65.314583, -67.404167], + [-64.762497, -67.318748], + [-65.029167, -67.239586], + [-64.885933, -66.986984], + [-64.306252, -66.835419], + [-64.085419, -66.935417], + [-63.729691, -66.895317], + [-63.841667, -66.731247], + [-64.122398, -66.686981], + [-63.902084, -66.381248], + [-63.387501, -66.260414], + [-62.835938, -66.535934], + [-62.625, -66.73542], + [-62.517185, -66.480728], + [-62.770309, -66.322395], + [-62.453644, -66.185936], + [-61.760418, -66.199997], + [-61.245834, -66.158333], + [-60.979691, -66.341148], + [-60.820835, -66.04792], + [-61.022396, -65.913017], + [-61.320835, -66.089584], + [-61.629166, -66.01458], + [-62.045834, -66.10833], + [-62.367188, -65.813019], + [-61.845833, -65.550003], + [-62.191666, -65.302086], + [-61.931252, -65.189583], + [-61.639584, -65.247917], + [-61.75, -64.970833], + [-61.393749, -65.054169], + [-60.976562, -64.935936], + [-60.6875, -64.712502], + [-59.918751, -64.383331], + [-59.766144, -64.56823], + [-59.625, -64.39167], + [-58.816666, -64.552086], + [-58.820312, -64.182816], + [-58.641666, -63.945835], + [-58.102604, -63.667191], + [-57.84375, -63.681252], + [-57.183334, -63.470833], + [-57.135418, -63.654167], + [-56.866665, -63.643749], + [-57.031769, -63.267185], + [-57.272915, -63.220833] + ] + ], + [ + [ + [-47.014584, -77.772919], + [-47.512501, -77.785416], + [-49.134899, -78.064064], + [-49.206772, -78.168228], + [-49.936981, -78.452599], + [-50.358334, -78.683334], + [-50.499481, -78.942184], + [-50.485416, -79.306252], + [-50.222916, -79.477081], + [-50.469269, -79.607811], + [-52.085938, -80.103645], + [-52.302601, -80.060936], + [-53.085415, -80.183334], + [-53.368752, -80.099998], + [-54.073441, -80.549484], + [-54.379166, -80.57917], + [-54.400002, -80.752083], + [-54.102085, -80.872917], + [-52.681252, -80.900002], + [-50.504166, -80.845833], + [-49.747917, -80.785416], + [-49.718231, -80.68177], + [-49.052082, -80.614586], + [-48.164585, -80.654167], + [-47.466667, -80.63958], + [-45.935417, -80.535416], + [-44.697918, -80.379166], + [-43.668751, -80.216667], + [-43.46875, -80.09375], + [-43.833332, -79.993752], + [-43.131771, -79.964066], + [-42.990101, -79.842186], + [-42.946354, -79.450516], + [-43.349476, -79.236984], + [-43.495834, -78.916664], + [-43.747917, -78.79792], + [-45.164585, -78.806252], + [-45.354168, -78.685417], + [-44.935417, -78.627083], + [-43.920834, -78.597916], + [-43.704685, -78.377602], + [-43.793751, -78.256248], + [-44.916668, -77.945831], + [-45.940102, -77.815102], + [-47.014584, -77.772919] + ] + ], + [ + [ + [-70.433334, -68.783333], + [-71.008331, -68.864586], + [-71.493752, -68.847916], + [-72.186981, -69.05677], + [-72.132813, -69.243233], + [-71.724998, -69.375], + [-71.688019, -69.526566], + [-71.92865, -69.955734], + [-71.320831, -70.177086], + [-70.938019, -70.220314], + [-70.675003, -70.114586], + [-70.277084, -70.158333], + [-69.590103, -70.379684], + [-69.708336, -70.431252], + [-70.170311, -70.319267], + [-71.018234, -70.469269], + [-71.263016, -70.677605], + [-70.810417, -70.822914], + [-69.777603, -70.857811], + [-69.842186, -71.149483], + [-70.233849, -70.960937], + [-71.277084, -70.98333], + [-71.616669, -71.15625], + [-72.45417, -71.056252], + [-73.008331, -71.089584], + [-72.949997, -71.224998], + [-72.181252, -71.32708], + [-73.518753, -71.308334], + [-73.533333, -71.602081], + [-74.0625, -71.39167], + [-74.420311, -71.421349], + [-74.337502, -71.683334], + [-75.095833, -71.529167], + [-75.409897, -71.901566], + [-74.675003, -72.085419], + [-74.397919, -72.029167], + [-74.050003, -72.17292], + [-73.506767, -72.016151], + [-73.800003, -71.835419], + [-73.45417, -71.833336], + [-73.072914, -71.939583], + [-72.708855, -71.861984], + [-72.339584, -71.61042], + [-71.837502, -71.789581], + [-71.849998, -71.893753], + [-71.385414, -71.820831], + [-71.122917, -71.902084], + [-70.856247, -71.84375], + [-70.793747, -72], + [-72.03125, -72.116669], + [-71.677086, -72.245834], + [-71.116669, -72.272919], + [-70.381767, -72.135933], + [-70.152603, -72.266151], + [-70.633331, -72.387497], + [-71.651566, -72.378647], + [-72.720833, -72.272919], + [-73.166145, -72.444267], + [-72.377083, -72.67083], + [-71.34375, -72.629166], + [-70.684898, -72.666145], + [-69.199997, -72.535416], + [-68.737503, -72.214584], + [-68.447914, -72.243752], + [-68.223434, -71.874481], + [-68.229683, -71.21302], + [-68.32917, -70.837502], + [-68.721352, -70.344269], + [-69.059898, -70.159897], + [-69.284897, -69.926567], + [-69.318748, -69.625], + [-69.706253, -69.3125], + [-69.95417, -69.3125], + [-70.197914, -68.841667], + [-70.433334, -68.783333] + ] + ], + [ + [ + [-163.195831, -78.714584], + [-164.24115, -79.043228], + [-164.274994, -79.20417], + [-164.068237, -79.376564], + [-163.152084, -79.5625], + [-161.762497, -79.785416], + [-161.195831, -79.833336], + [-159.566666, -79.852081], + [-159.041672, -79.816666], + [-159.18541, -79.65625], + [-159.808334, -79.352081], + [-161.356247, -79], + [-161.987503, -78.791664], + [-163.195831, -78.714584] + ] + ], + [ + [ + [-60.085415, -79.693748], + [-60.96875, -79.79792], + [-61.295834, -80.01458], + [-61.793751, -80.043747], + [-61.352085, -80.306252], + [-62.162498, -80.412498], + [-62.856251, -80.447914], + [-65.5625, -80.410416], + [-65.977081, -80.387497], + [-66.169266, -80.22448], + [-66.493752, -80.216667], + [-66.747398, -80.395317], + [-65.866669, -80.574997], + [-64.89167, -80.706253], + [-64.181252, -80.737503], + [-64.11042, -80.652084], + [-63.114582, -80.604164], + [-62.936981, -80.78698], + [-62.279167, -80.88958], + [-61.227085, -80.96875], + [-60.439583, -80.933334], + [-59.673435, -80.653648], + [-59.849998, -80.57917], + [-59.772915, -80.341667], + [-59.445835, -80.120834], + [-59.808334, -80.131248], + [-59.679165, -79.883331], + [-60.085415, -79.693748] + ] + ], + [ + [ + [-98.692184, -71.725517], + [-99.139061, -71.892189], + [-98.962502, -72.091667], + [-99.481247, -71.941666], + [-99.785416, -72.064583], + [-100.131248, -71.964584], + [-100.0625, -71.82917], + [-101.76667, -71.925003], + [-102.224998, -72.004166], + [-102.26458, -72.13958], + [-101.239586, -72.227081], + [-100.643753, -72.23542], + [-99.762497, -72.366669], + [-99.231247, -72.364586], + [-99.435417, -72.48542], + [-98.5625, -72.458336], + [-98.408333, -72.57917], + [-97.537498, -72.543747], + [-95.935936, -72.555733], + [-95.504166, -72.3125], + [-95.768753, -72.052086], + [-95.908333, -72.131248], + [-96.999481, -72.208855], + [-96.100517, -71.989067], + [-96.379166, -71.831253], + [-97.043228, -71.84948], + [-97.372917, -72.214584], + [-97.566666, -72.074997], + [-97.466667, -71.908333], + [-97.75, -71.864586], + [-97.859901, -72.05365], + [-98.229683, -72.044266], + [-97.992187, -71.878647], + [-98.692184, -71.725517] + ] + ], + [ + [ + [-67.039581, -78.314583], + [-67.681252, -78.387497], + [-68.489586, -78.568748], + [-69.412498, -78.679169], + [-69.818748, -78.79792], + [-70.645836, -78.88958], + [-71.32917, -79.070831], + [-71.761978, -79.344269], + [-71.782814, -79.531769], + [-71.439583, -79.654167], + [-70.356247, -79.697914], + [-69.666664, -79.61042], + [-69.677086, -79.42083], + [-69.300003, -79.229164], + [-68.712502, -79.020836], + [-68.190102, -78.91198], + [-67.387497, -78.664581], + [-67.052086, -78.489586], + [-66.614586, -78.372917], + [-67.039581, -78.314583] + ] + ], + [ + [ + [-126.352081, -73.275002], + [-127.356247, -73.32917], + [-127.491669, -73.42083], + [-127.264061, -73.715103], + [-126.539581, -73.664581], + [-126.470314, -73.843231], + [-126.002083, -73.916664], + [-125.706253, -74.039581], + [-125.118752, -74.116669], + [-124.787498, -74.231247], + [-123.80677, -74.220314], + [-123.772919, -74.072914], + [-124.195313, -73.94323], + [-124.027084, -73.852081], + [-124.627083, -73.720833], + [-125.089584, -73.822914], + [-125.637497, -73.833336], + [-125.914062, -73.745316], + [-125.291664, -73.70417], + [-125.554169, -73.447914], + [-126.352081, -73.275002] + ] + ], + [ + [ + [-122.347916, -73.668747], + [-123.145836, -73.683334], + [-123.247917, -73.822914], + [-122.38958, -73.925003], + [-122.936981, -74.111984], + [-122.883331, -74.345833], + [-122.012497, -74.435417], + [-120.944267, -74.309898], + [-121.078651, -74.168228], + [-120.267189, -74.003647], + [-120.529167, -73.752083], + [-121.097916, -73.777084], + [-121.95208, -73.731247], + [-122.347916, -73.668747] + ] + ], + [ + [ + [-75.35833, -72.816666], + [-75.778648, -72.898437], + [-75.502083, -72.989586], + [-76.070831, -73.07917], + [-76.055733, -73.270317], + [-75.762497, -73.393753], + [-75.081253, -73.537498], + [-74.475517, -73.597397], + [-74.360939, -73.456772], + [-74.57708, -73.275002], + [-74.219269, -72.984901], + [-74.318748, -72.92083], + [-75.35833, -72.816666] + ] + ], + [ + [ + [166.731247, -77.162498], + [166.664062, -77.364067], + [166.175522, -77.555733], + [166.839584, -77.660416], + [166.679687, -77.857811], + [167.535934, -77.631767], + [168.524994, -77.697914], + [169.361984, -77.524483], + [168.985413, -77.416664], + [168.356247, -77.364586], + [167.727081, -77.418747], + [167.137497, -77.345833], + [167.036987, -77.200516], + [166.731247, -77.162498] + ] + ], + [ + [ + [-74.043747, -70.54583], + [-74.160416, -70.654167], + [-74.476562, -70.580734], + [-74.467186, -70.751564], + [-74.866669, -70.587502], + [-75.256248, -70.789581], + [-75.958336, -70.818748], + [-76.447914, -70.916664], + [-76.49115, -71.064064], + [-76.160416, -71.129166], + [-74.306252, -70.966667], + [-73.706772, -70.805733], + [-73.550522, -70.690102], + [-74.043747, -70.54583] + ] + ], + [ + [ + [-67.675003, -66.627083], + [-67.864586, -66.625], + [-68.47448, -66.871353], + [-68.819267, -67.264061], + [-69.19323, -67.52552], + [-68.893753, -67.76458], + [-68.133331, -67.570831], + [-67.792183, -67.08802], + [-68.024483, -66.945312], + [-67.675003, -66.627083] + ] + ], + [ + [ + [-162.756256, -81.272919], + [-163.822922, -81.310417], + [-163.693756, -81.48333], + [-161.02916, -81.61042], + [-160.393753, -81.581253], + [-160.729172, -81.45417], + [-162.756256, -81.272919] + ] + ], + [ + [ + [-67.648438, -79.53698], + [-67.506248, -79.679169], + [-66.881248, -79.79583], + [-66.916664, -79.935417], + [-66.360939, -79.979683], + [-66.181252, -80.085419], + [-65.472916, -79.960419], + [-65.65625, -79.752083], + [-65.974998, -79.772919], + [-66.389061, -79.632812], + [-67.648438, -79.53698] + ] + ], + [ + [ + [-20.607813, -73.593231], + [-20.866667, -73.654167], + [-21.102083, -73.945831], + [-21.964582, -74.0625], + [-21.137501, -74.135414], + [-20.859896, -74.451561], + [-20.454166, -74.497917], + [-20.388021, -74.335937], + [-20.686979, -74.0849], + [-20.485937, -73.673439], + [-20.607813, -73.593231] + ] + ], + [ + [ + [-91.13958, -72.53125], + [-91.606247, -72.570831], + [-91.451561, -72.951561], + [-91.526566, -73.190102], + [-91.01458, -73.14167], + [-90.708855, -72.945313], + [-90.791664, -72.60833], + [-91.13958, -72.53125] + ] + ], + [ + [ + [-35.595833, -79.099998], + [-35.833332, -79.166664], + [-36.659893, -79.234901], + [-36.40625, -79.333336], + [-35.081249, -79.35833], + [-34.049999, -79.352081], + [-34.002083, -79.270836], + [-35.595833, -79.099998] + ] + ], + [ + [ + [-63.331249, -64.241669], + [-63.577084, -64.26667], + [-63.712502, -64.447914], + [-64.197914, -64.591667], + [-64.293228, -64.711983], + [-63.683334, -64.854164], + [-63.420834, -64.724998], + [-62.808857, -64.565102], + [-63.125519, -64.49115], + [-63.331249, -64.241669] + ] + ], + [ + [ + [-163.25885, -82.833855], + [-163.802078, -82.837502], + [-163.28125, -83.072914], + [-162.547913, -83.145836], + [-161.945831, -83.11042], + [-161.739578, -82.991669], + [-162.456253, -82.868752], + [-163.25885, -82.833855] + ] + ], + [ + [ + [-57.783333, -63.787498], + [-58.302082, -63.910416], + [-58.443748, -64.13958], + [-58.287498, -64.300003], + [-57.414585, -64.291664], + [-57.172916, -64.220833], + [-57.57552, -63.97031], + [-57.856251, -64.068748], + [-57.783333, -63.787498] + ] + ], + [ + [ + [-74.933334, -69.71875], + [-75.239586, -69.84375], + [-75.695831, -69.866669], + [-75.664581, -70.118752], + [-74.762497, -70.166664], + [-74.52552, -69.860939], + [-74.933334, -69.71875] + ] + ], + [ + [ + [-3.025, -70.664581], + [-3.395833, -70.754166], + [-3.041667, -70.833336], + [-2.811979, -71.164062], + [-2.289583, -71.018753], + [-2.088021, -70.82135], + [-2.60625, -70.82917], + [-2.5875, -70.70208], + [-3.025, -70.664581] + ] + ], + [ + [ + [26.422916, -70.060417], + [25.952604, -70.21302], + [26.002604, -70.384895], + [26.495832, -70.45208], + [26.825001, -70.42292], + [26.686979, -70.100517], + [26.422916, -70.060417] + ] + ], + [ + [ + [-31.770313, -79.634895], + [-32.037498, -79.65625], + [-31.820833, -79.85833], + [-30.633333, -79.90625], + [-30.11875, -79.997917], + [-30.09375, -79.852081], + [-30.985416, -79.8125], + [-31.770313, -79.634895] + ] + ], + [ + [ + [-55.595833, -63.120834], + [-56.052082, -63.139584], + [-56.385418, -63.235416], + [-56.451565, -63.430729], + [-55.90625, -63.293751], + [-55.170834, -63.362499], + [-55.058857, -63.225521], + [-55.595833, -63.120834] + ] + ], + [ + [ + [100.831253, -65.383331], + [100.587502, -65.395836], + [100.271355, -65.569267], + [100.341667, -65.677086], + [100.939583, -65.691666], + [101.251564, -65.561981], + [101.149483, -65.425522], + [100.831253, -65.383331] + ] + ], + [ + [ + [-67.467186, -79.194267], + [-68.078651, -79.233849], + [-67.931252, -79.368752], + [-68.345833, -79.479164], + [-67.512497, -79.512497], + [-67.15625, -79.254166], + [-67.467186, -79.194267] + ] + ], + [ + [ + [-171.822922, -82.833336], + [-169.983337, -83.116669], + [-169.81041, -83.177086], + [-168.856247, -83.224998], + [-169.021347, -83.15052], + [-169.719269, -83.048439], + [-171.302078, -82.868752], + [-171.822922, -82.833336] + ] + ], + [ + [ + [-150.379166, -76.90625], + [-150.77916, -77.004166], + [-150.34166, -77.089584], + [-149.254166, -77.135414], + [-149.77916, -76.897919], + [-150.379166, -76.90625] + ] + ], + [ + [ + [-119.150002, -73.779167], + [-119.758331, -73.841667], + [-119.689064, -74.132813], + [-119.104164, -74.022919], + [-118.872917, -73.893753], + [-119.150002, -73.779167] + ] + ], + [ + [ + [-131.65416, -74.318748], + [-132.009903, -74.363022], + [-132.039581, -74.506248], + [-131.09375, -74.599998], + [-131.079163, -74.4375], + [-131.65416, -74.318748] + ] + ], + [ + [ + [-62.402084, -69.14167], + [-62.451565, -69.34948], + [-61.98177, -69.722397], + [-61.835415, -69.366669], + [-62.402084, -69.14167] + ] + ], + [ + [ + [167.523437, -78.001564], + [166.862503, -78.195831], + [165.983856, -78.108849], + [166.266663, -78.310417], + [166.833847, -78.233849], + [167.456253, -78.247917], + [167.523437, -78.001564] + ] + ], + [ + [ + [-72.648437, -69.4151], + [-72.97448, -69.483849], + [-72.775002, -69.658333], + [-72.189583, -69.743752], + [-71.947914, -69.660416], + [-72.648437, -69.4151] + ] + ], + [ + [ + [-116.324997, -73.864586], + [-117.362503, -74.072914], + [-117.26458, -74.197914], + [-116.564583, -74.145836], + [-116.324997, -73.864586] + ] + ], + [ + [ + [-62.433334, -64.010414], + [-62.458851, -64.220314], + [-62.682816, -64.402603], + [-62.596352, -64.526566], + [-62.227085, -64.38958], + [-61.994274, -64.141151], + [-62.433334, -64.010414] + ] + ], + [ + [ + [-128.152084, -74.302086], + [-127.903648, -74.55365], + [-127.45208, -74.63958], + [-127.118752, -74.46875], + [-128.152084, -74.302086] + ] + ], + [ + [ + [16.268749, -69.706253], + [15.754167, -69.75], + [15.670834, -69.962502], + [16.154167, -70.089584], + [16.268749, -69.706253] + ] + ], + [ + [ + [-57.970833, -61.912498], + [-58.422916, -61.929165], + [-58.968231, -62.165104], + [-58.633335, -62.247917], + [-58.460415, -62.064583], + [-57.945835, -62.083332], + [-57.970833, -61.912498] + ] + ], + [ + [ + [-2.948438, -70.298439], + [-3.20625, -70.308334], + [-3.509896, -70.518234], + [-2.902083, -70.529167], + [-2.6875, -70.322914], + [-2.948438, -70.298439] + ] + ], + [ + [ + [1.354687, -70.030731], + [0.960937, -70.069267], + [1.186979, -70.416145], + [1.459896, -70.149483], + [1.354687, -70.030731] + ] + ], + [ + [ + [71.813019, -70.268234], + [71.627602, -70.33802], + [71.789581, -70.625], + [72.189583, -70.537498], + [71.813019, -70.268234] + ] + ], + [ + [ + [-89.802086, -72.852081], + [-90.179169, -73.089584], + [-89.747917, -73.09375], + [-89.377083, -72.90625], + [-89.802086, -72.852081] + ] + ], + [ + [ + [85.383331, -66.720833], + [85.320831, -66.856247], + [85.594269, -66.981766], + [85.899483, -66.934898], + [85.699997, -66.743752], + [85.383331, -66.720833] + ] + ], + [ + [ + [-148.520828, -76.699997], + [-149.402084, -76.729164], + [-148.977081, -76.845833], + [-148.339584, -76.789581], + [-148.520828, -76.699997] + ] + ], + [ + [ + [4.539583, -70.247917], + [4.122917, -70.260414], + [4.194271, -70.468231], + [4.614063, -70.432816], + [4.539583, -70.247917] + ] + ], + [ + [ + [-156.958328, -81.13958], + [-159.883331, -81.220833], + [-158.660416, -81.243752], + [-156.958328, -81.13958] + ] + ], + [ + [ + [-94.497917, -72.477081], + [-95.241669, -72.602081], + [-95.26458, -72.664581], + [-94.4375, -72.618752], + [-94.497917, -72.477081] + ] + ], + [ + [ + [3.177604, -70.382813], + [2.579687, -70.519272], + [2.727083, -70.629166], + [3.147917, -70.564583], + [3.177604, -70.382813] + ] + ], + [ + [ + [-145.820831, -75.504166], + [-146.077087, -75.616669], + [-145.225006, -75.712502], + [-145.338013, -75.608849], + [-145.820831, -75.504166] + ] + ], + [ + [ + [-65.751564, -65.528648], + [-65.962502, -65.54792], + [-66.135414, -65.883331], + [-65.84375, -65.835419], + [-65.751564, -65.528648] + ] + ], + [ + [ + [-104.968231, -72.941147], + [-105.149483, -73.055733], + [-104.854164, -73.208336], + [-104.565102, -73.135933], + [-104.968231, -72.941147] + ] + ], + [ + [ + [-158.897919, -81.78125], + [-159.009903, -81.820312], + [-157.954163, -82.099998], + [-158.402084, -81.870834], + [-158.897919, -81.78125] + ] + ], + [ + [ + [96.670311, -66.048439], + [96.365105, -66.085938], + [96.352081, -66.222916], + [96.945831, -66.195831], + [96.670311, -66.048439] + ] + ], + [ + [ + [169.806244, -73.32917], + [169.471359, -73.535934], + [169.675003, -73.631248], + [169.941147, -73.483849], + [169.806244, -73.32917] + ] + ], + [ + [ + [-147.004166, -76.818748], + [-146.897919, -76.997917], + [-146.241669, -76.881248], + [-147.004166, -76.818748] + ] + ], + [ + [ + [-147.139587, -76.506248], + [-147.364059, -76.615105], + [-146.90625, -76.710419], + [-146.81041, -76.57708], + [-147.139587, -76.506248] + ] + ], + [ + [ + [-60.591667, -70.508331], + [-60.933334, -70.529167], + [-60.918228, -70.691147], + [-60.441666, -70.614586], + [-60.591667, -70.508331] + ] + ], + [ + [ + [-149.170837, -76.902084], + [-149.045837, -77.027084], + [-148.585419, -77.022919], + [-148.516663, -76.939583], + [-149.170837, -76.902084] + ] + ], + [ + [ + [-60.106251, -62.46875], + [-60.322918, -62.5625], + [-60.304165, -62.758335], + [-59.979168, -62.633335], + [-60.106251, -62.46875] + ] + ], + [ + [ + [-151.041672, -77.21875], + [-151.495834, -77.293747], + [-150.524994, -77.377083], + [-151.041672, -77.21875] + ] + ], + [ + [ + [-155.577087, -79.814583], + [-154.981247, -79.929169], + [-154.539581, -79.947914], + [-154.34584, -80.033333], + [-153.993744, -79.987503], + [-155.577087, -79.814583] + ] + ], + [ + [ + [-73.668228, -73.091148], + [-74.14167, -73.275002], + [-73.883331, -73.372917], + [-73.668228, -73.091148] + ] + ], + [ + [ + [164.693756, -67.25], + [164.679688, -67.559898], + [164.922394, -67.464066], + [164.693756, -67.25] + ] + ], + [ + [ + [-56.449478, -62.982815], + [-56.310417, -63.1875], + [-56.089584, -63.002083], + [-56.449478, -62.982815] + ] + ], + [ + [ + [164.300522, -74.55365], + [163.694275, -74.719269], + [163.981766, -74.839066], + [164.044266, -74.627602], + [164.300522, -74.55365] + ] + ], + [ + [ + [-67.412498, -67.589584], + [-67.76458, -67.664581], + [-67.435417, -67.785416], + [-67.412498, -67.589584] + ] + ], + [ + [ + [-147.18959, -76.070831], + [-146.824997, -76.304169], + [-146.702606, -76.202599], + [-147.18959, -76.070831] + ] + ], + [ + [ + [-16.356251, -72.45417], + [-16.366667, -72.697914], + [-16.104687, -72.659897], + [-16.356251, -72.45417] + ] + ], + [ + [ + [68.737503, -72.085419], + [68.456253, -72.314583], + [68.8349, -72.230728], + [68.737503, -72.085419] + ] + ], + [ + [ + [-6.054167, -70.402084], + [-6.3375, -70.477081], + [-6.15, -70.620834], + [-6.054167, -70.402084] + ] + ] + ] + }, + "properties": { + "id": "598536f6-0628-484b-8768-f83729aabdd6", + "code": "ATA", + "name": "Antarctica", + "abbreviation": "C-ATA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.733196, 17.090139], + [-61.845695496, 17.167360305], + [-61.894306184, 17.036806107], + [-61.733196, 17.090139] + ] + ] + }, + "properties": { + "id": "c8818efd-4f6b-41dc-92eb-5c6755484b79", + "code": "ATG", + "name": "Antigua and Barbuda", + "abbreviation": "C-ATG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-68.433293, -52.397915], + [-68.352501, -52.334862], + [-68.714722, -51.973473], + [-68.945274, -51.552361], + [-69.166389, -50.979305], + [-69.07861328, -50.565418243], + [-68.880836487, -50.336528777], + [-68.150276184, -50.107360841], + [-67.850692748, -49.959861754], + [-67.729026795, -49.776248932], + [-67.663749696, -49.202915192], + [-67.492080689, -48.961250305], + [-67.126808167, -48.682918548], + [-66.499863, -48.417915], + [-65.97403, -48.046806], + [-65.86042, -47.870419], + [-65.718468, -47.328449], + [-65.978394, -47.071529], + [-66.78875, -47.001804], + [-67.541252, -46.394859], + [-67.625694, -46.052639], + [-67.348198, -45.62764], + [-66.868752, -45.235973], + [-66.194862, -44.983196], + [-65.643753, -45.050694], + [-65.646248, -44.671528], + [-65.217918, -44.37125], + [-65.337639, -43.668194], + [-64.99958, -43.272362], + [-64.324303, -42.997917], + [-65.02375, -42.77597], + [-64.93792, -42.623196], + [-64.565414, -42.491528], + [-64.21125, -42.630138], + [-64.145973, -42.874863], + [-63.630138, -42.759861], + [-63.597363, -42.329861], + [-63.758472, -42.076248], + [-64.144028, -42.196251], + [-64.129028, -42.427361], + [-64.616806, -42.41153], + [-64.462639, -42.23875], + [-64.827637, -42.196529], + [-65.070969, -41.959026], + [-64.988197, -41.518471], + [-65.147362, -40.91264], + [-64.839584, -40.758194], + [-63.77319336, -41.160972595], + [-63.143470764, -41.157638549], + [-62.311249, -40.870972], + [-62.271252, -40.545971], + [-62.485138, -40.300972], + [-62.316528, -40.148472], + [-62.310974, -39.876526], + [-62.151806, -39.871529], + [-62.010693, -39.357918], + [-62.291527, -39.222363], + [-62.30125, -38.785416], + [-62.045971, -38.930695], + [-61.607082, -39.00375], + [-60.847637177, -38.979583739], + [-59.782917023, -38.825973511], + [-58.495693207, -38.537361144], + [-57.837917327, -38.289028168], + [-57.540973663, -38.094860076], + [-57.512638, -37.865696], + [-57.126529694, -37.49458313], + [-56.667362213, -36.878192902], + [-56.733470916, -36.325695037], + [-57.010692596, -36.325695037], + [-57.274028778, -36.137084961], + [-57.363471985, -35.745418548], + [-57.125137329, -35.442359925], + [-57.507362365, -35.024581908], + [-58.163749695, -34.747638703], + [-58.50819397, -34.447639465], + [-58.354584, -34.039028], + [-58.5541, -33.677956], + [-58.348822999, -33.112979999], + [-58.084104699, -32.9978188], + [-58.204637, -32.460549001], + [-58.106447, -32.240017001], + [-58.206526299, -31.867727099], + [-58.085653199, -31.8192923], + [-57.8095954, -30.9133178], + [-57.859237999, -30.47701], + [-57.645093944, -30.193501761], + [-57.341964722, -30.001224517], + [-56.593063354, -29.122995376], + [-56.424785614, -29.072883606], + [-56.284252166, -28.791032791], + [-55.893493653, -28.481349945], + [-55.867664337, -28.353826524], + [-55.322998047, -27.928085327], + [-55.035362244, -27.85518837], + [-54.902950287, -27.646493911], + [-54.345546722, -27.468130111], + [-53.830710999, -27.156361], + [-53.671756744, -26.893024444], + [-53.749443054, -26.648902892], + [-53.591835021, -26.264888763], + [-53.83657837, -25.965755463], + [-53.875339508, -25.64199829], + [-54.287284852, -25.559808731], + [-54.595642089, -25.592119217], + [-54.674434661, -25.982574463], + [-54.620338441, -26.217113494], + [-54.814025879, -26.673847199], + [-55.430381774, -27.005846023], + [-55.725994111, -27.439798355], + [-56.143482209, -27.312519074], + [-56.364120483, -27.595844268], + [-56.598140717, -27.445108414], + [-56.833343506, -27.601108552], + [-57.288253785, -27.421615601], + [-58.243350983, -27.249126434], + [-58.606578826, -27.295120239], + [-58.662487031, -27.172166825], + [-58.190357207, -26.644302367], + [-58.115341187, -26.1532135], + [-57.84935379, -26.006015777], + [-57.815349579, -25.771087646], + [-57.555946349, -25.444845199], + [-57.787567138, -25.151655197], + [-58.246482849, -24.933790206], + [-58.654743, -24.833561], + [-59.352993, -24.484718001], + [-59.494984, -24.325085], + [-60.046623, -24.012133001], + [-60.32008, -24.048525], + [-61.002472, -23.794147], + [-61.091682434, -23.618074417], + [-61.495021821, -23.415639877], + [-61.989246368, -23.020784379], + [-62.284908295, -22.491340637], + [-62.642415671, -22.242894844], + [-62.807725491, -22.003895703], + [-63.930780939, -21.999327466], + [-64.267625, -22.770130556], + [-64.651743429, -22.189670368], + [-65.052511111, -22.083347223], + [-65.676173444, -22.111683849], + [-66.241263978, -21.788823764], + [-66.288490868, -22.085832402], + [-66.739288889, -22.238458333], + [-66.782475, -22.438075], + [-67.027275, -22.540883334], + [-67.181492683, -22.814198382], + [-66.99017821, -22.999960028], + [-67.322616668, -24.034161112], + [-68.2458, -24.39588], + [-68.56809, -24.79555], + [-68.457101718, -25.125571144], + [-68.589488841, -25.448364052], + [-68.381065119, -26.177901455], + [-68.588014152, -26.492060427], + [-68.263233, -26.918335], + [-68.621655914, -27.169165029], + [-68.787879498, -27.103729943], + [-68.988255483, -27.447123635], + [-69.121431621, -27.898420047], + [-69.624443336, -28.37844621], + [-69.791733093, -29.134665384], + [-69.99705676, -29.28507877], + [-69.879702066, -29.733743499], + [-69.963840001, -30.0883], + [-69.896476609, -30.354594573], + [-70.195166881, -30.492360208], + [-70.399898278, -31.167815713], + [-70.49769772, -31.125102941], + [-70.566551757, -31.583348822], + [-70.454499837, -31.849211669], + [-70.208194844, -31.977980942], + [-70.321945136, -32.258538434], + [-70.148729014, -32.465920957], + [-70.038717763, -33.270228423], + [-69.799914912, -33.288108503], + [-69.897750177, -33.848213471], + [-69.806585807, -34.248088741], + [-70.217874398, -34.611871601], + [-70.432174963, -35.318485103], + [-70.365178385, -35.925422784], + [-70.420954386, -36.156037296], + [-70.705580202, -36.272048801], + [-70.688477322, -36.407847756], + [-71.018217353, -36.47394123], + [-71.17382, -36.96809], + [-71.118037151, -37.491514474], + [-71.211416718, -37.689226369], + [-70.983272634, -38.105245545], + [-70.925051132, -38.763548118], + [-71.426768338, -38.922759467], + [-71.373655537, -39.28244924], + [-71.683271746, -39.56787833], + [-71.592099224, -39.912363552], + [-71.827741308, -40.205795982], + [-71.965041607, -40.745680183], + [-71.818180143, -41.062598676], + [-71.829096318, -41.481991565], + [-71.727562064, -42.116925582], + [-72.172372581, -42.138930024], + [-72.01054811, -42.48835196], + [-72.17871063, -42.695552514], + [-72.037785766, -43.010184138], + [-71.760372925, -43.164801116], + [-71.9302424, -43.457052819], + [-71.581183186, -43.6518247], + [-71.797811421, -44.192879764], + [-71.794390693, -44.414604117], + [-71.389803141, -44.385807672], + [-71.128883814, -44.471122393], + [-71.205712551, -44.751327539], + [-72.006406258, -44.783845574], + [-71.559853112, -44.977869509], + [-71.333301673, -45.318743324], + [-71.79457471, -45.662713225], + [-71.618024497, -45.980690747], + [-71.794197195, -46.192042943], + [-71.64779302, -46.688304825], + [-71.95581618, -46.815213995], + [-71.868416452, -47.233713127], + [-72.342077001, -47.455816], + [-72.527800304, -47.936881641], + [-72.228044013, -48.318480186], + [-72.580046554, -48.486580242], + [-72.530041543, -48.796240413], + [-72.919671096, -48.935912125], + [-73.141814206, -49.179972521], + [-73.054168004, -49.465268383], + [-73.490898941, -49.81686292], + [-73.521530682, -50.153553896], + [-73.364469704, -50.518623004], + [-73.145502512, -50.781864894], + [-72.726647548, -50.617677445], + [-72.285614976, -50.659898482], + [-72.258646111, -51.24418388], + [-72.338238, -51.584123], + [-71.890351, -52.00008], + [-69.995494443, -52.000708332], + [-69.486129663, -52.151632106], + [-69.190119444, -52.150044444], + [-68.433293, -52.397915] + ] + ], + [ + [ + [-68.610413, -54.893407], + [-68.247498, -54.795139], + [-68.033607, -54.850418], + [-67.340279, -54.870419], + [-66.523056, -55.057083], + [-66.308052, -54.992085], + [-65.328613, -54.921528], + [-65.236946, -54.62014], + [-65.690834, -54.663471], + [-66.458611, -54.480415], + [-66.741943001, -54.259029001], + [-67.445273999, -53.979861999], + [-67.910278, -53.653472999], + [-68.144165001, -53.326805], + [-68.468056, -53.291527], + [-68.301941001, -52.937363], + [-68.610591855, -52.653473], + [-68.610413, -54.893407] + ] + ], + [ + [ + [-64.338608, -54.710693], + [-64.725281, -54.801529], + [-64.606941, -54.910416], + [-64.338608, -54.710693] + ] + ] + ] + }, + "properties": { + "id": "e7b1d215-9739-480b-8289-a3c81223c7a9", + "code": "ARG", + "name": "Argentina", + "abbreviation": "C-ARG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [46.547237396, 38.87273407], + [46.621616364, 39.215484619], + [46.408470154, 39.378364564], + [46.563018799, 39.567264558], + [46.175865174, 39.587974549], + [45.806186676, 39.930950165], + [45.977215, 40.212894], + [45.4357872, 40.514019012], + [45.356712342, 40.668395996], + [45.570034028, 40.824512482], + [45.193451, 41.071743], + [45.004055024, 41.301422119], + [44.435482026, 41.187656403], + [44.183200837, 41.244400025], + [43.729671478, 41.113761901], + [43.47107315, 41.129486085], + [43.748699189, 40.735939026], + [43.546657562, 40.468128205], + [43.905479431, 40.018466949], + [44.262771606, 40.050014497], + [44.772602081, 39.71364975], + [45.081943512, 39.785499572], + [45.456829071, 39.504371644], + [45.708938599, 39.606487274], + [46.000000001, 39.296939851], + [46.136863709, 38.834842682], + [46.547237396, 38.87273407] + ] + ] + }, + "properties": { + "id": "ef776483-db17-40ac-a489-261e73924f1f", + "code": "ARM", + "name": "Armenia", + "abbreviation": "C-ARM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-69.978195191, 12.469861031], + [-69.88458252, 12.478471757], + [-70.02458191, 12.604026796], + [-69.978195191, 12.469861031] + ] + ] + }, + "properties": { + "id": "9277b723-eae2-4f15-bc00-1196cfc9a664", + "code": "ABW", + "name": "Aruba", + "abbreviation": "C-ABW", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [150.14711, -36.237579], + [150.150284, -35.890938], + [150.407669, -35.529617], + [150.47966, -35.289829], + [150.740906, -34.991959], + [150.976959, -34.245754], + [151.249908, -34.00069], + [151.43895, -33.341267], + [151.793411254, -32.893291472], + [152.533096, -32.443096], + [152.549576, -32.025585], + [152.745087, -31.845879], + [152.935028, -31.475788], + [153.090714, -30.921562], + [153.031707763, -30.499017716], + [153.271774, -29.919025], + [153.441452026, -29.065288543], + [153.606995, -28.842844], + [153.586258, -28.25841], + [153.448914, -28.080023], + [153.391266, -27.707012], + [153.06517, -27.302515], + [153.144073, -27.07585], + [153.066467, -26.355799], + [153.164185, -25.949648], + [152.90799, -25.724501], + [152.890625, -25.280499], + [152.667938, -25.245806], + [152.412262, -24.759077], + [152.154602, -24.631824], + [151.944519, -24.243538], + [151.193924, -23.82653], + [150.878143, -23.552292], + [150.750824, -23.135553], + [150.831085, -22.68462], + [150.679993, -22.364101], + [150.573013, -22.577263], + [150.174942, -22.355055], + [150.043579, -22.126457], + [149.912994, -22.345848], + [149.59729, -22.28146], + [149.43222, -21.79701], + [149.485352, -21.571772], + [149.291153, -21.504511], + [149.229996, -21.078346], + [148.844803, -20.875767], + [148.663101, -20.58732], + [148.83931, -20.431709], + [148.561188, -20.07126], + [148.429001, -20.166702], + [148.083206, -19.886814], + [147.938477, -19.918476], + [147.586807, -19.725096], + [147.410446, -19.425961], + [147.13475, -19.407085], + [146.456635, -19.075064], + [146.290665, -18.893026], + [146.337524, -18.525827], + [146.02626, -18.26252], + [146.140823, -17.640282], + [145.774872, -16.870016], + [145.413284, -16.46607], + [145.470932, -16.075891], + [145.362427, -15.917952], + [145.235046387, -15.143463134], + [145.349655152, -14.982315062], + [144.684402, -14.552839], + [144.516205, -14.166642], + [143.948273, -14.495552], + [143.798355, -14.422804], + [143.531967, -13.749249], + [143.586807, -13.544975], + [143.498779, -12.952903], + [143.350601, -12.888373], + [143.438904, -12.613395], + [143.083069, -12.347416], + [143.185577, -11.990818], + [142.856354, -11.845518], + [142.726517, -10.973741], + [142.438263, -10.708162], + [142.157288, -11.121775], + [141.92247, -12.107571], + [141.820587, -12.031383], + [141.591766, -12.563931], + [141.822403, -12.60147], + [141.601364, -12.952081], + [141.696075, -13.264538], + [141.550598, -13.506938999], + [141.468994, -13.920429], + [141.600554999, -14.119518001], + [141.525604, -14.487085999], + [141.667618, -15.019793], + [141.480178834, -15.498202324], + [141.421752929, -16.105150222], + [141.184463502, -16.720661162], + [140.973587036, -16.969841004], + [140.827301025, -17.458450317], + [140.378204346, -17.679714203], + [140.093429565, -17.722545623], + [139.247573853, -17.327291489], + [139.000214, -16.892174], + [138.427902222, -16.777257919], + [138.116729735, -16.648019791], + [137.729675, -16.232252], + [137.409195, -16.144318], + [136.977982, -15.850953], + [136.769501, -15.889667], + [136.290009, -15.571989], + [136.239716, -15.416088], + [135.470459, -14.970226], + [135.417847, -14.734118], + [135.78894, -14.231937], + [136.016113, -13.824058], + [135.839737, -13.56636], + [135.918427, -13.270451], + [136.634491, -12.952625], + [136.480072, -12.842517], + [136.961777, -12.363822], + [136.782364, -12.159094], + [136.647507, -12.269715], + [136.41655, -11.957659], + [136.040115, -12.266812], + [135.366211, -12.084717], + [135.05603, -12.26361], + [134.770004, -11.958432], + [134.493073, -12.072505], + [133.930908, -11.918451], + [133.794907, -11.727602], + [133.611084, -11.842784], + [133.15892, -11.710047], + [133.007858, -11.432825], + [132.73288, -11.519077], + [132.342468, -11.135525], + [131.831116, -11.223273], + [132.106781, -11.531532], + [132.457153, -11.457755], + [132.655319, -11.889815], + [132.629288, -12.085415], + [132.021164, -12.296721], + [131.871231, -12.216401], + [131.47229, -12.283711], + [131.270004, -12.070589], + [131.01297, -12.323279], + [130.617355, -12.387023], + [130.627579, -12.726895], + [130.352036, -12.670338], + [130.338699, -12.889327], + [130.141113, -12.933458], + [130.11618, -13.164139], + [130.284058, -13.305757], + [130.008362, -13.533339], + [129.82692, -13.51543], + [129.721298, -14.01343], + [129.499527, -14.078959], + [129.356766, -14.42363], + [129.800568, -14.858128], + [129.47493, -14.936629], + [128.504669, -14.781492], + [128.230148, -15.000672], + [128.213959, -14.711038], + [127.854645, -14.486534], + [127.64888, -14.171997], + [127.263718, -13.90148], + [127.137299, -13.974241], + [126.957512, -13.741692], + [126.645325, -14.185125], + [126.198524, -14.006149], + [125.930901, -14.53076], + [125.468399, -14.533052], + [125.142532, -14.752043], + [125.4002, -15.088962], + [125.047241, -15.077904], + [124.705032, -15.253395], + [124.620644, -15.514456], + [124.392143, -15.745538], + [124.589035, -16.113358], + [124.411659, -16.35726], + [123.915253, -16.215643], + [123.522949, -16.636175], + [123.797287, -16.912188], + [123.644066, -16.99803], + [123.567986, -17.508322], + [123.149101, -16.924719], + [122.901527, -16.43498], + [122.737381, -16.774483], + [122.533798, -16.836487], + [122.251793, -17.128099], + [122.150017, -17.355371], + [122.214615, -18.204037], + [121.764755, -18.552828], + [121.511139, -19.093872], + [121.210129, -19.466303], + [120.961502, -19.631983], + [120.195938, -19.913908], + [119.574608, -20.075737], + [119.096596, -19.960564], + [118.817818, -20.280499], + [118.327873, -20.340954], + [117.98597, -20.474096], + [117.774292, -20.664219], + [117.369835, -20.734222], + [117.13047, -20.653553], + [116.525909, -20.752861], + [115.98938, -21.04011], + [115.492744, -21.485765], + [114.643608, -21.848927], + [114.354851, -22.500607], + [114.149567, -22.52014], + [113.995087, -21.875463], + [113.654015, -22.583393], + [113.82943, -23.030909], + [113.755333, -23.525936], + [113.470192, -23.899351], + [113.40696, -24.484177], + [113.617271, -24.736343], + [114.041618, -25.661995], + [114.235207, -25.87714], + [114.237648, -26.312765], + [114.086174, -26.468367], + [113.761856, -25.878595], + [113.52523, -25.607794], + [113.414474, -25.724737], + [113.583054, -26.095518], + [113.88356, -26.341009], + [113.811493, -26.577242], + [113.583748, -26.600183], + [113.536461, -26.28426], + [113.396721, -26.113951], + [113.296196, -26.399176], + [113.584358, -26.671427], + [113.941734, -27.191969], + [114.159637, -27.69581], + [114.174713, -28.110971], + [114.596572876, -28.611562729], + [114.634269714, -28.873563766], + [114.871994019, -29.116556167], + [114.996093749, -29.487709044], + [114.95507, -30.048246], + [115.057655, -30.503187], + [115.440514, -31.276682], + [115.685783385, -31.653709411], + [115.775131225, -32.182586669], + [115.692711001, -32.767612], + [115.679626464, -33.284992217], + [115.441681, -33.595089], + [114.975082, -33.698051], + [115.033928, -34.269764], + [115.591400147, -34.429676056], + [116.032143, -34.837105], + [116.658081, -35.051437], + [117.492592, -35.08997], + [118.210472, -34.978386], + [118.911789, -34.462879], + [119.40802, -34.458172], + [119.807152, -33.988575], + [120.04406, -33.923134], + [120.43718, -33.971584], + [120.602882, -33.886024], + [121.361481, -33.815441], + [121.785957, -33.908237], + [122.008423, -33.831699], + [122.113571, -34.0172], + [123.016754, -33.857834], + [123.163071, -34.016636], + [123.546753, -33.934994], + [123.980186, -33.549706], + [124.101189, -33.176155], + [124.354415893, -32.960067749], + [124.748626708, -32.898605346], + [125.026184082, -32.728858947], + [125.556930542, -32.536010743], + [125.951011658, -32.290542603], + [126.203140258, -32.232276915], + [126.672790528, -32.308368683], + [127.213371277, -32.27638626], + [128.054138184, -32.064689637], + [129.049881, -31.675119], + [130.27507, -31.573662], + [130.791367, -31.607], + [131.129562, -31.464363], + [131.80278, -31.744869], + [132.271133, -32.032398], + [132.5952, -31.934328], + [133.257766723, -32.206470489], + [133.46043396, -32.102912903], + [133.825683595, -32.237823485], + [133.938613892, -32.420635224], + [134.250168, -32.550423], + [134.080597, -32.709572], + [134.266769, -33.138512], + [134.801636, -33.328472], + [134.842392, -33.629753], + [135.270477, -34.015923], + [135.395554, -34.523697], + [135.228516, -34.543633], + [135.62352, -34.907719], + [135.847046, -34.880898], + [135.931412, -34.529533], + [136.593673706, -33.899089813], + [137.167892456, -33.690441131], + [137.442260742, -33.152175903], + [137.902054, -32.8018], + [138.04805, -33.135838], + [137.811417, -33.27663], + [137.879028319, -33.596782685], + [137.530914, -34.001148], + [137.457077, -34.889587], + [137.008942, -34.896393], + [136.85675, -35.287521], + [137.424347, -35.097878], + [137.637497, -35.168201], + [137.857788, -34.771866], + [137.885468, -34.514843], + [138.087585, -34.131973], + [138.262985229, -34.472000122], + [138.537628173, -34.748870849], + [138.440353393, -35.351062774], + [138.093917846, -35.603401184], + [138.522354, -35.642967], + [138.711487, -35.513428], + [139.21196, -35.754559], + [139.59079, -36.128601], + [139.861465455, -36.688747405], + [139.670043945, -36.958217621], + [139.828369, -37.304417], + [140.267059, -37.709873], + [140.375839, -37.897762], + [140.661789, -38.061001], + [140.99079895, -38.059799194], + [141.406723022, -38.369342804], + [141.884887696, -38.266292572], + [142.146606445, -38.389705658], + [142.372207641, -38.34941864], + [143.257751, -38.770603], + [143.555649, -38.854939], + [144.036499024, -38.475776671], + [144.435684204, -38.281303406], + [144.397949219, -38.073818206], + [144.897141, -37.842552], + [145.121337891, -38.133396149], + [144.894485, -38.491489], + [145.231644, -38.409611], + [145.271240235, -38.224014281], + [145.552444, -38.354565], + [145.423691, -38.53648], + [145.714005, -38.645142], + [145.936889649, -38.897380829], + [146.184204101, -38.869506836], + [146.420791625, -39.125793458], + [146.479125976, -38.793495179], + [146.291915893, -38.904281615], + [146.188812257, -38.731769562], + [146.88353, -38.634445], + [147.462555, -38.162434], + [147.950012, -37.894691], + [148.366196, -37.803947], + [149.469711, -37.769531], + [149.977295, -37.504589], + [150.003403, -37.141514], + [149.904129, -36.918694], + [150.14711, -36.237579] + ] + ], + [ + [ + [147.329117, -43.015934], + [147.488983, -42.828773], + [147.81488, -42.888412], + [147.962723, -42.668808], + [148.013428, -42.239647], + [148.283524, -42.034161], + [148.320297, -41.621391], + [148.270172, -41.207893], + [148.338638, -40.994858], + [147.975128, -40.739239], + [147.661316, -40.825001], + [147.398956, -41.008526], + [147.02269, -40.981152], + [146.366318, -41.174404], + [146.1689, -41.150108], + [145.258728, -40.805813], + [144.692398, -40.663433], + [144.616394, -40.933968], + [144.683517, -41.234802], + [145.263443, -42.143616], + [145.252899, -42.522236], + [145.500641, -42.978771], + [145.961578, -43.294773], + [146.06842, -43.556641], + [146.552292, -43.512096], + [146.863373, -43.632027], + [147.329117, -43.015934] + ] + ], + [ + [ + [130.418503, -11.185785], + [130.49263, -11.654928], + [130.97644, -11.933149], + [131.541046, -11.45885], + [131.288208, -11.193865], + [130.657349, -11.400649], + [130.418503, -11.185785] + ] + ], + [ + [ + [137.633148, -35.564274], + [136.587433, -35.748856], + [136.708069, -36.037483], + [137.46347, -36.072464], + [137.737839, -35.854298], + [138.04422, -35.902855], + [138.067795, -35.759785], + [137.602478, -35.735886], + [137.633148, -35.564274] + ] + ], + [ + [ + [153.259811, -24.697536], + [153.030731, -25.175516], + [152.951004, -25.551935], + [153.011032, -25.762205], + [153.357895, -25.008917], + [153.259811, -24.697536] + ] + ], + [ + [ + [136.412415, -13.828383], + [136.437347, -14.196301], + [136.937744, -14.299124], + [136.700333, -14.111097], + [136.811615, -13.855776], + [136.681076, -13.739421], + [136.412415, -13.828383] + ] + ], + [ + [ + [147.816727, -39.910976], + [148.023926, -40.215965], + [148.333878, -40.209534], + [148.291138, -39.965118], + [147.941833, -39.719547], + [147.816727, -39.910976] + ] + ], + [ + [ + [130.348465, -11.335545], + [130.150635, -11.489976], + [130.118195, -11.827125], + [130.498749, -11.829338], + [130.348465, -11.335545] + ] + ], + [ + [ + [143.875031, -40.114433], + [144.127853, -39.992889], + [144.110138, -39.675632], + [143.844971, -39.714016], + [143.875031, -40.114433] + ] + ], + [ + [ + [113.019112, -25.505728], + [112.973793, -25.793781], + [113.235237, -26.123503], + [113.019112, -25.505728] + ] + ], + [ + [ + [139.577118, -16.399302], + [139.160629, -16.610224], + [139.313049, -16.730232], + [139.577118, -16.399302] + ] + ] + ] + }, + "properties": { + "id": "14d7f632-45ca-47be-bbe6-1e8f46c03403", + "code": "AUS", + "name": "Australia", + "abbreviation": "C-AUS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.713896501, 46.523197941], + [14.525084622, 46.422349759], + [15.044928171, 46.652472602], + [15.654891813, 46.706565746], + [16.000324829, 46.680454388], + [16.113840435, 46.869569682], + [16.475166652, 46.997389787], + [16.446919674, 47.406014134], + [16.749597917, 47.682820257], + [17.094339254, 47.708666039], + [17.160628178, 48.008037749], + [16.851498404, 48.449987858], + [16.924345983, 48.621355889], + [16.46746946, 48.809132098], + [16.094939897, 48.747288846], + [15.27795496, 48.993056593], + [14.99700186, 49.015724043], + [14.959571746, 48.760716498], + [14.707355335, 48.586049934], + [14.053661651, 48.607290441], + [13.84017735, 48.771221552], + [13.7265817, 48.514094787], + [13.515751092, 48.591540164], + [13.410012307, 48.373654518], + [12.869480201, 48.201261797], + [12.753676468, 48.087443995], + [13.098878033, 47.63497621], + [13.004363656, 47.463922448], + [12.732470362, 47.680211084], + [12.499803947, 47.625656643], + [12.16300994, 47.70174582], + [11.633031787, 47.59245468], + [11.287422711, 47.405635416], + [10.980255356, 47.397505434], + [10.886474708, 47.537278766], + [10.454786787, 47.556405837], + [10.338881796, 47.310740933], + [9.96354695, 47.535236416], + [9.561736197, 47.502418292], + [9.532011599, 47.270304645], + [9.607548925, 47.061646232], + [10.104813924, 46.842195451], + [10.348499919, 46.990232983], + [10.472848197, 46.856806865], + [11.022877157, 46.766339508], + [11.110455747, 46.927683873], + [11.627675189, 47.013811474], + [12.121946009, 47.007597392], + [12.281117482, 46.792312472], + [12.690494923, 46.657394214], + [13.713896501, 46.523197941] + ] + ] + }, + "properties": { + "id": "9232ac8c-a951-4a6e-8092-599980433545", + "code": "AUT", + "name": "Austria", + "abbreviation": "C-AUT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [46.547237396, 38.87273407], + [46.852722169, 39.139621734], + [47.807823182, 39.650070191], + [47.990760804, 39.696315765], + [48.374633789, 39.370769501], + [48.144172668, 39.200191498], + [48.357784272, 39.040542604], + [48.013500214, 38.904579163], + [48.315654756, 38.601352691], + [48.632034301, 38.402408599], + [48.879386902, 38.437000275], + [48.825252533, 38.824790954], + [48.949310303, 39.161060334], + [49.189662934, 39.048236847], + [49.280376434, 39.514598848], + [49.478370667, 39.98557663], + [49.469009399, 40.170124055], + [49.680221649, 40.275428794], + [50.331802, 40.404396], + [50.062662502, 40.592899248], + [49.543399812, 40.6314888], + [49.498500823, 40.826171875], + [49.205043792, 41.015556336], + [49.095218658, 41.331329346], + [48.66060257, 41.793498993], + [48.505107879, 41.864120484], + [48.414409638, 41.626567841], + [48.051055909, 41.49119568], + [47.878814698, 41.219219208], + [47.535915375, 41.207206727], + [47.262393951, 41.324737549], + [46.748703002, 41.863056182], + [46.418235779, 41.907482147], + [46.247806548, 41.654754639], + [46.351867676, 41.492645265], + [46.721359253, 41.286907197], + [46.623905182, 41.056678771], + [46.245433807, 41.175765991], + [45.94391632, 41.180404664], + [45.306873322, 41.468112946], + [45.004055024, 41.301422119], + [45.193451, 41.071743], + [45.570034028, 40.824512482], + [45.356712342, 40.668395996], + [45.4357872, 40.514019012], + [45.977215, 40.212894], + [45.806186676, 39.930950165], + [46.175865174, 39.587974549], + [46.563018799, 39.567264558], + [46.408470154, 39.378364564], + [46.621616364, 39.215484619], + [46.547237396, 38.87273407] + ] + ], + [ + [ + [44.772602081, 39.71364975], + [44.820220947, 39.625209808], + [45.43636322, 38.998386383], + [46.136863709, 38.834842682], + [46.000000001, 39.296939851], + [45.708938599, 39.606487274], + [45.456829071, 39.504371644], + [45.081943512, 39.785499572], + [44.772602081, 39.71364975] + ] + ] + ] + }, + "properties": { + "id": "707d4ea2-5c42-4092-b48f-a2c85575d12c", + "code": "AZE", + "name": "Azerbaijan", + "abbreviation": "C-AZE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-77.758751, 24.602083], + [-78.018196, 25.169027], + [-78.22847, 25.186251], + [-78.184586, 24.905416], + [-78.461807, 24.600695], + [-78.037636, 24.302639], + [-77.715141, 24.487364], + [-77.758751, 24.602083] + ] + ], + [ + [ + [-73.016251, 21.335974], + [-73.262642, 21.135139], + [-73.514862, 21.186253], + [-73.678192, 20.94125], + [-73.158752, 20.967361], + [-73.016251, 21.335974] + ] + ], + [ + [ + [-77.596802, 24.210138], + [-77.801804, 23.839025], + [-77.530693, 23.795975], + [-77.596802, 24.210138] + ] + ], + [ + [ + [-78.802086, 26.563749], + [-77.980415, 26.656528], + [-78.581528, 26.71764], + [-78.802086, 26.563749] + ] + ], + [ + [ + [-77.165138, 26.497915], + [-77.204308, 26.14986], + [-77.405136, 25.997917], + [-77.180435, 25.857639], + [-77.165138, 26.497915] + ] + ] + ] + }, + "properties": { + "id": "1583b0a1-0256-46ab-b40a-ccbbf1a47552", + "code": "BHS", + "name": "Bahamas", + "abbreviation": "C-BHS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [50.323799, 26.182917], + [50.607639, 25.851805], + [50.624863, 26.187082], + [50.324081, 26.186251], + [50.323799, 26.182917] + ] + ] + }, + "properties": { + "id": "7c9c78e5-1555-4f0f-a9f2-ba31552f3b4a", + "code": "BHR", + "name": "Bahrain", + "abbreviation": "C-BHR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [88.929375, 22.649809], + [88.986068999, 22.324126999], + [89.202217, 22.002501], + [89.475281, 22.230831], + [89.547638, 21.961491], + [89.835861, 21.850941], + [90.230003356, 22.1902771], + [90.197502136, 22.323610306], + [90.256294251, 22.351594925], + [90.336112976, 22.544183732], + [90.582275, 22.725403], + [90.677444458, 22.277025223], + [91.4189, 22.74806], + [91.668342591, 22.54360962], + [91.916755676, 21.862623214], + [91.868286001, 21.501081], + [92.202880859, 21.149477005], + [92.380973816, 21.479867936], + [92.673660279, 21.291280747], + [92.608779907, 21.984094619], + [92.507926941, 22.736080169], + [92.376472473, 22.928758622], + [92.397560119, 23.240600585], + [92.249412537, 23.724306106], + [91.942307, 23.681808001], + [91.975188979, 23.482410113], + [91.772888184, 23.270080567], + [91.823081969, 23.086977004], + [91.620223998, 22.938674927], + [91.162727356, 23.595209122], + [91.378021241, 24.109500886], + [91.592201, 24.078833], + [91.745044069, 24.24659535], + [92.096565247, 24.375444413], + [92.425765991, 25.028795242], + [92.061836242, 25.18711853], + [91.63785553, 25.122653962], + [91.069572448, 25.19852066], + [90.440979005, 25.144626617], + [89.831161499, 25.296140671], + [89.885940551, 25.943580628], + [89.747596741, 26.157444001], + [89.542312622, 26.004447937], + [89.164398193, 26.131744385], + [88.431236267, 26.550157546], + [88.446456908, 26.365034104], + [88.18044281, 26.145692826], + [88.090324402, 25.896469117], + [88.547958374, 25.518249512], + [88.803260803, 25.524435044], + [88.830413818, 25.205453872], + [88.443840028, 25.194890977], + [88.010566712, 24.666660309], + [88.204414368, 24.459466935], + [88.740898133, 24.254024506], + [88.733383178, 23.911117553], + [88.562156677, 23.637184144], + [88.912178039, 23.234027862], + [88.854980469, 22.959133148], + [88.929375, 22.649809] + ] + ], + [ + [ + [90.616287, 22.326458], + [90.573989999, 22.544640001], + [90.30921173, 22.464353561], + [90.273887635, 22.360126495], + [90.207497, 22.3225], + [90.237381, 22.179741], + [90.034203, 21.950544], + [90.255500793, 21.954013824], + [90.616287, 22.326458] + ] + ] + ] + }, + "properties": { + "id": "e32fd734-924e-41a4-b716-5aca2b33f9f2", + "code": "BGD", + "name": "Bangladesh", + "abbreviation": "C-BGD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-59.474304199, 13.076527597], + [-59.41986084, 13.150137901], + [-59.650138854, 13.30819416], + [-59.612361908, 13.079860688], + [-59.474304199, 13.076527597] + ] + ] + }, + "properties": { + "id": "6759b1fd-fc70-4810-a9df-2ba9c9d1301d", + "code": "BRB", + "name": "Barbados", + "abbreviation": "C-BRB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.624755996, 51.514190675], + [23.677938461, 51.646072387], + [24.027051925, 51.584110261], + [24.386892319, 51.910644532], + [24.995042802, 51.91225052], + [25.284065247, 51.983413697], + [26.366628646, 51.876594544], + [26.826513291, 51.771430969], + [27.193468093, 51.787284852], + [27.230190277, 51.602363587], + [27.833856582, 51.640563964], + [28.082235335, 51.570156097], + [28.274139405, 51.69776535], + [28.825105668, 51.542804718], + [29.160102844, 51.650665283], + [29.362110137, 51.396415711], + [29.72085762, 51.529037476], + [30.250274658, 51.493740082], + [30.463741303, 51.282413484], + [30.657110214, 51.337585449], + [30.520992279, 51.662387849], + [30.951120377, 52.078479767], + [31.235437392, 52.048336029], + [31.789606095, 52.108219148], + [31.59456253, 52.302452087], + [31.515312194, 52.689311982], + [31.606595994, 52.766613007], + [31.329481124, 53.044277191], + [31.641042709, 53.23141098], + [31.931325913, 53.086585999], + [32.227340699, 53.096294403], + [32.741893768, 53.332733155], + [32.462646485, 53.574119569], + [32.509155273, 53.695682525], + [32.122810364, 53.809463502], + [31.76597786, 53.797252655], + [31.780056, 54.064109802], + [31.330057143, 54.260890961], + [31.213983536, 54.650382997], + [30.76061058, 54.811752319], + [31.006025314, 55.033226014], + [30.93380165, 55.634067536], + [30.267707825, 55.869976044], + [29.969619752, 55.889705658], + [29.480318069, 55.704460145], + [29.39691162, 55.976993561], + [29.032892227, 56.032539369], + [28.729238511, 55.966941835], + [28.58208847, 56.103076934], + [28.151191847, 56.161064718], + [27.664216995, 55.930789948], + [27.591962814, 55.781848907], + [27.16709137, 55.844951631], + [26.63838005, 55.663719178], + [26.463254929, 55.339340211], + [26.826379777, 55.3168602], + [26.682971954, 55.159259797], + [26.386478423, 55.149513246], + [26.222475051, 54.998104096], + [25.85630989, 54.924667359], + [25.76096344, 54.590614319], + [25.571098328, 54.32313919], + [25.226644517, 54.259243011], + [24.36614418, 53.892757415], + [24.219413757, 53.96680832], + [23.792467117, 53.895462037], + [23.514919001, 53.955994], + [23.549049378, 53.767780304], + [23.915153504, 53.162281036], + [23.931631088, 52.708972931], + [23.466627121, 52.549446106], + [23.21557808, 52.329654694], + [23.640176774, 52.085796357], + [23.558965683, 51.761566162], + [23.624755996, 51.514190675] + ] + ] + }, + "properties": { + "id": "9dd19590-d9fe-40ee-bdc8-f86b6f099a4c", + "code": "BLR", + "name": "Belarus", + "abbreviation": "C-BLR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.597444534, 50.992469787], + [2.634982824, 50.812755586], + [2.900430442, 50.693286895], + [3.147109031, 50.789905548], + [3.286531449, 50.527576448], + [3.660986186, 50.457592011], + [3.673676013, 50.33493042], + [4.025219917, 50.357894897], + [4.220833778, 50.25430298], + [4.140979291, 49.978805543], + [4.686140537, 50.004943848], + [5.430971622, 49.592384338], + [5.815077305, 49.545166015], + [5.746118069, 49.838768006], + [5.859116077, 50.061710358], + [6.138388158, 50.134075166], + [6.375073434, 50.313796998], + [6.036703586, 50.723491668], + [5.691102028, 50.761138917], + [5.834125043, 51.168460847], + [5.136709213, 51.315532684], + [4.75214386, 51.497524261], + [4.221158028, 51.37612915], + [4.216015817, 51.370239257], + [3.902096987, 51.198947908], + [3.360782249, 51.367637642], + [2.555355549, 51.09192276], + [2.597444534, 50.992469787] + ] + ] + }, + "properties": { + "id": "b3639c43-44e3-4273-a439-229d8cb7d3e0", + "code": "BEL", + "name": "Belgium", + "abbreviation": "C-BEL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-88.912636, 15.904163211], + [-88.544029, 16.272638], + [-88.218193, 16.967638], + [-88.300415, 17.118473], + [-88.288475, 17.564028], + [-88.105698, 18.099028], + [-88.102913, 18.356806], + [-88.316290583, 18.488474], + [-88.51761409, 18.463465209], + [-88.857937985, 17.924198107], + [-89.146888732, 17.814586639], + [-89.14615631, 17.049846649], + [-89.21299, 15.895202], + [-88.912636, 15.904163211] + ] + ] + }, + "properties": { + "id": "304bd2c0-b926-4756-b6af-c09ca4ae3356", + "code": "BLZ", + "name": "Belize", + "abbreviation": "C-BLZ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.709382057, 6.375693798], + [2.792602062, 7.041276932], + [2.675815104, 7.89320612], + [2.754101038, 8.211312294], + [2.728413104, 8.772684097], + [2.780891894, 9.0651083], + [3.088170052, 9.101576806], + [3.130999089, 9.440149307], + [3.356626987, 9.825662614], + [3.529059887, 9.861886979], + [3.786003112, 10.405379296], + [3.840980053, 10.704918862], + [3.691904068, 11.12815857], + [3.496037007, 11.292149545], + [3.605076074, 11.696969987], + [3.302057982, 11.8941288], + [3.013609886, 12.266388895], + [2.79459405, 12.418351173], + [2.385479927, 12.235549927], + [2.405400038, 11.901610374], + [2.305728912, 11.674420358], + [2.019248008, 11.427710534], + [1.625131009, 11.390871049], + [1.440096974, 11.473831178], + [0.912175531, 10.99653698], + [0.774549218, 10.384950389], + [1.364112999, 10.012135], + [1.421417, 9.306945], + [1.624506, 9.042144], + [1.649164, 8.490761], + [1.641587, 6.993990001], + [1.578130797, 6.685646682], + [1.807527, 6.286359999], + [1.629444, 6.236389], + [2.709382057, 6.375693798] + ] + ] + }, + "properties": { + "id": "01e1f6a9-a8d0-43e1-b85c-f09fa9d3ddcb", + "code": "BEN", + "name": "Benin", + "abbreviation": "C-BEN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-64.864166, 32.266945], + [-64.828888, 32.247501], + [-64.689163, 32.33139], + [-64.816948, 32.302776], + [-64.864166, 32.266945] + ] + ] + }, + "properties": { + "id": "6addfd7c-efb6-4d59-a4c2-d4e5a0a66334", + "code": "BMU", + "name": "Bermuda", + "abbreviation": "C-BMU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [88.919456482, 27.327699661], + [88.869636535, 26.962984086], + [89.134277344, 26.807836533], + [89.378929138, 26.862424851], + [89.863151551, 26.700654983], + [90.416481017, 26.904701233], + [90.693458558, 26.77026558], + [91.097450256, 26.822179795], + [91.720634461, 26.811922075], + [92.102890015, 26.867559434], + [92.018768311, 27.480323791], + [91.651710511, 27.484342576], + [91.598152161, 27.859909058], + [91.333763123, 28.066419602], + [91.208480834, 27.988225938], + [90.805114746, 28.071044922], + [90.463912964, 28.048666], + [89.860267638, 28.230169296], + [89.595100403, 28.155784607], + [88.977752686, 27.487577438], + [88.919456482, 27.327699661] + ] + ] + }, + "properties": { + "id": "25a3bc96-5200-4dae-a2ea-7fc962944557", + "code": "BTN", + "name": "Bhutan", + "abbreviation": "C-BTN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.642415671, -22.242894844], + [-62.260665159, -21.058500007], + [-62.266645605, -20.562743268], + [-61.922404907, -20.089239513], + [-61.735471105, -19.634178196], + [-60.600998482, -19.45593368], + [-59.9769183, -19.295172725], + [-59.09957038, -19.349433196], + [-58.235441178, -19.775484009], + [-58.162684861, -20.160596096], + [-57.876689911, -19.965881348], + [-58.133399963, -19.75784111], + [-57.784191132, -19.033510208], + [-57.558310155, -18.242056503], + [-57.785591125, -17.555549622], + [-57.99858167, -17.514904824], + [-58.395462036, -17.184459686], + [-58.459285344, -16.652812851], + [-58.430400848, -16.321298599], + [-60.161426021, -16.263271258], + [-60.235233306, -15.473531723], + [-60.55948639, -15.111411094], + [-60.244247436, -15.096813202], + [-60.271699193, -14.626809107], + [-60.480344189, -14.184560962], + [-60.45925192, -13.804129065], + [-61.011052255, -13.533012542], + [-61.790934682, -13.536953212], + [-62.15059327, -13.156011051], + [-62.760529937, -13.017384637], + [-63.241158696, -12.690587281], + [-63.784982992, -12.428946293], + [-63.956715292, -12.531071802], + [-64.420083675, -12.436552791], + [-64.514227294, -12.223264397], + [-64.975176948, -12.01872597], + [-65.18827838, -11.755368662], + [-65.212701117, -11.528896244], + [-65.358263495, -11.13131355], + [-65.252590533, -10.991827172], + [-65.427625114, -10.47545455], + [-65.291822361, -10.22368913], + [-65.287532739, -9.852728496], + [-65.438783188, -9.670922913], + [-66.623619763, -9.897011345], + [-67.169441414, -10.337140925], + [-67.322133893, -10.322699497], + [-67.708760469, -10.709274587], + [-68.002466731, -10.650083855], + [-68.238342286, -10.956472397], + [-68.71513751, -11.144829854], + [-68.925365344, -11.017932009], + [-69.572290111, -10.949385104], + [-68.969980785, -11.91249812], + [-68.656689167, -12.489146945], + [-68.86907566, -12.867147652], + [-68.852226841, -13.210676813], + [-68.993478122, -13.651170541], + [-68.979464007, -13.974804392], + [-68.846679746, -14.237351286], + [-69.226150512, -14.736579895], + [-69.352312565, -14.801012166], + [-69.285500317, -15.096910707], + [-69.133278641, -15.222435145], + [-69.401803, -15.606112], + [-69.197731, -16.16449], + [-68.959245123, -16.196491272], + [-69.04381004, -16.688458262], + [-69.641725, -17.286869445], + [-69.468683249, -17.498589528], + [-69.31293257, -17.908921723], + [-69.081219707, -18.091429223], + [-69.033063049, -18.629412354], + [-68.889647131, -19.043426332], + [-68.404887643, -19.416169786], + [-68.688861978, -19.748411644], + [-68.566246132, -20.050070443], + [-68.763484151, -20.078681206], + [-68.738742092, -20.456789412], + [-68.439097392, -20.640955624], + [-68.415715014, -20.941426367], + [-68.178367054, -21.30354183], + [-68.180564745, -21.604072323], + [-67.965161463, -22.05414272], + [-67.853363445, -22.557292016], + [-67.883150134, -22.83444802], + [-67.587988568, -22.906568379], + [-67.181492683, -22.814198382], + [-67.027275, -22.540883334], + [-66.782475, -22.438075], + [-66.739288889, -22.238458333], + [-66.288490868, -22.085832402], + [-66.241263978, -21.788823764], + [-65.676173444, -22.111683849], + [-65.052511111, -22.083347223], + [-64.651743429, -22.189670368], + [-64.267625, -22.770130556], + [-63.930780939, -21.999327466], + [-62.807725491, -22.003895703], + [-62.642415671, -22.242894844] + ] + ] + }, + "properties": { + "id": "7461e14c-3e17-434a-b7f8-dad1c0250864", + "code": "BOL", + "name": "Bolivia", + "abbreviation": "C-BOL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-68.386528, 12.311527], + [-68.249306, 12.024306], + [-68.196526, 12.220973], + [-68.386528, 12.311527] + ] + ] + }, + "properties": { + "id": "c05a439e-e3e8-4ba8-83f6-f99a49e9f931", + "code": "BES", + "name": "Bonaire, Sint Eustatius and Saba", + "abbreviation": "C-BES", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [17.648450851, 42.888294219], + [17.801698744, 42.892517169], + [18.458923007, 42.565307821], + [18.492286682, 42.975170135], + [18.678873063, 43.037166595], + [18.695547104, 43.266609192], + [18.958541871, 43.515575408], + [19.185674667, 43.53514862], + [19.510490417, 43.719890595], + [19.240442276, 44.013515473], + [19.612438202, 44.023971559], + [19.122179031, 44.526576996], + [19.365951539, 44.896987915], + [19.03316307, 44.870052338], + [18.540554047, 45.104312898], + [17.991212845, 45.163642883], + [17.178274154, 45.15210724], + [16.893648147, 45.242534637], + [16.501817703, 45.218250274], + [16.327577591, 45.013275147], + [16.024816513, 45.21982193], + [15.758016586, 45.167304992], + [15.819162369, 44.738529205], + [16.049072265, 44.65209961], + [16.244707107, 44.197971345], + [16.713905334, 43.874317169], + [17.036762238, 43.57131195], + [17.306247711, 43.472480774], + [17.346467972, 43.267295837], + [17.666503907, 43.077087403], + [17.576017379, 42.942398072], + [17.648450851, 42.888294219] + ] + ] + }, + "properties": { + "id": "5c506e5a-faee-4aab-b53c-8f4d76970be2", + "code": "BIH", + "name": "Bosnia and Herzegovina", + "abbreviation": "C-BIH", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.000228881, -24.766942978], + [20.384170532, -25.034299851], + [20.788230896, -25.803110122], + [20.82278061, -26.176500321], + [20.604450227, -26.520839691], + [20.622430802, -26.786249161], + [21.134170532, -26.873760224], + [21.694839477, -26.861240387], + [21.787389756, -26.676059722], + [22.052160263, -26.632860183], + [22.192789078, -26.395849227], + [22.557409286, -26.221759797], + [22.863750458, -25.47961998], + [23.014129638, -25.29821968], + [23.468269348, -25.279470444], + [23.90337944, -25.626810073], + [24.685869217, -25.823329924], + [25.015270232, -25.725570678], + [25.334129334, -25.771020888], + [25.580879211, -25.638799667], + [25.888500213, -24.884290694], + [25.858310699, -24.75717926], + [26.393280029, -24.636629104], + [26.868049622, -24.245109557], + [26.971069337, -23.702760696], + [27.134050369, -23.536640167], + [27.528650284, -23.385269166], + [27.599720002, -23.217590331], + [28.342639923, -22.573720932], + [28.921869277, -22.458379745], + [29.036939622, -22.216310502], + [29.368310928, -22.197811127], + [29.051730088, -22.018145483], + [29.075893597, -21.81884297], + [28.568254707, -21.63236419], + [28.021941118, -21.573519046], + [27.68866457, -21.057577654], + [27.683849335, -20.490339279], + [27.35820961, -20.473520279], + [27.23468983, -20.116282495], + [26.72580104, -19.937199634], + [26.160480498, -19.537670135], + [25.826112962, -18.834878076], + [25.782484898, -18.622416768], + [25.521398886, -18.379168279], + [25.237734174, -17.90915827], + [25.265507709, -17.78990663], + [24.804834366, -17.860858916], + [24.575153351, -18.065099717], + [24.201080322, -18.016550064], + [23.612859726, -18.504049301], + [23.296621322, -17.99752426], + [22.98841095, -18.018289566], + [21.468940734, -18.318029404], + [20.998825074, -18.317876816], + [21.001741409, -22.003839493], + [19.999998093, -22.001777649], + [20.000228881, -24.766942978] + ] + ] + }, + "properties": { + "id": "3a0e0aef-9625-4873-8429-8494368b314f", + "code": "BWA", + "name": "Botswana", + "abbreviation": "C-BWA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [3.358334, -54.391388], + [3.322522, -54.464424], + [3.467885, -54.45628], + [3.358334, -54.391388] + ] + ] + }, + "properties": { + "id": "32b0bbd9-838a-46db-8fca-26b7bb8bd476", + "code": "BVT", + "name": "Bouvet Island", + "abbreviation": "C-BVT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-57.645093944, -30.193501761], + [-57.203642, -30.285423], + [-57.082138, -30.094591], + [-56.661922, -30.197669], + [-55.989596014, -30.858504928], + [-55.9300561, -31.085948999], + [-55.578888099, -30.839533899], + [-55.2466824, -31.252289999], + [-55.0024318, -31.269257799], + [-54.8367023, -31.442002601], + [-54.5867653, -31.4565633], + [-54.4564064, -31.6517073], + [-54.080886701, -31.9292828], + [-53.849429147, -32.001130134], + [-53.542809233, -32.479692961], + [-53.09424591, -32.724189758], + [-53.484397889, -33.078063965], + [-53.53131893, -33.645071055], + [-53.369862, -33.744077], + [-52.802024041, -33.304912619], + [-52.495181234, -32.867226341], + [-52.293031035, -32.338318744], + [-51.830878234, -31.919157778], + [-51.220937466, -31.539408918], + [-50.767239345, -31.110111934], + [-50.306061095, -30.447115604], + [-50.058691652, -29.84992048], + [-49.710420656, -29.317146803], + [-49.408244575, -28.98487884], + [-48.746510677, -28.505077623], + [-48.573133318, -27.885972956], + [-48.373571688, -27.471578488], + [-48.612309143, -27.232148529], + [-48.688099445, -26.671169974], + [-48.493002284, -26.218393272], + [-48.606344076, -26.019602961], + [-48.424970424, -25.634557975], + [-47.923760624, -25.160517492], + [-47.84292227, -24.976604957], + [-47.003632747, -24.408957336], + [-46.920548435, -24.2673684], + [-46.128397417, -23.844086342], + [-45.898320373, -23.76535289], + [-45.396275849, -23.808126274], + [-44.905663436, -23.334017091], + [-44.785062842, -23.378034195], + [-44.668552646, -23.054168567], + [-44.144956264, -23.036039868], + [-43.796785539, -22.916540849], + [-43.562373013, -23.053156352], + [-43.110429696, -22.953649568], + [-42.07391171, -22.955523521], + [-41.909864021, -22.778781867], + [-41.995750037, -22.600623867], + [-41.770404428, -22.359697125], + [-41.16741523, -22.115829251], + [-40.975188822, -21.9410341], + [-41.06888923, -21.497579359], + [-40.739539016, -20.845565924], + [-40.426280799, -20.634230988], + [-40.054781733, -19.814831266], + [-39.810802381, -19.649612858], + [-39.689057294, -19.304929624], + [-39.728222387, -18.518274012], + [-39.425725882, -17.933147112], + [-39.138043704, -17.693288489], + [-39.217629654, -17.334622057], + [-39.062115333, -16.435783024], + [-38.852839294, -15.849354111], + [-38.934855462, -15.665390302], + [-39.061626425, -14.624985381], + [-38.891128845, -13.640530831], + [-38.929186439, -13.218358031], + [-38.643338711, -13.015313122], + [-38.353537713, -12.957058848], + [-37.769353531, -12.238366512], + [-37.406328428, -11.536589824], + [-36.867504964, -10.758052228], + [-36.387711163, -10.498630692], + [-35.813726073, -9.730833902], + [-35.294821962, -9.17133322], + [-34.943856225, -8.358564597], + [-34.820238515, -7.925668667], + [-34.79316128, -7.154560485], + [-35.226191353, -5.581045065], + [-35.489527922, -5.157047998], + [-35.948300005, -5.044355052], + [-36.729102552, -5.077184254], + [-36.959969516, -4.918634926], + [-37.157636256, -4.945371312], + [-37.344569099, -4.690384437], + [-37.603106682, -4.617299215], + [-38.114891794, -4.149142501], + [-38.46063248, -3.721207029], + [-38.652404674, -3.682156009], + [-39.256999743, -3.219521777], + [-39.965598295, -2.851354987], + [-40.439169455, -2.809254605], + [-41.340349561, -2.927439202], + [-41.612537884, -2.89649677], + [-41.807247502, -2.730040289], + [-42.562675645, -2.678419986], + [-43.237413117, -2.358689584], + [-43.627210474, -2.251233664], + [-44.077571174, -2.742621222], + [-44.031771361, -2.406280088], + [-44.304569017, -2.487506015], + [-44.496117507, -3.026581453], + [-44.662510578, -3.012940532], + [-44.60692285, -2.689780872], + [-44.357824639, -2.340184334], + [-44.6363315, -1.616559401], + [-44.844302925, -1.489064174], + [-45.198023675, -1.48842501], + [-45.304897596, -1.33641137], + [-45.957763063, -1.195137169], + [-46.266679574, -0.961282844], + [-46.469080189, -1.025289416], + [-46.68055555, -0.796272877], + [-46.809443306, -0.860981346], + [-47.316377741, -0.592182533], + [-47.869943193, -0.561225575], + [-48.268463391, -0.902927531], + [-48.474716129, -0.873902096], + [-48.428806726, -0.227166938], + [-48.743727379, -0.249922362], + [-49.01688845, -0.160232963], + [-49.422189245, -0.16844694], + [-49.39700902, 0.062159081], + [-49.699578385, 0.1505051], + [-49.57316542, 0.416555285], + [-50.167818885, 0.340290841], + [-50.036412976, 0.534178401], + [-50.213510029, 0.655974905], + [-49.889782433, 1.013596962], + [-49.920618346, 1.68792961], + [-50.423725445, 1.804464191], + [-50.681866793, 2.13340279], + [-50.954207264, 2.837236797], + [-51.109308672, 3.450626727], + [-51.080682499, 3.884808557], + [-51.216393391, 4.14995685], + [-51.5678, 4.474894094], + [-51.605930328, 4.236526966], + [-51.657772065, 4.05079317], + [-51.921131133, 3.773808003], + [-52.330238341, 3.063822984], + [-52.672119141, 2.375355005], + [-52.986690522, 2.171376944], + [-53.460384369, 2.331587077], + [-53.789031982, 2.365223885], + [-54.084835053, 2.191226005], + [-54.332149507, 2.163784981], + [-54.524669648, 2.304801942], + [-54.858329773, 2.435056925], + [-54.972595215, 2.604665996], + [-55.42848587, 2.439435006], + [-55.738914489, 2.401213885], + [-55.946421067, 2.531918521], + [-56.047626495, 2.228108883], + [-55.909862517, 2.03271699], + [-55.994968415, 1.831146002], + [-56.480251313, 1.941472054], + [-56.800163269, 1.863873958], + [-57.081291199, 2.01928401], + [-57.423114777, 1.90612495], + [-57.544075013, 1.702345014], + [-57.769802093, 1.719905019], + [-58.001270294, 1.505056024], + [-58.318584443, 1.593605041], + [-58.507111, 1.264407], + [-59.15567, 1.348349], + [-59.744270325, 1.846951007], + [-59.723751068, 2.278232097], + [-59.908702999, 2.392433001], + [-59.981575, 2.929233], + [-59.798114776, 3.356441021], + [-59.844989777, 3.603478909], + [-59.515739441, 3.941425085], + [-59.725769043, 4.192818165], + [-59.671257019, 4.37655878], + [-60.159557342, 4.519643783], + [-59.976623535, 5.034758091], + [-60.121932984, 5.24393177], + [-60.73051803, 5.197120977], + [-60.587852477, 4.965773106], + [-60.991333008, 4.516063213], + [-61.537948608, 4.383833886], + [-62.134559632, 4.091252804], + [-62.355457306, 4.150284767], + [-62.73217392, 4.035823821], + [-62.984916687, 3.609591961], + [-63.204929351, 3.951251983], + [-63.512432098, 3.847371101], + [-63.850215911, 3.949868918], + [-63.964107513, 3.867922068], + [-64.17189026, 4.128757954], + [-64.560493469, 4.10153389], + [-64.810523986, 4.174582006], + [-64.472457886, 3.781533958], + [-64.185775758, 3.559587002], + [-64.235229493, 3.114319085], + [-63.982719421, 2.717369079], + [-64.056053162, 2.497651101], + [-63.780818939, 2.391247988], + [-63.406806946, 2.435909988], + [-63.397701264, 2.14685607], + [-64.061889648, 1.930709957], + [-64.065223694, 1.675981998], + [-64.397445679, 1.526810051], + [-64.763854981, 1.230741025], + [-65.155059815, 1.124938964], + [-65.44304657, 0.689849974], + [-65.585578919, 1.008911015], + [-65.964470003, 0.80945348], + [-66.318511964, 0.755015015], + [-66.856750488, 1.229928494], + [-67.074623107, 1.108570457], + [-67.092277527, 1.464751483], + [-67.351478578, 1.950751424], + [-67.312156678, 2.213680267], + [-67.750877381, 2.018488885], + [-67.878501891, 1.803259612], + [-68.188339233, 2.015600205], + [-68.186706543, 1.730201364], + [-69.390670776, 1.731145025], + [-69.848175049, 1.702632667], + [-69.846122742, 1.092908501], + [-69.322151185, 1.088041425], + [-69.20451355, 1.013406396], + [-69.107894897, 0.645990491], + [-69.481140137, 0.73527646], + [-69.806610108, 0.573091447], + [-70.040458679, 0.565155268], + [-70.040336608, -0.105598309], + [-69.922966003, -0.325426221], + [-69.602767944, -0.506716251], + [-69.612365724, -0.762640893], + [-69.422439574, -1.020315646], + [-69.450973511, -1.553037286], + [-69.923286438, -4.190330505], + [-69.949440002, -4.228428841], + [-70.290817261, -4.161428928], + [-70.802276612, -4.183669091], + [-70.93385315, -4.380801201], + [-71.78704834, -4.482439041], + [-72.415100098, -4.900139809], + [-72.859657287, -5.137629032], + [-73.006256104, -5.730760096], + [-73.245590209, -6.143589019], + [-73.101905823, -6.402639865], + [-73.226615905, -6.587059022], + [-73.711921691, -6.842709064], + [-73.795677186, -7.11358881], + [-73.692649841, -7.313790798], + [-73.989059448, -7.535899161], + [-73.701927185, -7.760611056], + [-73.528968811, -8.350530624], + [-73.162261962, -8.707448006], + [-72.940460206, -9.096088408], + [-73.209396363, -9.413648606], + [-72.716049195, -9.412429809], + [-72.281906129, -9.542189597], + [-72.180335999, -10.000248909], + [-71.375862122, -10.00070858], + [-70.998168944, -9.818079948], + [-70.611862182, -9.456370353], + [-70.627861022, -11.003930091], + [-70.347877502, -11.067590714], + [-69.934013366, -10.922180175], + [-69.572290111, -10.949385104], + [-68.925365344, -11.017932009], + [-68.71513751, -11.144829854], + [-68.238342286, -10.956472397], + [-68.002466731, -10.650083855], + [-67.708760469, -10.709274587], + [-67.322133893, -10.322699497], + [-67.169441414, -10.337140925], + [-66.623619763, -9.897011345], + [-65.438783188, -9.670922913], + [-65.287532739, -9.852728496], + [-65.291822361, -10.22368913], + [-65.427625114, -10.47545455], + [-65.252590533, -10.991827172], + [-65.358263495, -11.13131355], + [-65.212701117, -11.528896244], + [-65.18827838, -11.755368662], + [-64.975176948, -12.01872597], + [-64.514227294, -12.223264397], + [-64.420083675, -12.436552791], + [-63.956715292, -12.531071802], + [-63.784982992, -12.428946293], + [-63.241158696, -12.690587281], + [-62.760529937, -13.017384637], + [-62.15059327, -13.156011051], + [-61.790934682, -13.536953212], + [-61.011052255, -13.533012542], + [-60.45925192, -13.804129065], + [-60.480344189, -14.184560962], + [-60.271699193, -14.626809107], + [-60.244247436, -15.096813202], + [-60.55948639, -15.111411094], + [-60.235233306, -15.473531723], + [-60.161426021, -16.263271258], + [-58.430400848, -16.321298599], + [-58.459285344, -16.652812851], + [-58.395462036, -17.184459686], + [-57.99858167, -17.514904824], + [-57.785591125, -17.555549622], + [-57.558310155, -18.242056503], + [-57.784191132, -19.033510208], + [-58.133399963, -19.75784111], + [-57.876689911, -19.965881348], + [-58.162684861, -20.160596096], + [-57.818119049, -20.981237412], + [-57.962818145, -21.549051285], + [-57.98022461, -22.0855484], + [-56.830467224, -22.297666549], + [-56.402675628, -22.074739456], + [-56.207736968, -22.278108597], + [-55.860996247, -22.276325226], + [-55.626670837, -22.6186409], + [-55.682674409, -22.980436326], + [-55.53881836, -23.16299057], + [-55.534599305, -23.610954284], + [-55.44090271, -23.909488678], + [-55.230278015, -24.008590697], + [-54.675334931, -23.8135643], + [-54.283622743, -24.08297348], + [-54.262443543, -24.374458313], + [-54.595642089, -25.592119217], + [-54.287284852, -25.559808731], + [-53.875339508, -25.64199829], + [-53.83657837, -25.965755463], + [-53.591835021, -26.264888763], + [-53.749443054, -26.648902892], + [-53.671756744, -26.893024444], + [-53.830710999, -27.156361], + [-54.345546722, -27.468130111], + [-54.902950287, -27.646493911], + [-55.035362244, -27.85518837], + [-55.322998047, -27.928085327], + [-55.867664337, -28.353826524], + [-55.893493653, -28.481349945], + [-56.284252166, -28.791032791], + [-56.424785614, -29.072883606], + [-56.593063354, -29.122995376], + [-57.341964722, -30.001224517], + [-57.645093944, -30.193501761] + ] + ] + }, + "properties": { + "id": "de805084-4be9-458e-b991-9f591a06c2d5", + "code": "BRA", + "name": "Brazil", + "abbreviation": "C-BRA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [72.438750999, -7.233750001], + [72.455414, -7.265694], + [72.490974, -7.294027999], + [72.463196, -7.353473001], + [72.479308999, -7.383195], + [72.439857, -7.429306], + [72.420692001, -7.404028], + [72.433745999, -7.356805], + [72.429306, -7.320694001], + [72.419861, -7.306249001], + [72.353194999, -7.272916999], + [72.426803999, -7.330417], + [72.430138, -7.363748999], + [72.417915001, -7.409583], + [72.438194, -7.442638999], + [72.494025999, -7.381529], + [72.473473, -7.353751], + [72.495697, -7.301527], + [72.493195, -7.290416001], + [72.464302001, -7.271251], + [72.438750999, -7.233750001] + ] + ] + }, + "properties": { + "id": "2f879f48-ed3b-4870-96eb-96a5b5af9cd6", + "code": "IOT", + "name": "British Indian Ocean Territory", + "abbreviation": "C-IOT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-64.561806, 18.459028], + [-64.644302, 18.453472], + [-64.698471, 18.380138], + [-64.574303, 18.415972], + [-64.561806, 18.459028] + ] + ] + }, + "properties": { + "id": "0b6fff18-16a7-480a-9860-d73957bdb5a3", + "code": "VGB", + "name": "British Virgin Islands", + "abbreviation": "C-VGB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [114.128051758, 4.586944104], + [114.31780243, 4.275939943], + [114.679397584, 4.034860134], + [114.85179901, 4.252079965], + [114.794799804, 4.746360779], + [115.000923342, 4.884733303], + [114.835281371, 4.953610898], + [114.515274048, 4.704998971], + [114.128051758, 4.586944104] + ] + ], + [ + [ + [115.038032532, 4.793191911], + [115.110603333, 4.405399799], + [115.298309, 4.436701], + [115.155319, 4.911237], + [115.038032532, 4.793191911] + ] + ] + ] + }, + "properties": { + "id": "0378c7e6-0fa8-46e7-ad17-cc027be591d8", + "code": "BRN", + "name": "Brunei", + "abbreviation": "C-BRN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [22.933700561, 41.343158723], + [23.622879028, 41.375816346], + [24.098924638, 41.548641204], + [24.5240345, 41.566539765], + [24.604471207, 41.429771424], + [25.124015808, 41.339138032], + [25.230846406, 41.243373872], + [26.118917466, 41.349506378], + [26.17133522, 41.747638702], + [26.368787765, 41.714229584], + [26.619506835, 41.963897705], + [27.271862029, 42.106300353], + [27.563875198, 41.901424408], + [28.034662246, 41.98236084], + [27.651806, 42.450974], + [27.734306336, 42.709583282], + [27.900138855, 42.700138092], + [27.885694503, 43.007637024], + [28.08430481, 43.367916107], + [28.470693588, 43.380973816], + [28.579860686, 43.740417481], + [27.99568367, 43.843154908], + [27.945737839, 43.985065461], + [27.400905609, 44.012645721], + [27.272911071, 44.126605988], + [26.899950027, 44.131538392], + [26.113164901, 43.972503662], + [25.781484604, 43.710597992], + [25.391643524, 43.61933136], + [25.000005722, 43.727603913], + [24.499534607, 43.761753082], + [24.174860001, 43.682941436], + [23.416744231, 43.853130341], + [22.868034362, 43.838653565], + [22.937503814, 44.100097656], + [22.680921891, 44.212676857], + [22.404434205, 43.99427414], + [22.34377861, 43.795104981], + [22.51262474, 43.461688996], + [22.734609604, 43.370834351], + [22.955797196, 43.10042572], + [22.423133849, 42.786884307], + [22.499036788, 42.38879013], + [22.345737457, 42.304096222], + [22.839433669, 42.000568391], + [23.0056324, 41.70438385], + [22.933700561, 41.343158723] + ] + ] + }, + "properties": { + "id": "c4af993a-099f-4f7f-bce3-a1e8ceaf75d2", + "code": "BGR", + "name": "Bulgaria", + "abbreviation": "C-BGR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.405400038, 11.901610374], + [2.066420078, 12.350940704], + [2.271229983, 12.467830659], + [2.160629988, 12.687950134], + [1.576050043, 12.633138657], + [1.123366833, 12.999508858], + [0.997500003, 12.999650002], + [0.989960015, 13.576399803], + [0.635519028, 13.693430902], + [0.398788006, 14.027869224], + [0.403759987, 14.249659539], + [0.166250006, 14.533438682], + [0.229350001, 14.989670753], + [-0.231750994, 15.071439744], + [-0.701488019, 15.081521034], + [-1.087859989, 14.790120125], + [-1.67490995, 14.506890298], + [-1.975370049, 14.480879784], + [-2.10581994, 14.150279999], + [-2.476469993, 14.297860145], + [-2.837029934, 14.060629844], + [-2.871969938, 13.655329704], + [-3.256294012, 13.669851302], + [-3.256079912, 13.283860207], + [-3.532244921, 13.171990395], + [-3.973803044, 13.393791199], + [-4.345856189, 13.146181106], + [-4.230224133, 12.937218666], + [-4.294475078, 12.69923973], + [-4.65831089, 12.053871156], + [-5.156524181, 11.9477911], + [-5.35412693, 11.824850082], + [-5.203893185, 11.5291996], + [-5.272128105, 11.234490395], + [-5.490749835, 11.071919442], + [-5.422309875, 10.852600098], + [-5.518918037, 10.433259965], + [-5.407209873, 10.295559883], + [-5.128709793, 10.307089806], + [-4.972650052, 9.907730102], + [-4.707960129, 9.68799019], + [-4.267177104, 9.73729229], + [-3.708622933, 9.942521095], + [-3.21431303, 9.920919418], + [-2.763180018, 9.401107789], + [-2.687074716, 9.491439935], + [-2.744601263, 9.949250734], + [-2.940423865, 10.612863705], + [-2.833997491, 11.004090181], + [-0.684064326, 10.998641683], + [-0.134967872, 11.13706899], + [0.503931001, 11.012744001], + [0.912175531, 10.99653698], + [1.440096974, 11.473831178], + [1.625131009, 11.390871049], + [2.019248008, 11.427710534], + [2.305728912, 11.674420358], + [2.405400038, 11.901610374] + ] + ] + }, + "properties": { + "id": "48249957-4ea2-49af-a321-d9002aa7a392", + "code": "BFA", + "name": "Burkina Faso", + "abbreviation": "C-BFA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.391475678, -4.445250033], + [29.707078934, -4.462446212], + [30.043811798, -4.275174141], + [30.500318527, -3.517182112], + [30.829259872, -3.263623953], + [30.811143875, -3.045857906], + [30.408998488, -2.858831882], + [30.543420792, -2.413010359], + [30.408830643, -2.309834957], + [30.036838532, -2.353201627], + [29.890018464, -2.750910998], + [29.370906829, -2.839972734], + [29.326025, -2.65336], + [29.040174484, -2.743100167], + [29.256701, -3.087956], + [29.200918, -3.308666], + [29.253709792, -3.918102026], + [29.391475678, -4.445250033] + ] + ] + }, + "properties": { + "id": "cfd16738-c431-4fe3-a925-0901ca324cbe", + "code": "BDI", + "name": "Burundi", + "abbreviation": "C-BDI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-24.977638244, 17.06930542], + [-25.085971832, 17.19708252], + [-25.33875084, 17.092639924], + [-25.299861908, 16.906248092], + [-24.977638244, 17.06930542] + ] + ], + [ + [ + [-23.462360381, 14.972083091], + [-23.757917404, 15.33319378], + [-23.774026871, 15.074304581], + [-23.462360381, 14.972083091] + ] + ] + ] + }, + "properties": { + "id": "81491f8b-e584-4aff-ac2f-70bf7b2fa1ca", + "code": "CPV", + "name": "Cabo Verde", + "abbreviation": "C-CPV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [104.439158228, 10.423138713], + [104.869073751, 10.522200051], + [105.098302155, 10.721011909], + [105.080220543, 10.954634273], + [105.346457139, 10.868015445], + [105.779420432, 11.030489938], + [105.898415874, 10.844197791], + [106.206101064, 10.977754812], + [105.875629837, 11.287611961], + [106.024236022, 11.774410384], + [106.440304342, 11.6691752], + [106.411855086, 11.973559199], + [106.724104774, 11.975694743], + [107.003350754, 12.089350493], + [107.155564344, 12.27787959], + [107.543897177, 12.350877199], + [107.589547299, 12.559506696], + [107.495837281, 13.027784286], + [107.627678766, 13.36649583], + [107.442549785, 13.997592164], + [107.338652423, 14.127848981], + [107.556381204, 14.686234709], + [107.164894989, 14.415776632], + [106.838009322, 14.294179485], + [106.543037842, 14.593369493], + [106.408975343, 14.450810281], + [106.026944179, 14.345819227], + [106.187717334, 14.063011295], + [105.910776905, 13.930400213], + [105.556608508, 14.160638204], + [105.362014285, 14.104457227], + [105.206786775, 14.342509659], + [104.805848828, 14.43741878], + [104.478402602, 14.352013321], + [104.277360904, 14.408219692], + [103.881708657, 14.338021404], + [103.655404711, 14.439414871], + [103.141920572, 14.3263238], + [102.52626428, 13.564489859], + [102.366648594, 13.577938287], + [102.349405943, 13.277356414], + [102.485721763, 12.977163336], + [102.510191085, 12.670404413], + [102.786861723, 12.416207172], + [102.704804795, 12.179601672], + [102.910336698, 11.64827416], + [103.070408264, 11.283478137], + [103.098227916, 10.916735985], + [103.41039827, 10.957303166], + [103.501023622, 11.164731921], + [103.713107705, 10.851939149], + [103.489587031, 10.622755287], + [103.631934299, 10.487363308], + [103.866108822, 10.618308757], + [104.246736157, 10.570890599], + [104.439158228, 10.423138713] + ] + ] + }, + "properties": { + "id": "0593f89e-4fd0-4ae3-a5bd-8a95331a4bde", + "code": "KHM", + "name": "Cambodia", + "abbreviation": "C-KHM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [8.52579975, 4.734583855], + [8.503964424, 4.513381959], + [8.832584381, 4.545902728], + [8.977318763, 4.102503301], + [9.41250515, 3.88299799], + [9.523568153, 4.027849675], + [9.635525704, 3.55503726], + [9.878924369, 3.325167895], + [9.974259376, 3.090297937], + [9.821264267, 2.34792018], + [9.897463798, 2.202226878], + [10.190143585, 2.171736956], + [11.334410667, 2.172394752], + [11.376516343, 2.296901227], + [11.701069831, 2.315644502], + [13.087685584, 2.236653806], + [13.299013137, 2.170983554], + [14.597784042, 2.203109742], + [15.048355, 1.976952], + [15.248477937, 2.027805066], + [15.748046874, 1.919481636], + [16.149131774, 1.694233536], + [16.053611755, 2.008360148], + [16.189256826, 2.224806177], + [16.072393418, 2.464571238], + [16.032058715, 2.983955861], + [15.792780876, 3.108941556], + [15.248896949, 3.710672085], + [15.076349, 4.021727], + [15.094683648, 4.290076255], + [14.732311, 4.616427], + [14.692684173, 5.102640152], + [14.529488564, 5.273755075], + [14.630098343, 5.509177209], + [14.620351791, 5.889361859], + [14.418822288, 6.032466412], + [14.739759444, 6.250890255], + [14.961637496, 6.749874115], + [15.063464165, 6.784061909], + [15.245532037, 7.267167092], + [15.551923752, 7.570376873], + [15.58684349, 7.773245334], + [15.108338356, 8.656015397], + [14.492976188, 9.057681084], + [14.384911536, 9.267045975], + [13.982252121, 9.644258499], + [14.208049774, 10.006105424], + [14.802422523, 9.935675621], + [15.536723137, 10.098784447], + [15.150072098, 10.531280518], + [15.080502511, 10.786525727], + [15.058415414, 11.395255089], + [15.121359826, 11.779808999], + [14.823895454, 12.63351059], + [14.588504791, 12.744703293], + [14.45982933, 13.073822022], + [14.085529327, 13.077386857], + [14.224431039, 12.361770629], + [14.466317176, 12.359292985], + [14.676218987, 12.159849167], + [14.614504815, 11.512958527], + [14.194681167, 11.252654076], + [13.980623244, 11.318759919], + [13.708013535, 10.972044945], + [13.547357559, 10.621170043], + [13.436149598, 10.137202262], + [13.247768403, 10.035773277], + [13.207711219, 9.557841301], + [12.871006966, 9.391368866], + [12.898114204, 9.11692524], + [12.785830497, 8.743083], + [12.238751411, 8.339077949], + [12.221256256, 8.002602577], + [12.031183242, 7.726894855], + [12.03434372, 7.521106719], + [11.564294814, 6.88794899], + [11.423880577, 6.530172825], + [11.099142075, 6.521626472], + [10.841154098, 6.939635754], + [10.597702026, 7.077906609], + [10.528110504, 6.926647186], + [10.217097283, 6.888836861], + [10.153351784, 7.038451672], + [9.863946915, 6.776453495], + [9.706345557, 6.515554429], + [9.467670441, 6.456195831], + [9.265694619, 6.184167861], + [8.840985297, 5.819804192], + [8.920332908, 5.564700603], + [8.818734169, 5.185620785], + [8.52579975, 4.734583855] + ] + ] + }, + "properties": { + "id": "52b87202-ced8-4003-844b-7c1d5b5fed3c", + "code": "CMR", + "name": "Cameroon", + "abbreviation": "C-CMR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-122.757721, 49.002533], + [-121.955391, 49.000046], + [-95.15139, 48.999950001], + [-95.149650789, 49.383296893], + [-94.825417, 49.294743], + [-94.535140992, 48.702335358], + [-93.850509643, 48.631637573], + [-93.751770019, 48.519760133], + [-93.25643921, 48.642494202], + [-92.947242737, 48.621395111], + [-91.399116515, 48.057098388], + [-90.839935302, 48.245868684], + [-90.742241, 48.113663], + [-90.033508301, 48.09634781], + [-89.867622, 47.998009], + [-89.339050292, 47.969898224], + [-88.689010621, 48.241508484], + [-88.370910645, 48.304248809], + [-86.772880555, 47.681743622], + [-84.843399049, 46.887283326], + [-84.763771057, 46.634880066], + [-84.55606842, 46.459651948], + [-84.129287719, 46.531349183], + [-83.954797, 46.056241], + [-83.571136474, 46.10256958], + [-83.592117, 45.818684], + [-82.525369359, 45.340919612], + [-82.122902456, 43.588372864], + [-82.424347, 42.998291], + [-82.521339416, 42.610420228], + [-82.868286134, 42.327590943], + [-83.095352172, 42.284229278], + [-83.067810059, 41.862613679], + [-82.681221008, 41.67729187], + [-82.407691956, 41.67692566], + [-81.260551452, 42.20552063], + [-80.073326112, 42.392559052], + [-78.936920166, 42.831001282], + [-79.058082581, 43.252819061], + [-79.202788827, 43.450992751], + [-78.681213378, 43.633590698], + [-76.798332215, 43.631408691], + [-76.441131592, 44.094436646], + [-75.307723999, 44.840999604], + [-74.764564515, 45.005191803], + [-74.452079772, 45.159141542], + [-74.189056397, 45.27173233], + [-74.148918151, 45.303440094], + [-74.052528382, 45.306327819], + [-73.89025879, 45.348369599], + [-73.783218384, 45.436214448], + [-73.526412963, 45.461235048], + [-73.492516, 45.6931], + [-73.172744751, 46.101211549], + [-72.295951842, 46.430850983], + [-72.194709778, 46.55059433], + [-71.859985351, 46.678649902], + [-71.720741271, 46.654571534], + [-71.293144226, 46.747303009], + [-70.715835572, 47.108276367], + [-70.452774047, 47.426055908], + [-70.23222351, 47.487442017], + [-69.905426026, 47.769851685], + [-69.756287, 48.067272], + [-69.151115418, 48.562591553], + [-69.04673, 48.750099], + [-68.633698, 48.945], + [-68.578331, 49.060001], + [-68.190551759, 49.099445344], + [-68.126366, 49.270775], + [-67.384162902, 49.316112519], + [-67.241111756, 49.45639038], + [-67.173615, 49.776112], + [-66.933891, 49.997501], + [-66.534447, 50.151112], + [-65.271545411, 50.30344391], + [-64.875, 50.260276795], + [-64.419998169, 50.316352845], + [-63.802082, 50.302299], + [-63.400486, 50.200832], + [-63.163887, 50.286667], + [-62.347656, 50.278683], + [-61.821373, 50.190399], + [-61.668594, 50.097343], + [-61.045059, 50.226467], + [-60.612221, 50.201389], + [-59.998257, 50.246578], + [-59.816082, 50.43235], + [-58.950794, 50.823879], + [-58.827042, 51.06205], + [-58.47139, 51.302391], + [-58.307106, 51.260937], + [-57.256863, 51.498974], + [-56.974998, 51.420555], + [-55.697529, 52.094166], + [-55.905224, 52.332424], + [-55.660374, 52.443707], + [-56.058517, 52.589165], + [-55.776112, 53.121387], + [-55.797222, 53.334721], + [-56.6852, 53.725323], + [-56.98602295, 53.726684571], + [-57.278877, 53.470665], + [-57.399414, 53.648926], + [-57.119995, 53.746387], + [-57.213787, 53.954605], + [-57.497803, 54.199524], + [-58.169998, 54.237221], + [-58.39389, 54.028351], + [-58.854187, 53.94812], + [-59.591991, 53.528969], + [-59.865723, 53.497925], + [-60.071594, 53.339905], + [-60.095795, 53.746933], + [-59.58886, 53.819397], + [-58.61058, 54.039875], + [-58.067688, 54.386475], + [-57.704712, 54.368286], + [-57.379192, 54.508656], + [-57.457222, 54.658611], + [-57.721493, 54.642632], + [-58.120483, 54.88269], + [-58.560001, 54.757221], + [-58.841667, 54.814999], + [-59.002197, 55.147278], + [-59.811668, 55.312798], + [-60.461121, 55.154999], + [-60.330387, 55.77702], + [-60.93222, 55.861946], + [-61.589706, 56.221699], + [-61.65229, 56.320839], + [-62.081482, 56.41272], + [-61.694481, 56.718899], + [-61.480099, 57.164059], + [-61.875847, 57.167778], + [-61.806519, 57.376282], + [-62.185791, 57.47052], + [-61.901749, 57.623386], + [-62.321793, 58.020336], + [-62.528622, 58.108562], + [-62.645729, 58.410858], + [-63.137817, 58.479492], + [-62.845455, 58.672672], + [-63.154419, 59.02948], + [-63.448074, 59.100582], + [-63.397083, 59.282787], + [-63.727222, 59.344723], + [-63.94389, 59.688332], + [-64.173889, 59.688889], + [-64.125549, 59.897285], + [-64.377602, 60.235935], + [-64.802605, 60.322399], + [-65.118752, 60.0625], + [-65.227219, 59.834999], + [-65.539444, 59.714722], + [-65.519447, 59.270557], + [-65.722229, 59.282288], + [-65.741669, 58.973881], + [-66.08667, 58.814445], + [-66.378601, 58.853065], + [-66.810555, 58.448612], + [-66.956604, 58.498718], + [-67.578331, 58.225834], + [-67.904999, 58.506943], + [-68.281113, 58.532501], + [-68.394447, 58.817223], + [-68.632202, 58.910889], + [-69.386597, 58.873108], + [-69.805885, 58.585632], + [-70.027222, 58.824165], + [-69.680405, 58.809723], + [-69.440125, 58.900696], + [-69.343811, 59.09668], + [-69.430557, 59.364532], + [-69.625000001, 59.294166566], + [-69.741508, 59.512859], + [-69.51886, 59.616913], + [-69.714478, 59.965271], + [-69.583855, 60.224476], + [-69.697395, 60.688019], + [-69.36302185, 60.8203125], + [-69.500579833, 61.0640831], + [-69.90208435, 60.799999238], + [-70.152084, 61.089584], + [-70.589584, 61.014584], + [-71.215103, 61.15781], + [-71.558334, 61.160416], + [-71.9151, 61.691146999], + [-72.237503, 61.881248], + [-72.599998, 61.964584], + [-72.60833, 62.110416], + [-73.095833, 62.210415], + [-73.6651, 62.476563], + [-74.393753, 62.245834], + [-75.34375, 62.316666], + [-76.11042, 62.333332], + [-76.92292, 62.535416], + [-77.5, 62.577084], + [-78.0401, 62.401566], + [-78.182816, 62.149479], + [-77.958336, 61.683334], + [-77.787498, 61.6875], + [-77.760414, 61.231251], + [-77.84375, 61.047916], + [-78.216667175, 60.779167175], + [-77.664581, 60.789585], + [-77.7724, 60.38802], + [-77.510414, 60.231251], + [-77.568748, 60.039585], + [-77.292221, 59.80389], + [-77.762207, 59.703308], + [-77.760559, 59.386112], + [-78.127777, 59.214169], + [-78.358398, 58.910889], + [-78.579529, 58.898071], + [-78.370674, 58.612015], + [-78.056229, 58.375626], + [-77.60498, 58.23053], + [-77.092224, 57.940308], + [-76.843285, 57.663647], + [-76.55558, 57.080208], + [-76.525024, 56.466125], + [-75.902779, 56.121387], + [-76.658333, 56.165001], + [-77.201218, 55.611156], + [-77.767204284, 55.284954072], + [-78.316757, 55.042301], + [-79.042221, 54.823353], + [-79.552223, 54.724724], + [-79.482178, 54.309746], + [-79.059998, 54.102779], + [-79.071701, 53.683163], + [-78.941109, 53.387222], + [-78.912780762, 52.915279389], + [-78.707222, 52.781666], + [-78.697777, 52.525276], + [-78.503334, 52.467777], + [-78.544998, 52.15889], + [-78.855743, 51.801991], + [-79.041687, 51.760925], + [-78.773826598, 51.477527619], + [-79.53772, 51.541729], + [-79.800697, 51.15794], + [-80.4328, 51.361084], + [-80.567223, 51.704445], + [-80.989456, 52.014141], + [-81.418343, 52.145012], + [-81.53611, 52.44611], + [-82.23893, 52.926132], + [-82.102203, 53.267475], + [-82.196106, 53.523682], + [-82.114441, 53.775276], + [-82.421692, 54.34552], + [-82.193336, 54.797501], + [-82.272209, 55.048893], + [-82.974976, 55.22168], + [-83.439445, 55.209721], + [-83.883911, 55.293091], + [-84.793892, 55.235001], + [-85.33831, 55.377262], + [-85.638336, 55.553333], + [-86.920555, 55.920555], + [-87.201668, 55.935555], + [-87.616669, 56.094723], + [-87.983887, 56.474998], + [-88.634445, 56.685276], + [-88.842781, 56.855278], + [-89.970558, 57.009445], + [-90.394447, 57.17889], + [-91.130493, 57.251404], + [-91.876663, 57.072777], + [-92.457214, 57.043274], + [-92.712852, 56.925697], + [-92.425003, 57.357777], + [-92.717224, 57.783325], + [-92.847221, 58.13139], + [-93.108887, 58.476387], + [-93.166687, 58.722473], + [-93.756668, 58.795834], + [-94.261665, 58.791668], + [-94.406128, 58.705322], + [-94.776108, 59.020557], + [-94.718887, 59.384998], + [-94.844711, 59.971519], + [-94.552605, 60.52969], + [-93.882812, 61.534893], + [-93.552605, 61.65469], + [-93.524483, 61.885941], + [-93.324997, 61.877083], + [-93.208336, 62.174999], + [-92.599998, 62.272915], + [-92.708336, 62.477085], + [-91.875, 62.572918], + [-92.518234, 62.802605], + [-92.11042, 62.862499], + [-91.410416, 62.789585], + [-91.032814, 62.934898], + [-90.70208, 62.96875], + [-90.762497, 63.349998], + [-90.987503, 63.46875], + [-91.370316, 63.483856], + [-91.78125, 63.722916], + [-90.814583, 63.560417], + [-90.224998, 63.622917], + [-89.810417, 63.916668], + [-89.824478, 64.05677], + [-88.75, 63.981251], + [-88.041664, 64.185417], + [-87.800003, 64.508331], + [-87.567184, 64.558853], + [-86.921349, 65.139061], + [-87.037498, 65.23542], + [-87.554169, 65.291664], + [-88.018234, 65.264061], + [-89.033333, 65.322914], + [-89.435417, 65.599998], + [-90.090103, 65.891151], + [-89.806252, 65.98333], + [-88.554687, 65.589066], + [-87.887497, 65.324997], + [-87.324997, 65.32708], + [-86.587502, 65.662498], + [-86.409897, 65.881767], + [-85.988022, 66.023437], + [-85.879684, 66.186981], + [-86.634895, 66.323433], + [-86.565102, 66.55365], + [-85.789581, 66.497917], + [-85.447395, 66.591148], + [-85.23333, 66.26667], + [-84.342186, 66.167183], + [-84.480728, 66.405731], + [-83.806252, 66.145836], + [-83.887497, 66.45417], + [-84.368752, 66.706253], + [-83.979164, 66.697914], + [-83.39167, 66.34375], + [-82.986984, 66.547401], + [-82.57708, 66.564583], + [-81.808334, 66.995834], + [-81.491669, 66.989586], + [-81.20417, 67.470833], + [-82.093231, 67.917183], + [-82.039581, 68.10833], + [-82.3349, 68.158852], + [-82.222916, 68.356247], + [-81.235939, 68.640099], + [-81.613022, 68.889061], + [-82.034897, 68.801567], + [-82.170311, 68.567184], + [-82.674484, 68.607811], + [-82.63958, 68.712502], + [-82.224998, 68.729164], + [-81.870834, 68.918747], + [-81.287498, 69.11042], + [-81.699997, 69.268753], + [-82.318748, 69.368752], + [-82.543747, 69.70208], + [-83.612503, 69.691666], + [-84.539581, 69.862503], + [-85.272919, 69.816666], + [-85.488022, 69.672401], + [-85.4375, 69.260414], + [-85.012497, 69.066666], + [-85.03125, 68.92083], + [-84.745834, 68.741669], + [-85.602081, 68.741669], + [-85.642189, 68.547401], + [-86.04583, 67.997917], + [-86.501564, 67.699478], + [-86.514061, 67.342186], + [-86.743752, 67.42292], + [-87.070831, 67.322914], + [-87.257812, 67.113022], + [-87.406769, 67.316147], + [-88.110939, 67.674484], + [-88.310417, 67.89167], + [-88.275002, 68.158333], + [-87.908333, 68.21875], + [-87.769272, 68.336983], + [-88.214584, 68.92292], + [-89.26667, 69.258331], + [-89.759895, 68.96302], + [-89.667183, 68.813019], + [-89.941147, 68.622398], + [-89.879166, 68.460419], + [-90.268753, 68.252083], + [-90.539063, 68.421349], + [-90.440102, 68.889061], + [-90.819267, 69.246353], + [-90.643753, 69.541664], + [-91.118752, 69.512497], + [-91.460419, 69.662498], + [-91.783852, 69.484901], + [-92.324997, 69.658333], + [-92.51667, 69.8125], + [-91.537498, 70.147919], + [-91.683853, 70.355728], + [-91.995316, 70.335938], + [-92.17083, 70.572914], + [-92.943748, 70.82917], + [-92.855728, 71.00885], + [-93.037498, 71.370834], + [-93.70417, 71.61042], + [-93.849998, 71.745834], + [-94.563019, 71.853645], + [-94.527084, 71.997917], + [-95.160416, 71.956253], + [-95.240105, 71.832817], + [-95.689583, 71.635414], + [-95.456253, 71.48333], + [-95.525002, 71.287498], + [-95.893753, 71.408333], + [-96.166145, 71.395317], + [-96.466148, 71.111984], + [-96.522919, 70.770836], + [-96.256248, 70.643753], + [-96.32708, 70.404167], + [-96.55365, 70.280731], + [-96.487503, 70.11042], + [-96.17292, 69.856247], + [-95.635414, 69.775002], + [-94.933334, 69.585419], + [-94.64167, 69.683334], + [-94.339584, 69.481247], + [-93.63958, 69.36042], + [-94.262497, 69.320831], + [-94.211983, 69.13073], + [-94.570831, 68.977081], + [-94.581253, 68.758331], + [-94.072914, 68.760414], + [-94.064064, 68.890099], + [-93.625, 68.966667], + [-93.71875, 68.618752], + [-93.472916, 68.574997], + [-94.186981, 68.378647], + [-94.2099, 68.259895], + [-94.78125, 68.01458], + [-95.400002, 68.068748], + [-95.684898, 67.745316], + [-95.298439, 67.549484], + [-95.21302, 67.233849], + [-95.330734, 66.971352], + [-95.456772, 67.220314], + [-95.733849, 67.3526], + [-96.094269, 67.221352], + [-96.189064, 67.807816], + [-95.910416, 68.26667], + [-96.502602, 68.175522], + [-96.902603, 68.266151], + [-97.32917, 68.51667], + [-97.810417, 68.554169], + [-98.17083, 68.306252], + [-98.479164, 68.427086], + [-98.643234, 68.335937], + [-98.043747, 67.82917], + [-98.035416, 67.929169], + [-97.583336, 67.979164], + [-97.085938, 67.810936], + [-97.539581, 67.599998], + [-98.091667, 67.775002], + [-98.60833, 68.10833], + [-98.635933, 67.805733], + [-98.907814, 67.716148], + [-99.758331, 67.833336], + [-100.6875, 67.849998], + [-100.925522, 67.754684], + [-101.458336, 67.691666], + [-102.841148, 67.839066], + [-103.339584, 68.004166], + [-103.308853, 68.114067], + [-104.268753, 67.9375], + [-104.684898, 68.235939], + [-105.491669, 68.427086], + [-105.308853, 68.515099], + [-105.433853, 68.731766], + [-105.78125, 68.883331], + [-106.206253, 68.941666], + [-106.650002, 68.816666], + [-107.677086, 68.654167], + [-108.357811, 68.601563], + [-108.727081, 68.23542], + [-108.410416, 68.308334], + [-108.211983, 68.16198], + [-107.770836, 68.183334], + [-107.79792, 68.347916], + [-107.027084, 68.331253], + [-106.252083, 68.602081], + [-105.887497, 68.64167], + [-105.743752, 68.410416], + [-106.42292, 68.339584], + [-106.708855, 68.143234], + [-107.364586, 68.043747], + [-107.833336, 68.10833], + [-108.028648, 67.746353], + [-107.567184, 67.503647], + [-107.51667, 67.20417], + [-107.268753, 67.116669], + [-107.747398, 67.006767], + [-107.520836, 66.552086], + [-108.302086, 66.989586], + [-107.860939, 67.138016], + [-108.012497, 67.289581], + [-108.6875, 67.620834], + [-108.769272, 67.358849], + [-109.029167, 67.724998], + [-109.7099, 67.721352], + [-110.029167, 68.008331], + [-110.970833, 67.770836], + [-111.793747, 67.760414], + [-112.4375, 67.679169], + [-113.852081, 67.695831], + [-114.720833, 67.820831], + [-114.991669, 67.791664], + [-115.46875, 67.931252], + [-115.191666, 67.979164], + [-115.206253, 68.189583], + [-114.870834, 68.150002], + [-114.443748, 68.26458], + [-114.116669, 68.23542], + [-113.947395, 68.377602], + [-114.175522, 68.564064], + [-114.973434, 68.867188], + [-115.770836, 69], + [-116.193748, 68.991669], + [-115.974998, 68.806252], + [-117.152084, 68.897919], + [-117.977081, 69.01458], + [-118.590103, 69.205734], + [-119.195831, 69.29792], + [-119.949997, 69.34375], + [-120.356247, 69.425003], + [-120.9375, 69.664581], + [-121.408333, 69.775002], + [-122.34375, 69.824997], + [-123.134895, 69.765099], + [-123.125519, 69.546349], + [-123.710419, 69.333336], + [-124.464584, 69.36042], + [-124.275002, 69.552086], + [-124.507812, 69.715103], + [-124.414581, 70.143753], + [-124.835937, 70.003647], + [-124.992187, 69.820313], + [-125.245834, 69.756248], + [-125.318748, 69.375], + [-125.510414, 69.318748], + [-125.910416, 69.385414], + [-126.699478, 69.735939], + [-127.060417, 70.154167], + [-127.319267, 70.322395], + [-128.00209, 70.5625], + [-128.211975, 70.389061], + [-127.65625, 70.195831], + [-128.349487, 70.120316], + [-128.274994, 69.96875], + [-128.632813, 69.857811], + [-129.016144, 69.625519], + [-129.179169, 69.833336], + [-129.59375, 69.810417], + [-130.335419, 69.683334], + [-130.623428, 69.419266], + [-130.90834, 69.345833], + [-131.235413, 69.522919], + [-132.1026, 69.200516], + [-132.116669, 69.474998], + [-131.048431, 69.618233], + [-130.956253, 69.541664], + [-130.5849, 69.749481], + [-129.463013, 70.027603], + [-129.852081, 70.143753], + [-130.21875, 70.039581], + [-130.612503, 70.116669], + [-130.933334, 70.060417], + [-131.094269, 69.881767], + [-131.329163, 69.939583], + [-131.983337, 69.70417], + [-132.487503, 69.60833], + [-132.954163, 69.625], + [-132.948441, 69.433853], + [-134.083328, 69.306252], + [-133.808334, 69.46875], + [-134.444275, 69.594269], + [-134.828644, 69.456772], + [-135.058334, 69.466667], + [-135.27916, 69.210419], + [-135.537506, 69.310417], + [-135.581253, 69.120834], + [-135.910934, 69.239067], + [-135.929169, 69.074997], + [-135.482819, 68.94323], + [-135.21875, 68.533333], + [-135.797913, 68.70208], + [-135.993744, 68.82917], + [-136.560928, 68.829689], + [-137.204163, 68.927086], + [-138.5, 69.25], + [-139.152084, 69.502083], + [-139.504166, 69.497917], + [-139.920837, 69.61042], + [-140.391663, 69.587502], + [-141.003036, 69.646156], + [-141.001572, 60.305069], + [-140.52034, 60.219059], + [-140.447968, 60.307964], + [-139.974075, 60.184513], + [-139.680069, 60.33572], + [-139.052078, 60.353725], + [-139.177017, 60.082863], + [-138.70578003, 59.906238555], + [-138.609207152, 59.760002137], + [-137.607437133, 59.243480683], + [-137.451507568, 58.908535003], + [-136.457763672, 59.281421662], + [-136.353545998, 59.599884], + [-135.47958374, 59.798099518], + [-135.028885, 59.563640668], + [-134.959777833, 59.281040191], + [-134.482727049, 59.130969999], + [-134.257995605, 58.860870362], + [-133.841049195, 58.729854583], + [-133.37997836, 58.431814233], + [-133.171951, 58.153831], + [-132.247803041, 57.21112096], + [-132.044800001, 57.045104999], + [-132.123107881, 56.873901359], + [-131.873108115, 56.80627403], + [-131.835388087, 56.599121099], + [-131.581298827, 56.612304688], + [-131.086975, 56.406128], + [-130.781799, 56.367126], + [-130.425476, 56.141724], + [-130.105408, 56.122681], + [-130.01001, 55.909119], + [-130.138763, 55.752674], + [-129.943909, 55.288086], + [-130.167068, 55.080257], + [-130.228882, 54.716389], + [-130.370239, 54.680008], + [-130.485718, 54.363098], + [-130.128616, 54.148239], + [-130.073181, 53.891113], + [-129.282654, 53.362682], + [-129.246109, 53.616943], + [-129.05249, 53.76947], + [-128.808228, 53.770508], + [-128.975311, 53.494747], + [-128.881592, 53.300484], + [-128.60556, 53.161667], + [-128.430557, 52.814167], + [-128.242294, 52.798866], + [-128.126129, 52.891396], + [-128.136108, 52.712524], + [-128.296112, 52.255833], + [-128.040741, 52.331188], + [-127.818138, 52.249527], + [-127.485283, 52.340389], + [-127.237778, 52.51889], + [-127.182289, 52.29361], + [-127.606125, 52.121864], + [-127.887787, 51.885674], + [-127.796112, 51.52861], + [-127.518028, 51.520958], + [-127.772781, 51.320278], + [-127.670914, 51.092045], + [-127.073334, 50.839169], + [-126.862946, 50.957863], + [-126.476311, 50.813236], + [-126.167557, 50.846016], + [-126.269287, 50.507469], + [-125.703461, 50.422043], + [-125.33667, 50.470554], + [-125.053337, 50.315277], + [-124.590881, 50.247746], + [-124.752075, 49.963352], + [-124.396591, 49.765881], + [-124.034325, 49.741806], + [-123.965279, 49.509445], + [-123.560325623, 49.396697998], + [-123.261108399, 49.526264192], + [-123.2005, 49.134888], + [-122.877533, 49.22456], + [-122.126328, 49.178478], + [-122.332519531, 49.106079102], + [-122.883506775, 49.212554932], + [-123.091667, 49.003334], + [-123.035355, 49.00359], + [-122.757721, 49.002533] + ] + ], + [ + [ + [-84.818748, 73.085419], + [-85.412498, 73.13958], + [-85.699478, 72.74115], + [-85.53125, 72.470833], + [-85.008331, 72.404167], + [-84.977081, 72.252083], + [-85.460419, 72.26667], + [-85.537498, 72.060417], + [-85.9375, 71.972916], + [-85.535416, 71.88958], + [-85.305733, 71.68177], + [-84.668747, 71.585419], + [-84.846352, 71.169266], + [-85.737503, 71.145836], + [-86.508331, 70.979164], + [-87.214584, 71.002083], + [-87.569267, 70.933853], + [-88.26667, 70.9375], + [-88.508331, 71.035416], + [-89.222916, 71.01667], + [-89.35833, 70.822914], + [-88.917183, 70.645317], + [-88.729164, 70.48542], + [-87.73542, 70.335419], + [-86.991669, 70.289581], + [-86.591667, 70.362503], + [-86.529167, 70.229164], + [-85.758331, 70], + [-84.939583, 70.066666], + [-84.64167, 70.006248], + [-83.637497, 69.958336], + [-83.070831, 70.01667], + [-82.675003, 69.814583], + [-82.131767, 69.794266], + [-81.722916, 69.949997], + [-81.456253, 69.931252], + [-80.921349, 69.726563], + [-80.750519, 69.764061], + [-81.269272, 70.033852], + [-81.065102, 70.094269], + [-80.302086, 69.987503], + [-79.935417, 70.022919], + [-79.75573, 69.877602], + [-78.831772, 69.895317], + [-78.746353, 70.172401], + [-79.01667, 70.345833], + [-79.236984, 70.317184], + [-79.582817, 70.432816], + [-79.058334, 70.472916], + [-78.70208, 70.40625], + [-78.393234, 70.21302], + [-77.783852, 70.257813], + [-77.643753, 70.164581], + [-77.63073, 69.748436], + [-77.481247, 69.868752], + [-76.933334, 69.808334], + [-77.191147, 69.646355], + [-76.653648, 69.55677], + [-75.583855, 69.234901], + [-75.581253, 69.03125], + [-75.92292, 68.85833], + [-76.010414, 68.789581], + [-76.243752, 68.881248], + [-76.405731, 68.86927], + [-76.597916, 68.677086], + [-76.256248, 68.710419], + [-76.160416, 68.787498], + [-76.012497, 68.777084], + [-75.949997, 68.820831], + [-75.581253, 68.885414], + [-75.460419, 69.025002], + [-75.125, 68.89167], + [-75.050003, 69.01667], + [-74.625519, 69.021355], + [-74.814636, 68.781265], + [-74.185417, 68.51667], + [-73.89167, 68.560417], + [-73.802086, 68.320831], + [-73.000519, 68.239067], + [-72.84375, 67.845833], + [-72.565102, 67.740105], + [-72.368233, 67.319267], + [-72.35833, 67.102081], + [-72.822914, 67.037498], + [-72.987503, 66.741669], + [-72.585419, 66.6875], + [-71.793747, 66.683334], + [-71.383331, 66.625], + [-70.989586, 67.01667], + [-70.550003, 66.756248], + [-69.976562, 66.704689], + [-69.410416, 66.537498], + [-69.957817, 66.371353], + [-69.3526, 66.3974], + [-69.510933, 66.194267], + [-69.854164, 66.26667], + [-70.322914, 66.158333], + [-70.439064, 66.247398], + [-70.833336, 66.162498], + [-71.177086, 65.939583], + [-71.293747, 66.03125], + [-71.09375, 66.322914], + [-71.308334, 66.522919], + [-72.152084, 66.677086], + [-73.203651, 66.701561], + [-73.96302, 66.348434], + [-74.468231, 66.168228], + [-74.018753, 65.833336], + [-73.702599, 65.745316], + [-73.548439, 65.481766], + [-74.14167, 65.54583], + [-74.632813, 65.323433], + [-75.108849, 65.393234], + [-75.115105, 65.27552], + [-75.904167, 65.256248], + [-76.806252, 65.431252], + [-77.337502, 65.474998], + [-77.641151, 65.140106], + [-78.139061, 64.961983], + [-78.177086, 64.570831], + [-77.868233, 64.356766], + [-77.497917, 64.354164], + [-76.650002, 64.189583], + [-75.73542, 64.470833], + [-75.800003, 64.616669], + [-75.28698, 64.467186], + [-74.49427, 64.372398], + [-74.368752, 64.568748], + [-74.041664, 64.71875], + [-73.9599, 64.473434], + [-73.662498, 64.5], + [-73.504684, 64.3526], + [-72.885414, 64.179169], + [-72.95417, 64.0625], + [-72.599998, 63.868752], + [-71.543747, 63.568748], + [-71.622917, 63.408333], + [-71.925003, 63.441666], + [-71.622917, 63.139584], + [-71.111984, 62.977604], + [-70.935417, 63.002083], + [-70.160416, 62.743752], + [-69.60833, 62.739582], + [-69.418747, 62.545834], + [-68.589584, 62.256248], + [-68.043747, 62.220833], + [-67.18177, 62.100521], + [-66.279167, 61.864582], + [-65.95208, 61.875], + [-66.20208, 62.347916], + [-66.50573, 62.430729], + [-66.74427, 62.668228], + [-67.535416, 63.037498], + [-68.1651, 63.226563], + [-68.749481, 63.550522], + [-68.929169, 63.764584], + [-68.456253052, 63.731250762], + [-67.92083, 63.529167], + [-67.675003, 63.658333], + [-67.497398, 63.485939], + [-66.643753, 63.033333], + [-66.058334, 62.941666], + [-65.841148, 63.034897], + [-65.541145, 62.802605], + [-65.285416, 62.839584], + [-65.197914, 62.566666], + [-64.662498, 62.349998], + [-64.358849, 62.516144], + [-64.831253, 62.537498], + [-65.179169, 62.904167], + [-64.806252, 62.831249], + [-64.61042, 62.897915], + [-64.887497, 63.177082], + [-64.9375, 63.368752], + [-64.48542, 63.258335], + [-64.458855, 63.429688], + [-64.074997, 63.279167], + [-64.433334, 63.775002], + [-64.699997, 64.018753], + [-65.060417, 63.991665], + [-65.191666, 64.293747], + [-65.054687, 64.472397], + [-65.533852, 64.617187], + [-65.565102, 64.761978], + [-66.80677, 65.05677], + [-67.072914, 65.239586], + [-67.056252, 65.464584], + [-67.265099, 65.643234], + [-67.745834, 65.635414], + [-68.166145, 65.855728], + [-68.166664, 66.035416], + [-67.802086, 65.877083], + [-67.14167, 65.92083], + [-67.15625, 66.039581], + [-67.716148, 66.229683], + [-67.867188, 66.451561], + [-67.410416, 66.293747], + [-67.10833, 66.26667], + [-67.150002, 66.48542], + [-66.816666, 66.456253], + [-66.231247, 66.23542], + [-65.949478, 65.971352], + [-64.912498, 66.002083], + [-65.347916, 65.912498], + [-65.4599, 65.677605], + [-65.14167, 65.535416], + [-65.068748, 65.370834], + [-64.518753, 65.106247], + [-64.439064, 65.252602], + [-64.14167, 65.04792], + [-63.585415, 64.88958], + [-63.319271, 65.214066], + [-63.495834, 65.474998], + [-63.391144, 65.751564], + [-62.791668, 65.520836], + [-62.600521, 65.768234], + [-62.297916, 65.793747], + [-62.508335, 65.989586], + [-61.969269, 66.004684], + [-62.315102, 66.297401], + [-62.197918, 66.404167], + [-61.885418, 66.277084], + [-61.525524, 66.333855], + [-61.605728, 66.542183], + [-61.285934, 66.649483], + [-61.645832, 66.84375], + [-61.949478, 66.88073], + [-62.041668, 67.012497], + [-62.422394, 66.860939], + [-62.987499, 67.0625], + [-63.147915, 67.331253], + [-63.450001, 67.227081], + [-64.560936, 67.152603], + [-64.279167, 67.302086], + [-64.022919, 67.3125], + [-64.106247, 67.614586], + [-64.552086, 67.82917], + [-65.029167, 67.785416], + [-65.068748, 68.04583], + [-65.402084, 67.92083], + [-65.650002, 67.997917], + [-65.833336, 67.831253], + [-66.259895, 67.964066], + [-66.781769, 68.245316], + [-67.239586, 68.362503], + [-67.136978, 68.482811], + [-67.716667, 68.558334], + [-68.127083, 68.533333], + [-68.224998, 68.714584], + [-69.34375, 68.816666], + [-69.333336, 68.883331], + [-68.635933, 68.788017], + [-68.375, 68.92083], + [-67.762497, 69.010414], + [-68.95417, 69.356247], + [-68.17292, 69.316666], + [-67.65625, 69.175003], + [-67.131248, 69.195831], + [-66.76667, 69.143753], + [-66.688019, 69.282814], + [-67.289062, 69.47448], + [-67.977081, 69.458336], + [-68.820831, 69.658333], + [-68.3125, 69.631248], + [-68.099998, 69.76667], + [-67.150002, 69.745834], + [-67.234901, 69.970314], + [-67.462502, 70.147919], + [-68.050522, 70.324478], + [-68.23542, 70.102081], + [-68.712502, 69.9375], + [-68.677086, 70.210419], + [-69.089584, 70.17292], + [-69.387497, 70.260414], + [-68.509895, 70.377602], + [-68.439583, 70.602081], + [-69.445831, 70.793747], + [-70.096352, 70.606766], + [-69.897919, 70.877083], + [-70.258331, 70.745834], + [-70.787498, 70.654167], + [-70.554169, 70.958336], + [-70.79583, 71.120834], + [-71.203651, 71.009895], + [-71.314583, 70.881248], + [-72.249481, 70.730728], + [-72.339584, 70.877083], + [-72.089584, 71.083336], + [-71.48542, 71.0625], + [-71.152603, 71.270317], + [-71.474998, 71.470833], + [-72.539581, 71.660416], + [-72.935936, 71.308853], + [-73.345833, 71.345833], + [-73.664581, 71.59375], + [-74.11042, 71.21875], + [-73.977081, 71.533333], + [-73.712502, 71.775002], + [-74.283333, 71.724998], + [-74.737503, 71.527084], + [-74.502602, 71.826561], + [-74.1651, 71.865105], + [-74.220833, 72.064583], + [-75.066666, 72.112503], + [-74.96875, 72.277084], + [-75.252083, 72.510414], + [-75.79583, 72.585419], + [-76.477081, 72.612503], + [-76.727081, 72.71875], + [-77.287498, 72.775002], + [-78.2099, 72.6474], + [-78.543747, 72.435417], + [-77.875519, 72.295311], + [-78.76458, 72.32917], + [-78.905731, 72.00885], + [-79.072914, 72.324997], + [-79.752083, 72.497917], + [-80.176567, 72.332817], + [-80.319267, 72.069267], + [-80.747917, 71.98333], + [-81.004166, 72.097916], + [-80.508331, 72.375], + [-80.756248, 72.525002], + [-80.2276, 72.731766], + [-80.652603, 72.995316], + [-80.57135, 73.148437], + [-81.168228, 73.254684], + [-81.294266, 73.59948], + [-81.558334, 73.722916], + [-82.849998, 73.73542], + [-83.035416, 73.643753], + [-83.654167, 73.589584], + [-85.120834, 73.314583], + [-85.174484, 73.229683], + [-84.227081, 73.050003], + [-84.818748, 73.085419] + ] + ], + [ + [ + [-82.462502, 76.397919], + [-82.095833, 76.51458], + [-81.70417, 76.466667], + [-81.308853, 76.506767], + [-80.79583, 76.427086], + [-81.05365, 76.131767], + [-79.625, 76.310417], + [-79.339584, 76.304169], + [-78.625, 76.57917], + [-78.45208, 76.449997], + [-77.792183, 76.671349], + [-77.820831, 76.89167], + [-78.199997, 77.033333], + [-78.631248, 76.933334], + [-79.404167, 76.931252], + [-79.320831, 77.216667], + [-79.927086, 77.210419], + [-80.29583, 77.070831], + [-80.3125, 77.195831], + [-81.122917, 77.275002], + [-81.79792, 77.15625], + [-82.193748, 77.29583], + [-81.379166, 77.304169], + [-81.789581, 77.435417], + [-81.668747, 77.537498], + [-80.754166, 77.32917], + [-80.054169, 77.272919], + [-79.17292, 77.287498], + [-78.291664, 77.447914], + [-77.712502, 77.635414], + [-77.302086, 77.625], + [-76.720833, 77.714584], + [-76.720833, 77.935417], + [-76.223434, 78.024483], + [-75.902084, 77.95417], + [-75.595833, 78.127083], + [-76.743752, 78.17083], + [-76.137497, 78.241669], + [-75.654167, 78.197914], + [-75.10833, 78.368752], + [-75.824997, 78.497917], + [-75.012497, 78.533333], + [-74.800003, 78.631248], + [-74.783333, 78.82708], + [-75.285416, 78.88958], + [-76.291664, 78.866669], + [-75.991669, 78.995834], + [-76.57708, 79.018753], + [-77.625, 78.96875], + [-77.810417, 79.037498], + [-76.893753, 79.087502], + [-76.67083, 79.150002], + [-78.306252, 79.175003], + [-77.839584, 79.206253], + [-76.087502, 79.199997], + [-75.558334, 79.0625], + [-74.556252, 79.012497], + [-74.566666, 79.231247], + [-76.004166, 79.231247], + [-76.120834, 79.275002], + [-77.272919, 79.258331], + [-77.122917, 79.443748], + [-76.941666, 79.356247], + [-76.085419, 79.32917], + [-75.970833, 79.416664], + [-75.29792, 79.381248], + [-74.043747, 79.433334], + [-73.947914, 79.54792], + [-73.175003, 79.51667], + [-73.34375, 79.724998], + [-73.560417, 79.772919], + [-74.729164, 79.775002], + [-74.778648, 79.843231], + [-73.956253, 79.875], + [-73.849998, 79.816666], + [-73.14167, 79.810417], + [-72.935417, 79.70208], + [-72.287498, 79.654167], + [-71.112503, 79.779167], + [-70.458336, 80.091667], + [-70.804169, 80.129166], + [-71.518753, 80.0625], + [-72.14167, 80.058334], + [-70.731247, 80.195831], + [-70.181252, 80.181252], + [-69.762497, 80.34375], + [-69.36042, 80.393753], + [-69.206772, 80.503647], + [-68.653648, 80.6651], + [-67.818748, 80.841667], + [-66.772919, 81.002083], + [-65.981247, 81.229164], + [-65.837502, 81.214584], + [-64.708336, 81.364586], + [-64.45417, 81.543747], + [-65.089584, 81.529167], + [-67.377083, 81.36042], + [-68.966667, 81.21875], + [-69.48542, 81.208336], + [-66.606247, 81.512497], + [-67.052086, 81.5625], + [-68.535416, 81.508331], + [-67.787498, 81.587502], + [-65.849998, 81.625], + [-65.654167, 81.693748], + [-64.849998, 81.75], + [-64.412498, 81.708336], + [-64.099998, 81.78125], + [-63.066666, 81.89167], + [-62.164585, 82.029167], + [-62.045834, 82.129166], + [-61.21875, 82.212502], + [-61.114582, 82.366669], + [-61.510418, 82.472916], + [-62.243752, 82.529167], + [-62.945835, 82.510414], + [-63.716667, 82.712502], + [-63.583332, 82.833336], + [-64.293747, 82.785416], + [-64.660934, 82.895317], + [-65.21875, 82.885414], + [-65.381248, 82.783333], + [-65.67292, 82.849998], + [-67.460419, 82.647919], + [-68.324997, 82.6875], + [-67.002083, 82.789581], + [-66.39167, 82.88958], + [-66.960419, 82.95417], + [-68.17083, 82.945831], + [-68.989586, 83.022919], + [-69.602081, 82.987503], + [-69.908333, 83.11042], + [-70.931252, 83.091667], + [-71.404167, 83.01458], + [-71.629166, 83.091667], + [-72.322914, 83.09375], + [-73.572914, 82.943748], + [-73.152084, 82.802086], + [-72.35833, 82.714584], + [-72.335419, 82.535416], + [-72.675003, 82.5], + [-72.625, 82.699997], + [-73.772919, 82.849998], + [-74.418747, 83.027084], + [-75.243752, 83.018753], + [-76.081253, 83.054169], + [-77.375, 83.006248], + [-76.660416, 82.879166], + [-76.206253, 82.689583], + [-76.552086, 82.664581], + [-77.091667, 82.85833], + [-77.76458, 82.925003], + [-77.98542, 82.847916], + [-78.502083, 82.835419], + [-78.525002, 82.925003], + [-79.556252, 82.887497], + [-79.925003, 82.708336], + [-80.572914, 82.689583], + [-80.787498, 82.629166], + [-80.333336, 82.48333], + [-80.79792, 82.487503], + [-81.145836, 82.595833], + [-81.583336, 82.487503], + [-82.352081, 82.502083], + [-82.379166, 82.322914], + [-81.291664, 82.164581], + [-80.631248, 82.147919], + [-80.502083, 82.043747], + [-81.164581, 81.974998], + [-81.252083, 82.089584], + [-82.150002, 82.175003], + [-82.581253, 82.279167], + [-82.956253, 82.275002], + [-82.6875, 82.068748], + [-83.010414, 82.050003], + [-83.654167, 82.349998], + [-84.554169, 82.387497], + [-84.581253, 82.270836], + [-84.939583, 82.260414], + [-85.533333, 82.416664], + [-85.34375, 82.224998], + [-86.79583, 82.220833], + [-86.520836, 82.11042], + [-85.6875, 82.04583], + [-85.397919, 81.870834], + [-86.26458, 82.043747], + [-86.854164, 82.050003], + [-87.106247, 81.95208], + [-87.364586, 82.068748], + [-88.04583, 82.102081], + [-88.939583, 82.01667], + [-89.447914, 81.875], + [-89.61042, 81.908333], + [-90.589584, 81.877083], + [-91.150002, 81.754166], + [-91.633331, 81.73333], + [-91.870834, 81.60833], + [-90.927086, 81.552086], + [-90.690102, 81.660934], + [-89.768753, 81.602081], + [-90.775002, 81.460419], + [-90.418747, 81.36042], + [-88.722916, 81.54583], + [-89.864586, 81.300003], + [-90.291145, 81.170311], + [-90.11042, 81.043747], + [-89.693748, 81.004166], + [-88.035416, 81.064583], + [-87.431252, 81.058334], + [-86.314583, 81.125], + [-86.018753, 81.206253], + [-84.714584, 81.314583], + [-85.95417, 81.081253], + [-86.695831, 81], + [-87.929169, 81.004166], + [-88.981247, 80.962502], + [-89.300003, 80.852081], + [-88.229164, 80.685417], + [-87.216667, 80.622917], + [-87.05365, 80.708855], + [-86.164581, 80.956253], + [-85.647919, 81.043747], + [-83.833336, 81.099998], + [-82.82917, 81.162498], + [-82.71875, 81.129166], + [-84.868752, 81.027084], + [-85.697914, 80.964584], + [-86.522919, 80.712502], + [-86.683334, 80.587502], + [-86.070831, 80.527084], + [-84.552086, 80.508331], + [-83.89167, 80.529167], + [-83.560417, 80.745834], + [-83.072914, 80.645836], + [-83.11042, 80.537498], + [-81.57917, 80.597916], + [-80.208336, 80.737503], + [-79.489586, 80.841667], + [-79.181252, 80.98333], + [-79.414581, 81.189583], + [-78.845833, 81.095833], + [-78.164581, 81.29792], + [-76.92083, 81.395836], + [-78.004166, 81.254166], + [-78.729164, 81.043747], + [-78.92292, 80.847916], + [-77.54792, 80.910416], + [-76.685417, 80.885414], + [-78.208336, 80.804169], + [-79.316666, 80.708336], + [-79.987503, 80.606247], + [-79.102081, 80.612503], + [-78.339584, 80.570831], + [-80.252083, 80.53125], + [-80.45208, 80.462502], + [-83.20417, 80.32917], + [-82.304169, 80.04792], + [-81.65625, 79.912498], + [-81.456253, 79.712502], + [-80.949478, 79.667183], + [-79.86042, 79.650002], + [-81.050003, 79.581253], + [-81.977081, 79.706253], + [-82.083855, 79.848434], + [-83.543747, 80.210419], + [-84.087502, 80.272919], + [-85.347916, 80.272919], + [-85.720833, 80.32708], + [-86.479164, 80.308334], + [-86.641151, 80.124481], + [-86.410416, 79.966667], + [-86.484901, 79.794266], + [-85.050003, 79.622917], + [-84.849998, 79.474998], + [-84.483849, 79.409897], + [-84.316666, 79.191666], + [-84.685417, 79.01667], + [-84.15625, 78.960419], + [-82.104164, 78.912498], + [-81.841667, 79.018753], + [-81.714584, 78.86042], + [-83.210419, 78.802086], + [-84.591667, 78.852081], + [-85.241669, 78.914581], + [-85.59375, 78.849998], + [-86.660416, 78.789581], + [-86.868752, 78.643753], + [-87.487503, 78.439583], + [-87.518753, 78.129166], + [-86.689583, 78.118752], + [-86.464584, 78.220833], + [-86.26667, 78.068748], + [-85.404167, 78.11042], + [-84.79792, 78.34375], + [-85.120834, 78.054169], + [-85.658333, 77.95208], + [-85.229164, 77.652084], + [-84.775002, 77.522919], + [-83.95208, 77.5], + [-83.46875, 77.587502], + [-83.125, 77.793747], + [-82.533852, 77.924484], + [-83.35833, 77.520836], + [-83.747917, 77.412498], + [-84.554169, 77.402084], + [-84.76458, 77.320831], + [-85.416664, 77.387497], + [-85.71302, 77.4776], + [-86.197914, 77.79583], + [-86.824997, 77.885414], + [-87.331253, 77.895836], + [-88.125, 77.822914], + [-88.191666, 77.631248], + [-87.691666, 77.537498], + [-87.720833, 77.36042], + [-87.09375, 77.345833], + [-87.15625, 77.212502], + [-87.65625, 77.14167], + [-88.410416, 77.120834], + [-88.76458, 76.993752], + [-89.522919, 76.849998], + [-89.441666, 76.654167], + [-89.65625, 76.566666], + [-88.900002, 76.404167], + [-88.527084, 76.729164], + [-88.404167, 76.393753], + [-87.76458, 76.35833], + [-87.433334, 76.45417], + [-85.73333, 76.349998], + [-85.241669, 76.277084], + [-84.427086, 76.300003], + [-84.20208, 76.45208], + [-84.189583, 76.629166], + [-83.6875, 76.42083], + [-82.462502, 76.397919] + ] + ], + [ + [ + [-117.677086, 70.645836], + [-116.697914, 70.606247], + [-116.106766, 70.634895], + [-116.050003, 70.543747], + [-114.48542, 70.643753], + [-113.947914, 70.720833], + [-113.181252, 70.645836], + [-112.61042, 70.520836], + [-112.150002, 70.512497], + [-111.980728, 70.388016], + [-112.522919, 70.197914], + [-113.238022, 70.280731], + [-114.51667, 70.322914], + [-115.958336, 70.231247], + [-117.114586, 70.099998], + [-117.364067, 70.034897], + [-117.19323, 69.74427], + [-116.560936, 69.547401], + [-116.602081, 69.45417], + [-115.943748, 69.29583], + [-115.17292, 69.247917], + [-114.179169, 69.28125], + [-113.679169, 69.193748], + [-113.544266, 69.020317], + [-113.657814, 68.815102], + [-113.245834, 68.464584], + [-111.520836, 68.552086], + [-110.956253, 68.552086], + [-110.54792, 68.629166], + [-109.635414, 68.643753], + [-108.902084, 68.754166], + [-108.502602, 68.898438], + [-107.491669, 68.98333], + [-106.910934, 69.232811], + [-106.964066, 69.354683], + [-106.560417, 69.497917], + [-106.304687, 69.399483], + [-106.379166, 69.177086], + [-105.527603, 69.153648], + [-104.920311, 69.033852], + [-105.141151, 68.904686], + [-104.529167, 68.862503], + [-104.439583, 68.947914], + [-104.04583, 68.854164], + [-103.004166, 68.800003], + [-102.449997, 68.875], + [-102.382813, 68.964066], + [-101.800003, 68.995834], + [-101.731766, 69.185936], + [-101.989067, 69.254684], + [-102.073433, 69.49115], + [-102.410934, 69.499481], + [-102.8125, 69.400002], + [-103.017189, 69.256767], + [-103.054687, 69.529686], + [-102.502602, 69.560936], + [-102.379166, 69.831253], + [-102.033333, 69.895836], + [-101.897919, 69.73542], + [-101.445312, 69.819267], + [-101.23333, 69.664581], + [-100.917183, 69.691147], + [-100.868752, 69.885414], + [-100.979683, 70.191147], + [-101.79583, 70.097916], + [-102.033333, 70.13958], + [-102.193748, 70.377083], + [-102.67292, 70.504166], + [-103.537498, 70.585419], + [-104.037498, 70.900002], + [-104.552086, 71.081253], + [-104.26458, 71.356247], + [-104.44635, 71.725517], + [-104.712502, 71.816666], + [-105.268753, 72.45417], + [-105.26667, 72.679169], + [-105.42865, 72.891151], + [-105.675003, 72.910416], + [-106.875, 73.3125], + [-107.050003, 73.17083], + [-107.583336, 73.320831], + [-108.010414, 73.349998], + [-108.052086, 72.724998], + [-107.95417, 72.518753], + [-107.227081, 71.814583], + [-107.48542, 71.79583], + [-107.804688, 71.604683], + [-108.145836, 71.708336], + [-108.64167, 72.320831], + [-108.55677, 72.511978], + [-108.991669, 72.564583], + [-109.106766, 72.759895], + [-109.34375, 72.745834], + [-109.645836, 72.9375], + [-110.455734, 73.011978], + [-110.508331, 72.839584], + [-110.17292, 72.818748], + [-109.810417, 72.508331], + [-110.04583, 72.445831], + [-110.347916, 72.5625], + [-110.697914, 72.57708], + [-111.039581, 72.32708], + [-111.260414, 72.556252], + [-111.104164, 72.706253], + [-112.043747, 72.893753], + [-113.070831, 73.012497], + [-113.816666, 72.64167], + [-114.570831, 72.572914], + [-114.216148, 72.805733], + [-113.988022, 72.813019], + [-113.953651, 73.146355], + [-114.456253, 73.372917], + [-116.26667, 73.10833], + [-117.409897, 72.893234], + [-117.558334, 72.800003], + [-118.50573, 72.503647], + [-118.462502, 72.35833], + [-118.08802, 72.233849], + [-118.554169, 72.181252], + [-119.112503, 71.85833], + [-119.072914, 71.67083], + [-118.572914, 71.668747], + [-118.01458, 71.377083], + [-117.393753, 71.385414], + [-115.70208, 71.5625], + [-116.135414, 71.379166], + [-117.01667, 71.245834], + [-117.808334, 71.168747], + [-118.370834, 71.029167], + [-118.04792, 70.800003], + [-117.677086, 70.645836] + ] + ], + [ + [ + [-74.637466091, 44.999195099], + [-71.511032104, 45.013435364], + [-71.413208008, 45.220157624], + [-70.823326111, 45.40296936], + [-70.266288756, 45.884941102], + [-70.292007446, 46.190940856], + [-70.057159424, 46.414680481], + [-69.997085572, 46.6958313], + [-69.221817016, 47.457641603], + [-69.043998718, 47.42577362], + [-68.897491455, 47.176639558], + [-68.243835448, 47.352554321], + [-67.783599854, 47.063171386], + [-67.802940368, 45.695995331], + [-67.425682082, 45.578472085], + [-67.4776, 45.287292], + [-67.266800009, 45.191123994], + [-66.890549, 45.041817], + [-65.908119, 45.193939], + [-65.33857, 45.449642], + [-64.788887, 45.595001], + [-64.582221985, 45.815834046], + [-64.45472, 45.682777], + [-64.913055, 45.430557], + [-64.708527, 45.31422], + [-63.611111, 45.395557], + [-64.339996, 45.127224], + [-64.47252655, 45.239742279], + [-64.948333741, 45.104721069], + [-65.741386, 44.711945], + [-66.127502441, 44.332778932], + [-66.213806152, 44.108173372], + [-66.11972, 43.733612], + [-65.821907, 43.71328], + [-65.726425, 43.490128], + [-65.495003, 43.491112], + [-65.326683, 43.676567], + [-65.011398, 43.722294], + [-64.813889, 43.953609], + [-64.264, 44.316772], + [-64.35611, 44.440556], + [-63.897892, 44.663799], + [-63.938114, 44.505936], + [-63.570782, 44.458916], + [-63.111946, 44.738056], + [-62.872952, 44.732952], + [-61.847221, 45.103333], + [-61.127499, 45.207779], + [-61.068333, 45.350277], + [-61.468334, 45.353889], + [-61.263054, 45.454166], + [-61.486862, 45.692558], + [-61.876389, 45.686668], + [-61.935001, 45.887501], + [-62.509445, 45.601387], + [-62.772778, 45.762222], + [-63.72833252, 45.873054505], + [-64.045555, 46.044998], + [-63.834446, 46.153057], + [-64.390724, 46.223721], + [-64.860558, 46.692223], + [-64.807503, 47.076668], + [-65.275032, 47.112831], + [-64.959442, 47.299721], + [-64.80116272, 47.803852081], + [-65.181114196, 47.819168091], + [-65.622498, 47.651112], + [-65.764442443, 47.863887787], + [-66.472847, 48.061604], + [-66.09222412, 48.092777252], + [-65.937667848, 48.20092392], + [-65.45639, 48.006111], + [-64.773612976, 48.205638886], + [-64.732224, 48.335835], + [-64.227356, 48.501396], + [-64.212471, 48.874222], + [-64.505219, 49.068954], + [-64.926582337, 49.205387116], + [-65.55833435, 49.257221222], + [-66.054725648, 49.221389771], + [-66.745552062, 49.088333131], + [-67.535301209, 48.854000093], + [-68.470001221, 48.513889313], + [-68.953887999, 48.290001001], + [-69.34861, 48.013054], + [-70.501113892, 47.009666444], + [-71.155830384, 46.832500457], + [-71.261390686, 46.748275757], + [-71.653419494, 46.61681366], + [-72.152778626, 46.542678833], + [-72.244079589, 46.407123566], + [-72.743553162, 46.165287019], + [-73.148010254, 46.047466278], + [-73.411766053, 45.696609497], + [-73.512878419, 45.424804688], + [-73.885421753, 45.313762665], + [-74.097480773, 45.295528413], + [-74.162567138, 45.20267868], + [-74.637466091, 44.999195099] + ] + ], + [ + [ + [-124.999481201, 71.890098572], + [-123.970833, 71.67083], + [-123.625519, 71.497398], + [-123.453651, 71.24427], + [-123.131248, 71.07917], + [-122.814583, 71.083336], + [-122.466667, 71.224998], + [-122.035416, 71.29792], + [-121.783333, 71.506248], + [-121.32708, 71.381248], + [-120.706253, 71.470833], + [-120.467186, 71.565102], + [-120.1651, 72.077599], + [-120.158333, 72.237503], + [-119.768753, 72.229164], + [-119.308853, 72.365105], + [-118.981247, 72.67292], + [-118.035416, 72.883331], + [-117.460419, 73.04792], + [-116.634895, 73.222397], + [-115.779167, 73.34375], + [-115.306252, 73.46875], + [-115.516151, 73.58802], + [-116.646355, 74.009895], + [-117.29792, 74.20417], + [-118.177086, 74.277084], + [-118.762497, 74.212502], + [-118.960419, 74.004166], + [-119.093231, 74.199478], + [-120.114586, 74.277084], + [-120.941666, 74.429169], + [-121.094269, 74.518234], + [-121.745834, 74.550003], + [-122.166664, 74.487503], + [-124.414581, 74.377083], + [-124.353645, 74.017189], + [-124.157814, 73.86927], + [-123.76458, 73.754166], + [-124.052086, 73.666664], + [-124.135414, 73.491669], + [-124.778648, 73.157814], + [-124.518753, 72.925003], + [-124.977081, 72.820831], + [-125.039581, 72.558334], + [-125.316147, 72.480728], + [-125.676567, 72.251564], + [-125.82917, 71.958336], + [-125.172920228, 71.983329773], + [-124.999481201, 71.890098572] + ] + ], + [ + [ + [-93.468231, 81.373436], + [-94.089584, 81.364586], + [-93.95208, 81.20208], + [-93.21875, 81.214584], + [-93.143753, 81.089584], + [-94.10833, 81.089584], + [-94.070831, 81.002083], + [-94.849998, 81.058334], + [-95.229164, 81.008331], + [-95.29583, 80.779167], + [-94.658333, 80.722916], + [-94.618752, 80.554169], + [-94.947914, 80.604164], + [-95.970833, 80.583336], + [-95.777084, 80.447914], + [-96.402084, 80.275002], + [-95.316666, 80.114586], + [-94.404167, 80.17292], + [-94.854164, 80.052086], + [-95.645836, 80.043747], + [-96.6875, 80.147919], + [-96.631248, 79.900002], + [-95.912498, 79.652084], + [-94.30677, 79.683853], + [-94.925003, 79.587502], + [-95.685417, 79.541664], + [-95.759895, 79.416145], + [-94.974998, 79.268753], + [-94.512497, 79.42083], + [-94.022919, 79.377083], + [-94.039581, 79.256248], + [-92.206253, 79.51667], + [-92.404167, 79.366669], + [-91.445831, 79.320831], + [-92.512497, 79.306252], + [-92.262497, 79.206253], + [-91.158333, 79.247917], + [-90.479164, 79.21875], + [-92.056252, 79.152084], + [-93.372917, 79.162498], + [-93.814583, 79.035416], + [-94.316666, 78.987503], + [-93.28125, 78.57708], + [-92.597916, 78.591667], + [-91.29583, 78.558334], + [-92.820831, 78.504166], + [-92.935417, 78.418747], + [-92.052086, 78.199997], + [-90.964584, 78.137497], + [-90.331253, 78.14167], + [-90.324997, 78.279167], + [-89.877083, 78.210419], + [-89.610939, 78.279686], + [-89.974998, 78.433334], + [-90.006248, 78.620834], + [-89.012497, 78.166664], + [-88.806252, 78.152084], + [-88.531769, 78.401566], + [-88.65625, 78.627083], + [-88.272919, 78.462502], + [-87.893753, 78.585419], + [-88.239586, 78.768753], + [-88.145836, 79.004166], + [-87.997398, 78.785934], + [-87.647919, 78.64167], + [-86.525002, 79.054169], + [-85.248436, 79.186981], + [-84.929687, 79.320312], + [-85.82708, 79.616669], + [-86.015099, 79.572395], + [-86.65625, 79.662498], + [-87.181252, 79.57917], + [-86.964584, 79.916664], + [-87.268753, 80.081253], + [-87.854164, 80.060417], + [-87.506767, 80.24115], + [-87.602081, 80.408333], + [-88.364586, 80.441666], + [-88.657814, 80.382812], + [-88.5, 80.099998], + [-89.086983, 80.215103], + [-89.029167, 80.48333], + [-90.550003, 80.572914], + [-90.724998, 80.71875], + [-91.114067, 80.774483], + [-92.027084, 81.222916], + [-93.468231, 81.373436] + ] + ], + [ + [ + [-95.675003, 77.064583], + [-96.806252, 76.98333], + [-96.543747, 76.693748], + [-96.033333, 76.554169], + [-95.824997, 76.393753], + [-95.222916, 76.366669], + [-95.387497, 76.23333], + [-94.216667, 76.283333], + [-93.697914, 76.247917], + [-93.102081, 76.366669], + [-92.472916, 75.962502], + [-92.122917, 75.866669], + [-92.002121, 75.591682], + [-92.445312, 75.418228], + [-92.501564, 75.228645], + [-92.038017, 74.957817], + [-91.86042, 74.697914], + [-91.125, 74.625], + [-90.789581, 74.720833], + [-90.629166, 74.618752], + [-89.987503, 74.53125], + [-89.26667, 74.572914], + [-88.992188, 74.789063], + [-88.796349, 74.679688], + [-88.6875, 74.847916], + [-88.414581, 74.770836], + [-88.543228, 74.496353], + [-87.737503, 74.456253], + [-85.618752, 74.489586], + [-85.552086, 74.685417], + [-85.21875, 74.487503], + [-84.25, 74.506248], + [-83.462502, 74.583336], + [-83.118752, 74.810417], + [-83.057816, 74.613022], + [-82.791664, 74.529167], + [-82.360939, 74.544266], + [-81.75, 74.46875], + [-81.227081, 74.587502], + [-80.277084, 74.581253], + [-80.131248, 74.833336], + [-79.356247, 74.881248], + [-79.645836, 75.033333], + [-80.189583, 74.95208], + [-79.599998, 75.183334], + [-79.493233, 75.374481], + [-79.947914, 75.477081], + [-80.243752, 75.625], + [-81.268753, 75.64167], + [-81.113022, 75.750519], + [-82.291664, 75.82917], + [-82.81823, 75.748436], + [-83.9375, 75.814583], + [-84.660416, 75.64167], + [-85.072914, 75.662498], + [-85.88958, 75.502083], + [-85.718231, 75.398438], + [-86.341667, 75.393753], + [-86.98333, 75.506248], + [-87.247917, 75.614586], + [-87.787498, 75.570831], + [-88.195831, 75.46875], + [-88.585419, 75.587502], + [-88.679169, 75.40625], + [-89.170311, 75.496353], + [-89.387497, 75.822914], + [-90.0625, 75.981247], + [-90.949997, 75.912498], + [-91.158333, 76.025002], + [-90.318748, 76.081253], + [-91.318748, 76.160416], + [-89.308334, 76.193748], + [-89.302086, 76.302086], + [-89.775002, 76.320831], + [-90.556252, 76.45417], + [-90.595833, 76.566666], + [-90.98542, 76.652084], + [-91.710419, 76.6875], + [-92.631248, 76.59375], + [-93.095833, 76.620834], + [-93.614586, 76.904167], + [-94.291664, 76.893753], + [-94.612503, 76.981247], + [-95.175003, 76.993752], + [-95.675003, 77.064583] + ] + ], + [ + [ + [-109.841667, 74.877083], + [-109.379166, 74.902084], + [-108.808334, 75.07708], + [-108.512497, 74.947914], + [-107.659897, 74.9776], + [-107.260414, 74.916664], + [-105.992188, 75.052605], + [-105.635414, 75.533333], + [-105.35833, 75.652084], + [-105.591667, 75.941666], + [-105.929169, 76.01667], + [-106.645317, 76.064064], + [-106.85833, 75.979164], + [-106.893753, 75.714584], + [-107.402084, 75.92083], + [-108.008331, 75.837502], + [-107.798439, 76.061981], + [-108.408333, 76.058334], + [-108.0625, 76.231247], + [-108.25885, 76.389061], + [-108.539581, 76.414581], + [-108.390099, 76.7276], + [-108.731247, 76.847916], + [-109.314583, 76.800003], + [-109.791664, 76.48542], + [-110.385414, 76.431252], + [-110.34375, 76.308334], + [-109.912498, 76.20208], + [-109.508331, 76.1875], + [-109.275002, 76.056252], + [-109.914581, 75.929169], + [-109.650002, 75.808334], + [-109.025002, 75.758331], + [-108.760414, 75.625], + [-108.872917, 75.481247], + [-110.466667, 75.574997], + [-111.229164, 75.51458], + [-111.390099, 75.768234], + [-111.71875, 75.90625], + [-112.3974, 76.044266], + [-112.460938, 76.169266], + [-113.262497, 76.272919], + [-113.949997, 76.193748], + [-114.063019, 76.427605], + [-114.323433, 76.49115], + [-115.181252, 76.472916], + [-115.777084, 76.385414], + [-115.845833, 76.252083], + [-116.543228, 76.128647], + [-116.729164, 75.902084], + [-115.308334, 75.864586], + [-116.849998, 75.804169], + [-117.1875, 75.585419], + [-116.349998, 75.566666], + [-115.298439, 75.673439], + [-116.002083, 75.487503], + [-117.154167, 75.48542], + [-117.520317, 75.372398], + [-117.529167, 75.210419], + [-116.695831, 75.118752], + [-116.254166, 75.216667], + [-116.229164, 75.058334], + [-115.652084, 74.972916], + [-115.166664, 75.133331], + [-115.04792, 74.964584], + [-114.42083, 75.072914], + [-114.029686, 75.350517], + [-113.81823, 75.314064], + [-113.935417, 75.058334], + [-112.845833, 75.131248], + [-112.647919, 75.285416], + [-112.432816, 75.140099], + [-111.472916, 75.164581], + [-111.224998, 75.270836], + [-110.92083, 75.227081], + [-111.700516, 74.983849], + [-112.849998, 74.981247], + [-113.487503, 74.82708], + [-114.089584, 74.785416], + [-114.216667, 74.585419], + [-113.504166, 74.429169], + [-112.727081, 74.404167], + [-111.642189, 74.502602], + [-110.78125, 74.664581], + [-110.316147, 74.853645], + [-109.841667, 74.877083] + ] + ], + [ + [ + [-53.594726562, 46.63243866], + [-53.370556, 46.728889], + [-53.091144562, 46.645538331], + [-52.893333435, 46.940555573], + [-52.659168244, 47.646945954], + [-52.803951, 47.806328], + [-52.920345306, 47.541732788], + [-53.127067565, 47.427509308], + [-53.266945, 47.578335], + [-52.889065, 48.152088], + [-53.301387786, 48.009166717], + [-53.554443, 47.522778], + [-53.799999, 47.770279], + [-53.637779, 48.176109], + [-53.366112, 48.392776], + [-53.101387, 48.410557], + [-53.093887, 48.680557], + [-53.574554, 48.451279], + [-53.891026, 48.561852], + [-53.785278, 49.023613], + [-53.487507, 49.229507], + [-54.08239, 49.470112], + [-54.497753, 49.390831], + [-54.556389, 49.539722], + [-54.797501, 49.310833], + [-55.243183, 49.257854], + [-55.441654001, 49.503361], + [-55.695347, 49.424347], + [-56.007187, 49.724136], + [-55.6553, 49.849483], + [-56.160556792, 50.157775879], + [-56.583527, 49.845211], + [-56.84777832, 49.568332673], + [-56.752857, 50.023464], + [-56.513584, 50.225155], + [-55.727158, 51.124722], + [-56.02005, 51.215466], + [-56.07172, 51.366299], + [-55.631111145, 51.299533844], + [-55.421997, 51.584744], + [-55.91111, 51.628056], + [-56.700001, 51.338055], + [-57.098404, 50.782066], + [-57.361347198, 50.710769654], + [-57.61401, 50.187771], + [-58.020279, 49.555832], + [-58.254444, 49.284721], + [-58.163612366, 49.061668396], + [-58.500031, 49.007191], + [-58.714168548, 48.561111451], + [-58.673889, 48.374168], + [-58.978839875, 48.129489898], + [-59.413334, 47.899166], + [-59.170555116, 47.566387176], + [-58.075279, 47.701668], + [-57.772778, 47.623055], + [-57.341034, 47.648422], + [-56.798889, 47.533611], + [-56.225113, 47.622833], + [-55.812923, 47.793034], + [-55.963768, 47.553429], + [-55.779167, 47.452221], + [-55.413872, 47.483185], + [-55.411613, 47.692249], + [-55.138504, 47.577141], + [-55.337352752, 47.24545288], + [-55.978889, 46.987499], + [-55.700916, 46.861618], + [-55.232223511, 46.938331604], + [-54.800835, 47.421391], + [-54.586113, 47.347778], + [-54.205833, 47.795834], + [-53.900505, 47.607121], + [-53.917499542, 47.310832978], + [-54.167084, 46.990921], + [-54.060508728, 46.799354554], + [-53.709953, 47.088478], + [-53.571666718, 46.915687562], + [-53.594726562, 46.63243866] + ] + ], + [ + [ + [-86.135933, 73.8526], + [-87.228645, 73.791145], + [-88.212502, 73.595833], + [-88.960419, 73.293747], + [-89.341667, 73.004166], + [-89.306252, 72.89167], + [-89.752083, 72.620834], + [-89.951561, 72.256767], + [-89.816666, 72.143753], + [-90.104164, 71.941666], + [-89.758331, 71.762497], + [-90.006248, 71.599998], + [-89.854164, 71.345833], + [-88.10833, 71.216667], + [-87.833336, 71.26458], + [-87.691666, 71.129166], + [-87.006248, 71.002083], + [-86.397919, 71.037498], + [-85.947914, 71.185417], + [-85.449997, 71.185417], + [-85.122917, 71.302086], + [-85.29792, 71.464584], + [-86.116669, 71.791664], + [-86.403648, 72.0224], + [-86.430733, 72.276566], + [-86.260933, 72.449478], + [-86.711983, 72.660934], + [-86.682816, 72.857811], + [-86.423439, 72.975517], + [-86.118752, 73.26458], + [-85.864586, 73.393753], + [-84.88958, 73.6875], + [-85.091667, 73.8125], + [-86.135933, 73.8526] + ] + ], + [ + [ + [-96.579689, 72.691147], + [-96.893234, 72.686981], + [-97.225517, 72.935936], + [-97.73333, 73.037498], + [-98.431252, 73.004166], + [-97.848434, 73.273437], + [-97.247917, 73.370834], + [-97.408333, 73.5], + [-96.949997, 73.63958], + [-97.195831, 73.85833], + [-97.618752, 73.897919], + [-98.756248, 73.758331], + [-99.131248, 73.754166], + [-99.70417, 73.854164], + [-99.897919, 73.949997], + [-100.150002, 73.82917], + [-100.866669, 73.841667], + [-100.909897, 73.634895], + [-101.558853, 73.478645], + [-100.819267, 73.265099], + [-100.329689, 73.322395], + [-100.075516, 72.909897], + [-100.300003, 72.808334], + [-101.34375, 72.731247], + [-101.458336, 72.88958], + [-101.902084, 73.04583], + [-102.387497, 73.09375], + [-102.636978, 72.760933], + [-101.904686, 72.482811], + [-101.805733, 72.319267], + [-101.185936, 72.336983], + [-100.92292, 72.166664], + [-100.598434, 72.180733], + [-100.28125, 71.96875], + [-99.706253, 71.814583], + [-99.264061, 71.390099], + [-98.725517, 71.269272], + [-98.492188, 71.308853], + [-98.064583, 71.537498], + [-97.970314, 71.707817], + [-97.604164, 71.620834], + [-97.081253, 71.70208], + [-96.902084, 71.820831], + [-96.614586, 71.810417], + [-96.467186, 72.028648], + [-96.650002, 72.34375], + [-96.320831, 72.447914], + [-96.579689, 72.691147] + ] + ], + [ + [ + [-85.483849, 65.910934], + [-85.984901, 65.722397], + [-86.156769, 65.302605], + [-86.190102, 64.871353], + [-86.3974, 64.489067], + [-86.140099, 64.092186], + [-86.816666, 63.941666], + [-87.216148, 63.713024], + [-87.087502, 63.545834], + [-86.589066, 63.65781], + [-86.018753, 63.683334], + [-85.996353, 63.854691], + [-85.450516, 64.00885], + [-85.663017, 63.724476], + [-85.628647, 63.208855], + [-85.195831, 63.110416], + [-84.581253, 63.291668], + [-84.339584, 63.575001], + [-83.629166, 63.752083], + [-83.533333, 64.099998], + [-83.129166, 64.162498], + [-83.135414, 63.987499], + [-82.460419, 63.935417], + [-81.948433, 64.101562], + [-81.590103, 64.121353], + [-81.747917, 64.472916], + [-82.050522, 64.668228], + [-82.629166, 64.760414], + [-83.300522, 65.002602], + [-83.497917, 65.158333], + [-84.087502, 65.197914], + [-84.125519, 65.332817], + [-84.554169, 65.474998], + [-84.862503, 65.20417], + [-85.054687, 65.457817], + [-85.18177, 65.805733], + [-85.483849, 65.910934] + ] + ], + [ + [ + [-95.117188, 72.466148], + [-95.197395, 72.222397], + [-95.11042, 71.972916], + [-94.241669, 72.01667], + [-93.820831, 72.314583], + [-93.438019, 72.455734], + [-93.935417, 72.779167], + [-93.145836, 72.802086], + [-92.34375, 72.708336], + [-91.801567, 72.874481], + [-91.195312, 73.326561], + [-90.346352, 73.792183], + [-90.32708, 73.912498], + [-90.693748, 73.977081], + [-91.51458, 74.029167], + [-92.104164, 73.95417], + [-92.587502, 74.11042], + [-93.574997, 74.177086], + [-94.779167, 74.07708], + [-95.277084, 73.995834], + [-95.287498, 73.779167], + [-95.625, 73.741669], + [-95.67292, 73.45208], + [-95.552086, 73.291664], + [-95.69323, 72.985939], + [-95.572914, 72.691666], + [-95.117188, 72.466148] + ] + ], + [ + [ + [-116.42292, 77.535416], + [-116.666664, 77.527084], + [-117.239586, 77.289581], + [-117.745834, 77.362503], + [-119.183334, 77.318748], + [-120.550003, 76.754166], + [-121.208336, 76.685417], + [-121.456253, 76.441666], + [-122.335419, 76.402084], + [-122.618233, 76.343231], + [-122.731766, 76.17865], + [-122.651566, 75.960938], + [-122.345833, 75.883331], + [-122.104164, 76.043747], + [-121.285416, 75.970833], + [-120.714066, 76.033852], + [-120.410416, 75.977081], + [-120.29583, 75.8125], + [-119.724998, 75.885414], + [-119.6875, 76.097916], + [-119.480728, 76.288017], + [-119.125, 76.106247], + [-118.654167, 76.45417], + [-118.335419, 76.556252], + [-118.320831, 76.78125], + [-117.800522, 76.715103], + [-118.029167, 76.410416], + [-117.32708, 76.260414], + [-116.96302, 76.344269], + [-117.04583, 76.566666], + [-116.502083, 76.570831], + [-115.897919, 76.691666], + [-115.84375, 76.98542], + [-116.409897, 77.151566], + [-115.541664, 77.268753], + [-115.535416, 77.375], + [-116.42292, 77.535416] + ] + ], + [ + [ + [-98.654167, 76.685417], + [-99.012497, 76.612503], + [-99.241669, 76.435417], + [-99.70417, 76.612503], + [-100.272919, 76.63958], + [-100.779167, 76.51667], + [-100.714584, 76.379166], + [-100.258331, 76.38958], + [-100.058334, 76.20417], + [-100.039581, 75.925003], + [-100.393753, 76.112503], + [-100.875, 76.224998], + [-101.48542, 76.443748], + [-101.902084, 76.449997], + [-102.0625, 76.229164], + [-101.537498, 76.224998], + [-101.90625, 76.072914], + [-101.587502, 75.981247], + [-102.339066, 75.836983], + [-102.766151, 75.549484], + [-101.1026, 75.594269], + [-99.806252, 75.681252], + [-100.677086, 75.377083], + [-100.4375, 75.227081], + [-100.372398, 75.029686], + [-100.081253, 74.987503], + [-99.003647, 74.984901], + [-97.958336, 75.027084], + [-97.614586, 75.118752], + [-98.025002, 75.370834], + [-97.691666, 75.568748], + [-97.383331, 75.45208], + [-97.366669, 75.691666], + [-97.73542, 75.729164], + [-97.477081, 76.133331], + [-97.787498, 76.314583], + [-97.92292, 76.566666], + [-98.654167, 76.685417] + ] + ], + [ + [ + [-103.92292, 79.372917], + [-105.125, 79.29583], + [-105.439583, 79.337502], + [-105.659897, 79.16198], + [-105.51458, 79.018753], + [-104.706253, 79.035416], + [-104.98333, 78.79792], + [-104.453651, 78.953651], + [-103.902084, 78.925003], + [-104.1875, 78.770836], + [-103.414581, 78.787498], + [-103.462502, 78.510414], + [-104.79792, 78.581253], + [-104.956253, 78.441666], + [-104.464584, 78.275002], + [-103.914581, 78.245834], + [-103.739586, 78.318748], + [-102.775002, 78.38958], + [-102.581253, 78.237503], + [-102.166664, 78.293747], + [-101.072914, 78.20208], + [-100.550003, 77.875], + [-99.847916, 77.785416], + [-99.181252, 77.84375], + [-98.916664, 78.064583], + [-99.785416, 78.29792], + [-99.508331, 78.595833], + [-100.364586, 78.837502], + [-101.050522, 78.807816], + [-100.952599, 78.938019], + [-101.604164, 79.07708], + [-102.387497, 79.020836], + [-103.09375, 79.287498], + [-103.92292, 79.372917] + ] + ], + [ + [ + [-123.591942, 48.338612], + [-123.29528, 48.410831], + [-123.508773804, 48.552265168], + [-123.592285, 48.847874], + [-123.818298, 49.135902], + [-124.188858, 49.312557], + [-124.792449952, 49.465278627], + [-124.863533, 49.693649], + [-125.182472, 49.914444], + [-125.441665649, 50.320556642], + [-126.08696, 50.449799], + [-126.608383, 50.485554], + [-127.135002, 50.592224], + [-127.485558, 50.766388], + [-127.908333, 50.875], + [-128.41333, 50.775555], + [-128.375763, 50.672089], + [-127.802673, 50.249325], + [-127.17778, 49.877499], + [-127.01889, 49.849998], + [-126.82222, 49.882221], + [-126.790833, 49.92889], + [-126.755836, 49.875], + [-126.678383, 49.864391], + [-126.645804999, 49.907500999], + [-126.652779, 49.8125], + [-126.593613, 49.698334], + [-126.439476, 49.652626], + [-126.555962, 49.586861], + [-126.583611, 49.417778], + [-126.078247, 49.437748], + [-126.031609, 49.285732], + [-125.737976, 49.261288], + [-125.75, 49.068611], + [-125.511261, 48.921982], + [-125.290703, 49.023472], + [-125.03083, 48.960506], + [-125.22068, 48.785645], + [-124.650276184, 48.575000764], + [-123.591942, 48.338612] + ] + ], + [ + [ + [-80.671349, 73.774483], + [-80.78125, 73.775002], + [-80.914581, 73.375], + [-80.760414, 73.277084], + [-80.195831, 73.25], + [-79.98333, 72.864586], + [-79.260414, 72.743752], + [-78.245834, 72.895836], + [-77.60833, 72.900002], + [-76.352081, 72.816666], + [-76.243752, 73.09375], + [-76.618752, 73.129166], + [-76.720833, 73.32708], + [-77.01458, 73.337502], + [-77.189583, 73.510414], + [-78.14167, 73.67083], + [-79.137497, 73.633331], + [-80.114586, 73.699997], + [-80.671349, 73.774483] + ] + ], + [ + [ + [-95.837502, 68.658333], + [-95.533333, 68.789581], + [-95.822914, 68.881248], + [-96.144272, 69.282814], + [-96.877083, 69.502083], + [-97.114586, 69.63958], + [-97.791664, 69.879166], + [-98.160416, 69.8125], + [-98.46875, 69.585419], + [-98.4375, 69.38958], + [-98.717186, 69.18177], + [-99.462502, 69.118752], + [-99.537498, 69.008331], + [-99.179169, 68.831253], + [-99.014061, 68.955734], + [-98.668747, 68.787498], + [-97.716667, 68.662498], + [-97.564583, 68.57917], + [-96.856247, 68.527084], + [-96.54583, 68.45208], + [-95.837502, 68.658333] + ] + ], + [ + [ + [-94.712502, 74.64167], + [-93.6875, 74.63958], + [-93.48333, 74.67292], + [-93.390099, 74.910934], + [-93.475517, 75.253647], + [-94.306252, 75.589584], + [-94.966667, 75.625], + [-95.583336, 75.556252], + [-96.01458, 75.333336], + [-96.445831, 75.20208], + [-96.370834, 75.010414], + [-95.818748, 74.824997], + [-95.260414, 74.804169], + [-95.089584, 74.6875], + [-94.712502, 74.64167] + ] + ], + [ + [ + [-97.761978, 78.82135], + [-98.40625, 78.775002], + [-98.098434, 78.580734], + [-98.399483, 78.46302], + [-98.056252, 78.300003], + [-97.60833, 78.197914], + [-96.966667, 78.14167], + [-97.693748, 78.081253], + [-97.131767, 77.918228], + [-96.925003, 77.787498], + [-96.70417, 77.872917], + [-96.085419, 77.872917], + [-95.11042, 77.945831], + [-94.885933, 78.106766], + [-95.21302, 78.211983], + [-94.822914, 78.368752], + [-95.518753, 78.51458], + [-95.9375, 78.477081], + [-96.293747, 78.527084], + [-96.520836, 78.683334], + [-97.761978, 78.82135] + ] + ], + [ + [ + [-75.902084, 68.34375], + [-76.666145, 68.259895], + [-76.984901, 68.063019], + [-77.294266, 67.716148], + [-77.086983, 67.316147], + [-75.86927, 67.252602], + [-75.183853, 67.438019], + [-74.938019, 68.175522], + [-75.902084, 68.34375] + ] + ], + [ + [ + [-109.849998, 77.9375], + [-109.64167, 78.102081], + [-111.279167, 78.091667], + [-112.487503, 77.995834], + [-113.305733, 77.791145], + [-113.20417, 77.527084], + [-112.583855, 77.464066], + [-112.462502, 77.372917], + [-111.947914, 77.337502], + [-111.322914, 77.429169], + [-110.877083, 77.408333], + [-110.220833, 77.504166], + [-110.04792, 77.772919], + [-110.664581, 77.770836], + [-110.91198, 77.86615], + [-109.849998, 77.9375] + ] + ], + [ + [ + [-60.238335, 45.723331], + [-59.803612, 45.967457], + [-59.837009, 46.168251], + [-60.285557, 46.310555], + [-60.719006, 45.899002], + [-60.791943, 45.685833], + [-61.103573, 45.791313], + [-60.819187, 45.944057], + [-60.351292, 46.628334], + [-60.304104, 46.851387], + [-60.592419, 47.041843], + [-60.894722, 46.785], + [-61.107521, 46.439056], + [-61.551666, 46.041389], + [-61.46611, 45.716946], + [-61.331112, 45.564724], + [-60.744446, 45.573055], + [-60.238335, 45.723331] + ] + ], + [ + [ + [-105.445831, 73.768753], + [-106.510414, 73.716667], + [-106.895317, 73.492187], + [-106.0625, 73.283333], + [-106.060417, 73.185417], + [-105.375519, 72.902603], + [-104.993752, 73.006248], + [-104.539581, 73.306252], + [-104.515099, 73.574478], + [-105.169266, 73.759895], + [-105.445831, 73.768753] + ] + ], + [ + [ + [-109.810417, 78.625], + [-110.385414, 78.758331], + [-111.095314, 78.701561], + [-111.647919, 78.543747], + [-112.241669, 78.54583], + [-113.185417, 78.383331], + [-113.147919, 78.272919], + [-112.17292, 78.379166], + [-111.791664, 78.279167], + [-111.418747, 78.275002], + [-111.302086, 78.385414], + [-110.368752, 78.277084], + [-110.052086, 78.32917], + [-109.335938, 78.33802], + [-109.306252, 78.533333], + [-109.810417, 78.625] + ] + ], + [ + [ + [-64.139458, 49.948463], + [-64.52356, 49.863464], + [-63.982635, 49.697456], + [-63.569168, 49.389999], + [-63.074165, 49.225277], + [-62.244289, 49.062527], + [-61.668716, 49.139389], + [-61.897068, 49.352604], + [-62.250278, 49.426109], + [-62.513386, 49.588223], + [-63.081417, 49.767101], + [-64.139458, 49.948463] + ] + ], + [ + [ + [-82.217186, 62.983856], + [-82.71875, 62.941666], + [-83.006248, 62.84375], + [-83.285416, 62.931252], + [-83.543228, 62.826565], + [-83.648437, 62.579685], + [-83.893753, 62.508335], + [-83.714584, 62.139584], + [-83.416664, 62.252083], + [-83.064583, 62.185417], + [-81.940102, 62.721352], + [-81.867188, 62.914062], + [-82.217186, 62.983856] + ] + ], + [ + [ + [-132.026657, 53.247318], + [-131.789978, 54.074524], + [-132.116638, 54.031399], + [-132.313904, 54.114502], + [-132.589447, 54.025002], + [-132.658875, 54.153076], + [-133.026367, 54.184566], + [-133.153336, 53.886391], + [-132.88945, 53.466389], + [-132.497223, 53.142502], + [-132.026657, 53.247318] + ] + ], + [ + [ + [-95.438019, 77.801567], + [-96.23333, 77.697914], + [-96.294266, 77.59948], + [-95.849998, 77.46875], + [-94.770836, 77.497917], + [-93.941666, 77.441666], + [-93.48333, 77.46875], + [-93.23333, 77.73542], + [-93.681252, 77.78125], + [-95.438019, 77.801567] + ] + ], + [ + [ + [-80.885414, 64.11042], + [-80.906769, 63.98177], + [-81.306252, 64.070831], + [-82.095833, 63.924999], + [-82.427086, 63.810417], + [-82.13385, 63.695313], + [-81.072914, 63.450001], + [-80.208336, 63.802082], + [-80.60833, 63.858334], + [-80.54792, 63.985416], + [-80.885414, 64.11042] + ] + ], + [ + [ + [-63.136112, 46.199165], + [-62.82888794, 45.964443208], + [-62.453903, 46.017075], + [-62.508888245, 46.20916748], + [-62.168056489, 46.483333588], + [-63.047501, 46.415833], + [-63.667473, 46.56834], + [-63.787776948, 46.438610077], + [-63.986946, 46.73], + [-63.99539566, 47.058776855], + [-64.397781372, 46.72416687], + [-64.055099, 46.577579], + [-64.133331298, 46.401390075], + [-63.755554198, 46.390277862], + [-63.621665954, 46.217777252], + [-63.251945, 46.129166], + [-63.136112, 46.199165] + ] + ], + [ + [ + [-105.847916, 77.76667], + [-105.761978, 77.469269], + [-105.276566, 77.173439], + [-104.191666, 77.081253], + [-104.348434, 77.24115], + [-105.199997, 77.631248], + [-105.847916, 77.76667] + ] + ], + [ + [ + [-79.560417, 62.40625], + [-79.854164, 62.391666], + [-80.203651, 62.153648], + [-80.181252, 61.785416], + [-79.716667, 61.591667], + [-79.25885, 62.235935], + [-79.560417, 62.40625] + ] + ], + [ + [ + [-117.622917, 76.116669], + [-118.695831, 75.895836], + [-119.402084, 75.61042], + [-118.54792, 75.506248], + [-118.212502, 75.606247], + [-117.450516, 76.095314], + [-117.622917, 76.116669] + ] + ], + [ + [ + [-90.829689, 77.654686], + [-91.206253, 77.614586], + [-91.20417, 77.38958], + [-90.268753, 77.199997], + [-89.71875, 77.306252], + [-89.789581, 77.495834], + [-90.32917, 77.627083], + [-90.829689, 77.654686] + ] + ], + [ + [ + [-99.558853, 80.149483], + [-100.159897, 80.034897], + [-100.060417, 79.877083], + [-99.54792, 79.89167], + [-99.302086, 79.75], + [-98.816666, 79.67292], + [-98.650002, 79.770836], + [-98.810936, 80.075516], + [-99.558853, 80.149483] + ] + ], + [ + [ + [-81.35611, 53.217224], + [-81.896606, 53.151917], + [-81.948891, 52.961113], + [-80.739998, 52.696388], + [-80.821594, 53.007507], + [-81.11441, 53.194504], + [-81.35611, 53.217224] + ] + ], + [ + [ + [-104.100517, 75.448433], + [-104.449997, 75.445831], + [-104.685417, 75.341667], + [-104.822914, 75.114586], + [-104.439583, 75.033333], + [-103.852081, 75.060417], + [-103.594269, 75.15052], + [-103.808853, 75.36615], + [-104.100517, 75.448433] + ] + ], + [ + [ + [-131.796661, 53.254444], + [-132.325562, 53.039722], + [-132.23761, 52.799683], + [-131.67038, 52.477112], + [-131.261719, 52.118713], + [-131.466766, 52.500832], + [-131.830551, 52.715279], + [-131.623291, 52.918274], + [-131.796661, 53.254444] + ] + ], + [ + [ + [-104.09375, 76.675003], + [-104.651566, 76.605728], + [-104.289581, 76.36042], + [-103.791664, 76.3125], + [-103.26458, 76.347916], + [-102.997917, 76.449997], + [-103.593231, 76.533852], + [-104.09375, 76.675003] + ] + ], + [ + [ + [-102.841667, 76.318748], + [-104.26667, 76.224998], + [-104.370834, 76.102081], + [-103.881248, 76.043747], + [-103.102081, 76.0625], + [-102.654167, 76.116669], + [-102.841667, 76.318748] + ] + ], + [ + [ + [-74.30365, 68.175522], + [-74.78125, 68.010414], + [-74.487503, 67.789581], + [-73.404167, 67.777084], + [-73.518753, 68.050003], + [-73.781769, 67.992187], + [-74.318748, 68.09375], + [-74.30365, 68.175522] + ] + ], + [ + [ + [-128.995483, 53.296326], + [-129.201111, 52.962776], + [-129.063339, 52.738609], + [-128.592712, 52.608276], + [-128.57428, 53.092102], + [-128.995483, 53.296326] + ] + ], + [ + [ + [-114.315102, 78.070312], + [-115.054169, 77.92083], + [-114.272919, 77.708336], + [-113.775002, 77.743752], + [-113.768753, 77.904167], + [-114.315102, 78.070312] + ] + ], + [ + [ + [-97.695312, 74.118233], + [-98.012497, 74.112503], + [-99.434898, 73.906769], + [-98.856247, 73.810417], + [-98.091667, 73.893753], + [-97.731766, 74.002602], + [-97.695312, 74.118233] + ] + ], + [ + [ + [-79.119194, 56.478352], + [-79.265015, 56.553539], + [-79.397095, 56.22076], + [-79.543602, 56.260349], + [-80.012222, 55.923054], + [-79.855255, 55.835278], + [-79.447014, 55.885792], + [-79.05558, 56.34486], + [-79.119194, 56.478352] + ] + ], + [ + [ + [-86.61927, 68.297401], + [-86.884895, 68.182816], + [-86.958336, 67.895836], + [-86.54792, 67.729164], + [-86.36042, 67.897919], + [-86.454689, 68.249481], + [-86.61927, 68.297401] + ] + ], + [ + [ + [-78.45208, 69.393753], + [-78.929687, 69.113022], + [-79.175003, 69.097916], + [-79.262497, 68.837502], + [-78.810936, 68.919266], + [-78.206772, 69.297401], + [-78.45208, 69.393753] + ] + ], + [ + [ + [-78.136978, 63.46719], + [-78.51458, 63.433334], + [-77.939583, 63.089584], + [-77.558334, 63.170834], + [-77.65625, 63.422916], + [-78.136978, 63.46719] + ] + ], + [ + [ + [-84.372398, 66.139061], + [-84.376564, 65.985939], + [-83.811981, 65.679687], + [-83.314583, 65.614586], + [-83.287498, 65.724998], + [-83.710938, 65.80365], + [-83.679688, 65.934898], + [-84.372398, 66.139061] + ] + ], + [ + [ + [-130.190125, 53.905884], + [-130.206116, 53.72139], + [-129.58815, 53.211777], + [-129.334412, 53.363609], + [-130.190125, 53.905884] + ] + ], + [ + [ + [-101.723434, 77.906769], + [-102.449997, 77.881248], + [-102.081253, 77.6875], + [-100.88385, 77.752602], + [-101.723434, 77.906769] + ] + ], + [ + [ + [-64.979164, 61.681252], + [-65.455734, 61.639065], + [-64.86042, 61.316666], + [-64.6651, 61.477604], + [-64.699997, 61.65625], + [-64.979164, 61.681252] + ] + ], + [ + [ + [-79.605728, 69.811981], + [-79.960419, 69.724998], + [-80.479164, 69.793747], + [-80.21302, 69.534897], + [-79.368752, 69.6875], + [-79.605728, 69.811981] + ] + ], + [ + [ + [-114.058334, 76.89167], + [-114.558334, 76.88958], + [-114.67083, 76.752083], + [-113.508331, 76.73333], + [-113.485939, 76.830734], + [-114.058334, 76.89167] + ] + ], + [ + [ + [-102.381248, 76.09375], + [-102.845833, 76.074997], + [-103.86042, 75.949997], + [-103.729164, 75.841667], + [-102.493752, 76.012497], + [-102.381248, 76.09375] + ] + ], + [ + [ + [-89.974998, 76.835419], + [-90.5, 76.79792], + [-90.199997, 76.518753], + [-89.816666, 76.48333], + [-89.974998, 76.835419] + ] + ], + [ + [ + [-77.279686, 63.686981], + [-77.344269, 63.576565], + [-77.01667, 63.414585], + [-76.693748, 63.362499], + [-76.568748, 63.458332], + [-77.03125, 63.674999], + [-77.279686, 63.686981] + ] + ], + [ + [ + [-71.104683, 62.886978], + [-70.677605, 62.548435], + [-70.167183, 62.57552], + [-70.36042, 62.724998], + [-71.104683, 62.886978] + ] + ], + [ + [ + [-102.129166, 75.995834], + [-103.061981, 75.903648], + [-103.356247, 75.756248], + [-102.5, 75.800003], + [-102.129166, 75.995834] + ] + ], + [ + [ + [-130.458328, 53.634445], + [-130.550842, 53.552406], + [-129.973877, 53.193611], + [-129.752197, 53.214111], + [-130.106674, 53.514168], + [-130.458328, 53.634445] + ] + ], + [ + [ + [-68.106247, 60.59375], + [-68.231247, 60.587502], + [-68.436981, 60.270309], + [-67.970833, 60.289585], + [-67.827599, 60.446354], + [-68.106247, 60.59375] + ] + ], + [ + [ + [-96.295311, 75.65052], + [-96.988022, 75.482811], + [-96.84375, 75.36042], + [-96.422401, 75.526566], + [-96.122917, 75.460419], + [-95.908852, 75.564064], + [-96.295311, 75.65052] + ] + ], + [ + [ + [-85.031769, 66.026566], + [-85.091148, 65.735939], + [-84.724998, 65.539581], + [-84.699997, 65.831253], + [-85.031769, 66.026566] + ] + ], + [ + [ + [-77.079689, 69.449478], + [-77.318748, 69.431252], + [-77.20208, 69.127083], + [-76.6875, 69.3125], + [-77.079689, 69.449478] + ] + ], + [ + [ + [-75.21875, 68.71875], + [-75.391151, 68.626564], + [-75.229164, 68.435417], + [-74.772919, 68.458336], + [-74.96302, 68.653648], + [-75.21875, 68.71875] + ] + ], + [ + [ + [-71.857811, 71.055733], + [-72.23333, 70.88958], + [-71.96302, 70.823433], + [-71.4151, 70.925522], + [-71.857811, 71.055733] + ] + ], + [ + [ + [-95.76458, 69.625], + [-95.947914, 69.51458], + [-95.489586, 69.333336], + [-95.319267, 69.513016], + [-95.76458, 69.625] + ] + ], + [ + [ + [-85.73333, 79.068748], + [-86.46875, 78.895836], + [-85.650002, 78.941666], + [-85.229164, 79.052086], + [-85.73333, 79.068748] + ] + ], + [ + [ + [-94.466667, 75.977081], + [-94.84375, 75.949997], + [-94.816666, 75.79583], + [-94.287498, 75.758331], + [-94.466667, 75.977081] + ] + ], + [ + [ + [-100.54583, 76.76458], + [-101.45208, 76.65625], + [-101.145836, 76.583336], + [-100.254166, 76.747917], + [-100.54583, 76.76458] + ] + ], + [ + [ + [-100.443748, 69.043747], + [-100.597397, 68.768234], + [-100.345314, 68.731766], + [-100.127602, 68.918228], + [-100.443748, 69.043747] + ] + ], + [ + [ + [-78.122398, 69.746353], + [-78.831253, 69.518753], + [-78.441666, 69.522919], + [-77.938019, 69.643234], + [-78.122398, 69.746353] + ] + ], + [ + [ + [-78.908333, 76.112503], + [-79.552086, 75.949997], + [-79.556252, 75.818748], + [-78.870834, 76.029167], + [-78.908333, 76.112503] + ] + ], + [ + [ + [-87.063019, 70.149483], + [-87.131248, 70], + [-86.560417, 69.970833], + [-86.633331, 70.118752], + [-87.063019, 70.149483] + ] + ], + [ + [ + [-96.802086, 73.189583], + [-97.020836, 73.154167], + [-96.987503, 72.9375], + [-96.662498, 72.939583], + [-96.802086, 73.189583] + ] + ], + [ + [ + [-126.789169, 49.885277], + [-126.969597, 49.79805], + [-126.982498, 49.75], + [-126.614052, 49.590603], + [-126.669243, 49.854778], + [-126.747932, 49.8522], + [-126.789169, 49.885277] + ] + ], + [ + [ + [-127.24086, 52.423267], + [-127.472107, 52.319611], + [-127.765511, 52.245979], + [-127.636192, 52.140366], + [-127.21563, 52.320812], + [-127.24086, 52.423267] + ] + ], + [ + [ + [-128.154663, 52.773079], + [-128.38501, 52.803894], + [-128.436417, 52.556744], + [-128.291107, 52.523888], + [-128.154663, 52.773079] + ] + ], + [ + [ + [-96.122398, 69.567184], + [-96.543228, 69.570313], + [-96.112503, 69.352081], + [-96.122398, 69.567184] + ] + ], + [ + [ + [-101.854164, 68.816666], + [-102.206253, 68.720833], + [-101.824478, 68.591148], + [-101.854164, 68.816666] + ] + ], + [ + [ + [-61.476112, 56.954166], + [-61.646679, 56.724697], + [-61.408333, 56.601387], + [-61.476112, 56.954166] + ] + ], + [ + [ + [-130.413086, 54.095093], + [-130.663605, 53.994301], + [-130.343597, 53.827606], + [-130.413086, 54.095093] + ] + ], + [ + [ + [-128.856079, 53.713928], + [-129.177078, 53.626156], + [-129.180023, 53.411491], + [-128.856079, 53.713928] + ] + ], + [ + [ + [-95.349998, 80.699997], + [-96.006248, 80.660416], + [-95.189583, 80.60833], + [-95.349998, 80.699997] + ] + ], + [ + [ + [-78.667549, 56.434238], + [-78.920853, 56.126331], + [-78.670326, 56.169518], + [-78.667549, 56.434238] + ] + ], + [ + [ + [-73.137497, 71.550003], + [-73.2724, 71.365105], + [-72.970833, 71.316666], + [-73.137497, 71.550003] + ] + ], + [ + [ + [-129.259445, 52.822224], + [-129.069443, 52.514999], + [-128.929993, 52.612778], + [-129.259445, 52.822224] + ] + ], + [ + [ + [-126.597656, 50.690289], + [-126.26889, 50.654999], + [-126.228035, 50.822395], + [-126.597656, 50.690289] + ] + ], + [ + [ + [-127.967697, 52.067162], + [-128.23111, 51.846668], + [-128.020004, 51.816113], + [-127.967697, 52.067162] + ] + ] + ] + }, + "properties": { + "id": "156fe808-aad4-4f92-a850-303811ef4081", + "code": "CAN", + "name": "Canada", + "abbreviation": "C-CAN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [48.879386902, 38.437000275], + [48.940681457, 37.880924225], + [49.074810029, 37.653205872], + [49.323673248, 37.515064239], + [50.167907716, 37.393962861], + [50.29901886, 37.155448915], + [50.960655213, 36.782432556], + [51.673328399, 36.599208832], + [52.061759948, 36.588085174], + [53.284202576, 36.8490448], + [53.883243561, 36.785064697], + [54.036258697, 36.957992554], + [53.897811889, 37.340808868], + [53.814163207, 37.814689636], + [53.860424042, 38.64951706], + [53.993560791, 38.93498993], + [53.571869, 39.188057], + [53.551284836, 39.296523962], + [53.096298218, 39.433078766], + [53.236183166, 39.545181274], + [53.577148081, 39.559826051], + [53.430641175, 39.721385955], + [53.488838195, 39.945686341], + [52.757526398, 40.019752502], + [52.736713409, 40.495632171], + [52.940193005, 40.947292025], + [52.767284393, 41.38925171], + [52.441433127, 41.765449602], + [52.433998108, 42.160961152], + [52.740909577, 42.62204361], + [52.430751801, 42.838626862], + [51.893978118, 42.841346742], + [51.652057647, 43.177623749], + [51.268287659, 43.151161194], + [51.266693114, 43.561321259], + [51.016460419, 43.805324555], + [50.772907258, 44.235294341], + [50.264793396, 44.351593018], + [50.308731, 44.644592], + [50.89949417, 44.611545562], + [51.086864472, 44.476280213], + [51.265182496, 44.579563141], + [50.960926056, 44.98260498], + [51.243549173, 45.049606324], + [51.282299029, 45.248268032], + [51.735145883, 45.445243863], + [51.96490097, 45.392425538], + [52.71666, 45.442379001], + [52.925735473, 45.912460327], + [52.832126971, 46.145469915], + [53.030757639, 46.594688236], + [52.618930817, 46.875389099], + [52.256348, 46.74585], + [51.675995, 46.830853], + [51.510654449, 46.983131408], + [50.913021087, 46.958156585], + [50.574543, 46.766182], + [50.452445984, 46.854782106], + [49.966854, 46.594189], + [49.618847, 46.269951], + [49.242080688, 46.432929993], + [49.163757325, 46.361011506], + [49.202659608, 46.209423065], + [48.778842926, 45.77584076], + [48.589038849, 45.921451568], + [48.238803864, 45.60303116], + [47.874942779, 45.569210052], + [47.690681458, 45.712604522], + [47.546447754, 45.205715179], + [47.115840911, 44.788352967], + [46.915401459, 44.821502685], + [46.782440186, 44.482982635], + [46.993804932, 44.438549043], + [47.112876892, 44.211730957], + [47.525112152, 43.835979462], + [47.721809386, 43.858303071], + [47.474765777, 43.388343811], + [47.46616745, 43.015335082], + [47.707035064, 42.878929138], + [47.715496063, 42.683696747], + [48.072212218, 42.339176178], + [48.371982575, 41.911006927], + [48.505107879, 41.864120484], + [48.66060257, 41.793498993], + [49.095218658, 41.331329346], + [49.205043792, 41.015556336], + [49.498500823, 40.826171875], + [49.543399812, 40.6314888], + [50.062662502, 40.592899248], + [50.331802, 40.404396], + [49.680221649, 40.275428794], + [49.469009399, 40.170124055], + [49.478370667, 39.98557663], + [49.280376434, 39.514598848], + [49.189662934, 39.048236847], + [48.949310303, 39.161060334], + [48.825252533, 38.824790954], + [48.879386902, 38.437000275] + ] + ] + }, + "properties": { + "id": "04ecc840-23e2-45be-bad5-5ec2f7286f31", + "code": "XCA", + "name": "Caspian Sea", + "abbreviation": "C-XCA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.251808167, 19.274860381], + [-81.115135193, 19.292917252], + [-81.095970154, 19.353195192], + [-81.237083, 19.349583], + [-81.251808167, 19.274860381] + ] + ] + }, + "properties": { + "id": "639c2d34-3d40-4dc1-bcb3-6c3d387f5eab", + "code": "CYM", + "name": "Cayman Islands", + "abbreviation": "C-CYM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.189256826, 2.224806177], + [16.520128251, 2.842302084], + [16.596540451, 3.477276088], + [17.606319427, 3.641251087], + [18.123521805, 3.566071034], + [18.490898132, 3.651686906], + [18.63500023, 3.471093416], + [18.648849486, 4.076396942], + [18.545999527, 4.302000046], + [18.794000625, 4.422999859], + [19.097999573, 4.921999932], + [19.403354644, 5.121106624], + [19.847999573, 5.073999882], + [20.357860564, 4.736951828], + [20.612672805, 4.401634216], + [20.856983185, 4.445547103], + [21.564785005, 4.247347833], + [21.659999847, 4.309000015], + [22.281259536, 4.11209488], + [22.550441742, 4.215419769], + [22.790510177, 4.714529992], + [22.974784851, 4.846968651], + [23.275201798, 4.63040018], + [24.090251922, 4.910327912], + [24.407299043, 5.110554695], + [24.784543991, 4.905525207], + [25.317970276, 5.036222934], + [25.49746704, 5.364079], + [25.90848732, 5.164886951], + [26.208040237, 5.237008095], + [26.488008499, 5.046394826], + [26.872159957, 5.033754826], + [27.078672409, 5.204131127], + [27.463420868, 5.016152859], + [27.233200073, 5.426796914], + [27.153097152, 5.771763801], + [26.560180663, 6.033278943], + [26.29789734, 6.387691975], + [26.415109635, 6.637384891], + [26.11469078, 6.815334797], + [25.804990768, 7.152908803], + [25.361097335, 7.344515801], + [25.173980714, 7.569643974], + [25.284540177, 7.803597927], + [24.909490585, 8.047219277], + [24.864749909, 8.180498123], + [24.203580857, 8.303997994], + [24.257768631, 8.67911911], + [23.52010727, 8.726968765], + [23.588710785, 8.93418789], + [23.47631073, 9.141964913], + [23.653650285, 9.293912889], + [23.668241501, 9.891513825], + [23.301879884, 10.474639892], + [22.88133812, 10.93089962], + [22.520679475, 11.007570267], + [21.791240692, 10.798089981], + [21.675689697, 10.237639426], + [21.522939682, 10.215540886], + [20.991529465, 9.734949113], + [20.921909333, 9.533323288], + [20.528640747, 9.337065696], + [20.353200913, 9.128197671], + [19.927139281, 9.060796738], + [19.091669082, 9.020450592], + [18.868299484, 8.875700952], + [19.120649337, 8.668691636], + [18.601600647, 8.046739578], + [17.671670914, 7.982767105], + [16.843849183, 7.529787063], + [16.595449448, 7.87835598], + [16.392770768, 7.671136857], + [15.80959034, 7.441069126], + [15.551923752, 7.570376873], + [15.245532037, 7.267167092], + [15.063464165, 6.784061909], + [14.961637496, 6.749874115], + [14.739759444, 6.250890255], + [14.418822288, 6.032466412], + [14.620351791, 5.889361859], + [14.630098343, 5.509177209], + [14.529488564, 5.273755075], + [14.692684173, 5.102640152], + [14.732311, 4.616427], + [15.094683648, 4.290076255], + [15.076349, 4.021727], + [15.248896949, 3.710672085], + [15.792780876, 3.108941556], + [16.032058715, 2.983955861], + [16.072393418, 2.464571238], + [16.189256826, 2.224806177] + ] + ] + }, + "properties": { + "id": "e9e81404-b954-4e13-a97f-78c3846fa4a8", + "code": "CAF", + "name": "Central African Republic", + "abbreviation": "C-CAF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [15.551923752, 7.570376873], + [15.80959034, 7.441069126], + [16.392770768, 7.671136857], + [16.595449448, 7.87835598], + [16.843849183, 7.529787063], + [17.671670914, 7.982767105], + [18.601600647, 8.046739578], + [19.120649337, 8.668691636], + [18.868299484, 8.875700952], + [19.091669082, 9.020450592], + [19.927139281, 9.060796738], + [20.353200913, 9.128197671], + [20.528640747, 9.337065696], + [20.921909333, 9.533323288], + [20.991529465, 9.734949113], + [21.522939682, 10.215540886], + [21.675689697, 10.237639426], + [21.791240692, 10.798089981], + [22.520679475, 11.007570267], + [22.88133812, 10.93089962], + [22.986078263, 11.199601173], + [22.56608963, 11.620661736], + [22.635040284, 12.026799202], + [22.372142792, 12.441511155], + [22.458890915, 12.619771004], + [22.197887421, 12.750161171], + [21.934240342, 12.639361382], + [21.925670623, 13.046876907], + [22.284210204, 13.349691392], + [22.092212677, 13.776200295], + [22.536350249, 14.118578912], + [22.411161423, 14.595859527], + [22.717199326, 14.686429978], + [22.671070099, 14.848720551], + [22.999729156, 15.237211227], + [22.930589676, 15.550810815], + [23.122280121, 15.709900857], + [23.578140259, 15.753810882], + [24.001709, 15.704895], + [24.000001907, 19.50817303], + [21.6808815, 20.705064774], + [18.726081848, 22.167699815], + [15.9981699, 23.45037079], + [14.995869636, 23.001890182], + [15.191865922, 21.989744186], + [15.198430062, 21.491306305], + [15.625590324, 20.96323967], + [15.590099335, 20.774469377], + [15.995641709, 20.348470687], + [15.75355053, 19.947784424], + [15.593798637, 18.731866837], + [15.505545616, 16.897871017], + [14.384760857, 15.73155117], + [13.789679527, 14.863208772], + [13.696022033, 14.551117898], + [13.485630036, 14.358268738], + [13.634547235, 13.710688591], + [14.085529327, 13.077386857], + [14.45982933, 13.073822022], + [14.588504791, 12.744703293], + [14.823895454, 12.63351059], + [15.121359826, 11.779808999], + [15.058415414, 11.395255089], + [15.080502511, 10.786525727], + [15.150072098, 10.531280518], + [15.536723137, 10.098784447], + [14.802422523, 9.935675621], + [14.208049774, 10.006105424], + [13.982252121, 9.644258499], + [14.384911536, 9.267045975], + [14.492976188, 9.057681084], + [15.108338356, 8.656015397], + [15.58684349, 7.773245334], + [15.551923752, 7.570376873] + ] + ] + }, + "properties": { + "id": "b9953d64-f520-4c13-8732-5049d422edbf", + "code": "TCD", + "name": "Chad", + "abbreviation": "C-TCD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-67.181492683, -22.814198382], + [-67.587988568, -22.906568379], + [-67.883150134, -22.83444802], + [-67.853363445, -22.557292016], + [-67.965161463, -22.05414272], + [-68.180564745, -21.604072323], + [-68.178367054, -21.30354183], + [-68.415715014, -20.941426367], + [-68.439097392, -20.640955624], + [-68.738742092, -20.456789412], + [-68.763484151, -20.078681206], + [-68.566246132, -20.050070443], + [-68.688861978, -19.748411644], + [-68.404887643, -19.416169786], + [-68.889647131, -19.043426332], + [-69.033063049, -18.629412354], + [-69.081219707, -18.091429223], + [-69.31293257, -17.908921723], + [-69.468683249, -17.498589528], + [-69.822570801, -17.685899733], + [-69.750244721, -17.947341111], + [-69.965903027, -18.262184056], + [-70.378163256, -18.350860664], + [-70.357875727, -18.799987278], + [-70.100470726, -20.07963356], + [-70.051297, -20.699249999], + [-69.819839001, -21.117135001], + [-69.930628999, -21.424628999], + [-70.145845, -21.636778], + [-70.239299, -22.489432], + [-70.387115215, -23.071089465], + [-70.582188901, -23.104859328], + [-70.589434, -23.426552], + [-70.403674, -23.534922], + [-70.501173, -23.791407], + [-70.579852, -24.551777], + [-70.455433, -25.383516], + [-70.629645, -25.507031], + [-70.730656, -25.779119], + [-70.626709, -26.004412], + [-70.738135, -26.756617], + [-70.970242, -27.169323], + [-70.898377, -27.621343], + [-71.031817, -27.658814], + [-71.295947857, -28.680443306], + [-71.516856428, -28.906769243], + [-71.498013404, -29.180218857], + [-71.326685, -29.3466], + [-71.293579628, -29.947742646], + [-71.375371201, -30.15656622], + [-71.653345108, -30.273595466], + [-71.713883971, -30.59932215], + [-71.670253823, -31.145013086], + [-71.490676, -31.968316], + [-71.541971, -32.178264], + [-71.407531, -32.39303], + [-71.431247, -32.641633], + [-71.65448588, -33.027269575], + [-71.682679949, -33.729164133], + [-72.008708094, -34.132101926], + [-72.053111649, -34.679926175], + [-72.188291915, -35.066678011], + [-72.638047719, -35.602068237], + [-72.564276118, -35.755406185], + [-72.785900497, -35.978045354], + [-72.808358808, -36.273254051], + [-73.15307, -37.117754], + [-73.355688388, -37.243409234], + [-73.644666126, -37.197470094], + [-73.680869, -37.630528], + [-73.478993972, -37.998132704], + [-73.488589795, -38.656895695], + [-73.203999728, -39.365935746], + [-73.451072, -39.853883], + [-73.678884, -39.96585], + [-73.716352, -40.536961], + [-73.936044, -40.963354], + [-73.725489, -41.751519], + [-73.160309, -41.791007], + [-72.922115, -41.475001], + [-72.628292, -41.70799], + [-72.810434, -41.971646], + [-72.535043, -42.043524], + [-72.833957, -42.294109], + [-72.83577, -42.832871], + [-72.712538, -42.913202], + [-73.062745, -43.322786], + [-73.00256, -43.825747], + [-73.271085, -44.185156], + [-72.975936, -44.282823], + [-72.664876, -44.503079], + [-72.739695, -44.744514], + [-73.097344, -44.950774], + [-73.355609, -44.954429], + [-73.195328, -45.292372], + [-73.491328, -45.467078], + [-73.531246, -45.824961], + [-73.316243, -45.899499], + [-73.804555, -46.573308], + [-73.726146, -46.231638], + [-74.103923, -45.808405], + [-74.692984, -45.816294], + [-75.089141, -45.891113], + [-75.064346, -46.242889], + [-75.641254, -46.70021], + [-75.467439, -46.965078], + [-75.254207, -46.852838], + [-75.467937, -46.681468], + [-75.04048, -46.618332], + [-74.937651, -46.752741], + [-74.599017, -46.820304], + [-74.300432, -46.762176], + [-74.06194, -46.984611], + [-74.455357, -47.366532], + [-74.348203, -47.599563], + [-74.472604, -47.778016], + [-73.681029, -47.759849], + [-73.549004, -48.128984], + [-74.070645, -47.966312], + [-74.595886, -47.982359], + [-73.980322, -48.428957], + [-74.328559, -48.577413], + [-74.39088, -49.388605], + [-74.147793, -49.528901], + [-74.306043, -49.642573], + [-74.351914, -50.001944], + [-74.682569, -50.162167], + [-74.274639, -50.478773], + [-74.096246, -50.869755], + [-74.124712, -51.182954], + [-73.768202, -51.244983], + [-73.934908, -51.468926], + [-73.521875, -52.060713], + [-73.270094, -52.161469], + [-73.124616, -51.93832], + [-72.820462, -51.939524], + [-73.362436, -52.221592], + [-73.622346, -52.106921], + [-73.668881, -52.624768], + [-73.289558, -52.725611], + [-73.18749, -53.110631], + [-72.950475, -53.034139], + [-73.025827, -52.861175], + [-72.338002, -52.536864], + [-71.559577, -52.562683], + [-71.383467, -52.721609], + [-71.35859, -52.807425], + [-71.119242, -52.912389], + [-71.34071, -53.112975], + [-71.731236, -53.231518], + [-72.290695, -53.25088], + [-72.477668, -53.393965], + [-72.147932, -53.667512], + [-71.305641, -53.895229], + [-70.971016, -53.782973], + [-70.98837, -53.39], + [-70.796291316, -52.755741609], + [-70.526319009, -52.725738229], + [-69.845973758, -52.487807469], + [-69.670627191, -52.538360794], + [-69.439505341, -52.256980984], + [-69.138559463, -52.198831709], + [-68.433293, -52.397915], + [-69.190119444, -52.150044444], + [-69.486129663, -52.151632106], + [-69.995494443, -52.000708332], + [-71.890351, -52.00008], + [-72.338238, -51.584123], + [-72.258646111, -51.24418388], + [-72.285614976, -50.659898482], + [-72.726647548, -50.617677445], + [-73.145502512, -50.781864894], + [-73.364469704, -50.518623004], + [-73.521530682, -50.153553896], + [-73.490898941, -49.81686292], + [-73.054168004, -49.465268383], + [-73.141814206, -49.179972521], + [-72.919671096, -48.935912125], + [-72.530041543, -48.796240413], + [-72.580046554, -48.486580242], + [-72.228044013, -48.318480186], + [-72.527800304, -47.936881641], + [-72.342077001, -47.455816], + [-71.868416452, -47.233713127], + [-71.95581618, -46.815213995], + [-71.64779302, -46.688304825], + [-71.794197195, -46.192042943], + [-71.618024497, -45.980690747], + [-71.79457471, -45.662713225], + [-71.333301673, -45.318743324], + [-71.559853112, -44.977869509], + [-72.006406258, -44.783845574], + [-71.205712551, -44.751327539], + [-71.128883814, -44.471122393], + [-71.389803141, -44.385807672], + [-71.794390693, -44.414604117], + [-71.797811421, -44.192879764], + [-71.581183186, -43.6518247], + [-71.9302424, -43.457052819], + [-71.760372925, -43.164801116], + [-72.037785766, -43.010184138], + [-72.17871063, -42.695552514], + [-72.01054811, -42.48835196], + [-72.172372581, -42.138930024], + [-71.727562064, -42.116925582], + [-71.829096318, -41.481991565], + [-71.818180143, -41.062598676], + [-71.965041607, -40.745680183], + [-71.827741308, -40.205795982], + [-71.592099224, -39.912363552], + [-71.683271746, -39.56787833], + [-71.373655537, -39.28244924], + [-71.426768338, -38.922759467], + [-70.925051132, -38.763548118], + [-70.983272634, -38.105245545], + [-71.211416718, -37.689226369], + [-71.118037151, -37.491514474], + [-71.17382, -36.96809], + [-71.018217353, -36.47394123], + [-70.688477322, -36.407847756], + [-70.705580202, -36.272048801], + [-70.420954386, -36.156037296], + [-70.365178385, -35.925422784], + [-70.432174963, -35.318485103], + [-70.217874398, -34.611871601], + [-69.806585807, -34.248088741], + [-69.897750177, -33.848213471], + [-69.799914912, -33.288108503], + [-70.038717763, -33.270228423], + [-70.148729014, -32.465920957], + [-70.321945136, -32.258538434], + [-70.208194844, -31.977980942], + [-70.454499837, -31.849211669], + [-70.566551757, -31.583348822], + [-70.49769772, -31.125102941], + [-70.399898278, -31.167815713], + [-70.195166881, -30.492360208], + [-69.896476609, -30.354594573], + [-69.963840001, -30.0883], + [-69.879702066, -29.733743499], + [-69.99705676, -29.28507877], + [-69.791733093, -29.134665384], + [-69.624443336, -28.37844621], + [-69.121431621, -27.898420047], + [-68.988255483, -27.447123635], + [-68.787879498, -27.103729943], + [-68.621655914, -27.169165029], + [-68.263233, -26.918335], + [-68.588014152, -26.492060427], + [-68.381065119, -26.177901455], + [-68.589488841, -25.448364052], + [-68.457101718, -25.125571144], + [-68.56809, -24.79555], + [-68.2458, -24.39588], + [-67.322616668, -24.034161112], + [-66.99017821, -22.999960028], + [-67.181492683, -22.814198382] + ] + ], + [ + [ + [-68.610591855, -52.653473], + [-68.795656164, -52.582131143], + [-69.120586754, -52.699559825], + [-69.430258554, -52.452982079], + [-69.747068107, -52.776509315], + [-70.417690353, -53.012635043], + [-70.444823634, -53.37551112], + [-70.213564001, -53.477230615], + [-69.886555375, -53.379663696], + [-69.37501976, -53.356481723], + [-69.353206527, -53.521734871], + [-69.899794788, -53.659792857], + [-70.17447752, -53.834294031], + [-70.024256744, -54.10558341], + [-69.163199717, -54.384284066], + [-69.201632629, -54.44862216], + [-70.06719012, -54.252158258], + [-70.267426625, -54.34770566], + [-70.909758227, -54.123106987], + [-70.996828696, -54.45564881], + [-71.350521, -54.36765], + [-72.017307, -54.516651], + [-71.473878, -54.684414], + [-70.975527, -54.634338], + [-71.002631, -54.782484], + [-70.612668, -54.910891], + [-69.688526, -54.83642], + [-69.084594, -54.964859], + [-68.610413, -54.893407], + [-68.610591855, -52.653473] + ] + ], + [ + [ + [-73.360074, -42.297416], + [-73.488951, -42.146002], + [-73.538704, -41.796881], + [-73.914677, -41.788996], + [-74.17201, -42.26728], + [-74.167446, -42.898953], + [-74.402128, -43.235489], + [-73.799645, -43.416849], + [-73.563587, -43.113261], + [-73.472716, -42.813658], + [-73.78845, -42.596005], + [-73.672758, -42.400967], + [-73.360074, -42.297416] + ] + ], + [ + [ + [-75.253166, -49.618196], + [-75.110724, -49.863642], + [-74.873351, -49.530377], + [-74.871172, -50.016601], + [-74.635281, -50.058952], + [-74.406679, -49.902354], + [-74.479476, -49.514023], + [-74.388799, -49.310594], + [-74.483173, -48.693504], + [-74.682541, -48.652986], + [-74.992268, -48.76439], + [-74.793615, -49.085369], + [-74.99824, -49.219619], + [-75.45297, -49.274645], + [-75.253166, -49.618196] + ] + ], + [ + [ + [-68.50434, -54.924433], + [-69.913841, -55.094063], + [-69.768709, -55.35198], + [-69.231595, -55.522466], + [-69.229157, -55.254492], + [-68.946198, -55.280998], + [-68.777803, -55.513304], + [-68.599071, -55.428355], + [-67.979165, -55.631066], + [-68.50434, -54.924433] + ] + ], + [ + [ + [-71.468247, -52.662398], + [-71.85594, -52.69817], + [-71.960477, -52.652548], + [-72.201698, -52.703154], + [-72.423683, -52.815133], + [-72.702362, -52.729328], + [-73.008584, -52.861178], + [-72.736345, -53.200088], + [-73.213183, -53.243422], + [-72.556456, -53.539218], + [-72.521362, -53.30039], + [-72.306761, -53.149657], + [-71.409131, -52.833132], + [-71.468247, -52.662398] + ] + ], + [ + [ + [-67.97098, -54.893883], + [-68.183002, -54.988203], + [-68.114644, -55.223841], + [-67.222538, -55.321208], + [-67.043877, -55.131372], + [-67.31444, -54.92631], + [-67.97098, -54.893883] + ] + ], + [ + [ + [-73.033365, -53.378152], + [-73.246217, -53.632884], + [-72.86212, -53.734006], + [-72.653459, -54.045392], + [-72.376886, -54.058622], + [-72.312361, -53.850242], + [-72.385658, -53.642305], + [-73.033365, -53.378152] + ] + ], + [ + [ + [-72.968914, -44.36671], + [-73.247868, -44.438786], + [-73.208624, -44.624391], + [-73.451999, -44.639052], + [-73.215242, -44.937469], + [-72.821007, -44.7344], + [-72.684957, -44.530165], + [-72.968914, -44.36671] + ] + ], + [ + [ + [-74.679074, -52.716179], + [-74.56816, -52.96041], + [-74.077798, -53.139659], + [-73.868857, -53.087605], + [-73.609347, -53.337174], + [-73.096499, -53.374763], + [-73.440468, -53.152588], + [-74.075725, -52.960922], + [-74.412124, -52.930809], + [-74.679074, -52.716179] + ] + ], + [ + [ + [-71.91498, -53.849754], + [-72.286839, -53.918558], + [-72.341808, -54.058534], + [-72.564885, -54.287809], + [-72.215085, -54.104159], + [-71.846315, -54.321501], + [-71.649556, -53.925393], + [-71.91498, -53.849754] + ] + ], + [ + [ + [-71.589968, -53.93649], + [-71.671407, -54.230964], + [-71.145698, -54.399236], + [-71.000936, -54.091399], + [-71.589968, -53.93649] + ] + ], + [ + [ + [-70.470162, -53.56843], + [-70.901383, -53.934978], + [-70.844844, -54.119814], + [-70.369848, -54.047818], + [-70.470162, -53.56843] + ] + ], + [ + [ + [-75.291465, -49.993764], + [-75.469354, -50.365313], + [-75.260663, -50.435801], + [-74.770691, -50.151992], + [-75.291465, -49.993764] + ] + ], + [ + [ + [-75.311381, -47.998921], + [-75.532539, -48.099802], + [-75.286535, -48.38133], + [-75.184788, -48.686699], + [-75.024254, -48.452356], + [-75.311381, -47.998921] + ] + ], + [ + [ + [-74.685508, -48.114121], + [-74.953275, -48.580219], + [-74.521623, -48.598253], + [-74.685508, -48.114121] + ] + ], + [ + [ + [-74.631186, -50.712767], + [-74.664222, -50.907976], + [-74.934856, -50.88105], + [-74.689363, -51.119331], + [-74.449263, -51.000016], + [-74.444202, -50.773866], + [-74.631186, -50.712767] + ] + ], + [ + [ + [-73.995232, -45.230427], + [-73.744814, -45.284546], + [-73.811131, -44.982104], + [-74.234459, -45.076617], + [-73.995232, -45.230427] + ] + ], + [ + [ + [-75.392512, -50.464307], + [-75.454026, -50.738288], + [-75.300659, -50.808311], + [-75.071378, -50.499863], + [-75.392512, -50.464307] + ] + ], + [ + [ + [-75.168401, -48.065846], + [-74.96025, -48.448561], + [-74.736632, -48.168719], + [-75.168401, -48.065846] + ] + ], + [ + [ + [-70.443368, -54.947088], + [-71.000779, -54.954596], + [-70.951733, -55.092215], + [-70.572336, -55.113808], + [-70.443368, -54.947088] + ] + ], + [ + [ + [-74.606988, -51.189012], + [-74.929845, -51.291613], + [-75.030494, -51.478993], + [-74.610918, -51.408999], + [-74.606988, -51.189012] + ] + ], + [ + [ + [-75.222392, -48.76939], + [-75.497301, -48.781685], + [-75.602094, -48.937676], + [-75.449017, -49.037267], + [-75.279571, -48.923654], + [-75.250093, -49.048219], + [-75.222392, -48.76939] + ] + ], + [ + [ + [-75.280098, -48.943528], + [-75.63156, -49.191176], + [-75.469283, -49.244896], + [-75.254148, -49.082211], + [-75.280098, -48.943528] + ] + ], + [ + [ + [-74.23397, -50.8483], + [-74.360159, -50.458049], + [-74.507655, -50.732788], + [-74.23397, -50.8483] + ] + ], + [ + [ + [-74.383597, -45.445498], + [-74.44845, -45.783788], + [-74.193319, -45.689166], + [-74.383597, -45.445498] + ] + ], + [ + [ + [-73.727095, -52.422384], + [-74.061981, -52.632768], + [-73.717323, -52.645642], + [-73.727095, -52.422384] + ] + ], + [ + [ + [-74.048565, -51.529985], + [-74.226152, -51.736424], + [-73.909357, -51.787453], + [-74.048565, -51.529985] + ] + ], + [ + [ + [-75.287695, -48.411663], + [-75.589504, -48.455514], + [-75.462712, -48.681372], + [-75.287695, -48.411663] + ] + ], + [ + [ + [-69.661632, -54.882373], + [-69.928371, -55.069416], + [-69.491202, -55.035984], + [-69.661632, -54.882373] + ] + ], + [ + [ + [-74.096765, -44.594313], + [-74.398292, -44.616308], + [-74.235994, -44.807353], + [-74.096765, -44.594313] + ] + ], + [ + [ + [-73.669563, -45.435988], + [-73.814206, -45.623389], + [-73.588378, -45.735318], + [-73.669563, -45.435988] + ] + ], + [ + [ + [-67.371647, -55.570057], + [-67.542678, -55.729095], + [-67.267165, -55.787007], + [-67.371647, -55.570057] + ] + ] + ] + }, + "properties": { + "id": "0729a65c-4a5f-48c5-ae84-5af76f10e2fa", + "code": "CHL", + "name": "Chile", + "abbreviation": "C-CHL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [74.571556, 37.034439], + [74.821594239, 37.060298921], + [75.410117907, 36.934669294], + [75.454498276, 36.721614872], + [75.72970581, 36.746459962], + [75.918869019, 36.620479584], + [76.053016663, 36.237319947], + [75.936798095, 36.13394928], + [76.16899109, 35.83821869], + [76.555427551, 35.917655945], + [76.76377106, 35.66964722], + [77.427276612, 35.469039918], + [77.843078681, 35.500984191], + [78.017745971, 35.249752045], + [78.28436279, 34.667362211], + [78.56933594, 34.611949921], + [78.981460428, 34.33285113], + [78.729233001, 34.095698999], + [78.709297, 33.679611], + [78.823257001, 33.48349], + [79.180496217, 33.194610595], + [79.291969019, 32.65344603], + [79.104469299, 32.371711732], + [78.781181335, 32.475299836], + [78.760276793, 32.684169769], + [78.412239074, 32.556060791], + [78.439208983, 32.246459961], + [78.77102661, 31.999811171], + [78.72126007, 31.540950776], + [78.916648862, 31.266628268], + [79.056777951, 31.47225952], + [79.29962158, 31.149240492], + [79.589576721, 30.942888261], + [79.745590209, 31.006151201], + [80.15937042, 30.81208992], + [80.210960389, 30.582300187], + [80.593559265, 30.48223114], + [81.018875122, 30.236837387], + [81.220863342, 30.007465363], + [81.428161621, 30.421175004], + [81.992111207, 30.321130754], + [82.698730469, 29.855230332], + [82.829093933, 29.689697265], + [83.220184326, 29.605421066], + [83.635505676, 29.158428193], + [83.964813232, 29.331315994], + [84.250038147, 29.037136079], + [84.222602844, 28.915599824], + [84.859313965, 28.570314407], + [85.19985962, 28.627033234], + [85.11038208, 28.346796035], + [85.750267029, 28.242406846], + [86.06741333, 27.899515151], + [86.444831848, 27.905500412], + [86.566123962, 28.108438491], + [87.041618348, 27.950115205], + [87.128837585, 27.833919525], + [87.726615907, 27.805114745], + [87.859519959, 27.94771576], + [88.129981995, 27.881515503], + [88.616462707, 28.103679658], + [88.880187987, 27.895240783], + [88.767066956, 27.564960479], + [88.919456482, 27.327699661], + [88.977752686, 27.487577438], + [89.595100403, 28.155784607], + [89.860267638, 28.230169296], + [90.463912964, 28.048666], + [90.805114746, 28.071044922], + [91.208480834, 27.988225938], + [91.333763123, 28.066419602], + [91.598152161, 27.859909058], + [91.918762207, 27.715101242], + [92.255157471, 27.862169266], + [92.560691833, 27.821041107], + [92.783027649, 28.183740617], + [93.190368652, 28.426019668], + [93.336906433, 28.640159607], + [93.844039917, 28.707389832], + [94.214691163, 29.084089279], + [94.62815857, 29.348590851], + [94.871803285, 29.184289932], + [95.454338074, 29.03699112], + [95.545028687, 29.215589524], + [96.080535888, 29.463344574], + [96.477401734, 28.994039535], + [96.5859375, 28.721588135], + [96.324302673, 28.530340196], + [96.370941159, 28.394300459], + [96.66456604, 28.465770721], + [97.356887819, 28.233200073], + [97.589302063, 28.534980774], + [97.905067444, 28.372102738], + [98.150886535, 28.113918305], + [98.318817139, 27.542770387], + [98.467582703, 27.690162659], + [98.69291687, 27.589670182], + [98.686851501, 27.213729858], + [98.781059265, 26.619880676], + [98.572860719, 26.119081497], + [98.694259643, 25.843719483], + [98.475769044, 25.797702789], + [98.369155883, 25.572999955], + [97.845031738, 25.267892838], + [97.715736389, 24.837230682], + [97.575897217, 24.763330459], + [97.734268188, 24.117031097], + [97.67312622, 23.862070084], + [98.029762267, 24.071229935], + [98.846466065, 24.134290695], + [98.678543091, 23.959962844], + [98.923049926, 23.42311287], + [98.889778137, 23.183111191], + [99.511268617, 23.083738327], + [99.564208985, 22.925800324], + [99.32546234, 22.751070024], + [99.389518737, 22.499420167], + [99.218940736, 22.118749619], + [99.970596313, 22.052030565], + [99.986152649, 21.718660356], + [100.202583314, 21.439350128], + [100.577789306, 21.450250626], + [101.126541137, 21.775440216], + [101.154747009, 21.563869477], + [101.290397643, 21.178060531], + [101.74030304, 21.31483078], + [101.826705932, 21.60297966], + [101.547042847, 22.250141143], + [101.68901825, 22.471498491], + [102.145095826, 22.400774002], + [102.481575013, 22.778799058], + [103.030815125, 22.4424572], + [103.31943512, 22.807647705], + [103.531600952, 22.594932557], + [103.647262574, 22.794525147], + [103.961410522, 22.506477357], + [104.039291382, 22.723707199], + [104.267967225, 22.839319229], + [104.399238586, 22.701955795], + [104.86315918, 22.943468094], + [104.80116272, 23.115056992], + [105.237396241, 23.264867783], + [105.321228027, 23.391620637], + [105.872772217, 22.932710648], + [106.14502716, 22.996707917], + [106.278671265, 22.868831635], + [106.588005065, 22.932483672], + [106.835670471, 22.806064606], + [106.559577943, 22.348882675], + [106.765014649, 22.013175964], + [106.991722108, 21.951656341], + [107.382347107, 21.595428466], + [107.81551361, 21.658439636], + [107.991661, 21.546322], + [108.479309, 21.560694], + [108.637917, 21.750416], + [109.158752, 21.55625], + [109.171249, 21.392361], + [109.543472, 21.505972], + [109.768470764, 21.355140686], + [109.679581, 20.858191], + [109.934586, 20.28125], + [110.282639, 20.25403], + [110.530983, 20.481251], + [110.375969, 20.82653], + [110.199585, 20.946882], + [110.427917, 21.196529], + [111.064026, 21.485149], + [111.67292, 21.53792], + [111.815399, 21.720423], + [112.42514, 21.82736], + [112.592087, 21.760971], + [112.89875, 21.854582], + [113.10347, 22.09153], + [113.370407, 21.990141], + [113.553934, 22.089897], + [113.644028, 22.640141], + [114.022087, 22.520416], + [114.272919, 22.262362], + [114.610138, 22.49736], + [114.550972, 22.72514], + [114.724586, 22.793751], + [114.892365, 22.592361], + [115.210419, 22.834032], + [115.467636, 22.70347], + [115.662918, 22.877361], + [115.799858, 22.749863], + [116.26236, 22.94875], + [116.498756, 22.93874], + [116.939308, 23.594585], + [117.282082, 23.63792], + [117.713196, 24.034861], + [117.893196, 24.027082], + [118.135414, 24.263193], + [118.056808, 24.412083], + [118.457359, 24.63764], + [118.592636, 24.572083], + [119.107361, 25.115417], + [119.369026, 25.26486], + [119.150139, 25.399311], + [119.605141, 25.568472], + [119.515686, 26.08292], + [119.723473, 26.278194], + [119.783195, 26.585974], + [120.085693, 26.647921], + [120.031807, 26.85931], + [120.22097, 26.92292], + [120.509865, 27.205416], + [120.600418, 27.58736], + [121.133194, 28.24625], + [121.362923, 28.213469], + [121.624031, 28.334305], + [121.510139, 28.664862], + [121.706528, 28.921806], + [121.536789, 29.221531], + [121.935417, 29.194311], + [121.996246, 29.822361], + [121.685974, 29.985971], + [121.428467, 30.286812], + [121.161797, 30.32181], + [120.901786803, 30.165971756], + [120.689583, 30.26181], + [120.96875, 30.538473], + [121.505142211, 30.814029693], + [121.890419007, 30.847917556], + [121.861808777, 31.114030838], + [121.666809, 31.328194], + [121.299575806, 31.519029617], + [121.083747865, 31.723470689], + [121.097076417, 31.786251068], + [121.329032898, 31.878749848], + [121.629028321, 31.737083434], + [121.928466797, 31.725690843], + [121.728202821, 32.031528474], + [121.434028626, 32.124309539], + [121.393196105, 32.379310608], + [120.985137939, 32.553749085], + [120.859306, 32.794579], + [120.824303, 33.149582], + [120.278190612, 34.297359467], + [119.782081604, 34.469860077], + [119.171806, 34.857361], + [119.217918, 35.050419], + [119.640968, 35.568748], + [119.874863, 35.613754], + [120.285698, 36.059029], + [120.688469, 36.153194], + [120.930138, 36.590141], + [121.520142, 36.752361], + [122.009583, 36.967922], + [122.34375, 36.8307], + [122.646797, 37.392921], + [122.325966, 37.408749], + [122.157639, 37.537922], + [121.539581, 37.435421], + [121.376808, 37.599583], + [121.141525269, 37.598472595], + [120.94236, 37.808189], + [120.746529, 37.830971], + [120.302635, 37.673472999], + [120.084862, 37.444031], + [119.845139, 37.375973], + [119.749031, 37.122921], + [119.306526, 37.055691], + [118.932640075, 37.341529847], + [119.036529541, 37.685699462], + [119.289306641, 37.686531066], + [118.846252442, 38.144584655], + [118.111251831, 38.144031524], + [117.840698243, 38.265140534], + [117.56791687, 38.624580384], + [117.82347107, 39.170139314], + [118.030418396, 39.217922211], + [118.337082, 39.02486], + [118.631531, 39.167919], + [119.018196, 39.2043], + [119.201805, 39.378193], + [119.361808776, 39.745418549], + [119.529579163, 39.88597107], + [120.499862672, 40.252082826], + [120.58403, 40.454029], + [121.17930603, 40.925140382], + [121.85125, 40.82848], + [122.157363891, 40.68069458], + [122.301246643, 40.474029541], + [121.769859, 39.913197], + [121.294586, 39.58403], + [121.634583, 39.278484], + [121.657639, 39.078476], + [121.369308, 39.059311], + [121.106247, 38.852089], + [121.133751, 38.725418], + [121.717087, 38.901806], + [121.656807, 39.020699], + [122.058472, 39.06097], + [122.114586, 39.219864], + [123.227913, 39.75264], + [123.660416, 39.855976], + [124.155693, 39.81736], + [124.220642, 39.914864], + [124.385841369, 40.123088836], + [125.014091493, 40.532649993], + [125.774620056, 40.88679123], + [126.006347657, 40.891548158], + [126.287193299, 41.159488679], + [126.584831239, 41.56418991], + [126.926170349, 41.808521272], + [127.159362793, 41.539051057], + [127.408706665, 41.455421448], + [128.102462769, 41.363018036], + [128.313812255, 41.583030701], + [128.064025878, 41.965419769], + [128.955169679, 42.075618745], + [129.213943482, 42.211853027], + [129.234985351, 42.374160767], + [129.714370727, 42.426753999], + [129.89653015, 43.001998902], + [130.265823365, 42.886070252], + [130.248245239, 42.71139145], + [130.614608676, 42.42395806], + [130.623031616, 42.622673035], + [130.405136108, 42.722320557], + [130.789154053, 42.864345552], + [131.029602031, 42.863281238], + [131.305755618, 43.392730724], + [131.200576782, 43.518459321], + [131.29310608, 44.07970047], + [131.102661133, 44.691558839], + [130.954223633, 44.854160308], + [131.469848632, 44.959480286], + [131.826782226, 45.308731079], + [132.05859375, 45.235588074], + [132.18359375, 44.95685196], + [132.111618042, 44.740684509], + [132.560577393, 44.555042267], + [132.851974488, 45.055690767], + [133.135559081, 45.127109528], + [133.215194703, 45.509113311], + [133.476119995, 45.654418945], + [133.463882446, 45.828979492], + [133.908493043, 46.271591188], + [133.913009644, 46.581459046], + [134.149093627, 47.259510041], + [134.493530272, 47.44380951], + [134.771560668, 47.75345993], + [134.550552369, 48.024398803], + [134.711837769, 48.275814057], + [134.389266969, 48.385704041], + [133.468154907, 48.06760025], + [133.16029358, 48.105701446], + [132.504821778, 47.711250305], + [131.579559326, 47.660648346], + [131.500991822, 47.727760315], + [130.954193114, 47.720272065], + [130.652053833, 48.109340668], + [130.825531005, 48.30009079], + [130.525421142, 48.638519288], + [130.636672973, 48.814239502], + [130.257476806, 48.861846923], + [129.906417846, 49.05399704], + [129.520965576, 49.411891938], + [129.118133545, 49.348709107], + [128.797241211, 49.562969207], + [128.392028808, 49.588878631], + [128.260894775, 49.499950409], + [127.802421569, 49.591247559], + [127.515129089, 49.834640503], + [127.571479798, 50.242759704], + [127.368797302, 50.293159486], + [127.359352112, 50.583278656], + [127.111816406, 50.933872224], + [126.922851563, 51.057998658], + [126.979865964, 51.307769913], + [126.469207763, 51.935310363], + [126.549950174, 52.130171937], + [126.30267334, 52.22328186], + [126.343681336, 52.395950318], + [125.970428466, 52.656791686], + [125.967697143, 52.760829926], + [125.579658507, 53.080730439], + [125.188209534, 53.191589356], + [124.833045959, 53.132690429], + [124.375488281, 53.246181487], + [123.844421388, 53.48871994], + [123.257019043, 53.56085968], + [122.833541871, 53.452903749], + [122.329620361, 53.497322083], + [121.218490601, 53.281291962], + [120.876716613, 53.287033081], + [120.027206421, 52.772190094], + [120.061210632, 52.584072114], + [120.45249176, 52.641300203], + [120.719650268, 52.528789521], + [120.756332397, 52.244480133], + [120.652030945, 51.934108734], + [120.09249878, 51.677181245], + [119.987373352, 51.452690125], + [119.273490905, 50.601753236], + [119.183746337, 50.345920563], + [119.363807677, 50.174949646], + [119.197486878, 50.012088775], + [118.670799256, 49.948379517], + [117.842033386, 49.506931306], + [117.274269103, 49.631549836], + [116.700271606, 49.839855194], + [116.070678711, 48.908874512], + [116.111022949, 48.792751313], + [115.821495057, 48.531665803], + [115.8125, 48.261475001], + [115.514892577, 48.183898925], + [115.553779643, 47.948326089], + [115.949371337, 47.679122924], + [116.256286621, 47.876708985], + [116.826782226, 47.898399354], + [117.374511718, 47.638057709], + [117.75969696, 47.990188598], + [118.478698731, 48.000122071], + [118.775848388, 47.806549072], + [119.124084474, 47.703308105], + [119.187850952, 47.51845932], + [119.499694825, 47.335502625], + [119.716117859, 47.320999145], + [119.920722961, 46.743499756], + [119.402847289, 46.454940797], + [119.403701782, 46.633621215], + [118.935913086, 46.819526674], + [118.270050049, 46.787563324], + [117.852081299, 46.532127381], + [117.432952881, 46.57503891], + [117.37146759, 46.354770661], + [116.605285645, 46.297119142], + [116.262069702, 45.950332642], + [116.273498535, 45.761108399], + [115.72115326, 45.438438415], + [115.00012207, 45.365173339], + [114.548706, 45.398499], + [114.379272, 45.165283], + [113.62381, 44.743958001], + [112.758087158, 44.870479583], + [112.415527343, 45.061523438], + [111.833129883, 45.048522949], + [111.559875488, 44.723083496], + [111.393951416, 44.321613311], + [112.015686035, 43.791320802], + [111.753936767, 43.690742494], + [111.574508666, 43.48953247], + [111.047142029, 43.343456268], + [110.416503906, 42.768920898], + [110.143592835, 42.636798859], + [109.834716796, 42.624961852], + [109.547477721, 42.471664429], + [108.525352478, 42.455341339], + [107.912422181, 42.412010193], + [107.452796936, 42.46188736], + [107.266471862, 42.356658935], + [106.683631896, 42.259391784], + [105.801895141, 41.957645417], + [105.034484863, 41.567687989], + [104.534011841, 41.662620545], + [104.543746948, 41.883792877], + [103.86239624, 41.807941437], + [103.322082519, 41.907470703], + [102.73903656, 42.134159088], + [102.063293458, 42.218688965], + [101.822692871, 42.470275879], + [100.911582947, 42.645259858], + [100.326461791, 42.683330537], + [99.496276855, 42.570083618], + [98.339881897, 42.639923096], + [97.151489, 42.773926], + [96.93282318, 42.712154388], + [96.361427308, 42.721248627], + [96.324447632, 42.88243103], + [95.916450501, 43.233505248], + [95.881103515, 43.40209961], + [95.550781249, 43.988658906], + [95.374794007, 44.021148682], + [95.423660279, 44.289268493], + [94.990509033, 44.254550934], + [94.334007264, 44.523059846], + [94.197418214, 44.66250229], + [93.508270263, 44.965343476], + [91.652023316, 45.05670929], + [91.158081055, 45.194137574], + [90.8724823, 45.198150635], + [90.663696289, 45.516906739], + [90.69985199, 45.690681457], + [91.011497497, 46.000534059], + [90.934768676, 46.205638885], + [91.077636718, 46.563964844], + [90.881156921, 46.976364136], + [90.517845154, 47.244155884], + [90.456909155, 47.487121602], + [90.068908908, 47.862121853], + [89.796417236, 47.818149566], + [89.565917968, 48.048706055], + [89.041076661, 47.947326659], + [88.674240112, 48.174560547], + [88.601074218, 48.34411621], + [88.000106812, 48.570583344], + [87.792427063, 48.821681976], + [87.832260132, 49.175006867], + [87.312576295, 49.099693298], + [86.855201721, 49.107521058], + [86.810440063, 48.850330353], + [86.584747315, 48.541519165], + [85.735450745, 48.371002197], + [85.541595458, 47.939437867], + [85.698303222, 47.397781373], + [85.529724122, 47.059398652], + [85.219413756, 47.051399232], + [84.962593079, 46.871639251], + [84.704734801, 46.996234894], + [84.038215636, 46.965351105], + [83.03087616, 47.212120056], + [82.504440307, 45.983379365], + [82.275718689, 45.545398712], + [82.590141296, 45.445621491], + [82.486206055, 45.120670319], + [82.240821839, 45.235359191], + [81.827842712, 45.199989319], + [81.689582826, 45.366630555], + [81.452766419, 45.268699646], + [80.081832885, 45.049560547], + [79.851982117, 44.904949188], + [80.246673585, 44.83958435], + [80.489738464, 44.711429595], + [80.342826843, 44.481296539], + [80.519737243, 43.834209442], + [80.745956421, 43.448501587], + [80.799446107, 43.175418854], + [80.409706117, 43.057289123], + [80.590827942, 42.895679475], + [80.258331299, 42.828430176], + [80.167327881, 42.63658905], + [80.17819134, 42.219617459], + [80.226531982, 42.063596725], + [79.881523132, 42.038009643], + [79.785697936, 41.909210205], + [79.452018738, 41.849201203], + [78.708435059, 41.550693513], + [78.155588, 41.380968], + [77.669754027, 41.001056672], + [77.047279358, 41.059703828], + [76.86404419, 41.020942689], + [76.633987427, 40.757339477], + [76.521324158, 40.462623597], + [75.699920655, 40.277290344], + [75.593109132, 40.658714295], + [75.19393921, 40.438751221], + [74.82811737, 40.524749755], + [74.340438843, 40.08385086], + [74.023910523, 40.09830475], + [73.842292785, 39.838752747], + [73.941368103, 39.602909088], + [73.658241273, 39.465084075], + [73.565124512, 39.240421295], + [73.845520019, 38.947700501], + [73.80670929, 38.633499145], + [74.069793701, 38.531066895], + [74.382217408, 38.653030395], + [74.867256164, 38.4984169], + [74.822876, 38.083057], + [74.995079, 37.762791], + [74.928017, 37.55624], + [75.133827, 37.437439], + [74.89031601, 37.235990524], + [74.489113, 37.24192], + [74.571556, 37.034439] + ] + ], + [ + [ + [108.665413, 19.308201], + [108.61818695, 19.099580765], + [108.68624878, 18.506811141], + [109.155151, 18.293751], + [109.567917, 18.18014], + [109.767639, 18.393751], + [110.53125, 18.788195], + [110.640137, 19.311529], + [110.982635, 19.643194], + [110.933197, 20.01264], + [110.57486, 20.095421], + [110.197639465, 20.063751221], + [109.989295959, 19.933750154], + [109.710136, 20.010695], + [109.462906, 19.871531], + [109.261803, 19.901251], + [109.181252, 19.653471], + [108.665413, 19.308201] + ] + ], + [ + [ + [121.303749, 31.867361], + [121.161247, 31.78764], + [121.38958, 31.616529], + [121.832077, 31.438473], + [121.969017, 31.535419], + [121.303749, 31.867361] + ] + ] + ] + }, + "properties": { + "id": "5569b043-49b7-43d8-bf38-43d1637a8290", + "code": "CHN", + "name": "China", + "abbreviation": "C-CHN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [105.70412445, -10.415103911], + [105.552223206, -10.490558624], + [105.667778016, -10.567778588], + [105.70412445, -10.415103911] + ] + ] + }, + "properties": { + "id": "83e8e875-ab3d-4aeb-824d-d72fd51738d3", + "code": "CXR", + "name": "Christmas Island", + "abbreviation": "C-CXR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-109.22541809, 10.320418358], + [-109.23236084, 10.299861909], + [-109.201530456, 10.292082787], + [-109.22541809, 10.320418358] + ] + ] + }, + "properties": { + "id": "2b75078e-315d-423d-bc55-7a8b6367d114", + "code": "XCL", + "name": "Clipperton Island", + "abbreviation": "C-XCL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [96.824188, -12.137175], + [96.820526, -12.183445], + [96.830101, -12.179369], + [96.824188, -12.137175] + ] + ] + }, + "properties": { + "id": "62aad15a-eeef-4f0b-85de-6019e49a5d16", + "code": "CCK", + "name": "Cocos Islands", + "abbreviation": "C-CCK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-66.856750488, 1.229928494], + [-67.185218812, 2.334057808], + [-67.565872192, 2.769107581], + [-67.855041504, 2.867162704], + [-67.307891846, 3.377990246], + [-67.483940125, 3.748416663], + [-67.61592865, 3.757788182], + [-67.85066986, 4.51061678], + [-67.825698852, 5.337379933], + [-67.632926941, 5.466629983], + [-67.588737488, 5.846688272], + [-67.404739379, 5.999525071], + [-67.547523499, 6.279095649], + [-67.827026367, 6.304127217], + [-68.643798828, 6.128194808], + [-69.110298157, 6.214188575], + [-69.426879882, 6.102223396], + [-70.121681213, 6.979224204], + [-70.294609071, 6.934592248], + [-70.557540894, 7.079834461], + [-71.02204132, 6.974288463], + [-71.746429444, 7.08072424], + [-72.006774902, 7.007916929], + [-72.195358276, 7.385155678], + [-72.473007202, 7.486440182], + [-72.350975036, 8.003447533], + [-72.392242432, 8.35640812], + [-72.654380798, 8.614500047], + [-72.766471863, 9.10688591], + [-73.007209779, 9.291072846], + [-73.347015382, 9.173742295], + [-72.944748, 9.842818], + [-72.895729065, 10.45032978], + [-72.497787, 11.085117], + [-72.245132446, 11.144904137], + [-71.966057, 11.650084], + [-71.386253, 11.81414], + [-71.33847, 11.853553], + [-71.325264, 11.846805], + [-71.117111, 12.091451], + [-71.301804, 12.353483], + [-71.657639, 12.435417], + [-71.916939, 12.162497], + [-72.135551, 12.238885], + [-72.240692, 11.89486], + [-72.721802, 11.699862], + [-73.276382, 11.285405], + [-73.660706, 11.251191], + [-74.160141, 11.32514], + [-74.375137, 10.745139], + [-74.49292, 10.966249], + [-74.854584, 11.105416], + [-75.511703, 10.572267], + [-75.502304, 10.303011], + [-75.649582, 9.752361], + [-75.676803589, 9.403195382], + [-75.954475403, 9.420597077], + [-76.344764709, 8.915883065], + [-76.676483, 8.659946], + [-76.885406, 8.622855], + [-76.75769, 8.385612], + [-76.74958, 7.920139], + [-76.931808, 7.933472], + [-76.964027, 8.237639], + [-77.360969999, 8.656805998], + [-77.442207, 8.484901], + [-77.13267517, 7.98251772], + [-77.524711608, 7.568700791], + [-77.794425964, 7.451959134], + [-77.88031, 7.220541], + [-77.681808, 7.04125], + [-77.711754, 6.87842], + [-77.325691222, 6.544029236], + [-77.483192445, 6.192640781], + [-77.256248, 5.733751], + [-77.504211, 5.585139], + [-77.38958, 5.442085], + [-77.324303, 4.745973], + [-77.348473, 4.417361], + [-77.523369, 4.129895], + [-77.19651, 3.743821], + [-77.666236877, 3.046441079], + [-77.784858703, 2.69097209], + [-78.332107544, 2.655323029], + [-78.547637939, 2.491527081], + [-78.705696, 2.193195], + [-78.562363, 1.760417], + [-78.822639, 1.814029], + [-78.996452, 1.609909], + [-78.794106, 1.409053], + [-78.517769, 1.176707], + [-78.311515807, 1.189986945], + [-77.953781129, 0.795303047], + [-77.708503723, 0.848449231], + [-77.491744996, 0.662462652], + [-77.529472351, 0.409131586], + [-77.078193665, 0.286261261], + [-76.412010193, 0.242288485], + [-76.273429871, 0.435924053], + [-75.858093262, 0.13493207], + [-75.257133484, -0.117024026], + [-74.795478821, -0.187000827], + [-74.425308227, -0.498456061], + [-74.249267578, -0.819948197], + [-74.275863647, -0.97456342], + [-73.618469239, -1.266004681], + [-73.464942933, -1.589808464], + [-73.538993835, -1.699926495], + [-73.147605895, -1.804042936], + [-73.119819641, -2.326871395], + [-72.938217163, -2.452836037], + [-72.595382691, -2.366598606], + [-72.378677369, -2.484610319], + [-71.919265746, -2.36468625], + [-71.719032288, -2.174343825], + [-71.389228821, -2.407346486], + [-70.965286256, -2.211498736], + [-70.227775574, -2.567085028], + [-70.052902222, -2.76349306], + [-70.698333739, -3.778891325], + [-70.341461181, -3.810320138], + [-69.949440002, -4.228428841], + [-69.923286438, -4.190330505], + [-69.450973511, -1.553037286], + [-69.422439574, -1.020315646], + [-69.612365724, -0.762640893], + [-69.602767944, -0.506716251], + [-69.922966003, -0.325426221], + [-70.040336608, -0.105598309], + [-70.040458679, 0.565155268], + [-69.806610108, 0.573091447], + [-69.481140137, 0.73527646], + [-69.107894897, 0.645990491], + [-69.20451355, 1.013406396], + [-69.322151185, 1.088041425], + [-69.846122742, 1.092908501], + [-69.848175049, 1.702632667], + [-69.390670776, 1.731145025], + [-68.186706543, 1.730201364], + [-68.188339233, 2.015600205], + [-67.878501891, 1.803259612], + [-67.750877381, 2.018488885], + [-67.312156678, 2.213680267], + [-67.351478578, 1.950751424], + [-67.092277527, 1.464751483], + [-67.074623107, 1.108570457], + [-66.856750488, 1.229928494] + ] + ] + }, + "properties": { + "id": "18233c7f-16cb-4781-bb66-27b4b9daa440", + "code": "COL", + "name": "Colombia", + "abbreviation": "C-COL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [43.408473969, -11.465415955], + [43.279026031, -11.39652729], + [43.238750458, -11.780415534], + [43.514026642, -11.900417327], + [43.408473969, -11.465415955] + ] + ], + [ + [ + [44.469028, -12.068751], + [44.309307, -12.196248], + [44.527637, -12.382082], + [44.469028, -12.068751] + ] + ] + ] + }, + "properties": { + "id": "440f4e4e-42a7-4e2f-83d4-8836e401501a", + "code": "COM", + "name": "Comoros", + "abbreviation": "C-COM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-163.125075592, -18.029854459], + [-163.158790248, -17.989024144], + [-163.197926358, -18.058317084], + [-163.157434884, -18.096097829], + [-163.125075592, -18.029854459] + ] + ] + }, + "properties": { + "id": "73908a3c-edde-40e1-a4b9-1c0ac2a3b13c", + "code": "COK", + "name": "Cook Islands", + "abbreviation": "C-COK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-85.693022, 11.078864], + [-85.635032, 10.635719], + [-85.872476, 10.348859], + [-85.666444341, 9.902468215], + [-85.360711753, 9.84001649], + [-85.091732, 9.570362], + [-84.914159, 9.904022], + [-85.110498, 10.176239], + [-84.738782603, 9.967175544], + [-84.535842, 9.519035], + [-84.180849, 9.444335], + [-83.637464232, 9.050675425], + [-83.707479, 8.5824], + [-83.291356029, 8.374353492], + [-83.380639, 8.746424], + [-83.18215, 8.621908], + [-83.146502079, 8.367234228], + [-82.892775475, 8.050566224], + [-83.047992464, 8.341606032], + [-82.831501585, 8.505536173], + [-82.915588679, 8.741304354], + [-82.712114414, 8.923196914], + [-82.934218992, 9.078669025], + [-82.934121815, 9.475080306], + [-82.827215754, 9.611233373], + [-82.564486279, 9.563861842], + [-82.759735, 9.654314], + [-83.106993, 10.009134], + [-83.48714782, 10.512239452], + [-83.693022779, 10.937869285], + [-83.93912196, 10.72180668], + [-84.680368088, 11.084493753], + [-84.910777, 10.943803], + [-85.609820571, 11.219757893], + [-85.693022, 11.078864] + ] + ] + }, + "properties": { + "id": "8d2e7742-c6b8-403c-8147-fe5f5c816ec7", + "code": "CRI", + "name": "Costa Rica", + "abbreviation": "C-CRI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [19.03316307, 44.870052338], + [19.184112548, 45.219303131], + [18.919952392, 45.549263], + [18.81132698, 45.911281586], + [18.462974549, 45.759075164], + [17.858472825, 45.774066925], + [17.27098465, 46.00510025], + [17.179605484, 46.153518678], + [16.584312439, 46.479049682], + [16.254442216, 46.515022278], + [15.996046066, 46.318244934], + [15.651285172, 46.213462829], + [15.679810524, 45.869182587], + [15.256242751, 45.740131379], + [15.377919198, 45.49200058], + [14.689496994, 45.527175903], + [13.567174911, 45.48513794], + [13.635417, 45.069305], + [13.86625, 44.808472], + [14.170416833, 44.980285646], + [14.281527001, 45.305138001], + [14.479585, 45.312916], + [14.831528664, 45.109584809], + [14.9879179, 44.574028016], + [15.277361, 44.365723], + [15.161251068, 44.185138703], + [15.574027, 43.816528], + [15.938194, 43.666527], + [16.120695, 43.471527], + [16.349306106, 43.550971984], + [16.944583893, 43.360137939], + [17.576017379, 42.942398072], + [17.666503907, 43.077087403], + [17.346467972, 43.267295837], + [17.306247711, 43.472480774], + [17.036762238, 43.57131195], + [16.713905334, 43.874317169], + [16.244707107, 44.197971345], + [16.049072265, 44.65209961], + [15.819162369, 44.738529205], + [15.758016586, 45.167304992], + [16.024816513, 45.21982193], + [16.327577591, 45.013275147], + [16.501817703, 45.218250274], + [16.893648147, 45.242534637], + [17.178274154, 45.15210724], + [17.991212845, 45.163642883], + [18.540554047, 45.104312898], + [19.03316307, 44.870052338] + ] + ], + [ + [ + [17.648450851, 42.888294219], + [18.507923, 42.45433], + [18.458923007, 42.565307821], + [17.801698744, 42.892517169], + [17.648450851, 42.888294219] + ] + ] + ] + }, + "properties": { + "id": "65cd3a6e-bc26-41da-90f9-7272072f65ec", + "code": "HRV", + "name": "Croatia", + "abbreviation": "C-HRV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-78.641808, 22.522381], + [-78.099586, 22.29875], + [-77.938751, 22.037916], + [-78.314308, 22.156527], + [-78.699028, 22.383751], + [-79.249863, 22.372641], + [-80.013748, 22.935417], + [-80.260971, 22.900417], + [-80.624031, 23.080973], + [-81.169586, 23.02486], + [-81.257919, 23.147362], + [-82.029586793, 23.187084198], + [-82.736251832, 23.019861222], + [-83.220139, 22.995695], + [-84.206528, 22.557917], + [-84.429031, 22.204306], + [-84.301529, 22.024029], + [-84.584862, 21.994305], + [-84.439583, 21.767084], + [-84.035698, 21.905416], + [-83.905975, 22.171806], + [-83.359306, 22.207083], + [-83.066802979, 22.490695953], + [-82.630417, 22.679583], + [-81.880973817, 22.679582596], + [-81.701248, 22.454027], + [-82.143471, 22.420973], + [-81.755142, 22.164583], + [-81.414307, 22.181805], + [-80.886253, 22.037361], + [-80.462364, 22.081249], + [-80.008194, 21.754864], + [-79.214027405, 21.543193818], + [-78.74958, 21.637917], + [-78.602364, 21.481527], + [-78.487083, 21.030138], + [-78.039307, 20.700695], + [-77.347915649, 20.715694428], + [-77.07708, 20.476251999], + [-77.181526, 20.28653], + [-77.629303, 20.019306], + [-77.67292, 19.825972], + [-77.323753, 19.900417], + [-76.225418091, 19.995416641], + [-75.607361, 19.89625], + [-74.982635, 19.920973], + [-74.835975646, 20.034584046], + [-74.234863281, 20.092361451], + [-74.228752137, 20.318750382], + [-74.489860535, 20.340694428], + [-74.741531, 20.62347], + [-75.524582, 20.792084], + [-75.716804504, 21.126806259], + [-76.016525, 21.084576], + [-76.380142, 21.277082], + [-76.722359, 21.292917], + [-77.106819, 21.605696], + [-77.649025, 21.879028], + [-77.865417, 22.20764], + [-78.343475, 22.53264], + [-78.641808, 22.522381] + ] + ], + [ + [ + [-82.967087, 21.941807], + [-83.08625, 21.778475], + [-82.885414, 21.437639], + [-82.60347, 21.524303], + [-82.691254, 21.88236], + [-82.967087, 21.941807] + ] + ] + ] + }, + "properties": { + "id": "37b0ea3d-3a32-48a3-8188-e2d8d0076bb6", + "code": "CUB", + "name": "Cuba", + "abbreviation": "C-CUB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-69.15097, 12.392362], + [-69.137917, 12.26875], + [-68.790413, 12.034029], + [-68.853752, 12.175139], + [-69.15097, 12.392362] + ] + ] + }, + "properties": { + "id": "5bceb332-a2c3-4c27-b787-c1a33dbd0c39", + "code": "CUW", + "name": "Curaçao", + "abbreviation": "C-CUW", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [33.67452139, 35.043880133], + [33.400318146, 35.197750091], + [32.841957092, 35.079792023], + [32.722362518, 35.180473329], + [32.632953604, 35.189304], + [32.601997, 35.178196], + [32.27597, 35.099583], + [32.434326, 34.734924], + [32.760101319, 34.669109344], + [32.990730286, 34.634426117], + [33.603748322, 34.816806793], + [33.702095033, 34.979026794], + [33.67452139, 35.043880133] + ] + ], + [ + [ + [33.888787151, 34.958677121], + [34.004291534, 35.065361023], + [33.906524816, 35.069122147], + [33.888787151, 34.958677121] + ] + ] + ] + }, + "properties": { + "id": "c2eeeb53-5fff-44f6-befc-f55e743b0d08", + "code": "CYP", + "name": "Cyprus", + "abbreviation": "C-CYP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.924345983, 48.621355889], + [17.199533462, 48.881229401], + [17.51516533, 48.809707642], + [18.106492997, 49.081001282], + [18.157957076, 49.272239686], + [18.558023453, 49.512805939], + [18.850496293, 49.51858139], + [18.572908402, 49.921623231], + [17.868484497, 49.972496032], + [17.604438781, 50.170928956], + [16.907901764, 50.449447632], + [17.018518448, 50.235725402], + [16.706027985, 50.09658432], + [16.360765458, 50.37946701], + [16.34308052, 50.661506654], + [16.180171966, 50.62851715], + [15.376022339, 50.82126999], + [15.236557961, 50.99866867], + [14.82269392, 50.871021201], + [14.57870388, 51.00030899], + [13.525244713, 50.704410554], + [12.936410998, 50.411636001], + [12.512522698, 50.3961792], + [12.261113167, 50.06469345], + [12.547730445, 49.920341491], + [12.40315628, 49.761936188], + [12.655893326, 49.434547424], + [12.949971199, 49.342868806], + [13.495621682, 48.941345216], + [13.84017735, 48.771221552], + [14.053661651, 48.607290441], + [14.707355335, 48.586049934], + [14.959571746, 48.760716498], + [14.99700186, 49.015724043], + [15.27795496, 48.993056593], + [16.094939897, 48.747288846], + [16.46746946, 48.809132098], + [16.924345983, 48.621355889] + ] + ] + }, + "properties": { + "id": "8ea22f19-bb6b-4bb7-89b4-3a168457e565", + "code": "CZE", + "name": "Czechia", + "abbreviation": "C-CZE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.518918037, 10.433259965], + [-5.772508145, 10.440250398], + [-6.023159981, 10.198860169], + [-6.217734813, 10.726328851], + [-6.642239093, 10.672245026], + [-6.672196864, 10.365130425], + [-6.947463988, 10.369640351], + [-6.975772857, 10.195070267], + [-7.384366989, 10.282631874], + [-7.641550065, 10.488121033], + [-7.978549004, 10.175108911], + [-8.165474891, 9.926783562], + [-8.149227142, 9.532054901], + [-7.857914924, 9.43301773], + [-7.94704485, 8.786557197], + [-7.772655011, 8.767118454], + [-7.641070842, 8.377433776], + [-7.985136032, 8.483769416], + [-8.242429734, 8.456877709], + [-8.068925857, 8.161513328], + [-8.071770667, 7.808342934], + [-8.214912415, 7.533728123], + [-8.472180367, 7.55458212], + [-8.290595054, 7.18177414], + [-8.338418007, 6.76061678], + [-8.560628892, 6.561457158], + [-8.171671868, 6.27564478], + [-8.00530243, 6.315148831], + [-7.692998886, 5.904920101], + [-7.422359944, 5.843457223], + [-7.378786087, 5.623882771], + [-7.470920087, 5.150407792], + [-7.591788768, 4.905591965], + [-7.522624015, 4.362362862], + [-6.897084237, 4.668472767], + [-5.85014, 5.035695], + [-3.974859954, 5.255138875], + [-3.109048268, 5.115950427], + [-2.759933118, 5.102472925], + [-2.761353568, 5.599316277], + [-2.952731868, 5.715983096], + [-3.19022862, 6.348717136], + [-3.225754754, 6.824867935], + [-2.953354946, 7.239177758], + [-2.808562475, 7.965602956], + [-2.494887667, 8.20517893], + [-2.615926525, 8.914301113], + [-2.7789206, 9.051471216], + [-2.687074716, 9.491439935], + [-2.763180018, 9.401107789], + [-3.21431303, 9.920919418], + [-3.708622933, 9.942521095], + [-4.267177104, 9.73729229], + [-4.707960129, 9.68799019], + [-4.972650052, 9.907730102], + [-5.128709793, 10.307089806], + [-5.407209873, 10.295559883], + [-5.518918037, 10.433259965] + ] + ] + }, + "properties": { + "id": "77aa3676-0cb0-49d2-b3e5-2a206fe161f7", + "code": "CIV", + "name": "Côte d'Ivoire", + "abbreviation": "C-CIV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.992247019, -10.896182914], + [24.374083939, -11.088782287], + [24.297883939, -11.399182287], + [25.343237939, -11.214876287], + [25.331337939, -11.620076287], + [25.508839191, -11.78707337], + [26.040437939, -11.929776287], + [26.473337939, -11.916376287], + [26.711437939, -12.001076287], + [27.008194646, -11.83967902], + [27.016276636, -11.615638271], + [27.46880253, -11.930631319], + [27.650922915, -12.284833747], + [27.934337939, -12.260276287], + [28.315237939, -12.418976287], + [28.809437939, -12.998476287], + [28.995937939, -13.426676287], + [29.175137939, -13.446276287], + [29.574537939, -13.212476287], + [29.811437939, -13.444976287], + [29.822337939, -12.147576287], + [29.585337939, -12.184976287], + [29.494337939, -12.451376287], + [29.050937939, -12.378176287], + [28.964237939, -12.209376287], + [28.447937939, -11.819576287], + [28.391837939, -11.587176287], + [28.631286621, -10.528686523], + [28.670471191, -9.815185547], + [28.390637939, -9.225676287], + [28.782437939, -8.929676287], + [28.994637939, -8.460476287], + [30.429537939, -8.273276287], + [30.795076198, -8.276758081], + [30.238563537, -7.021797181], + [29.82697487, -6.642999173], + [29.594978333, -6.251998901], + [29.575977326, -5.555999279], + [29.373088836, -5.016916276], + [29.391475678, -4.445250033], + [29.253709792, -3.918102026], + [29.200918, -3.308666], + [29.256701, -3.087956], + [29.040174484, -2.743100167], + [28.866735459, -2.435736656], + [29.093341827, -2.276407718], + [29.125940323, -1.889606118], + [29.360721948, -1.511828216], + [29.593131994, -1.387020823], + [29.587446213, -0.89732802], + [29.738924475, 0.128165841], + [29.990437982, 0.535014091], + [29.991146088, 0.850392998], + [30.240121842, 1.111332059], + [30.549726485, 1.266250968], + [30.700956344, 1.495999575], + [31.033359528, 1.757411479], + [31.305704117, 2.157105923], + [30.957658768, 2.403942585], + [30.741388321, 2.44887805], + [30.884183883, 2.814409017], + [30.777761458, 3.026928902], + [30.870231629, 3.482681989], + [30.771329879, 3.674677373], + [30.264030457, 3.956274986], + [29.798370362, 4.368258954], + [29.820289612, 4.558716774], + [29.475528717, 4.667393684], + [29.199041366, 4.356179715], + [29.028129577, 4.490709782], + [28.414470673, 4.282824516], + [28.026273728, 4.538108826], + [27.463420868, 5.016152859], + [27.078672409, 5.204131127], + [26.872159957, 5.033754826], + [26.488008499, 5.046394826], + [26.208040237, 5.237008095], + [25.90848732, 5.164886951], + [25.49746704, 5.364079], + [25.317970276, 5.036222934], + [24.784543991, 4.905525207], + [24.407299043, 5.110554695], + [24.090251922, 4.910327912], + [23.275201798, 4.63040018], + [22.974784851, 4.846968651], + [22.790510177, 4.714529992], + [22.550441742, 4.215419769], + [22.281259536, 4.11209488], + [21.659999847, 4.309000015], + [21.564785005, 4.247347833], + [20.856983185, 4.445547103], + [20.612672805, 4.401634216], + [20.357860564, 4.736951828], + [19.847999573, 5.073999882], + [19.403354644, 5.121106624], + [19.097999573, 4.921999932], + [18.794000625, 4.422999859], + [18.545999527, 4.302000046], + [18.648849486, 4.076396942], + [18.63500023, 3.471093416], + [18.641740798, 3.208940029], + [18.429136276, 2.76823306], + [18.106023788, 2.266630888], + [18.067958831, 1.521394849], + [17.850116731, 1.012439013], + [17.962598801, 0.408499987], + [17.714000702, -0.128000065], + [17.700065612, -0.567604006], + [17.341194153, -0.990492999], + [16.846000671, -1.263999939], + [16.589008331, -1.745197058], + [16.24200058, -2.122999907], + [16.184278488, -2.382886887], + [16.187095643, -3.395443915], + [15.900524139, -3.951448679], + [15.556356429, -4.048159598], + [15.415301322, -4.296506881], + [15.194307327, -4.347605228], + [14.687930108, -4.9175601], + [14.412021637, -4.893554688], + [14.313832283, -4.31740141], + [13.819194795, -4.422533989], + [13.690182687, -4.768346786], + [13.427568436, -4.88245964], + [13.104763032, -4.648590087], + [12.817461014, -4.782361985], + [12.537505545, -5.138915619], + [12.535100938, -5.733852863], + [12.20804206, -5.768321414], + [12.437361718, -6.057309628], + [12.946122, -5.903196], + [13.005095482, -5.85574007], + [13.122765, -5.898057001], + [13.304933547, -5.883372307], + [13.987770558, -5.842859506], + [14.610759735, -5.909718037], + [14.962183952, -5.873423576], + [16.365940093, -5.864689827], + [16.599737167, -5.918553829], + [16.721578598, -6.166262864], + [16.689979553, -6.400587081], + [16.94037056, -6.874828816], + [16.955801011, -7.207468986], + [17.185121537, -7.448730946], + [17.560329437, -8.127449036], + [18.10036087, -8.09905529], + [18.216976166, -7.989453792], + [19.435684204, -7.998535155], + [19.357408524, -7.928155422], + [19.529359817, -7.446960926], + [19.543858846, -6.999790669], + [20.301710128, -6.998032092], + [20.621345521, -6.931686401], + [20.543514251, -7.281459808], + [21.779689788, -7.274680138], + [21.853217601, -7.555323958], + [21.745258332, -7.929479599], + [21.95072174, -8.450712204], + [21.797969819, -9.430346489], + [22.024482726, -9.833795547], + [22.184971492, -9.916891098], + [22.312498092, -10.340161324], + [22.334419251, -10.755910873], + [22.180999755, -10.852000236], + [22.299690247, -11.243968964], + [22.584999084, -11.036000251], + [23.202999115, -11.102000236], + [23.435529709, -10.938199998], + [23.871999741, -11.017000198], + [23.992247019, -10.896182914] + ] + ] + }, + "properties": { + "id": "387e6dbc-43d3-4936-aa97-6676363be6f8", + "code": "COD", + "name": "Democratic Republic of the Congo", + "abbreviation": "C-COD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [9.419618606, 54.831581115], + [9.752499, 54.966526], + [9.496388, 55.154861], + [9.715833, 55.236252], + [9.593055726, 55.420417785], + [9.969721, 55.87986], + [10.256389, 55.915974], + [10.21083355, 56.13708496], + [10.381388, 56.288193], + [10.51361, 56.094582], + [10.693055, 56.140415], + [10.951387999, 56.456528], + [10.356388, 56.564860999], + [10.238612, 56.978195], + [10.016943, 57.078194], + [9.286945, 56.993195], + [9.174166, 56.711807], + [8.949722, 56.798195], + [8.643611, 56.46764], + [8.162501, 56.646252], + [8.134705, 56.118896], + [8.301086, 56.06427], + [8.078611, 55.556252], + [8.620277, 55.427082], + [8.63841395, 54.911201268], + [9.419618606, 54.831581115] + ] + ], + [ + [ + [12.26513958, 55.240970612], + [12.251944542, 55.553195954], + [12.596389, 55.680138], + [12.606944, 56.043472], + [12.290834427, 56.129306793], + [11.850833, 55.974861], + [12.026945, 55.900417], + [11.838056565, 55.685695648], + [11.6497221, 55.939025879], + [11.367499352, 55.767082215], + [10.996944, 55.722084], + [11.158612, 55.566807], + [11.248054, 55.204582], + [11.646388, 55.176529], + [12.05361, 54.962639], + [12.26513958, 55.240970612] + ] + ], + [ + [ + [10.2725, 57.619026], + [9.95694542, 57.597084045], + [9.398611, 57.163471], + [8.589723, 57.12236], + [8.229166, 56.790138], + [8.469166, 56.781528], + [8.670833, 56.952084], + [9.130277, 57.039307], + [9.240277, 56.990696], + [9.784722, 57.106529], + [10.010835, 57.089027], + [10.333054, 56.989029], + [10.545835, 57.226807], + [10.534721, 57.46875], + [10.2725, 57.619026] + ] + ], + [ + [ + [10.439166069, 55.469028473], + [10.321944, 55.620693], + [9.754168, 55.509861], + [9.888612, 55.244862], + [10.197501, 55.063194], + [10.744167, 55.069027], + [10.749168, 55.482082], + [10.439166069, 55.469028473] + ] + ], + [ + [ + [11.54862, 54.829029], + [11.074166, 54.940418], + [11.003057, 54.763474], + [11.464167, 54.608196], + [11.818055, 54.65097], + [11.54862, 54.829029] + ] + ], + [ + [ + [15.139774323, 55.139862061], + [14.824723243, 55.252082825], + [14.710277558, 55.081249237], + [15.076389313, 54.987640381], + [15.139774323, 55.139862061] + ] + ], + [ + [ + [8.940362, 56.980141], + [8.54745, 56.783474], + [8.641945, 56.669029], + [8.876944, 56.804306], + [8.940362, 56.980141] + ] + ], + [ + [ + [11.829166, 54.967083], + [11.974167, 54.697083], + [12.1575, 54.847084], + [11.829166, 54.967083] + ] + ], + [ + [ + [10.944168, 55.162361], + [10.683057, 54.920971], + [10.7275, 54.733196], + [10.944168, 55.162361] + ] + ] + ] + }, + "properties": { + "id": "b15c3edf-675f-4483-b54d-fb2a98f457c4", + "code": "DNK", + "name": "Denmark", + "abbreviation": "C-DNK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.93608288, 10.966264936], + [43.258129, 11.460972], + [43.152916, 11.591805], + [42.68486, 11.54875], + [42.783195496, 11.749028206], + [43.362640381, 11.977083205], + [43.408195496, 12.219584466], + [43.133750937, 12.706777681], + [42.865238191, 12.592853547], + [42.700863, 12.356982], + [42.35252012, 12.439524959], + [41.748233987, 11.492749006], + [41.780303585, 10.958093459], + [42.394844478, 10.968598433], + [42.626780081, 11.073334723], + [42.93608288, 10.966264936] + ] + ] + }, + "properties": { + "id": "0b88d1da-065a-4cca-8fdb-4f9a818efef0", + "code": "DJI", + "name": "Djibouti", + "abbreviation": "C-DJI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.374862671, 15.270695686], + [-61.255695344, 15.517915726], + [-61.458751679, 15.638195037], + [-61.374862671, 15.270695686] + ] + ] + }, + "properties": { + "id": "d758561e-3975-4f9b-9359-5f5f8f31f8a6", + "code": "DMA", + "name": "Dominica", + "abbreviation": "C-DMA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.753136, 18.03014], + [-71.422081, 17.60486], + [-71.057640076, 18.15541649], + [-70.842361, 18.348194], + [-70.58152771, 18.40680504], + [-70.506805, 18.194027], + [-70.154029846, 18.230417252], + [-70.007919312, 18.423749924], + [-69.208190917, 18.452638627], + [-68.84375, 18.374027], + [-68.640694, 18.217361], + [-68.34375, 18.642360688], + [-68.746528626, 18.960138321], + [-69.626808001, 19.082361001], + [-69.617638001, 19.225414], + [-69.228752, 19.179859], + [-69.151802, 19.302361], + [-69.846527099, 19.379861832], + [-69.9006958, 19.646249772], + [-70.303474426, 19.653474808], + [-70.839859008, 19.905971527], + [-71.249031067, 19.829025269], + [-71.661247, 19.894861], + [-71.758804322, 19.702087403], + [-71.636230468, 19.234956741], + [-71.770469666, 19.03172493], + [-71.732223511, 18.726322175], + [-72.003883361, 18.626689911], + [-71.687995911, 18.34273529], + [-71.753136, 18.03014] + ] + ] + }, + "properties": { + "id": "6e4e15dc-5172-475e-878f-763c3dcf2f32", + "code": "DOM", + "name": "Dominican Republic", + "abbreviation": "C-DOM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-78.794106, 1.409053], + [-79.160324097, 1.098788142], + [-79.41595459, 1.076405883], + [-80.092125, 0.77552], + [-80.003013612, 0.565868259], + [-80.141609192, -0.048787407], + [-80.493171693, -0.398954509], + [-80.421897888, -0.594650923], + [-80.585426, -0.928411], + [-80.912544, -1.058679], + [-80.754807, -1.322586], + [-80.851753, -1.60149], + [-80.726470948, -1.92535162], + [-80.910316467, -2.220810652], + [-80.435424804, -2.641442538], + [-79.769646, -2.521075], + [-79.907554626, -3.160489558], + [-80.236023, -3.425933], + [-80.159003999, -3.868496001], + [-80.431625366, -3.990227221], + [-80.452453613, -4.388850213], + [-80.104293823, -4.291343211], + [-79.795356751, -4.492056846], + [-79.487182618, -4.528632163], + [-79.265213012, -4.967052459], + [-78.894172668, -4.885650158], + [-78.706146239, -4.6240592], + [-78.560699464, -3.985218286], + [-78.411712647, -3.788740157], + [-78.355674744, -3.403700112], + [-78.246658325, -3.402604818], + [-77.845581054, -2.998627901], + [-76.692108155, -2.609971286], + [-76.043251038, -2.124619483], + [-75.554389953, -1.5439471], + [-75.387115479, -0.931501925], + [-75.187149047, -0.972799777], + [-75.253631592, -0.519662023], + [-75.538246154, -0.175718456], + [-75.257133484, -0.117024026], + [-75.858093262, 0.13493207], + [-76.273429871, 0.435924053], + [-76.412010193, 0.242288485], + [-77.078193665, 0.286261261], + [-77.529472351, 0.409131586], + [-77.491744996, 0.662462652], + [-77.708503723, 0.848449231], + [-77.953781129, 0.795303047], + [-78.311515807, 1.189986945], + [-78.517769, 1.176707], + [-78.794106, 1.409053] + ] + ], + [ + [ + [-90.960922, -0.962562], + [-90.829712, -0.716843], + [-90.954842, -0.434625], + [-91.176445, -0.220488], + [-91.311005, 0.133778], + [-91.474457, 0.107561], + [-91.346481, -0.3192], + [-91.072769, -0.61115], + [-91.511742, -0.906241], + [-91.181686, -1.044913], + [-90.960922, -0.962562] + ] + ], + [ + [ + [-80.012482, -2.679892], + [-80.221092, -2.740364], + [-80.124237, -3.020488], + [-80.012482, -2.679892] + ] + ], + [ + [ + [-90.310112, -0.750175], + [-90.26593, -0.48935], + [-90.513557, -0.533087], + [-90.310112, -0.750175] + ] + ] + ] + }, + "properties": { + "id": "55c1c474-df3c-421b-be2e-2e2151fe7d4d", + "code": "ECU", + "name": "Ecuador", + "abbreviation": "C-ECU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.999998094, 21.999200822], + [27.633972168, 22.007652283], + [33.166507721, 22.006193162], + [33.564083, 21.725389], + [34.005215, 21.772324], + [34.16069, 22.2071], + [34.691956, 22.297911], + [34.951351, 22.857571], + [35.21217, 22.787298], + [35.621292, 23.145147], + [35.481529, 23.501806], + [35.497639, 23.974306], + [35.691528, 23.909595], + [35.136806, 24.514862], + [35.070972, 24.753752], + [34.541248322, 25.74736023], + [34.427360535, 25.850416184], + [33.932362, 26.678194], + [33.988194, 26.883196], + [33.511806, 27.670416], + [33.483196, 27.98875], + [32.869304656, 28.570415497], + [32.620693207, 28.987361909], + [32.574584961, 29.373750688], + [32.360694886, 29.678195954], + [32.558471681, 29.959861755], + [32.72403, 29.463472], + [33.181252, 29.001247], + [33.223472595, 28.586805344], + [33.567359924, 28.293750762], + [33.714027404, 28.066249847], + [34.054027557, 27.810972214], + [34.258472442, 27.790971757], + [34.416805268, 27.964027404], + [34.410694122, 28.322916031], + [34.627082825, 28.730138779], + [34.743195, 29.313192], + [34.910694122, 29.497083664], + [34.855873108, 29.739179611], + [34.268009186, 31.22360611], + [34.229026794, 31.334306718], + [33.70097351, 31.120971679], + [33.138748, 31.044027], + [33.105694, 31.189028], + [32.790417, 31.044306], + [32.576805, 31.065695], + [31.941528, 31.516527], + [31.532361983, 31.44708252], + [31.033195495, 31.599306106], + [30.070972, 31.329584], + [29.533750535, 30.964582443], + [28.976807001, 30.832641999], + [28.437362671, 31.087083816], + [27.904306412, 31.108194352], + [27.443743, 31.216223], + [27.340197, 31.37278], + [26.494532, 31.495329], + [25.885139466, 31.628749848], + [25.51625061, 31.522916794], + [25.173194885, 31.535139084], + [25.148199, 31.667885], + [24.861114124, 31.405910214], + [25.018274, 30.777979], + [24.926531784, 30.481125907], + [24.69809919, 30.148845818], + [24.999435, 29.250158], + [24.999998094, 21.999200822] + ] + ] + }, + "properties": { + "id": "3afefe73-4b2a-491c-b2e8-fc075513b3f5", + "code": "EGY", + "name": "Egypt", + "abbreviation": "C-EGY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90.124862672, 13.741559982], + [-89.822082519, 13.532360077], + [-89.292358399, 13.483472824], + [-88.733475, 13.225418], + [-87.899025001, 13.15264], + [-87.811859131, 13.403461457], + [-87.710273743, 13.81076336], + [-88.103027343, 13.98646164], + [-88.497642517, 13.956601144], + [-89.349784852, 14.422576904], + [-89.519424439, 14.224593162], + [-89.891952515, 14.043659211], + [-90.124862672, 13.741559982] + ] + ] + }, + "properties": { + "id": "11ec7598-f183-46b1-ba77-74975a208061", + "code": "SLV", + "name": "El Salvador", + "abbreviation": "C-SLV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [9.821264267, 2.34792018], + [9.811804771, 1.941807032], + [9.39541626, 1.271805049], + [9.585694, 1.030909], + [9.996741295, 0.997637987], + [11.334781647, 0.999262989], + [11.334410667, 2.172394752], + [10.190143585, 2.171736956], + [9.897463798, 2.202226878], + [9.821264267, 2.34792018] + ] + ], + [ + [ + [8.67736, 3.209304999], + [8.932083131, 3.636250973], + [8.61375, 3.671805], + [8.453472, 3.269027], + [8.67736, 3.209304999] + ] + ] + ] + }, + "properties": { + "id": "0a87d86c-1195-4f60-b4a2-8380f2189505", + "code": "GNQ", + "name": "Equatorial Guinea", + "abbreviation": "C-GNQ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [43.133750937, 12.706777681], + [43.019028, 12.922083], + [42.784306, 12.842639], + [42.547638, 13.195417], + [42.394859, 13.202918], + [42.289585, 13.564305], + [41.969582, 13.852916], + [41.69125, 13.931806], + [41.18597, 14.627362], + [40.750973, 14.811805], + [40.569584, 14.999027], + [40.160973, 14.988195], + [39.875137, 15.492084], + [39.715972901, 15.246527672], + [39.437084198, 15.804582596], + [39.241528, 16.074026], + [39.142082, 16.705137], + [38.937084, 17.375694], + [38.569859, 18.006536], + [38.260128, 17.558592], + [38.003860272, 17.55707905], + [37.515297616, 17.336853131], + [37.394653, 17.047132], + [37.021255182, 17.096046089], + [36.901100158, 16.675794601], + [36.962570191, 16.435497283], + [36.541568756, 15.228030205], + [36.438766479, 15.156636239], + [36.56085968, 14.266368867], + [37.089298247, 14.267999649], + [37.133842469, 14.405420303], + [37.670742035, 14.50416851], + [37.940296174, 14.845477104], + [38.261081696, 14.667143822], + [38.515857697, 14.405078889], + [39.200321198, 14.611037255], + [39.249748229, 14.392259598], + [39.502674103, 14.677010537], + [39.949863, 14.410645], + [40.222588, 14.47863], + [40.650531769, 14.229389191], + [41.077301025, 13.878547669], + [41.972553253, 12.983165742], + [42.35252012, 12.439524959], + [42.700863, 12.356982], + [42.865238191, 12.592853547], + [43.133750937, 12.706777681] + ] + ], + [ + [ + [39.958473, 15.885971], + [39.96236, 15.619305], + [40.42625, 15.561805], + [39.958473, 15.885971] + ] + ] + ] + }, + "properties": { + "id": "30d801eb-5962-4d26-a34a-1e73c311526b", + "code": "ERI", + "name": "Eritrea", + "abbreviation": "C-ERI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [24.353975, 57.875771], + [25.11867714, 58.081226349], + [26.058393479, 57.836559296], + [26.249240875, 57.620002746], + [26.499868392, 57.524509431], + [26.861667633, 57.592041016], + [27.336309299, 57.546298988], + [27.553926469, 57.831874847], + [27.782720999, 57.830853], + [27.479160308, 58.291648864], + [27.553665, 58.423527], + [27.455129624, 58.790611267], + [27.741879, 58.995518], + [28.075740814, 59.455883027], + [27.914077758, 59.401725769], + [26.937095642, 59.438396455], + [26.047449, 59.623711], + [25.42325592, 59.489524841], + [24.365475, 59.471821], + [24.093334198, 59.273250581], + [23.491331101, 59.20994568], + [23.426888, 58.934429], + [23.65733, 58.746292], + [23.764069, 58.333492], + [24.265896, 58.27636], + [24.587236405, 58.311023712], + [24.353975, 57.875771] + ] + ], + [ + [ + [22.007389, 57.927116], + [22.200743, 57.981743], + [22.330894, 58.214085], + [22.915325, 58.300087], + [23.3706, 58.529499], + [23.34874344, 58.647228241], + [22.282587051, 58.559379577], + [21.866737366, 58.261470795], + [22.21546936, 58.157302856], + [22.007389, 57.927116] + ] + ], + [ + [ + [22.59189415, 58.690349579], + [23.06917, 58.838379], + [22.657871246, 59.086654663], + [22.377954482, 58.934356691], + [22.59189415, 58.690349579] + ] + ] + ] + }, + "properties": { + "id": "633dd12e-d695-4162-9b29-a5e6922637b3", + "code": "EST", + "name": "Estonia", + "abbreviation": "C-EST", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.35252012, 12.439524959], + [41.972553253, 12.983165742], + [41.077301025, 13.878547669], + [40.650531769, 14.229389191], + [40.222588, 14.47863], + [39.949863, 14.410645], + [39.502674103, 14.677010537], + [39.249748229, 14.392259598], + [39.200321198, 14.611037255], + [38.515857697, 14.405078889], + [38.261081696, 14.667143822], + [37.940296174, 14.845477104], + [37.670742035, 14.50416851], + [37.133842469, 14.405420303], + [37.089298247, 14.267999649], + [36.56085968, 14.266368867], + [36.499076842, 13.846787453], + [36.051094055, 12.722047806], + [35.64748764, 12.60518551], + [35.257106782, 11.934239388], + [35.046604156, 11.735230447], + [35.078003, 11.521461], + [34.929664611, 11.235751152], + [34.982345582, 10.898525238], + [34.765399933, 10.755145074], + [34.609779358, 10.897207261], + [34.297584534, 10.58566761], + [34.351406097, 10.220916748], + [34.233119964, 10.047500611], + [34.104160308, 9.48771286], + [34.142097473, 8.610931397], + [33.772457122, 8.369579315], + [33.62003708, 8.468573571], + [33.192653656, 8.406893731], + [33.189357758, 8.13451004], + [33.050086975, 7.787284852], + [33.672336578, 7.692183971], + [34.028770448, 7.369585514], + [34.19324112, 7.054917813], + [34.484283448, 6.904287815], + [35.013782502, 6.444958211], + [34.990890502, 5.895375729], + [35.300106049, 5.332475186], + [35.578666687, 5.414402485], + [35.854255676, 5.314599514], + [35.786293029, 4.731453418], + [35.869949342, 4.627306938], + [36.049079896, 4.449375152], + [36.838798524, 4.443952083], + [37.039394379, 4.361724377], + [38.12028122, 3.608499527], + [38.517353057, 3.626324177], + [38.907649994, 3.509658813], + [39.57862854, 3.472568035], + [39.861888886, 3.864088296], + [40.775180817, 4.277197837], + [41.112724304, 3.986856937], + [41.926216126, 4.002295495], + [42.203907014, 4.161425592], + [42.692008973, 4.224504948], + [43.033039094, 4.554564476], + [43.397472381, 4.784063816], + [44.028961182, 4.939652444], + [45.001667022, 4.932207108], + [47.958229065, 8.012583732], + [46.999328614, 7.985087871], + [44.156364442, 8.937956809], + [43.415462494, 9.476858139], + [43.213394165, 9.871968269], + [42.804515946, 10.314758127], + [42.704685212, 10.574638368], + [42.93608288, 10.966264936], + [42.626780081, 11.073334723], + [42.394844478, 10.968598433], + [41.780303585, 10.958093459], + [41.748233987, 11.492749006], + [42.35252012, 12.439524959] + ] + ] + }, + "properties": { + "id": "7c9cdfc8-8c84-46b8-be2a-aa49cbb573de", + "code": "ETH", + "name": "Ethiopia", + "abbreviation": "C-ETH", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-58.965279, -51.234859], + [-59.213287, -51.71764], + [-59.591919, -51.903809], + [-59.624168, -52.174583], + [-59.41803, -52.141296], + [-59.055832, -52.249306], + [-58.930279, -52.105694], + [-58.25473, -51.804306], + [-57.83139, -51.722084], + [-57.849724, -51.412918], + [-58.669167, -51.334583], + [-58.965279, -51.234859] + ] + ], + [ + [ + [-59.388046, -51.335972], + [-59.553612, -51.42625], + [-60.012501, -51.417915], + [-60.505798, -51.53009], + [-60.22361, -51.631527], + [-60.569702, -51.983704], + [-61.004166, -52.038193], + [-60.614162, -52.259598], + [-60.333057, -52.154861], + [-60.262501, -51.995693], + [-59.858612, -51.964863], + [-59.219723, -51.402084], + [-59.388046, -51.335972] + ] + ], + [ + [ + [-60.861946, -51.763474], + [-61.156387, -51.83514], + [-61.002499, -51.989861], + [-60.861946, -51.763474] + ] + ] + ] + }, + "properties": { + "id": "a428172b-b4e6-4d63-afb5-1f6fc6bcf59f", + "code": "FLK", + "name": "Falkland Islands", + "abbreviation": "C-FLK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-6.911979, 62.148438], + [-6.989583, 62.339584], + [-7.261979103, 62.176559448], + [-6.770833, 61.941666], + [-6.911979, 62.148438] + ] + ] + }, + "properties": { + "id": "b3b0c329-6a0a-4f8c-a9f6-d49d8c4994ae", + "code": "FRO", + "name": "Faroe Islands", + "abbreviation": "C-FRO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [178.452499, -17.561945], + [178.1875, -17.320833], + [177.610748, -17.454168], + [177.250046, -17.88839], + [177.338715, -18.124662], + [177.886948, -18.275], + [178.34111, -18.120832], + [178.557495, -18.1525], + [178.584167, -17.645836], + [178.452499, -17.561945] + ] + ], + [ + [ + [179.045914, -16.820597], + [179.197266, -16.699545], + [179.589645, -16.802359], + [179.835831, -16.222778], + [179.648605, -16.19861], + [179.292358, -16.419785], + [178.945328, -16.46064], + [178.586441, -16.801477], + [178.688232, -16.997997], + [179.045914, -16.820597] + ] + ] + ] + }, + "properties": { + "id": "ecacf86c-eaa4-4f17-9aec-b94f29ba3833", + "code": "FJI", + "name": "Fiji", + "abbreviation": "C-FJI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.154009, 65.823013], + [24.901562, 65.657814], + [25.34375, 65.45417], + [25.236979, 65.13385], + [25.415104, 64.950516], + [24.544271, 64.81823], + [24.331249, 64.529167], + [24.03489685, 64.410934449], + [23.403646, 63.940102], + [22.819271, 63.899479], + [22.423437, 63.484894], + [22.370312, 63.292191], + [21.997917, 63.331249], + [21.528646, 63.23177], + [21.560417, 63.079166], + [21.241667, 62.854168], + [21.081249, 62.660416], + [21.35573, 62.331772], + [21.289583, 61.987499], + [21.434896, 61.926563], + [21.655729, 61.582809], + [21.323437, 61.039063], + [21.358334, 60.674999], + [21.833334, 60.356251], + [22.59375, 60.377083], + [22.391666, 60.002083], + [22.680277, 59.990971], + [22.879168, 60.137501], + [22.970278, 59.903473], + [23.918612, 59.94014], + [24.35, 60.089584], + [24.415277, 59.960693], + [24.844271, 60.207809], + [24.956249, 60.154167], + [25.61875, 60.331249], + [25.785938, 60.238022], + [27.09375, 60.53125], + [27.616667, 60.46875], + [27.810535, 60.536575], + [28.840395, 61.131451], + [29.245567104, 61.273418357], + [30.718795777, 62.212890625], + [31.22984314, 62.507061005], + [31.576831817, 62.914161682], + [31.219272614, 63.231616975], + [30.505151749, 63.461864471], + [29.98095131, 63.754478455], + [30.23889923, 63.816188812], + [30.526166916, 64.049087526], + [30.484960555, 64.254913331], + [30.053009034, 64.404251099], + [30.045656205, 64.792167664], + [29.750923156, 64.789619446], + [29.625688553, 65.059921265], + [29.840818406, 65.088310243], + [29.734413147, 65.6279068], + [30.125448, 65.665688], + [29.917573928, 66.127830506], + [29.48065, 66.537582], + [29.086283, 66.824265], + [29.053629, 66.977989], + [29.959157944, 67.517333985], + [30.034530641, 67.669364929], + [29.694522858, 67.793746948], + [29.334667, 68.074707], + [28.659791947, 68.195106507], + [28.450369, 68.547668], + [28.803527751, 68.874946602], + [28.434746254, 68.908416889], + [28.924753394, 69.056725056], + [28.842869, 69.23159], + [29.326009888, 69.4667209], + [29.138516977, 69.694747946], + [28.44310945, 69.81440719], + [27.980879037, 70.012123099], + [27.621709871, 70.077102662], + [27.023665001, 69.910004], + [26.454679475, 69.935172989], + [25.896759033, 69.673011781], + [25.947675704, 69.576324463], + [25.709070206, 69.258171082], + [25.769058227, 69.002952575], + [25.143173218, 68.791557312], + [24.916858673, 68.60825348], + [24.249141694, 68.724906921], + [23.970842361, 68.830650329], + [23.677160264, 68.706123351], + [23.16020012, 68.630416871], + [23.045257569, 68.691055298], + [22.36974907, 68.719413757], + [22.182676316, 68.956199647], + [21.632258981, 69.277549747], + [21.267240525, 69.312019348], + [20.99707985, 69.223571778], + [21.063890458, 69.03843689], + [20.728641509, 69.121208192], + [20.551206589, 69.058761598], + [20.907672883, 68.890602113], + [21.396774292, 68.756782532], + [22.063533783, 68.475395202], + [22.834108352, 68.383499146], + [23.167139053, 68.238021851], + [23.509559994, 67.861701958], + [23.426544237, 67.453193995], + [23.773107485, 67.423248011], + [23.579597473, 67.143524171], + [24.011131286, 66.813613892], + [23.879522324, 66.555374146], + [23.661266327, 66.452293396], + [23.745273591, 66.184555055], + [23.940001, 66.148361], + [24.154009, 65.823013] + ] + ] + }, + "properties": { + "id": "7bd99cf6-b75d-48cc-91f7-337ff44a3ea2", + "code": "FIN", + "name": "Finland", + "abbreviation": "C-FIN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [1.721941949, 42.501228332], + [2.015197993, 42.347400666], + [2.257082463, 42.438488007], + [2.582230091, 42.357074737], + [2.839868069, 42.45898819], + [3.17407012, 42.435192107], + [3.037361, 42.610695], + [3.063473, 43.013195], + [3.262916088, 43.230140686], + [3.5154171, 43.274028779], + [4.101250172, 43.555137634], + [4.578472137, 43.362640382], + [5.359028, 43.317081], + [5.803195001, 43.115139009], + [6.617361069, 43.159305573], + [6.731527805, 43.408195496], + [7.413652896, 43.724304199], + [7.413383032, 43.734589023], + [7.439582826, 43.749214174], + [7.529582501, 43.78396225], + [7.684199811, 44.177261352], + [7.426789284, 44.115207672], + [7.037686348, 44.225566865], + [6.86726904, 44.531131744], + [7.074445, 44.681305], + [6.630878926, 45.108901978], + [7.135106086, 45.254562378], + [6.820878982, 45.826869964], + [7.043088914, 45.938652039], + [6.822751999, 46.423450469], + [6.523421765, 46.45698166], + [6.221569065, 46.312976932], + [6.112953663, 46.575119019], + [6.424077035, 46.754516602], + [6.433014394, 46.927818298], + [6.955122947, 47.243160248], + [7.168905257, 47.489501953], + [7.386297704, 47.43196869], + [7.592329501, 47.596214294], + [7.521079, 47.663849], + [7.804824, 48.592579], + [8.202893257, 48.95979309], + [7.493984223, 49.16936493], + [7.05719614, 49.111930847], + [6.738600731, 49.163673401], + [6.550816059, 49.425380707], + [6.372303964, 49.466461182], + [6.042151451, 49.447807313], + [5.815077305, 49.545166015], + [5.430971622, 49.592384338], + [4.686140537, 50.004943848], + [4.140979291, 49.978805543], + [4.220833778, 50.25430298], + [4.025219917, 50.357894897], + [3.673676013, 50.33493042], + [3.660986186, 50.457592011], + [3.286531449, 50.527576448], + [3.147109031, 50.789905548], + [2.900430442, 50.693286895], + [2.634982824, 50.812755586], + [2.597444534, 50.992469787], + [2.546031475, 51.089397432], + [1.954722047, 51.001525879], + [1.580834032, 50.870693206], + [1.556388021, 50.216804505], + [1.017361045, 49.915695191], + [0.569584001, 49.849303999], + [0.206529001, 49.714862999], + [0.005694, 49.328193665], + [-1.070693969, 49.390693664], + [-1.299304962, 49.530139924], + [-1.266250968, 49.695415496], + [-1.67208302, 49.657917024], + [-1.926805974, 49.727638246], + [-1.822916031, 49.399898528], + [-1.558194996, 48.994026184], + [-1.571527958, 48.742916107], + [-1.838194966, 48.61402893], + [-2.328471898, 48.673473358], + [-2.687916994, 48.500137329], + [-3.08375, 48.869305], + [-3.565972, 48.80875], + [-3.580694914, 48.670417785], + [-3.985973, 48.727917], + [-4.765695, 48.531807], + [-4.769583224, 48.327915191], + [-4.400693893, 48.389583588], + [-4.270415783, 48.133472442], + [-4.72708416, 48.032081603], + [-4.423470973, 47.962917327], + [-4.191806, 47.795418], + [-3.32625, 47.708195], + [-2.817084074, 47.485694885], + [-2.505973101, 47.524307252], + [-2.526529, 47.362362], + [-1.981528043, 47.027637481], + [-2.142637968, 46.818748475], + [-1.816249966, 46.499027253], + [-1.212361, 46.279026], + [-1.06041801, 46.045139314], + [-1.23930502, 45.713748933], + [-0.777360023, 45.435974122], + [-1.152637959, 45.485416413], + [-1.260694, 44.642918], + [-1.191805005, 44.660972596], + [-1.446805954, 43.643749237], + [-1.786638975, 43.350418091], + [-1.384181142, 43.253223419], + [-1.345170616, 43.092971803], + [-0.752805233, 42.966960908], + [-0.573617934, 42.807399751], + [-0.306374997, 42.841320038], + [0.000748, 42.685211183], + [0.66871202, 42.68893814], + [0.708183944, 42.861328126], + [1.357378126, 42.719421386], + [1.440829039, 42.588253022], + [1.721941949, 42.501228332] + ] + ], + [ + [ + [9.284584, 41.478474], + [9.411251, 41.953751], + [9.554862022, 42.124305724], + [9.461251, 42.988194], + [9.28763771, 42.674304962], + [9.123472, 42.732639], + [8.797638893, 42.602085113], + [8.554582596, 42.371807099], + [8.783194, 41.925415], + [8.810137749, 41.555973053], + [9.219861, 41.374863], + [9.284584, 41.478474] + ] + ] + ] + }, + "properties": { + "id": "f0f3e73c-d9c2-4731-a38d-1ff00eefcf56", + "code": "FRA", + "name": "France", + "abbreviation": "C-FRA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-51.605930328, 4.236526966], + [-51.840416, 4.650138], + [-51.999161, 4.675746], + [-52.552361, 5.081806], + [-52.784306, 5.32264], + [-53.258472443, 5.561250209], + [-53.801807403, 5.726250171], + [-54.011615754, 5.621387005], + [-54.474246978, 4.903629781], + [-54.362720489, 4.057462215], + [-54.026130677, 3.634015083], + [-54.014019012, 3.425174952], + [-54.21024704, 3.128951073], + [-54.22070694, 2.756202937], + [-54.524669648, 2.304801942], + [-54.332149507, 2.163784981], + [-54.084835053, 2.191226005], + [-53.789031982, 2.365223885], + [-53.460384369, 2.331587077], + [-52.986690522, 2.171376944], + [-52.672119141, 2.375355005], + [-52.330238341, 3.063822984], + [-51.921131133, 3.773808003], + [-51.657772065, 4.05079317], + [-51.605930328, 4.236526966] + ] + ] + }, + "properties": { + "id": "a6631282-8752-462a-a6cc-8286f651e61c", + "code": "GUF", + "name": "French Guiana", + "abbreviation": "C-GUF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-149.487656, -17.498302], + [-149.57666, -17.741945], + [-149.305191, -17.719465], + [-149.487656, -17.498302] + ] + ] + }, + "properties": { + "id": "941999bb-7afc-42bb-843f-a8605c90fa5a", + "code": "PYF", + "name": "French Polynesia", + "abbreviation": "C-PYF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [69.024734, -48.659935], + [68.728889, -49.069168], + [68.894165, -49.412777], + [68.77417, -49.725834], + [69.174721, -49.591389], + [69.877831, -49.717384], + [70.247612, -49.695957], + [70.127098, -49.510254], + [69.944702, -49.598137], + [69.779884, -49.446564], + [70.112221, -49.343056], + [70.445, -49.382221], + [70.519165, -49.09639], + [69.989166, -49.137222], + [69.704941, -49.305122], + [69.172516, -49.111187], + [69.024734, -48.659935] + ] + ] + }, + "properties": { + "id": "25aed1bb-eb13-49f8-912b-f9e16243cb97", + "code": "ATF", + "name": "French Southern Territories", + "abbreviation": "C-ATF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.334410667, 2.172394752], + [11.334781647, 0.999262989], + [9.996741295, 0.997637987], + [9.585694, 1.030909], + [9.604027, 0.512084], + [9.323194, 0.619584], + [9.472362, 0.353194], + [9.282918, -0.414861], + [9.047916, -0.737639], + [9.01875, -1.346528], + [9.248473, -1.672638], + [9.28514, -1.90625], + [9.893751144, -2.699028969], + [10.385418, -3.064028], + [10.722638, -3.494028], + [11.200858, -3.990695], + [11.249577, -3.718149], + [11.529373168, -3.512758017], + [11.884313583, -3.747391939], + [12.045451164, -3.352566003], + [11.947383881, -3.171828031], + [12.066580773, -2.969432115], + [11.616085053, -2.784224986], + [11.775189399, -2.456491947], + [12.468323707, -2.421263933], + [12.519983292, -2.086726904], + [12.444073677, -1.874595046], + [12.74332714, -1.868949055], + [13.040926933, -2.333771943], + [13.506067277, -2.429549932], + [13.748804092, -2.120312928], + [13.922572136, -2.464971066], + [14.102894784, -2.473965883], + [14.156409264, -2.194279909], + [14.398568154, -1.875691056], + [14.501670838, -1.425276994], + [14.410247803, -0.908969998], + [14.498720169, -0.680893004], + [14.400787353, -0.477086007], + [13.895365714, -0.212170004], + [13.888682366, 0.202671007], + [14.119593621, 0.558323026], + [14.48871231, 0.825231016], + [14.278985978, 1.34119296], + [13.813871383, 1.428683997], + [13.313282013, 1.225219011], + [13.133171081, 1.583217024], + [13.161886216, 1.901365995], + [13.299013137, 2.170983554], + [13.087685584, 2.236653806], + [11.701069831, 2.315644502], + [11.376516343, 2.296901227], + [11.334410667, 2.172394752] + ] + ] + }, + "properties": { + "id": "8d3ffa44-2b70-4e05-8fd4-fbf2961047c2", + "code": "GAB", + "name": "Gabon", + "abbreviation": "C-GAB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.747917175, 13.064655303], + [-16.701984405, 13.162057877], + [-15.802509309, 13.181070328], + [-15.802063943, 13.34800148], + [-15.37951374, 13.355257988], + [-15.022415162, 13.508973121], + [-14.347830771, 13.227734565], + [-13.85964489, 13.322502136], + [-13.9589777, 13.578852653], + [-14.321198463, 13.455093384], + [-14.49616623, 13.616292955], + [-14.780427999, 13.651931], + [-15.062114715, 13.826889991], + [-15.426857949, 13.728193283], + [-15.47307682, 13.590885162], + [-16.54521, 13.592391], + [-16.813194274, 13.338193893], + [-16.747917175, 13.064655303] + ] + ] + }, + "properties": { + "id": "718bbfc4-d711-40fe-9826-2fe3aeb765ea", + "code": "GMB", + "name": "Gambia", + "abbreviation": "C-GMB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [45.004055024, 41.301422119], + [45.306873322, 41.468112946], + [45.94391632, 41.180404664], + [46.245433807, 41.175765991], + [46.623905182, 41.056678771], + [46.721359253, 41.286907197], + [46.351867676, 41.492645265], + [46.247806548, 41.654754639], + [46.418235779, 41.907482147], + [45.926872254, 42.033927917], + [45.606128692, 42.218982696], + [45.767868041, 42.474258423], + [45.350009918, 42.529029847], + [45.176540374, 42.69070053], + [44.662147523, 42.750251771], + [44.256622315, 42.688716889], + [43.948078155, 42.558475494], + [43.561706542, 42.866088866], + [43.192070008, 42.934432984], + [42.765430451, 43.185348511], + [41.582489014, 43.235382081], + [41.420257568, 43.353103637], + [41.043235778, 43.390731811], + [40.652301789, 43.55947876], + [40.096923827, 43.563293457], + [40.011955261, 43.384860993], + [40.277362823, 43.190418244], + [41.042362212, 42.995693207], + [41.103748321, 42.8493042], + [41.444862366, 42.734306336], + [41.769027711, 41.802360535], + [41.548194885, 41.526275636], + [42.504489899, 41.445480347], + [42.829284668, 41.587890626], + [43.47107315, 41.129486085], + [43.729671478, 41.113761901], + [44.183200837, 41.244400025], + [44.435482026, 41.187656403], + [45.004055024, 41.301422119] + ] + ] + }, + "properties": { + "id": "98238973-6d83-427e-8e1f-653e1e1e6a7a", + "code": "GEO", + "name": "Georgia", + "abbreviation": "C-GEO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [13.84017735, 48.771221552], + [13.495621682, 48.941345216], + [12.949971199, 49.342868806], + [12.655893326, 49.434547424], + [12.40315628, 49.761936188], + [12.547730445, 49.920341491], + [12.261113167, 50.06469345], + [12.512522698, 50.3961792], + [12.936410998, 50.411636001], + [13.525244713, 50.704410554], + [14.57870388, 51.00030899], + [14.82269392, 50.871021201], + [15.037851333, 51.243991851], + [14.922353745, 51.482257843], + [14.73576355, 51.525955201], + [14.590989113, 51.819900513], + [14.758355141, 52.067401886], + [14.53459072, 52.39842987], + [14.639436721, 52.568908691], + [14.130087853, 52.828315736], + [14.449595452, 53.259456634], + [14.22636401, 53.928805997], + [13.759721, 54.015141], + [13.14249897, 54.254028321], + [12.999167442, 54.43624878], + [12.810278893, 54.349861145], + [12.510835, 54.482918], + [12.138610839, 54.192359924], + [11.682499, 54.153194], + [11.436941999, 53.909584001], + [11.180833816, 54.015415193], + [10.750278473, 54.038471223], + [11.093610763, 54.199859618], + [10.951388359, 54.384582519], + [10.766388893, 54.306804657], + [10.13583374, 54.484027862], + [10.03361, 54.692081], + [9.419618606, 54.831581115], + [8.63841395, 54.911201268], + [8.884166718, 54.594306947], + [8.593054772, 54.289859773], + [8.830277443, 54.289859773], + [8.963610648, 53.894584656], + [8.55583477, 53.831527711], + [8.259165763, 53.40097046], + [8.011943816, 53.711250305], + [7.296945095, 53.680694581], + [6.999166966, 53.359027863], + [7.210575105, 53.236904145], + [7.212802409, 53.010959625], + [7.054698943, 52.644401551], + [6.743166923, 52.645790101], + [6.697720062, 52.48634338], + [7.072173595, 52.352268219], + [6.407779694, 51.828090669], + [6.055318833, 51.852569581], + [6.205219745, 51.399517059], + [6.072657108, 51.242588043], + [6.036703586, 50.723491668], + [6.375073434, 50.313796998], + [6.138388158, 50.134075166], + [6.262069226, 49.880931854], + [6.513945103, 49.802768707], + [6.372303964, 49.466461182], + [6.550816059, 49.425380707], + [6.738600731, 49.163673401], + [7.05719614, 49.111930847], + [7.493984223, 49.16936493], + [8.202893257, 48.95979309], + [7.804824, 48.592579], + [7.521079, 47.663849], + [7.592329501, 47.596214294], + [7.696352958, 47.532772064], + [8.204054833, 47.62089157], + [8.428743362, 47.566894532], + [8.489027024, 47.773269653], + [8.898453712, 47.648422241], + [9.275901794, 47.656135559], + [9.561736197, 47.502418292], + [9.96354695, 47.535236416], + [10.338881796, 47.310740933], + [10.454786787, 47.556405837], + [10.886474708, 47.537278766], + [10.980255356, 47.397505434], + [11.287422711, 47.405635416], + [11.633031787, 47.59245468], + [12.16300994, 47.70174582], + [12.499803947, 47.625656643], + [12.732470362, 47.680211084], + [13.004363656, 47.463922448], + [13.098878033, 47.63497621], + [12.753676468, 48.087443995], + [12.869480201, 48.201261797], + [13.410012307, 48.373654518], + [13.515751092, 48.591540164], + [13.7265817, 48.514094787], + [13.84017735, 48.771221552] + ] + ], + [ + [ + [13.718055725, 54.284305573], + [13.498806954, 54.558864594], + [13.169724, 54.452641], + [13.144167901, 54.280971527], + [13.718055725, 54.284305573] + ] + ] + ] + }, + "properties": { + "id": "464f456e-b2dc-4469-ac69-1262b037c457", + "code": "DEU", + "name": "Germany", + "abbreviation": "C-DEU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.687074716, 9.491439935], + [-2.7789206, 9.051471216], + [-2.615926525, 8.914301113], + [-2.494887667, 8.20517893], + [-2.808562475, 7.965602956], + [-2.953354946, 7.239177758], + [-3.225754754, 6.824867935], + [-3.19022862, 6.348717136], + [-2.952731868, 5.715983096], + [-2.761353568, 5.599316277], + [-2.759933118, 5.102472925], + [-3.109048268, 5.115950427], + [-2.268430308, 4.899010809], + [-1.974251232, 4.758838586], + [-1.609871288, 5.027429781], + [-0.830442307, 5.210631983], + [-0.344515642, 5.501953801], + [0.332379886, 5.783476511], + [0.924009157, 5.786507337], + [1.199555296, 6.130090006], + [0.749223939, 6.448189283], + [0.562348456, 6.906712047], + [0.644656864, 7.397928189], + [0.519026965, 7.513392359], + [0.626224007, 7.850379392], + [0.645860944, 8.486721407], + [0.379434582, 8.749738712], + [0.566590189, 9.405599734], + [0.23890288, 9.570471323], + [0.382733564, 9.937065217], + [0.396027973, 10.314177108], + [-0.087270273, 10.716004724], + [0.033877909, 10.992621832], + [-0.134967872, 11.13706899], + [-0.684064326, 10.998641683], + [-2.833997491, 11.004090181], + [-2.940423865, 10.612863705], + [-2.744601263, 9.949250734], + [-2.687074716, 9.491439935] + ] + ] + }, + "properties": { + "id": "2f4cae5c-1678-4d7f-abb9-d48006a790a5", + "code": "GHA", + "name": "Ghana", + "abbreviation": "C-GHA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.339028, 36.154674549], + [-5.353473187, 36.157154083], + [-5.365415, 36.149307], + [-5.346806, 36.108471], + [-5.339028, 36.154674549] + ] + ] + }, + "properties": { + "id": "2402c891-ba0d-44e3-bd61-3f888778b038", + "code": "GIB", + "name": "Gibraltar", + "abbreviation": "C-GIB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [20.008482885, 39.694003607], + [20.183252, 39.622513], + [20.294027, 39.31847], + [20.44375, 39.28014], + [20.869028, 38.795971], + [21.232361, 38.299026], + [21.835140228, 38.392360688], + [22.697918, 38.312916], + [23.10708, 38.205971], + [22.872639, 37.933193], + [22.491529464, 38.136249542], + [21.849029542, 38.339309692], + [21.600969315, 38.142639161], + [21.370138169, 38.214862823], + [21.273750305, 37.785694123], + [21.690416, 37.360973], + [21.565689, 37.16431], + [21.702917, 36.812637], + [21.93569, 36.760971], + [21.930416108, 36.982082366], + [22.153469, 37.014309], + [22.39097, 36.54097], + [22.565687, 36.77597], + [22.782922746, 36.79875183], + [22.967916, 36.519585], + [23.100418, 36.777641], + [22.727916718, 37.494583129], + [23.132917, 37.409584], + [23.51903, 37.4557], + [23.008751, 37.91264], + [23.450695, 38.023472], + [24.022079, 37.65736], + [24.085695, 37.797359], + [23.954309, 38.285419], + [23.677640914, 38.339580537], + [23.59264, 38.471249], + [23.110697, 38.624306], + [22.817907, 39.272087], + [22.943750382, 39.342079163], + [23.351801, 39.18792], + [22.548189164, 40.141799928], + [22.655416489, 40.522914887], + [22.951805115, 40.621528625], + [22.910688, 40.380421], + [23.330694, 40.210693], + [23.650969, 40.224861], + [23.918194, 39.947639], + [23.920416, 40.364582], + [23.695692063, 40.66708374], + [24.045416, 40.718472], + [24.553749085, 40.952640533], + [24.803470612, 40.845970155], + [25.12694168, 40.952476501], + [25.950142, 40.842361], + [26.031528, 40.733902], + [26.35091, 40.949791], + [26.331443787, 41.253940582], + [26.641773224, 41.390888214], + [26.596136093, 41.615470886], + [26.368787765, 41.714229584], + [26.17133522, 41.747638702], + [26.118917466, 41.349506378], + [25.230846406, 41.243373872], + [25.124015808, 41.339138032], + [24.604471207, 41.429771424], + [24.5240345, 41.566539765], + [24.098924638, 41.548641204], + [23.622879028, 41.375816346], + [22.933700561, 41.343158723], + [22.592737199, 41.119709015], + [21.907794953, 41.093132019], + [21.594812394, 40.871620179], + [20.991338731, 40.858062744], + [21.049087524, 40.658621471], + [20.841936112, 40.476444244], + [20.657573901, 40.090528991], + [20.306022372, 39.984871455], + [20.256948524, 39.667319957], + [20.008482885, 39.694003607] + ] + ], + [ + [ + [25.880419, 35.160973], + [25.65097, 35.34264], + [25.047079085, 35.344860077], + [24.699028, 35.427082], + [24.262359619, 35.363193511], + [24.176531, 35.585972], + [23.580137, 35.491531], + [23.587360381, 35.231250763], + [24.38014, 35.194031], + [24.75403, 35.05431], + [24.74736, 34.939579], + [25.187360764, 34.946529389], + [26.272079, 35.089031], + [26.025415, 35.229862], + [25.880419, 35.160973] + ] + ], + [ + [ + [24.240419, 38.29681], + [24.155689, 38.65181], + [23.758753, 38.705971], + [23.470138551, 38.836250306], + [23.196250916, 38.834583283], + [23.626249, 38.541809], + [23.64625, 38.399578], + [24.04347, 38.394859], + [24.337919, 37.986252], + [24.584297, 38.02486], + [24.240419, 38.29681] + ] + ], + [ + [ + [26.344307, 39.38736], + [25.919308, 39.293472], + [25.832083, 39.189861], + [26.419029, 38.96125], + [26.53014, 39.17181], + [26.344307, 39.38736] + ] + ], + [ + [ + [28.221806, 36.456249], + [27.878469, 36.322639], + [27.733471, 35.916809], + [28.05958, 36.061531], + [28.221806, 36.456249] + ] + ], + [ + [ + [20.563749, 38.472919], + [20.338753, 38.1782], + [20.81625, 38.113472], + [20.563749, 38.472919] + ] + ], + [ + [ + [25.447639, 40.034863], + [25.043753, 39.982639], + [25.049307, 39.842083], + [25.35486, 39.782082], + [25.447639, 40.034863] + ] + ], + [ + [ + [19.850416, 39.821804], + [19.640141, 39.750416], + [19.937084, 39.472637], + [19.850416, 39.821804] + ] + ] + ] + }, + "properties": { + "id": "e1fd18b0-00ef-4052-bdcf-984a3bdd586a", + "code": "GRC", + "name": "Greece", + "abbreviation": "C-GRC", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-48.007813, 60.823441], + [-47.447918, 60.810417], + [-46.960415, 60.947918], + [-46.860416, 60.787498], + [-46.239582, 60.966667], + [-46.164585, 60.712502], + [-45.976563, 60.81406], + [-45.568748, 60.458332], + [-45.454166, 60.622917], + [-45.227604, 60.421356], + [-44.891666, 60.529167], + [-44.964584, 60.3125], + [-45.191143, 60.207809], + [-44.914585, 60.014584], + [-44.61438, 59.976685], + [-44.476562, 60.141144], + [-44.178646, 60.196354], + [-43.941814, 59.989521], + [-43.588318, 59.906677], + [-43.119274, 60.004684], + [-43.095833, 60.366665], + [-43.299999, 60.525002], + [-42.841667, 60.59375], + [-42.56778, 61.202595], + [-42.544338, 61.541653], + [-42.132362, 61.790092], + [-42.106838, 62.018738], + [-42.258404, 62.198421], + [-42.025066, 62.801552], + [-41.544857, 62.915092], + [-41.107357, 63.219261], + [-41.267258, 63.381237], + [-40.511524, 63.70676], + [-40.633404, 63.953636], + [-40.530273, 64.090088], + [-40.625587, 64.397903], + [-40.261524, 64.3703], + [-40.249023, 64.561966], + [-40.600071, 65.056755], + [-40.213089, 65.014572], + [-39.733921, 65.322906], + [-39.50684, 65.283318], + [-39.213089, 65.710403], + [-38.871944, 65.508842], + [-38.541733, 65.636971], + [-38.196423, 65.645821], + [-37.81934, 66.162491], + [-37.757362, 65.940086], + [-37.958401, 65.717171], + [-37.738091, 65.591652], + [-37.406837, 65.641655], + [-37.065174, 65.852074], + [-37.06934, 65.591652], + [-36.894341, 65.589569], + [-36.590172, 65.799988], + [-36.427673, 66.083321], + [-36.358921, 65.837486], + [-35.436005, 66.312485], + [-35.179756, 66.264572], + [-34.699024, 66.478638], + [-34.392258, 66.483322], + [-34.019863, 66.814049], + [-34.010483, 66.998421], + [-33.743816, 67.105721], + [-33.217773, 67.107803], + [-32.916733, 67.564049], + [-33.046421, 67.633324], + [-32.123505, 68.00415], + [-32.265171, 68.374985], + [-31.69948, 68.13073], + [-31.270313, 68.197395], + [-30.510416, 68.09375], + [-30.470833, 68.25], + [-29.74375, 68.414581], + [-29.436979, 68.289063], + [-29.060417, 68.42292], + [-28.864584, 68.345833], + [-28.316668, 68.447914], + [-27.68125, 68.683334], + [-27.075001, 68.61042], + [-26.439583, 68.691666], + [-26.339582, 68.814583], + [-25.752083, 68.866669], + [-25.481251, 69.116669], + [-25.139584, 69.131248], + [-25.204166, 69.277084], + [-24.827084, 69.247917], + [-24.13125, 69.568748], + [-23.772917, 69.518753], + [-23.289583, 69.650002], + [-23.077084, 69.939583], + [-22.570833, 69.943748], + [-22.098438, 70.090103], + [-23.052084, 70.074997], + [-24.597918, 70.241669], + [-24.891666, 70.337502], + [-25.418751, 70.26667], + [-25.439583, 70.35833], + [-26.231251, 70.197914], + [-26.856251, 70.247917], + [-27.143749, 70.162498], + [-27.137501, 70.01667], + [-27.875, 70.097916], + [-26.88125, 70.316666], + [-26.447916, 70.316666], + [-26.456249, 70.45208], + [-28.166666, 70.352081], + [-28.25625, 70.539581], + [-27.895834, 70.86042], + [-27.633333, 70.916664], + [-26.783333, 70.92292], + [-25.65, 71.14167], + [-25.420834, 71.268753], + [-25.841667, 71.474998], + [-26.947395, 71.473434], + [-27.470833, 71.564583], + [-27.464582, 71.737503], + [-28.239584, 71.945831], + [-27.862499, 71.927086], + [-27.0375, 71.574997], + [-25.635416, 71.53125], + [-25.127083, 71.29583], + [-24.683853, 71.359901], + [-24.59948, 71.222397], + [-24.216667, 71.022919], + [-23.977083, 70.627083], + [-23.364584, 70.456253], + [-22.637501, 70.441666], + [-22.653646, 70.717186], + [-22.529167, 70.875], + [-22.391146, 70.465103], + [-22.058332, 70.51667], + [-21.972918, 70.412498], + [-21.502083, 70.512497], + [-21.816668, 70.777084], + [-21.695833, 71.01667], + [-21.843229, 71.123436], + [-21.725, 71.443748], + [-22.208334, 71.466667], + [-22.376562, 71.342186], + [-22.521355, 71.756767], + [-23.022917, 71.614586], + [-23.153646, 71.6651], + [-22.554167, 71.887497], + [-23.25, 72.09375], + [-23.733334, 72.162498], + [-24.622917, 72.42083], + [-24.775, 72.6875], + [-25.252083, 72.79583], + [-25.847918, 72.710419], + [-26.2875, 72.772919], + [-25.660418, 72.893753], + [-25.170834, 72.925003], + [-25.177084, 73.070831], + [-25.548437, 73.080734], + [-26.097918, 73.195831], + [-26.716667, 73.13958], + [-26.291666, 73.302086], + [-25.758333, 73.254166], + [-25.339582, 73.460419], + [-24.472918, 73.537498], + [-24.372917, 73.791664], + [-24.054687, 73.822395], + [-23.997396, 73.590103], + [-23.077084, 73.349998], + [-22.183332, 73.252083], + [-21.314062, 73.450516], + [-20.495832, 73.449997], + [-20.518749, 73.770836], + [-20.71875, 73.870834], + [-21.735416, 74.058334], + [-22.004168, 73.989586], + [-22.516666, 74.050003], + [-21.970833, 74.220833], + [-21.302084, 74.089584], + [-20.185417, 74.160416], + [-20.220833, 74.29583], + [-19.372917, 74.260414], + [-18.969271, 74.482811], + [-19.227083, 74.506248], + [-19.30677, 74.664063], + [-19.691668, 74.572914], + [-20.266666, 74.660416], + [-20.779167, 74.67292], + [-20.565104, 75.197395], + [-21.116667, 75.322914], + [-22.002083, 75.604164], + [-21.46875, 75.54583], + [-21.200001, 75.412498], + [-20.645834, 75.287498], + [-20.143749, 75.333336], + [-19.984896, 75.1651], + [-19.612499, 75.127083], + [-19.339582, 75.320831], + [-19.527082, 75.758331], + [-20.043751, 75.958336], + [-21.668751, 75.956253], + [-22.077084, 76.020836], + [-22.733334, 75.883331], + [-23.189583, 75.845833], + [-23.739584, 75.943748], + [-23.94375, 75.89167], + [-23.934896, 76.129684], + [-23.573437, 76.319267], + [-23.858334, 76.368752], + [-25.06875, 76.302086], + [-25.354166, 76.335419], + [-23.572916, 76.416664], + [-22.993229, 76.704689], + [-23.195833, 77.135414], + [-23.558332, 77.195831], + [-23.891146, 77.423439], + [-23.747917, 77.970833], + [-23.603645, 78.194267], + [-23.168751, 78.439583], + [-22.785418, 78.431252], + [-22.908333, 78.64167], + [-22.15625, 78.660416], + [-21.597918, 78.487503], + [-21.039583, 78.48333], + [-20.927084, 78.629166], + [-21.270834, 78.76667], + [-20.745832, 79.050003], + [-20.220833, 78.997917], + [-19.158333, 79.13958], + [-19.143749, 79.275002], + [-19.56875, 79.287498], + [-19.68125, 79.410416], + [-21.004168, 79.445831], + [-21.991667, 79.291664], + [-22.856251, 79.495834], + [-22.684896, 79.61927], + [-21.785418, 79.57917], + [-20.629168, 79.689583], + [-20.197916, 80.022919], + [-19.56875, 80.231247], + [-19.314583, 80.25], + [-18.127083, 80.160416], + [-16.772917, 80.17083], + [-16.3375, 80.23333], + [-15.735416, 80.427086], + [-16.829166, 80.537498], + [-18.064583, 80.481247], + [-18.71875, 80.583336], + [-17.964582, 80.566666], + [-17.385416, 80.787498], + [-17.05625, 80.658333], + [-16.085417, 80.60833], + [-15.464583, 80.616669], + [-15.30625, 80.712502], + [-14.352083, 80.741669], + [-14.295834, 80.972916], + [-13.452084, 80.970833], + [-12.6125, 81.143753], + [-13.65625, 81.287498], + [-13.725, 81.368752], + [-12.502084, 81.362503], + [-12.308333, 81.541664], + [-13.079166, 81.61042], + [-13.464583, 81.737503], + [-14.210417, 81.637497], + [-14.372916, 81.495834], + [-15.3125, 81.445831], + [-15.85, 81.458336], + [-16.095833, 81.574997], + [-16.697916, 81.622917], + [-16.918751, 81.366669], + [-17.322916, 81.191666], + [-18.147917, 81.133331], + [-19.595833, 80.88958], + [-19.44375, 80.995834], + [-17.802084, 81.237503], + [-17.264584, 81.287498], + [-17.75625, 81.443748], + [-18.427084, 81.48333], + [-19.28125, 81.366669], + [-19.314583, 81.568748], + [-19.81875, 81.666664], + [-19.916666, 81.504166], + [-20.579166, 81.379166], + [-20.725, 81.279167], + [-21.335417, 81.183334], + [-22.045834, 80.991669], + [-22.929167, 80.879166], + [-23.047916, 80.73542], + [-23.927084, 80.57708], + [-23.133333, 80.820831], + [-23.262501, 80.88958], + [-22.664583, 81.018753], + [-22.00625, 81.272919], + [-21.308853, 81.453651], + [-21.020834, 81.741669], + [-21.013021, 81.918228], + [-21.262501, 82.04792], + [-22.489584, 82.041664], + [-23.254168, 81.993752], + [-23.408333, 81.697914], + [-23.808332, 81.710419], + [-26.299999, 81.429169], + [-27.552084, 81.400002], + [-29.239584, 81.195831], + [-30.166666, 81.333336], + [-28.602083, 81.393753], + [-27.43177, 81.504684], + [-26.633333, 81.541664], + [-24.7125, 81.758331], + [-24.543751, 81.993752], + [-26.668751, 82.03125], + [-28.179167, 82.020836], + [-31.31875, 81.82917], + [-32.045834, 81.695831], + [-31.883333, 81.541664], + [-31.15, 81.397919], + [-33.012501, 81.5], + [-32.65625, 81.625], + [-32.791668, 81.802086], + [-31.414583, 81.972916], + [-29.285418, 82.13958], + [-27.695833, 82.193748], + [-25.572916, 82.152084], + [-24.395834, 82.150002], + [-23.339582, 82.260414], + [-21.470833, 82.308334], + [-20.8375, 82.464584], + [-20.4375, 82.477081], + [-19.802605, 82.595314], + [-20.885416, 82.785416], + [-21.545834, 82.806252], + [-22.402082, 82.902084], + [-22.7875, 82.810417], + [-23.108334, 82.972916], + [-23.810417, 82.960419], + [-24.69375, 82.85833], + [-24.133333, 83.052086], + [-24.852083, 83.252083], + [-26.891666, 83.120834], + [-29.739584, 83.179169], + [-30.616667, 83.162498], + [-32.112499, 83.01458], + [-33.614582, 82.981247], + [-32.977085, 83.081253], + [-32.285416, 83.07917], + [-31.025, 83.206253], + [-29.666666, 83.23333], + [-27.829166, 83.20208], + [-26.983334, 83.214584], + [-25.764584, 83.316666], + [-25.481251, 83.404167], + [-26.237499, 83.48542], + [-27.702084, 83.566666], + [-29.0625, 83.51667], + [-29.283333, 83.591667], + [-29.622917, 83.541664], + [-30.55625, 83.63958], + [-31.514584, 83.647919], + [-31.8125, 83.61042], + [-33.325001, 83.658333], + [-34.639584, 83.622917], + [-34.635418, 83.525002], + [-35.179165, 83.612503], + [-35.777084, 83.612503], + [-35.943748, 83.502083], + [-36.179165, 83.599998], + [-37.732815, 83.549484], + [-37.181252, 83.479164], + [-37.404167, 83.39167], + [-37.654167, 83.456253], + [-38.708332, 83.539581], + [-38.795834, 83.38958], + [-39.629166, 83.42292], + [-39.672916, 83.252083], + [-39.381248, 83.193748], + [-38.289585, 83.191666], + [-38.53125, 83.116669], + [-39.450001, 83.058334], + [-39.8125, 82.949997], + [-39.087502, 82.729164], + [-40.141666, 82.929169], + [-41.335415, 82.935417], + [-42.860416, 83.222916], + [-44.116665, 83.21875], + [-44.733334, 83.164581], + [-43.854168, 83.064583], + [-44.539585, 83.0625], + [-45.489582, 83.112503], + [-46.26823, 83.060936], + [-45.460415, 82.793747], + [-43.989582, 82.783333], + [-43.043751, 82.800003], + [-41.660416, 82.727081], + [-41.241665, 82.662498], + [-40.602085, 82.660416], + [-40.375, 82.574997], + [-40.120316, 82.274483], + [-39.404167, 82.112503], + [-41.058334, 82.175003], + [-41.285416, 82.275002], + [-42.28125, 82.377083], + [-42.431252, 82.572914], + [-42.724998, 82.691666], + [-43.260418, 82.71875], + [-44.549999, 82.691666], + [-46.233334, 82.716667], + [-46.391666, 82.666664], + [-45.391666, 82.493752], + [-45.022915, 82.372917], + [-44.408333, 82.302086], + [-44.491665, 82.216667], + [-45.537498, 82.14167], + [-45.34375, 81.956253], + [-45.802082, 81.845833], + [-44.914585, 81.789581], + [-45.120834, 81.660416], + [-44.485935, 81.483849], + [-44.96875, 81.38958], + [-45.979168, 81.42083], + [-45.983334, 81.604164], + [-47.404167, 82], + [-48.424999, 82.081253], + [-48.902084, 82.199997], + [-49.433334, 82.243752], + [-50.004166, 82.404167], + [-50.525002, 82.45208], + [-51.754166, 82.458336], + [-51.604168, 82.135414], + [-51.016666, 81.95208], + [-50.502602, 81.86615], + [-49.362499, 81.277084], + [-50.432816, 81.360939], + [-50.745834, 81.489586], + [-51.233334, 81.525002], + [-51.235416, 81.620834], + [-52.377083, 81.841667], + [-52.910416, 81.872917], + [-53.59375, 81.98333], + [-53.879166, 81.970833], + [-53.904167, 81.777084], + [-54.529167, 81.589584], + [-54.41927, 81.899483], + [-54.595833, 82.168747], + [-55.212502, 82.337502], + [-55.856251, 82.304169], + [-56.035416, 82.21875], + [-56.71875, 82.25], + [-56.981251, 82.162498], + [-57.339584, 82.208336], + [-59.333332, 82.104164], + [-60.168751, 82.006248], + [-59.295834, 81.879166], + [-58.881248, 81.652084], + [-59.297916, 81.654167], + [-59.537498, 81.831253], + [-60.783333, 81.910416], + [-61.868752, 81.78125], + [-61.904167, 81.67083], + [-61.356251, 81.51667], + [-61.756248, 81.272919], + [-60.702084, 80.987503], + [-60.125, 80.731247], + [-59.618752, 80.612503], + [-61.03125, 80.612503], + [-61.46875, 80.762497], + [-62.083332, 81.0625], + [-62.716667, 81.17292], + [-63.462502, 81.199997], + [-65.010414, 80.966667], + [-65.32708, 80.762497], + [-66.106247, 80.664581], + [-66.775002, 80.462502], + [-67.511978, 80.331772], + [-67.464584, 80.181252], + [-67.047401, 80.054688], + [-66.35833, 80.095833], + [-66.04583, 80.008331], + [-65.20417, 80.10833], + [-64.981247, 79.979164], + [-64.602081, 79.98333], + [-64.285416, 79.88958], + [-64.752083, 79.831253], + [-64.502083, 79.59375], + [-65.020836, 79.45208], + [-66.004166, 79.087502], + [-67.1875, 79.150002], + [-68.462502, 79.050003], + [-69.10833, 78.945831], + [-69.285934, 78.7901], + [-69.806252, 78.800003], + [-70.720314, 78.671349], + [-70.745834, 78.604164], + [-71.418747, 78.625], + [-71.70417, 78.556252], + [-72.3125, 78.533333], + [-72.806252, 78.320831], + [-72.564583, 78.056252], + [-72.197914, 77.935417], + [-71.566666, 77.856247], + [-71.237503, 77.89167], + [-71.066666, 77.760414], + [-70.175003, 77.822914], + [-70.456253, 77.67083], + [-70.185417, 77.589584], + [-69.183334, 77.456253], + [-68.573433, 77.520317], + [-67.602081, 77.518753], + [-67.152084, 77.677086], + [-66.614586, 77.699997], + [-66.215103, 77.624481], + [-66.07917, 77.42292], + [-66.522919, 77.435417], + [-66.722916, 77.349998], + [-67.497398, 77.386978], + [-68.451561, 77.361984], + [-69.033333, 77.258331], + [-68.341667, 77.166664], + [-70.09375, 77.237503], + [-70.791664, 77.199997], + [-71.333336, 77.01458], + [-70.333336, 76.802086], + [-69.73333, 76.95417], + [-69.993233, 76.771355], + [-69.220833, 76.679169], + [-68.447914, 76.666664], + [-68.033333, 76.712502], + [-67.931252, 76.568748], + [-68.711983, 76.586983], + [-69.037498, 76.477081], + [-69.583336, 76.429169], + [-69.3125, 76.302086], + [-68.864586, 76.25], + [-68.48333, 76.085419], + [-66.464584, 75.939583], + [-66.960419, 76.060417], + [-67.112503, 76.258331], + [-66.82708, 76.258331], + [-66.410416, 76.083336], + [-66.17292, 76.275002], + [-65.64167, 76.29792], + [-65.754166, 76.122917], + [-65.32917, 76.037498], + [-65.262497, 76.193748], + [-64.55677, 76.131767], + [-64.32917, 76.356247], + [-64.018753, 76.066666], + [-63.762501, 76.118752], + [-63.468231, 76.375519], + [-63.112499, 76.364586], + [-62.700001, 76.252083], + [-62.260418, 76.283333], + [-61.491665, 76.164581], + [-60.813019, 76.155731], + [-60.689583, 76.01667], + [-60.166668, 76.056252], + [-59.785416, 75.841667], + [-59.166668, 75.875], + [-58.98698, 75.723434], + [-58.521351, 75.739067], + [-58.28125, 75.470833], + [-58.241665, 75.268753], + [-57.929165, 75.191666], + [-57.802082, 75.025002], + [-57.367187, 74.972397], + [-57.068748, 74.650002], + [-56.643749, 74.631248], + [-56.233334, 74.477081], + [-56.197918, 74.347916], + [-56.695835, 74.349998], + [-56.549999, 74.15625], + [-56.071354, 74.280731], + [-56.227085, 74.041664], + [-55.820835, 73.925003], + [-55.752083, 73.724998], + [-56.012501, 73.64167], + [-55.058857, 73.38073], + [-55.421356, 73.104683], + [-55.131248, 73.006248], + [-54.804165, 73.01667], + [-54.246357, 72.797401], + [-54.852085, 72.666664], + [-54.972916, 72.510414], + [-55.429165, 72.51667], + [-55.183857, 72.356766], + [-54.864582, 72.431252], + [-54.922916, 72.214584], + [-55.285416, 72.127083], + [-55.241665, 71.929169], + [-55.539062, 71.743233], + [-55.508335, 71.477081], + [-54.818748, 71.35833], + [-53.914585, 71.445831], + [-53.877602, 71.574478], + [-53.484894, 71.799484], + [-53.558857, 72.045311], + [-53.220833, 71.816666], + [-52.827084, 72.025002], + [-52.775002, 71.866669], + [-53.016666, 71.720833], + [-52.137501, 71.620834], + [-51.664585, 71.745834], + [-51.770832, 71.589584], + [-52.489582, 71.54583], + [-52.929165, 71.408333], + [-52.272915, 71.395836], + [-52.377083, 71.150002], + [-51.392185, 71.103645], + [-50.96875, 70.868752], + [-51.054165, 70.431252], + [-50.616665, 70.322914], + [-51.572918, 70.414581], + [-52.660416, 70.739586], + [-53.522915, 70.75], + [-53.972916, 70.824997], + [-54.581249, 70.708336], + [-53.893749, 70.38958], + [-52.841667, 70.279167], + [-52.349998, 70.060417], + [-51.940102, 70.006767], + [-51.286976, 70.059898], + [-51.166668, 69.962502], + [-50.737499, 69.993752], + [-50.395832, 69.895836], + [-50.843231, 69.645317], + [-50.935417, 69.270836], + [-51.197918, 69.243752], + [-51.090107, 68.9776], + [-51.275002, 68.73333], + [-51.033333, 68.572914], + [-51.885418, 68.502083], + [-52.247917, 68.645836], + [-52.460415, 68.458336], + [-52.829166, 68.408333], + [-52.933334, 68.279167], + [-52.481251, 68.168747], + [-51.672916, 68.26667], + [-51.166668, 68.056252], + [-51.868752, 68.033333], + [-52.572399, 68.188019], + [-52.700001, 68.099998], + [-53.083851, 68.186981], + [-53.079166, 68.056252], + [-53.779167, 67.76458], + [-53.662498, 67.479164], + [-52.993752, 67.756248], + [-52.364059, 67.822395], + [-51.724998, 67.683334], + [-51.395832, 67.747917], + [-50.797916, 67.762497], + [-51.793228, 67.621353], + [-52.414585, 67.770836], + [-53.035416, 67.706253], + [-53.447918, 67.502083], + [-53.804165, 67.408333], + [-53.880726, 67.215103], + [-52.489582, 67.310417], + [-53.796356, 67.169266], + [-53.770832, 66.958336], + [-52.568748, 66.872917], + [-52.983334, 66.70417], + [-53.231251, 66.706253], + [-53.6875, 66.479164], + [-53.57552, 66.214066], + [-53.085415, 65.652084], + [-52.827084, 65.660416], + [-52.779167, 65.504166], + [-52.474998, 65.381248], + [-52.474998, 65.220833], + [-52.068748, 64.949997], + [-52.164062, 64.628647], + [-52.110935, 64.2901], + [-51.954685, 64.11927], + [-51.444271, 64.50885], + [-51.202084, 64.76458], + [-51.037498, 64.60833], + [-50.635937, 64.819267], + [-50.300522, 64.731766], + [-49.965107, 64.396355], + [-50.489582, 64.691666], + [-50.918751, 64.591667], + [-50.599998, 64.4375], + [-50.910416, 64.402084], + [-51.414585, 64.035416], + [-51.464584, 63.589584], + [-51.174999, 63.493752], + [-51.059898, 63.178646], + [-50.878643, 63.052601], + [-50.271351, 62.833851], + [-50.291149, 62.527607], + [-49.914063, 62.258854], + [-49.52969, 62.242188], + [-49.631248, 61.970833], + [-49.186981, 61.823441], + [-49.23698, 61.597393], + [-48.856251, 61.366665], + [-48.456249, 61.360416], + [-48.539062, 61.18594], + [-47.681252, 60.985416], + [-48.007813, 60.823441] + ] + ], + [ + [ + [-21, 77.970833], + [-21.235416, 77.95208], + [-21.291666, 77.599998], + [-21.624479, 77.503647], + [-21.995832, 77.291664], + [-22.106251, 76.856247], + [-21.508333, 76.558334], + [-21.141666, 76.543747], + [-21.106251, 76.762497], + [-20.52552, 76.889061], + [-19.854166, 76.918747], + [-19.375, 76.816666], + [-18.895834, 76.800003], + [-18.552084, 76.691666], + [-18.183332, 76.89167], + [-18.2125, 77.20417], + [-18.933332, 77.318748], + [-18.933332, 77.175003], + [-19.345833, 77.216667], + [-19.991667, 77.402084], + [-20.489584, 77.658333], + [-19.941147, 77.664063], + [-19.268749, 77.518753], + [-18.897917, 77.558334], + [-19.264584, 77.724998], + [-19.683332, 77.741669], + [-21, 77.970833] + ] + ], + [ + [ + [-54.367188, 70.315102], + [-54.837502, 70.195831], + [-54.795834, 69.599998], + [-54.056252, 69.550003], + [-54.1875, 69.445831], + [-53.849476, 69.265099], + [-53.516666, 69.252083], + [-52.273437, 69.448433], + [-51.860935, 69.631767], + [-51.99844, 69.80365], + [-52.731251, 69.925003], + [-53.158852, 70.157814], + [-53.456249, 70.23542], + [-54.367188, 70.315102] + ] + ], + [ + [ + [-47.270832, 82.604164], + [-48.339584, 82.574997], + [-47.787498, 82.387497], + [-47.775002, 82.29792], + [-46.127083, 82.054169], + [-45.951565, 81.925522], + [-45.570835, 81.931252], + [-45.724998, 82.158333], + [-45.122917, 82.229164], + [-45.602085, 82.427086], + [-46.837502, 82.57917], + [-47.270832, 82.604164] + ] + ], + [ + [ + [-25.68125, 71.0625], + [-26.520834, 70.870834], + [-27.043751, 70.85833], + [-27.177084, 70.775002], + [-27.91823, 70.628647], + [-27.985416, 70.414581], + [-26.606251, 70.512497], + [-26.216667, 70.57917], + [-26.020834, 70.512497], + [-25.283333, 70.647919], + [-25.364584, 70.904167], + [-25.68125, 71.0625] + ] + ], + [ + [ + [-24.052605, 72.878647], + [-24.524479, 72.829689], + [-24.370832, 72.585419], + [-23.901562, 72.452599], + [-23.279167, 72.35833], + [-22.727083, 72.177086], + [-22.185938, 72.13385], + [-22.060417, 72.262497], + [-22.691668, 72.32708], + [-22.775, 72.45417], + [-21.945833, 72.397919], + [-22.168751, 72.520836], + [-22.597918, 72.59375], + [-23.168751, 72.835419], + [-24.052605, 72.878647] + ] + ], + [ + [ + [-17.543751, 80.074997], + [-18.089582, 80.074997], + [-18.864584, 80.002083], + [-18.929167, 80.052086], + [-19.63125, 79.972916], + [-19.947916, 79.854164], + [-20.016666, 79.6875], + [-19.00625, 79.741669], + [-18.029167, 79.693748], + [-17.341667, 79.931252], + [-17.543751, 80.074997] + ] + ], + [ + [ + [-24.690104, 73.42865], + [-25.299479, 73.393234], + [-25.720833, 73.17292], + [-24.408333, 73.020836], + [-23.014584, 73.09375], + [-23.210417, 73.237503], + [-23.779167, 73.356247], + [-24.690104, 73.42865] + ] + ], + [ + [ + [-23.191668, 73.060417], + [-24.549999, 72.98333], + [-24.535418, 72.88958], + [-23.952084, 72.908333], + [-22.956249, 72.849998], + [-22.714582, 72.720833], + [-21.902082, 72.67083], + [-21.989584, 72.929169], + [-23.191668, 73.060417] + ] + ], + [ + [ + [-20.966667, 76.300003], + [-21.81823, 76.184898], + [-21.883854, 76.010933], + [-20.383333, 75.972916], + [-19.731771, 76.11927], + [-20.03125, 76.260414], + [-20.495832, 76.20208], + [-20.966667, 76.300003] + ] + ], + [ + [ + [-42.354168, 82.681252], + [-42.022915, 82.372917], + [-40.849998, 82.279167], + [-40.271351, 82.296349], + [-40.754166, 82.495834], + [-41.097916, 82.502083], + [-41.860416, 82.652084], + [-42.354168, 82.681252] + ] + ], + [ + [ + [-22.075001, 76.635414], + [-22.612499, 76.504166], + [-22.514584, 76.291664], + [-22.702604, 76.044266], + [-21.700001, 76.247917], + [-21.679687, 76.517189], + [-22.075001, 76.635414] + ] + ], + [ + [ + [-53.835415, 82.293747], + [-54.220833, 82.210419], + [-54.058334, 82.064583], + [-52.525002, 81.897919], + [-52.158852, 81.941147], + [-53.339584, 82.224998], + [-53.835415, 82.293747] + ] + ], + [ + [ + [-18.016666, 75.414581], + [-18.347918, 75.306252], + [-18.854166, 75.304169], + [-18.897917, 75.006248], + [-18.454166, 74.964584], + [-17.862499, 75.027084], + [-17.344271, 75.019272], + [-18.022396, 75.156769], + [-18.016666, 75.414581] + ] + ], + [ + [ + [-46.689583, 83.03125], + [-47.122917, 83.010414], + [-47.483334, 82.904167], + [-46.835415, 82.785416], + [-45.610416, 82.79583], + [-45.854168, 82.92292], + [-46.689583, 83.03125] + ] + ], + [ + [ + [-21.5, 78.20208], + [-21.86875, 78.183334], + [-21.86927, 78.029686], + [-22.145834, 77.972916], + [-22.191668, 77.67083], + [-21.929687, 77.557816], + [-21.586979, 77.951561], + [-21.106771, 78.072395], + [-21.5, 78.20208] + ] + ], + [ + [ + [-51.945835, 81.877083], + [-51.418751, 81.67083], + [-50.933334, 81.54583], + [-50.325001, 81.518753], + [-50.942184, 81.799484], + [-51.945835, 81.877083] + ] + ], + [ + [ + [-19.052605, 76.723434], + [-19.1625, 76.489586], + [-18.466667, 75.927086], + [-18.454687, 76.079689], + [-18.741667, 76.477081], + [-18.704687, 76.610939], + [-19.052605, 76.723434] + ] + ], + [ + [ + [-20.35, 75.033333], + [-20.575001, 74.98542], + [-20.464582, 74.737503], + [-20.035418, 74.708336], + [-19.723438, 74.856766], + [-20.35, 75.033333] + ] + ], + [ + [ + [-19.200001, 82.120834], + [-19.614063, 82.05677], + [-19.075001, 81.824997], + [-18.549999, 81.79792], + [-18.652603, 81.909897], + [-19.200001, 82.120834] + ] + ], + [ + [ + [-51.210415, 69.92292], + [-51.37656, 69.722397], + [-51.231251, 69.525002], + [-50.960937, 69.564064], + [-50.982815, 69.74115], + [-50.689583, 69.866669], + [-51.210415, 69.92292] + ] + ], + [ + [ + [-41.370834, 83.337502], + [-41.554165, 83.241669], + [-40.893749, 83.23333], + [-40.379166, 83.13958], + [-39.587502, 83.089584], + [-40.489582, 83.26667], + [-41.370834, 83.337502] + ] + ], + [ + [ + [-40.977085, 83.143753], + [-41.152084, 83.064583], + [-40.179165, 82.972916], + [-39.989582, 83.070831], + [-40.977085, 83.143753] + ] + ], + [ + [ + [-19.239584, 80.206253], + [-19.704166, 80.020836], + [-18.6875, 80.118752], + [-19.239584, 80.206253] + ] + ], + [ + [ + [-17.577084, 77.856247], + [-17.772917, 77.849998], + [-18.064583, 77.606247], + [-17.710417, 77.614586], + [-17.577084, 77.856247] + ] + ], + [ + [ + [-41.922916, 83.14167], + [-41.295834, 82.960419], + [-40.84375, 83.025002], + [-41.922916, 83.14167] + ] + ], + [ + [ + [-52.893749, 71.35833], + [-52.964584, 71.154167], + [-52.635418, 71.162498], + [-52.566666, 71.302086], + [-52.893749, 71.35833] + ] + ], + [ + [ + [-55.102085, 72.845833], + [-55.599998, 72.752083], + [-55.497917, 72.558334], + [-55.102085, 72.845833] + ] + ], + [ + [ + [-48.995834, 82.835419], + [-48.974998, 82.716667], + [-48.170834, 82.71875], + [-48.995834, 82.835419] + ] + ], + [ + [ + [-23.163021, 78.18177], + [-22.870832, 77.962502], + [-22.642187, 78.094269], + [-23.163021, 78.18177] + ] + ], + [ + [ + [-56.575001, 73.918747], + [-56.595833, 73.808334], + [-55.923435, 73.851562], + [-56.575001, 73.918747] + ] + ], + [ + [ + [-19.270313, 78.898438], + [-19.691668, 78.789581], + [-19.479166, 78.67292], + [-19.270313, 78.898438] + ] + ], + [ + [ + [-27.245312, 70.851562], + [-27.672916, 70.868752], + [-27.672916, 70.714584], + [-27.245312, 70.851562] + ] + ], + [ + [ + [-24.802605, 72.903648], + [-25.333334, 72.839584], + [-24.86927, 72.773437], + [-24.802605, 72.903648] + ] + ], + [ + [ + [-43.964443, 59.973057], + [-44.128479, 59.804871], + [-43.698303, 59.854919], + [-43.964443, 59.973057] + ] + ], + [ + [ + [-70.964584, 77.460419], + [-71.083336, 77.377083], + [-70.314583, 77.393753], + [-70.964584, 77.460419] + ] + ], + [ + [ + [-53.635418, 71.258331], + [-53.930729, 71.182816], + [-53.695835, 71.033333], + [-53.635418, 71.258331] + ] + ], + [ + [ + [-49.510418, 82.472916], + [-49.104168, 82.316666], + [-49.049999, 82.439583], + [-49.510418, 82.472916] + ] + ], + [ + [ + [-54.987499, 72.379166], + [-55.414585, 72.291664], + [-55.414585, 72.164581], + [-54.987499, 72.379166] + ] + ], + [ + [ + [-21.002083, 76.368752], + [-20.458855, 76.231766], + [-20.466667, 76.331253], + [-21.002083, 76.368752] + ] + ] + ] + }, + "properties": { + "id": "0b5be7c5-2327-45dc-a4b2-f8643ba66c10", + "code": "GRL", + "name": "Greenland", + "abbreviation": "C-GRL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.637359619, 12.046250344], + [-61.654583, 12.23514], + [-61.753192901, 12.120973588], + [-61.637359619, 12.046250344] + ] + ] + }, + "properties": { + "id": "3e5af7bb-6268-433c-98f4-277b7985e61b", + "code": "GRD", + "name": "Grenada", + "abbreviation": "C-GRD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.61402893, 15.981528283], + [-61.583195, 16.235138], + [-61.240139008, 16.254863739], + [-61.535694122, 16.454584122], + [-61.801529, 16.314860999], + [-61.61402893, 15.981528283] + ] + ] + }, + "properties": { + "id": "7e9800b0-60fc-483e-826f-510a56f8a401", + "code": "GLP", + "name": "Guadeloupe", + "abbreviation": "C-GLP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [144.718246, 13.250545], + [144.776611327, 13.39494896], + [144.640213013, 13.442012788], + [144.718246, 13.250545] + ] + ] + }, + "properties": { + "id": "41bb4074-ddf0-4563-8df7-24b4bfa88f04", + "code": "GUM", + "name": "Guam", + "abbreviation": "C-GUM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.146888732, 17.814586639], + [-90.987639511, 17.815473446], + [-90.987460023, 17.251392669], + [-91.264726288, 17.168226467], + [-91.067180679, 16.901246329], + [-90.803295848, 16.795231396], + [-90.64563778, 16.517452403], + [-90.417543396, 16.422987835], + [-90.44204187, 16.074256897], + [-91.731384147, 16.074020363], + [-92.210596348, 15.261423482], + [-92.074705575, 15.089259225], + [-92.220236314, 14.536805152], + [-91.798751831, 14.199861526], + [-91.304581, 13.950693], + [-90.639305115, 13.924583436], + [-90.124862672, 13.741559982], + [-89.891952515, 14.043659211], + [-89.519424439, 14.224593162], + [-89.349784852, 14.422576904], + [-89.126739503, 14.715138436], + [-89.147872926, 15.070316314], + [-88.683761598, 15.334857941], + [-88.225975254, 15.722982996], + [-88.554581, 15.945972], + [-88.60125, 15.741529], + [-88.912636, 15.904163211], + [-89.21299, 15.895202], + [-89.14615631, 17.049846649], + [-89.146888732, 17.814586639] + ] + ] + }, + "properties": { + "id": "d9a6e806-d2a8-41a1-95b1-6b6e3b953c7a", + "code": "GTM", + "name": "Guatemala", + "abbreviation": "C-GTM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.581250906, 49.424304962], + [-2.537083, 49.509304], + [-2.651806001, 49.453472001], + [-2.581250906, 49.424304962] + ] + ] + }, + "properties": { + "id": "33737746-7e85-4344-94b2-fa520adb2d08", + "code": "GGY", + "name": "Guernsey", + "abbreviation": "C-GGY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-7.978549004, 10.175108911], + [-8.301472663, 10.636231422], + [-8.287079811, 10.995130539], + [-8.68062973, 10.967069627], + [-8.396868706, 11.382309914], + [-8.854325295, 11.628337861], + [-8.794913293, 11.923871994], + [-8.968897819, 12.348448754], + [-9.362003327, 12.495670318], + [-9.340385436, 12.242920875], + [-9.630397796, 12.172830583], + [-9.699756623, 12.023820878], + [-10.340060235, 12.215589524], + [-10.672221185, 11.893879891], + [-10.93279934, 12.223349572], + [-11.257471084, 11.992480279], + [-11.497797013, 12.20952511], + [-11.377452851, 12.417995453], + [-12.061086654, 12.433949471], + [-12.389674186, 12.374944686], + [-12.757684708, 12.43312931], + [-13.071542, 12.643987], + [-13.708568573, 12.674434662], + [-13.666210174, 12.311989784], + [-13.941760063, 12.135919571], + [-13.713780403, 12.008872032], + [-13.713431359, 11.709819794], + [-14.268070221, 11.678389549], + [-14.665384031, 11.506735114], + [-14.913196, 11.079076], + [-14.789582, 10.759584], + [-14.542916298, 10.827638626], + [-14.667917, 10.515972], + [-14.398471, 10.235417], + [-14.079862, 10.175417], + [-13.824861, 9.848472], + [-13.662917, 9.926806], + [-13.609028816, 9.573193551], + [-13.303506, 9.039858], + [-13.002149581, 9.097373962], + [-12.935078621, 9.286656379], + [-12.686799049, 9.40917778], + [-12.431738854, 9.881637574], + [-12.12001896, 9.871853828], + [-11.885848999, 9.997462272], + [-11.206748962, 10.000431061], + [-10.668852807, 9.309306145], + [-10.584836005, 9.043245315], + [-10.553540229, 8.307664871], + [-10.268709182, 8.49120617], + [-9.795275689, 8.508511543], + [-9.486963272, 8.380972862], + [-9.359363555, 7.796105863], + [-9.405579566, 7.42003107], + [-9.065999984, 7.20096016], + [-8.706716538, 7.514249802], + [-8.472180367, 7.55458212], + [-8.214912415, 7.533728123], + [-8.071770667, 7.808342934], + [-8.068925857, 8.161513328], + [-8.242429734, 8.456877709], + [-7.985136032, 8.483769416], + [-7.641070842, 8.377433776], + [-7.772655011, 8.767118454], + [-7.94704485, 8.786557197], + [-7.857914924, 9.43301773], + [-8.149227142, 9.532054901], + [-8.165474891, 9.926783562], + [-7.978549004, 10.175108911] + ] + ] + }, + "properties": { + "id": "3b8764b5-6cd5-4bb6-ab19-0132853461d4", + "code": "GIN", + "name": "Guinea", + "abbreviation": "C-GIN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-13.708568573, 12.674434662], + [-15.173559189, 12.68426323], + [-15.680843353, 12.424531937], + [-16.201256, 12.460594], + [-16.714891435, 12.339930535], + [-15.954861, 11.742361], + [-15.521859, 11.77988], + [-15.500695, 11.326528], + [-15.327638, 11.133472], + [-14.958195, 10.979813], + [-14.932769, 11.05625], + [-14.913196, 11.079076], + [-14.665384031, 11.506735114], + [-14.268070221, 11.678389549], + [-13.713431359, 11.709819794], + [-13.713780403, 12.008872032], + [-13.941760063, 12.135919571], + [-13.666210174, 12.311989784], + [-13.708568573, 12.674434662] + ] + ] + }, + "properties": { + "id": "bb5696c6-bd25-4eca-8863-1e6dcbfbfcc5", + "code": "GNB", + "name": "Guinea-Bissau", + "abbreviation": "C-GNB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-56.480251313, 1.941472054], + [-56.689189911, 2.018347026], + [-57.103607178, 2.767931939], + [-57.207618714, 2.841795922], + [-57.30506134, 3.373516083], + [-57.692398071, 3.402242899], + [-58.086399078, 4.131200791], + [-57.845840453, 4.630971909], + [-57.928577423, 4.832964897], + [-57.680843354, 5.020936966], + [-57.329795837, 5.04158783], + [-57.348628997, 5.312994956], + [-57.180747985, 5.613527776], + [-57.146744, 5.992897], + [-57.302639007, 6.241250038], + [-58.012916565, 6.792916774], + [-58.420970916, 6.865417004], + [-58.490139007, 7.355138779], + [-59.12625122, 8.031249046], + [-59.987640381, 8.530454636], + [-59.821274, 8.31208], + [-60.006241, 8.062861], + [-60.636600001, 7.604187], + [-60.547969818, 7.14073801], + [-60.343052, 7.03345], + [-60.720569633, 6.747941029], + [-61.132141, 6.723821], + [-61.219208, 6.593304], + [-61.130009, 6.181298], + [-61.386719, 5.946328], + [-60.73051803, 5.197120977], + [-60.121932984, 5.24393177], + [-59.976623535, 5.034758091], + [-60.159557342, 4.519643783], + [-59.671257019, 4.37655878], + [-59.725769043, 4.192818165], + [-59.515739441, 3.941425085], + [-59.844989777, 3.603478909], + [-59.798114776, 3.356441021], + [-59.981575, 2.929233], + [-59.908702999, 2.392433001], + [-59.723751068, 2.278232097], + [-59.744270325, 1.846951007], + [-59.15567, 1.348349], + [-58.507111, 1.264407], + [-58.318584443, 1.593605041], + [-58.001270294, 1.505056024], + [-57.769802093, 1.719905019], + [-57.544075013, 1.702345014], + [-57.423114777, 1.90612495], + [-57.081291199, 2.01928401], + [-56.800163269, 1.863873958], + [-56.480251313, 1.941472054] + ] + ] + }, + "properties": { + "id": "581b37a5-d124-4efc-8ac9-30bdff8cd1db", + "code": "GUY", + "name": "Guyana", + "abbreviation": "C-GUY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.758804322, 19.702087403], + [-72.314315795, 19.760194779], + [-72.780136108, 19.951528549], + [-73.157913, 19.930695], + [-73.426247, 19.796806001], + [-73.364585877, 19.622638703], + [-73.053474, 19.630136], + [-72.682113647, 19.411931992], + [-72.821525999, 19.067362], + [-72.34967041, 18.545743943], + [-72.728752, 18.426525], + [-73.456802369, 18.528749466], + [-73.662857, 18.499863], + [-74.210136, 18.675974], + [-74.407150269, 18.629838943], + [-74.369628906, 18.296346664], + [-74.091308594, 18.247360231], + [-73.902877999, 18.031035999], + [-73.632919312, 18.249305725], + [-72.85319519, 18.142915726], + [-72.052917481, 18.237083434], + [-71.753136, 18.03014], + [-71.687995911, 18.34273529], + [-72.003883361, 18.626689911], + [-71.732223511, 18.726322175], + [-71.770469666, 19.03172493], + [-71.636230468, 19.234956741], + [-71.758804322, 19.702087403] + ] + ] + }, + "properties": { + "id": "638de2b9-ba1c-46d2-a55e-103b46f7ccb7", + "code": "HTI", + "name": "Haiti", + "abbreviation": "C-HTI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [73.311111, -52.976112], + [73.493332, -53.194443], + [73.761665, -53.122501], + [73.311111, -52.976112] + ] + ] + }, + "properties": { + "id": "ce4f0f6a-0cf9-44af-810a-7db680aac2af", + "code": "HMD", + "name": "Heard Island and McDonald Island", + "abbreviation": "C-HMD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-87.811859131, 13.403461457], + [-87.534302, 13.343194], + [-87.311523438, 12.99064827], + [-86.958984376, 13.032221793], + [-86.907913366, 13.256347016], + [-86.706542969, 13.295379639], + [-86.76284027, 13.773123741], + [-86.352073669, 13.759555818], + [-86.092407226, 14.063927651], + [-85.901016235, 13.899938584], + [-85.405273438, 14.124769212], + [-84.903411866, 14.807711601], + [-84.469063, 14.614528], + [-83.851472523, 14.766824124], + [-83.506614685, 14.998771667], + [-83.147117605, 14.991808973], + [-83.390137, 15.255694], + [-83.768196, 15.265139], + [-83.873474, 15.454583], + [-84.30542, 15.815694], + [-85.000968933, 15.982082367], + [-85.489029001, 15.860696], + [-85.823471, 15.986807], + [-86.413192748, 15.777916909], + [-86.924858094, 15.756250382], + [-87.713470458, 15.918472291], + [-88.225975254, 15.722982996], + [-88.683761598, 15.334857941], + [-89.147872926, 15.070316314], + [-89.126739503, 14.715138436], + [-89.349784852, 14.422576904], + [-88.497642517, 13.956601144], + [-88.103027343, 13.98646164], + [-87.710273743, 13.81076336], + [-87.811859131, 13.403461457] + ] + ] + }, + "properties": { + "id": "d684434c-4db9-4a48-81cc-bb381812a734", + "code": "HND", + "name": "Honduras", + "abbreviation": "C-HND", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [16.113840435, 46.869569682], + [16.293876649, 46.873706818], + [16.584312439, 46.479049682], + [17.179605484, 46.153518678], + [17.27098465, 46.00510025], + [17.858472825, 45.774066925], + [18.462974549, 45.759075164], + [18.81132698, 45.911281586], + [19.274522782, 45.99798584], + [19.563688278, 46.180782318], + [20.265501022, 46.124713898], + [20.635412215, 46.127063751], + [20.875003815, 46.287754058], + [21.171640395, 46.298370361], + [21.331487655, 46.631893159], + [21.530939102, 46.721061707], + [22.0256958, 47.52017212], + [22.266178132, 47.731449128], + [22.6818676, 47.788032532], + [22.904510498, 47.957382203], + [22.157321931, 48.405391694], + [21.732946395, 48.34992218], + [21.441425324, 48.585346222], + [21.16075325, 48.523136139], + [20.840295791, 48.58637619], + [20.507484436, 48.53308487], + [20.2871418, 48.263687134], + [19.816638946, 48.170585633], + [19.628635406, 48.251419069], + [19.468629838, 48.087902069], + [18.848052978, 48.052459718], + [18.662952422, 47.761344909], + [17.725038529, 47.754268647], + [17.160628178, 48.008037749], + [17.094339254, 47.708666039], + [16.749597917, 47.682820257], + [16.446919674, 47.406014134], + [16.475166652, 46.997389787], + [16.113840435, 46.869569682] + ] + ] + }, + "properties": { + "id": "5b350c27-adc2-4baf-a284-3cc58866572d", + "code": "HUN", + "name": "Hungary", + "abbreviation": "C-HUN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-19.418750763, 63.462501526], + [-18.672916, 63.397915], + [-17.971354, 63.515106], + [-17.76198, 63.68906], + [-17.385416, 63.775002], + [-16.629688, 63.800522], + [-15.941667, 64.150002], + [-15.322917, 64.291664], + [-15.017187, 64.264061], + [-14.541667, 64.402084], + [-14.584896, 64.580734], + [-13.995833, 64.722916], + [-13.496354, 65.073433], + [-13.770833, 65.306252], + [-13.606771, 65.504684], + [-14.125, 65.620834], + [-14.33125, 65.785416], + [-14.83125, 65.716667], + [-14.613021, 65.99115], + [-15.095313073, 66.045310975], + [-15.002084, 66.26458], + [-15.379167, 66.147919], + [-15.777083, 66.268753], + [-15.954166, 66.512497], + [-16.541666, 66.506248], + [-16.458855, 66.206772], + [-16.926563, 66.122398], + [-17.278646469, 66.160934448], + [-17.639584, 65.979164], + [-17.964582, 66.152083999], + [-18.262501, 66.17292], + [-18.203646, 65.921349], + [-18.512500762, 65.960418702], + [-18.77083397, 66.19166565], + [-19.364584, 66.074997], + [-19.398437, 65.731766], + [-19.629168, 65.743752], + [-20.013021, 66.05365], + [-20.41666603, 66.087501527], + [-20.265104293, 65.723434449], + [-20.518749, 65.491669], + [-20.672916, 65.6875], + [-21.194271088, 65.430732726], + [-21.435938, 65.688019], + [-21.279688, 65.905731], + [-21.702084, 66.050003], + [-21.75625, 66.177086], + [-22.234896, 66.270317], + [-22.417187, 66.457817], + [-23.1, 66.433334], + [-22.939062, 66.183853], + [-22.489584, 66.074997], + [-22.892187, 65.967186], + [-23.000521, 66.086983], + [-23.458334, 66.193748], + [-23.768749, 66.066666], + [-23.870312, 65.885933], + [-23.63125, 65.70417], + [-24.114063, 65.782814], + [-24.36927, 65.552605], + [-23.955729, 65.4151], + [-23.220833, 65.48542], + [-22.941668, 65.614586], + [-22.70677, 65.503647], + [-22.36875, 65.529167], + [-21.973438, 65.379684], + [-22.475, 65.239586], + [-22.245832, 65.122917], + [-21.723438, 65.197395], + [-21.8125, 65.027084], + [-22.737499, 65.083336], + [-23.637501, 64.883331], + [-23.370832, 64.82708], + [-22.535418, 64.779167], + [-22.340103, 64.69323], + [-22.060417, 64.316666], + [-21.760937, 64.156769], + [-22.018749, 64.04583], + [-22.529167, 63.974998], + [-22.384895, 63.859894], + [-21.664583, 63.820835], + [-21.203646, 63.877602], + [-20.162500382, 63.53125], + [-19.418750763, 63.462501526] + ] + ] + }, + "properties": { + "id": "6bf21979-8aad-4ce3-87fd-71e867606203", + "code": "ISL", + "name": "Iceland", + "abbreviation": "C-ISL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [92.608779907, 21.984094619], + [92.703437805, 22.15378189], + [93.009246827, 21.983930589], + [93.190811157, 22.427259445], + [93.091751098, 22.709341049], + [93.141853333, 23.060609818], + [93.332641601, 23.035671235], + [93.427642823, 23.534370423], + [93.398719787, 23.930280686], + [93.756942749, 24.009492875], + [94.161460876, 23.852779389], + [94.262718201, 24.167747498], + [94.745658874, 25.136590958], + [94.585357665, 25.215749742], + [94.688636779, 25.465499878], + [95.052528381, 25.762659072], + [95.18535614, 26.084682464], + [95.068786621, 26.466672897], + [95.240440369, 26.691640854], + [95.423309326, 26.696712494], + [96.234329224, 27.284879685], + [96.802360534, 27.354431152], + [96.866226197, 27.199689865], + [97.171737671, 27.136810304], + [96.911849975, 27.462709428], + [96.897583009, 27.620801926], + [97.41516113, 28.024080278], + [97.356887819, 28.233200073], + [96.66456604, 28.465770721], + [96.370941159, 28.394300459], + [96.324302673, 28.530340196], + [96.5859375, 28.721588135], + [96.477401734, 28.994039535], + [96.080535888, 29.463344574], + [95.545028687, 29.215589524], + [95.454338074, 29.03699112], + [94.871803285, 29.184289932], + [94.62815857, 29.348590851], + [94.214691163, 29.084089279], + [93.844039917, 28.707389832], + [93.336906433, 28.640159607], + [93.190368652, 28.426019668], + [92.783027649, 28.183740617], + [92.560691833, 27.821041107], + [92.255157471, 27.862169266], + [91.918762207, 27.715101242], + [91.598152161, 27.859909058], + [91.651710511, 27.484342576], + [92.018768311, 27.480323791], + [92.102890015, 26.867559434], + [91.720634461, 26.811922075], + [91.097450256, 26.822179795], + [90.693458558, 26.77026558], + [90.416481017, 26.904701233], + [89.863151551, 26.700654983], + [89.378929138, 26.862424851], + [89.134277344, 26.807836533], + [88.869636535, 26.962984086], + [88.919456482, 27.327699661], + [88.767066956, 27.564960479], + [88.880187987, 27.895240783], + [88.616462707, 28.103679658], + [88.129981995, 27.881515503], + [88.009925842, 27.142959595], + [88.190498352, 26.771411896], + [88.097404, 26.437443], + [87.794944893, 26.468524937], + [87.343414307, 26.347515106], + [86.835800171, 26.438697816], + [86.310241699, 26.61964035], + [85.85331726, 26.609516145], + [85.626220977, 26.87341498], + [85.336318969, 26.741415024], + [85.191314697, 26.869815827], + [84.644851685, 27.047246934], + [84.624473572, 27.336078644], + [84.293411254, 27.385042191], + [84.110717773, 27.521514893], + [83.833221435, 27.369508743], + [83.390930175, 27.479490281], + [82.73700714, 27.503101348], + [82.701217651, 27.721824647], + [82.450714112, 27.67861557], + [82.072883607, 27.922525407], + [81.904022217, 27.853683471], + [81.322411, 28.197168], + [81.212418, 28.360516], + [80.716300964, 28.567897796], + [80.373321534, 28.62902069], + [80.060142517, 28.916316985], + [80.274406434, 29.144750595], + [80.243347169, 29.411586761], + [80.605339051, 29.958717346], + [81.018875122, 30.236837387], + [80.593559265, 30.48223114], + [80.210960389, 30.582300187], + [80.15937042, 30.81208992], + [79.745590209, 31.006151201], + [79.589576721, 30.942888261], + [79.29962158, 31.149240492], + [79.056777951, 31.47225952], + [78.916648862, 31.266628268], + [78.72126007, 31.540950776], + [78.77102661, 31.999811171], + [78.439208983, 32.246459961], + [78.412239074, 32.556060791], + [78.760276793, 32.684169769], + [78.781181335, 32.475299836], + [79.104469299, 32.371711732], + [79.291969019, 32.65344603], + [79.180496217, 33.194610595], + [78.823257001, 33.48349], + [78.709297, 33.679611], + [78.729233001, 34.095698999], + [78.981460428, 34.33285113], + [78.56933594, 34.611949921], + [78.28436279, 34.667362211], + [78.017745971, 35.249752045], + [77.843078681, 35.500984191], + [77.156822204, 35.054698945], + [75.749206544, 34.515830994], + [75.142295837, 34.662410736], + [74.302780151, 34.797538757], + [73.960220336, 34.696681976], + [73.898170471, 34.032821656], + [74.261123656, 33.924797059], + [73.966461181, 33.740322114], + [74.185081483, 33.38351059], + [74.014274597, 33.198249816], + [74.337921142, 33.025939942], + [74.466056824, 32.781360626], + [74.650138855, 32.718410491], + [74.698417663, 32.484939576], + [75.082626344, 32.480045319], + [75.330421448, 32.331710816], + [75.239166259, 32.087150573], + [74.602500915, 31.886489868], + [74.517280579, 31.722911835], + [74.642066955, 31.461549758], + [74.553443909, 31.062601089], + [73.873214722, 30.383438111], + [73.966316224, 30.195049286], + [73.385398865, 29.926019669], + [73.271316527, 29.55696106], + [72.943756103, 29.029911041], + [72.384696961, 28.763940812], + [72.208847046, 28.399982453], + [71.658287049, 27.868930818], + [70.757667542, 27.717208863], + [70.5626297, 28.019802093], + [70.366165161, 28.008249284], + [70.01626587, 27.555995942], + [69.586662292, 27.177984238], + [69.522415161, 26.736011505], + [69.855552674, 26.582920074], + [70.167739868, 26.550743104], + [70.106681824, 25.924209595], + [70.285263061, 25.698930741], + [70.681137086, 25.66076088], + [70.674171447, 25.389320373], + [70.894309997, 25.144058228], + [71.107139769, 24.680650803], + [70.998428, 24.360571], + [70.805763, 24.222727001], + [70.574867, 24.420315], + [70.1101, 24.284897], + [70.024085999, 24.169353486], + [69.600677, 24.277847], + [69.199768, 24.235199], + [68.764122, 24.284122], + [68.749245, 23.962046], + [68.547081, 23.963186], + [68.687363, 23.82181], + [68.489296, 23.635139], + [68.659027, 23.14986], + [69.197357177, 22.838470459], + [69.711250305, 22.73819542], + [70.229309081, 22.977081299], + [70.4118042, 22.919860841], + [70.16291809, 22.551530838], + [69.223473, 22.257917], + [69.007919, 22.439859], + [68.957916, 22.237358], + [69.704582, 21.539307], + [70.180137634, 21.035970688], + [70.742363, 20.720694], + [70.977363587, 20.70347023], + [71.474586, 20.88986], + [72.115417, 21.202085], + [72.305969, 21.628469], + [72.323753, 22.147083], + [72.569862365, 22.188751221], + [72.51763916, 21.713472367], + [72.666809, 21.484585], + [72.58847, 21.293194], + [72.897636414, 20.587083816], + [72.665412903, 19.934860231], + [72.78125, 19.157638551], + [73.00125122, 18.970689773], + [72.855423, 18.695971], + [73.004859924, 18.019029617], + [73.281525, 17.113474], + [73.311248779, 16.542360306], + [73.491806, 15.981528], + [73.873466, 15.370141], + [74.12542, 14.774585], + [74.24958, 14.739584], + [74.661796569, 13.655420303], + [74.821525574, 12.851249695], + [75.164307, 12.13319], + [75.546524047, 11.673193933], + [75.830406189, 11.115421296], + [75.910140991, 10.792360305], + [76.230141, 10.058472], + [76.354027, 9.373191], + [76.618751526, 8.850972176], + [76.984863281, 8.376251221], + [77.303467, 8.131529], + [77.552361, 8.077921], + [78.054863, 8.382918], + [78.209587, 8.959582], + [78.41153, 9.112084], + [78.980698, 9.274862], + [78.979858398, 9.68735981], + [79.396797, 10.31792], + [79.884033204, 10.305970193], + [79.859024, 11.13986], + [79.761253356, 11.62097168], + [79.884865, 12.064861], + [80.157363892, 12.471248627], + [80.25402832, 12.779030799], + [80.328186, 13.429861], + [80.109024, 13.519305], + [80.252357483, 13.782921791], + [80.126235961, 14.159030915], + [80.199028015, 14.587082863], + [80.04847, 15.094585], + [80.27041626, 15.67319584], + [80.566802978, 15.860695839], + [80.997643, 15.749581], + [81.282639, 16.290701], + [81.71875, 16.311540605], + [82.299576, 16.59181], + [82.250969, 16.905695], + [82.431526185, 17.165700913], + [83.159027, 17.55986], + [83.669586182, 18.084030152], + [84.069580078, 18.275972367], + [84.356246949, 18.556804656], + [84.84153, 19.193201], + [85.139442444, 19.443330765], + [85.663612, 19.739168], + [86.362663, 19.95278], + [86.769173, 20.331112], + [86.76667, 20.644444], + [86.970001, 20.827778], + [86.824173, 21.137781], + [87.123611, 21.521393], + [87.789718629, 21.694999695], + [88.153831, 21.95961], + [88.217224, 21.764444], + [88.461884, 21.91803], + [88.849236, 22.364542], + [88.929375, 22.649809], + [88.854980469, 22.959133148], + [88.912178039, 23.234027862], + [88.562156677, 23.637184144], + [88.733383178, 23.911117553], + [88.740898133, 24.254024506], + [88.204414368, 24.459466935], + [88.010566712, 24.666660309], + [88.443840028, 25.194890977], + [88.830413818, 25.205453872], + [88.803260803, 25.524435044], + [88.547958374, 25.518249512], + [88.090324402, 25.896469117], + [88.18044281, 26.145692826], + [88.446456908, 26.365034104], + [88.431236267, 26.550157546], + [89.164398193, 26.131744385], + [89.542312622, 26.004447937], + [89.747596741, 26.157444001], + [89.885940551, 25.943580628], + [89.831161499, 25.296140671], + [90.440979005, 25.144626617], + [91.069572448, 25.19852066], + [91.63785553, 25.122653962], + [92.061836242, 25.18711853], + [92.425765991, 25.028795242], + [92.096565247, 24.375444413], + [91.745044069, 24.24659535], + [91.592201, 24.078833], + [91.378021241, 24.109500886], + [91.162727356, 23.595209122], + [91.620223998, 22.938674927], + [91.823081969, 23.086977004], + [91.772888184, 23.270080567], + [91.975188979, 23.482410113], + [91.942307, 23.681808001], + [92.249412537, 23.724306106], + [92.397560119, 23.240600585], + [92.376472473, 22.928758622], + [92.507926941, 22.736080169], + [92.608779907, 21.984094619] + ] + ], + [ + [ + [92.903847, 12.91579], + [92.72438, 12.827971], + [92.699478, 12.330251], + [92.888542, 12.331139], + [92.97551, 12.5419], + [92.903847, 12.91579] + ] + ], + [ + [ + [92.703712, 12.232751], + [92.513519, 11.848001], + [92.711906, 11.477872], + [92.78791, 11.883134], + [92.703712, 12.232751] + ] + ], + [ + [ + [93.031113, 13.56861], + [92.842087, 13.398197], + [92.801483, 12.90075], + [93.003311, 13.02822], + [93.031113, 13.56861] + ] + ], + [ + [ + [93.848053, 7.233333], + [93.67028, 7.013054], + [93.828316, 6.754256], + [93.94548, 7.00941], + [93.848053, 7.233333] + ] + ] + ] + }, + "properties": { + "id": "50d1eaf6-3a2a-496b-bb90-ef16b530aaf5", + "code": "IND", + "name": "India", + "abbreviation": "C-IND", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [109.624588, 1.996794], + [109.3385849, 1.941905617], + [109.235954286, 1.644246459], + [109.060317993, 1.525548339], + [108.842545, 0.816602], + [108.919425964, 0.323104024], + [109.179481507, 0.072386124], + [109.11642456, -0.514100552], + [109.656921387, -0.6708768], + [109.732421875, -0.9874444], + [110.07399, -1.387309], + [110.02671814, -1.682713628], + [110.224220275, -2.885951518], + [110.578522, -2.8421], + [110.652992249, -3.041867732], + [110.959053039, -3.06536293], + [111.339103698, -2.909324884], + [111.812271118, -2.99652648], + [111.89741516, -3.542062521], + [112.337402345, -3.315941334], + [112.535125733, -3.441864728], + [112.921897889, -3.238713503], + [113.032417298, -2.972462415], + [113.342804, -3.279737], + [113.601440429, -3.165406703], + [113.58581543, -3.44644618], + [114.243034364, -3.368203878], + [114.611717225, -3.640892982], + [114.683036805, -4.1791749], + [115.964515686, -3.611709117], + [116.031372069, -3.366861343], + [116.270240785, -3.111385344], + [116.365867616, -2.672401429], + [116.512283324, -2.563509226], + [116.593369, -2.195264], + [116.459739685, -2.052443981], + [116.53527832, -1.475076198], + [116.765319824, -1.356079102], + [117.248970032, -0.906305015], + [117.280968, -0.577501], + [117.450249, -0.444761], + [117.567100525, 0.393028348], + [117.751098632, 0.756317557], + [118.063789367, 0.902976156], + [118.763107299, 0.805851876], + [118.988754272, 1.021342517], + [118.410736, 1.485248], + [117.917747498, 1.812506913], + [117.805130006, 2.198928356], + [118.094032, 2.307733], + [117.782905579, 2.74784255], + [117.365143, 2.864171001], + [117.413071, 3.391303], + [117.217666626, 3.491787196], + [117.674225, 3.87754], + [117.457763671, 3.929105998], + [117.498283, 4.171653], + [117.243782, 4.371089], + [116.431716919, 4.320870876], + [116.171295166, 4.38439417], + [115.688980102, 4.156349182], + [115.5809021, 3.662290097], + [115.521697999, 3.065089941], + [115.103012085, 2.817517997], + [115.257774354, 2.540449619], + [114.917160033, 2.255297662], + [114.874076844, 2.01555276], + [114.565574646, 1.426023008], + [113.978843689, 1.452879191], + [113.623542785, 1.220432401], + [113.538345338, 1.320459724], + [113.012138367, 1.407223105], + [113.054672241, 1.555753469], + [112.486129762, 1.576064468], + [112.215278625, 1.453703285], + [112.153068542, 1.156006695], + [111.871452331, 1.007290006], + [111.526313783, 0.96554184], + [111.225815, 1.083907999], + [110.898285393, 1.019389316], + [110.693939209, 0.860897661], + [110.278541566, 0.995830537], + [110.189216613, 1.178480983], + [109.660652, 1.619312], + [109.624588, 1.996794] + ] + ], + [ + [ + [105.160392761, -5.808333396], + [105.303802491, -5.45079565], + [105.604125976, -5.831177712], + [105.779465, -5.836386], + [105.916366577, -4.642699241], + [105.818252563, -4.294650078], + [105.960365294, -3.839518547], + [105.847946166, -3.523632287], + [106.087615967, -3.256056308], + [106.051315308, -2.987094163], + [105.880615235, -2.967072724], + [105.633728028, -2.434134006], + [104.844398, -2.285701], + [104.838097, -2.001547], + [104.4646, -1.929979], + [104.540596, -1.726725], + [104.439971925, -1.515801071], + [104.370070999, -1.02667], + [104.134552003, -1.050532102], + [103.674087524, -0.951296567], + [103.436882018, -0.713689386], + [103.318886, -0.344853001], + [103.615715, -0.005973], + [103.814613343, -0.000158655], + [103.715126037, 0.296708822], + [103.331481934, 0.547348857], + [103.121437, 0.463034], + [102.910904, 0.716624], + [102.507682799, 0.748653471], + [102.225936889, 1.000107527], + [102.159194947, 1.36056149], + [101.76185608, 1.659353376], + [101.387428285, 1.720337987], + [101.305038452, 2.041098117], + [101.052154999, 2.291224999], + [100.835243225, 2.29874134], + [100.784339905, 2.077689409], + [100.435050965, 2.256663084], + [100.220123291, 2.705239773], + [99.990875244, 2.75462985], + [99.993431091, 2.951893091], + [99.22606659, 3.519003391], + [98.72530365, 3.773217916], + [98.530273438, 4.015266895], + [98.249153137, 4.130448342], + [98.285926818, 4.416927815], + [97.99382019, 4.629590987], + [97.905937195, 4.889208318], + [97.497711181, 5.250098706], + [97.210029602, 5.144330978], + [96.844718934, 5.276879788], + [96.534622193, 5.199260712], + [96.086044311, 5.289859772], + [95.885276795, 5.50460291], + [95.430633544, 5.65618229], + [95.193840028, 5.527317047], + [95.219963, 5.290723], + [95.540611267, 4.673852921], + [96.191932678, 4.107213974], + [96.536537171, 3.72982192], + [96.879310608, 3.677451373], + [97.425125122, 2.934293509], + [97.582183839, 2.886370898], + [97.663917541, 2.394431592], + [98.446998596, 1.999656678], + [98.838058471, 1.647732377], + [98.780380248, 1.42890966], + [99.057922, 0.739319], + [99.160522, 0.274475], + [99.617095948, 0.065934927], + [99.819580079, -0.300586462], + [100.331352, -0.860596], + [100.404816, -1.242092], + [100.563056945, -1.329312205], + [100.644028, -1.621163], + [100.842185975, -1.883555651], + [100.891799927, -2.328118563], + [101.322853089, -2.740678548], + [101.625701905, -3.248636246], + [102.222618104, -3.667291403], + [102.332122803, -4.009813309], + [103.3276062, -4.80769682], + [103.709732056, -4.961152076], + [103.917976379, -5.234260558], + [104.570831001, -5.875068], + [104.724502563, -5.934115886], + [104.616790771, -5.497878551], + [105.160392761, -5.808333396] + ] + ], + [ + [ + [141.006118775, -9.118924141], + [140.993881, -7.329677], + [141.019394, -6.889868], + [140.858093, -6.780619], + [141, -6.313278198], + [141.000015259, -4.776979781], + [140.999969482, -2.60434413], + [140.111022949, -2.328604699], + [139.803543091, -2.376547575], + [138.681808472, -1.803019165], + [138.099197388, -1.615403651], + [137.931945801, -1.458024024], + [137.68144226, -1.504881382], + [137.089157, -1.851616], + [137.230484009, -2.041861534], + [136.670516967, -2.260367631], + [136.333557129, -2.277705669], + [136.214736939, -2.62057066], + [135.5052948, -3.354982376], + [135.111907959, -3.381504297], + [134.860123, -3.242199], + [134.688522, -2.964816], + [134.66275, -2.613233], + [134.215637208, -2.423775911], + [134.104202, -2.052907], + [134.075393676, -1.649155975], + [134.255874633, -1.318073034], + [134.010345458, -0.957240999], + [133.973419, -0.719785], + [133.38948059, -0.739691018], + [132.956192016, -0.439283371], + [132.647338866, -0.357080131], + [132.257461547, -0.379496871], + [131.827316285, -0.711149155], + [131.24305725, -0.819980383], + [131.173690797, -1.229457736], + [130.99331665, -1.464565396], + [131.486923217, -1.486194014], + [131.88444519, -1.637040973], + [132.038619995, -2.069724083], + [132.316009522, -2.280059099], + [132.591079712, -2.189533949], + [132.71257019, -2.298666001], + [133.154403687, -2.199510097], + [133.784988, -2.233622], + [133.877518, -2.386076], + [133.52005, -2.578495], + [133.216110229, -2.413822889], + [132.794555664, -2.783658027], + [132.14303589, -2.66640091], + [132.115723, -2.938363], + [132.478683471, -3.038420915], + [132.679138, -3.3288], + [132.813202, -3.268378], + [132.896057, -3.650675], + [132.730957, -3.64249], + [132.89502, -4.111579], + [133.320800781, -4.01021099], + [133.40057373, -3.735447883], + [133.601806641, -3.535187243], + [133.846832276, -3.638400077], + [134.317642213, -4.04279995], + [134.440475, -3.916685], + [134.719436646, -4.198254109], + [135.207473755, -4.465709209], + [135.90498352, -4.486999989], + [136.83136, -4.913599], + [136.917023, -4.868505], + [137.874908446, -5.357656955], + [138.075637817, -5.737028122], + [138.272476196, -5.837137699], + [138.431152344, -6.361507415], + [138.696090699, -6.623121739], + [138.596375, -6.995641], + [138.833145141, -7.206202507], + [138.95817566, -7.511467456], + [139.107025147, -7.552192687], + [139.018386841, -7.750627041], + [139.02507019, -7.834036827], + [138.935013, -7.899798], + [138.903412, -8.025966], + [138.92775, -8.068726], + [138.84317, -8.101594], + [138.921722, -8.276816], + [139.223876953, -8.094909668], + [139.339844, -8.205907], + [139.71156311, -8.098835945], + [139.993820189, -8.200130462], + [140.461151123, -8.58795929], + [140.615905762, -8.813299179], + [141.006118775, -9.118924141] + ] + ], + [ + [ + [119.403374, -5.133888], + [119.360633851, -5.410863876], + [119.794303895, -5.700706483], + [119.92678833, -5.549067975], + [120.344779967, -5.513638019], + [120.270874024, -5.142509461], + [120.383285522, -4.837916373], + [120.345184326, -3.891014575], + [120.440834046, -3.742367744], + [120.38180542, -3.202057123], + [120.189628602, -2.968562126], + [120.68585968, -2.642954111], + [121.097007751, -2.715504884], + [121.060989381, -3.14469719], + [120.865684509, -3.428196192], + [120.943748474, -3.619586943], + [121.371002198, -4.003673554], + [121.608726502, -4.067216396], + [121.469367982, -4.691642284], + [121.983726502, -4.901478767], + [122.038230896, -4.650875091], + [122.22049, -4.479372], + [122.595085145, -4.396935462], + [122.740173339, -4.509743213], + [122.90649414, -4.22953558], + [122.663124001, -4.133118001], + [122.639572144, -3.890891791], + [122.196273804, -3.608415365], + [122.323371888, -3.241330386], + [122.320655823, -2.921017646], + [122.010147095, -2.718406915], + [121.966026305, -2.524500131], + [121.680297851, -2.180105685], + [121.317596, -1.936926], + [121.71206665, -1.924854874], + [121.867401124, -1.676618815], + [122.212425231, -1.604879618], + [122.633102416, -1.235369443], + [122.790847778, -0.95554775], + [123.059692, -0.896321], + [123.373809815, -1.009126067], + [123.394501, -0.641795], + [123.060173034, -0.56426072], + [122.961227417, -0.754234075], + [122.202888489, -0.787952244], + [121.942367554, -0.988707841], + [121.473899842, -0.909771561], + [121.100852966, -1.437565803], + [120.675254821, -1.414874792], + [120.580109, -1.102361], + [120.308914184, -0.962940871], + [120.059684753, -0.629910349], + [120.008705139, -0.28593853], + [120.136314391, 0.191650033], + [120.3540802, 0.455051274], + [120.687934875, 0.511105119], + [121.080795289, 0.397595913], + [121.526108, 0.551146], + [121.804359437, 0.40910715], + [122.388649, 0.520108], + [123.058883668, 0.507392943], + [123.267593383, 0.322410912], + [123.673515319, 0.300021172], + [124.511871339, 0.473472416], + [124.716094971, 0.889207006], + [125.012161255, 1.124909878], + [125.241378783, 1.511345744], + [124.962234498, 1.727959752], + [124.623527526, 1.418198466], + [124.297431946, 1.0096668], + [123.880096435, 0.838884712], + [123.060050965, 0.919099331], + [122.844741821, 0.802401423], + [122.476539612, 0.999547185], + [121.932128907, 1.101992727], + [121.58391571, 1.057510019], + [120.94215393, 1.350355864], + [120.573883058, 0.769613803], + [120.244644165, 0.819336833], + [120.014167785, 0.65180248], + [119.845214843, 0.335258723], + [119.885688782, -0.001156563], + [119.754364013, -0.437489838], + [119.762130737, -0.685218155], + [119.337974549, -1.185040235], + [119.295440674, -1.698355078], + [119.140396, -2.473994], + [118.762496948, -2.748895883], + [118.886009216, -2.887312412], + [118.844345093, -3.378340006], + [118.935104371, -3.569032669], + [119.461494445, -3.486102818], + [119.636581421, -3.973892928], + [119.524276734, -4.924047469], + [119.403374, -5.133888] + ] + ], + [ + [ + [113.547661, -8.433408], + [113.960716247, -8.616950036], + [114.308326721, -8.619472504], + [114.447860717, -7.795710086], + [114.045837403, -7.608644962], + [113.755897522, -7.737349986], + [113.280357361, -7.783669949], + [112.908851623, -7.628913402], + [112.846443176, -7.306200028], + [112.668289185, -7.220039845], + [112.593658448, -6.939204216], + [112.052757264, -6.886740207], + [111.562553406, -6.639440059], + [111.153884888, -6.658454417], + [111.046302795, -6.42489004], + [110.722747803, -6.448070049], + [110.479148864, -6.917310237], + [110.171012879, -6.844626426], + [109.867668152, -6.914680004], + [109.533042907, -6.792719841], + [109.303337098, -6.872597217], + [108.749877929, -6.815760136], + [108.575080871, -6.719658375], + [108.539527892, -6.483580113], + [108.338867187, -6.272709846], + [108.129890442, -6.334380149], + [107.656097412, -6.240968704], + [107.297996522, -5.957699775], + [107.031227112, -5.913770199], + [106.834526062, -6.121558666], + [106.04057312, -5.878389834], + [105.882148999, -6.073499999], + [105.808097839, -6.472459792], + [105.469147, -6.8277], + [105.960823058, -6.812019826], + [106.545547485, -7.055105686], + [106.400596618, -7.186749935], + [106.525993347, -7.408440113], + [107.399726867, -7.495810032], + [107.846847534, -7.736849785], + [108.442909242, -7.823215962], + [108.710083009, -7.676701069], + [109.006248, -7.77767], + [109.382446288, -7.719540119], + [109.969337464, -7.874005317], + [110.725021, -8.199212], + [112.334243774, -8.332969666], + [112.655853272, -8.447119713], + [113.206382752, -8.28028965], + [113.547661, -8.433408] + ] + ], + [ + [ + [128.034683228, -0.697566448], + [128.209747314, -0.691757738], + [127.889656067, 0.000721144], + [127.900749207, 0.427369744], + [128.042282104, 0.478144675], + [128.675354004, 0.338716209], + [128.689376831, 0.52536446], + [128.198349, 0.789425373], + [128.683395386, 1.067884088], + [128.756820679, 1.398520827], + [128.667144775, 1.589380383], + [128.156494141, 1.353886843], + [128.166000366, 1.124824286], + [127.981170655, 1.087141753], + [127.843917846, 0.804880977], + [127.626838684, 0.973798693], + [127.974212647, 1.282081605], + [128.021987915, 1.703574659], + [127.853363037, 1.926856519], + [127.573433, 1.756215], + [127.405670165, 1.228685141], + [127.491653442, 0.89361012], + [127.638237, 0.81730026], + [127.527290344, 0.552828313], + [127.734298707, 0.311129868], + [127.661079406, -0.208500624], + [127.881164551, -0.389597923], + [128.034683228, -0.697566448] + ] + ], + [ + [ + [130.839005, -3.849008], + [130.881256104, -3.595609427], + [130.643310546, -3.37420535], + [130.600997926, -3.146677733], + [130.38571167, -2.9892416], + [130.034942626, -3.003699063], + [129.4347229, -2.782511234], + [129.132736207, -2.968344926], + [128.836380005, -2.86700344], + [128.186218, -2.866192], + [128.114303999, -3.064966999], + [127.873802, -3.193861], + [128.051849, -3.346145], + [128.201782, -3.126565], + [128.40524292, -3.428550244], + [128.674392699, -3.433373212], + [128.858901978, -3.211663483], + [129.528869629, -3.470292807], + [129.524551392, -3.297897339], + [129.918579101, -3.337438344], + [130.017089844, -3.483620644], + [130.839005, -3.849008] + ] + ], + [ + [ + [118.71283, -8.741232], + [119.031997681, -8.634238243], + [119.000549317, -8.310337066], + [118.463470458, -8.24598217], + [118.279907, -8.364652], + [118.080718995, -8.100283623], + [117.711776734, -8.24288845], + [118.230843, -8.551757], + [117.973701, -8.739981], + [117.77285, -8.711727], + [117.625122, -8.444584], + [117.107811, -8.371702], + [116.753227235, -8.663045883], + [116.788841, -9.035892], + [117.009483, -9.107514], + [117.676452636, -8.924649239], + [118.184951782, -8.854052544], + [118.358680725, -8.683226584], + [118.450561523, -8.884840011], + [118.71283, -8.741232] + ] + ], + [ + [ + [124.058174134, -9.357751847], + [123.674133301, -9.62847042], + [123.57849884, -9.943302155], + [123.771102905, -10.043377877], + [123.455482483, -10.349164963], + [123.797683715, -10.355237961], + [124.170722961, -10.155522347], + [124.408966064, -10.164546965], + [124.75075531, -9.881637573], + [125.087966919, -9.458633422], + [124.949935914, -8.958686829], + [124.476135254, -9.174365043], + [124.35659027, -9.481808662], + [124.058174134, -9.357751847] + ] + ], + [ + [ + [121.136238099, -8.901107789], + [121.387016296, -8.789483071], + [121.737098693, -8.876834869], + [122.117263794, -8.729596137], + [122.376228332, -8.752476692], + [122.831116, -8.589704], + [122.8720932, -8.29373455], + [122.597190856, -8.392876626], + [122.474945068, -8.608397483], + [122.221282959, -8.619996071], + [121.913383483, -8.495615958], + [121.52342987, -8.613854408], + [121.307807922, -8.481608391], + [120.590805053, -8.297114371], + [120.260612488, -8.282972336], + [119.877304, -8.45892], + [119.799667, -8.759757], + [120.233001709, -8.844263077], + [120.595825196, -8.815032005], + [120.946533203, -8.939885139], + [121.136238099, -8.901107789] + ] + ], + [ + [ + [106.513931, -3.115415], + [106.602348327, -2.862340449], + [106.848869324, -2.572971344], + [106.355865479, -2.465632915], + [106.226158142, -2.299868345], + [106.185806273, -1.895643233], + [105.92099762, -1.509147525], + [105.602096558, -1.529024958], + [105.333625793, -1.678076028], + [105.127212524, -1.959434152], + [105.274848939, -2.14543128], + [105.530265808, -2.078721047], + [105.789131165, -2.172405004], + [105.977684021, -2.815489769], + [106.428001405, -2.973839044], + [106.513931, -3.115415] + ] + ], + [ + [ + [138.910278, -8.058805], + [138.889099, -8.036685], + [138.890442, -7.920838], + [139.081481933, -7.568960666], + [138.934677124, -7.543481349], + [138.745117188, -7.370589732], + [138.226837157, -7.466503144], + [137.90689087, -7.7868371], + [137.640274049, -8.417581559], + [138.44116211, -8.384651183], + [138.683182, -8.14716], + [138.910278, -8.058805] + ] + ], + [ + [ + [120.755744935, -10.15686798], + [120.815940858, -9.977185248], + [120.468086243, -9.616630555], + [120.254737853, -9.640706061], + [119.935180664, -9.276160241], + [119.807006835, -9.393884658], + [119.301574706, -9.357491492], + [118.927276612, -9.550208092], + [119.134552002, -9.730921746], + [119.678535462, -9.789696693], + [120.165825, -10.236554], + [120.454178, -10.312617], + [120.755744935, -10.15686798] + ] + ], + [ + [ + [126.740753173, -3.853120089], + [127.25152588, -3.592304945], + [126.983726501, -3.137866735], + [126.789634704, -3.059232711], + [126.109367371, -3.120108366], + [126.006820679, -3.358839272], + [126.166900635, -3.59172678], + [126.740753173, -3.853120089] + ] + ], + [ + [ + [115.510192872, -8.521165848], + [115.711273194, -8.399796485], + [115.558189391, -8.23131752], + [115.156463624, -8.064938544], + [114.987098693, -8.180230141], + [114.431785584, -8.173428535], + [114.58152008, -8.398272514], + [114.930770873, -8.474633217], + [115.180725098, -8.759304999], + [115.510192872, -8.521165848] + ] + ], + [ + [ + [108.01145935, -3.247590064], + [108.29801941, -2.847179889], + [108.0936203, -2.607734441], + [107.65802, -2.558983], + [107.560738, -2.996609], + [107.640495, -3.235681], + [108.01145935, -3.247590064] + ] + ], + [ + [ + [112.704719544, -7.108722209], + [113.099830627, -7.228542328], + [113.548110963, -7.23251009], + [114.124053956, -6.978487014], + [113.967453003, -6.873029232], + [112.849266053, -6.89673376], + [112.704719544, -7.108722209] + ] + ], + [ + [ + [116.299828, -8.910368], + [116.510109, -8.779023], + [116.718102, -8.348289], + [116.430160523, -8.221002579], + [116.03314209, -8.442401887], + [115.996407, -8.887922], + [116.299828, -8.910368] + ] + ], + [ + [ + [122.578300476, -5.548549653], + [122.885040282, -5.578798293], + [122.971771241, -5.395234108], + [123.224349977, -5.279626846], + [122.973335267, -5.115417004], + [123.025124, -4.767722], + [123.196594239, -4.59279871], + [123.042076111, -4.36948967], + [122.8486557, -4.589632511], + [122.732559, -5.241979], + [122.578300476, -5.548549653] + ] + ], + [ + [ + [99.247192, -1.785758], + [99.300713, -1.700422], + [98.894897461, -0.907442153], + [98.664535522, -0.980397999], + [98.604553224, -1.22767675], + [98.879554748, -1.680401802], + [99.247192, -1.785758] + ] + ], + [ + [ + [97.819717407, 0.567742229], + [97.919197083, 1.025689959], + [97.68827057, 1.179981113], + [97.488441466, 1.473486662], + [97.111877, 1.398926], + [97.819717407, 0.567742229] + ] + ], + [ + [ + [131.338669, -7.963975], + [131.619094848, -7.644904137], + [131.674087525, -7.45622015], + [131.517487, -7.162083], + [131.23436, -7.474852], + [131.084594727, -7.842069626], + [131.338669, -7.963975] + ] + ], + [ + [ + [130.644104001, -0.11264], + [130.943389893, -0.350276649], + [131.240417481, -0.384050667], + [131.310516358, -0.187608659], + [130.772675, -0.009458], + [130.275192, -0.147114], + [130.916625976, -0.402442663], + [130.644104001, -0.11264] + ] + ], + [ + [ + [122.43610382, -5.402635098], + [122.762481689, -4.944459916], + [122.682250977, -4.611240864], + [122.318161011, -4.835999011], + [122.384635926, -5.085618495], + [122.278900146, -5.394608974], + [122.43610382, -5.402635098] + ] + ], + [ + [ + [125.801879883, -8.001961708], + [126.062393188, -7.888549804], + [126.46812439, -7.9742527], + [126.724067688, -7.741872788], + [126.642311097, -7.564958095], + [126.194374085, -7.724751473], + [125.947815, -7.663053], + [125.801879883, -8.001961708] + ] + ], + [ + [ + [124.836822509, -1.898545861], + [125.314796448, -1.893466949], + [124.671463012, -1.64392495], + [124.400550843, -1.66007471], + [124.342567443, -1.909198165], + [124.524337768, -2.018272162], + [124.836822509, -1.898545861] + ] + ], + [ + [ + [135.910568238, -1.164718627], + [136.189193725, -1.044927119], + [135.811187744, -0.685331523], + [135.363906999, -0.630261], + [135.910568238, -1.164718627] + ] + ], + [ + [ + [127.520805358, -1.725568294], + [128.157562256, -1.681981326], + [127.93499, -1.448598], + [127.641387939, -1.330205082], + [127.444229, -1.434258], + [127.520805358, -1.725568294] + ] + ], + [ + [ + [122.876693726, -1.599668741], + [123.159751892, -1.310571789], + [123.405662536, -1.527194977], + [123.559341431, -1.28135395], + [123.193641663, -1.153718829], + [122.911865234, -1.180307388], + [122.796257019, -1.370748282], + [122.876693726, -1.599668741] + ] + ], + [ + [ + [134.200836, -6.926732], + [134.480988, -6.664789], + [134.468582153, -6.452956675], + [134.133743286, -6.312607766], + [134.051086425, -6.774370669], + [134.200836, -6.926732] + ] + ], + [ + [ + [136.230285645, -1.905666708], + [136.643600463, -1.870345592], + [136.788772583, -1.740105152], + [136.182937622, -1.655636669], + [135.732254, -1.687958], + [136.230285645, -1.905666708] + ] + ], + [ + [ + [124.449440003, -8.445055008], + [125.125907897, -8.337098122], + [125.099136353, -8.149916649], + [124.400184631, -8.214764595], + [124.449440003, -8.445055008] + ] + ], + [ + [ + [128.246703932, 2.169415172], + [128.52192688, 2.06884098], + [128.673324584, 2.498558999], + [128.560180665, 2.64194727], + [128.322738648, 2.471097469], + [128.246703932, 2.169415172] + ] + ], + [ + [ + [116.203254701, -3.961705685], + [116.273796081, -3.907421351], + [116.280418397, -3.220753432], + [116.114761352, -3.307065486], + [116.005928039, -3.682915926], + [116.203254701, -3.961705685] + ] + ], + [ + [ + [130.264038, -1.700521], + [129.717865, -1.871969], + [130.253723145, -2.053534984], + [130.439453, -1.820975], + [130.264038, -1.700521] + ] + ], + [ + [ + [130.973403931, -1.359525323], + [131.083251954, -1.009961963], + [130.902648926, -0.898563981], + [130.635986, -0.960175], + [130.74987793, -1.243622184], + [130.973403931, -1.359525323] + ] + ], + [ + [ + [134.753235, -6.144626], + [134.664169, -5.975677], + [134.536591, -5.918522], + [134.439132999, -6.014733001], + [134.417984, -6.024866001], + [134.381638, -6.018772], + [134.358215, -6.040759], + [134.326050001, -6.022862], + [134.279205, -6.050471], + [134.341248, -6.218519], + [134.626922608, -6.370035647], + [134.753235, -6.144626] + ] + ], + [ + [ + [101.670150758, 1.726776838], + [101.776527405, 1.988644242], + [101.655235291, 2.124876738], + [101.397827, 2.00513], + [101.458031, 1.723877], + [101.670150758, 1.726776838] + ] + ], + [ + [ + [108.237221, 3.746668], + [108.402671814, 3.96578598], + [108.219353, 4.230133999], + [107.973732, 4.014323], + [108.237221, 3.746668] + ] + ], + [ + [ + [134.36763, -6.022528], + [134.379928589, -6.015765666], + [134.417984009, -6.022800921], + [134.433670045, -6.016252041], + [134.462081909, -5.979030132], + [134.53862, -5.915985], + [134.713242, -5.815829], + [134.452667, -5.530589], + [134.293762206, -5.918820858], + [134.36763, -6.022528] + ] + ], + [ + [ + [96.426132202, 2.32999444], + [96.078659057, 2.756767273], + [95.770210001, 2.90755], + [95.828605652, 2.629637956], + [96.075378418, 2.569583417], + [96.426132202, 2.32999444] + ] + ], + [ + [ + [103.049369812, 0.741127431], + [102.740089417, 1.021193743], + [102.40890503, 0.887848139], + [102.547676086, 0.772206367], + [103.049369812, 0.741127431] + ] + ], + [ + [ + [104.594444276, 0.811659753], + [104.625908, 1.115315], + [104.393501, 1.204543], + [104.226135, 1.020533], + [104.594444276, 0.811659753] + ] + ], + [ + [ + [123.232711948, -10.605085092], + [122.810020447, -10.781994819], + [122.824790954, -10.923083305], + [123.228080749, -10.818738938], + [123.232711948, -10.605085092] + ] + ], + [ + [ + [100.451576, -3.348188], + [100.45459, -3.010141], + [100.235092, -2.783605], + [100.186523, -2.989037], + [100.451576, -3.348188] + ] + ], + [ + [ + [102.47756195, 0.969034732], + [102.481254578, 1.243583919], + [102.205879212, 1.281857133], + [102.275894165, 1.005383254], + [102.47756195, 0.969034732] + ] + ], + [ + [ + [127.47869873, -0.642082751], + [127.692604, -0.456365], + [127.372497558, -0.317009866], + [127.315979005, -0.516701937], + [127.47869873, -0.642082751] + ] + ], + [ + [ + [102.504516601, 1.303766369], + [102.45840454, 1.519497513], + [102.071350098, 1.603242995], + [102.111015319, 1.463557719], + [102.504516601, 1.303766369] + ] + ], + [ + [ + [125.461533, -1.943452], + [125.919952393, -1.938752055], + [126.196655274, -1.804840803], + [125.628975, -1.828337], + [125.461533, -1.943452] + ] + ], + [ + [ + [109.654633, -1.012008], + [109.488045, -0.973071], + [109.501129, -1.309427], + [109.777802, -1.147516], + [109.654633, -1.012008] + ] + ], + [ + [ + [104.772697449, -0.26165247], + [104.55367279, 0.029490042], + [104.424263, -0.223633], + [104.772697449, -0.26165247] + ] + ], + [ + [ + [103.087036132, 0.828794122], + [102.972236633, 1.09624505], + [102.670661926, 1.091048836], + [103.087036132, 0.828794122] + ] + ], + [ + [ + [122.025513, -5.474644], + [122.03495, -5.160401], + [121.794395, -5.277483], + [122.025513, -5.474644] + ] + ], + [ + [ + [123.386520386, -8.580831528], + [123.787750245, -8.272621154], + [123.473426818, -8.333025932], + [123.386520386, -8.580831528] + ] + ], + [ + [ + [124.097312928, -8.544382095], + [124.299781798, -8.332283974], + [123.965232849, -8.34744835], + [124.097312928, -8.544382095] + ] + ], + [ + [ + [128.093826, -3.794373], + [128.3538208, -3.633579731], + [128.025543212, -3.59310317], + [128.093826, -3.794373] + ] + ], + [ + [ + [138.813126, -8.153157], + [138.567276, -8.355647], + [138.845016, -8.379976], + [138.813126, -8.153157] + ] + ], + [ + [ + [120.498901, -6.459674], + [120.568092346, -6.056100844], + [120.462013245, -5.791158199], + [120.498901, -6.459674] + ] + ] + ] + }, + "properties": { + "id": "ba302a38-cfdd-4f71-8b27-de08d7654845", + "code": "IDN", + "name": "Indonesia", + "abbreviation": "C-IDN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [61.282627426, 35.60869039], + [61.159267425, 35.989597321], + [61.229221344, 36.172401428], + [61.140239716, 36.662059785], + [60.370674133, 36.624248505], + [60.020957947, 37.033267975], + [59.552013398, 37.166263581], + [59.276287078, 37.497314454], + [58.821933747, 37.692005157], + [58.459835052, 37.625049592], + [58.211891174, 37.760105133], + [57.359134674, 37.974437714], + [57.245121002, 38.261688232], + [57.080413818, 38.176662446], + [56.754673004, 38.272594451], + [56.417045593, 38.24036026], + [56.339199066, 38.070625305], + [55.474193572, 38.084331512], + [55.129325867, 37.950969697], + [54.823841095, 37.725212098], + [54.797786713, 37.523056031], + [54.243572, 37.309181], + [53.897811889, 37.340808868], + [54.036258697, 36.957992554], + [53.883243561, 36.785064697], + [53.284202576, 36.8490448], + [52.061759948, 36.588085174], + [51.673328399, 36.599208832], + [50.960655213, 36.782432556], + [50.29901886, 37.155448915], + [50.167907716, 37.393962861], + [49.323673248, 37.515064239], + [49.074810029, 37.653205872], + [48.940681457, 37.880924225], + [48.879386902, 38.437000275], + [48.632034301, 38.402408599], + [48.315654756, 38.601352691], + [48.013500214, 38.904579163], + [48.357784272, 39.040542604], + [48.144172668, 39.200191498], + [48.374633789, 39.370769501], + [47.990760804, 39.696315765], + [47.807823182, 39.650070191], + [46.852722169, 39.139621734], + [46.547237396, 38.87273407], + [46.136863709, 38.834842682], + [45.43636322, 38.998386383], + [44.820220947, 39.625209808], + [44.606552125, 39.773357391], + [44.441123963, 39.435874939], + [44.0472641, 39.366794587], + [44.316131591, 38.833858491], + [44.401329041, 38.140964508], + [44.238861083, 37.887115478], + [44.597114563, 37.763763428], + [44.602615356, 37.444278717], + [44.804965973, 37.148143768], + [44.851741792, 36.804908754], + [45.047481537, 36.729343415], + [45.092689515, 36.434841155], + [45.252738952, 36.426975251], + [45.387119294, 36.078411103], + [45.757408143, 35.803981781], + [46.086872102, 35.860054016], + [45.989261628, 35.499626159], + [46.20400238, 35.194175721], + [45.701057435, 34.811962128], + [45.748313904, 34.541561127], + [45.551986695, 34.592617035], + [45.524715424, 33.931819916], + [45.766818999, 33.635517121], + [45.910202026, 33.623016358], + [46.19726944, 33.253376007], + [46.107192994, 33.01379013], + [46.646747589, 32.820686341], + [47.108314513, 32.475811005], + [47.451286317, 32.397624969], + [47.864948273, 31.779157638], + [47.699180603, 31.400041581], + [47.701721192, 30.992502213], + [48.030826569, 30.993814468], + [48.03692627, 30.482715608], + [48.398678, 30.210382], + [48.568558, 29.901806], + [48.889027, 30.004305], + [48.927082, 30.410139], + [49.194275, 30.470137], + [49.240139, 30.13236], + [49.587639, 30.005972], + [49.907917, 30.195139], + [50.086250305, 30.17930603], + [50.138195039, 29.944026948], + [50.66486, 29.380695], + [50.645138, 29.163471], + [50.921242, 29.06625], + [51.133472, 28.419861], + [51.402084, 27.927639], + [51.701248, 27.823473], + [52.047359, 27.839306], + [52.501804, 27.602638], + [52.577084, 27.38236], + [52.823471069, 27.209028245], + [53.459583282, 26.981250762], + [53.607639312, 26.770969391], + [54.277915955, 26.728471757], + [54.624584198, 26.500415803], + [54.845695496, 26.517362595], + [55.098194123, 26.695417405], + [55.564583, 26.813749], + [55.64875, 26.983749], + [55.948193, 27.021805], + [56.353195, 27.189306], + [56.770416, 27.135975], + [57.007637, 26.837641], + [57.061527, 26.374306], + [57.19875, 26.011806], + [57.389862, 25.765139], + [57.950138, 25.700138], + [58.096806, 25.562639], + [58.801529, 25.572363], + [59.00153, 25.422916], + [59.476528, 25.468472], + [59.605972, 25.389584], + [60.293472, 25.384863], + [60.532082, 25.443195], + [60.627083, 25.300694], + [61.398472, 25.067083], + [61.576805, 25.184269], + [61.655613, 25.297499], + [61.68920517, 25.799165725], + [61.870754243, 26.246740341], + [62.315067291, 26.528869629], + [62.778697968, 26.652280807], + [63.169185639, 26.647294998], + [63.275531769, 26.864767074], + [63.184223176, 27.241436004], + [62.781478881, 27.251426697], + [62.855392457, 27.465137482], + [62.786937714, 28.281179428], + [61.804157257, 28.640169145], + [61.504318237, 29.007545472], + [61.37260437, 29.348672867], + [60.89943695, 29.837495804], + [61.807563782, 30.83760643], + [61.834262848, 31.087860107], + [61.706481933, 31.377180099], + [60.845687866, 31.486900331], + [60.775035858, 31.742471694], + [60.880195618, 32.200416566], + [60.58412552, 33.12753296], + [60.899990081, 33.538909912], + [60.531753541, 33.650173188], + [60.504928589, 34.076797486], + [60.727661133, 34.510429383], + [60.991390229, 34.641555786], + [61.099864959, 35.275653839], + [61.282627426, 35.60869039] + ] + ], + [ + [ + [56.158749, 26.998194], + [55.334862, 26.643749], + [55.852085, 26.733749], + [56.158749, 26.998194] + ] + ] + ] + }, + "properties": { + "id": "4680069a-0ee6-43a3-870e-82cf68b75278", + "code": "IRN", + "name": "Iran", + "abbreviation": "C-IRN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [44.804965973, 37.148143768], + [44.637741089, 37.186740876], + [44.268787385, 36.982971192], + [44.237377166, 37.279071808], + [43.666557312, 37.230865479], + [43.167404175, 37.373977662], + [42.730808259, 37.345062255], + [42.591648101, 37.147251128], + [42.363708497, 37.10926056], + [41.828254699, 36.593154908], + [41.423007964, 36.524684905], + [41.258010865, 36.054573059], + [41.394287108, 35.630271911], + [41.282604217, 35.48614502], + [41.23449707, 34.777236939], + [41.012367249, 34.419864655], + [38.796836853, 33.368171693], + [39.053546905, 32.581970215], + [39.03950882, 32.340393067], + [39.212409951, 32.152431774], + [40.4132544, 31.9480762], + [41.440726101, 31.3732074], + [42.0855991, 31.1116578], + [43.6072998, 30.023021699], + [44.7268814, 29.191659599], + [46.4245353, 29.058566099], + [46.542605136, 29.097971216], + [46.940269, 29.571663], + [47.128876, 29.974716], + [47.351105, 30.081661], + [47.952911, 30.020096], + [48.232918, 30.019306], + [48.568558, 29.901806], + [48.398678, 30.210382], + [48.03692627, 30.482715608], + [48.030826569, 30.993814468], + [47.701721192, 30.992502213], + [47.699180603, 31.400041581], + [47.864948273, 31.779157638], + [47.451286317, 32.397624969], + [47.108314513, 32.475811005], + [46.646747589, 32.820686341], + [46.107192994, 33.01379013], + [46.19726944, 33.253376007], + [45.910202026, 33.623016358], + [45.766818999, 33.635517121], + [45.524715424, 33.931819916], + [45.551986695, 34.592617035], + [45.748313904, 34.541561127], + [45.701057435, 34.811962128], + [46.20400238, 35.194175721], + [45.989261628, 35.499626159], + [46.086872102, 35.860054016], + [45.757408143, 35.803981781], + [45.387119294, 36.078411103], + [45.252738952, 36.426975251], + [45.092689515, 36.434841155], + [45.047481537, 36.729343415], + [44.851741792, 36.804908754], + [44.804965973, 37.148143768] + ] + ] + }, + "properties": { + "id": "b969c94a-f37d-45a6-b8e0-eae8a4ba244f", + "code": "IRQ", + "name": "Iraq", + "abbreviation": "C-IRQ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-7.258676313, 55.066255673], + [-6.937031, 55.245847], + [-7.332665, 55.311082], + [-8.284505, 55.158727], + [-8.351504, 54.883088], + [-8.678881, 54.622772], + [-8.135601, 54.614067], + [-8.287966, 54.47686], + [-8.826647961, 54.252802232], + [-9.810998, 54.341672], + [-10.069687, 54.024854], + [-9.901428, 53.764351], + [-10.074954, 53.438394], + [-9.26491, 53.154253], + [-9.498435, 52.750078], + [-9.912879, 52.576062], + [-9.689401, 52.482792], + [-9.951174, 52.231744], + [-10.176072, 52.290759], + [-10.470781, 52.182091], + [-9.967165, 52.05692], + [-10.385779, 51.883282], + [-10.179237, 51.766031], + [-9.655403, 51.87041], + [-10.065833, 51.622908], + [-9.622968, 51.681152], + [-9.75819, 51.452051], + [-9.347055, 51.468003], + [-8.550164, 51.646183], + [-7.586367, 51.99186], + [-7.585773, 52.103591], + [-6.360125, 52.174453], + [-6.385312286, 52.355459447], + [-6.020925665, 52.925371551], + [-6.079548, 53.546851], + [-6.376199624, 53.957080095], + [-6.291696642, 54.112307601], + [-6.623755254, 54.03647201], + [-7.029644529, 54.421295102], + [-7.375242211, 54.136791006], + [-7.861760257, 54.21872503], + [-8.153852873, 54.437100244], + [-7.760272, 54.594236], + [-7.258676313, 55.066255673] + ] + ] + }, + "properties": { + "id": "594423d7-bee9-4194-bc99-d381656bd664", + "code": "IRL", + "name": "Ireland", + "abbreviation": "C-IRL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-4.749723, 54.068748], + [-4.386943817, 54.194583893], + [-4.363056182, 54.418193817], + [-4.709722042, 54.221248628], + [-4.749723, 54.068748] + ] + ] + }, + "properties": { + "id": "b047feda-f8db-4fe4-ab1e-c619af22d56d", + "code": "IMN", + "name": "Isle of Man", + "abbreviation": "C-IMN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [34.910694122, 29.497083664], + [34.966011047, 29.547065734], + [35.175811768, 30.119136811], + [35.152011872, 30.418621064], + [35.459789277, 31.120376588], + [35.475585937, 31.488241196], + [34.913940429, 31.349792481], + [34.953735351, 31.583011627], + [35.23241806, 31.787845613], + [35.026138306, 31.869983674], + [34.968978883, 32.214244843], + [35.231681823, 32.551567078], + [35.55973053, 32.390434265], + [35.579998017, 32.632896424], + [35.779568177, 32.751945711], + [35.900936001, 32.938732], + [35.817222992, 33.364033], + [35.518657685, 33.116241455], + [35.102920532, 33.094058991], + [34.954029083, 32.822082519], + [34.782917022, 32.127082824], + [34.48902893, 31.594427109], + [34.268009186, 31.22360611], + [34.855873108, 29.739179611], + [34.910694122, 29.497083664] + ] + ] + }, + "properties": { + "id": "7fff6054-09ce-4886-9f98-445892450044", + "code": "ISR", + "name": "Israel", + "abbreviation": "C-ISR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [10.472848197, 46.856806865], + [10.392670631, 46.680843353], + [10.057415008, 46.548709869], + [10.173440933, 46.258937835], + [9.90239904, 46.385559073], + [9.297103883, 46.315807342], + [9.021220208, 46.052516937], + [8.463932038, 46.226081848], + [8.469340324, 46.451969148], + [7.873587131, 45.92811966], + [7.552368164, 45.98715973], + [7.122085095, 45.862365722], + [7.043088914, 45.938652039], + [6.820878982, 45.826869964], + [7.135106086, 45.254562378], + [6.630878926, 45.108901978], + [7.074445, 44.681305], + [6.86726904, 44.531131744], + [7.037686348, 44.225566865], + [7.426789284, 44.115207672], + [7.684199811, 44.177261352], + [7.529582501, 43.78396225], + [8.128749847, 43.925693511], + [8.27263832, 44.141803742], + [8.744027, 44.427082], + [9.230415345, 44.348194122], + [10.240416526, 43.872081756], + [10.330417, 43.473473], + [10.501806259, 43.290973663], + [10.485138893, 42.957359313], + [10.774860382, 42.908195497], + [11.192083358, 42.510139466], + [11.550415994, 42.34236145], + [11.834304809, 42.029304505], + [12.142640001, 41.91486], + [12.62263775, 41.444026947], + [12.871804238, 41.405693055], + [13.039860726, 41.230693818], + [13.292362213, 41.29763794], + [13.811805726, 41.187084199], + [14.082360267, 40.828472137], + [14.306249, 40.830696], + [14.488751412, 40.627082825], + [14.755415916, 40.677360534], + [15.000416756, 40.389026643], + [14.904582978, 40.253192903], + [15.420415879, 39.990139009], + [15.574583053, 40.078193665], + [15.792915344, 39.863750459], + [15.994859695, 39.444305419], + [16.18486023, 38.749584197], + [15.986249924, 38.723472596], + [15.638750075, 38.001529694], + [16.063474655, 37.92402649], + [16.323749542, 38.294029235], + [16.569583999, 38.424026], + [16.604583741, 38.812915802], + [17.093193054, 38.905971528], + [17.154029845, 39.401527405], + [16.780416488, 39.615695953], + [16.529581, 39.660973], + [16.605693818, 40.079303742], + [17.015138627, 40.504306793], + [17.505416871, 40.29486084], + [17.864027, 40.281528], + [18.045694351, 39.929584504], + [18.369028092, 39.793193818], + [18.520694733, 40.107917785], + [18.424028396, 40.294303894], + [17.93375, 40.680973], + [17.472360612, 40.831806184], + [17.045694, 41.080971], + [15.981805801, 41.444862366], + [15.900696, 41.615971], + [16.189583, 41.774582], + [16.059583663, 41.949306489], + [15.430973001, 41.900969999], + [15.10208416, 41.93347168], + [14.717914581, 42.105693817], + [14.108750343, 42.563194275], + [13.93764019, 42.816249848], + [13.628750801, 43.548194886], + [12.717082978, 43.972637176], + [12.390137673, 44.214862824], + [12.240417, 44.687084], + [12.479583, 44.865417], + [12.175417, 45.384583], + [13.384029, 45.674862], + [13.628750801, 45.768749238], + [13.722361565, 45.594970704], + [13.609933854, 45.816722871], + [13.666212924, 46.170339168], + [13.382119179, 46.293251038], + [13.713896501, 46.523197941], + [12.690494923, 46.657394214], + [12.281117482, 46.792312472], + [12.121946009, 47.007597392], + [11.627675189, 47.013811474], + [11.110455747, 46.927683873], + [11.022877157, 46.766339508], + [10.472848197, 46.856806865] + ], + [ + [12.453890215, 43.970825504], + [12.486310959, 43.899871826], + [12.412594795, 43.897838593], + [12.453890215, 43.970825504] + ], + [ + [12.449790001, 41.905609131], + [12.455550193, 41.907550812], + [12.458400726, 41.90184021], + [12.44662857, 41.90184021], + [12.449790001, 41.905609131] + ] + ], + [ + [ + [15.13708, 36.687916], + [15.296528816, 37.105972291], + [15.104311, 37.310421], + [15.204579, 37.7407], + [15.477640151, 38.054862976], + [15.519311906, 38.297916413], + [15.089580536, 38.119861604], + [14.915138245, 38.192638397], + [14.364581109, 38.014862061], + [13.745139122, 37.97013855], + [13.104578971, 38.191532135], + [12.894860268, 38.024028778], + [12.76736, 38.180695], + [12.558751106, 38.06375122], + [12.424027, 37.802361], + [12.672915458, 37.559581757], + [12.946810723, 37.571250916], + [13.903471, 37.09486], + [14.356527329, 36.984859466], + [14.493748664, 36.785968781], + [15.13708, 36.687916] + ] + ], + [ + [ + [9.626805305, 40.225139618], + [9.820971, 40.494305], + [9.56375, 40.919304], + [9.561806, 41.120415], + [9.224305, 41.259304], + [8.81208229, 40.932361603], + [8.54319191, 40.82597351], + [8.218471527, 40.868473054], + [8.137640954, 40.733749389], + [8.483194351, 40.285972596], + [8.40125, 39.898472], + [8.453472138, 39.550418854], + [8.366805, 39.228474], + [8.649582, 38.894585], + [9.027082, 38.999027], + [9.092081, 39.212917001], + [9.55764, 39.134861], + [9.736527444, 40.076248169], + [9.626805305, 40.225139618] + ] + ] + ] + }, + "properties": { + "id": "25e3d434-698d-4369-ae49-4b4be9c1a188", + "code": "ITA", + "name": "Italy", + "abbreviation": "C-ITA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.40235901, 17.860694885], + [-76.926529, 17.848473], + [-76.845138549, 17.997638702], + [-76.524307, 17.850414], + [-76.181526, 17.911806], + [-76.331253, 18.145695], + [-76.954025269, 18.401805878], + [-77.845695, 18.524858], + [-78.212364, 18.456528], + [-78.357086182, 18.241247177], + [-78.070419312, 18.211805345], + [-77.740417, 17.865694], + [-77.40235901, 17.860694885] + ] + ] + }, + "properties": { + "id": "86547c4f-0687-4531-a7af-f33f732ecae3", + "code": "JAM", + "name": "Jamaica", + "abbreviation": "C-JAM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [135.630463, 33.509155], + [135.911865, 33.549095], + [136.088882447, 33.87361145], + [136.272781, 33.971943], + [136.337784, 34.203056], + [136.688339, 34.305832], + [136.835556, 34.50111], + [136.533050538, 34.608612062], + [136.655838, 34.998055], + [136.867538452, 35.040523529], + [136.914443969, 34.77166748], + [137.440292, 34.667969], + [138.192596, 34.600735], + [138.557968139, 35.100849153], + [138.783417, 35.025593], + [138.741744995, 34.723983765], + [138.972275, 34.674179], + [139.148330688, 34.936111451], + [139.07663, 35.097824], + [139.326843262, 35.312091827], + [139.568313598, 35.294116974], + [139.74707, 35.589745], + [140.083465575, 35.596694947], + [139.823029, 35.344563], + [139.824172974, 34.909999847], + [140.405426025, 35.236873627], + [140.454162598, 35.53250122], + [140.870544434, 35.718254089], + [140.575271606, 36.171943666], + [140.605743408, 36.481838227], + [140.800827, 36.894722], + [140.920273, 36.934444], + [141.035568237, 37.372226715], + [140.922500611, 37.914165498], + [141.106033, 38.384926], + [141.408707, 38.403759], + [141.462234, 38.647026], + [141.81424, 39.058109], + [142.071396, 39.542221], + [141.953613281, 39.98670578], + [141.754379, 40.369125], + [141.485549926, 40.562221526], + [141.310836791, 41.351112366], + [140.908691, 41.494185999], + [140.763885, 41.148056], + [141.278610229, 41.159358978], + [141.104171752, 40.8722229], + [140.879745, 41.009338001], + [140.68824768, 40.876407624], + [140.631561, 41.099403], + [140.345276, 41.260834], + [140.242645264, 40.785060883], + [139.924438476, 40.644721985], + [140.007401, 40.219913], + [139.755889892, 39.85630417], + [140.073776246, 40.040203095], + [140.016662597, 39.389167785], + [139.746201, 38.77496], + [139.454605102, 38.389385224], + [139.312103272, 38.047786714], + [138.819961548, 37.794296266], + [138.547241211, 37.372329713], + [138.215789795, 37.169185639], + [137.425827027, 36.924945831], + [137.334533692, 36.763320923], + [137.064163208, 36.793056488], + [136.943756103, 37.224323272], + [137.265090943, 37.326511383], + [137.276092529, 37.534393312], + [136.756134, 37.364048], + [136.6900177, 36.730751039], + [135.96432495, 35.997283936], + [136.100280761, 35.776943207], + [135.73538208, 35.492839814], + [135.288085937, 35.516139985], + [135.225662232, 35.774921417], + [134.920562745, 35.645000459], + [134.539840697, 35.670860291], + [134.160278321, 35.531665803], + [133.590042115, 35.531734466], + [133.11412, 35.450459], + [133.068878, 35.583672], + [132.627578735, 35.433727264], + [132.416626, 35.177288], + [131.81376648, 34.692752837], + [131.300613, 34.382042], + [130.890503, 34.346474], + [130.934525, 33.947742], + [131.268966674, 33.922798158], + [131.785248, 34.053143], + [132.131485, 33.882843], + [132.220916749, 34.234031677], + [132.503098, 34.354717], + [132.797028, 34.31002], + [133.684265, 34.507103], + [133.934998, 34.450928], + [134.293884, 34.736389], + [134.756104, 34.765278], + [135.060272217, 34.625278473], + [135.343063355, 34.713436127], + [135.418320001, 34.520302], + [135.225860596, 34.349327087], + [135.078476, 33.903759], + [135.630463, 33.509155] + ] + ], + [ + [ + [143.323059082, 42.14805603], + [143.323730469, 42.309253693], + [143.615829469, 42.66166687], + [144.183883667, 42.988334657], + [144.485001, 42.939167], + [144.787521, 43.05621], + [145.535629, 43.189999], + [145.389725, 43.261665], + [145.070557, 43.745277], + [145.344299316, 44.339351655], + [144.791687011, 43.930076599], + [144.387985, 43.925293], + [144.194977, 44.100773], + [143.736145019, 44.105686188], + [142.741485595, 44.757888794], + [142.507080079, 45.040786743], + [141.95539856, 45.515579224], + [141.57206726, 45.237918853], + [141.784439086, 44.723609925], + [141.64805603, 44.314777375], + [141.661132813, 44.012611389], + [141.329498291, 43.725006104], + [141.423706055, 43.328109741], + [141.161376953, 43.143909455], + [140.792221069, 43.194721223], + [140.498566, 43.372578], + [140.326812743, 43.233192444], + [140.529998779, 43.023612975], + [140.246795654, 42.768482208], + [139.867218017, 42.66444397], + [139.764999389, 42.310832977], + [140.119430543, 42.00379944], + [140.008758544, 41.691452026], + [140.040756, 41.449726], + [140.410675048, 41.520809175], + [140.661193847, 41.821941376], + [140.99765, 41.714066], + [140.961014, 41.914825], + [140.708374023, 42.138389587], + [140.275085449, 42.28735733], + [140.45639038, 42.578590394], + [140.707687378, 42.583023072], + [141.013381958, 42.322097778], + [141.629669, 42.636238], + [141.902755738, 42.576175691], + [142.476715088, 42.273468019], + [142.964172363, 42.118690491], + [143.246261596, 41.927898408], + [143.323059082, 42.14805603] + ] + ], + [ + [ + [131.01767, 31.364532], + [131.371796, 31.42853], + [131.45575, 31.903278], + [131.680832, 32.542221], + [131.985001, 32.912498], + [131.88942, 33.26712], + [131.702041625, 33.405937195], + [131.661727906, 33.670352936], + [131.432647704, 33.573139191], + [131.084075928, 33.635063172], + [130.895157, 33.89217], + [130.699814, 33.939278], + [130.451080323, 33.801174164], + [130.393341, 33.603382], + [129.967606, 33.455063], + [129.856949, 33.545551], + [129.565094, 33.21949], + [129.699921, 32.833275], + [129.896393, 32.662777], + [130.178298951, 32.79441452], + [130.148132325, 33.111732484], + [130.372909546, 33.138275146], + [130.634979, 32.632656], + [130.301193237, 32.1091156], + [130.166672, 31.794722], + [130.329162598, 31.53111267], + [130.212219, 31.25639], + [130.627228, 31.181108], + [130.513336, 31.458334], + [130.686386107, 31.735000611], + [130.803894043, 31.33472252], + [130.722229, 31.044998], + [131.129013, 31.276188], + [131.01767, 31.364532] + ] + ], + [ + [ + [133.008606, 32.909721], + [133.33313, 33.376125], + [133.602249145, 33.519550324], + [133.935119628, 33.486873628], + [134.185486, 33.258446], + [134.317383, 33.580349], + [134.69751, 33.949928], + [134.639816, 34.175148], + [134.250839, 34.351944], + [133.894302, 34.382641], + [133.491104001, 33.969165999], + [133.127990722, 33.920299531], + [132.941772, 34.141323], + [132.659194947, 33.70298767], + [132.305664, 33.473331], + [132.538834, 33.234699], + [132.492188, 32.940296], + [132.792404, 32.747822], + [133.008606, 32.909721] + ] + ], + [ + [ + [138.507172, 38.331673], + [138.321365, 38.188721], + [138.248184, 37.803127], + [138.499634, 37.91954], + [138.507172, 38.331673] + ] + ], + [ + [ + [129.426117, 28.191942], + [129.689713, 28.530134], + [129.134995, 28.253334], + [129.426117, 28.191942] + ] + ], + [ + [ + [130.354843, 32.407169], + [130.04536438, 32.513462067], + [130.078339, 32.212502], + [130.354843, 32.407169] + ] + ], + [ + [ + [129.449585, 34.704861], + [129.205414, 34.331806], + [129.413467, 34.353195], + [129.449585, 34.704861] + ] + ], + [ + [ + [134.855881, 34.233952], + [134.993606568, 34.522777557], + [134.661118, 34.270832], + [134.855881, 34.233952] + ] + ] + ] + }, + "properties": { + "id": "da0501c6-5a36-4a67-924b-c2ffc27bc5b2", + "code": "JPN", + "name": "Japan", + "abbreviation": "C-JPN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.161804915, 49.194305419], + [-2.028192997, 49.164585114], + [-2.016804933, 49.224861146], + [-2.152083, 49.26236], + [-2.161804915, 49.194305419] + ] + ] + }, + "properties": { + "id": "bf268aa5-6b5e-4bb1-b0e9-b1ede39cc0bf", + "code": "JEY", + "name": "Jersey", + "abbreviation": "C-JEY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [38.796836853, 33.368171693], + [36.956195832, 32.390777588], + [36.845825196, 32.312484742], + [36.409656525, 32.382194519], + [36.032905578, 32.657917024], + [35.779568177, 32.751945711], + [35.579998017, 32.632896424], + [35.55973053, 32.390434265], + [35.555721282, 31.758476257], + [35.475585937, 31.488241196], + [35.459789277, 31.120376588], + [35.152011872, 30.418621064], + [35.175811768, 30.119136811], + [34.966011047, 29.547065734], + [35.053088, 29.344404], + [36.072811699, 29.183401], + [36.527287199, 29.5143326], + [36.7849032, 29.8679012], + [37.5055049, 30.000768799], + [37.665557401, 30.3326227], + [37.997146101, 30.5006607], + [37.006171199, 31.5006395], + [39.0063116, 32.0006304], + [39.212409951, 32.152431774], + [39.03950882, 32.340393067], + [39.053546905, 32.581970215], + [38.796836853, 33.368171693] + ] + ] + }, + "properties": { + "id": "cf5f231f-5c99-42bd-90de-11b9d77067aa", + "code": "JOR", + "name": "Jordan", + "abbreviation": "C-JOR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [52.441433127, 41.765449602], + [52.959403991, 42.103263856], + [53.420188903, 42.258811952], + [54.189052581, 42.341464997], + [54.836013795, 42.022384643], + [55.283367157, 41.415798187], + [55.525760814, 41.25026702], + [56.000598907, 41.318046571], + [55.998100282, 45], + [58.569717406, 45.571105956], + [59.792713165, 44.923030853], + [61.036132813, 44.137073516], + [61.275432586, 44.136764527], + [62.028697967, 43.486515046], + [63.388889314, 43.672855378], + [64.53653717, 43.603313447], + [65.010261535, 43.766853333], + [65.651077271, 43.303516389], + [65.827186585, 42.868133545], + [66.099205017, 42.962192535], + [66.105667115, 42.347320557], + [66.008545, 41.943497], + [66.53076172, 41.89629364], + [66.60610199, 41.251403808], + [67.736282349, 41.202819824], + [67.993492127, 41.063732147], + [67.889350892, 40.85754776], + [68.416770934, 40.575237274], + [68.684867859, 40.59570694], + [68.515808105, 40.98153305], + [68.744804383, 40.987457275], + [69.033241272, 41.342170716], + [69.621070862, 41.658016204], + [70.159736633, 41.844303131], + [70.433303833, 42.130077362], + [70.626960755, 42.000823975], + [70.945350647, 42.262252808], + [71.031219483, 42.594951631], + [71.410499573, 42.797004699], + [71.863639832, 42.832809449], + [73.298103332, 42.506076814], + [73.571296692, 43.034244538], + [74.294303894, 43.238235474], + [75.157318116, 42.849918366], + [75.716285706, 42.797195435], + [75.799247742, 42.914913177], + [76.723236084, 42.905181885], + [76.859680175, 42.985080719], + [77.968093872, 42.849822999], + [78.500473022, 42.900447846], + [79.186851502, 42.688053131], + [79.509452819, 42.456367492], + [79.951629639, 42.429565431], + [80.17819134, 42.219617459], + [80.167327881, 42.63658905], + [80.258331299, 42.828430176], + [80.590827942, 42.895679475], + [80.409706117, 43.057289123], + [80.799446107, 43.175418854], + [80.745956421, 43.448501587], + [80.519737243, 43.834209442], + [80.342826843, 44.481296539], + [80.489738464, 44.711429595], + [80.246673585, 44.83958435], + [79.851982117, 44.904949188], + [80.081832885, 45.049560547], + [81.452766419, 45.268699646], + [81.689582826, 45.366630555], + [81.827842712, 45.199989319], + [82.240821839, 45.235359191], + [82.486206055, 45.120670319], + [82.590141296, 45.445621491], + [82.275718689, 45.545398712], + [82.504440307, 45.983379365], + [83.03087616, 47.212120056], + [84.038215636, 46.965351105], + [84.704734801, 46.996234894], + [84.962593079, 46.871639251], + [85.219413756, 47.051399232], + [85.529724122, 47.059398652], + [85.698303222, 47.397781373], + [85.541595458, 47.939437867], + [85.735450745, 48.371002197], + [86.584747315, 48.541519165], + [86.810440063, 48.850330353], + [86.855201721, 49.107521058], + [87.312576295, 49.099693298], + [87.268363953, 49.216480256], + [86.902008056, 49.350772858], + [86.623611451, 49.773181915], + [86.160621643, 49.462154388], + [85.931335449, 49.55242157], + [85.212295532, 49.626808166], + [84.998016357, 50.056076051], + [84.262550353, 50.269672395], + [84.218879699, 50.532268525], + [83.811912537, 50.884899139], + [83.119659423, 51.035377503], + [82.76071167, 50.950439453], + [82.548309325, 50.769207001], + [82.1199646, 50.751029969], + [81.862052918, 50.821155547], + [81.449348449, 50.762870789], + [81.390983581, 50.996295929], + [81.061470033, 50.959373474], + [81.144691468, 51.201690674], + [80.671470643, 51.308059693], + [80.440895081, 51.20583725], + [80.468841553, 50.974452973], + [80.068260192, 50.768203736], + [79.074035645, 52.041656494], + [78.249931336, 52.954257965], + [77.911514283, 53.278541566], + [77.570335388, 53.480957031], + [76.583824159, 53.967754364], + [76.426696778, 54.168167115], + [76.748634339, 54.160350799], + [76.86203003, 54.353019715], + [76.347198486, 54.330379487], + [75.600860595, 54.105052948], + [75.016845704, 53.784523011], + [74.803153993, 53.815925598], + [74.242156982, 53.593765259], + [73.903366089, 53.648433686], + [73.448959351, 53.444801332], + [73.245964049, 53.575260163], + [73.511665345, 53.951465606], + [73.084388733, 53.990512848], + [72.981140137, 54.098300934], + [72.600944519, 54.134002685], + [72.722053529, 53.949485779], + [72.37752533, 53.953296662], + [72.418136598, 54.149536133], + [72.263275146, 54.320018769], + [71.746566773, 54.138534547], + [71.210388184, 54.11090088], + [71.136878967, 54.708236695], + [71.01499939, 55.072921754], + [70.820190429, 55.297958374], + [70.217918397, 55.133277893], + [69.668045043, 55.3429451], + [68.724693298, 55.340278625], + [68.61743927, 55.188999176], + [68.1769104, 55.182292939], + [68.201416015, 54.957935334], + [67.301628112, 54.859153747], + [66.020050048, 54.618091584], + [65.501312256, 54.651184082], + [64.977943421, 54.419624329], + [63.880405426, 54.28585434], + [62.816135, 54.115837], + [62.531342, 53.900391001], + [62.437507996, 54.055069], + [62.088390351, 54.057872772], + [61.949588777, 53.945785523], + [61.306427001, 54.073474884], + [61.218322753, 53.815872192], + [60.915958404, 53.616710662], + [61.257511139, 53.503433227], + [61.182743073, 53.296154022], + [62.110614777, 53.116798402], + [62.137271881, 53.005737305], + [61.657840728, 52.960647582], + [61.236839295, 53.031814575], + [60.825820923, 52.762458802], + [61.071880341, 52.337680818], + [60.721912384, 52.16866684], + [60.059509277, 51.983501434], + [60.522563935, 51.782234193], + [60.598567962, 51.615192413], + [60.905143738, 51.614124298], + [61.002735138, 51.465114593], + [61.510490418, 51.413852693], + [61.57982254, 51.232040406], + [61.450839996, 50.807315826], + [60.82793045, 50.660999298], + [60.354919434, 50.679359435], + [60.069004059, 50.865581512], + [59.832714081, 50.584293366], + [59.531326294, 50.514469146], + [59.484378814, 50.656082154], + [58.883399963, 50.709072113], + [58.598819732, 50.826702117], + [58.545825959, 51.075065613], + [57.754291534, 51.129745483], + [57.731479644, 50.930778504], + [57.426898957, 50.895694733], + [57.183509827, 51.095264434], + [56.497066498, 51.088077545], + [56.210704804, 50.937343597], + [56.138401031, 50.771224975], + [55.663722991, 50.572235108], + [55.069023131, 50.820140839], + [54.706298829, 50.894241334], + [54.728641511, 50.634586335], + [54.508094787, 50.540035249], + [54.443283082, 50.872009278], + [54.129528045, 51.118804932], + [53.659057616, 51.241256715], + [53.378768922, 51.514003754], + [52.545627594, 51.467365265], + [52.328147888, 51.76607132], + [51.857337951, 51.683288574], + [51.793949126, 51.530666352], + [51.275642396, 51.500308992], + [51.266777038, 51.689735413], + [50.56764984, 51.642440797], + [50.36763382, 51.340312957], + [49.735996247, 51.114719391], + [49.420497895, 51.12958908], + [49.410907746, 50.858425141], + [49.092971803, 50.783470154], + [48.824748994, 50.600337982], + [48.632793427, 50.662883758], + [48.761886596, 50.101909639], + [48.734996796, 49.926750183], + [48.348060607, 49.828926087], + [47.816562653, 50.331314086], + [47.551460266, 50.462715149], + [47.319606782, 50.331794739], + [47.224128723, 49.966365815], + [46.892875671, 49.839294433], + [46.782657623, 49.332653047], + [47.052845001, 49.164913177], + [46.778491973, 48.938533784], + [46.491855621, 48.443012237], + [47.097595216, 48.211013795], + [47.017651, 48], + [47.174313, 47.760746], + [47.406677247, 47.812576295], + [48.058250427, 47.760650634], + [48.380716676, 47.433582129], + [48.607757568, 47.414466857], + [48.78133, 47.010876], + [49.005325, 46.767155], + [48.480705, 46.657673], + [49.163757325, 46.361011506], + [49.242080688, 46.432929993], + [49.618847, 46.269951], + [49.966854, 46.594189], + [50.452445984, 46.854782106], + [50.574543, 46.766182], + [50.913021087, 46.958156585], + [51.510654449, 46.983131408], + [51.675995, 46.830853], + [52.256348, 46.74585], + [52.618930817, 46.875389099], + [53.030757639, 46.594688236], + [52.832126971, 46.145469915], + [52.925735473, 45.912460327], + [52.71666, 45.442379001], + [51.96490097, 45.392425538], + [51.735145883, 45.445243863], + [51.282299029, 45.248268032], + [51.243549173, 45.049606324], + [50.960926056, 44.98260498], + [51.265182496, 44.579563141], + [51.086864472, 44.476280213], + [50.89949417, 44.611545562], + [50.308731, 44.644592], + [50.264793396, 44.351593018], + [50.772907258, 44.235294341], + [51.016460419, 43.805324555], + [51.266693114, 43.561321259], + [51.268287659, 43.151161194], + [51.652057647, 43.177623749], + [51.893978118, 42.841346742], + [52.430751801, 42.838626862], + [52.740909577, 42.62204361], + [52.433998108, 42.160961152], + [52.441433127, 41.765449602] + ] + ] + }, + "properties": { + "id": "541a8e89-8137-4375-b89a-36f23d4f6011", + "code": "KAZ", + "name": "Kazakhstan", + "abbreviation": "C-KAZ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.869949342, 4.627306938], + [35.583602906, 4.623889923], + [35.537353516, 4.95882702], + [35.350734712, 5.009996415], + [34.371459961, 4.624292374], + [34.001964569, 4.221364975], + [34.30795288, 3.711992026], + [34.463199615, 3.669833899], + [34.400592804, 3.370894908], + [34.599010467, 2.924946069], + [34.736316681, 2.855247975], + [34.916610719, 2.424907923], + [34.991203307, 1.664512038], + [34.795150757, 1.223237038], + [34.502487183, 1.070647955], + [34.446399688, 0.864027978], + [34.137580872, 0.585696995], + [33.91394806, 0.112544], + [33.987014999, -0.128465], + [33.930904389, -0.993206023], + [34.077529908, -1.026245951], + [37.430202484, -2.908893346], + [37.672573089, -3.067704915], + [37.585449219, -3.440469265], + [37.785800934, -3.677098513], + [39.19791031, -4.6660614], + [39.404861, -4.646249], + [39.775417329, -3.943195105], + [39.976528, -3.390138], + [40.113471985, -3.299026967], + [40.179028, -2.778751], + [40.452640533, -2.543195009], + [40.825138, -2.392362], + [40.950417, -2.084583], + [41.280972, -1.986806], + [41.575416566, -1.642361999], + [41.004299, -0.823578], + [40.988632202, 0.014013001], + [40.986560822, 2.819380999], + [41.328128815, 3.158634902], + [41.926216126, 4.002295495], + [41.112724304, 3.986856937], + [40.775180817, 4.277197837], + [39.861888886, 3.864088296], + [39.57862854, 3.472568035], + [38.907649994, 3.509658813], + [38.517353057, 3.626324177], + [38.12028122, 3.608499527], + [37.039394379, 4.361724377], + [36.838798524, 4.443952083], + [36.049079896, 4.449375152], + [35.869949342, 4.627306938] + ] + ] + }, + "properties": { + "id": "c5de99a2-a3ba-42ba-aa32-a769124ee104", + "code": "KEN", + "name": "Kenya", + "abbreviation": "C-KEN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-157.446945, 2.047356], + [-157.328888, 1.829999], + [-157.313629, 1.986945], + [-157.446945, 2.047356] + ] + ] + }, + "properties": { + "id": "bfa9233b-add9-4ea7-ae16-45fc7f78b2f1", + "code": "KIR", + "name": "Kiribati", + "abbreviation": "C-KIR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.591096878, 41.878536225], + [21.094049454, 42.197029114], + [21.239177704, 42.083351135], + [21.59392166, 42.247520448], + [21.7405262, 42.547992706], + [21.43242836, 42.858020783], + [21.071443557, 43.106533051], + [20.56627655, 43.185661316], + [20.633623124, 43.015964509], + [20.313747407, 42.826240539], + [20.017023086, 42.768047332], + [20.033109664, 42.548316956], + [20.524585089, 42.201494852], + [20.591096878, 41.878536225] + ] + ] + }, + "properties": { + "id": "0d79ef39-e29c-4fc0-b39d-bfd1eee801b0", + "code": "XKO", + "name": "Kosovo", + "abbreviation": "C-XKO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [46.542605136, 29.097971216], + [47.4651668, 28.999916901], + [47.704461, 28.524362], + [48.429306, 28.535696], + [48.396526, 28.744305], + [48.184029, 28.957361], + [48.057361602, 29.340694428], + [47.749863, 29.396807], + [47.990139, 29.571251], + [48.191528, 29.547361], + [48.055695, 29.764584], + [47.952911, 30.020096], + [47.351105, 30.081661], + [47.128876, 29.974716], + [46.940269, 29.571663], + [46.542605136, 29.097971216] + ] + ], + [ + [ + [48.157917, 29.983749], + [48.071804, 29.767916], + [48.195137, 29.585417], + [48.375694, 29.740974], + [48.157917, 29.983749] + ] + ] + ] + }, + "properties": { + "id": "cd9e1a9b-173c-4332-80d1-c1bbdf5b05c9", + "code": "KWT", + "name": "Kuwait", + "abbreviation": "C-KWT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [80.17819134, 42.219617459], + [79.951629639, 42.429565431], + [79.509452819, 42.456367492], + [79.186851502, 42.688053131], + [78.500473022, 42.900447846], + [77.968093872, 42.849822999], + [76.859680175, 42.985080719], + [76.723236084, 42.905181885], + [75.799247742, 42.914913177], + [75.716285706, 42.797195435], + [75.157318116, 42.849918366], + [74.294303894, 43.238235474], + [73.571296692, 43.034244538], + [73.298103332, 42.506076814], + [71.863639832, 42.832809449], + [71.410499573, 42.797004699], + [71.031219483, 42.594951631], + [70.945350647, 42.262252808], + [71.271270752, 42.200099946], + [70.507652284, 41.727169037], + [70.222991943, 41.606998444], + [70.491859436, 41.399368287], + [70.713249206, 41.464733125], + [70.779647827, 41.221355438], + [71.435073852, 41.123622895], + [71.726005555, 41.553714752], + [71.935165406, 41.308265685], + [71.890357971, 41.172172546], + [72.497581483, 41.030647279], + [72.575523376, 40.890445709], + [73.123123168, 40.797458649], + [72.766708374, 40.673404694], + [72.420814513, 40.4049263], + [72.152488709, 40.457317353], + [71.939475999, 40.224644], + [71.716194, 40.150803], + [71.277320862, 40.326725006], + [70.968498, 40.228043], + [70.565094, 40.020699], + [69.996131897, 40.221988678], + [69.562545777, 40.103820801], + [69.279899597, 39.802967071], + [69.340202331, 39.53924942], + [70.10424, 39.602165], + [70.304527, 39.53006], + [70.524002136, 39.632574943], + [70.768028, 39.399357], + [71.498931885, 39.613620758], + [71.562438965, 39.454872132], + [72.035629271, 39.36648941], + [72.257003785, 39.175136566], + [72.349525452, 39.329994202], + [72.679946899, 39.394828796], + [73.178894044, 39.355201721], + [73.658241273, 39.465084075], + [73.941368103, 39.602909088], + [73.842292785, 39.838752747], + [74.023910523, 40.09830475], + [74.340438843, 40.08385086], + [74.82811737, 40.524749755], + [75.19393921, 40.438751221], + [75.593109132, 40.658714295], + [75.699920655, 40.277290344], + [76.521324158, 40.462623597], + [76.633987427, 40.757339477], + [76.86404419, 41.020942689], + [77.047279358, 41.059703828], + [77.669754027, 41.001056672], + [78.155588, 41.380968], + [78.708435059, 41.550693513], + [79.452018738, 41.849201203], + [79.785697936, 41.909210205], + [79.881523132, 42.038009643], + [80.226531982, 42.063596725], + [80.17819134, 42.219617459] + ] + ] + }, + "properties": { + "id": "c87121d8-7ef1-4f2b-b3a8-38851a81c023", + "code": "KGZ", + "name": "Kyrgyzstan", + "abbreviation": "C-KGZ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [107.556381204, 14.686234709], + [107.595420837, 15.381952285], + [107.381584167, 15.493277549], + [107.210578918, 15.826229096], + [107.467460633, 16.024957658], + [106.969863891, 16.302373885], + [106.830574036, 16.549053192], + [106.660644531, 16.473194122], + [106.549835204, 16.997842789], + [106.092086792, 17.360090256], + [105.619293212, 17.873899461], + [105.642876, 17.992552], + [105.103874207, 18.447423936], + [105.198867798, 18.638824462], + [104.738937379, 18.800678254], + [104.543571472, 18.973827362], + [103.901992798, 19.308712005], + [104.16191864, 19.695711137], + [104.641685487, 19.621925354], + [104.993026733, 20.094930649], + [104.614379882, 20.242595673], + [104.38721466, 20.48799324], + [104.524391175, 20.701698304], + [104.120582581, 20.972215653], + [103.80531311, 20.854190827], + [103.674446105, 20.668684005], + [103.11478424, 20.896928788], + [102.911886385, 21.230425288], + [102.985512, 21.726517], + [102.675338745, 21.655506134], + [102.611213683, 21.922199249], + [102.145095826, 22.400774002], + [101.68901825, 22.471498491], + [101.547042847, 22.250141143], + [101.826705932, 21.60297966], + [101.74030304, 21.31483078], + [101.290397643, 21.178060531], + [101.154747009, 21.563869477], + [101.005386353, 21.392230987], + [100.727104187, 21.312124253], + [100.503486634, 20.809890747], + [100.259483338, 20.746959687], + [100.086769104, 20.350891113], + [100.331817627, 20.39661026], + [100.515289307, 20.143909454], + [100.408561835, 19.733940126], + [100.481719971, 19.487640382], + [100.884979248, 19.604930878], + [101.283370971, 19.579750061], + [101.189300538, 19.398460388], + [101.272979737, 18.688631058], + [101.056282043, 18.440540313], + [101.185272217, 18.06191063], + [101.02128601, 17.890699388], + [100.968528899, 17.573548983], + [101.267036438, 17.595661163], + [102.091217041, 18.217750551], + [102.687477112, 17.866380691], + [103.038780213, 17.97546959], + [103.24874878, 18.366689682], + [103.414916992, 18.446161271], + [103.853431702, 18.285520554], + [103.977539063, 18.332412719], + [104.277770996, 17.85559082], + [104.803031922, 17.372699737], + [104.736419678, 16.569469451], + [105.043159485, 16.107429505], + [105.414192199, 16.012958526], + [105.402229308, 15.793421746], + [105.63761139, 15.658711434], + [105.474609375, 15.098529816], + [105.578819275, 14.995071411], + [105.537147522, 14.558449746], + [105.206786775, 14.342509659], + [105.362014285, 14.104457227], + [105.556608508, 14.160638204], + [105.910776905, 13.930400213], + [106.187717334, 14.063011295], + [106.026944179, 14.345819227], + [106.408975343, 14.450810281], + [106.543037842, 14.593369493], + [106.838009322, 14.294179485], + [107.164894989, 14.415776632], + [107.556381204, 14.686234709] + ] + ] + }, + "properties": { + "id": "40713f62-59d8-487d-a817-d5bab8eb7214", + "code": "LAO", + "name": "Laos", + "abbreviation": "C-LAO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.151191847, 56.161064718], + [28.225418101, 56.295959473], + [27.963555987, 56.829177939], + [27.668026, 56.83918], + [27.844026565, 57.316173554], + [27.336309299, 57.546298988], + [26.861667633, 57.592041016], + [26.499868392, 57.524509431], + [26.249240875, 57.620002746], + [26.058393479, 57.836559296], + [25.11867714, 58.081226349], + [24.353975, 57.875771], + [24.412498001, 57.270695], + [23.933056, 57.007084001], + [23.563053, 56.975418001], + [23.306388855, 57.063751221], + [23.12194252, 57.367084504], + [22.625278474, 57.592918397], + [22.605833053, 57.759029388], + [21.689722062, 57.559028626], + [21.411943435, 57.269584656], + [21.410833358, 57.05291748], + [21.063613893, 56.840972901], + [20.981943131, 56.522083283], + [21.066389083, 56.064453124], + [21.594837188, 56.319328308], + [21.996791839, 56.416721344], + [23.374534606, 56.381507874], + [24.556377411, 56.279502869], + [24.873378753, 56.411182404], + [25.095140457, 56.18573761], + [25.654636, 56.138058], + [26.016508102, 55.971542358], + [26.374826432, 55.704692841], + [26.63838005, 55.663719178], + [27.16709137, 55.844951631], + [27.591962814, 55.781848907], + [27.664216995, 55.930789948], + [28.151191847, 56.161064718] + ] + ] + }, + "properties": { + "id": "9d1f9855-b1c7-4f31-ab78-1d9329272dac", + "code": "LVA", + "name": "Latvia", + "abbreviation": "C-LVA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [35.817222992, 33.364033], + [35.933517, 33.650841], + [36.617130279, 34.207813263], + [36.451049804, 34.59230423], + [35.97533, 34.639839], + [35.984741211, 34.528503418], + [35.651355744, 34.273349762], + [35.649856568, 34.100738526], + [35.186275483, 33.171699524], + [35.102920532, 33.094058991], + [35.518657685, 33.116241455], + [35.817222992, 33.364033] + ] + ] + }, + "properties": { + "id": "0364b6e2-1b13-47fb-a201-9ce4f77df15f", + "code": "LBN", + "name": "Lebanon", + "abbreviation": "C-LBN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.37182045, -30.169679641], + [28.858789444, -30.088230132], + [29.108989716, -29.936969756], + [29.162639617, -29.677009582], + [29.455610276, -29.341199874], + [29.356149673, -29.127580642], + [28.94380951, -28.782659531], + [28.612779616, -28.597480774], + [28.168510438, -28.705259322], + [28.028430939, -28.873949051], + [27.75358963, -28.898000716], + [27.614170075, -29.164180756], + [27.096581, -29.729931001], + [27.366889954, -30.273660659], + [27.781669616, -30.617300033], + [28.123199462, -30.663389206], + [28.20690918, -30.290670395], + [28.37182045, -30.169679641] + ] + ] + }, + "properties": { + "id": "4dc8177c-64e8-41f9-9fa3-dbd0368ecc50", + "code": "LSO", + "name": "Lesotho", + "abbreviation": "C-LSO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.472180367, 7.55458212], + [-8.706716538, 7.514249802], + [-9.065999984, 7.20096016], + [-9.405579566, 7.42003107], + [-9.359363555, 7.796105863], + [-9.486963272, 8.380972862], + [-9.795275689, 8.508511543], + [-10.268709182, 8.49120617], + [-10.346570968, 8.149065017], + [-10.600068092, 8.026383401], + [-10.601117133, 7.770023823], + [-11.30880928, 7.203296184], + [-11.485695, 6.91783], + [-11.351804732, 6.701528072], + [-10.865695001, 6.463194848], + [-10.818195, 6.312362], + [-10.393749236, 6.14430523], + [-9.595137596, 5.477639199], + [-9.295140266, 5.149582864], + [-8.25014019, 4.572638036], + [-7.522624015, 4.362362862], + [-7.591788768, 4.905591965], + [-7.470920087, 5.150407792], + [-7.378786087, 5.623882771], + [-7.422359944, 5.843457223], + [-7.692998886, 5.904920101], + [-8.00530243, 6.315148831], + [-8.171671868, 6.27564478], + [-8.560628892, 6.561457158], + [-8.338418007, 6.76061678], + [-8.290595054, 7.18177414], + [-8.472180367, 7.55458212] + ] + ] + }, + "properties": { + "id": "3515582d-20d2-40d1-829e-aa95733fc2b7", + "code": "LBR", + "name": "Liberia", + "abbreviation": "C-LBR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.979550363, 23.525030136], + [13.397974969, 23.217527389], + [13.680399896, 23.072240829], + [14.189322471, 22.644483567], + [14.995869636, 23.001890182], + [15.9981699, 23.45037079], + [18.726081848, 22.167699815], + [21.6808815, 20.705064774], + [24.000001907, 19.50817303], + [24.000001907, 20.000000001], + [24.999998094, 20.000000001], + [24.999998094, 21.999200822], + [24.999435, 29.250158], + [24.69809919, 30.148845818], + [24.926531784, 30.481125907], + [25.018274, 30.777979], + [24.861114124, 31.405910214], + [25.148199, 31.667885], + [24.996529, 31.962639], + [24.664028, 32.021805], + [24.087915, 32.012085], + [23.769583, 32.166527], + [23.253471, 32.203472], + [23.110971, 32.313194], + [23.118195, 32.627361], + [22.113749, 32.93486], + [21.716528, 32.940971], + [21.332914352, 32.77180481], + [21.109861375, 32.771251679], + [20.577638626, 32.547916412], + [20.207084656, 32.282917024], + [19.949029922, 31.978471756], + [19.92152977, 31.746250154], + [20.164639, 31.071251], + [20.054363, 30.847363], + [19.607973, 30.412914], + [19.185474, 30.267084], + [18.65625, 30.41986084], + [18.174303054, 30.789861678], + [17.390138626, 31.075695037], + [16.69930458, 31.219305039], + [16.124305725, 31.251806259], + [15.66041565, 31.449028016], + [15.390692711, 31.870695115], + [15.357639313, 32.166526795], + [15.214306831, 32.374584197], + [14.491323, 32.506527], + [14.177155, 32.711529], + [13.177083016, 32.905693054], + [12.755971908, 32.794029237], + [12.341251374, 32.822917938], + [11.564454379, 33.165408809], + [11.488797189, 32.667663575], + [11.527318954, 32.402809142], + [10.982084275, 32.186714173], + [10.639128684, 31.967941285], + [10.529793739, 31.747297288], + [10.291164399, 31.690118791], + [10.140620232, 31.493297578], + [10.30777359, 30.908971787], + [9.888902664, 30.349187851], + [9.557297706, 30.236810685], + [9.391736985, 30.166704178], + [9.780570983, 29.424129486], + [9.902783394, 28.75975132], + [9.833545, 28.285259], + [9.962219033, 27.886574222], + [9.782815219, 27.258794785], + [9.924463463, 26.861048889], + [9.863895417, 26.519117356], + [9.512980461, 26.384302139], + [9.399593353, 26.194828033], + [10.032671929, 25.358707428], + [10.037577153, 24.962379456], + [10.357405344, 24.536915144], + [10.950188638, 24.531810761], + [11.423026085, 24.199550629], + [11.603411752, 24.263750935], + [11.979550363, 23.525030136] + ] + ] + }, + "properties": { + "id": "067a7b79-882c-4101-abeb-639f54d2ea10", + "code": "LBY", + "name": "Libya", + "abbreviation": "C-LBY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.532011599, 47.270304645], + [9.486402, 47.181839], + [9.607548925, 47.061646232], + [9.532011599, 47.270304645] + ] + ] + }, + "properties": { + "id": "ad2a20ff-0f47-41ba-b420-a2550bd94e57", + "code": "LIE", + "name": "Liechtenstein", + "abbreviation": "C-LIE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [26.63838005, 55.663719178], + [26.374826432, 55.704692841], + [26.016508102, 55.971542358], + [25.654636, 56.138058], + [25.095140457, 56.18573761], + [24.873378753, 56.411182404], + [24.556377411, 56.279502869], + [23.374534606, 56.381507874], + [21.996791839, 56.416721344], + [21.594837188, 56.319328308], + [21.066389083, 56.064453124], + [21.083611, 55.729305], + [21.283080829, 55.240722997], + [21.388672, 55.29071], + [22.051698684, 55.030902863], + [22.563661576, 55.074752808], + [22.887853623, 54.788215638], + [22.73958397, 54.723331453], + [22.787775041, 54.363601684], + [23.337519, 54.251724], + [23.514919001, 53.955994], + [23.792467117, 53.895462037], + [24.219413757, 53.96680832], + [24.36614418, 53.892757415], + [25.226644517, 54.259243011], + [25.571098328, 54.32313919], + [25.76096344, 54.590614319], + [25.85630989, 54.924667359], + [26.222475051, 54.998104096], + [26.386478423, 55.149513246], + [26.682971954, 55.159259797], + [26.826379777, 55.3168602], + [26.463254929, 55.339340211], + [26.63838005, 55.663719178] + ] + ] + }, + "properties": { + "id": "5054f7d8-9b30-43e1-bb95-49a09b54f493", + "code": "LTU", + "name": "Lithuania", + "abbreviation": "C-LTU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [5.815077305, 49.545166015], + [6.042151451, 49.447807313], + [6.372303964, 49.466461182], + [6.513945103, 49.802768707], + [6.262069226, 49.880931854], + [6.138388158, 50.134075166], + [5.859116077, 50.061710358], + [5.746118069, 49.838768006], + [5.815077305, 49.545166015] + ] + ] + }, + "properties": { + "id": "2f5ae20e-3cb0-4293-9e98-9d6ef55e8dc7", + "code": "LUX", + "name": "Luxembourg", + "abbreviation": "C-LUX", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [48.445972, -13.55875], + [48.290416718, -13.806806564], + [47.950138, -13.544583], + [47.858196, -13.763473], + [48.016529, -13.973195], + [48.034306, -14.272361], + [47.84375, -14.256806], + [47.689304, -14.445416], + [47.792915, -14.584584], + [47.470974, -15.089862], + [47.448193, -14.679027], + [47.044861, -15.185695], + [46.87125, -15.229306], + [46.235416, -15.722361], + [45.67514, -15.787918], + [45.266804, -16.106806], + [45.265694, -15.935973], + [44.875972747, -16.193471909], + [44.449306, -16.187639], + [44.439583, -16.660137], + [43.928196, -17.512638], + [44.028751372, -17.772083281], + [44.038193, -18.396528], + [44.213196, -18.695141], + [44.28125, -19.172585], + [44.467361, -19.459028], + [44.397362, -19.796528], + [44.486252, -19.983192], + [43.903194, -20.855139], + [43.836246, -21.148781], + [43.515972, -21.305416], + [43.463749, -21.649305], + [43.276249, -21.906252], + [43.227917, -22.325972], + [43.370140075, -22.845415116], + [43.610694885, -23.104583741], + [43.766804, -23.461805], + [43.633194, -23.750416], + [43.683193207, -24.375694274], + [43.917362213, -24.604860305], + [44.026805878, -25.000972747], + [44.432362, -25.269583], + [44.806804656, -25.340139389], + [45.140140534, -25.597082137], + [45.600139619, -25.545139313], + [45.873474122, -25.364860535], + [46.334583282, -25.185972213], + [46.635139, -25.199583], + [46.995140075, -25.037914275], + [47.201248, -24.77486], + [47.405922, -24.156176], + [47.5881958, -23.797637939], + [47.893749238, -22.481527327], + [48.308750152, -21.412361144], + [48.554863, -20.527639], + [48.816528321, -19.921806336], + [48.863193513, -19.611528396], + [49.337917, -18.408472], + [49.520694733, -17.696252823], + [49.410416, -17.369583], + [49.584861755, -16.911804199], + [49.839863, -16.561527], + [49.859028, -16.223473], + [49.615417481, -15.55430603], + [49.901248933, -15.440416336], + [50.015972, -15.872362], + [50.221249, -15.989029], + [50.433193, -15.52736], + [50.472084, -15.215417], + [50.223751068, -14.76097107], + [50.139862062, -13.796250344], + [49.91986084, -13.201526641], + [49.92791748, -13.044861792], + [49.222637, -12.179305], + [48.85125, -12.415695], + [48.944583892, -12.850971222], + [48.76125, -13.405695], + [48.445972, -13.55875] + ] + ] + }, + "properties": { + "id": "bb29f129-559c-41a1-a750-93d9ba17048d", + "code": "MDG", + "name": "Madagascar", + "abbreviation": "C-MDG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.24020417, -13.998174991], + [33.680450439, -14.604950904], + [33.915218354, -14.476108552], + [34.393241882, -14.395601272], + [34.540897369, -14.599422455], + [34.604110718, -15.267201424], + [34.453739167, -15.60632515], + [34.248569488, -15.841149329], + [34.437480927, -16.061609267], + [34.423492432, -16.254018783], + [34.757629394, -16.510850906], + [34.924369812, -16.744358063], + [35.155979156, -16.831890107], + [35.097358704, -17.127210618], + [35.297000884, -17.126190185], + [35.262172699, -16.470340728], + [35.308395385, -16.212516784], + [35.814365387, -16.030702591], + [35.85213852, -15.417542457], + [35.789237977, -15.167897224], + [35.915046692, -14.895030022], + [35.870323182, -14.674477577], + [35.483951569, -14.167408944], + [34.866371155, -13.481945038], + [34.603542329, -13.481781006], + [34.520900726, -13.337208748], + [34.523887634, -12.729702949], + [34.42527771, -12.159543037], + [34.642639161, -11.58250904], + [34.957931518, -11.571338654], + [34.92570877, -11.415079117], + [34.628341676, -11.102042198], + [34.651935577, -10.757631302], + [34.555122375, -10.549004555], + [34.501525879, -9.976361274], + [34.036300659, -9.491929054], + [33.943237305, -9.706129074], + [33.760337829, -9.582036972], + [33.440303803, -9.61266613], + [32.955853378, -9.399693235], + [33.098510742, -9.674194336], + [33.395690918, -9.916687012], + [33.706237939, -10.602376287], + [33.248537939, -10.873776287], + [33.402937939, -11.160576287], + [33.230537939, -11.428776287], + [33.304837939, -11.605776287], + [33.241837939, -12.130776287], + [33.530737939, -12.365076287], + [32.961237939, -12.775676287], + [33.026137939, -13.214176287], + [32.802737939, -13.655476287], + [33.037637939, -14.042876287], + [33.24020417, -13.998174991] + ] + ] + }, + "properties": { + "id": "0ddacaf2-975b-4a5a-bf7b-cc6a49fd9ffa", + "code": "MWI", + "name": "Malawi", + "abbreviation": "C-MWI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [114.128051758, 4.586944104], + [113.967804, 4.580873], + [113.940834, 4.275833], + [112.941261291, 3.122179986], + [111.708885193, 2.848054886], + [111.428886413, 2.694720983], + [111.439163, 2.3775], + [111.207489, 2.09122], + [110.992775, 1.487778], + [110.325554, 1.712779], + [109.959396, 1.701675], + [109.624588, 1.996794], + [109.660652, 1.619312], + [110.189216613, 1.178480983], + [110.278541566, 0.995830537], + [110.693939209, 0.860897661], + [110.898285393, 1.019389316], + [111.225815, 1.083907999], + [111.526313783, 0.96554184], + [111.871452331, 1.007290006], + [112.153068542, 1.156006695], + [112.215278625, 1.453703285], + [112.486129762, 1.576064468], + [113.054672241, 1.555753469], + [113.012138367, 1.407223105], + [113.538345338, 1.320459724], + [113.623542785, 1.220432401], + [113.978843689, 1.452879191], + [114.565574646, 1.426023008], + [114.874076844, 2.01555276], + [114.917160033, 2.255297662], + [115.257774354, 2.540449619], + [115.103012085, 2.817517997], + [115.521697999, 3.065089941], + [115.5809021, 3.662290097], + [115.688980102, 4.156349182], + [116.171295166, 4.38439417], + [116.431716919, 4.320870876], + [117.243782, 4.371089], + [117.498283, 4.171653], + [117.591621, 4.403351], + [117.996567, 4.2219], + [118.551918, 4.354108], + [118.573326, 4.520282], + [118.306839, 4.630371], + [118.125557, 4.878334], + [118.326668, 5.018891], + [118.668816, 4.932924], + [119.089867, 5.0766], + [119.256737, 5.359213], + [118.709442, 5.564167], + [118.3554, 5.824706], + [118.133331, 5.851388], + [118.010277, 6.06028], + [117.614723, 5.891945], + [117.742233, 6.423611], + [117.291756, 6.615906], + [117.153053, 7.012781], + [116.981094, 6.702823], + [116.746391, 7.035281], + [116.642776, 6.707782], + [116.243607, 6.285281], + [115.903473, 5.751735], + [115.873283, 5.582794], + [115.540756, 5.53565], + [115.38028, 5.292501], + [115.590614318, 5.180620193], + [115.322029, 4.893452], + [115.155319, 4.911237], + [115.298309, 4.436701], + [115.110603333, 4.405399799], + [115.038032532, 4.793191911], + [115.000923342, 4.884733303], + [114.794799804, 4.746360779], + [114.85179901, 4.252079965], + [114.679397584, 4.034860134], + [114.31780243, 4.275939943], + [114.128051758, 4.586944104] + ] + ], + [ + [ + [100.124443, 6.40509], + [100.32964325, 6.036911965], + [100.339935, 5.56948], + [100.443054, 4.915554], + [100.663887, 4.745], + [100.613609, 4.167777], + [100.713814, 3.877285], + [101.054801941, 3.593972921], + [101.294021606, 3.256279945], + [101.475891001, 2.691651001], + [101.763412, 2.600183], + [101.856346, 2.417291], + [102.479446, 2.104722], + [103.354935, 1.541905], + [103.443611, 1.319167], + [103.799156189, 1.485582949], + [104.283058, 1.369584], + [104.25972, 1.612501], + [103.81208, 2.579965], + [103.453056336, 2.864957095], + [103.477219, 3.505829], + [103.325546, 3.737501], + [103.491577149, 4.328821183], + [103.42495, 4.814764], + [103.187225342, 5.26666689], + [102.973938, 5.524339], + [102.479721069, 5.877778054], + [102.345993042, 6.168600082], + [102.086631774, 6.245808125], + [101.814651489, 5.737160207], + [101.585510254, 5.932411194], + [101.286239623, 5.821051121], + [101.134300231, 5.616197109], + [100.986099244, 5.806541921], + [101.126502991, 5.981280804], + [101.094100952, 6.26108122], + [100.85369873, 6.243780137], + [100.818595887, 6.437360763], + [100.366157531, 6.539310933], + [100.171897888, 6.693915845], + [100.124443, 6.40509] + ] + ] + ] + }, + "properties": { + "id": "8e18d807-65e7-4dad-ab03-6edd73d6f538", + "code": "MYS", + "name": "Malaysia", + "abbreviation": "C-MYS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [73.419861, -0.278473], + [73.426804, -0.308473], + [73.440697, -0.306805], + [73.419861, -0.278473] + ] + ] + }, + "properties": { + "id": "fde74558-b3d2-405b-8106-24bafe830085", + "code": "MDV", + "name": "Maldives", + "abbreviation": "C-MDV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-4.829955324, 24.996582606], + [-6.564404965, 25], + [-6.004528045, 20.154289246], + [-5.602798938, 16.499429704], + [-5.32711506, 16.333139419], + [-5.506422997, 15.507969857], + [-5.998631954, 15.49462986], + [-9.328486443, 15.496250153], + [-9.793499946, 15.372710229], + [-10.320601463, 15.431160928], + [-10.664280891, 15.404599191], + [-10.998529435, 15.238161087], + [-11.498941422, 15.642840385], + [-11.714699745, 15.526490213], + [-11.838081359, 15.17191124], + [-11.806099892, 14.901631355], + [-12.062081338, 14.717201233], + [-12.238911629, 14.759259224], + [-12.201363564, 14.408751489], + [-12.019219399, 14.279276847], + [-11.947833062, 13.812830925], + [-12.067743301, 13.707526207], + [-11.796690942, 13.313722611], + [-11.62743187, 13.397066117], + [-11.382016183, 12.995388032], + [-11.377452851, 12.417995453], + [-11.497797013, 12.20952511], + [-11.257471084, 11.992480279], + [-10.93279934, 12.223349572], + [-10.672221185, 11.893879891], + [-10.340060235, 12.215589524], + [-9.699756623, 12.023820878], + [-9.630397796, 12.172830583], + [-9.340385436, 12.242920875], + [-9.362003327, 12.495670318], + [-8.968897819, 12.348448754], + [-8.794913293, 11.923871994], + [-8.854325295, 11.628337861], + [-8.396868706, 11.382309914], + [-8.68062973, 10.967069627], + [-8.287079811, 10.995130539], + [-8.301472663, 10.636231422], + [-7.978549004, 10.175108911], + [-7.641550065, 10.488121033], + [-7.384366989, 10.282631874], + [-6.975772857, 10.195070267], + [-6.947463988, 10.369640351], + [-6.672196864, 10.365130425], + [-6.642239093, 10.672245026], + [-6.217734813, 10.726328851], + [-6.023159981, 10.198860169], + [-5.772508145, 10.440250398], + [-5.518918037, 10.433259965], + [-5.422309875, 10.852600098], + [-5.490749835, 11.071919442], + [-5.272128105, 11.234490395], + [-5.203893185, 11.5291996], + [-5.35412693, 11.824850082], + [-5.156524181, 11.9477911], + [-4.65831089, 12.053871156], + [-4.294475078, 12.69923973], + [-4.230224133, 12.937218666], + [-4.345856189, 13.146181106], + [-3.973803044, 13.393791199], + [-3.532244921, 13.171990395], + [-3.256079912, 13.283860207], + [-3.256294012, 13.669851302], + [-2.871969938, 13.655329704], + [-2.837029934, 14.060629844], + [-2.476469993, 14.297860145], + [-2.10581994, 14.150279999], + [-1.975370049, 14.480879784], + [-1.67490995, 14.506890298], + [-1.087859989, 14.790120125], + [-0.701488019, 15.081521034], + [-0.231750994, 15.071439744], + [0.229350001, 14.989670753], + [0.973188996, 14.978949548], + [1.324030041, 15.265146256], + [2.628789901, 15.367120743], + [3.527507066, 15.341489791], + [3.538172006, 15.488309861], + [3.872142076, 15.691880226], + [4.076467038, 16.320419311], + [4.076756001, 16.912309646], + [4.241202832, 16.987697601], + [4.242887021, 19.136716843], + [3.335249067, 18.960230827], + [3.10806799, 19.178124428], + [3.272078037, 19.409557343], + [3.229897976, 19.825234413], + [3.002441882, 19.936761857], + [2.399214983, 20.071929931], + [2.185602009, 20.291712761], + [1.905501008, 20.25015068], + [1.653113961, 20.552160264], + [1.176954984, 20.733539581], + [1.166674017, 21.118892669], + [-0.000170999, 21.838685989], + [-0.027551999, 21.917940139], + [-2.156348945, 23.310470582], + [-4.829955324, 24.996582606] + ] + ] + }, + "properties": { + "id": "4555783e-b5ad-4e6f-b9e8-450fa6347e08", + "code": "MLI", + "name": "Mali", + "abbreviation": "C-MLI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [14.544306755, 35.829582215], + [14.491250992, 35.930973054], + [14.335695267, 35.879581451], + [14.544306755, 35.829582215] + ] + ] + }, + "properties": { + "id": "8a552b93-fc8f-4f3d-9e45-0c3175514850", + "code": "MLT", + "name": "Malta", + "abbreviation": "C-MLT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [171.205276, 7.0625], + [171.143692, 7.086691], + [171.064453, 7.114588], + [171.03923, 7.144704], + [171.027771, 7.144426], + [171.051041, 7.121735], + [171.072159, 7.109729], + [171.144882, 7.084679], + [171.188766, 7.064832], + [171.205276, 7.0625] + ] + ] + }, + "properties": { + "id": "d148f676-74a5-4a3d-9498-19dcd958907c", + "code": "MHL", + "name": "Marshall Islands", + "abbreviation": "C-MHL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.817638, 14.467362], + [-60.90097, 14.695139], + [-61.227359771, 14.803195], + [-61.094028473, 14.525137902], + [-60.817638, 14.467362] + ] + ] + }, + "properties": { + "id": "1faa4e07-d2e8-4e52-ac1e-fab216319dda", + "code": "MTQ", + "name": "Martinique", + "abbreviation": "C-MTQ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.673868179, 27.298070908], + [-8.674157142, 25.997608184], + [-12.003888131, 25.99864006], + [-12.000000001, 23.454519272], + [-12.740400313, 23.391349792], + [-12.957139015, 23.213079453], + [-13.145749092, 22.731409073], + [-13.00176, 21.330811], + [-15.877051, 21.341209], + [-16.939711, 21.326639], + [-17.045986, 20.771763], + [-16.884859, 21.120417], + [-16.675974, 20.673471], + [-16.528475, 20.73097], + [-16.201248, 20.197639], + [-16.256248, 19.782084], + [-16.544582367, 19.385414124], + [-16.25180626, 19.071805954], + [-16.05291748, 18.439027787], + [-16.02041626, 17.982084275], + [-16.086250305, 17.503749848], + [-16.442083359, 16.616249085], + [-16.509552003, 16.061672211], + [-16.280223847, 16.515396117], + [-15.705521584, 16.47363472], + [-14.893631935, 16.632528306], + [-14.327065468, 16.630088807], + [-13.843576432, 16.106767654], + [-13.374959946, 16.053251267], + [-13.251791001, 15.655238151], + [-12.963149071, 15.497569085], + [-12.849134446, 15.199854852], + [-12.461545944, 14.982006074], + [-12.238911629, 14.759259224], + [-12.062081338, 14.717201233], + [-11.806099892, 14.901631355], + [-11.838081359, 15.17191124], + [-11.714699745, 15.526490213], + [-11.498941422, 15.642840385], + [-10.998529435, 15.238161087], + [-10.664280891, 15.404599191], + [-10.320601463, 15.431160928], + [-9.793499946, 15.372710229], + [-9.328486443, 15.496250153], + [-5.998631954, 15.49462986], + [-5.506422997, 15.507969857], + [-5.32711506, 16.333139419], + [-5.602798938, 16.499429704], + [-6.004528045, 20.154289246], + [-6.564404965, 25], + [-4.829955324, 24.996582606], + [-7, 26.341360092], + [-8.673868179, 27.298070908] + ] + ] + }, + "properties": { + "id": "7a3ff1e9-3067-4316-9699-8aba396dde51", + "code": "MRT", + "name": "Mauritania", + "abbreviation": "C-MRT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [57.779861, -20.31514], + [57.610973, -19.98097], + [57.365139, -20.279861], + [57.354305, -20.487083], + [57.679585, -20.476528], + [57.779861, -20.31514] + ] + ] + }, + "properties": { + "id": "b25c92e8-6097-46d0-b49c-29646a94aa2a", + "code": "MUS", + "name": "Mauritius", + "abbreviation": "C-MUS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [45.126804, -12.932361], + [45.222363, -12.870973], + [45.100971, -12.663195], + [45.126804, -12.932361] + ] + ] + }, + "properties": { + "id": "82b6562d-4fc8-4608-b663-ace8c0e2b994", + "code": "MYT", + "name": "Mayotte", + "abbreviation": "C-MYT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [158.276108, 6.794722], + [158.318054, 6.934445], + [158.17778, 6.985279001], + [158.161392, 6.805557], + [158.276108, 6.794722] + ] + ] + }, + "properties": { + "id": "7af0944f-1bba-4a73-94a0-976d51b96cf8", + "code": "FSM", + "name": "Micronesia", + "abbreviation": "C-FSM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.214229823, 45.466758923], + [28.516287001, 45.505466001], + [28.547887803, 45.737163545], + [28.790444916, 45.846446887], + [29.057643821, 46.201114867], + [28.934158326, 46.460590362], + [29.242206573, 46.563331604], + [29.593429566, 46.364337921], + [29.917805, 46.517345], + [29.979202271, 46.763614654], + [29.605106353, 46.969490051], + [29.57916069, 47.378166199], + [29.397924423, 47.310413361], + [29.133705139, 47.548999786], + [29.241861344, 47.639930725], + [29.188543319, 47.994007111], + [28.943750382, 47.956123352], + [28.854471207, 48.121669769], + [28.346273423, 48.249347687], + [28.107629775, 48.234107972], + [27.763639451, 48.458564758], + [27.284778595, 48.384082795], + [26.726482391, 48.394992829], + [26.631242753, 48.2574234], + [26.808113098, 48.254699707], + [27.179763794, 47.94707489], + [27.27690506, 47.687496186], + [27.801059722, 47.142501831], + [28.097082138, 46.979564668], + [28.236099243, 46.681240081], + [28.090349, 46.059769], + [28.214229823, 45.466758923] + ] + ] + }, + "properties": { + "id": "a940219b-08ec-4459-aa42-adf451ea1dcf", + "code": "MDA", + "name": "Moldova", + "abbreviation": "C-MDA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [7.413652896, 43.724304199], + [7.439582826, 43.749214174], + [7.413383032, 43.734589023], + [7.413652896, 43.724304199] + ] + ] + }, + "properties": { + "id": "fa6cfd25-37d2-432c-99e7-d1c344b2cdf6", + "code": "MCO", + "name": "Monaco", + "abbreviation": "C-MCO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [116.700271606, 49.839855194], + [116.20514679, 50.031681061], + [115.720947265, 49.884578705], + [115.37463379, 49.9078331], + [115.004051209, 50.177375793], + [114.349037171, 50.282894135], + [113.795715333, 50.094085694], + [113.230262756, 49.834945679], + [113.087524, 49.608276], + [112.716309, 49.49184], + [112.513168334, 49.546485902], + [111.934509, 49.395508], + [111.392272949, 49.37310791], + [110.766296, 49.145081], + [110.399475098, 49.258483887], + [110.234123, 49.165123], + [109.539673, 49.226074], + [109.329101999, 49.341491999], + [108.555587999, 49.334319999], + [108.02533, 49.615295], + [107.937965393, 49.925693512], + [107.130737305, 50.02691269], + [106.924499513, 50.247497559], + [106.567321778, 50.347106934], + [106.279296874, 50.295722961], + [106.080101013, 50.393844604], + [105.387695312, 50.479309081], + [105.151931762, 50.400051117], + [104.405113221, 50.304992675], + [104.061096191, 50.15447998], + [103.690460206, 50.137237549], + [102.98071289, 50.304321289], + [102.320617676, 50.584091186], + [102.354049682, 50.726699829], + [102.068778992, 51.397094728], + [101.392089843, 51.455402375], + [101.258636475, 51.539417267], + [100.515640259, 51.750377655], + [99.993530273, 51.753295899], + [99.770606994, 51.881752014], + [99.294784545, 51.975227356], + [98.953674316, 52.147888184], + [98.696296693, 51.820365907], + [98.315307617, 51.717895508], + [98.234313965, 51.462280275], + [97.944885255, 51.322875977], + [97.867279, 50.949818], + [98.132652283, 50.59640503], + [98.324486, 50.538971], + [98.116180001, 50.103947001], + [97.316200257, 49.75738907], + [97.002983093, 49.914520263], + [96.453681946, 49.901294708], + [96.302124024, 49.987121582], + [95.47781372, 49.922348022], + [95.129554748, 49.948928833], + [94.964225768, 50.061710358], + [94.608818054, 50.038711548], + [94.398925781, 50.23413086], + [94.223670959, 50.58272171], + [93.104125976, 50.566894532], + [93.03299, 50.762951], + [92.748024, 50.709347], + [92.325317, 50.886372], + [92.19577012, 50.684822066], + [91.83609, 50.734692], + [91.44431305, 50.465400697], + [90.737731933, 50.487930298], + [90.662528992, 50.163562775], + [90.274085999, 50.018138886], + [89.620727539, 49.973991395], + [89.681831359, 49.709709168], + [88.852722168, 49.450073242], + [88.650024414, 49.520069122], + [88.223335265, 49.489871979], + [87.994293213, 49.186321258], + [87.832260132, 49.175006867], + [87.792427063, 48.821681976], + [88.000106812, 48.570583344], + [88.601074218, 48.34411621], + [88.674240112, 48.174560547], + [89.041076661, 47.947326659], + [89.565917968, 48.048706055], + [89.796417236, 47.818149566], + [90.068908908, 47.862121853], + [90.456909155, 47.487121602], + [90.517845154, 47.244155884], + [90.881156921, 46.976364136], + [91.077636718, 46.563964844], + [90.934768676, 46.205638885], + [91.011497497, 46.000534059], + [90.69985199, 45.690681457], + [90.663696289, 45.516906739], + [90.8724823, 45.198150635], + [91.158081055, 45.194137574], + [91.652023316, 45.05670929], + [93.508270263, 44.965343476], + [94.197418214, 44.66250229], + [94.334007264, 44.523059846], + [94.990509033, 44.254550934], + [95.423660279, 44.289268493], + [95.374794007, 44.021148682], + [95.550781249, 43.988658906], + [95.881103515, 43.40209961], + [95.916450501, 43.233505248], + [96.324447632, 42.88243103], + [96.361427308, 42.721248627], + [96.93282318, 42.712154388], + [97.151489, 42.773926], + [98.339881897, 42.639923096], + [99.496276855, 42.570083618], + [100.326461791, 42.683330537], + [100.911582947, 42.645259858], + [101.822692871, 42.470275879], + [102.063293458, 42.218688965], + [102.73903656, 42.134159088], + [103.322082519, 41.907470703], + [103.86239624, 41.807941437], + [104.543746948, 41.883792877], + [104.534011841, 41.662620545], + [105.034484863, 41.567687989], + [105.801895141, 41.957645417], + [106.683631896, 42.259391784], + [107.266471862, 42.356658935], + [107.452796936, 42.46188736], + [107.912422181, 42.412010193], + [108.525352478, 42.455341339], + [109.547477721, 42.471664429], + [109.834716796, 42.624961852], + [110.143592835, 42.636798859], + [110.416503906, 42.768920898], + [111.047142029, 43.343456268], + [111.574508666, 43.48953247], + [111.753936767, 43.690742494], + [112.015686035, 43.791320802], + [111.393951416, 44.321613311], + [111.559875488, 44.723083496], + [111.833129883, 45.048522949], + [112.415527343, 45.061523438], + [112.758087158, 44.870479583], + [113.62381, 44.743958001], + [114.379272, 45.165283], + [114.548706, 45.398499], + [115.00012207, 45.365173339], + [115.72115326, 45.438438415], + [116.273498535, 45.761108399], + [116.262069702, 45.950332642], + [116.605285645, 46.297119142], + [117.37146759, 46.354770661], + [117.432952881, 46.57503891], + [117.852081299, 46.532127381], + [118.270050049, 46.787563324], + [118.935913086, 46.819526674], + [119.403701782, 46.633621215], + [119.402847289, 46.454940797], + [119.920722961, 46.743499756], + [119.716117859, 47.320999145], + [119.499694825, 47.335502625], + [119.187850952, 47.51845932], + [119.124084474, 47.703308105], + [118.775848388, 47.806549072], + [118.478698731, 48.000122071], + [117.75969696, 47.990188598], + [117.374511718, 47.638057709], + [116.826782226, 47.898399354], + [116.256286621, 47.876708985], + [115.949371337, 47.679122924], + [115.553779643, 47.948326089], + [115.514892577, 48.183898925], + [115.8125, 48.261475001], + [115.821495057, 48.531665803], + [116.111022949, 48.792751313], + [116.070678711, 48.908874512], + [116.700271606, 49.839855194] + ] + ] + }, + "properties": { + "id": "6d7902ea-a17f-4c19-bbf1-4e721ba85b9a", + "code": "MNG", + "name": "Mongolia", + "abbreviation": "C-MNG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.033109664, 42.548316956], + [20.017023086, 42.768047332], + [20.313747407, 42.826240539], + [19.797666549, 43.086166381], + [19.179483414, 43.471149444], + [19.185674667, 43.53514862], + [18.958541871, 43.515575408], + [18.695547104, 43.266609192], + [18.678873063, 43.037166595], + [18.492286682, 42.975170135], + [18.458923007, 42.565307821], + [18.507923, 42.45433], + [19.377112809, 41.866320183], + [19.285785675, 42.180006028], + [19.706918717, 42.658889772], + [19.833229066, 42.467416764], + [20.033109664, 42.548316956] + ] + ] + }, + "properties": { + "id": "78401f7f-d5ca-45ef-a39a-5bc4f4fb6796", + "code": "MNE", + "name": "Montenegro", + "abbreviation": "C-MNE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.150138855, 16.71152687], + [-62.199028015, 16.824026107], + [-62.239860534, 16.721252441], + [-62.150138855, 16.71152687] + ] + ] + }, + "properties": { + "id": "f8ffe052-bddf-4747-bcee-4399708c2b8e", + "code": "MSR", + "name": "Montserrat", + "abbreviation": "C-MSR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-2.211107969, 35.062023163], + [-2.424860955, 35.147914886], + [-2.809583902, 35.102359771], + [-2.936805009, 35.28042221], + [-2.954027891, 35.322704316], + [-3.338195085, 35.185695649], + [-3.708472014, 35.288471222], + [-4.355138, 35.147362], + [-4.782638073, 35.237915038], + [-5.243473053, 35.552917481], + [-5.341249942, 35.874599458], + [-5.384860993, 35.911529541], + [-5.930694103, 35.787361145], + [-6.297638893, 34.873748779], + [-6.783195018, 34.093471528], + [-7.029861, 33.877918], + [-7.521805764, 33.624862672], + [-8.513471603, 33.265140533], + [-8.920140266, 32.825138092], + [-9.285973549, 32.543193818], + [-9.262079239, 32.175140381], + [-9.675415993, 31.70152855], + [-9.833471299, 31.414028168], + [-9.783750534, 30.609580993], + [-9.598472595, 30.400138856], + [-9.832362175, 29.805416108], + [-10.215138, 29.314028], + [-10.509860039, 29.028472901], + [-11.045694351, 28.759860994], + [-11.529027939, 28.293193818], + [-12.052916526, 28.0965271], + [-12.917082787, 27.953193664], + [-13.167089462, 27.68309784], + [-8.670013428, 27.670074462], + [-8.667710305, 28.713489533], + [-7.591602802, 29.376918793], + [-7.148672104, 29.522182465], + [-6.77609682, 29.461568833], + [-6.446598053, 29.56458664], + [-5.798730849, 29.614160538], + [-5.539897442, 29.512680054], + [-5.239676, 29.933425904], + [-4.606369971, 30.282133104], + [-4.320165157, 30.528390886], + [-3.642934083, 30.699592591], + [-3.535881519, 31.011262075], + [-3.776664972, 31.121631622], + [-3.661837458, 31.633885385], + [-2.83160901, 31.798009872], + [-2.915163995, 32.118808747], + [-2.013864041, 32.181777955], + [-1.205126046, 32.084774017], + [-1.197920978, 32.404144288], + [-0.996272867, 32.51703914], + [-1.38121903, 32.739322663], + [-1.460718036, 33.041847229], + [-1.670274496, 33.285953523], + [-1.598497032, 33.615089416], + [-1.737028957, 33.700263978], + [-1.647634029, 34.106685639], + [-1.732338012, 34.507414818], + [-1.88649717, 34.809758466], + [-2.211107969, 35.062023163] + ] + ] + }, + "properties": { + "id": "0e5618c2-c1f8-4998-b254-02fe68054a5c", + "code": "MAR", + "name": "Morocco", + "abbreviation": "C-MAR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.24020417, -13.998174991], + [32.454837939, -14.271576287], + [31.956115723, -14.401000977], + [31.506437939, -14.600976287], + [30.687337939, -14.819876287], + [30.219437939, -14.997876287], + [30.411541281, -15.610714701], + [30.424594879, -15.999998093], + [31.152347135, -15.988616026], + [31.691698074, -16.201686859], + [32.037540435, -16.442369462], + [32.285324096, -16.434577942], + [32.978549958, -16.707206727], + [32.838451386, -16.932029724], + [33.045261384, -17.346971511], + [32.942576249, -17.978823341], + [33.054321289, -18.357774734], + [32.888331142, -18.511163488], + [32.954124451, -18.690193176], + [32.704511366, -18.843793876], + [32.845279693, -19.024831772], + [32.850135803, -19.684627532], + [33.052776336, -19.780582428], + [33.013950347, -20.010980607], + [32.658370972, -20.561620712], + [32.488540649, -20.627471923], + [32.516838075, -20.914373397], + [32.399799348, -21.327598572], + [31.307275773, -22.420276642], + [31.56360054, -23.198230744], + [31.561019898, -23.481960297], + [31.987129211, -24.302200318], + [32.03358841, -25.132520676], + [31.973690033, -25.953199387], + [32.087741853, -26.010898591], + [32.133117676, -26.840190888], + [32.89125061, -26.858415603], + [32.949306, -26.093472], + [32.834026336, -26.288471223], + [32.587917, -25.984585], + [32.812915802, -25.606250762], + [33.223194, -25.33264], + [33.693195, -25.132639], + [34.810417175, -24.749860762], + [35.150417328, -24.580974578], + [35.499863, -24.105971999], + [35.331806182, -23.999860763], + [35.591804505, -22.971250533], + [35.51347351, -22.804582595], + [35.543194, -22.324306], + [35.329861, -22.184584], + [35.272362, -21.636806], + [35.127918, -21.394859], + [34.997082, -20.714582], + [34.73764, -20.512362], + [34.774307251, -19.855693817], + [34.890415, -19.849585], + [35.405972, -19.452915], + [35.778751, -19.044306], + [36.276527, -18.883751], + [36.508194, -18.539581], + [37.197918, -17.763474], + [37.837360383, -17.410419464], + [38.55986, -17.125694], + [39.073193, -17.013472], + [39.175415, -16.850973], + [39.861252, -16.44014], + [40.122082, -15.955694], + [40.569584, -15.487083], + [40.678749, -15.25625], + [40.649029, -14.917361], + [40.806526, -14.84625], + [40.807914734, -14.41124916], + [40.620971679, -14.218194961], + [40.535416, -13.635972], + [40.554584503, -13.060694694], + [40.630138, -12.746806], + [40.506527, -12.533472], + [40.498474, -12.054306], + [40.379581, -11.330416], + [40.564861297, -11.030139924], + [40.589027, -10.604028], + [40.436207, -10.47125], + [39.991428376, -10.81612873], + [39.529575349, -10.985413551], + [39.241691589, -11.179941178], + [38.884738922, -11.175510406], + [38.486148835, -11.41489029], + [38.261924743, -11.288425444], + [37.933540345, -11.256524087], + [37.747936248, -11.548653603], + [37.419445038, -11.680004121], + [36.826648712, -11.57818985], + [36.719501496, -11.692878724], + [36.201259614, -11.716184616], + [36.172279359, -11.58955574], + [35.823818207, -11.406799316], + [35.575569152, -11.603464127], + [34.957931518, -11.571338654], + [34.642639161, -11.58250904], + [34.42527771, -12.159543037], + [34.523887634, -12.729702949], + [34.520900726, -13.337208748], + [34.603542329, -13.481781006], + [34.866371155, -13.481945038], + [35.483951569, -14.167408944], + [35.870323182, -14.674477577], + [35.915046692, -14.895030022], + [35.789237977, -15.167897224], + [35.85213852, -15.417542457], + [35.814365387, -16.030702591], + [35.308395385, -16.212516784], + [35.262172699, -16.470340728], + [35.297000884, -17.126190185], + [35.097358704, -17.127210618], + [35.155979156, -16.831890107], + [34.924369812, -16.744358063], + [34.757629394, -16.510850906], + [34.423492432, -16.254018783], + [34.437480927, -16.061609267], + [34.248569488, -15.841149329], + [34.453739167, -15.60632515], + [34.604110718, -15.267201424], + [34.540897369, -14.599422455], + [34.393241882, -14.395601272], + [33.915218354, -14.476108552], + [33.680450439, -14.604950904], + [33.24020417, -13.998174991] + ] + ] + }, + "properties": { + "id": "06c8f150-7262-4a7d-881e-b444c5c4fe06", + "code": "MOZ", + "name": "Mozambique", + "abbreviation": "C-MOZ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [92.202880859, 21.149477005], + [92.386108, 20.701944], + [92.761192321, 20.20195961], + [93.165558, 20.036945], + [93.353737, 20.06806], + [93.632225, 19.721111], + [94.068199, 19.392191], + [94.030281, 18.85], + [94.165283, 18.802778], + [94.385002, 18.367781], + [94.43824, 17.976154], + [94.582497, 17.623611], + [94.561943, 17.33111], + [94.20108, 16.039995], + [94.416946, 16.066944], + [94.707336, 16.373631], + [94.578613, 15.933612], + [94.71833, 15.85417], + [94.855278, 16.12389], + [95.111656, 15.807781], + [95.440650999, 15.729969], + [95.743057, 16.129444], + [96.651947, 16.553333], + [96.903053, 17.23472], + [97.166389465, 16.962781906], + [97.349998, 16.519999], + [97.619667, 16.517076], + [97.557503, 16.08222], + [97.691391, 15.890833], + [97.773331, 15.433057], + [97.789223, 14.91301], + [98.178337, 13.815], + [98.576111, 13.184721], + [98.648056, 12.659166], + [98.59639, 12.476671], + [98.724442, 12.19667], + [98.617226, 12.102223], + [98.815277, 11.84611], + [98.711426, 11.520221], + [98.698334, 10.928612], + [98.448334, 10.688334], + [98.552002, 9.974082], + [98.773597863, 10.423904136], + [98.782463073, 10.675721169], + [99.172996649, 11.045432036], + [99.65927124, 11.828301431], + [99.403457642, 12.459459304], + [99.099800111, 13.077100754], + [99.211135865, 13.206250191], + [99.171791077, 13.719991684], + [98.970832825, 14.07981968], + [98.601577759, 14.323830605], + [98.251457215, 14.830780983], + [98.186272, 15.09499], + [98.30885315, 15.310970306], + [98.581329346, 15.363599777], + [98.609298706, 16.041229248], + [98.93257904, 16.327238083], + [98.669479371, 16.282550811], + [98.658470153, 16.455762863], + [98.33856964, 17.049209594], + [97.67626953, 17.868341445], + [97.640449524, 18.285829544], + [97.539405822, 18.48759079], + [97.771896361, 18.575000764], + [97.738777161, 19.038570404], + [97.837272644, 19.092201232], + [97.863769531, 19.573209762], + [98.085845948, 19.807189941], + [98.32598114, 19.694761277], + [98.850227356, 19.805711746], + [98.984138488, 19.733381272], + [99.07108307, 20.09041977], + [99.541389466, 20.144479751], + [99.518218995, 20.360139847], + [100.086769104, 20.350891113], + [100.259483338, 20.746959687], + [100.503486634, 20.809890747], + [100.727104187, 21.312124253], + [101.005386353, 21.392230987], + [101.154747009, 21.563869477], + [101.126541137, 21.775440216], + [100.577789306, 21.450250626], + [100.202583314, 21.439350128], + [99.986152649, 21.718660356], + [99.970596313, 22.052030565], + [99.218940736, 22.118749619], + [99.389518737, 22.499420167], + [99.32546234, 22.751070024], + [99.564208985, 22.925800324], + [99.511268617, 23.083738327], + [98.889778137, 23.183111191], + [98.923049926, 23.42311287], + [98.678543091, 23.959962844], + [98.846466065, 24.134290695], + [98.029762267, 24.071229935], + [97.67312622, 23.862070084], + [97.734268188, 24.117031097], + [97.575897217, 24.763330459], + [97.715736389, 24.837230682], + [97.845031738, 25.267892838], + [98.369155883, 25.572999955], + [98.475769044, 25.797702789], + [98.694259643, 25.843719483], + [98.572860719, 26.119081497], + [98.781059265, 26.619880676], + [98.686851501, 27.213729858], + [98.69291687, 27.589670182], + [98.467582703, 27.690162659], + [98.318817139, 27.542770387], + [98.150886535, 28.113918305], + [97.905067444, 28.372102738], + [97.589302063, 28.534980774], + [97.356887819, 28.233200073], + [97.41516113, 28.024080278], + [96.897583009, 27.620801926], + [96.911849975, 27.462709428], + [97.171737671, 27.136810304], + [96.866226197, 27.199689865], + [96.802360534, 27.354431152], + [96.234329224, 27.284879685], + [95.423309326, 26.696712494], + [95.240440369, 26.691640854], + [95.068786621, 26.466672897], + [95.18535614, 26.084682464], + [95.052528381, 25.762659072], + [94.688636779, 25.465499878], + [94.585357665, 25.215749742], + [94.745658874, 25.136590958], + [94.262718201, 24.167747498], + [94.161460876, 23.852779389], + [93.756942749, 24.009492875], + [93.398719787, 23.930280686], + [93.427642823, 23.534370423], + [93.332641601, 23.035671235], + [93.141853333, 23.060609818], + [93.091751098, 22.709341049], + [93.190811157, 22.427259445], + [93.009246827, 21.983930589], + [92.703437805, 22.15378189], + [92.608779907, 21.984094619], + [92.673660279, 21.291280747], + [92.380973816, 21.479867936], + [92.202880859, 21.149477005] + ] + ], + [ + [ + [93.814453, 19.22583], + [93.468918, 19.36713], + [93.661713, 19.02977], + [93.98645, 18.970772], + [93.814453, 19.22583] + ] + ] + ] + }, + "properties": { + "id": "3c6b4315-d867-401f-891a-e5f08fed6a2b", + "code": "MMR", + "name": "Myanmar", + "abbreviation": "C-MMR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-88.316290583, 18.488474], + [-88.069200436, 18.861151737], + [-88.054040372, 18.476920148], + [-87.859396305, 18.190969], + [-87.845011326, 18.193383909], + [-87.549974852, 19.08851024], + [-87.645490812, 19.370597357], + [-87.440134479, 19.469225662], + [-87.748368327, 19.599120133], + [-87.449043961, 19.929279283], + [-87.523585148, 20.096041096], + [-87.246348586, 20.484854076], + [-86.874689063, 20.847540965], + [-86.740640678, 21.135330311], + [-86.965998786, 21.530134873], + [-87.232462184, 21.418610787], + [-88.128818576, 21.624266174], + [-88.737480251, 21.431135408], + [-89.695933605, 21.280902799], + [-90.09461233, 21.155552768], + [-90.369320098, 20.953595044], + [-90.50226056, 20.497775877], + [-90.452152996, 19.952173286], + [-90.706729627, 19.675827523], + [-90.722545596, 19.358565411], + [-91.362523505, 18.877554904], + [-91.308749903, 18.558675734], + [-91.565813802, 18.441439931], + [-91.793244462, 18.494017306], + [-91.956861031, 18.697425485], + [-92.674272128, 18.610567621], + [-92.890685463, 18.444116788], + [-93.405922869, 18.432296094], + [-93.570459417, 18.341667594], + [-94.447114921, 18.152185963], + [-94.815678187, 18.537788295], + [-95.290894379, 18.714126902], + [-95.803878815, 18.751455932], + [-95.969853779, 19.04867098], + [-96.296698036, 19.323729774], + [-96.451213393, 19.849137128], + [-97.179144498, 20.665745115], + [-97.72190328, 21.834606076], + [-97.888069965, 22.653393087], + [-97.761198101, 23.000478606], + [-97.774628627, 24.110269472], + [-97.70788613, 24.658994661], + [-97.703042857, 25.306919563], + [-97.202527172, 25.63064952], + [-97.160128874, 25.952016647], + [-97.522961192, 25.888194409], + [-97.803342767, 26.05993454], + [-98.148976714, 26.05055035], + [-98.799294669, 26.361960984], + [-99.086828109, 26.401394077], + [-99.280285164, 26.857823757], + [-99.451691697, 27.056946331], + [-99.478806331, 27.479124943], + [-99.877781971, 27.801462911], + [-99.930937875, 27.978954726], + [-100.29424398, 28.283574509], + [-100.398499623, 28.585093732], + [-100.79427047, 29.242100333], + [-101.463746268, 29.789341929], + [-102.389945827, 29.782801462], + [-102.674098893, 29.744528998], + [-102.839219769, 29.358895347], + [-103.153168174, 28.971745931], + [-103.97337839, 29.296052619], + [-104.450749093, 29.58167358], + [-104.674580674, 29.910828075], + [-104.687275952, 30.179880005], + [-105.00756693, 30.686026093], + [-105.401847967, 30.854443587], + [-105.955292739, 31.365126226], + [-106.21959714, 31.481547519], + [-106.528523272, 31.783817453], + [-108.208373456, 31.783754008], + [-108.208473175, 31.333363342], + [-111.075016146, 31.332382343], + [-114.813572763, 32.493913162], + [-114.720236764, 32.718626008], + [-117.123496463, 32.530884], + [-116.879219041, 32.017381569], + [-116.610207407, 31.810927394], + [-116.690701206, 31.571139962], + [-116.309885736, 31.157569442], + [-116.05116314, 30.779506145], + [-116.046704893, 30.470401393], + [-115.802799786, 30.279913304], + [-115.804804756, 29.973575409], + [-115.505785134, 29.617174496], + [-114.950815479, 29.361511334], + [-114.596922363, 28.976153029], + [-114.408424633, 28.868946833], + [-114.044723652, 28.458594781], + [-114.12495521, 28.256836154], + [-114.040173415, 28.02276174], + [-114.178641445, 27.822942768], + [-114.605328131, 27.773517998], + [-115.054720206, 27.860279961], + [-115.007000204, 27.718651985], + [-114.50700549, 27.409009017], + [-114.488005697, 27.228717353], + [-113.871941484, 26.979691784], + [-113.716137727, 26.790722693], + [-113.203116092, 26.851133496], + [-113.061707767, 26.599053062], + [-112.19516617, 25.99370846], + [-112.074105704, 25.676200975], + [-112.149452517, 25.137408841], + [-112.064014302, 24.746910216], + [-111.027318067, 24.097846999], + [-110.684598173, 23.770154898], + [-110.313507841, 23.545193083], + [-110.099425596, 23.021957603], + [-109.857361163, 22.898588628], + [-109.439302662, 23.234129777], + [-109.468263269, 23.552779284], + [-109.676959498, 23.645513935], + [-109.827008338, 24.060675343], + [-110.234448434, 24.344196647], + [-110.304674486, 24.174798863], + [-110.563462555, 24.213531188], + [-110.739499999, 24.624600001], + [-110.657225602, 24.806043145], + [-110.907629052, 25.145784305], + [-111.03583694, 25.517827229], + [-111.306607854, 25.774026738], + [-111.319076273, 26.076503568], + [-111.5707182, 26.572558598], + [-111.56202216, 26.697265273], + [-112.010092006, 26.961221385], + [-112.213269704, 27.204602733], + [-112.37223815, 27.563218917], + [-112.77137824, 27.861994328], + [-112.903436324, 28.474988246], + [-113.102530689, 28.50457298], + [-113.196445278, 28.791939111], + [-113.34708699, 28.799673729], + [-113.637853728, 29.28373536], + [-114.534485995, 29.968121544], + [-114.668870598, 30.198252357], + [-114.631252731, 30.419917607], + [-114.721695752, 30.936926288], + [-114.891102218, 31.15802457], + [-114.805810107, 31.819820122], + [-114.271475684, 31.543405878], + [-113.972361083, 31.629894441], + [-113.638093455, 31.477325156], + [-113.6223715, 31.326951263], + [-113.101509255, 31.189443841], + [-113.12683299, 30.810476777], + [-112.775871346, 30.22572556], + [-112.747566114, 29.916561257], + [-112.256050316, 29.326945954], + [-112.149948908, 28.989159748], + [-111.492016, 28.387058196], + [-111.077217457, 27.936148828], + [-110.578104025, 27.882357704], + [-110.626074102, 27.618482847], + [-110.522225985, 27.290907355], + [-109.919540132, 27.065073285], + [-109.837726201, 26.771350268], + [-109.52545474, 26.760137225], + [-109.216133544, 26.333941841], + [-109.445866687, 25.957160909], + [-109.428731389, 25.819475972], + [-108.887736782, 25.568949556], + [-108.652110441, 25.344172506], + [-108.04638113, 25.062235489], + [-107.999163395, 24.652871101], + [-107.111950092, 24.056451361], + [-106.386811775, 23.177746802], + [-105.847713828, 22.685198123], + [-105.686333531, 22.379039483], + [-105.638759729, 21.979278489], + [-105.444864836, 21.636644226], + [-105.187833938, 21.45968672], + [-105.241544014, 21.051257941], + [-105.453869358, 20.870665127], + [-105.232958285, 20.615433297], + [-105.694275218, 20.409694976], + [-105.548632516, 20.09502128], + [-105.031515505, 19.389122252], + [-104.700757345, 19.179923138], + [-104.310080246, 19.084735001], + [-103.805230048, 18.750493787], + [-103.491759729, 18.32952376], + [-102.186374308, 17.915052054], + [-101.809243659, 17.887460466], + [-101.642932107, 17.667275513], + [-101.057970546, 17.274652951], + [-99.96140092, 16.894948588], + [-99.672983376, 16.701607594], + [-98.906375044, 16.534520484], + [-98.569118518, 16.325257145], + [-98.204272844, 16.2285446], + [-97.766992737, 15.976341207], + [-97.274047389, 15.938656296], + [-96.555252427, 15.658766448], + [-95.435617037, 15.976096407], + [-94.866206659, 16.432631705], + [-94.699761607, 16.209910335], + [-93.89833911, 16.083716687], + [-93.906780636, 15.97940793], + [-93.335351085, 15.599505196], + [-92.220236314, 14.536805152], + [-92.074705575, 15.089259225], + [-92.210596348, 15.261423482], + [-91.731384147, 16.074020363], + [-90.44204187, 16.074256897], + [-90.417543396, 16.422987835], + [-90.64563778, 16.517452403], + [-90.803295848, 16.795231396], + [-91.067180679, 16.901246329], + [-91.264726288, 17.168226467], + [-90.987460023, 17.251392669], + [-90.987639511, 17.815473446], + [-89.146888732, 17.814586639], + [-88.857937985, 17.924198107], + [-88.51761409, 18.463465209], + [-88.316290583, 18.488474] + ] + ], + [ + [ + [-112.328570893, 29.220139502], + [-112.47751905, 29.167428185], + [-112.572834023, 28.868471051], + [-112.309705776, 28.747013966], + [-112.202367016, 29.01490454], + [-112.328570893, 29.220139502] + ] + ], + [ + [ + [-113.503129569, 29.535345744], + [-113.593930874, 29.437584035], + [-113.115839771, 28.987051319], + [-113.183177899, 29.28819783], + [-113.370693511, 29.311112574], + [-113.503129569, 29.535345744] + ] + ] + ] + }, + "properties": { + "id": "068d8bf3-9e3d-4489-8eab-b4029748a716", + "code": "MEX", + "name": "México", + "abbreviation": "C-MEX", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [11.757551193, -17.252080917], + [11.735972404, -17.584861756], + [11.832361221, -18.094028472], + [12.03374958, -18.500692368], + [12.32013893, -18.73402977], + [12.566249848, -19.084304809], + [13.05458355, -20.072639466], + [13.195972443, -20.2131958], + [13.413750648, -20.875139236], + [14.063751, -21.866249], + [14.392361, -22.282364], + [14.539305686, -22.898471832], + [14.402359962, -23.012638092], + [14.498194695, -23.311805726], + [14.45014, -24.005695], + [14.876527, -25.083471], + [14.801528, -25.30125], + [14.826806, -25.748751], + [15.094584, -26.407639], + [15.080417, -26.654861], + [15.238472, -26.963472], + [15.294029, -27.322083], + [15.679583, -27.952915], + [16.45813, -28.636805], + [16.73399, -28.494261], + [16.754579545, -28.272560118], + [17.082199097, -28.032949448], + [17.41403969, -28.37603967], + [17.410549, -28.71348], + [17.92565, -28.768841001], + [18.19383, -28.91527], + [18.728670119, -28.831699371], + [19.11829, -28.96944], + [19.54847908, -28.540840149], + [19.999160766, -28.427820206], + [20.000228881, -24.766942978], + [19.999998093, -22.001777649], + [21.001741409, -22.003839493], + [20.998825074, -18.317876816], + [21.468940734, -18.318029404], + [22.98841095, -18.018289566], + [23.296621322, -17.99752426], + [23.612859726, -18.504049301], + [24.201080322, -18.016550064], + [24.575153351, -18.065099717], + [24.804834366, -17.860858916], + [25.265507709, -17.78990663], + [25.267707964, -17.782541854], + [25.040837939, -17.584176287], + [24.701937939, -17.493276287], + [24.224937928, -17.471576287], + [23.440829367, -17.635094307], + [21.433547973, -18.024074554], + [21.219751357, -17.932115555], + [20.812007905, -18.040735245], + [20.2483387, -17.893465042], + [18.89899063, -17.819267272], + [18.422714232, -17.394428252], + [14.214320183, -17.384059906], + [13.956889152, -17.433372497], + [13.510655404, -17.135110855], + [13.460853576, -17.013067244], + [12.992523193, -16.981487274], + [12.604594258, -17.229342106], + [12.167506218, -17.158584595], + [11.757551193, -17.252080917] + ] + ] + }, + "properties": { + "id": "1f6398c8-4802-425b-a601-e6361e61655c", + "code": "NAM", + "name": "Namibia", + "abbreviation": "C-NAM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [166.927444459, -0.553635], + [166.959335328, -0.517763972], + [166.912216186, -0.523055971], + [166.927444459, -0.553635] + ] + ] + }, + "properties": { + "id": "b874b6b6-d00f-4a86-903a-a4c35dce3330", + "code": "NRU", + "name": "Nauru", + "abbreviation": "C-NRU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [81.018875122, 30.236837387], + [80.605339051, 29.958717346], + [80.243347169, 29.411586761], + [80.274406434, 29.144750595], + [80.060142517, 28.916316985], + [80.373321534, 28.62902069], + [80.716300964, 28.567897796], + [81.212418, 28.360516], + [81.322411, 28.197168], + [81.904022217, 27.853683471], + [82.072883607, 27.922525407], + [82.450714112, 27.67861557], + [82.701217651, 27.721824647], + [82.73700714, 27.503101348], + [83.390930175, 27.479490281], + [83.833221435, 27.369508743], + [84.110717773, 27.521514893], + [84.293411254, 27.385042191], + [84.624473572, 27.336078644], + [84.644851685, 27.047246934], + [85.191314697, 26.869815827], + [85.336318969, 26.741415024], + [85.626220977, 26.87341498], + [85.85331726, 26.609516145], + [86.310241699, 26.61964035], + [86.835800171, 26.438697816], + [87.343414307, 26.347515106], + [87.794944893, 26.468524937], + [88.097404, 26.437443], + [88.190498352, 26.771411896], + [88.009925842, 27.142959595], + [88.129981995, 27.881515503], + [87.859519959, 27.94771576], + [87.726615907, 27.805114745], + [87.128837585, 27.833919525], + [87.041618348, 27.950115205], + [86.566123962, 28.108438491], + [86.444831848, 27.905500412], + [86.06741333, 27.899515151], + [85.750267029, 28.242406846], + [85.11038208, 28.346796035], + [85.19985962, 28.627033234], + [84.859313965, 28.570314407], + [84.222602844, 28.915599824], + [84.250038147, 29.037136079], + [83.964813232, 29.331315994], + [83.635505676, 29.158428193], + [83.220184326, 29.605421066], + [82.829093933, 29.689697265], + [82.698730469, 29.855230332], + [81.992111207, 30.321130754], + [81.428161621, 30.421175004], + [81.220863342, 30.007465363], + [81.018875122, 30.236837387] + ] + ] + }, + "properties": { + "id": "d96f8b82-0568-46fa-8382-1a163fc0b251", + "code": "NPL", + "name": "Nepal", + "abbreviation": "C-NPL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [6.036703586, 50.723491668], + [6.072657108, 51.242588043], + [6.205219745, 51.399517059], + [6.055318833, 51.852569581], + [6.407779694, 51.828090669], + [7.072173595, 52.352268219], + [6.697720062, 52.48634338], + [6.743166923, 52.645790101], + [7.054698943, 52.644401551], + [7.212802409, 53.010959625], + [7.210575105, 53.236904145], + [6.816945, 53.463196], + [5.86916685, 53.382083893], + [4.876945018, 52.88847351], + [4.719167232, 52.951526642], + [4.556388854, 52.425971985], + [4.068055153, 51.85180664], + [3.7075, 51.729305], + [3.437500001, 51.540974], + [3.811389924, 51.385692596], + [4.221158028, 51.37612915], + [4.75214386, 51.497524261], + [5.136709213, 51.315532684], + [5.834125043, 51.168460847], + [5.691102028, 50.761138917], + [6.036703586, 50.723491668] + ] + ], + [ + [ + [4.216015817, 51.370239257], + [3.360782249, 51.367637642], + [3.902096987, 51.198947908], + [4.216015817, 51.370239257] + ] + ] + ] + }, + "properties": { + "id": "01902b87-aabf-4b46-9b69-63c89c166e85", + "code": "NLD", + "name": "Netherlands", + "abbreviation": "C-NLD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [166.49556, -22.232222], + [166.78334, -22.390835], + [167.02417, -22.276945], + [166.886383, -22.043333], + [166.687943, -21.986719], + [166.409912, -21.699713], + [165.630005, -21.264723], + [165.263428, -20.793907], + [164.848022, -20.612347], + [164.503097533, -20.298866272], + [164.169983, -20.233992], + [164.176437, -20.485327], + [164.462555, -20.848629], + [165.287445, -21.573559], + [166.147522, -21.962402], + [166.219452, -22.144444], + [166.49556, -22.232222] + ] + ], + [ + [ + [167.197845, -20.680269], + [167.054001, -20.985458], + [167.339996, -21.183889], + [167.458054, -21.052778], + [167.197845, -20.680269] + ] + ], + [ + [ + [167.97583, -21.348612], + [167.798889, -21.383333], + [167.979721, -21.661388], + [168.132782, -21.445276], + [167.97583, -21.348612] + ] + ] + ] + }, + "properties": { + "id": "bab44793-1e32-4319-b894-633615eaa249", + "code": "NCL", + "name": "New Caledonia", + "abbreviation": "C-NCL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [167.913116, -44.671185], + [167.749817, -44.581112], + [167.24884, -44.90218], + [166.842285, -45.276684], + [166.680649, -45.522709], + [166.73259, -45.728348], + [166.647034, -46.194088], + [167.217133, -46.262524], + [167.533218, -46.162388], + [167.783005, -46.388866], + [168.064941, -46.339298], + [168.26564, -46.493935], + [168.846725, -46.660732], + [169.360657, -46.637104], + [169.776123, -46.469002], + [169.798096, -46.354698], + [170.168564, -46.154541], + [170.34201, -45.942745], + [170.739227, -45.879276], + [170.571274, -45.721889], + [170.831314, -45.473431], + [170.831467, -45.305561], + [171.101669, -45.001862], + [171.15918, -44.627833999], + [171.352340699, -44.280597686], + [171.614822388, -44.131828307], + [172.353378296, -43.859703063], + [172.997711, -43.887375], + [173.124023, -43.738075], + [172.726517, -43.525356], + [172.81690979, -43.13325882], + [173.239532471, -42.954284668], + [173.594741821, -42.428356171], + [173.939880371, -42.158241271], + [174.274979, -41.742981], + [174.029053, -41.453552], + [174.200531, -41.172703], + [174.163437, -40.969677], + [173.799118, -41.162842], + [173.849686, -40.926929], + [173.203873, -41.330276], + [173.009537, -41.14378], + [173.065491, -40.878357], + [172.80246, -40.818054], + [172.642624, -40.50806], + [172.100098, -40.896], + [172.063309, -41.384216], + [171.857925, -41.624512], + [171.466156, -41.746387], + [171.304550172, -42.267253876], + [171.051285, -42.65044], + [170.721069, -42.930035], + [170.260864, -43.107822], + [169.591599, -43.599041], + [169.209381, -43.719299], + [168.836075, -43.95607], + [168.389542, -44.002506], + [168.097519, -44.327164], + [167.872681, -44.434273], + [167.913116, -44.671185] + ] + ], + [ + [ + [174.786774, -41.264675], + [174.915878, -41.436577], + [175.216735839, -41.431575775], + [175.429626465, -41.572307587], + [175.811813354, -41.359714508], + [176.062454224, -41.131015778], + [176.309814452, -40.716312408], + [176.622650147, -40.49040985], + [177.005325, -39.841152], + [176.873138427, -39.456344605], + [177.045792, -39.194225], + [177.259155, -39.100662], + [177.88707, -39.031628], + [177.950348, -38.764778], + [178.346725, -38.416084], + [178.339935, -38.004948], + [178.549728, -37.687328], + [178.048233, -37.542103], + [177.731598, -37.678417], + [177.546783, -37.907581], + [177.160568, -37.989845], + [176.736145, -37.879597], + [175.928055, -37.583672], + [175.941985999, -37.345284], + [175.781189, -36.693546], + [175.614777, -36.754417], + [175.409973, -36.470554], + [175.544891, -37.157333], + [175.343796, -37.209450001], + [175.283325, -36.988506], + [174.813812, -36.826981], + [174.700714, -36.594437], + [174.84761, -36.377693], + [174.460144, -35.914165], + [174.521744, -35.568119], + [174.293045, -35.235821], + [174.115906, -35.303528], + [173.938324, -35.052177], + [173.562714, -34.921623], + [173.433975, -34.985928], + [173.025131, -34.653519], + [173.014435, -34.424137], + [172.660934, -34.477726], + [173.087479, -34.900742], + [173.054276, -35.191353], + [173.983704, -36.233746], + [174.040634, -36.392918], + [174.39418, -36.389038], + [174.493774, -37.052605], + [174.682785, -37.16766], + [174.87851, -37.959309], + [174.680740357, -38.114383697], + [174.559952, -38.855915], + [173.91124, -39.120087], + [173.751663209, -39.281101228], + [173.915725707, -39.520290374], + [174.201873778, -39.588165284], + [174.558547974, -39.817302704], + [174.947662353, -39.911254882], + [175.162490845, -40.107124327], + [175.180816651, -40.597503661], + [174.786774, -41.264675] + ] + ], + [ + [ + [168.094498, -46.972614], + [167.974045, -46.722744], + [167.704117, -46.75444], + [167.759033, -46.937084], + [167.559677, -47.09058], + [167.813324, -47.192028], + [168.109711, -47.115761], + [168.094498, -46.972614] + ] + ], + [ + [ + [166.185562, -50.516388], + [165.877579, -50.769611], + [166.19014, -50.865387], + [166.185562, -50.516388] + ] + ], + [ + [ + [-176.625076, -43.694023], + [-176.578033, -44.130848], + [-176.358276, -44.058533], + [-176.625076, -43.694023] + ] + ] + ] + }, + "properties": { + "id": "1c90cea3-d99b-4ccd-b953-e6d59c5b3dcb", + "code": "NZL", + "name": "New Zealand", + "abbreviation": "C-NZL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-83.693022779, 10.937869285], + [-83.873192, 11.295288], + [-83.647362, 11.597082], + [-83.765137, 11.951527], + [-83.618195, 12.35236], + [-83.491249, 12.393193], + [-83.569305, 13.232084], + [-83.456871, 13.921805], + [-83.205696, 14.303193], + [-83.303749084, 14.782361031], + [-83.147117605, 14.991808973], + [-83.506614685, 14.998771667], + [-83.851472523, 14.766824124], + [-84.469063, 14.614528], + [-84.903411866, 14.807711601], + [-85.405273438, 14.124769212], + [-85.901016235, 13.899938584], + [-86.092407226, 14.063927651], + [-86.352073669, 13.759555818], + [-86.76284027, 13.773123741], + [-86.706542969, 13.295379639], + [-86.907913366, 13.256347016], + [-86.958984376, 13.032221793], + [-87.311523438, 12.99064827], + [-87.690971, 12.91236], + [-86.777641, 12.202083], + [-86.517364502, 11.775416375], + [-85.693022, 11.078864], + [-85.609820571, 11.219757893], + [-84.910777, 10.943803], + [-84.680368088, 11.084493753], + [-83.93912196, 10.72180668], + [-83.693022779, 10.937869285] + ] + ] + }, + "properties": { + "id": "0b54d6f1-5769-484d-85f7-225a79501c5a", + "code": "NIC", + "name": "Nicaragua", + "abbreviation": "C-NIC", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [4.242887021, 19.136716843], + [4.241202832, 16.987697601], + [4.076756001, 16.912309646], + [4.076467038, 16.320419311], + [3.872142076, 15.691880226], + [3.538172006, 15.488309861], + [3.527507066, 15.341489791], + [2.628789901, 15.367120743], + [1.324030041, 15.265146256], + [0.973188996, 14.978949548], + [0.229350001, 14.989670753], + [0.166250006, 14.533438682], + [0.403759987, 14.249659539], + [0.398788006, 14.027869224], + [0.635519028, 13.693430902], + [0.989960015, 13.576399803], + [0.997500003, 12.999650002], + [1.123366833, 12.999508858], + [1.576050043, 12.633138657], + [2.160629988, 12.687950134], + [2.271229983, 12.467830659], + [2.066420078, 12.350940704], + [2.405400038, 11.901610374], + [2.385479927, 12.235549927], + [2.79459405, 12.418351173], + [3.013609886, 12.266388895], + [3.302057982, 11.8941288], + [3.605076074, 11.696969987], + [3.642555952, 12.520148278], + [4.096078872, 12.995821953], + [4.13045311, 13.472638131], + [4.464822768, 13.703294754], + [4.870658875, 13.782539368], + [5.270487786, 13.746100425], + [5.526512146, 13.892009735], + [6.149414062, 13.642833711], + [6.43363285, 13.591984748], + [6.928008079, 12.989852905], + [7.426324845, 13.11047554], + [7.804233073, 13.334292413], + [8.067596436, 13.302456856], + [8.415629387, 13.054848671], + [8.956508636, 12.839921952], + [9.650238991, 12.803606988], + [9.996533393, 13.163274764], + [10.654708862, 13.35411644], + [11.395575523, 13.37007904], + [11.875433922, 13.249657632], + [12.104241371, 13.093460083], + [12.480481148, 13.064720154], + [12.589188575, 13.277810096], + [12.877059937, 13.497050285], + [13.208338738, 13.526625633], + [13.341100692, 13.710021019], + [13.634547235, 13.710688591], + [13.485630036, 14.358268738], + [13.696022033, 14.551117898], + [13.789679527, 14.863208772], + [14.384760857, 15.73155117], + [15.505545616, 16.897871017], + [15.593798637, 18.731866837], + [15.75355053, 19.947784424], + [15.995641709, 20.348470687], + [15.590099335, 20.774469377], + [15.625590324, 20.96323967], + [15.198430062, 21.491306305], + [15.191865922, 21.989744186], + [14.995869636, 23.001890182], + [14.189322471, 22.644483567], + [13.680399896, 23.072240829], + [13.397974969, 23.217527389], + [11.979550363, 23.525030136], + [9.575286866, 22.129539489], + [7.445679189, 20.842470168], + [7.160675049, 20.619380952], + [5.817081929, 19.437709809], + [4.242887021, 19.136716843] + ] + ] + }, + "properties": { + "id": "293a55e4-59a3-4009-80e8-38ca95497595", + "code": "NER", + "name": "Niger", + "abbreviation": "C-NER", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [2.709382057, 6.375693798], + [3.947082999, 6.433473001], + [4.400972844, 6.360138894], + [4.804029, 6.075694], + [5.043472, 5.784306], + [5.290695, 5.916806], + [5.355693, 5.696806], + [5.726805, 5.506806], + [5.464028, 5.347362], + [5.376527, 5.125971], + [5.742638, 4.485418], + [5.978194, 4.310973], + [6.444304, 4.315973], + [6.832639, 4.405416], + [6.759584, 4.770417], + [7.00736, 4.774305], + [7.210418, 4.628472], + [7.655416, 4.51014], + [8.265138, 4.533471], + [8.355137825, 4.785416127], + [8.52579975, 4.734583855], + [8.818734169, 5.185620785], + [8.920332908, 5.564700603], + [8.840985297, 5.819804192], + [9.265694619, 6.184167861], + [9.467670441, 6.456195831], + [9.706345557, 6.515554429], + [9.863946915, 6.776453495], + [10.153351784, 7.038451672], + [10.217097283, 6.888836861], + [10.528110504, 6.926647186], + [10.597702026, 7.077906609], + [10.841154098, 6.939635754], + [11.099142075, 6.521626472], + [11.423880577, 6.530172825], + [11.564294814, 6.88794899], + [12.03434372, 7.521106719], + [12.031183242, 7.726894855], + [12.221256256, 8.002602577], + [12.238751411, 8.339077949], + [12.785830497, 8.743083], + [12.898114204, 9.11692524], + [12.871006966, 9.391368866], + [13.207711219, 9.557841301], + [13.247768403, 10.035773277], + [13.436149598, 10.137202262], + [13.547357559, 10.621170043], + [13.708013535, 10.972044945], + [13.980623244, 11.318759919], + [14.194681167, 11.252654076], + [14.614504815, 11.512958527], + [14.676218987, 12.159849167], + [14.466317176, 12.359292985], + [14.224431039, 12.361770629], + [14.085529327, 13.077386857], + [13.634547235, 13.710688591], + [13.341100692, 13.710021019], + [13.208338738, 13.526625633], + [12.877059937, 13.497050285], + [12.589188575, 13.277810096], + [12.480481148, 13.064720154], + [12.104241371, 13.093460083], + [11.875433922, 13.249657632], + [11.395575523, 13.37007904], + [10.654708862, 13.35411644], + [9.996533393, 13.163274764], + [9.650238991, 12.803606988], + [8.956508636, 12.839921952], + [8.415629387, 13.054848671], + [8.067596436, 13.302456856], + [7.804233073, 13.334292413], + [7.426324845, 13.11047554], + [6.928008079, 12.989852905], + [6.43363285, 13.591984748], + [6.149414062, 13.642833711], + [5.526512146, 13.892009735], + [5.270487786, 13.746100425], + [4.870658875, 13.782539368], + [4.464822768, 13.703294754], + [4.13045311, 13.472638131], + [4.096078872, 12.995821953], + [3.642555952, 12.520148278], + [3.605076074, 11.696969987], + [3.496037007, 11.292149545], + [3.691904068, 11.12815857], + [3.840980053, 10.704918862], + [3.786003112, 10.405379296], + [3.529059887, 9.861886979], + [3.356626987, 9.825662614], + [3.130999089, 9.440149307], + [3.088170052, 9.101576806], + [2.780891894, 9.0651083], + [2.728413104, 8.772684097], + [2.754101038, 8.211312294], + [2.675815104, 7.89320612], + [2.792602062, 7.041276932], + [2.709382057, 6.375693798] + ] + ] + }, + "properties": { + "id": "91bf590c-3d5d-4c05-98d6-359b162a65d0", + "code": "NGA", + "name": "Nigeria", + "abbreviation": "C-NGA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-169.850631715, -19.147567748], + [-169.773605348, -19.059444428], + [-169.878890991, -18.958610534], + [-169.949172975, -19.078332901], + [-169.850631715, -19.147567748] + ] + ] + }, + "properties": { + "id": "23d9532d-9486-48e4-9a93-87fdadb5cee8", + "code": "NIU", + "name": "Niue", + "abbreviation": "C-NIU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [167.925003, -28.99502], + [167.917496, -29.034447], + [167.995697, -29.02696], + [167.925003, -28.99502] + ] + ] + }, + "properties": { + "id": "e5a61e39-c356-4f58-96ca-00c5fbda990f", + "code": "NFK", + "name": "Norfolk Island", + "abbreviation": "C-NFK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [124.220642, 39.914864], + [124.648193, 39.679863], + [125.218193054, 39.606803894], + [125.397636413, 39.263198852], + [125.032364, 38.589027], + [124.71875, 38.137089], + [124.980141, 37.924866], + [125.300415, 37.881531], + [125.31292, 37.715977], + [125.617363, 37.763477], + [125.56652832, 38.029308318], + [125.809029, 37.994865], + [125.909027, 37.813198], + [126.390136718, 37.890419007], + [126.543949242, 37.781810761], + [126.667114257, 37.785064698], + [126.975593999, 38.199679999], + [127.139442444, 38.307243347], + [128.137710571, 38.328300476], + [128.358484762, 38.611772897], + [127.760696, 39.112644], + [127.369583129, 39.220695496], + [127.568473817, 39.605415344], + [127.501251221, 39.731254578], + [127.873192, 39.898476], + [127.994308, 40.060421], + [128.318192, 40.028751], + [129.152359009, 40.547641755], + [129.20791626, 40.689029693], + [129.730423, 40.857643], + [129.806533813, 41.382919311], + [129.649581909, 41.495693208], + [129.909302, 41.915699], + [130.296249, 42.239586], + [130.674393, 42.284584], + [130.614608676, 42.42395806], + [130.248245239, 42.71139145], + [130.265823365, 42.886070252], + [129.89653015, 43.001998902], + [129.714370727, 42.426753999], + [129.234985351, 42.374160767], + [129.213943482, 42.211853027], + [128.955169679, 42.075618745], + [128.064025878, 41.965419769], + [128.313812255, 41.583030701], + [128.102462769, 41.363018036], + [127.408706665, 41.455421448], + [127.159362793, 41.539051057], + [126.926170349, 41.808521272], + [126.584831239, 41.56418991], + [126.287193299, 41.159488679], + [126.006347657, 40.891548158], + [125.774620056, 40.88679123], + [125.014091493, 40.532649993], + [124.385841369, 40.123088836], + [124.220642, 39.914864] + ] + ] + }, + "properties": { + "id": "8cba2b3e-b182-4675-a35b-cb876dd054cd", + "code": "PRK", + "name": "North Korea", + "abbreviation": "C-PRK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.991338731, 40.858062744], + [21.594812394, 40.871620179], + [21.907794953, 41.093132019], + [22.592737199, 41.119709015], + [22.933700561, 41.343158723], + [23.0056324, 41.70438385], + [22.839433669, 42.000568391], + [22.345737457, 42.304096222], + [21.94235611, 42.32038498], + [21.59392166, 42.247520448], + [21.239177704, 42.083351135], + [21.094049454, 42.197029114], + [20.591096878, 41.878536225], + [20.455766677, 41.524791719], + [20.737983704, 40.912139893], + [20.991338731, 40.858062744] + ] + ] + }, + "properties": { + "id": "f007a045-7160-4db9-b566-3c71cb843e95", + "code": "MKD", + "name": "North Macedonia", + "abbreviation": "C-MKD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [33.906524816, 35.069122147], + [34.004291534, 35.065361023], + [33.904583, 35.253750001], + [34.556526001, 35.691807001], + [34.125694, 35.505417], + [33.427917, 35.332085], + [32.994305, 35.368195], + [32.722362518, 35.180473329], + [32.841957092, 35.079792023], + [33.400318146, 35.197750091], + [33.67452139, 35.043880133], + [33.906524816, 35.069122147] + ] + ] + }, + "properties": { + "id": "9deef05f-4565-439e-9446-89a8d8423d65", + "code": "ZNC", + "name": "Northern Cyprus", + "abbreviation": "C-ZNC", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [145.816666, 15.287778], + [145.715271, 15.217223], + [145.751663, 15.160003], + [145.816666, 15.287778] + ] + ] + }, + "properties": { + "id": "8054df4a-2eca-4ab9-a2bd-b5b0e5f5b7e9", + "code": "MNP", + "name": "Northern Mariana Islands", + "abbreviation": "C-MNP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [28.924753394, 69.056725056], + [29.30975, 69.182114], + [29.314947, 69.30278], + [29.986135, 69.413345], + [30.145369, 69.671532], + [30.526632, 69.542526], + [30.945555, 69.58622], + [30.842518, 69.791664], + [30.41823, 69.773437], + [30.168751, 69.881248], + [28.706249, 70.104164], + [29.029167, 70.125], + [29.825001, 70.0625], + [30.289583, 70.120834], + [30.514584, 70.239586], + [31.045834, 70.28125], + [30.933332, 70.447914], + [30.43385315, 70.551567077], + [30.010416031, 70.708335876], + [29.388021, 70.697395], + [29.249479, 70.844269], + [28.754168, 70.852081], + [28.402082, 70.543747], + [28.23073, 70.788017], + [28.549479, 70.976562], + [28.245832, 71.087502], + [27.820833, 71.03125], + [27.737499, 71.10833], + [27.289583, 71.041664], + [27.122917, 70.916664], + [27.53125, 70.866669], + [27.135416, 70.747917], + [26.716667, 70.414581], + [26.512501, 70.435417], + [26.689062, 70.748436], + [26.677084, 70.96875], + [26.383333, 70.879166], + [25.986979, 70.610939], + [25.447916, 70.366669], + [25.486979, 70.269272], + [25.1, 70.070831], + [25.222918, 70.525002], + [25.895834, 70.85833], + [25.551563, 70.91198], + [25.268749, 70.810417], + [24.960417, 70.972916], + [24.620312, 70.993233], + [24.597397, 70.783852], + [24.356251, 70.875], + [24.11875, 70.53125], + [23.796354, 70.478645], + [23.202604, 70.202599], + [23.133854, 69.966148], + [22.960417, 70.197914], + [21.952084, 70.32708], + [21.725, 70.23333], + [21.485937, 70.309898], + [21.194271, 70.223434], + [21.854166, 70.010414], + [21.870832, 69.84375], + [21.441668, 70.01458], + [21.275, 69.887497], + [20.858334, 69.914581], + [20.526562, 69.702599], + [20.256771087, 69.41822815], + [20.378647, 69.860939], + [20.158333, 69.941666], + [19.76927, 69.679687], + [19.728645, 69.805733], + [19.096354, 69.734901], + [18.833334, 69.5625], + [18.302084, 69.479164], + [17.985416, 69.310417], + [18.054166795, 69.150001526], + [17.538021, 69.028648], + [17.622917, 68.89167], + [17.287500382, 68.735420227], + [16.614584, 68.643753], + [16.533333, 68.5625], + [16.475, 68.543747], + [16.179688, 68.518234], + [16.077604, 68.416145], + [17.070312, 68.501564], + [17.495832, 68.464584], + [17.029167, 68.356247], + [16.758333, 68.42083], + [16.277082, 68.375], + [16.447395, 68.223434], + [16.218229, 67.972397], + [15.952084, 68.26667], + [15.80625, 68.09375], + [15.622916, 68.189583], + [15.290104, 68.02552], + [15.68125, 67.960419], + [15.00625, 67.904167], + [14.752084, 67.816666], + [14.916667, 67.658333], + [15.435416, 67.808334], + [15.09375, 67.587502], + [14.652604, 67.478645], + [14.325, 67.254166], + [15.170312882, 67.326560973], + [15.164583206, 67.254165651], + [14.350521, 67.2099], + [14.2375, 66.997917], + [14.0375, 67.07917], + [13.279166, 66.73333], + [13.133854, 66.259895], + [12.933333, 66.020836], + [12.291667, 65.587502], + [12.077084, 65.208336], + [12.458333, 65.368752], + [12.579166, 65.129166], + [12.222917, 65.214584], + [11.322917, 64.88958], + [11.153646, 64.971352], + [10.764584, 64.92083], + [11.391666, 64.75], + [11.34375, 64.572914], + [11.077084, 64.652084], + [10.714063, 64.548439], + [10.039583, 64.060417], + [10.054167, 63.918751], + [9.714583, 63.870834], + [10.110416, 63.495834], + [10.920833587, 63.733333587], + [10.9625, 63.90625], + [11.439063071, 63.828643799], + [10.671354, 63.582809], + [10.895312, 63.448441], + [9.980729102, 63.441143036], + [9.751563, 63.645309], + [9.154166, 63.393749], + [8.820833, 63.433334], + [8.410417, 63.325001], + [8.547916, 63.141666], + [8.467187, 62.84219], + [8.029166, 63.108334], + [7.835417, 62.950000999], + [7.583333, 63.054165], + [7.097917, 62.989582], + [6.985416, 62.724998], + [7.447917, 62.756248], + [7.359896, 62.599476], + [7.08125019, 62.652084351], + [6.3375, 62.612499], + [6.716667, 62.491665], + [5.9375, 62.222916], + [5.591667, 62.158333], + [5.304167, 61.820835], + [4.973437, 61.722393], + [5.345833, 61.554165], + [5.075, 61.450001], + [4.95625, 61.275002], + [5.152604, 61.08073], + [5.202083, 60.833332], + [5.272917, 60.820835], + [4.972917, 60.731251], + [5.302083492, 60.525001527], + [5.245833396, 60.243751526], + [5.58125, 60.075001], + [5.535834, 59.893471], + [5.893229, 60.01302], + [6.03125, 60.272915], + [6.241667, 60.295834], + [5.778024, 59.831249], + [5.246944, 59.556805], + [5.348056, 59.27264], + [5.946388, 59.357639], + [6.154722, 59.260418], + [5.848055, 58.932083], + [5.578610999, 59.035973], + [5.501389, 58.765972], + [5.661945, 58.552917], + [6.393612, 58.270416], + [6.666944, 58.238472], + [6.624167, 58.071804], + [7.666944, 58.013195], + [7.985278, 58.142082], + [8.210833, 58.108196], + [9.621946, 58.933746], + [9.695277, 59.097637], + [9.974722, 58.964584], + [10.4375, 59.16375], + [10.525279, 59.320137], + [10.543612, 59.88736], + [10.729722, 59.232639], + [11.219166, 59.086342], + [11.464693, 58.890198], + [11.653469, 58.907196], + [11.815518379, 59.32925415], + [11.693858146, 59.606498719], + [11.941164971, 59.694381715], + [11.879952431, 59.871490479], + [12.182251931, 59.889839172], + [12.462190629, 60.046268464], + [12.59488, 60.541663999], + [12.231455961, 61.018287777], + [12.688180924, 61.061740876], + [12.852286339, 61.368545533], + [12.568354606, 61.57032013], + [12.14113617, 61.718437196], + [12.295542717, 62.283195495], + [12.059845925, 62.622909546], + [12.216041565, 63.002391816], + [11.987943649, 63.252304077], + [12.155960082, 63.596260071], + [12.697851182, 63.981346131], + [13.257819176, 64.0936203], + [13.977729798, 64.011589051], + [14.156627654, 64.190147401], + [14.09589386, 64.476539611], + [13.677269, 64.613113], + [14.512542725, 65.32219696], + [14.618681908, 65.808624269], + [14.516809464, 66.13457489], + [15.036372, 66.151505], + [15.480572653, 66.281852991], + [15.389968929, 66.473189997], + [16.030618668, 66.9092865], + [16.388906479, 67.043693543], + [16.398286819, 67.215156555], + [16.109629, 67.425087], + [16.578447, 67.665138], + [16.733610152, 67.911590577], + [17.270755767, 68.114746094], + [17.909151077, 67.970481872], + [18.15452385, 68.194000244], + [18.126932145, 68.536102294], + [18.997116088, 68.516189576], + [19.927127838, 68.356903077], + [20.334260941, 68.793495178], + [20.062599181, 69.046081544], + [20.551206589, 69.058761598], + [20.728641509, 69.121208192], + [21.063890458, 69.03843689], + [20.99707985, 69.223571778], + [21.267240525, 69.312019348], + [21.632258981, 69.277549747], + [22.182676316, 68.956199647], + [22.36974907, 68.719413757], + [23.045257569, 68.691055298], + [23.16020012, 68.630416871], + [23.677160264, 68.706123351], + [23.970842361, 68.830650329], + [24.249141694, 68.724906921], + [24.916858673, 68.60825348], + [25.143173218, 68.791557312], + [25.769058227, 69.002952575], + [25.709070206, 69.258171082], + [25.947675704, 69.576324463], + [25.896759033, 69.673011781], + [26.454679475, 69.935172989], + [27.023665001, 69.910004], + [27.621709871, 70.077102662], + [27.980879037, 70.012123099], + [28.44310945, 69.81440719], + [29.138516977, 69.694747946], + [29.326009888, 69.4667209], + [28.842869, 69.23159], + [28.924753394, 69.056725056] + ] + ], + [ + [ + [16.262501, 68.897919], + [16.014063, 68.773438], + [15.891666, 68.96875], + [15.639584, 68.947914], + [15.266666, 68.477081], + [14.416667, 68.393753], + [14.223437, 68.166145], + [14.968229, 68.340103], + [15.639584, 68.306252], + [16.001562, 68.41198], + [16.118229, 68.545311], + [16.241667, 68.5625], + [16.514584, 68.564583], + [16.579166, 68.631248], + [16.487499, 68.856247], + [16.262501, 68.897919] + ] + ], + [ + [ + [17.805077, 69.162109], + [18.043751, 69.491669], + [17.862499, 69.581253], + [17.479687, 69.558853], + [17.104166, 69.383331], + [17.185938, 69.083855], + [17.450521, 69.195312], + [17.805077, 69.162109] + ] + ], + [ + [ + [18.732813, 69.861984], + [18.304167, 69.777084], + [18.197916, 69.518753], + [18.764063, 69.563019], + [19.055729, 69.776566], + [18.732813, 69.861984] + ] + ], + [ + [ + [22.68125, 70.550003], + [23.0625, 70.568748], + [23.497396, 70.796349], + [22.262501, 70.65625], + [22.11875, 70.48333], + [22.68125, 70.550003] + ] + ], + [ + [ + [15.03698, 68.674484], + [15.416667, 68.685417], + [15.182813, 69.013016], + [15.089583, 68.866669], + [14.608334, 68.76458], + [14.427604, 68.606766], + [15.03698, 68.674484] + ] + ], + [ + [ + [19.340103, 69.822395], + [19.674479, 69.995316], + [19.295834, 70.083336], + [18.845833, 70.025002], + [19.097918, 69.785416], + [19.340103, 69.822395] + ] + ], + [ + [ + [23.624479, 70.497398], + [23.127083, 70.54583], + [22.885937, 70.36615], + [23.195833, 70.275002], + [23.624479, 70.497398] + ] + ], + [ + [ + [25.696354, 71.155731], + [25.360416, 71.104164], + [25.549999, 70.931252], + [26.118229, 70.992187], + [25.696354, 71.155731] + ] + ], + [ + [ + [8.831771, 63.658852], + [8.35625, 63.537498], + [8.33125, 63.431252], + [9.08125, 63.504166], + [8.831771, 63.658852] + ] + ], + [ + [ + [14.163021, 68.267189], + [13.889584, 68.34375], + [13.572917, 68.285416], + [13.50625, 68.056252], + [14.163021, 68.267189] + ] + ], + [ + [ + [16.1625, 69.291664], + [15.875, 69.254166], + [15.43177, 68.986984], + [15.820833, 69.012497], + [16.1625, 69.291664] + ] + ], + [ + [ + [24.063021, 70.645317], + [23.672916, 70.745834], + [23.733854, 70.52552], + [24.063021, 70.645317] + ] + ], + [ + [ + [20.745832, 70.229164], + [20.397917, 70.058334], + [20.802084, 70.050003], + [20.745832, 70.229164] + ] + ], + [ + [ + [19.647396, 70.27552], + [19.733334, 70.058334], + [20.004168, 70.118752], + [19.647396, 70.27552] + ] + ], + [ + [ + [5.766146, 62.202606], + [6.110416412, 62.34791565], + [5.852604, 62.40781], + [5.766146, 62.202606] + ] + ] + ] + }, + "properties": { + "id": "0fd8875c-6ace-4ef2-b8b1-b2f059d281ef", + "code": "NOR", + "name": "Norway", + "abbreviation": "C-NOR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [53.082321166, 16.642362594], + [53.512359619, 16.761806489], + [54.044582367, 16.990417481], + [55.047359466, 17.02069664], + [55.264026641, 17.23819542], + [55.227638244, 17.534584046], + [55.425140381, 17.81652832], + [55.750415803, 17.90263939], + [56.319862365, 17.91708374], + [56.551250457, 18.125694275], + [56.640415193, 18.579584121], + [56.78791809, 18.739582061], + [57.309581757, 18.924304962], + [57.840973, 19.00375], + [57.683472, 19.738194], + [57.849861, 20.241249], + [58.167915, 20.604305], + [58.199306, 20.405416], + [58.444584, 20.347918], + [58.856529236, 21.068473816], + [59.348194122, 21.434305191], + [59.810138702, 22.227083207], + [59.793751, 22.53875], + [59.542641, 22.569027], + [59.292362, 22.763474], + [58.754028, 23.522917], + [58.565418, 23.636806], + [58.285137176, 23.619581222], + [57.138473511, 23.957914353], + [56.623748779, 24.489027023], + [56.345531, 24.973074], + [56.08108139, 24.743289948], + [55.960251105, 25.005985181], + [55.812599182, 24.910671234], + [55.834701538, 24.410011291], + [56.018131256, 24.066028594], + [55.484859467, 23.939989091], + [55.572658539, 23.631528854], + [55.232471465, 23.110408782], + [55.213485447, 22.702154118], + [55.666685101, 22.0000149], + [54.999999999, 20.000000001], + [51.999999999, 18.999998094], + [52.782176971, 17.349733353], + [52.712574005, 17.080316544], + [53.082321166, 16.642362594] + ] + ], + [ + [ + [56.270771027, 25.625865937], + [56.427639, 25.939306], + [56.447083, 26.222639], + [56.184029, 26.225416], + [56.086029052, 26.050539017], + [56.270771027, 25.625865937] + ] + ], + [ + [ + [58.901249, 20.696251], + [58.633751, 20.343195], + [58.636528, 20.160694], + [58.962917, 20.51597], + [58.901249, 20.696251] + ] + ] + ] + }, + "properties": { + "id": "6712d593-967b-47b3-9f05-aee800fe5b80", + "code": "OMN", + "name": "Oman", + "abbreviation": "C-OMN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [60.89943695, 29.837495804], + [61.37260437, 29.348672867], + [61.504318237, 29.007545472], + [61.804157257, 28.640169145], + [62.786937714, 28.281179428], + [62.855392457, 27.465137482], + [62.781478881, 27.251426697], + [63.184223176, 27.241436004], + [63.275531769, 26.864767074], + [63.169185639, 26.647294998], + [62.778697968, 26.652280807], + [62.315067291, 26.528869629], + [61.870754243, 26.246740341], + [61.68920517, 25.799165725], + [61.655613, 25.297499], + [61.576805, 25.184269], + [61.871807, 25.097918], + [62.330139, 25.150694], + [62.590416, 25.270695], + [63.488472, 25.205694], + [63.692081, 25.385693], + [64.40097, 25.236528], + [65.142914, 25.302082], + [66.285141, 25.468197], + [66.746529, 25.185696], + [66.69458, 24.894583], + [67.407364, 24.779581], + [67.300972, 24.555695], + [67.450142, 24.425695], + [67.431808, 24.089027], + [67.909584, 24.072363], + [68.114304, 23.856251], + [68.547081, 23.963186], + [68.749245, 23.962046], + [68.764122, 24.284122], + [69.199768, 24.235199], + [69.600677, 24.277847], + [70.024085999, 24.169353486], + [70.1101, 24.284897], + [70.574867, 24.420315], + [70.805763, 24.222727001], + [70.998428, 24.360571], + [71.107139769, 24.680650803], + [70.894309997, 25.144058228], + [70.674171447, 25.389320373], + [70.681137086, 25.66076088], + [70.285263061, 25.698930741], + [70.106681824, 25.924209595], + [70.167739868, 26.550743104], + [69.855552674, 26.582920074], + [69.522415161, 26.736011505], + [69.586662292, 27.177984238], + [70.01626587, 27.555995942], + [70.366165161, 28.008249284], + [70.5626297, 28.019802093], + [70.757667542, 27.717208863], + [71.658287049, 27.868930818], + [72.208847046, 28.399982453], + [72.384696961, 28.763940812], + [72.943756103, 29.029911041], + [73.271316527, 29.55696106], + [73.385398865, 29.926019669], + [73.966316224, 30.195049286], + [73.873214722, 30.383438111], + [74.553443909, 31.062601089], + [74.642066955, 31.461549758], + [74.517280579, 31.722911835], + [74.602500915, 31.886489868], + [75.239166259, 32.087150573], + [75.330421448, 32.331710816], + [75.082626344, 32.480045319], + [74.698417663, 32.484939576], + [74.650138855, 32.718410491], + [74.466056824, 32.781360626], + [74.337921142, 33.025939942], + [74.014274597, 33.198249816], + [74.185081483, 33.38351059], + [73.966461181, 33.740322114], + [74.261123656, 33.924797059], + [73.898170471, 34.032821656], + [73.960220336, 34.696681976], + [74.302780151, 34.797538757], + [75.142295837, 34.662410736], + [75.749206544, 34.515830994], + [77.156822204, 35.054698945], + [77.843078681, 35.500984191], + [77.427276612, 35.469039918], + [76.76377106, 35.66964722], + [76.555427551, 35.917655945], + [76.16899109, 35.83821869], + [75.936798095, 36.13394928], + [76.053016663, 36.237319947], + [75.918869019, 36.620479584], + [75.72970581, 36.746459962], + [75.454498276, 36.721614872], + [75.410117907, 36.934669294], + [74.821594239, 37.060298921], + [74.571556, 37.034439], + [74.029205322, 36.84624672], + [73.832992554, 36.909191133], + [73.352516175, 36.853221894], + [72.656166077, 36.849842072], + [71.657035828, 36.477924347], + [71.614257812, 36.321292877], + [71.230941772, 36.069679261], + [71.571235657, 35.721515656], + [71.690170289, 35.21439171], + [71.525493623, 34.960206986], + [71.301200867, 34.865463258], + [71.006813049, 34.461116791], + [71.169471741, 34.363609314], + [71.076286317, 34.062507629], + [70.767936706, 33.954856873], + [69.914024352, 34.023826599], + [70.004165649, 33.740234375], + [70.155033112, 33.725603104], + [70.340229035, 33.392023087], + [70.155620575, 33.197887421], + [69.589210511, 33.08392334], + [69.240699768, 32.461387635], + [69.323501588, 31.944173813], + [69.11794281, 31.703262329], + [68.804939, 31.609982], + [68.570144654, 31.827964783], + [68.168876648, 31.834236144], + [67.710716247, 31.50006485], + [67.774806976, 31.333582878], + [67.306285859, 31.182589531], + [66.902275086, 31.296169281], + [66.389030456, 30.837862969], + [66.375152587, 30.474360943], + [66.241653442, 30.055051803], + [66.266502379, 29.841995239], + [65.097137451, 29.542835236], + [64.631927489, 29.581081391], + [64.26334381, 29.503400803], + [64.140842438, 29.362118721], + [63.664894105, 29.476406098], + [62.480146407, 29.376457215], + [60.89943695, 29.837495804] + ] + ] + }, + "properties": { + "id": "000e1932-a25b-4594-8dd7-f8d3c032fd63", + "code": "PAK", + "name": "Pakistan", + "abbreviation": "C-PAK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [134.507431031, 7.478404045], + [134.595551, 7.361945], + [134.646941999, 7.629722001], + [134.507431031, 7.478404045] + ] + ] + }, + "properties": { + "id": "69ee330e-c6c0-4ac2-a1c6-5bd436e395de", + "code": "PLW", + "name": "Palau", + "abbreviation": "C-PLW", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [35.475585937, 31.488241196], + [35.555721282, 31.758476257], + [35.55973053, 32.390434265], + [35.231681823, 32.551567078], + [34.968978883, 32.214244843], + [35.026138306, 31.869983674], + [35.23241806, 31.787845613], + [34.953735351, 31.583011627], + [34.913940429, 31.349792481], + [35.475585937, 31.488241196] + ] + ], + [ + [ + [34.268009186, 31.22360611], + [34.48902893, 31.594427109], + [34.229026794, 31.334306718], + [34.268009186, 31.22360611] + ] + ] + ] + }, + "properties": { + "id": "e443cefa-3f44-4e80-96ac-343e886c2c7e", + "code": "PSE", + "name": "Palestine", + "abbreviation": "C-PSE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.360969999, 8.656805998], + [-77.546806, 8.712638], + [-78.044312, 9.245484], + [-78.575974, 9.443472], + [-78.902916, 9.42239], + [-79.621528626, 9.617082595], + [-79.917076, 9.310421], + [-80.495414733, 9.11708355], + [-80.824028014, 8.895139695], + [-81.200417, 8.787083], + [-81.519576999, 8.808749001], + [-81.769585, 8.974861], + [-82.108749, 8.931806], + [-82.564486279, 9.563861842], + [-82.827215754, 9.611233373], + [-82.934121815, 9.475080306], + [-82.934218992, 9.078669025], + [-82.712114414, 8.923196914], + [-82.915588679, 8.741304354], + [-82.831501585, 8.505536173], + [-83.047992464, 8.341606032], + [-82.892775475, 8.050566224], + [-82.829582215, 8.29681015], + [-82.269584657, 8.290416718], + [-81.804031, 8.151528], + [-81.541527, 7.767084], + [-81.203178, 7.630969], + [-81.06236267, 7.825140001], + [-80.888191, 7.204306], + [-80.437080384, 7.241808891], + [-80.049309, 7.62903], + [-80.488746643, 8.16763878], + [-79.958473205, 8.462920189], + [-79.740417, 8.84903], + [-79.285698, 9.024581], + [-78.911247, 8.925418], + [-78.527359, 8.63682], + [-78.49765, 8.44819], + [-78.156525, 8.418194], + [-78.261803001, 8.112917001], + [-78.447365, 8.070138], + [-78.29792, 7.702639], + [-77.88031, 7.220541], + [-77.794425964, 7.451959134], + [-77.524711608, 7.568700791], + [-77.13267517, 7.98251772], + [-77.442207, 8.484901], + [-77.360969999, 8.656805998] + ] + ] + }, + "properties": { + "id": "c3274332-4368-4018-b380-7b2ace1e8a7f", + "code": "PAN", + "name": "Panama", + "abbreviation": "C-PAN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [141.006118775, -9.118924141], + [141.621384, -9.211112], + [142.213547, -9.145176], + [142.638916, -9.333087], + [143.419724, -8.963889], + [143.401382, -8.753334], + [142.98584, -8.336389], + [143.698608, -8.226945], + [143.446671, -8.028888], + [143.863327, -8.047221], + [143.820358, -7.713731], + [144.142685, -7.798257], + [144.215561, -7.614167], + [144.446671, -7.581388], + [144.535828, -7.398055], + [144.903351, -7.774739], + [145.759445, -7.960555], + [146.072784, -8.095001], + [146.564575, -8.776804], + [146.638062, -9.03], + [146.900558, -9.119167], + [147.07666, -9.468333], + [147.324997, -9.540834], + [147.507781983, -9.857221604], + [147.97171, -10.161418], + [149.165222, -10.24671], + [149.425369, -10.351243], + [149.758698, -10.348827], + [150.055954, -10.472265], + [150.034576, -10.636217], + [150.696106, -10.561388], + [150.34227, -10.395868], + [150.180115, -10.091977], + [149.921951, -10.055001], + [149.760025, -9.787259], + [149.984924, -9.62624], + [149.446793, -9.609564], + [149.18222, -9.401666], + [149.305252, -9.02335], + [148.723618, -9.11], + [148.526031, -9.002664], + [148.437225, -8.680278], + [148.224167, -8.559167], + [148.131668, -8.063335], + [147.697113, -7.922452], + [147.664551, -7.791488], + [147.14505, -7.380218], + [146.962784, -6.748332], + [147.810425, -6.692865], + [147.852951, -6.432321], + [147.444656, -5.966238], + [146.997635, -5.937915], + [146.474167, -5.614999999], + [145.731949001, -5.4225], + [145.805801, -4.847602], + [145.318283, -4.383066], + [145.007782, -4.330377], + [144.856674, -4.113611], + [144.55011, -3.970805], + [144.519714, -3.809777], + [144.013062, -3.822223], + [143.449173, -3.421945], + [142.861664, -3.327778], + [142.07222, -3.061388], + [141.204788, -2.63243], + [141.000168, -2.6063], + [141.000015259, -4.776979781], + [141, -6.313278198], + [140.858093, -6.780619], + [141.019394, -6.889868], + [140.993881, -7.329677], + [141.006118775, -9.118924141] + ] + ], + [ + [ + [152.160828, -4.295698], + [151.490402, -4.21018], + [151.685532, -4.865399], + [151.357651, -4.906884], + [151.082199, -5.152463], + [150.905197, -5.482569], + [150.675827, -5.545555], + [150.412338, -5.438493], + [150.150833, -5.550834], + [150.022751, -5.280307], + [149.857101, -5.519562], + [149.209473, -5.554501], + [148.414444, -5.443158], + [148.365341, -5.749296], + [148.745987, -5.862546], + [149.065002, -6.140833], + [149.473831, -6.103118], + [149.610275, -6.291111], + [150.367783, -6.278334], + [150.788605, -6.021667], + [151.219727, -5.91111], + [151.499451, -5.68889], + [151.473053, -5.521389], + [151.815826, -5.586666], + [152.134857, -5.337709], + [151.972778, -4.972223], + [152.217468, -4.971591], + [152.365387, -4.768819], + [152.398711999, -4.324057], + [152.160828, -4.295698] + ] + ], + [ + [ + [155.893326, -6.489167], + [155.404449, -5.988056], + [155.205826, -5.866945], + [155.033203, -5.532979], + [154.762497, -5.568333], + [154.731949, -5.910556], + [155.168106, -6.277014], + [155.167816, -6.538515], + [155.339996, -6.728518], + [155.71106, -6.878052], + [155.964996, -6.6875], + [155.893326, -6.489167] + ] + ], + [ + [ + [151.550552, -2.996112], + [150.840836, -2.669999], + [151.589432, -3.160207], + [151.933334, -3.443335], + [152.34523, -3.645538], + [152.685562, -4.181438], + [152.650482, -4.459479], + [152.897873, -4.829925], + [153.059906, -4.598902], + [153.115479, -4.26938], + [152.825577, -3.935708], + [152.026642, -3.247354], + [151.550552, -2.996112] + ] + ], + [ + [ + [146.848053, -1.954722], + [146.528641, -2.132802], + [147.179367, -2.208265], + [147.296112, -2.061944], + [146.848053, -1.954722] + ] + ], + [ + [ + [150.207809, -2.369684], + [149.976227, -2.476986], + [150.171097, -2.680707], + [150.448883, -2.652222], + [150.441681, -2.477538], + [150.207809, -2.369684] + ] + ], + [ + [ + [150.497772, -9.331389], + [150.558594, -9.623934], + [150.938843, -9.656934], + [150.762497, -9.400278], + [150.497772, -9.331389] + ] + ], + [ + [ + [152.461945, -8.946944], + [152.831665, -9.262499], + [153.01445, -9.152499], + [152.78299, -9.002505], + [152.461945, -8.946944] + ] + ], + [ + [ + [147.792679, -5.464552], + [147.760666, -5.612632], + [148.032791, -5.819355], + [148.048035, -5.582787], + [147.792679, -5.464552] + ] + ], + [ + [ + [153.20813, -11.326152], + [153.353333, -11.55361], + [153.678406, -11.513248], + [153.20813, -11.326152] + ] + ], + [ + [ + [150.764862, -9.712469], + [150.964493, -10.106643], + [151.109726, -10.040833], + [150.764862, -9.712469] + ] + ] + ] + }, + "properties": { + "id": "e8cb0f8e-6037-40d9-8194-80abab6e158f", + "code": "PNG", + "name": "Papua New Guinea", + "abbreviation": "C-PNG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [112.586296, 16.083588], + [112.558632, 16.081541], + [112.527435, 16.068979], + [112.565407, 16.081676], + [112.586296, 16.083588] + ] + ] + }, + "properties": { + "id": "ba160f5d-1f85-4a47-b482-c4c8a9419ca2", + "code": "XPI", + "name": "Paracel Islands", + "abbreviation": "C-XPI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-54.595642089, -25.592119217], + [-54.262443543, -24.374458313], + [-54.283622743, -24.08297348], + [-54.675334931, -23.8135643], + [-55.230278015, -24.008590697], + [-55.44090271, -23.909488678], + [-55.534599305, -23.610954284], + [-55.53881836, -23.16299057], + [-55.682674409, -22.980436326], + [-55.626670837, -22.6186409], + [-55.860996247, -22.276325226], + [-56.207736968, -22.278108597], + [-56.402675628, -22.074739456], + [-56.830467224, -22.297666549], + [-57.98022461, -22.0855484], + [-57.962818145, -21.549051285], + [-57.818119049, -20.981237412], + [-58.162684861, -20.160596096], + [-58.235441178, -19.775484009], + [-59.09957038, -19.349433196], + [-59.9769183, -19.295172725], + [-60.600998482, -19.45593368], + [-61.735471105, -19.634178196], + [-61.922404907, -20.089239513], + [-62.266645605, -20.562743268], + [-62.260665159, -21.058500007], + [-62.642415671, -22.242894844], + [-62.284908295, -22.491340637], + [-61.989246368, -23.020784379], + [-61.495021821, -23.415639877], + [-61.091682434, -23.618074417], + [-61.002472, -23.794147], + [-60.32008, -24.048525], + [-60.046623, -24.012133001], + [-59.494984, -24.325085], + [-59.352993, -24.484718001], + [-58.654743, -24.833561], + [-58.246482849, -24.933790206], + [-57.787567138, -25.151655197], + [-57.555946349, -25.444845199], + [-57.815349579, -25.771087646], + [-57.84935379, -26.006015777], + [-58.115341187, -26.1532135], + [-58.190357207, -26.644302367], + [-58.662487031, -27.172166825], + [-58.606578826, -27.295120239], + [-58.243350983, -27.249126434], + [-57.288253785, -27.421615601], + [-56.833343506, -27.601108552], + [-56.598140717, -27.445108414], + [-56.364120483, -27.595844268], + [-56.143482209, -27.312519074], + [-55.725994111, -27.439798355], + [-55.430381774, -27.005846023], + [-54.814025879, -26.673847199], + [-54.620338441, -26.217113494], + [-54.674434661, -25.982574463], + [-54.595642089, -25.592119217] + ] + ] + }, + "properties": { + "id": "58ba071e-9150-4210-9970-c66e84397b92", + "code": "PRY", + "name": "Paraguay", + "abbreviation": "C-PRY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-69.572290111, -10.949385104], + [-69.934013366, -10.922180175], + [-70.347877502, -11.067590714], + [-70.627861022, -11.003930091], + [-70.611862182, -9.456370353], + [-70.998168944, -9.818079948], + [-71.375862122, -10.00070858], + [-72.180335999, -10.000248909], + [-72.281906129, -9.542189597], + [-72.716049195, -9.412429809], + [-73.209396363, -9.413648606], + [-72.940460206, -9.096088408], + [-73.162261962, -8.707448006], + [-73.528968811, -8.350530624], + [-73.701927185, -7.760611056], + [-73.989059448, -7.535899161], + [-73.692649841, -7.313790798], + [-73.795677186, -7.11358881], + [-73.711921691, -6.842709064], + [-73.226615905, -6.587059022], + [-73.101905823, -6.402639865], + [-73.245590209, -6.143589019], + [-73.006256104, -5.730760096], + [-72.859657287, -5.137629032], + [-72.415100098, -4.900139809], + [-71.78704834, -4.482439041], + [-70.93385315, -4.380801201], + [-70.802276612, -4.183669091], + [-70.290817261, -4.161428928], + [-69.949440002, -4.228428841], + [-70.341461181, -3.810320138], + [-70.698333739, -3.778891325], + [-70.052902222, -2.76349306], + [-70.227775574, -2.567085028], + [-70.965286256, -2.211498736], + [-71.389228821, -2.407346486], + [-71.719032288, -2.174343825], + [-71.919265746, -2.36468625], + [-72.378677369, -2.484610319], + [-72.595382691, -2.366598606], + [-72.938217163, -2.452836037], + [-73.119819641, -2.326871395], + [-73.147605895, -1.804042936], + [-73.538993835, -1.699926495], + [-73.464942933, -1.589808464], + [-73.618469239, -1.266004681], + [-74.275863647, -0.97456342], + [-74.249267578, -0.819948197], + [-74.425308227, -0.498456061], + [-74.795478821, -0.187000827], + [-75.257133484, -0.117024026], + [-75.538246154, -0.175718456], + [-75.253631592, -0.519662023], + [-75.187149047, -0.972799777], + [-75.387115479, -0.931501925], + [-75.554389953, -1.5439471], + [-76.043251038, -2.124619483], + [-76.692108155, -2.609971286], + [-77.845581054, -2.998627901], + [-78.246658325, -3.402604818], + [-78.355674744, -3.403700112], + [-78.411712647, -3.788740157], + [-78.560699464, -3.985218286], + [-78.706146239, -4.6240592], + [-78.894172668, -4.885650158], + [-79.265213012, -4.967052459], + [-79.487182618, -4.528632163], + [-79.795356751, -4.492056846], + [-80.104293823, -4.291343211], + [-80.452453613, -4.388850213], + [-80.431625366, -3.990227221], + [-80.159003999, -3.868496001], + [-80.236023, -3.425933], + [-80.494583, -3.499584], + [-81.240135193, -4.250137805], + [-81.32875061, -4.68319416], + [-81.07708, -4.982916], + [-81.196251, -5.209861], + [-80.85202, -5.635451], + [-81.088753, -6.088751], + [-79.974304199, -6.760972976], + [-79.686805725, -7.123748778], + [-79.309028625, -7.926249028], + [-78.988471984, -8.208193779], + [-78.786529541, -8.563195229], + [-78.362358, -9.624862], + [-78.227386, -9.79514], + [-78.164306641, -10.147082329], + [-77.662086, -10.948472], + [-77.643470763, -11.304027558], + [-77.366806, -11.459026], + [-77.17124939, -11.733471871], + [-77.135696, -12.069861], + [-76.835693359, -12.317917823], + [-76.803474426, -12.506250381], + [-76.522362, -12.846527], + [-76.490974426, -13.030692101], + [-76.23097229, -13.344305991], + [-76.185974121, -13.576805114], + [-76.25263977, -14.151805878], + [-75.97403, -14.471528], + [-75.917641, -14.660694], + [-75.49597168, -14.930137635], + [-75.186531067, -15.354862212], + [-74.053192138, -15.952916146], + [-73.700141907, -16.21875], + [-73.303474426, -16.347639083], + [-72.767639, -16.63125], + [-72.446807861, -16.70513916], + [-71.806251525, -17.188749314], + [-71.47264099, -17.298194885], + [-71.373192, -17.680695], + [-70.378163256, -18.350860664], + [-69.965903027, -18.262184056], + [-69.750244721, -17.947341111], + [-69.822570801, -17.685899733], + [-69.468683249, -17.498589528], + [-69.641725, -17.286869445], + [-69.04381004, -16.688458262], + [-68.959245123, -16.196491272], + [-69.197731, -16.16449], + [-69.401803, -15.606112], + [-69.133278641, -15.222435145], + [-69.285500317, -15.096910707], + [-69.352312565, -14.801012166], + [-69.226150512, -14.736579895], + [-68.846679746, -14.237351286], + [-68.979464007, -13.974804392], + [-68.993478122, -13.651170541], + [-68.852226841, -13.210676813], + [-68.86907566, -12.867147652], + [-68.656689167, -12.489146945], + [-68.969980785, -11.91249812], + [-69.572290111, -10.949385104] + ] + ] + }, + "properties": { + "id": "3c7cab6e-aa49-4664-9192-1e3cab4738e4", + "code": "PER", + "name": "Peru", + "abbreviation": "C-PER", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [124.082359, 12.55146], + [124.141937257, 12.933059692], + [123.754631043, 13.176759721], + [123.586082458, 13.729330064], + [123.938179, 13.79621], + [123.083946228, 13.981699943], + [122.848808289, 14.28057003], + [122.510147, 14.34456], + [122.164612001, 14.140730001], + [122.23261261, 13.895560264], + [121.729377746, 14.178739548], + [121.603996276, 14.652609826], + [121.733802796, 14.69367981], + [121.373367309, 15.336930275], + [121.639542, 15.70584], + [121.554809571, 15.898360253], + [121.759521484, 16.076919556], + [122.236656189, 16.313329696], + [122.199531555, 16.434970856], + [122.434173585, 16.79693985], + [122.528893, 17.098061], + [122.256897, 17.35675], + [122.16443634, 17.604719162], + [122.165412903, 18.070890427], + [122.335281, 18.30694], + [122.238357544, 18.513299942], + [122.004447938, 18.284999847], + [121.611259461, 18.36833954], + [121.096832, 18.626381], + [120.5625, 18.492500305], + [120.601387024, 18.364999771], + [120.351387024, 17.548889161], + [120.460281372, 17.407499313], + [120.445800781, 16.976060868], + [120.303611756, 16.503429414], + [120.425231934, 16.171670913], + [120.223609924, 16.034719468], + [119.778893001, 16.308888999], + [120.082779, 14.78722], + [120.611366, 14.50873], + [120.556388855, 14.814490319], + [120.826393, 14.755560001], + [120.980972291, 14.572970391], + [120.581108, 14.17222], + [120.744163512, 13.936109544], + [121.285957337, 13.596899986], + [121.715622, 13.96993], + [122.403793336, 13.519989967], + [122.503089904, 13.245869637], + [122.702949524, 13.224100112], + [122.497100831, 13.647660255], + [122.535186768, 13.963749886], + [122.975456239, 13.521309854], + [123.199920654, 13.419400216], + [123.406547547, 13.045949936], + [123.83027649, 12.828060151], + [124.082359, 12.55146] + ] + ], + [ + [ + [125.314163209, 5.572500229], + [125.686393739, 5.97138977], + [125.589752198, 6.489820004], + [125.373123169, 6.727000238], + [125.648361207, 7.237679958], + [125.819794, 7.36644], + [126.0858078, 6.804729938], + [126.445747376, 7.018889905], + [126.566589356, 7.287759782], + [126.552147, 7.69882], + [126.360527, 7.88291], + [126.441169739, 8.09465027], + [126.361038, 8.5446], + [126.123611449, 8.54360962], + [126.307540893, 8.956549645], + [125.860558, 9.53472], + [125.392219544, 9.647780418], + [125.535003662, 9.080280303], + [125.211669921, 9.094169617], + [125.167358397, 8.852410318], + [124.77166748, 8.96555996], + [124.699172973, 8.472780229], + [124.453613282, 8.624719621], + [124.311668395, 8.536109924], + [124.231391906, 8.220279694], + [123.86453247, 8.157420159], + [123.689743042, 8.64023018], + [123.436149597, 8.715769768], + [123.273857117, 8.512000084], + [123.076980591, 8.517499924], + [122.906936646, 8.144169808], + [122.359443665, 8.042779922], + [122.087219239, 7.740829945], + [122.139022827, 7.562270165], + [121.922271728, 6.989659786], + [122.181663512, 6.94860983], + [122.362052918, 7.47412014], + [122.543457031, 7.734350204], + [122.810959, 7.74736], + [122.798447, 7.54577], + [123.162696838, 7.489930153], + [123.405609131, 7.35766983], + [123.420280456, 7.774439812], + [123.534156799, 7.846389771], + [124.011672973, 7.647500039], + [124.250831604, 7.401390076], + [123.95665741, 6.893889903], + [124.040557861, 6.423610211], + [124.325141907, 6.113609792], + [125.174453735, 5.797780038], + [125.314163209, 5.572500229] + ] + ], + [ + [ + [123.033607484, 9.049510002], + [123.313163758, 9.318849565], + [123.107498169, 9.628890038], + [123.358047484, 10.441940307], + [123.568031001, 10.79294], + [123.493134, 10.93632], + [123.194999694, 11.003609657], + [122.95361328, 10.895830154], + [122.79548645, 10.522649764], + [122.862701, 10.10505], + [122.450546264, 9.976110459], + [122.379997253, 9.710559845], + [122.553337096, 9.473329544], + [122.81111145, 9.357780457], + [123.033607484, 9.049510002] + ] + ], + [ + [ + [125.741111755, 11.016389848], + [125.47264099, 11.544890403], + [125.423606872, 11.930279732], + [125.506111146, 12.20611], + [125.291656494, 12.468330384], + [125.03527832, 12.585559845], + [124.734718322, 12.514630317], + [124.260932923, 12.549249649], + [124.389663697, 12.195899964], + [124.649932861, 12.043049812], + [124.918769836, 11.742509843], + [124.94718933, 11.571680069], + [124.832069396, 11.476039887], + [124.986656, 11.41611], + [125.00026703, 11.269439698], + [125.151390076, 11.274169922], + [125.294441222, 11.140830039], + [125.741111755, 11.016389848] + ] + ], + [ + [ + [122.174720764, 10.610280038], + [122.581481933, 10.687330246], + [122.760002, 10.94694], + [123.094169617, 11.223890304], + [123.145553589, 11.588060379], + [122.565826416, 11.566940309], + [122.384613037, 11.725720406], + [122.094436645, 11.71582985], + [122.053886414, 11.032219887], + [121.924339294, 10.759710312], + [121.961029053, 10.413390159], + [122.174720764, 10.610280038] + ] + ], + [ + [ + [117.237541, 8.36831], + [118.003166199, 8.88010025], + [118.124198913, 9.14470005], + [118.344169617, 9.177780152], + [118.76222229, 9.683609962], + [118.756943, 9.92861], + [119.206947327, 10.055279731], + [119.373229981, 10.3457098], + [119.718887329, 10.517780304], + [119.48487091, 10.87302971], + [119.568237304, 11.29226017], + [119.431107, 11.34528], + [119.459457397, 10.727029801], + [119.17749, 10.41362], + [118.806427001, 10.193039894], + [118.475830077, 9.732780456], + [118.01358, 9.24228], + [117.90667, 9.26139], + [117.367996001, 8.74718], + [117.237541, 8.36831] + ] + ], + [ + [ + [120.934196, 12.59213], + [121.138046, 12.25611], + [121.394996642, 12.285829545], + [121.552223, 12.62583], + [121.53515625, 13.139780046], + [121.193588, 13.424388], + [120.41455841, 13.531189919], + [120.530830383, 13.227219581], + [120.736076355, 13.057600022], + [120.796302795, 12.723730088], + [120.934196, 12.59213] + ] + ], + [ + [ + [124.980659484, 10.037010193], + [125.024719238, 10.368330003], + [125.249183654, 10.254759789], + [125.183891297, 10.595000267], + [125.014167786, 10.746669769], + [125.039169311, 11.068610192], + [125.003829957, 11.253569604], + [124.96476, 11.27277], + [124.97844696, 11.399539947], + [124.814148, 11.43163], + [124.585067749, 11.305100442], + [124.315002441, 11.563610078], + [124.390556335, 11.291939735], + [124.375427, 10.9231], + [124.59111786, 11.014149666], + [124.79322052, 10.73235035], + [124.753387451, 10.187509537], + [124.980659484, 10.037010193] + ] + ], + [ + [ + [123.443641663, 9.536669732], + [123.76802063, 10.226940155], + [124.020759583, 10.382390022], + [124.035476685, 11.148489953], + [123.667648315, 10.41425991], + [123.366333008, 9.945949555], + [123.300331115, 9.515319824], + [123.443641663, 9.536669732] + ] + ], + [ + [ + [124.09879303, 9.589759827], + [124.569702149, 9.731719972], + [124.569443, 9.99667], + [124.152450562, 10.153579712], + [123.804740906, 9.837490083], + [123.871971131, 9.627619744], + [124.09879303, 9.589759827] + ] + ], + [ + [ + [123.31276703, 12.052220344], + [123.540000915, 12.212499619], + [123.74582672, 11.921669961], + [124.069946, 11.85355], + [123.872779847, 12.222220422], + [123.449172974, 12.514719963], + [123.287781, 12.42111], + [123.141670227, 11.929719926], + [123.31276703, 12.052220344] + ] + ], + [ + [ + [124.330566, 13.56167], + [124.421173096, 13.846579551], + [124.208129999, 14.09895], + [124.023399352, 13.663390159], + [124.330566, 13.56167] + ] + ], + [ + [ + [122.044724, 6.41361], + [122.212219239, 6.578889847], + [122.013679505, 6.746200085], + [121.795883, 6.60052], + [122.044724, 6.41361] + ] + ], + [ + [ + [120.334717, 12.02056], + [119.880287171, 12.327839851], + [119.978889, 12.00861], + [120.334717, 12.02056] + ] + ], + [ + [ + [122.012779236, 12.100279808], + [122.121109, 12.666939999], + [121.921669007, 12.318610191], + [122.012779236, 12.100279808] + ] + ], + [ + [ + [121.929397584, 14.631950378], + [121.99778, 15.04444], + [121.837898254, 15.039620399], + [121.929397584, 14.631950378] + ] + ], + [ + [ + [121.914016723, 13.265580178], + [122.124282836, 13.460949898], + [121.86567688, 13.526479721], + [121.914016723, 13.265580178] + ] + ], + [ + [ + [125.704437257, 9.876110078], + [125.643837, 10.18498], + [125.482567, 10.1028], + [125.704437257, 9.876110078] + ] + ] + ] + }, + "properties": { + "id": "f2c760bd-0f2e-466f-ae48-64cf2504f5f0", + "code": "PHL", + "name": "Philippines", + "abbreviation": "C-PHL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-128.305756, -24.342447], + [-128.356888, -24.362972], + [-128.291489, -24.418861], + [-128.305756, -24.342447] + ] + ] + }, + "properties": { + "id": "acca3607-3519-4889-81be-28c2be1289a9", + "code": "PCN", + "name": "Pitcairn Islands", + "abbreviation": "C-PCN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.514919001, 53.955994], + [23.337519, 54.251724], + [22.787775041, 54.363601684], + [21.440334321, 54.322387695], + [19.803611755, 54.442424775], + [19.180257798, 54.351047515], + [18.58037567, 54.437705994], + [18.423324586, 54.788673402], + [17.967777252, 54.832305909], + [17.243352891, 54.729930877], + [16.529882431, 54.540683747], + [16.204683304, 54.315219879], + [15.286024094, 54.147052766], + [14.344528, 53.911945], + [14.22636401, 53.928805997], + [14.449595452, 53.259456634], + [14.130087853, 52.828315736], + [14.639436721, 52.568908691], + [14.53459072, 52.39842987], + [14.758355141, 52.067401886], + [14.590989113, 51.819900513], + [14.73576355, 51.525955201], + [14.922353745, 51.482257843], + [15.037851333, 51.243991851], + [14.82269392, 50.871021201], + [15.236557961, 50.99866867], + [15.376022339, 50.82126999], + [16.180171966, 50.62851715], + [16.34308052, 50.661506654], + [16.360765458, 50.37946701], + [16.706027985, 50.09658432], + [17.018518448, 50.235725402], + [16.907901764, 50.449447632], + [17.604438781, 50.170928956], + [17.868484497, 49.972496032], + [18.572908402, 49.921623231], + [18.850496293, 49.51858139], + [19.197399139, 49.41456604], + [19.467376709, 49.613761902], + [19.767303466, 49.206016541], + [20.075502396, 49.178764343], + [20.192207337, 49.341156006], + [20.739860535, 49.417110442], + [20.925634385, 49.296051025], + [21.124021531, 49.436580657], + [21.63094139, 49.447307587], + [22.04066658, 49.2251091], + [22.567663194, 49.088626862], + [22.734502792, 49.211853027], + [22.640830993, 49.529991149], + [23.279327392, 50.086288452], + [23.766684, 50.413635], + [23.997543, 50.41214], + [24.107311248, 50.838729858], + [23.635988235, 51.31881714], + [23.624755996, 51.514190675], + [23.558965683, 51.761566162], + [23.640176774, 52.085796357], + [23.21557808, 52.329654694], + [23.466627121, 52.549446106], + [23.931631088, 52.708972931], + [23.915153504, 53.162281036], + [23.549049378, 53.767780304], + [23.514919001, 53.955994] + ] + ] + }, + "properties": { + "id": "28ed4ee7-150c-4599-be87-217ce14a42d9", + "code": "POL", + "name": "Poland", + "abbreviation": "C-POL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-8.873302459, 41.869888305], + [-8.644305228, 41.017433167], + [-9.075139999, 39.588470459], + [-9.364860535, 39.348194123], + [-9.486052, 38.707886], + [-9.105258941, 38.729610444], + [-9.22012, 38.412624], + [-8.887047768, 38.521755219], + [-8.777916909, 38.19430542], + [-8.785672188, 37.532802582], + [-8.994803, 37.024105], + [-8.614027024, 37.122638702], + [-8.184753419, 37.090560914], + [-7.887083, 36.981529], + [-7.403612138, 37.177665711], + [-7.508997916, 37.523159028], + [-7.245584965, 37.991802216], + [-7.002025127, 38.022396087], + [-7.317526817, 38.440353394], + [-7.260046005, 38.722942352], + [-6.951142788, 39.023593902], + [-7.144035817, 39.108627319], + [-7.294268131, 39.456821443], + [-7.499413014, 39.589603425], + [-7.015522957, 39.6704216], + [-6.866662979, 40.015232087], + [-7.012691975, 40.225448608], + [-6.78121519, 40.36379242], + [-6.859950065, 40.950763703], + [-6.64836502, 41.24753952], + [-6.437616825, 41.305305481], + [-6.189142226, 41.574813843], + [-6.548253059, 41.685581208], + [-6.599432945, 41.948291779], + [-7.076929092, 41.951931], + [-7.427977085, 41.808166505], + [-7.733328818, 41.892276764], + [-8.164990425, 41.818115234], + [-8.196352005, 42.152729034], + [-8.526394843, 42.077056885], + [-8.873302459, 41.869888305] + ] + ], + [ + [ + [-17.245393999, 32.785526], + [-16.822495, 32.648018], + [-16.900581088, 32.834461053], + [-17.245393999, 32.785526] + ] + ], + [ + [ + [-25.632042, 37.747253], + [-25.150135039, 37.757431031], + [-25.174343109, 37.857250213], + [-25.632042, 37.747253] + ] + ] + ] + }, + "properties": { + "id": "0479cd62-b5b8-49a9-b0de-10267685a733", + "code": "PRT", + "name": "Portugal", + "abbreviation": "C-PRT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-66.022087096, 17.977361679], + [-65.830139159, 18.019027711], + [-65.619308, 18.365973], + [-65.904861, 18.453194], + [-67.090698243, 18.515972138], + [-67.270416259, 18.366527557], + [-67.105698, 17.945415], + [-66.022087096, 17.977361679] + ] + ] + }, + "properties": { + "id": "b3b0315f-de54-4337-b22d-022c2cc8b4cf", + "code": "PRI", + "name": "Puerto Rico", + "abbreviation": "C-PRI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [51.113519, 24.472111], + [51.301926, 24.506807], + [51.629307, 25.020969], + [51.493473053, 25.599027634], + [51.579304, 25.914305], + [51.262917, 26.155695], + [51.039028, 26.040138], + [50.749863, 25.424864], + [50.858196, 24.902363], + [50.804335, 24.743569], + [51.113519, 24.472111] + ] + ] + }, + "properties": { + "id": "d7a5c518-71b8-4d92-b05a-1d6a8421fbe4", + "code": "QAT", + "name": "Qatar", + "abbreviation": "C-QAT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.104763032, -4.648590087], + [13.427568436, -4.88245964], + [13.690182687, -4.768346786], + [13.819194795, -4.422533989], + [14.313832283, -4.31740141], + [14.412021637, -4.893554688], + [14.687930108, -4.9175601], + [15.194307327, -4.347605228], + [15.415301322, -4.296506881], + [15.556356429, -4.048159598], + [15.900524139, -3.951448679], + [16.187095643, -3.395443915], + [16.184278488, -2.382886887], + [16.24200058, -2.122999907], + [16.589008331, -1.745197058], + [16.846000671, -1.263999939], + [17.341194153, -0.990492999], + [17.700065612, -0.567604006], + [17.714000702, -0.128000065], + [17.962598801, 0.408499987], + [17.850116731, 1.012439013], + [18.067958831, 1.521394849], + [18.106023788, 2.266630888], + [18.429136276, 2.76823306], + [18.641740798, 3.208940029], + [18.63500023, 3.471093416], + [18.490898132, 3.651686906], + [18.123521805, 3.566071034], + [17.606319427, 3.641251087], + [16.596540451, 3.477276088], + [16.520128251, 2.842302084], + [16.189256826, 2.224806177], + [16.053611755, 2.008360148], + [16.149131774, 1.694233536], + [15.748046874, 1.919481636], + [15.248477937, 2.027805066], + [15.048355, 1.976952], + [14.597784042, 2.203109742], + [13.299013137, 2.170983554], + [13.161886216, 1.901365995], + [13.133171081, 1.583217024], + [13.313282013, 1.225219011], + [13.813871383, 1.428683997], + [14.278985978, 1.34119296], + [14.48871231, 0.825231016], + [14.119593621, 0.558323026], + [13.888682366, 0.202671007], + [13.895365714, -0.212170004], + [14.400787353, -0.477086007], + [14.498720169, -0.680893004], + [14.410247803, -0.908969998], + [14.501670838, -1.425276994], + [14.398568154, -1.875691056], + [14.156409264, -2.194279909], + [14.102894784, -2.473965883], + [13.922572136, -2.464971066], + [13.748804092, -2.120312928], + [13.506067277, -2.429549932], + [13.040926933, -2.333771943], + [12.74332714, -1.868949055], + [12.444073677, -1.874595046], + [12.519983292, -2.086726904], + [12.468323707, -2.421263933], + [11.775189399, -2.456491947], + [11.616085053, -2.784224986], + [12.066580773, -2.969432115], + [11.947383881, -3.171828031], + [12.045451164, -3.352566003], + [11.884313583, -3.747391939], + [11.529373168, -3.512758017], + [11.249577, -3.718149], + [11.200858, -3.990695], + [11.826251, -4.612083], + [12.012652398, -5.028289555], + [12.462395669, -4.596130848], + [12.723011016, -4.426958084], + [13.104763032, -4.648590087] + ] + ] + }, + "properties": { + "id": "65ee9773-a59f-4d9a-b3a9-9f118c3bac18", + "code": "COG", + "name": "Republic of the Congo", + "abbreviation": "C-COG", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [28.579860686, 43.740417481], + [28.667917252, 43.987640381], + [28.647361754, 44.332359314], + [29.116528, 44.764027], + [29.616806, 44.864029], + [29.655805587, 45.216060639], + [29.6526165, 45.339988709], + [29.251850128, 45.435325623], + [28.720420838, 45.224594116], + [28.351459503, 45.320152282], + [28.214229823, 45.466758923], + [28.090349, 46.059769], + [28.236099243, 46.681240081], + [28.097082138, 46.979564668], + [27.801059722, 47.142501831], + [27.27690506, 47.687496186], + [27.179763794, 47.94707489], + [26.808113098, 48.254699707], + [26.631242753, 48.2574234], + [26.336137772, 48.184467316], + [26.189668656, 47.995712281], + [25.31250763, 47.9145813], + [24.884765624, 47.724624634], + [24.625005722, 47.952026367], + [24.220169, 47.897835], + [23.182813644, 48.117553711], + [22.904510498, 47.957382203], + [22.6818676, 47.788032532], + [22.266178132, 47.731449128], + [22.0256958, 47.52017212], + [21.530939102, 46.721061707], + [21.331487655, 46.631893159], + [21.171640395, 46.298370361], + [20.875003815, 46.287754058], + [20.635412215, 46.127063751], + [20.265501022, 46.124713898], + [20.349887848, 46.000003814], + [20.804250717, 45.738155364], + [20.834533691, 45.480304719], + [21.018157958, 45.325023652], + [21.484310151, 45.192481994], + [21.457685471, 45.040779113], + [21.642705916, 44.659656524], + [21.991159439, 44.634048462], + [22.181060791, 44.479679108], + [22.462968826, 44.715568544], + [22.764814377, 44.540554048], + [22.475465774, 44.480968476], + [22.680921891, 44.212676857], + [22.937503814, 44.100097656], + [22.868034362, 43.838653565], + [23.416744231, 43.853130341], + [24.174860001, 43.682941436], + [24.499534607, 43.761753082], + [25.000005722, 43.727603913], + [25.391643524, 43.61933136], + [25.781484604, 43.710597992], + [26.113164901, 43.972503662], + [26.899950027, 44.131538392], + [27.272911071, 44.126605988], + [27.400905609, 44.012645721], + [27.945737839, 43.985065461], + [27.99568367, 43.843154908], + [28.579860686, 43.740417481] + ] + ] + }, + "properties": { + "id": "72c525e3-e850-4f8a-8473-90754eeff8ea", + "code": "ROU", + "name": "Romania", + "abbreviation": "C-ROU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [48.505107879, 41.864120484], + [48.371982575, 41.911006927], + [48.072212218, 42.339176178], + [47.715496063, 42.683696747], + [47.707035064, 42.878929138], + [47.46616745, 43.015335082], + [47.474765777, 43.388343811], + [47.721809386, 43.858303071], + [47.525112152, 43.835979462], + [47.112876892, 44.211730957], + [46.993804932, 44.438549043], + [46.782440186, 44.482982635], + [46.915401459, 44.821502685], + [47.115840911, 44.788352967], + [47.546447754, 45.205715179], + [47.690681458, 45.712604522], + [47.874942779, 45.569210052], + [48.238803864, 45.60303116], + [48.589038849, 45.921451568], + [48.778842926, 45.77584076], + [49.202659608, 46.209423065], + [49.163757325, 46.361011506], + [48.480705, 46.657673], + [49.005325, 46.767155], + [48.78133, 47.010876], + [48.607757568, 47.414466857], + [48.380716676, 47.433582129], + [48.058250427, 47.760650634], + [47.406677247, 47.812576295], + [47.174313, 47.760746], + [47.017651, 48], + [47.097595216, 48.211013795], + [46.491855621, 48.443012237], + [46.778491973, 48.938533784], + [47.052845001, 49.164913177], + [46.782657623, 49.332653047], + [46.892875671, 49.839294433], + [47.224128723, 49.966365815], + [47.319606782, 50.331794739], + [47.551460266, 50.462715149], + [47.816562653, 50.331314086], + [48.348060607, 49.828926087], + [48.734996796, 49.926750183], + [48.761886596, 50.101909639], + [48.632793427, 50.662883758], + [48.824748994, 50.600337982], + [49.092971803, 50.783470154], + [49.410907746, 50.858425141], + [49.420497895, 51.12958908], + [49.735996247, 51.114719391], + [50.36763382, 51.340312957], + [50.56764984, 51.642440797], + [51.266777038, 51.689735413], + [51.275642396, 51.500308992], + [51.793949126, 51.530666352], + [51.857337951, 51.683288574], + [52.328147888, 51.76607132], + [52.545627594, 51.467365265], + [53.378768922, 51.514003754], + [53.659057616, 51.241256715], + [54.129528045, 51.118804932], + [54.443283082, 50.872009278], + [54.508094787, 50.540035249], + [54.728641511, 50.634586335], + [54.706298829, 50.894241334], + [55.069023131, 50.820140839], + [55.663722991, 50.572235108], + [56.138401031, 50.771224975], + [56.210704804, 50.937343597], + [56.497066498, 51.088077545], + [57.183509827, 51.095264434], + [57.426898957, 50.895694733], + [57.731479644, 50.930778504], + [57.754291534, 51.129745483], + [58.545825959, 51.075065613], + [58.598819732, 50.826702117], + [58.883399963, 50.709072113], + [59.484378814, 50.656082154], + [59.531326294, 50.514469146], + [59.832714081, 50.584293366], + [60.069004059, 50.865581512], + [60.354919434, 50.679359435], + [60.82793045, 50.660999298], + [61.450839996, 50.807315826], + [61.57982254, 51.232040406], + [61.510490418, 51.413852693], + [61.002735138, 51.465114593], + [60.905143738, 51.614124298], + [60.598567962, 51.615192413], + [60.522563935, 51.782234193], + [60.059509277, 51.983501434], + [60.721912384, 52.16866684], + [61.071880341, 52.337680818], + [60.825820923, 52.762458802], + [61.236839295, 53.031814575], + [61.657840728, 52.960647582], + [62.137271881, 53.005737305], + [62.110614777, 53.116798402], + [61.182743073, 53.296154022], + [61.257511139, 53.503433227], + [60.915958404, 53.616710662], + [61.218322753, 53.815872192], + [61.306427001, 54.073474884], + [61.949588777, 53.945785523], + [62.088390351, 54.057872772], + [62.437507996, 54.055069], + [62.531342, 53.900391001], + [62.816135, 54.115837], + [63.880405426, 54.28585434], + [64.977943421, 54.419624329], + [65.501312256, 54.651184082], + [66.020050048, 54.618091584], + [67.301628112, 54.859153747], + [68.201416015, 54.957935334], + [68.1769104, 55.182292939], + [68.61743927, 55.188999176], + [68.724693298, 55.340278625], + [69.668045043, 55.3429451], + [70.217918397, 55.133277893], + [70.820190429, 55.297958374], + [71.01499939, 55.072921754], + [71.136878967, 54.708236695], + [71.210388184, 54.11090088], + [71.746566773, 54.138534547], + [72.263275146, 54.320018769], + [72.418136598, 54.149536133], + [72.37752533, 53.953296662], + [72.722053529, 53.949485779], + [72.600944519, 54.134002685], + [72.981140137, 54.098300934], + [73.084388733, 53.990512848], + [73.511665345, 53.951465606], + [73.245964049, 53.575260163], + [73.448959351, 53.444801332], + [73.903366089, 53.648433686], + [74.242156982, 53.593765259], + [74.803153993, 53.815925598], + [75.016845704, 53.784523011], + [75.600860595, 54.105052948], + [76.347198486, 54.330379487], + [76.86203003, 54.353019715], + [76.748634339, 54.160350799], + [76.426696778, 54.168167115], + [76.583824159, 53.967754364], + [77.570335388, 53.480957031], + [77.911514283, 53.278541566], + [78.249931336, 52.954257965], + [79.074035645, 52.041656494], + [80.068260192, 50.768203736], + [80.468841553, 50.974452973], + [80.440895081, 51.20583725], + [80.671470643, 51.308059693], + [81.144691468, 51.201690674], + [81.061470033, 50.959373474], + [81.390983581, 50.996295929], + [81.449348449, 50.762870789], + [81.862052918, 50.821155547], + [82.1199646, 50.751029969], + [82.548309325, 50.769207001], + [82.76071167, 50.950439453], + [83.119659423, 51.035377503], + [83.811912537, 50.884899139], + [84.218879699, 50.532268525], + [84.262550353, 50.269672395], + [84.998016357, 50.056076051], + [85.212295532, 49.626808166], + [85.931335449, 49.55242157], + [86.160621643, 49.462154388], + [86.623611451, 49.773181915], + [86.902008056, 49.350772858], + [87.268363953, 49.216480256], + [87.312576295, 49.099693298], + [87.832260132, 49.175006867], + [87.994293213, 49.186321258], + [88.223335265, 49.489871979], + [88.650024414, 49.520069122], + [88.852722168, 49.450073242], + [89.681831359, 49.709709168], + [89.620727539, 49.973991395], + [90.274085999, 50.018138886], + [90.662528992, 50.163562775], + [90.737731933, 50.487930298], + [91.44431305, 50.465400697], + [91.83609, 50.734692], + [92.19577012, 50.684822066], + [92.325317, 50.886372], + [92.748024, 50.709347], + [93.03299, 50.762951], + [93.104125976, 50.566894532], + [94.223670959, 50.58272171], + [94.398925781, 50.23413086], + [94.608818054, 50.038711548], + [94.964225768, 50.061710358], + [95.129554748, 49.948928833], + [95.47781372, 49.922348022], + [96.302124024, 49.987121582], + [96.453681946, 49.901294708], + [97.002983093, 49.914520263], + [97.316200257, 49.75738907], + [98.116180001, 50.103947001], + [98.324486, 50.538971], + [98.132652283, 50.59640503], + [97.867279, 50.949818], + [97.944885255, 51.322875977], + [98.234313965, 51.462280275], + [98.315307617, 51.717895508], + [98.696296693, 51.820365907], + [98.953674316, 52.147888184], + [99.294784545, 51.975227356], + [99.770606994, 51.881752014], + [99.993530273, 51.753295899], + [100.515640259, 51.750377655], + [101.258636475, 51.539417267], + [101.392089843, 51.455402375], + [102.068778992, 51.397094728], + [102.354049682, 50.726699829], + [102.320617676, 50.584091186], + [102.98071289, 50.304321289], + [103.690460206, 50.137237549], + [104.061096191, 50.15447998], + [104.405113221, 50.304992675], + [105.151931762, 50.400051117], + [105.387695312, 50.479309081], + [106.080101013, 50.393844604], + [106.279296874, 50.295722961], + [106.567321778, 50.347106934], + [106.924499513, 50.247497559], + [107.130737305, 50.02691269], + [107.937965393, 49.925693512], + [108.02533, 49.615295], + [108.555587999, 49.334319999], + [109.329101999, 49.341491999], + [109.539673, 49.226074], + [110.234123, 49.165123], + [110.399475098, 49.258483887], + [110.766296, 49.145081], + [111.392272949, 49.37310791], + [111.934509, 49.395508], + [112.513168334, 49.546485902], + [112.716309, 49.49184], + [113.087524, 49.608276], + [113.230262756, 49.834945679], + [113.795715333, 50.094085694], + [114.349037171, 50.282894135], + [115.004051209, 50.177375793], + [115.37463379, 49.9078331], + [115.720947265, 49.884578705], + [116.20514679, 50.031681061], + [116.700271606, 49.839855194], + [117.274269103, 49.631549836], + [117.842033386, 49.506931306], + [118.670799256, 49.948379517], + [119.197486878, 50.012088775], + [119.363807677, 50.174949646], + [119.183746337, 50.345920563], + [119.273490905, 50.601753236], + [119.987373352, 51.452690125], + [120.09249878, 51.677181245], + [120.652030945, 51.934108734], + [120.756332397, 52.244480133], + [120.719650268, 52.528789521], + [120.45249176, 52.641300203], + [120.061210632, 52.584072114], + [120.027206421, 52.772190094], + [120.876716613, 53.287033081], + [121.218490601, 53.281291962], + [122.329620361, 53.497322083], + [122.833541871, 53.452903749], + [123.257019043, 53.56085968], + [123.844421388, 53.48871994], + [124.375488281, 53.246181487], + [124.833045959, 53.132690429], + [125.188209534, 53.191589356], + [125.579658507, 53.080730439], + [125.967697143, 52.760829926], + [125.970428466, 52.656791686], + [126.343681336, 52.395950318], + [126.30267334, 52.22328186], + [126.549950174, 52.130171937], + [126.469207763, 51.935310363], + [126.979865964, 51.307769913], + [126.922851563, 51.057998658], + [127.111816406, 50.933872224], + [127.359352112, 50.583278656], + [127.368797302, 50.293159486], + [127.571479798, 50.242759704], + [127.515129089, 49.834640503], + [127.802421569, 49.591247559], + [128.260894775, 49.499950409], + [128.392028808, 49.588878631], + [128.797241211, 49.562969207], + [129.118133545, 49.348709107], + [129.520965576, 49.411891938], + [129.906417846, 49.05399704], + [130.257476806, 48.861846923], + [130.636672973, 48.814239502], + [130.525421142, 48.638519288], + [130.825531005, 48.30009079], + [130.652053833, 48.109340668], + [130.954193114, 47.720272065], + [131.500991822, 47.727760315], + [131.579559326, 47.660648346], + [132.504821778, 47.711250305], + [133.16029358, 48.105701446], + [133.468154907, 48.06760025], + [134.389266969, 48.385704041], + [134.711837769, 48.275814057], + [134.550552369, 48.024398803], + [134.771560668, 47.75345993], + [134.493530272, 47.44380951], + [134.149093627, 47.259510041], + [133.913009644, 46.581459046], + [133.908493043, 46.271591188], + [133.463882446, 45.828979492], + [133.476119995, 45.654418945], + [133.215194703, 45.509113311], + [133.135559081, 45.127109528], + [132.851974488, 45.055690767], + [132.560577393, 44.555042267], + [132.111618042, 44.740684509], + [132.18359375, 44.95685196], + [132.05859375, 45.235588074], + [131.826782226, 45.308731079], + [131.469848632, 44.959480286], + [130.954223633, 44.854160308], + [131.102661133, 44.691558839], + [131.29310608, 44.07970047], + [131.200576782, 43.518459321], + [131.305755618, 43.392730724], + [131.029602031, 42.863281238], + [130.789154053, 42.864345552], + [130.405136108, 42.722320557], + [130.623031616, 42.622673035], + [130.614608676, 42.42395806], + [130.674393, 42.284584], + [130.847076, 42.505417], + [130.722916, 42.702084], + [131.080978, 42.637638], + [131.760696, 43.233196], + [132.291534423, 43.288471221], + [132.298187, 42.866806], + [132.437912, 42.935139], + [133.230698, 42.751804], + [133.894867, 42.867916], + [134.175415, 43.064861], + [135.135422, 43.50153], + [135.503189, 43.849304], + [135.528793, 44.007278], + [135.880325317, 44.412231445], + [136.150115966, 44.496025086], + [136.242202759, 44.675735475], + [136.800003052, 45.196487427], + [137.137954713, 45.374702453], + [137.358078003, 45.611133575], + [137.686477661, 45.808692932], + [138.108886718, 46.245834351], + [138.167221069, 46.4347229], + [138.603881835, 47.075000763], + [139.052719, 47.408043], + [139.264816, 47.802357], + [140.166519, 48.44146], + [140.192978, 48.75893], + [140.361694, 48.919968], + [140.31105, 49.202229], + [140.547318, 49.56493], + [140.398682, 49.876091], + [140.687851, 50.089855], + [140.502701, 50.166245], + [140.417221, 50.554722], + [140.498337, 50.867779], + [140.641052, 50.951969], + [140.671326, 51.326893], + [140.963898, 51.66584], + [141.421875, 51.953197], + [141.38504, 52.222366], + [141.116776, 52.410492], + [141.265686, 52.589321], + [141.188217, 52.855835], + [140.960205, 52.934475], + [141.443893, 53.1525], + [140.942215, 53.499722], + [140.550552, 53.644444], + [140.253326, 53.873611], + [140.199997, 54.054245], + [139.784225, 54.291496], + [139.318619, 54.176987], + [138.727386, 54.306786], + [138.769409, 53.980762], + [138.491669, 53.53611], + [138.272217, 53.511944], + [138.574448, 53.810001], + [137.951111, 53.581112], + [137.311661, 53.533611], + [137.765549, 53.950832], + [137.43074, 54.038372], + [137.740555, 54.311943], + [137.453064, 54.313568], + [137.116058, 54.166412], + [137.298019, 54.04266], + [137.195557, 53.848057], + [136.71373, 53.791428], + [136.75415, 54.427612], + [136.829437, 54.642776], + [135.71666, 54.573891], + [135.260559, 54.737221], + [135.182785, 54.864445], + [135.597092, 55.108089], + [135.860382, 55.172558], + [136.540558, 55.582222], + [137.564484, 56.10585], + [138.610001, 56.954445], + [138.903656, 57.03046], + [139.186111, 57.272221], + [139.790756, 57.483852], + [139.992783, 57.697224], + [140.490311, 57.842163], + [140.772903, 58.300308], + [141.678894, 58.68], + [141.96167, 58.945], + [142.422226, 59.188057], + [143.210831, 59.355484], + [143.481949, 59.318367], + [143.875504, 59.400448], + [145.029449, 59.371944], + [145.967773, 59.406944], + [145.82991, 59.241714], + [146.050049, 59.141769], + [146.303665, 59.185715], + [146.443268, 59.462395], + [146.781921, 59.372066], + [147.797272, 59.261845], + [147.883347, 59.385826], + [148.399811, 59.376167], + [148.413162, 59.254543], + [148.841919, 59.2799], + [148.712784, 59.453888], + [149.164597, 59.484509], + [149.058105, 59.623154], + [149.588531, 59.758198], + [150.893967, 59.551411], + [151.405045, 59.605206], + [152.11496, 59.150661], + [151.432373, 59.164539], + [151.173889, 59.086113], + [151.361862, 58.856052], + [152.064438, 58.888268], + [152.408875, 59.024334], + [152.913315, 58.915833], + [153.016113, 59.066666], + [153.338333, 59.088333], + [153.387833, 59.248363], + [153.839951, 59.168602], + [154.051666, 59.048054], + [154.48555, 59.220554], + [155.18219, 59.174129], + [155.011734, 59.478317], + [154.413681, 59.551075], + [154.22319, 59.87402], + [154.804688, 60.293228], + [155.81459, 60.729168], + [156.044266, 60.972393], + [156.659897, 61.206772], + [156.669266, 61.515106], + [157.49791, 61.789585], + [158.039063, 61.73177], + [158.254166, 61.822918], + [158.841141, 61.819271], + [159.202087, 61.918751], + [159.538025, 61.801559], + [159.529678, 61.667191], + [159.875, 61.704166], + [160.362503, 61.9375], + [160.389587, 61.756248], + [159.910416, 61.258335], + [160.09584, 61.016666], + [160.445831, 61.035416], + [160.181763, 60.819271], + [160.15625, 60.662498], + [160.780731, 60.724476], + [160.913025, 60.899479], + [161.395828, 61.15625], + [161.985413, 61.372917], + [162.425003, 61.672916], + [162.847916, 61.708332], + [163.010422, 61.514584], + [163.25, 61.733334], + [162.998428, 61.781769], + [163.141663, 62.002083], + [163.077606, 62.222393], + [163.277603, 62.526566], + [164.375519, 62.691143], + [164.611984, 62.680729], + [164.735413, 62.456249], + [164.156769, 62.274479], + [164.055725, 61.684898], + [163.752609, 61.45052], + [163.978653, 61.416149], + [163.920319, 61.213024], + [163.617188, 61.108856], + [163.702087, 60.891666], + [162.892181, 60.747398], + [162.770309, 60.631771], + [161.949997, 60.420834], + [161.943237, 60.227604], + [161.492187, 60.039062], + [160.853409, 59.609299], + [160.496017, 59.556122], + [160.412781, 59.397499], + [159.86496, 59.132198], + [159.73056, 58.866112], + [159.024841, 58.403049], + [158.321945, 58.070518], + [157.902222, 57.977501], + [157.677216, 58.017223], + [157.526108, 57.821388], + [156.849442, 57.798054], + [157.000549, 57.433475], + [156.687775, 57.057499], + [156.114441, 56.807499], + [155.947784, 56.611111], + [155.650513, 55.96693], + [155.557220459, 55.197223664], + [155.73500061, 54.433887482], + [155.980560303, 53.694999696], + [156.128326415, 52.915554047], + [156.4659729, 52.13974762], + [156.539123535, 51.303520203], + [156.767227173, 50.994167327], + [157.23436, 51.209], + [157.504074, 51.455009], + [157.903885, 51.641666], + [158.569229, 52.380447], + [158.42128, 53.016804], + [158.705566, 52.884422], + [158.901108, 53.021111], + [159.629944, 53.256237], + [160.023895, 53.095001], + [159.846619, 53.400959], + [159.956131, 53.572983], + [159.842041, 53.794273], + [159.977905, 54.125374], + [160.586105, 54.468613], + [161.009995, 54.591526], + [161.287994, 54.481899], + [161.715805, 54.505299], + [162.125549, 54.750832], + [162.137222, 54.864166], + [161.78244, 55.216522], + [161.750519, 55.550083], + [162.2061, 56.146774], + [162.602615, 56.262257], + [162.436249, 56.388096], + [162.730927, 56.483349], + [162.627045, 56.228275], + [163.04805, 56.015976], + [163.361542, 56.184387], + [163.226486, 56.742874], + [162.776672, 56.774445], + [162.852936, 57.038834], + [162.782074, 57.348778], + [163.096115, 57.483334], + [163.303329, 57.718613], + [162.698761, 57.950287], + [162.532043, 57.752728], + [162.136505, 57.843441], + [161.983505, 58.007103], + [162.134995, 58.373333], + [162.545563, 58.748055], + [163.016251, 59.005821], + [163.10556, 59.267502], + [163.335495, 59.286125], + [163.188339, 59.515835], + [163.422989, 59.655922], + [163.477478, 59.860821], + [163.953186, 60.016521], + [164.215683, 59.965321], + [164.477081, 60.104168], + [164.856888, 59.781219], + [165.106079, 59.863922], + [165.356766, 60.155731], + [166.274994, 60.472916], + [166.314072, 60.194271], + [166.103882, 59.800278], + [166.282425, 59.810745], + [166.722397, 60.085938], + [167.048431, 60.395313], + [167.204163, 60.337502], + [168.21666, 60.579166], + [169.389069, 60.574478], + [169.749481, 60.386978], + [169.960419, 60.068748], + [170.430695, 59.969471], + [170.635422, 60.418751], + [171.21875, 60.558334], + [171.706253, 60.833332], + [172.066666, 60.845833], + [172.40625, 61.008335], + [172.347397, 61.208855], + [172.652084, 61.166668], + [173.507813, 61.558857], + [173.488022, 61.726562], + [173.816147, 61.672398], + [174.022919, 61.814583], + [174.460419, 61.806252], + [175.220322, 62.008854], + [175.284897, 62.089066], + [176.343231, 62.315102], + [177.045837, 62.537498], + [177.639587, 62.560417], + [179.036987, 62.336979], + [179.629166, 62.6875], + [179.564072, 62.839066], + [179.139587, 63.027084], + [179.336975, 63.193226], + [178.650513, 63.392185], + [178.774475, 63.636978], + [178.710937, 63.908852], + [178.3349, 64.32135], + [177.885422, 64.224998], + [177.483856, 64.410934], + [177.53334, 64.73542], + [177.087494, 64.706253], + [176.78125, 64.539581], + [176.310928, 64.763016], + [176.679169, 64.854164], + [177.079163, 64.754166], + [177.489578, 64.916664], + [177.65834, 64.697914], + [178.337494, 64.635414], + [178.857819, 64.652603], + [179.522919, 64.800003], + [179.99791, 65.027084], + [180, 68.949738], + [179.31459, 69.254166], + [178.722916, 69.277084], + [178.539581, 69.443748], + [177.97084, 69.472916], + [177.527084, 69.583336], + [177.148437, 69.598434], + [175.734894, 69.828651], + [174.422913, 69.847916], + [174.018753, 69.89167], + [173.758331, 69.810417], + [173.454163, 69.933334], + [173.277084, 69.754166], + [172.741669, 69.962502], + [172.397919, 69.941666], + [170.612503, 70.102081], + [170.602081, 69.758331], + [170.152603, 69.595314], + [170.666153, 69.555733], + [170.936981, 69.267189], + [170.9599, 69.016151], + [170.133331, 68.793747], + [169.463013, 68.808853], + [169.414062, 69.030731], + [168.714584, 69.197914], + [168.34166, 69.206253], + [168.270309, 69.551567], + [167.745834, 69.768753], + [166.960419, 69.477081], + [165.804169, 69.570831], + [164.56041, 69.581253], + [163.985413, 69.75], + [163.839584, 69.685417], + [163.197922, 69.697914], + [162.868744, 69.635414], + [162.378647, 69.668228], + [161.510422, 69.379166], + [161.615097, 68.875519], + [161.043747, 69.052086], + [161.097397, 69.297401], + [160.96666, 69.618752], + [159.822922, 69.775002], + [159.868225, 69.978645], + [160.097397, 70.242187], + [159.96666, 70.445831], + [159.630737, 70.670311], + [159.125, 70.831253], + [158.125, 70.993752], + [157.022919, 71.070831], + [155.943756, 71.074997], + [153.010422, 70.810417], + [152.179169, 70.864586], + [152.02916, 71.039581], + [151.52916, 71.320831], + [150.264587, 71.53125], + [150.068237, 71.634895], + [149.012497, 71.689583], + [149.410416, 71.88958], + [149.702087, 71.747917], + [150.105728, 71.842186], + [149.901566, 72.028648], + [149.508331, 72.158333], + [148.397919, 72.318748], + [147.135422, 72.306252], + [146.09584, 71.785416], + [145.385422, 71.654167], + [144.938019, 71.706772], + [145.232819, 71.83802], + [145.847397, 71.947395], + [145.672913, 72.135414], + [146.30365, 72.125519], + [146.001572, 72.029686], + [146.009903, 71.888016], + [146.407822, 72.02552], + [146.93541, 72.314583], + [144.504166, 72.229164], + [144.793747, 72.404167], + [145.243744, 72.429169], + [145.397919, 72.34375], + [146.704163, 72.341667], + [146.03125, 72.472916], + [144.335419, 72.637497], + [143.477081, 72.685417], + [141.795837, 72.731247], + [141.347916, 72.84375], + [140.710419, 72.868752], + [141.166153, 72.653648], + [140.90625, 72.510414], + [140.522919, 72.46875], + [139.608337, 72.491669], + [139.15834, 72.28125], + [139.333328, 72.122917], + [139.635422, 72.227081], + [139.929687, 72.157814], + [139.743744, 71.914581], + [139.78334, 71.681252], + [140.091141, 71.4599], + [139.477081, 71.493752], + [139.233337, 71.402084], + [138.983337, 71.689583], + [138.762497, 71.629166], + [138.21666, 71.583336], + [137.993744, 71.408333], + [138.28125, 71.268753], + [137.853653, 71.148438], + [137.386978, 71.393234], + [136.910416, 71.533333], + [136.59166, 71.522919], + [136.079163, 71.633331], + [135.645828, 71.622917], + [134.43959, 71.362503], + [133.647919, 71.441666], + [132.792191, 71.75885], + [132.754166, 71.947914], + [132.202606, 71.580734], + [132.06041, 71.241669], + [131.754166, 70.972916], + [131.318756, 70.722916], + [131.06459, 70.706253], + [130.809891, 70.867187], + [130.358337, 70.902084], + [130.160934, 71.061981], + [129.833847, 71.078651], + [129.495834, 71.260414], + [129.247391, 71.595314], + [128.933334, 71.57917], + [128.514069, 72.03698], + [127.79583, 72.324997], + [127.214584, 72.40625], + [126.645836, 72.395836], + [126.645836, 72.512497], + [127.243752, 72.614586], + [127.381767, 72.706772], + [128.11615, 72.752602], + [128.385422, 72.908333], + [127.745834, 72.900002], + [128.243744, 72.935417], + [128.370834, 72.970833], + [128.520828, 72.979164], + [128.816666, 73.041664], + [128.824997, 73.23542], + [128.460419, 73.239586], + [128.225006, 73.408333], + [127.013016, 73.520317], + [126.879166, 73.368752], + [126.472916, 73.364586], + [126.29792, 73.550003], + [125.724998, 73.462502], + [125.242188, 73.543228], + [124.887497, 73.724998], + [124.404167, 73.760414], + [124.014061, 73.596352], + [123.429688, 73.651566], + [123.372917, 73.379166], + [123.664581, 73.102081], + [123.322395, 72.923439], + [122.879166, 72.902084], + [122.670311, 72.841148], + [121.729164, 72.966667], + [120.96875, 72.925003], + [119.847916, 73.01458], + [118.51667, 73.175003], + [118.440102, 73.426567], + [118.629166, 73.5625], + [117.335419, 73.572914], + [116.637497, 73.668747], + [115.26458, 73.697914], + [114.914581, 73.597916], + [114.32917, 73.599998], + [113.57708, 73.512497], + [113.916664, 73.339584], + [113.573433, 73.228645], + [113.551567, 72.927605], + [113.220833, 72.82708], + [113.518234, 72.942184], + [113.581253, 73.322914], + [113.195313, 73.444267], + [113.441666, 73.658333], + [113.160416, 73.875], + [112.831772, 73.997398], + [112.885414, 73.73333], + [111.824997, 73.73542], + [111.033852, 73.918228], + [110.375, 74.01458], + [109.974998, 74], + [109.654686, 73.677605], + [110.247917, 73.681252], + [110.67292, 73.793747], + [110.932816, 73.698433], + [110.472916, 73.637497], + [109.88385, 73.447395], + [109.310417, 73.497917], + [109.300003, 73.38958], + [108.25, 73.289581], + [107.79583, 73.154167], + [106.352081, 73.1875], + [106.239586, 72.960419], + [105.84375, 72.881248], + [105.910416, 73.10833], + [106.239586, 73.3125], + [106.802086, 73.318748], + [107.1875, 73.585419], + [108.157814, 73.654686], + [108.763016, 73.930733], + [109.181252, 74.0625], + [109.543747, 74.081253], + [109.949478, 74.311981], + [110.57917, 74.487503], + [111.04583, 74.554169], + [111.39167, 74.677086], + [111.800003, 74.652084], + [112.245834, 74.883331], + [112.745834, 74.935417], + [113.564064, 75.233849], + [113.708336, 75.502083], + [113.381248, 75.51667], + [113.270836, 75.660416], + [112.79792, 75.543747], + [112.808334, 75.75], + [113.751564, 75.635933], + [113.868233, 75.918228], + [113.604164, 75.912498], + [113.466148, 76.16198], + [112.987503, 76.239586], + [112.018753, 76.502083], + [111.614586, 76.654167], + [110.4375, 76.739586], + [109.802086, 76.683334], + [109.434898, 76.740105], + [108.662498, 76.695831], + [107.974998, 76.729164], + [107.943748, 76.539581], + [106.57917, 76.48333], + [106.79583, 76.681252], + [107.495834, 76.902084], + [107.179169, 77], + [106.63958, 76.995834], + [105.868752, 77.099998], + [105.027084, 77.056252], + [104.627083, 77.152084], + [105.377083, 77.195831], + [105.808334, 77.36042], + [105.877083, 77.550003], + [105.29792, 77.537498], + [104.818748, 77.67083], + [104.008331, 77.699997], + [103.710419, 77.618752], + [103.285416, 77.629166], + [102.640099, 77.489067], + [101.35833, 77.09375], + [101.349998, 76.964584], + [100.925522, 76.857811], + [101.256248, 76.743752], + [101.033333, 76.506248], + [101.856247, 76.449997], + [102.416664, 76.308334], + [100.935417, 76.51667], + [100.568748, 76.460419], + [99.739586, 76.4375], + [98.964584, 76.5], + [99.88958, 76.091667], + [99.335419, 76.20208], + [98.78125, 76.199997], + [97.73542, 76.07917], + [97.837502, 75.96875], + [97.066666, 75.981247], + [96.943748, 75.914581], + [96.4375, 76.002083], + [95.819267, 75.870316], + [96.11042, 76.072914], + [95.46875, 76.162498], + [95.106247, 76.09375], + [94.14167, 76.118752], + [93.529686, 76.026566], + [93.29792, 75.8125], + [92.354164, 75.729164], + [91.690102, 75.716148], + [91.685417, 75.643753], + [89.966667, 75.552086], + [89.770836, 75.431252], + [89.185417, 75.470833], + [88.620834, 75.324997], + [88.095833, 75.085419], + [87.20208, 75.150002], + [86.9151, 75.091148], + [87.70208, 75.037498], + [87.087502, 74.856247], + [86.683853, 74.622398], + [86.366669, 74.787498], + [85.785416, 74.64167], + [86.385414, 74.614586], + [86.447914, 74.479164], + [85.964584, 74.304169], + [86.629166, 74.254166], + [86.835419, 74.07708], + [87.097916, 74.056252], + [87.241669, 73.854164], + [87.179169, 73.61042], + [86.387535, 73.560417], + [87.139061, 73.845314], + [86.918747, 73.885414], + [86.097916, 73.85833], + [85.5625, 73.793747], + [85.51667, 73.716667], + [84.445831, 73.706253], + [83.14167, 73.633331], + [81.895836, 73.635414], + [80.841667, 73.541664], + [80.679169, 73.40625], + [80.589584, 73.064583], + [80.826561, 73.016151], + [80.692184, 72.726563], + [80.767189, 72.506767], + [81.310417, 72.347916], + [82.216667, 72.283333], + [82.283333, 72.085419], + [82.677086, 71.90625], + [83.375, 71.835419], + [83.660934, 71.642189], + [83.614067, 71.513016], + [83.164062, 71.239067], + [83.420311, 71.00573], + [83.809898, 70.451561], + [83.402084, 70.29792], + [82.979683, 70.294266], + [83.184898, 70.143234], + [82.904167, 70.04792], + [82.644272, 70.217186], + [82.995316, 70.394272], + [83.143234, 70.801567], + [82.882812, 70.949478], + [82.46875, 70.600204], + [82.291245, 70.693748], + [82.200516, 71.011978], + [82.250519, 71.249481], + [82.968231, 71.388016], + [83.282814, 71.703651], + [82.722916, 71.762497], + [82.308334, 71.70417], + [81.629166, 71.699997], + [80.573433, 72.1026], + [79.933334, 72.206253], + [79.566666, 72.335419], + [78.525002, 72.375], + [77.894272, 72.307816], + [77.525002, 72.052086], + [77.997917, 72.099998], + [78.21875, 71.92083], + [77.822395, 71.813019], + [77.48333, 71.839584], + [76.697914, 72.043747], + [76.035934, 71.903648], + [76.32917, 71.558334], + [77.699997, 71.26458], + [77.840103, 71.341148], + [78.307816, 71.234901], + [78.36042, 71.064583], + [78.461983, 70.935936], + [77.9151, 70.979683], + [77.800003, 71.125], + [77.447914, 71.164581], + [76.020836, 71.212502], + [75.29583, 71.331253], + [75.495316, 71.541145], + [75.260933, 71.7276], + [75.254166, 71.947914], + [75.558853, 72.220314], + [75.408333, 72.756248], + [74.947914, 72.870834], + [75.078651, 72.267189], + [74.962502, 72.14167], + [74.529167, 71.995834], + [73.50885, 71.799484], + [73.370834, 71.5625], + [73.039581, 71.375], + [73.555733, 71.218231], + [73.902084, 70.856247], + [74.268234, 70.664063], + [74.232811, 70.429688], + [73.675522, 70.115105], + [73.529686, 69.733849], + [73.901566, 69.363022], + [73.769272, 69.163017], + [73.974998, 69.066666], + [74.258331, 69.129166], + [75.102081, 69.097916], + [75.5, 69.247917], + [76.03125, 69.239586], + [76.92083, 69.006248], + [77.682816, 68.876564], + [77.694267, 68.624481], + [78.116669, 68.227081], + [77.533852, 68.122398], + [77.452599, 67.764061], + [78.122917, 67.637497], + [78.543747, 67.666664], + [78.466667, 67.533333], + [77.889061, 67.531769], + [77.120834, 67.75], + [77.3125, 68.237503], + [77.185417, 68.568748], + [76.675003, 68.73542], + [76.601562, 68.961983], + [76.208336, 68.977081], + [75.32917, 68.881248], + [74.70417, 68.772919], + [74.442184, 68.663017], + [74.3125, 68.364586], + [74.799484, 68.024483], + [74.791145, 67.770317], + [74.629166, 67.625], + [74.11927, 67.436981], + [73.908333, 67.26667], + [73.853645, 66.988022], + [73.489586, 66.822914], + [72.48542, 66.597916], + [72.418747, 66.349998], + [72.089584, 66.229164], + [71.229164, 66.352081], + [70.416664, 66.331253], + [69.427086, 66.489586], + [69.129684, 66.613022], + [69.147919, 66.770836], + [68.789581, 66.756248], + [68.341667, 66.547821], + [68.258331, 66.693748], + [69.04792, 66.814583], + [69.645836, 66.754166], + [69.949997, 66.852081], + [70.268753, 66.67292], + [71.064583, 66.808334], + [71.418747, 66.966667], + [71.764061, 66.9151], + [72.199997, 67.32708], + [72.38958, 67.3125], + [72.589584, 67.60833], + [73.104164, 67.722916], + [73.195313, 67.932816], + [73.074997, 68.199997], + [73.597397, 68.497398], + [72.783333, 68.806252], + [72.479683, 69.094269], + [72.643234, 69.488022], + [72.49427, 69.643234], + [72.67865, 69.773437], + [72.496353, 69.979683], + [72.45208, 70.310417], + [72.749481, 70.426567], + [72.675522, 70.61615], + [72.78698, 70.878647], + [72.570831, 71.133331], + [72.247917, 71.199997], + [71.841667, 71.522919], + [72.31823, 71.700516], + [72.723434, 72.214066], + [72.800003, 72.70417], + [71.631248, 72.887497], + [69.454689, 72.878647], + [69.063019, 72.707817], + [68.585419, 71.914581], + [68.306252, 71.67292], + [67.962502, 71.51667], + [66.9375, 71.270836], + [66.720314, 70.773438], + [67.26667, 70.824997], + [67.381248, 70.699997], + [67.125519, 70.21302], + [67.316666, 70], + [66.846352, 69.903648], + [66.874481, 69.610939], + [67.056252, 69.691666], + [68.136978, 69.468231], + [68.08802, 69.242188], + [68.564583, 68.9375], + [69.01667, 68.939583], + [69.052605, 68.791145], + [68.857811, 68.552605], + [68.387497, 68.20417], + [68.13958, 68.400002], + [67.171349, 68.706772], + [67.07708, 68.8125], + [66.34375, 68.935417], + [65.745834, 69.127083], + [65.104164, 69.260414], + [64.783852, 69.155731], + [64.716667, 69.379166], + [64.23333, 69.51458], + [62.670834, 69.724998], + [61.454166, 69.770836], + [60.887501, 69.856247], + [60.715107, 69.6651], + [60.206772, 69.622398], + [60.254684, 69.485939], + [60.943226, 69.074478], + [60.950001, 68.933334], + [60.518749, 68.708336], + [59.804688, 68.632813], + [59.972393, 68.499481], + [59.686981, 68.315102], + [59.174999, 68.387497], + [59.195835, 68.666664], + [59.459896, 68.753647], + [58.879166, 68.977081], + [57.65625, 68.743752], + [57.339066, 68.533852], + [56.637501, 68.618752], + [56.102085, 68.633331], + [55.381248, 68.54792], + [54.990101, 68.416145], + [54.899479, 68.169266], + [54.464584, 68.291664], + [54.093231, 68.231766], + [53.234894, 68.229683], + [53.433334, 68.370834], + [53.823441, 68.331772], + [53.723434, 68.605728], + [53.995316, 68.8349], + [53.375, 68.883331], + [52.290104, 68.595314], + [52.75156, 68.478645], + [52.293751, 68.310417], + [52.208332, 68.572914], + [51.547916, 68.48333], + [51.075001, 68.341667], + [50.783333, 68.36042], + [50.397915, 68.20417], + [49.335415, 67.887497], + [48.787498, 67.84375], + [48.739582, 67.71875], + [47.831772, 67.578651], + [47.735935, 67.013016], + [47.458332, 66.916664], + [46.660416, 66.814583], + [46.018749, 66.816666], + [45.808857, 66.898437], + [45.581249, 67.160416], + [44.917191, 67.323433], + [44.963024, 67.47448], + [45.308334, 67.572914], + [45.362499, 67.714584], + [46.352085, 67.816666], + [46.691666, 67.806252], + [46.545315, 68.120316], + [45.877602, 68.425522], + [45.470833, 68.525002], + [44.0625, 68.53125], + [43.431252, 68.668747], + [43.5, 68.543747], + [44.203644, 68.301567], + [44.14323, 67.75885], + [43.767185, 67.25885], + [44.077084, 67.160416], + [44.528648, 66.898437], + [44.471352, 66.671349], + [44.12344, 66.31823], + [44.159893, 66.042183], + [43.268749, 66.410416], + [42.561981, 66.390099], + [42.118752, 66.491669], + [41.731251, 66.222916], + [41.372917, 66.070831], + [40.764584, 65.991669], + [40.493229, 65.817184], + [39.872917, 65.627083], + [39.721352, 65.335937], + [40.39323, 64.922401], + [40.506771, 64.5401], + [39.822918, 64.658333], + [39.547916, 64.541664], + [38.870834, 64.741669], + [38.28125, 64.802086], + [37.831249, 64.908333], + [37.693226, 65.0224], + [37.191666, 65.145836], + [36.847916, 65.152084], + [36.802082, 64.95208], + [36.444271, 64.924484], + [36.535416, 64.714584], + [36.747398, 64.682816], + [37.108856, 64.40052], + [37.320835, 64.341667], + [37.650524, 64.420311], + [37.931252, 64.34375], + [38.072399, 64.001564], + [37.4375, 63.783333], + [37.224998, 63.872917], + [36.65469, 63.910934], + [36.252602, 64.006767], + [36.211979, 64.143234], + [35.83073, 64.320313], + [35.327084, 64.300003], + [34.777084, 64.522919], + [34.93906, 64.863022], + [34.780731, 65.082817], + [34.464584, 65.268753], + [34.696354, 65.426567], + [34.822918, 65.88958], + [34.534893, 66.070313], + [33.604168, 66.3125], + [32.5, 66.908333], + [32.356251, 67.160416], + [32.744274, 67.079689], + [32.979168, 66.895836], + [33.502083, 66.716667], + [33.690102, 66.804688], + [33.916668, 66.6875], + [34.370834, 66.660416], + [34.504166, 66.535416], + [34.902084, 66.59375], + [35.379166, 66.414581], + [36.556252, 66.275002], + [37.183334, 66.23542], + [37.685417, 66.11042], + [38.243752, 66.060417], + [39.118752, 66.102081], + [40.002083, 66.254166], + [40.561981, 66.450516], + [41.224476, 66.831772], + [41.395309, 67.109901], + [41.079685, 67.250519], + [41.035416, 67.633331], + [39.864582, 68.029167], + [39.581249, 68.03125], + [38.779167, 68.306252], + [38.619274, 68.302605], + [37.560417, 68.722916], + [36.716667, 68.970833], + [35.811981, 69.176567], + [35.316666, 69.247917], + [34.952084, 69.20208], + [34.314583, 69.302086], + [33.452084, 69.29583], + [33.502083, 69.402084], + [32.572918, 69.481247], + [33.099998, 69.737503], + [32.658333, 69.772919], + [32.058334, 69.943748], + [32.091148, 69.763016], + [31.77552, 69.830734], + [31.48073, 69.673439], + [30.842518, 69.791664], + [30.945555, 69.58622], + [30.526632, 69.542526], + [30.145369, 69.671532], + [29.986135, 69.413345], + [29.314947, 69.30278], + [29.30975, 69.182114], + [28.924753394, 69.056725056], + [28.434746254, 68.908416889], + [28.803527751, 68.874946602], + [28.450369, 68.547668], + [28.659791947, 68.195106507], + [29.334667, 68.074707], + [29.694522858, 67.793746948], + [30.034530641, 67.669364929], + [29.959157944, 67.517333985], + [29.053629, 66.977989], + [29.086283, 66.824265], + [29.48065, 66.537582], + [29.917573928, 66.127830506], + [30.125448, 65.665688], + [29.734413147, 65.6279068], + [29.840818406, 65.088310243], + [29.625688553, 65.059921265], + [29.750923156, 64.789619446], + [30.045656205, 64.792167664], + [30.053009034, 64.404251099], + [30.484960555, 64.254913331], + [30.526166916, 64.049087526], + [30.23889923, 63.816188812], + [29.98095131, 63.754478455], + [30.505151749, 63.461864471], + [31.219272614, 63.231616975], + [31.576831817, 62.914161682], + [31.22984314, 62.507061005], + [30.718795777, 62.212890625], + [29.245567104, 61.273418357], + [28.840395, 61.131451], + [27.810535, 60.536575], + [28.216667, 60.522915], + [28.652603, 60.668228], + [28.679167, 60.429165], + [29.010937, 60.188019], + [29.926563, 60.145309], + [30.028944, 59.862251], + [29.123695373, 59.986251832], + [28.978057861, 59.811805725], + [28.472658, 59.827442], + [28.432695, 59.679672], + [28.099298, 59.789135], + [28.075740814, 59.455883027], + [27.741879, 58.995518], + [27.455129624, 58.790611267], + [27.553665, 58.423527], + [27.479160308, 58.291648864], + [27.782720999, 57.830853], + [27.553926469, 57.831874847], + [27.336309299, 57.546298988], + [27.844026565, 57.316173554], + [27.668026, 56.83918], + [27.963555987, 56.829177939], + [28.225418101, 56.295959473], + [28.151191847, 56.161064718], + [28.58208847, 56.103076934], + [28.729238511, 55.966941835], + [29.032892227, 56.032539369], + [29.39691162, 55.976993561], + [29.480318069, 55.704460145], + [29.969619752, 55.889705658], + [30.267707825, 55.869976044], + [30.93380165, 55.634067536], + [31.006025314, 55.033226014], + [30.76061058, 54.811752319], + [31.213983536, 54.650382997], + [31.330057143, 54.260890961], + [31.780056, 54.064109802], + [31.76597786, 53.797252655], + [32.122810364, 53.809463502], + [32.509155273, 53.695682525], + [32.462646485, 53.574119569], + [32.741893768, 53.332733155], + [32.227340699, 53.096294403], + [31.931325913, 53.086585999], + [31.641042709, 53.23141098], + [31.329481124, 53.044277191], + [31.606595994, 52.766613007], + [31.515312194, 52.689311982], + [31.59456253, 52.302452087], + [31.789606095, 52.108219148], + [32.072063446, 52.022766114], + [32.351173402, 52.138980865], + [32.358680726, 52.335777284], + [32.68713379, 52.253459931], + [33.185310364, 52.368099213], + [33.510398865, 52.292736054], + [33.796646118, 52.360004426], + [34.11433792, 52.134010314], + [34.092494964, 52.015304566], + [34.400947571, 51.845066072], + [34.126987458, 51.686840058], + [34.318195343, 51.528808595], + [34.270694732, 51.259902954], + [34.819721221, 51.176284791], + [35.123470307, 51.220962524], + [35.312839508, 51.086719514], + [35.491317749, 50.771396638], + [35.413085938, 50.589736938], + [35.631309509, 50.360713959], + [36.154998779, 50.44929886], + [36.597061156, 50.238174439], + [36.925628663, 50.347408295], + [37.49312973, 50.428993226], + [37.760421753, 50.096336365], + [38.047847749, 49.956104279], + [38.611801148, 49.977611542], + [38.937122345, 49.811283113], + [39.6032753, 49.743476868], + [39.794551848, 49.569641114], + [40.131904601, 49.619560241], + [40.200325012, 49.270580291], + [39.93523407, 49.06344223], + [39.688667297, 48.590930938], + [40.014892578, 48.266578674], + [39.762969971, 47.825042724], + [38.840553284, 47.861789704], + [38.764785767, 47.684131623], + [38.371608735, 47.611076355], + [38.234565911, 47.120139457], + [38.511806, 47.127361], + [39.197361, 47.284863], + [39.10125, 47.039307], + [38.061527252, 46.647640229], + [37.755416871, 46.660694123], + [37.873748779, 46.447082519], + [38.100139617, 46.396251679], + [38.581527709, 46.094306946], + [38.25375, 46.170696], + [37.97514, 46.035416], + [37.832916, 45.755138], + [37.611252, 45.659027], + [37.572639, 45.410694], + [37.171249, 45.340973], + [36.857639, 45.450974], + [36.633472, 45.141251], + [37.135139, 45.03653], + [37.386806488, 44.757915498], + [37.830970764, 44.720417023], + [38.20124817, 44.417362213], + [38.801250458, 44.273750306], + [39.294029236, 43.943473817], + [40.011955261, 43.384860993], + [40.096923827, 43.563293457], + [40.652301789, 43.55947876], + [41.043235778, 43.390731811], + [41.420257568, 43.353103637], + [41.582489014, 43.235382081], + [42.765430451, 43.185348511], + [43.192070008, 42.934432984], + [43.561706542, 42.866088866], + [43.948078155, 42.558475494], + [44.256622315, 42.688716889], + [44.662147523, 42.750251771], + [45.176540374, 42.69070053], + [45.350009918, 42.529029847], + [45.767868041, 42.474258423], + [45.606128692, 42.218982696], + [45.926872254, 42.033927917], + [46.418235779, 41.907482147], + [46.748703002, 41.863056182], + [47.262393951, 41.324737549], + [47.535915375, 41.207206727], + [47.878814698, 41.219219208], + [48.051055909, 41.49119568], + [48.414409638, 41.626567841], + [48.505107879, 41.864120484] + ] + ], + [ + [ + [-176.422913, 65.510414], + [-175.933334, 65.42083], + [-175.731766, 65.153648], + [-175.78334, 64.945831], + [-175.4375, 64.800003], + [-174.670837, 64.729164], + [-174.043228, 64.534897], + [-173.97084, 64.408333], + [-173.097916, 64.241669], + [-172.418747, 64.539581], + [-172.77916, 64.612503], + [-172.754166, 64.833336], + [-172.252609, 64.969269], + [-172.152603, 65.145317], + [-172.172913, 65.535416], + [-171.287506, 65.529167], + [-171.166153, 65.702599], + [-170.62291, 65.599998], + [-170.536987, 65.859901], + [-170.174484, 66.003647], + [-169.729172, 66.002083], + [-169.673431, 66.123436], + [-170.101563, 66.174484], + [-170.272919, 66.29583], + [-171.349487, 66.6651], + [-171.713013, 66.947395], + [-172.193756, 66.95417], + [-172.699997, 66.885414], + [-173.052597, 67.042183], + [-173.6026, 67.100517], + [-174.145828, 67.081253], + [-173.914581, 66.681252], + [-174.097916, 66.537498], + [-173.68959, 66.4375], + [-173.978653, 66.231766], + [-173.960938, 66.44635], + [-174.177078, 66.456253], + [-174.335419, 66.287498], + [-174.440109, 66.528648], + [-174.947922, 66.658333], + [-174.706253, 66.760414], + [-174.914581, 67.07917], + [-174.9151, 67.426567], + [-175.25209, 67.341667], + [-175.25885, 67.65052], + [-175.753647, 67.791145], + [-175.888016, 67.63073], + [-176.168747, 67.629166], + [-176.179169, 67.904167], + [-176.485413, 67.883331], + [-177.34166, 68.241669], + [-177.96666, 68.241669], + [-178.018753, 68.416664], + [-178.668747, 68.533333], + [-178.852081, 68.752083], + [-179.270828, 68.802086], + [-179.454163, 68.918747], + [-179.99791, 68.979164], + [-179.998428, 65.048439], + [-179.677078, 65.137497], + [-179.31041, 65.625], + [-179.693756, 65.78125], + [-179.799484, 65.932816], + [-179.610931, 66.176567], + [-179.129684, 66.273437], + [-178.7276, 66.194267], + [-178.536987, 66.393234], + [-178.515106, 66.100517], + [-178.841141, 65.895317], + [-178.448441, 65.743233], + [-178.4375, 65.46875], + [-177.331253, 65.48542], + [-176.93541, 65.604164], + [-176.422913, 65.510414] + ] + ], + [ + [ + [67.79792, 76.997917], + [67.066666, 76.941666], + [66.633331, 76.814583], + [66.027084, 76.737503], + [65.945831, 76.495834], + [65.568748, 76.556252], + [65.279167, 76.447914], + [64.895836, 76.460419], + [64.629166, 76.352081], + [64.069267, 76.273438], + [63.724998, 76.32917], + [63.03125, 76.185417], + [62.770832, 76.260414], + [61.691666, 76.29792], + [61.047916, 76.256248], + [61.045834, 76.027084], + [60.554165, 75.987503], + [60.489582, 76.114586], + [60.110416, 76.054169], + [59.727085, 75.893753], + [59.207809, 75.909897], + [58.868752, 75.845833], + [58.791668, 75.720833], + [58.089584, 75.660416], + [57.997917, 75.556252], + [57.610416, 75.504166], + [57.572918, 75.308334], + [57.029167, 75.379166], + [56.420834, 75.039581], + [56.293751, 75.158333], + [55.958332, 75.179169], + [55.854168, 74.95417], + [56.299999, 75], + [56.410416, 74.877083], + [55.839584, 74.772919], + [56.399479, 74.692184], + [55.581249, 74.537498], + [56.033333, 74.433334], + [55.379166, 74.408333], + [55.625, 74.272919], + [55.130726, 74.229683], + [54.727604, 74.070313], + [54.622917, 73.933334], + [54.325001, 73.914581], + [53.90625, 73.760414], + [54.004166, 73.620834], + [55.108334, 73.689583], + [54.427082, 73.568748], + [54.366665, 73.324997], + [54.927082, 73.439583], + [55.395832, 73.324997], + [56.722916, 73.231247], + [57.886978, 73.769272], + [57.714584, 74.043747], + [58.166149, 73.9776], + [58.185417, 74.125], + [58.636978, 74.194267], + [58.647396, 74.409897], + [59.075001, 74.456253], + [59.218231, 74.6474], + [59.597916, 74.570831], + [59.918751, 74.706253], + [60.529167, 74.839584], + [60.489582, 75.104164], + [61.636978, 75.254684], + [61.924999, 75.4375], + [62.314583, 75.416664], + [62.637501, 75.506248], + [64.587502, 75.73542], + [65.720833, 75.925003], + [66.92292, 76.052086], + [68.214584, 76.254166], + [68.625, 76.402084], + [68.965103, 76.721352], + [68.574997, 76.95208], + [67.79792, 76.997917] + ] + ], + [ + [ + [142.118195, 46.000805], + [142.449371337, 46.645759584], + [143.377777, 46.531113], + [143.561661, 46.340279], + [143.472549, 46.830345], + [143.154724, 46.717777], + [143.014862061, 47.252056122], + [142.551330567, 47.70288849], + [142.543640137, 48.060783386], + [142.747634888, 48.549049378], + [142.979721, 48.898335], + [143.050827, 49.187222], + [143.509171, 49.341946], + [144.147781, 49.213612], + [144.336868, 49.033726], + [144.238831, 49.499428], + [143.83223, 50.237499], + [143.439438, 51.486389], + [143.21167, 51.499722], + [143.309448, 51.74361], + [143.10556, 51.927776], + [143.108337, 52.345833], + [143.316666, 52.581944], + [143.323334, 52.808887], + [143.099014, 53.038704], + [143.250549, 53.208332], + [142.929459, 53.76601], + [142.997345, 54.080555], + [142.725296, 54.419884], + [142.3853, 54.278202], + [142.693329, 53.94611], + [142.789597, 53.707302], + [142.400497, 53.373646], + [142.195419, 53.53236], + [141.764587, 53.377514], + [141.918335, 53.06889], + [141.767899, 52.462444], + [141.653534, 52.392067], + [141.626525879, 51.886627197], + [142.072219849, 51.479999543], + [142.253326416, 51.143054961], + [142.085861206, 50.821243286], + [142.048095703, 50.516494751], + [142.150970459, 50.372501374], + [142.16748, 49.803391], + [142.094451903, 49.223384857], + [141.846939087, 48.76638794], + [142.142181397, 48.326137543], + [142.202514649, 47.986114502], + [141.961303711, 47.619003297], + [142.051666261, 47.18901062], + [141.810867, 46.6012], + [141.931931, 46.09771], + [142.118195, 46.000805] + ] + ], + [ + [ + [54.970833, 73.414581], + [54.233334, 73.256248], + [53.90625, 73.293747], + [53.194271, 73.136978], + [53.337502, 73.010414], + [52.612499, 72.852081], + [52.421356, 72.730728], + [52.8125, 72.64167], + [52.702084, 72.293747], + [52.362499, 72.04583], + [51.868229, 72.151566], + [51.563019, 72.061981], + [51.432816, 71.833855], + [51.635941, 71.527603], + [52.125, 71.45208], + [52.277084, 71.560417], + [53.300522, 71.424484], + [53.695835, 71.083336], + [53.752083, 70.777084], + [54.224998, 70.712502], + [54.504166, 70.768753], + [55.07552, 70.565102], + [55.368752, 70.716667], + [55.875519, 70.569267], + [56.512501, 70.737503], + [56.566666, 70.637497], + [57.291668, 70.541664], + [57.414585, 70.802086], + [57.035416, 70.854164], + [56.21719, 71.183853], + [55.733334, 71.556252], + [55.400002, 71.931252], + [55.367188, 72.289062], + [55.84531, 72.732811], + [56.114582, 72.775002], + [56.193748, 72.956253], + [56.553646, 73.106766], + [56.40625, 73.222916], + [55.435417, 73.310417], + [54.970833, 73.414581] + ] + ], + [ + [ + [139.058334, 76.197914], + [138.21666, 76.11042], + [138.100006, 75.997917], + [137.631256, 75.987503], + [137.425003, 75.883331], + [137.706253, 75.743752], + [137.162506, 75.731247], + [137.466141, 75.33802], + [136.931763, 75.345314], + [137.397919, 75.04583], + [137.90625, 74.933334], + [138.1875, 74.75], + [139.0625, 74.633331], + [139.452087, 74.699997], + [139.527084, 74.916664], + [139.816666, 74.979164], + [140.268753, 74.814583], + [141.574997, 74.931252], + [141.983337, 74.912498], + [142.493744, 74.789581], + [142.87709, 74.862503], + [143.547913, 74.897919], + [143.589584, 74.995834], + [142.664581, 75.09375], + [142.250519, 75.313019], + [141.99791, 75.664581], + [142.389587, 75.743752], + [142.99791, 75.720833], + [143.018753, 75.581253], + [142.550522, 75.392189], + [142.897919, 75.179169], + [143.322922, 75.064583], + [144.02916, 75.020836], + [144.730728, 75.153648], + [144.835419, 75.433334], + [145.103653, 75.605728], + [143.614578, 75.852081], + [143.15834, 75.79792], + [142.585419, 75.85833], + [141.820831, 76.106247], + [141.40416, 76.15625], + [140.990097, 76.0224], + [141.070831, 75.660416], + [140.90834, 75.602081], + [140.447922, 75.793747], + [140.15834, 75.804169], + [139.058334, 76.197914] + ] + ], + [ + [ + [97.560417, 80.162498], + [96.354164, 80.099998], + [95.64167, 80.114586], + [95.375, 80.029167], + [95.039581, 80.11042], + [94.397919, 79.943748], + [94.591667, 79.779167], + [94.17083, 79.777084], + [93.404167, 79.57917], + [94.337502, 79.48333], + [94.42292, 79.229164], + [95.11042, 79.022919], + [95.510414, 79.102081], + [95.722916, 78.995834], + [96.904167, 79.004166], + [97.435417, 78.84375], + [98.279167, 78.808334], + [99.529167, 78.816666], + [99.956253, 78.927086], + [99.859901, 79.086983], + [99.270836, 79.229164], + [99.775002, 79.262497], + [99.847916, 79.570831], + [100.058334, 79.800003], + [99.372917, 80.025002], + [98.612503, 80.081253], + [98.470833, 80], + [97.970833, 80], + [97.560417, 80.162498] + ] + ], + [ + [ + [102.45208, 79.418747], + [102.164581, 79.224998], + [101.936981, 79.336983], + [101.614586, 79.32708], + [100.939583, 78.977081], + [100.818748, 78.808334], + [100.372917, 78.664581], + [100.125, 78.333336], + [99.647919, 78.17292], + [99.416664, 78.01458], + [100.03125, 77.941666], + [101.268753, 78.168747], + [102.534897, 78.202599], + [102.981247, 78.1875], + [104.92083, 78.318748], + [105.22448, 78.419266], + [105.339066, 78.757813], + [104.943748, 78.847916], + [104.699997, 78.816666], + [104.464584, 78.991669], + [103.902084, 79.168747], + [103.460419, 79.120834], + [102.842186, 78.947395], + [102.564583, 78.802086], + [103.072914, 79.32708], + [102.45208, 79.418747] + ] + ], + [ + [ + [95.762497, 81.270836], + [94.527084, 81.008331], + [94.395836, 81.050003], + [93.1651, 80.948433], + [92.645836, 80.714584], + [93.462502, 80.78125], + [92.89167, 80.599998], + [92.472916, 80.362503], + [92.377083, 80.158333], + [93.060417, 80.116669], + [93.808334, 79.997917], + [94.783333, 80.131248], + [95.824997, 80.214584], + [97.189583, 80.239586], + [97.599998, 80.29583], + [97.258331, 80.520836], + [97.34375, 80.616669], + [98.029167, 80.679169], + [97.849998, 80.791664], + [96.875, 80.902084], + [96.493752, 81.114586], + [95.762497, 81.270836] + ] + ], + [ + [ + [146.514587, 75.585419], + [146.223434, 75.382813], + [146.34166, 75.160416], + [147.139587, 75], + [147.6875, 74.95417], + [148.104172, 74.793747], + [148.702087, 74.737503], + [149.581253, 74.747917], + [150.639587, 74.864586], + [150.891663, 75.106247], + [150.387497, 75.114586], + [150.149994, 75.208336], + [149.387497, 75.262497], + [148.616669, 75.199997], + [148.539581, 75.375], + [147.606247, 75.439583], + [147.133331, 75.318748], + [146.802078, 75.345833], + [146.514587, 75.585419] + ] + ], + [ + [ + [21.283080829, 55.240722997], + [21.21694374, 54.924583436], + [20.541943, 54.945972], + [20.983093, 55.272888], + [20.950596, 55.276806], + [20.604717, 55.012699], + [20.348612, 54.937084], + [19.978088, 54.961304], + [19.945833, 54.701248], + [20.360277, 54.69014], + [19.803611755, 54.442424775], + [21.440334321, 54.322387695], + [22.787775041, 54.363601684], + [22.73958397, 54.723331453], + [22.887853623, 54.788215638], + [22.563661576, 55.074752808], + [22.051698684, 55.030902863], + [21.388672, 55.29071], + [21.283080829, 55.240722997] + ] + ], + [ + [ + [142.09166, 73.904167], + [140.945831, 73.787498], + [140.739059, 73.573433], + [140.370834, 73.443748], + [139.87291, 73.435417], + [139.879166, 73.339584], + [140.366669, 73.408333], + [140.931244, 73.408333], + [141.46666, 73.308334], + [143.214584, 73.181252], + [143.577087, 73.206253], + [143.563019, 73.440102], + [143.28125, 73.602081], + [142.495834, 73.837502], + [142.09166, 73.904167] + ] + ], + [ + [ + [-179.008331, 71.583336], + [-179.99791, 71.528847], + [-179.99791, 70.979164], + [-179.183334, 70.893753], + [-177.919266, 71.021355], + [-177.542191, 71.140099], + [-177.510422, 71.26667], + [-178.010422, 71.445831], + [-178.539581, 71.556252], + [-179.008331, 71.583336] + ] + ], + [ + [ + [50.883335, 80.935417], + [50.239582, 80.881248], + [49.793751, 80.908333], + [49.102085, 80.779167], + [49.206249, 80.51458], + [48.866665, 80.48542], + [48.408333, 80.554169], + [47.520832, 80.477081], + [48.070835, 80.293747], + [47.243752, 80.29792], + [47.177082, 80.381248], + [46.71875, 80.291664], + [47.141666, 80.15625], + [47.387501, 80.23542], + [47.879166, 80.193748], + [47.724998, 80.050003], + [48.502083, 80.20208], + [48.768749, 80.147919], + [48.744274, 80.36927], + [49.520832, 80.345833], + [49.720833, 80.481247], + [50.75, 80.529167], + [51.706249, 80.689583], + [51.28125, 80.79792], + [50.333332, 80.73542], + [50.883335, 80.935417] + ] + ], + [ + [ + [49.166668, 69.502083], + [48.706249, 69.45208], + [48.314583, 69.254166], + [48.210937, 68.906769], + [48.585415, 68.70417], + [48.943748, 68.722916], + [49.716667, 68.868752], + [50.16927, 69.177605], + [49.932816, 69.31823], + [49.166668, 69.502083] + ] + ], + [ + [ + [64.572914, 81.208336], + [63.839584, 81.125], + [63.891666, 81.043747], + [63.045834, 80.962502], + [62.541668, 80.806252], + [63.122917, 80.645836], + [64.29792, 80.70208], + [64.961983, 80.781769], + [65.397919, 80.90625], + [65.397919, 81.152084], + [64.572914, 81.208336] + ] + ], + [ + [ + [61.822918, 80.866669], + [60.439583, 80.785416], + [59.674999, 80.79792], + [59.431774, 80.657814], + [59.381248, 80.46875], + [59.668751, 80.383331], + [60.393749, 80.458336], + [61.120834, 80.370834], + [61.504684, 80.53698], + [61.989582, 80.583336], + [62.122398, 80.828651], + [61.822918, 80.866669] + ] + ], + [ + [ + [59.068748, 70.441666], + [58.808857, 70.424484], + [58.489582, 70.25], + [58.617188, 70.078651], + [59.066666, 69.85833], + [59.197918, 69.914581], + [59.633335, 69.833336], + [59.61198, 69.716148], + [59.987499, 69.65625], + [60.5, 69.71875], + [60.452084, 69.929169], + [60.227604, 69.985939], + [59.068748, 70.441666] + ] + ], + [ + [ + [91.970314, 80.080734], + [91.581253, 80.068748], + [91.15625, 79.95208], + [91.300003, 79.831253], + [92.114586, 79.810417], + [92.51667, 79.666664], + [93.14167, 79.70417], + [93.841667, 79.92083], + [92.989586, 80.027084], + [92.412498, 80.006248], + [91.970314, 80.080734] + ] + ], + [ + [ + [179.979172, 70.972916], + [179.99791, 71.529167], + [179.479691, 71.405731], + [178.629684, 71.070312], + [178.837494, 70.789581], + [179.108337, 70.862503], + [179.612503, 70.870834], + [179.979172, 70.972916] + ] + ], + [ + [ + [127.918747, 72.629166], + [127.05677, 72.53698], + [127.229164, 72.441666], + [127.67292, 72.433334], + [128.177078, 72.25], + [129.022919, 72.20208], + [129.522919, 72.304169], + [129.199997, 72.464584], + [128.697922, 72.45208], + [127.918747, 72.629166] + ] + ], + [ + [ + [112.154167, 74.541664], + [112.018753, 74.377083], + [111.67083, 74.239586], + [112.833336, 74.07917], + [113.195313, 74.198433], + [113.424484, 74.44323], + [113.058334, 74.508331], + [112.154167, 74.541664] + ] + ], + [ + [ + [70.881767, 73.473434], + [70.32917, 73.441666], + [70.032814, 73.355728], + [70.025002, 73.17083], + [70.377083, 73.010414], + [70.92292, 73.10833], + [71.675003, 73.154167], + [71.499481, 73.297401], + [70.881767, 73.473434] + ] + ], + [ + [ + [47.504166, 80.849998], + [46.189583, 80.662498], + [44.916668, 80.59375], + [46.097916, 80.554169], + [46.295834, 80.443748], + [46.875, 80.529167], + [47.299999, 80.685417], + [47.829166, 80.754166], + [48.063019, 80.667183], + [48.741146, 80.63073], + [48.508335, 80.79583], + [47.504166, 80.849998] + ] + ], + [ + [ + [168.545837, 70.01667], + [168.162506, 69.997917], + [167.850006, 69.789581], + [168.160934, 69.68177], + [168.914581, 69.554169], + [169.18541, 69.554169], + [169.402084, 69.864586], + [168.545837, 70.01667] + ] + ], + [ + [ + [57.979168, 80.474998], + [56.979168, 80.45208], + [57.232815, 80.395317], + [57.331249, 80.158333], + [58.058334, 80.091667], + [58.791668, 80.320831], + [58.858334, 80.429169], + [57.979168, 80.474998] + ] + ], + [ + [ + [54.729168, 81.102081], + [54.575001, 80.989586], + [55.422916, 80.95417], + [55.895832, 80.839584], + [56.674999, 80.79792], + [57.081249, 80.675003], + [57.743752, 80.758331], + [57.389584, 80.831253], + [56.570835, 80.904167], + [56.162498, 81.012497], + [55.364582, 81.01667], + [54.729168, 81.102081] + ] + ], + [ + [ + [164.596115, 59.228611], + [163.924942, 59.024212], + [163.580109, 58.568192], + [164.187225, 58.814724], + [164.640717, 58.871029], + [164.73555, 59.030556], + [164.596115, 59.228611] + ] + ], + [ + [ + [77.758331, 72.597916], + [77.33802, 72.518234], + [76.962502, 72.275002], + [77.8125, 72.287498], + [78.293747, 72.447914], + [78.181252, 72.558334], + [77.758331, 72.597916] + ] + ], + [ + [ + [148.805283, 45.551945], + [148.343338, 45.289722], + [147.870834, 45.224167], + [147.283844, 44.877655], + [146.990829, 44.451389], + [147.336136, 44.714519], + [148.100006, 45.114166], + [148.65416, 45.336666], + [148.805283, 45.551945] + ] + ], + [ + [ + [57.00156, 80.347397], + [55.933334, 80.306252], + [56.204166, 80.060417], + [57.079166, 80.083336], + [57.00156, 80.347397] + ] + ], + [ + [ + [137.66713, 55.182125], + [137.304672, 54.907513], + [137.7005, 54.614952], + [138.006668, 54.796391], + [138.057526, 55.053085], + [137.66713, 55.182125] + ] + ], + [ + [ + [140.785416, 74.268753], + [140.297913, 74.241669], + [140.163025, 74.0849], + [140.420837, 73.918747], + [141.03334, 74.004166], + [141.058334, 74.23333], + [140.785416, 74.268753] + ] + ], + [ + [ + [156.059448, 50.763332], + [155.648499, 50.377586], + [155.238815, 50.304287], + [155.239624, 50.05582], + [155.879028, 50.242622], + [156.169449, 50.603611], + [156.059448, 50.763332] + ] + ], + [ + [ + [71.429687, 66.885933], + [70.254684, 66.605728], + [70.597916, 66.506248], + [71.093231, 66.620316], + [71.583336, 66.63958], + [71.429687, 66.885933] + ] + ], + [ + [ + [56.664585, 81.395836], + [56.566666, 81.243752], + [55.683334, 81.322914], + [55.568748, 81.199997], + [56.339584, 81.216667], + [56.420834, 81.158333], + [57.170834, 81.260414], + [57.797916, 81.289581], + [56.664585, 81.395836] + ] + ], + [ + [ + [79.219269, 73.069267], + [78.698433, 72.886978], + [78.89167, 72.73333], + [79.51667, 72.71875], + [79.379166, 73.012497], + [79.219269, 73.069267] + ] + ], + [ + [ + [61.429165, 81.122917], + [60.291668, 81.03125], + [60.022915, 80.960419], + [60.8125, 80.895836], + [61.560417, 81.027084], + [61.429165, 81.122917] + ] + ], + [ + [ + [90.89167, 81.229164], + [90.158333, 81.17083], + [90.474998, 81.043747], + [91.072914, 81.029167], + [91.566666, 81.175003], + [90.89167, 81.229164] + ] + ], + [ + [ + [53.045834, 80.38958], + [52.416668, 80.183334], + [53.541668, 80.145836], + [53.635418, 80.289581], + [53.045834, 80.38958] + ] + ], + [ + [ + [52.743752, 71.39167], + [52.258335, 71.324997], + [52.597916, 71.23333], + [52.821354, 71.065102], + [53.129166, 71.060417], + [53.185417, 71.252083], + [52.743752, 71.39167] + ] + ], + [ + [ + [138.837494, 71.966667], + [138.43541, 71.900002], + [138.250519, 71.747398], + [138.618744, 71.627083], + [139.045837, 71.76667], + [138.837494, 71.966667] + ] + ], + [ + [ + [135.735413, 75.864586], + [135.589584, 75.364586], + [135.978653, 75.402603], + [136.106247, 75.599998], + [135.735413, 75.864586] + ] + ], + [ + [ + [150.541946, 46.208332], + [150.33667, 46.223331], + [149.669998, 45.848888], + [149.666672, 45.623611], + [150.541946, 46.208332] + ] + ], + [ + [ + [58.989582, 81.854164], + [57.997917, 81.818748], + [58.179165, 81.689583], + [59.239582, 81.741669], + [58.989582, 81.854164] + ] + ], + [ + [ + [161.413025, 69.523437], + [161.094269, 69.447395], + [161.139069, 69.127602], + [161.318756, 69.033333], + [161.476562, 69.174484], + [161.413025, 69.523437] + ] + ], + [ + [ + [56.227085, 81.089584], + [57.262501, 80.933334], + [57.510418, 80.839584], + [57.897915, 80.833336], + [57.575001, 81.022919], + [56.227085, 81.089584] + ] + ], + [ + [ + [146.17305, 44.513332], + [145.747757, 44.05999], + [145.399246, 43.831741], + [145.544449, 43.732498], + [145.944275, 44.152424], + [146.295273, 44.275002], + [146.17305, 44.513332] + ] + ], + [ + [ + [165.997253, 55.357368], + [166.175644, 54.961899], + [166.67099, 54.678589], + [166.593887, 54.913055], + [165.997253, 55.357368] + ] + ], + [ + [ + [95.908333, 76.306252], + [95.352081, 76.28125], + [95.800003, 76.147919], + [96.45417, 76.13958], + [96.283333, 76.29792], + [95.908333, 76.306252] + ] + ], + [ + [ + [57.616665, 81.554169], + [57.006248, 81.525002], + [57.868752, 81.377083], + [58.481251, 81.45417], + [57.616665, 81.554169] + ] + ], + [ + [ + [79.596352, 80.895317], + [79.120834, 80.877083], + [79.072914, 80.741669], + [80.131248, 80.783333], + [80.054169, 80.868752], + [79.596352, 80.895317] + ] + ], + [ + [ + [63.275002, 81.706253], + [62.202084, 81.685417], + [62.741665, 81.59375], + [63.647915, 81.591667], + [63.275002, 81.706253] + ] + ], + [ + [ + [55.102085, 80.866669], + [54.358334, 80.85833], + [54.941666, 80.716667], + [55.654167, 80.758331], + [55.102085, 80.866669] + ] + ], + [ + [ + [69.550522, 66.761978], + [69.673439, 66.533852], + [69.875, 66.464584], + [70.149483, 66.672401], + [69.550522, 66.761978] + ] + ], + [ + [ + [56.485416, 80.747917], + [55.9375, 80.739586], + [55.802082, 80.635414], + [56.739582, 80.612503], + [56.485416, 80.747917] + ] + ], + [ + [ + [129.147919, 73.125], + [128.864578, 73.035416], + [128.573441, 72.982811], + [128.383331, 72.96875], + [128.22084, 72.910416], + [128.464584, 72.925003], + [128.777084, 72.908333], + [129.236984, 72.985939], + [129.147919, 73.125] + ] + ], + [ + [ + [51.033333, 80.097916], + [50.402084, 79.929169], + [51.362499, 79.912498], + [51.033333, 80.097916] + ] + ], + [ + [ + [74.504166, 73.104164], + [74.112503, 72.991669], + [74.616669, 72.84375], + [74.731247, 73.081253], + [74.504166, 73.104164] + ] + ], + [ + [ + [107.592186, 78.173439], + [106.579689, 78.1474], + [106.822914, 78.087502], + [107.625, 78.052086], + [107.592186, 78.173439] + ] + ], + [ + [ + [76.287498, 79.65625], + [76.777084, 79.487503], + [77.527084, 79.481247], + [76.65625, 79.633331], + [76.287498, 79.65625] + ] + ], + [ + [ + [58.829166, 80.875], + [58.164585, 80.854164], + [57.929165, 80.758331], + [58.545834, 80.727081], + [58.829166, 80.875] + ] + ], + [ + [ + [137.831253, 71.595833], + [137.050522, 71.53698], + [137.78125, 71.410416], + [137.831253, 71.595833] + ] + ], + [ + [ + [135.491669, 74.227081], + [135.748428, 74.038017], + [136.199478, 73.875519], + [136.260422, 73.981247], + [135.491669, 74.227081] + ] + ], + [ + [ + [96.502083, 77.175003], + [95.844269, 77.050522], + [95.995834, 76.962502], + [96.543228, 77.090103], + [96.502083, 77.175003] + ] + ], + [ + [ + [59.514584, 80.085419], + [59.150002, 80.072914], + [59.279167, 79.92083], + [59.743752, 79.945831], + [59.514584, 80.085419] + ] + ], + [ + [ + [149.458328, 76.752083], + [148.847916, 76.724998], + [148.504166, 76.635414], + [149.225006, 76.637497], + [149.458328, 76.752083] + ] + ], + [ + [ + [53.945835, 80.597916], + [53.889584, 80.45417], + [54.352085, 80.416664], + [54.247917, 80.583336], + [53.945835, 80.597916] + ] + ], + [ + [ + [137.19278, 55.113888], + [136.682129, 54.950035], + [137.06311, 54.916367], + [137.19278, 55.113888] + ] + ], + [ + [ + [50.110416, 80.220833], + [49.602085, 80.175003], + [49.912498, 80.04792], + [50.110416, 80.220833] + ] + ], + [ + [ + [83.386978, 70.776566], + [83.11927, 70.638016], + [83.162498, 70.375], + [83.386978, 70.776566] + ] + ], + [ + [ + [128.508331, 72.883331], + [128.354172, 72.787498], + [129.147919, 72.793747], + [128.508331, 72.883331] + ] + ], + [ + [ + [57.902084, 81.212502], + [57.258335, 81.193748], + [57.733334, 81.10833], + [57.902084, 81.212502] + ] + ], + [ + [ + [58.135418, 81.07917], + [58.270832, 80.945831], + [58.670834, 81.022919], + [58.135418, 81.07917] + ] + ], + [ + [ + [-172.370834, 64.82917], + [-172.635422, 64.691666], + [-172.063019, 64.756767], + [-172.370834, 64.82917] + ] + ], + [ + [ + [154.855835, 49.63139], + [154.654449, 49.416943], + [154.84166, 49.326389], + [154.855835, 49.63139] + ] + ], + [ + [ + [35.78125, 65.164581], + [35.500519, 65.11927], + [35.739582, 64.956253], + [35.78125, 65.164581] + ] + ], + [ + [ + [156.495438, 50.846275], + [156.200439, 50.768822], + [156.402023, 50.630035], + [156.495438, 50.846275] + ] + ], + [ + [ + [112.183334, 76.61042], + [112.472916, 76.433334], + [112.48333, 76.606247], + [112.183334, 76.61042] + ] + ] + ] + }, + "properties": { + "id": "537face1-04f5-41f1-a8e6-b31ea20e3a00", + "code": "RUS", + "name": "Russia", + "abbreviation": "C-RUS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [30.543420792, -2.413010359], + [30.853281022, -2.319875717], + [30.839162826, -1.650841832], + [30.56898117, -1.337487221], + [30.471065521, -1.055845856], + [30.169265747, -1.343921662], + [29.593131994, -1.387020823], + [29.360721948, -1.511828216], + [29.125940323, -1.889606118], + [29.093341827, -2.276407718], + [28.866735459, -2.435736656], + [29.040174484, -2.743100167], + [29.326025, -2.65336], + [29.370906829, -2.839972734], + [29.890018464, -2.750910998], + [30.036838532, -2.353201627], + [30.408830643, -2.309834957], + [30.543420792, -2.413010359] + ] + ] + }, + "properties": { + "id": "e3d75233-17cc-4379-a616-7fc9a22d6d96", + "code": "RWA", + "name": "Rwanda", + "abbreviation": "C-RWA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [55.587638855, -21.373472214], + [55.837360382, -21.183750152], + [55.666526795, -20.925971985], + [55.453193665, -20.87236023], + [55.216251373, -21.040138245], + [55.339027406, -21.28125], + [55.587638855, -21.373472214] + ] + ] + }, + "properties": { + "id": "9f1b3ed6-0e41-481b-8866-0d6771e412fe", + "code": "REU", + "name": "Réunion", + "abbreviation": "C-REU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-5.727557, -16.01469], + [-5.636167, -15.973866], + [-5.656857, -15.911479], + [-5.757792, -15.948486], + [-5.727557, -16.01469] + ] + ] + }, + "properties": { + "id": "c922c100-2c3f-400b-b78b-c0c49cdeff7c", + "code": "SHN", + "name": "Saint Helena, Ascension and Tris", + "abbreviation": "C-SHN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.683750152, 17.294305801], + [-62.809860229, 17.417917251], + [-62.863750459, 17.369583131], + [-62.683750152, 17.294305801] + ] + ] + }, + "properties": { + "id": "868c31be-c216-47a5-8275-5bf48898a4d5", + "code": "KNA", + "name": "Saint Kitts and Nevis", + "abbreviation": "C-KNA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.895138, 13.870139], + [-60.947917939, 14.107639314], + [-61.079303741, 13.882640838], + [-60.895138, 13.870139] + ] + ] + }, + "properties": { + "id": "9162ab94-600e-4245-b416-d66dcbada350", + "code": "LCA", + "name": "Saint Lucia", + "abbreviation": "C-LCA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-56.323501587, 46.940872193], + [-56.260833741, 47.064445496], + [-56.389999389, 47.055831909], + [-56.323501587, 46.940872193] + ] + ] + }, + "properties": { + "id": "71a11d7b-c3f3-4fce-b837-852195ebd69c", + "code": "SPM", + "name": "Saint Pierre and Miquelon", + "abbreviation": "C-SPM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.237083435, 13.156528473], + [-61.114307404, 13.239307404], + [-61.202084, 13.371528], + [-61.237083435, 13.156528473] + ] + ] + }, + "properties": { + "id": "8bb3de78-8162-4131-8185-47b04794e4b6", + "code": "VCT", + "name": "Saint Vincent and the Grenadines", + "abbreviation": "C-VCT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-62.799503896, 17.896336971], + [-62.852435426, 17.903673548], + [-62.840301853, 17.879994274], + [-62.799503896, 17.896336971] + ] + ] + }, + "properties": { + "id": "bf02ea96-d76c-4299-8754-144d2ea5d35d", + "code": "BLM", + "name": "Saint-Barthélemy", + "abbreviation": "C-BLM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-63.139431, 18.052361], + [-63.013588, 18.053194], + [-63.018471, 18.121248], + [-63.139431, 18.052361] + ] + ] + }, + "properties": { + "id": "6024195f-fca3-4f95-ae76-5c15a2658327", + "code": "MAF", + "name": "Saint-Martin", + "abbreviation": "C-MAF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-172.221100001, -13.796589], + [-172.316116333, -13.451110839], + [-172.786911011, -13.544398308], + [-172.52784729, -13.803797723], + [-172.221100001, -13.796589] + ] + ], + [ + [ + [-171.432434, -14.032986], + [-171.830551147, -13.792776109], + [-172.054443359, -13.903334617], + [-171.761810303, -14.044890403], + [-171.432434, -14.032986] + ] + ] + ] + }, + "properties": { + "id": "35cd3d99-c916-471d-8742-2a06bab02e16", + "code": "WSM", + "name": "Samoa", + "abbreviation": "C-WSM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [12.453890215, 43.970825504], + [12.412594795, 43.897838593], + [12.486310959, 43.899871826], + [12.453890215, 43.970825504] + ] + ] + }, + "properties": { + "id": "4d4981ee-bb40-4037-8515-a5687c048381", + "code": "SMR", + "name": "San Marino", + "abbreviation": "C-SMR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [39.212409951, 32.152431774], + [39.0063116, 32.0006304], + [37.006171199, 31.5006395], + [37.997146101, 30.5006607], + [37.665557401, 30.3326227], + [37.5055049, 30.000768799], + [36.7849032, 29.8679012], + [36.527287199, 29.5143326], + [36.072811699, 29.183401], + [35.053088, 29.344404], + [34.957162, 29.356106], + [34.679531, 28.131656], + [35.199913, 28.055198], + [35.534833, 27.53145], + [36.283261199, 26.5470127], + [36.4975477, 26.116931699], + [36.7057866, 26.030756801], + [36.67217, 25.843733], + [36.967747, 25.605577], + [37.264117, 25.129794], + [37.225005, 24.703742], + [37.578886, 24.245693], + [37.687503, 24.301231], + [38.45925, 23.782058], + [38.637701, 23.507053], + [38.79017, 23.028488], + [39.078501, 22.580371], + [39.135271, 22.369981], + [38.948576, 21.915825], + [39.183766, 21.392113], + [39.196351, 21.095846], + [39.665516, 20.454228], + [40.06219, 20.288358], + [40.738455, 19.797265], + [40.809963, 19.577074], + [41.166696, 19.04041], + [41.256674, 18.613302], + [41.716299, 17.913257], + [42.310096, 17.4461], + [42.325965, 17.285885], + [42.669198, 16.790083], + [42.768123, 16.405297], + [42.909798, 16.392508], + [43.120722, 16.528583], + [43.24075, 17.480527799], + [43.484638901, 17.5451111], + [43.683332587, 17.366667371], + [44.4666667, 17.4333333], + [45.216666699, 17.4333333], + [45.399999999, 17.3333333], + [46.366666701, 17.2333333], + [46.75, 17.2833333], + [47, 16.95], + [47.4666667, 17.1166667], + [47.6000003, 17.449999401], + [48.183333299, 18.1666667], + [49.116666701, 18.616666699], + [50.7833333, 18.7888889], + [51.999999999, 18.999998094], + [54.999999999, 20.000000001], + [55.666685101, 22.0000149], + [55.213485447, 22.702154118], + [55.137337901, 22.631621401], + [52.58104, 22.939204], + [51.590376094, 24.126970892], + [51.589015, 24.254543], + [51.280093, 24.290886299], + [51.113519, 24.472111], + [50.804335, 24.743569], + [50.545470499, 25.1339727], + [50.490124901, 25.4068959], + [50.2226499, 25.7346793], + [49.953640001, 26.1979299], + [49.589979999, 26.4503399], + [49.75098, 26.668929899], + [50.016460001, 26.4481099], + [49.953379, 26.853285199], + [49.782228, 26.89852], + [49.533575, 27.195611], + [49.420236, 27.09918], + [49.256006, 27.524062], + [48.867128, 27.595978], + [48.883715, 27.834157], + [48.622857, 28.084743], + [48.430363, 28.534302], + [47.704461, 28.524362], + [47.4651668, 28.999916901], + [46.542605136, 29.097971216], + [46.4245353, 29.058566099], + [44.7268814, 29.191659599], + [43.6072998, 30.023021699], + [42.0855991, 31.1116578], + [41.440726101, 31.3732074], + [40.4132544, 31.9480762], + [39.212409951, 32.152431774] + ] + ] + }, + "properties": { + "id": "4ced6744-a307-4ff2-9e9f-678428053a91", + "code": "SAU", + "name": "Saudi Arabia", + "abbreviation": "C-SAU", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-16.747917175, 13.064655303], + [-16.791250228, 12.48486042], + [-16.714891435, 12.339930535], + [-16.201256, 12.460594], + [-15.680843353, 12.424531937], + [-15.173559189, 12.68426323], + [-13.708568573, 12.674434662], + [-13.071542, 12.643987], + [-12.757684708, 12.43312931], + [-12.389674186, 12.374944686], + [-12.061086654, 12.433949471], + [-11.377452851, 12.417995453], + [-11.382016183, 12.995388032], + [-11.62743187, 13.397066117], + [-11.796690942, 13.313722611], + [-12.067743301, 13.707526207], + [-11.947833062, 13.812830925], + [-12.019219399, 14.279276847], + [-12.201363564, 14.408751489], + [-12.238911629, 14.759259224], + [-12.461545944, 14.982006074], + [-12.849134446, 15.199854852], + [-12.963149071, 15.497569085], + [-13.251791001, 15.655238151], + [-13.374959946, 16.053251267], + [-13.843576432, 16.106767654], + [-14.327065468, 16.630088807], + [-14.893631935, 16.632528306], + [-15.705521584, 16.47363472], + [-16.280223847, 16.515396117], + [-16.509552003, 16.061672211], + [-16.543750763, 15.764617921], + [-17.128749848, 14.910416604], + [-17.525965, 14.751797], + [-17.252508163, 14.703039169], + [-16.775417328, 14.060695649], + [-16.758751, 13.809583], + [-16.54521, 13.592391], + [-15.47307682, 13.590885162], + [-15.426857949, 13.728193283], + [-15.062114715, 13.826889991], + [-14.780427999, 13.651931], + [-14.49616623, 13.616292955], + [-14.321198463, 13.455093384], + [-13.9589777, 13.578852653], + [-13.85964489, 13.322502136], + [-14.347830771, 13.227734565], + [-15.022415162, 13.508973121], + [-15.37951374, 13.355257988], + [-15.802063943, 13.34800148], + [-15.802509309, 13.181070328], + [-16.701984405, 13.162057877], + [-16.747917175, 13.064655303] + ] + ] + }, + "properties": { + "id": "08f90ab4-d601-467c-96f5-2c7cad000e1c", + "code": "SEN", + "name": "Senegal", + "abbreviation": "C-SEN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [19.185674667, 43.53514862], + [19.179483414, 43.471149444], + [19.797666549, 43.086166381], + [20.313747407, 42.826240539], + [20.633623124, 43.015964509], + [20.56627655, 43.185661316], + [21.071443557, 43.106533051], + [21.43242836, 42.858020783], + [21.7405262, 42.547992706], + [21.59392166, 42.247520448], + [21.94235611, 42.32038498], + [22.345737457, 42.304096222], + [22.499036788, 42.38879013], + [22.423133849, 42.786884307], + [22.955797196, 43.10042572], + [22.734609604, 43.370834351], + [22.51262474, 43.461688996], + [22.34377861, 43.795104981], + [22.404434205, 43.99427414], + [22.680921891, 44.212676857], + [22.475465774, 44.480968476], + [22.764814377, 44.540554048], + [22.462968826, 44.715568544], + [22.181060791, 44.479679108], + [21.991159439, 44.634048462], + [21.642705916, 44.659656524], + [21.457685471, 45.040779113], + [21.484310151, 45.192481994], + [21.018157958, 45.325023652], + [20.834533691, 45.480304719], + [20.804250717, 45.738155364], + [20.349887848, 46.000003814], + [20.265501022, 46.124713898], + [19.563688278, 46.180782318], + [19.274522782, 45.99798584], + [18.81132698, 45.911281586], + [18.919952392, 45.549263], + [19.184112548, 45.219303131], + [19.03316307, 44.870052338], + [19.365951539, 44.896987915], + [19.122179031, 44.526576996], + [19.612438202, 44.023971559], + [19.240442276, 44.013515473], + [19.510490417, 43.719890595], + [19.185674667, 43.53514862] + ] + ] + }, + "properties": { + "id": "5cabf248-c889-4e7c-b6a4-2910c2264e06", + "code": "SRB", + "name": "Serbia", + "abbreviation": "C-SRB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [55.46939, -4.63127], + [55.374512, -4.63375], + [55.490081787, -4.730409145], + [55.46939, -4.63127] + ] + ] + }, + "properties": { + "id": "a27c589c-b6a1-4ac7-acc3-c1ca91d7fd9c", + "code": "SYC", + "name": "Seychelles", + "abbreviation": "C-SYC", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-13.303506, 9.039858], + [-13.169306, 8.52625], + [-13.293194772, 8.435694696], + [-13.16514, 8.173472], + [-12.987915992, 8.234581947], + [-12.946805, 7.902362], + [-12.443194, 7.520417], + [-12.509861, 7.383749], + [-11.883749961, 7.159584999], + [-11.485695, 6.91783], + [-11.30880928, 7.203296184], + [-10.601117133, 7.770023823], + [-10.600068092, 8.026383401], + [-10.346570968, 8.149065017], + [-10.268709182, 8.49120617], + [-10.553540229, 8.307664871], + [-10.584836005, 9.043245315], + [-10.668852807, 9.309306145], + [-11.206748962, 10.000431061], + [-11.885848999, 9.997462272], + [-12.12001896, 9.871853828], + [-12.431738854, 9.881637574], + [-12.686799049, 9.40917778], + [-12.935078621, 9.286656379], + [-13.002149581, 9.097373962], + [-13.303506, 9.039858] + ] + ], + [ + [ + [-12.620417, 7.640694], + [-12.945417, 7.579306], + [-12.587085, 7.456807], + [-12.620417, 7.640694] + ] + ] + ] + }, + "properties": { + "id": "96066e81-14c6-46b9-89e8-827e69aeb14b", + "code": "SLE", + "name": "Sierra Leone", + "abbreviation": "C-SLE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [103.7575, 1.298612], + [103.990639, 1.329312], + [103.804443, 1.470279], + [103.7575, 1.298612] + ] + ] + }, + "properties": { + "id": "26db71a4-5236-420c-9320-547fb0a98a13", + "code": "SGP", + "name": "Singapore", + "abbreviation": "C-SGP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-63.139431, 18.052361], + [-63.069862, 18.015694], + [-63.013588, 18.053194], + [-63.139431, 18.052361] + ] + ] + }, + "properties": { + "id": "fc0f7d94-7b4b-46fc-83e5-09dce7b80058", + "code": "SXM", + "name": "Sint Maarten", + "abbreviation": "C-SXM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [17.160628178, 48.008037749], + [17.725038529, 47.754268647], + [18.662952422, 47.761344909], + [18.848052978, 48.052459718], + [19.468629838, 48.087902069], + [19.628635406, 48.251419069], + [19.816638946, 48.170585633], + [20.2871418, 48.263687134], + [20.507484436, 48.53308487], + [20.840295791, 48.58637619], + [21.16075325, 48.523136139], + [21.441425324, 48.585346222], + [21.732946395, 48.34992218], + [22.157321931, 48.405391694], + [22.567663194, 49.088626862], + [22.04066658, 49.2251091], + [21.63094139, 49.447307587], + [21.124021531, 49.436580657], + [20.925634385, 49.296051025], + [20.739860535, 49.417110442], + [20.192207337, 49.341156006], + [20.075502396, 49.178764343], + [19.767303466, 49.206016541], + [19.467376709, 49.613761902], + [19.197399139, 49.41456604], + [18.850496293, 49.51858139], + [18.558023453, 49.512805939], + [18.157957076, 49.272239686], + [18.106492997, 49.081001282], + [17.51516533, 48.809707642], + [17.199533462, 48.881229401], + [16.924345983, 48.621355889], + [16.851498404, 48.449987858], + [17.160628178, 48.008037749] + ] + ] + }, + "properties": { + "id": "be351ddb-ecf0-4aa9-b669-ba13f598741a", + "code": "SVK", + "name": "Slovakia", + "abbreviation": "C-SVK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [13.713896501, 46.523197941], + [13.382119179, 46.293251038], + [13.666212924, 46.170339168], + [13.609933854, 45.816722871], + [13.722361565, 45.594970704], + [13.567174911, 45.48513794], + [14.689496994, 45.527175903], + [15.377919198, 45.49200058], + [15.256242751, 45.740131379], + [15.679810524, 45.869182587], + [15.651285172, 46.213462829], + [15.996046066, 46.318244934], + [16.254442216, 46.515022278], + [16.584312439, 46.479049682], + [16.293876649, 46.873706818], + [16.113840435, 46.869569682], + [16.000324829, 46.680454388], + [15.654891813, 46.706565746], + [15.044928171, 46.652472602], + [14.525084622, 46.422349759], + [13.713896501, 46.523197941] + ] + ] + }, + "properties": { + "id": "01437db2-f586-455d-b94c-dd60d9081180", + "code": "SVN", + "name": "Slovenia", + "abbreviation": "C-SVN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [160.742783, -9.904999], + [160.834503, -9.852404], + [160.383605957, -9.421388626], + [159.905838012, -9.425000191], + [159.6875, -9.250555039], + [159.613616943, -9.538612365], + [159.822494506, -9.800556184], + [160.322662354, -9.81156826], + [160.742783, -9.904999] + ] + ], + [ + [ + [161.397507, -9.5425], + [161.158462524, -8.977778434], + [160.940002442, -8.821389198], + [161.001190186, -8.641811371], + [160.807495, -8.380278], + [160.577224732, -8.3908329], + [160.849517822, -9.139634131], + [161.397507, -9.5425] + ] + ], + [ + [ + [159.770554, -8.428055], + [159.853333, -8.341945001], + [159.365051, -7.979791], + [159.066116, -7.899722], + [158.720718, -7.588844], + [158.61528, -7.771111], + [159.197495, -8.186112], + [159.770554, -8.428055] + ] + ], + [ + [ + [156.790664672, -7.068397999], + [156.931061, -7.219061], + [157.444717, -7.428889], + [157.138535, -7.12442], + [157.098328, -6.956944], + [156.461945, -6.589445], + [156.40834, -6.734721], + [156.790664672, -7.068397999] + ] + ], + [ + [ + [162.278763, -10.822577], + [162.104446412, -10.494444847], + [161.811966, -10.444297], + [161.427215577, -10.212222099], + [161.511795, -10.568451], + [161.939163209, -10.797681808], + [162.278763, -10.822577] + ] + ], + [ + [ + [157.853607, -8.564444], + [157.90416, -8.481111], + [157.371109009, -8.024998665], + [157.213333, -8.309167], + [157.525833, -8.252776], + [157.609161, -8.471945], + [157.853607, -8.564444] + ] + ] + ] + }, + "properties": { + "id": "aa1baed3-429f-4c7c-91a0-2a2c4e8492fd", + "code": "SLB", + "name": "Solomon Islands", + "abbreviation": "C-SLB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.93608288, 10.966264936], + [42.704685212, 10.574638368], + [42.804515946, 10.314758127], + [43.213394165, 9.871968269], + [43.415462494, 9.476858139], + [44.156364442, 8.937956809], + [46.999328614, 7.985087871], + [47.958229065, 8.012583732], + [45.001667022, 4.932207108], + [44.028961182, 4.939652444], + [43.397472381, 4.784063816], + [43.033039094, 4.554564476], + [42.692008973, 4.224504948], + [42.203907014, 4.161425592], + [41.926216126, 4.002295495], + [41.328128815, 3.158634902], + [40.986560822, 2.819380999], + [40.988632202, 0.014013001], + [41.004299, -0.823578], + [41.575416566, -1.642361999], + [42.108749, -0.844583], + [43.379859923, 0.536249996], + [44.59375, 1.586806059], + [45.084862, 1.906806], + [45.901248931, 2.351804972], + [46.66986084, 3.065694094], + [47.937362672, 4.447360993], + [48.289028168, 5.028749944], + [48.912361145, 5.92097187], + [49.214584351, 6.748472214], + [49.666805267, 7.433751106], + [49.818195344, 7.920138837], + [50.130138396, 8.196528434], + [50.445972443, 8.898471832], + [50.829029083, 9.419029237], + [50.898472, 10.311529], + [51.134583, 10.672916], + [51.183472, 11.144305], + [51.077362, 11.239862], + [51.288192749, 11.834028244], + [50.795139313, 11.988192558], + [50.57208252, 11.905693055], + [50.444862366, 11.682083129], + [50.071250916, 11.505417823], + [49.555137634, 11.449027061], + [49.393196106, 11.332082749], + [48.955139159, 11.240415573], + [48.656806947, 11.325694084], + [48.156528472, 11.132362365], + [47.668194, 11.095417], + [47.417915, 11.178193], + [46.653194427, 10.740416526], + [46.431251526, 10.681249619], + [45.804584504, 10.868472099], + [44.945972443, 10.408472061], + [44.292915343, 10.428749084], + [43.652084, 10.991527], + [43.478748, 11.328194], + [43.258129, 11.460972], + [42.93608288, 10.966264936] + ] + ] + }, + "properties": { + "id": "143d55cf-04ce-4f09-b7fd-c40c6df9849b", + "code": "SOM", + "name": "Somalia", + "abbreviation": "C-SOM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.000228881, -24.766942978], + [19.999160766, -28.427820206], + [19.54847908, -28.540840149], + [19.11829, -28.96944], + [18.728670119, -28.831699371], + [18.19383, -28.91527], + [17.92565, -28.768841001], + [17.410549, -28.71348], + [17.41403969, -28.37603967], + [17.082199097, -28.032949448], + [16.754579545, -28.272560118], + [16.73399, -28.494261], + [16.45813, -28.636805], + [16.817919, -29.096527], + [17.357915879, -30.482082367], + [17.87735939, -31.320972442], + [18.280416489, -31.897361756], + [18.334304809, -32.476528168], + [18.136806487, -32.778194427], + [17.922085, -32.720974], + [17.871528626, -33.000415802], + [18.284027, -33.454861], + [18.488193513, -33.851249694], + [18.310695648, -34.044303893], + [18.867639541, -34.160694122], + [18.810972213, -34.350971221], + [19.30514, -34.424862], + [19.655416, -34.785973], + [20.08291626, -34.733196259], + [20.930696, -34.366806], + [21.290693, -34.438751], + [21.905971527, -34.344306946], + [22.155695, -34.08625], + [22.564027786, -33.996250153], + [23.375416, -34.098473], + [23.569305, -33.980415], + [24.195138931, -34.059860229], + [24.825695039, -34.211250306], + [24.995138169, -33.978748321], + [25.578193665, -34.049304962], + [25.6720829, -33.814582824], + [25.931805, -33.71014], + [26.466528, -33.773193], + [27.113194, -33.523472], + [27.919027, -33.029305], + [28.880138, -32.278473], + [29.414581298, -31.691528321], + [29.961805, -31.33736], + [30.228195191, -31.058195114], + [30.624860763, -30.513473511], + [31.127084732, -29.653472899], + [31.756526947, -28.971250533], + [32.010139466, -28.88041687], + [32.375415803, -28.560138702], + [32.53541565, -28.191528321], + [32.683193208, -27.48513794], + [32.89125061, -26.858415603], + [32.133117676, -26.840190888], + [32.015861512, -26.819879532], + [31.977760314, -27.317520141], + [31.493259431, -27.314920424], + [31.150550842, -27.202079774], + [30.81321907, -26.844480514], + [30.805059432, -26.46667099], + [31.126600265, -25.921150208], + [31.41629982, -25.718759537], + [31.867860794, -25.999599456], + [31.973690033, -25.953199387], + [32.03358841, -25.132520676], + [31.987129211, -24.302200318], + [31.561019898, -23.481960297], + [31.56360054, -23.198230744], + [31.307275773, -22.420276642], + [30.831733698, -22.289381165], + [30.278530774, -22.349150761], + [29.773590088, -22.141420365], + [29.368310928, -22.197811127], + [29.036939622, -22.216310502], + [28.921869277, -22.458379745], + [28.342639923, -22.573720932], + [27.599720002, -23.217590331], + [27.528650284, -23.385269166], + [27.134050369, -23.536640167], + [26.971069337, -23.702760696], + [26.868049622, -24.245109557], + [26.393280029, -24.636629104], + [25.858310699, -24.75717926], + [25.888500213, -24.884290694], + [25.580879211, -25.638799667], + [25.334129334, -25.771020888], + [25.015270232, -25.725570678], + [24.685869217, -25.823329924], + [23.90337944, -25.626810073], + [23.468269348, -25.279470444], + [23.014129638, -25.29821968], + [22.863750458, -25.47961998], + [22.557409286, -26.221759797], + [22.192789078, -26.395849227], + [22.052160263, -26.632860183], + [21.787389756, -26.676059722], + [21.694839477, -26.861240387], + [21.134170532, -26.873760224], + [20.622430802, -26.786249161], + [20.604450227, -26.520839691], + [20.82278061, -26.176500321], + [20.788230896, -25.803110122], + [20.384170532, -25.034299851], + [20.000228881, -24.766942978] + ], + [ + [28.37182045, -30.169679641], + [28.20690918, -30.290670395], + [28.123199462, -30.663389206], + [27.781669616, -30.617300033], + [27.366889954, -30.273660659], + [27.096581, -29.729931001], + [27.614170075, -29.164180756], + [27.75358963, -28.898000716], + [28.028430939, -28.873949051], + [28.168510438, -28.705259322], + [28.612779616, -28.597480774], + [28.94380951, -28.782659531], + [29.356149673, -29.127580642], + [29.455610276, -29.341199874], + [29.162639617, -29.677009582], + [29.108989716, -29.936969756], + [28.858789444, -30.088230132], + [28.37182045, -30.169679641] + ] + ] + }, + "properties": { + "id": "178f827c-71f2-476f-b552-aa37787042dd", + "code": "ZAF", + "name": "South Africa", + "abbreviation": "C-ZAF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-37.68042, -53.986694], + [-37.268921, -54.260803], + [-36.487793, -54.573608], + [-36.097778, -54.891388], + [-35.894016, -54.540279], + [-36.633972, -54.118408], + [-37.68042, -53.986694] + ] + ] + }, + "properties": { + "id": "70d7df9c-517e-47eb-a3df-e661fd590c9e", + "code": "SGS", + "name": "South Georgia and the South Sand", + "abbreviation": "C-SGS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [126.543949242, 37.781810761], + [126.531617391, 37.655161402], + [126.782781022, 36.975124799], + [126.489059037, 37.059524972], + [126.135563915, 36.775970858], + [126.455276798, 36.595386616], + [126.706761878, 35.796515504], + [126.467247722, 35.634431611], + [126.320603542, 35.12748167], + [126.412419969, 34.842656662], + [126.280147402, 34.595421721], + [126.635438309, 34.412052906], + [127.268826014, 34.481762546], + [127.983378336, 34.975738435], + [128.132242555, 34.888523276], + [128.618753616, 35.135871898], + [128.834798112, 35.010656104], + [129.194398717, 35.160222339], + [129.458429814, 35.553256352], + [129.547180357, 36.084892837], + [129.372556342, 36.207016416], + [129.474994054, 36.697908085], + [129.356620835, 37.235680276], + [129.055406499, 37.675422113], + [128.60879611, 38.150147848], + [128.358484762, 38.611772897], + [128.137710571, 38.328300476], + [127.139442444, 38.307243347], + [126.975593999, 38.199679999], + [126.667114257, 37.785064698], + [126.543949242, 37.781810761] + ] + ], + [ + [ + [126.531660744, 33.52128762], + [126.161540511, 33.334150037], + [126.272150083, 33.194066745], + [126.83006446, 33.306582277], + [126.824935608, 33.558744107], + [126.531660744, 33.52128762] + ] + ] + ] + }, + "properties": { + "id": "b204e9c9-5bb4-4a31-ba1e-fa755c7d7ea8", + "code": "KOR", + "name": "South Korea", + "abbreviation": "C-KOR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [27.463420868, 5.016152859], + [28.026273728, 4.538108826], + [28.414470673, 4.282824516], + [29.028129577, 4.490709782], + [29.199041366, 4.356179715], + [29.475528717, 4.667393684], + [29.820289612, 4.558716774], + [29.798370362, 4.368258954], + [30.264030457, 3.956274986], + [30.771329879, 3.674677373], + [30.870231629, 3.482681989], + [30.972940444, 3.696516037], + [31.290119172, 3.796540976], + [31.507926941, 3.676660061], + [31.827354431, 3.818788051], + [32.089031219, 3.538037063], + [32.415290832, 3.745963096], + [33.027759551, 3.893971919], + [33.17881775, 3.779093028], + [33.514507293, 3.755254031], + [34.001964569, 4.221364975], + [34.371459961, 4.624292374], + [35.350734712, 5.009996415], + [35.537353516, 4.95882702], + [35.583602906, 4.623889923], + [35.869949342, 4.627306938], + [35.786293029, 4.731453418], + [35.854255676, 5.314599514], + [35.578666687, 5.414402485], + [35.300106049, 5.332475186], + [34.990890502, 5.895375729], + [35.013782502, 6.444958211], + [34.484283448, 6.904287815], + [34.19324112, 7.054917813], + [34.028770448, 7.369585514], + [33.672336578, 7.692183971], + [33.050086975, 7.787284852], + [33.189357758, 8.13451004], + [33.192653656, 8.406893731], + [33.62003708, 8.468573571], + [33.772457122, 8.369579315], + [34.142097473, 8.610931397], + [34.104160308, 9.48771286], + [33.891750335, 9.484760284], + [33.987941742, 9.929388047], + [33.951808929, 10.166219712], + [33.306148529, 10.815569878], + [33.138408661, 11.583299638], + [33.255249024, 12.201219558], + [32.723999023, 12.218999864], + [32.723999023, 11.906000137], + [32.174358369, 11.905389786], + [32.39307022, 11.693539619], + [32.396339416, 11.196709633], + [32.472740174, 11.027890207], + [31.99682045, 10.629859925], + [31.802619935, 10.307259561], + [31.348680496, 9.773063659], + [30.83126068, 9.71126175], + [30.60239029, 9.923901557], + [29.996770859, 10.288800239], + [29.520380021, 10.069600105], + [29.522029878, 9.738073349], + [29.067770004, 9.729149819], + [28.759059906, 9.337123871], + [28.033979416, 9.33458805], + [27.899959564, 9.603263855], + [27.288549424, 9.617733955], + [26.719720841, 9.482310295], + [26.369260789, 9.570934295], + [26.214450837, 9.90997982], + [25.92811966, 10.172309875], + [25.822000503, 10.418999672], + [25.079000473, 10.291999816], + [24.924999237, 9.899000168], + [24.742860795, 9.728356362], + [24.615940095, 9.383694649], + [24.579860687, 8.935362815], + [24.257768631, 8.67911911], + [24.203580857, 8.303997994], + [24.864749909, 8.180498123], + [24.909490585, 8.047219277], + [25.284540177, 7.803597927], + [25.173980714, 7.569643974], + [25.361097335, 7.344515801], + [25.804990768, 7.152908803], + [26.11469078, 6.815334797], + [26.415109635, 6.637384891], + [26.29789734, 6.387691975], + [26.560180663, 6.033278943], + [27.153097152, 5.771763801], + [27.233200073, 5.426796914], + [27.463420868, 5.016152859] + ] + ] + }, + "properties": { + "id": "42a57f46-76e6-4ccb-abea-670cd507689a", + "code": "SSD", + "name": "South Sudan", + "abbreviation": "C-SSD", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [1.440829039, 42.588253022], + [1.357378126, 42.719421386], + [0.708183944, 42.861328126], + [0.66871202, 42.68893814], + [0.000748, 42.685211183], + [-0.306374997, 42.841320038], + [-0.573617934, 42.807399751], + [-0.752805233, 42.966960908], + [-1.345170616, 43.092971803], + [-1.384181142, 43.253223419], + [-1.786638975, 43.350418091], + [-2.177917, 43.28764], + [-2.947083951, 43.435970306], + [-3.034028053, 43.367637634], + [-3.597637892, 43.512638093], + [-4.220973014, 43.393749237], + [-4.653751, 43.40097], + [-5.693749905, 43.547084809], + [-7.244027137, 43.566249848], + [-7.355971813, 43.670139313], + [-7.867915999, 43.770695], + [-8.262639, 43.556252], + [-8.547637939, 43.311248779], + [-8.984583, 43.28125], + [-9.256805, 43.092083], + [-9.298193932, 42.921527864], + [-8.889862, 42.49625], + [-8.873302459, 41.869888305], + [-8.526394843, 42.077056885], + [-8.196352005, 42.152729034], + [-8.164990425, 41.818115234], + [-7.733328818, 41.892276764], + [-7.427977085, 41.808166505], + [-7.076929092, 41.951931], + [-6.599432945, 41.948291779], + [-6.548253059, 41.685581208], + [-6.189142226, 41.574813843], + [-6.437616825, 41.305305481], + [-6.64836502, 41.24753952], + [-6.859950065, 40.950763703], + [-6.78121519, 40.36379242], + [-7.012691975, 40.225448608], + [-6.866662979, 40.015232087], + [-7.015522957, 39.6704216], + [-7.499413014, 39.589603425], + [-7.294268131, 39.456821443], + [-7.144035817, 39.108627319], + [-6.951142788, 39.023593902], + [-7.260046005, 38.722942352], + [-7.317526817, 38.440353394], + [-7.002025127, 38.022396087], + [-7.245584965, 37.991802216], + [-7.508997916, 37.523159028], + [-7.403612138, 37.177665711], + [-6.93014, 37.184307], + [-6.517917157, 36.975139618], + [-6.365906, 36.620728], + [-6.054305078, 36.203472138], + [-5.581250191, 36.012638091], + [-5.353473187, 36.157154083], + [-5.339028, 36.154674549], + [-5.217360974, 36.379306793], + [-4.639028072, 36.506248474], + [-4.428472, 36.708752], + [-3.260972977, 36.753192903], + [-2.699583053, 36.682361604], + [-2.367361, 36.841526], + [-2.194027901, 36.720973968], + [-2.002084016, 36.836250305], + [-1.795415997, 37.232917785], + [-1.356202, 37.55072], + [-0.717638, 37.606804], + [-0.85958302, 37.722915651], + [-0.63847202, 38.136806488], + [-0.376805008, 38.440692903], + [0.221806, 38.757637], + [-0.149583996, 38.987361909], + [-0.316249996, 39.523471833], + [0.742082001, 40.82347107], + [1.04541695, 41.063194276], + [2.113472, 41.289585], + [2.25708294, 41.452640533], + [2.777362108, 41.649307251], + [3.202639103, 41.891250611], + [3.124861956, 42.127082825], + [3.17407012, 42.435192107], + [2.839868069, 42.45898819], + [2.582230091, 42.357074737], + [2.257082463, 42.438488007], + [2.015197993, 42.347400666], + [1.721941949, 42.501228332], + [1.456564, 42.435902], + [1.440829039, 42.588253022] + ] + ], + [ + [ + [3.240138053, 39.37486267], + [3.457916, 39.744583], + [3.154861927, 39.766803741], + [3.023472, 39.933472], + [2.344584, 39.587917], + [2.644583941, 39.564861298], + [2.788750886, 39.361804963], + [3.049583911, 39.265140533], + [3.240138053, 39.37486267] + ] + ], + [ + [ + [-16.599306106, 28.027360917], + [-16.43486023, 28.140415192], + [-16.330415726, 28.577083589], + [-16.513474001, 28.419305999], + [-16.923749924, 28.354305267], + [-16.70652771, 28.008472442], + [-16.599306106, 28.027360917] + ] + ], + [ + [ + [-15.563194275, 27.760139465], + [-15.430972099, 27.802360536], + [-15.423471, 28.121529], + [-15.698193551, 28.164028168], + [-15.831527711, 27.909582138], + [-15.563194275, 27.760139465] + ] + ], + [ + [ + [-13.921806336, 28.250694275], + [-13.840417999, 28.727638], + [-14.019583001, 28.692083], + [-14.215418, 28.225973], + [-13.921806336, 28.250694275] + ] + ], + [ + [ + [4.300695, 39.840416], + [4.173193, 40.060696], + [3.827915906, 40.053749085], + [3.822361946, 39.922637941], + [4.300695, 39.840416] + ] + ], + [ + [ + [-17.795139312, 28.52263832], + [-17.788194657, 28.843751907], + [-18.007359, 28.782915], + [-17.795139312, 28.52263832] + ] + ] + ] + }, + "properties": { + "id": "f0d28cf6-0e73-460c-b40a-e900ab9e2602", + "code": "ESP", + "name": "Spain", + "abbreviation": "C-ESP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [114.286942, 11.055], + [114.280556, 11.051945], + [114.286942, 11.050555], + [114.286942, 11.055] + ] + ] + }, + "properties": { + "id": "dc3668c4-d415-4166-87fd-1c0a60357b8c", + "code": "XSP", + "name": "Spratly Islands", + "abbreviation": "C-XSP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [79.920418, 8.805417], + [79.834305, 8.129582], + [79.74514, 7.996016], + [79.871803284, 7.120972157], + [79.841247559, 6.931249141], + [80.063194275, 6.190764905], + [80.261528016, 5.999584199], + [80.717087, 5.959861], + [81.416252135, 6.264306069], + [81.697639466, 6.492639066], + [81.878471375, 7.022084235], + [81.862083434, 7.34236002], + [81.48764, 8.016806], + [81.321526, 8.525138], + [81.037918, 8.881529], + [80.815414, 9.287361], + [80.449303, 9.544584], + [80.248191833, 9.828194618], + [79.863747, 9.76264], + [80.170975, 9.65625], + [80.054581, 9.39236], + [80.120697, 9.22375], + [79.920418, 8.805417] + ] + ] + }, + "properties": { + "id": "bf1eb127-aa61-4ed8-be8c-533634323d1a", + "code": "LKA", + "name": "Sri Lanka", + "abbreviation": "C-LKA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [24.257768631, 8.67911911], + [24.579860687, 8.935362815], + [24.615940095, 9.383694649], + [24.742860795, 9.728356362], + [24.924999237, 9.899000168], + [25.079000473, 10.291999816], + [25.822000503, 10.418999672], + [25.92811966, 10.172309875], + [26.214450837, 9.90997982], + [26.369260789, 9.570934295], + [26.719720841, 9.482310295], + [27.288549424, 9.617733955], + [27.899959564, 9.603263855], + [28.033979416, 9.33458805], + [28.759059906, 9.337123871], + [29.067770004, 9.729149819], + [29.522029878, 9.738073349], + [29.520380021, 10.069600105], + [29.996770859, 10.288800239], + [30.60239029, 9.923901557], + [30.83126068, 9.71126175], + [31.348680496, 9.773063659], + [31.802619935, 10.307259561], + [31.99682045, 10.629859925], + [32.472740174, 11.027890207], + [32.396339416, 11.196709633], + [32.39307022, 11.693539619], + [32.174358369, 11.905389786], + [32.723999023, 11.906000137], + [32.723999023, 12.218999864], + [33.255249024, 12.201219558], + [33.138408661, 11.583299638], + [33.306148529, 10.815569878], + [33.951808929, 10.166219712], + [33.987941742, 9.929388047], + [33.891750335, 9.484760284], + [34.104160308, 9.48771286], + [34.233119964, 10.047500611], + [34.351406097, 10.220916748], + [34.297584534, 10.58566761], + [34.609779358, 10.897207261], + [34.765399933, 10.755145074], + [34.982345582, 10.898525238], + [34.929664611, 11.235751152], + [35.078003, 11.521461], + [35.046604156, 11.735230447], + [35.257106782, 11.934239388], + [35.64748764, 12.60518551], + [36.051094055, 12.722047806], + [36.499076842, 13.846787453], + [36.56085968, 14.266368867], + [36.438766479, 15.156636239], + [36.541568756, 15.228030205], + [36.962570191, 16.435497283], + [36.901100158, 16.675794601], + [37.021255182, 17.096046089], + [37.394653, 17.047132], + [37.515297616, 17.336853131], + [38.003860272, 17.55707905], + [38.260128, 17.558592], + [38.569859, 18.006536], + [38.405418, 18.177359], + [38.100693, 18.281805], + [37.954582, 18.558472], + [37.543194, 18.717638], + [37.411804, 18.876528], + [37.237362, 19.674028], + [37.193748, 20.463753], + [37.241806, 20.545694], + [37.09264, 21.072639], + [37.140141, 21.228193], + [36.911804, 21.615973], + [36.892918, 22.066528], + [36.440418, 22.358194], + [36.187916, 22.661528], + [35.94014, 22.687916], + [35.621292, 23.145147], + [35.21217, 22.787298], + [34.951351, 22.857571], + [34.691956, 22.297911], + [34.16069, 22.2071], + [34.005215, 21.772324], + [33.564083, 21.725389], + [33.166507721, 22.006193162], + [27.633972168, 22.007652283], + [24.999998094, 21.999200822], + [24.999998094, 20.000000001], + [24.000001907, 20.000000001], + [24.000001907, 19.50817303], + [24.001709, 15.704895], + [23.578140259, 15.753810882], + [23.122280121, 15.709900857], + [22.930589676, 15.550810815], + [22.999729156, 15.237211227], + [22.671070099, 14.848720551], + [22.717199326, 14.686429978], + [22.411161423, 14.595859527], + [22.536350249, 14.118578912], + [22.092212677, 13.776200295], + [22.284210204, 13.349691392], + [21.925670623, 13.046876907], + [21.934240342, 12.639361382], + [22.197887421, 12.750161171], + [22.458890915, 12.619771004], + [22.372142792, 12.441511155], + [22.635040284, 12.026799202], + [22.56608963, 11.620661736], + [22.986078263, 11.199601173], + [22.88133812, 10.93089962], + [23.301879884, 10.474639892], + [23.668241501, 9.891513825], + [23.653650285, 9.293912889], + [23.47631073, 9.141964913], + [23.588710785, 8.93418789], + [23.52010727, 8.726968765], + [24.257768631, 8.67911911] + ] + ] + }, + "properties": { + "id": "8e61ebbf-3973-403a-a69c-fb6cab5b5831", + "code": "SDN", + "name": "Sudan", + "abbreviation": "C-SDN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-54.524669648, 2.304801942], + [-54.22070694, 2.756202937], + [-54.21024704, 3.128951073], + [-54.014019012, 3.425174952], + [-54.026130677, 3.634015083], + [-54.362720489, 4.057462215], + [-54.474246978, 4.903629781], + [-54.011615754, 5.621387005], + [-54.018470763, 5.827361106], + [-54.663471222, 5.975972175], + [-55.852085, 5.979029], + [-55.935695648, 5.805416108], + [-56.958473, 6.012639], + [-57.146744, 5.992897], + [-57.180747985, 5.613527776], + [-57.348628997, 5.312994956], + [-57.329795837, 5.04158783], + [-57.680843354, 5.020936966], + [-57.928577423, 4.832964897], + [-57.845840453, 4.630971909], + [-58.086399078, 4.131200791], + [-57.692398071, 3.402242899], + [-57.30506134, 3.373516083], + [-57.207618714, 2.841795922], + [-57.103607178, 2.767931939], + [-56.689189911, 2.018347026], + [-56.480251313, 1.941472054], + [-55.994968415, 1.831146002], + [-55.909862517, 2.03271699], + [-56.047626495, 2.228108883], + [-55.946421067, 2.531918521], + [-55.738914489, 2.401213885], + [-55.42848587, 2.439435006], + [-54.972595215, 2.604665996], + [-54.858329773, 2.435056925], + [-54.524669648, 2.304801942] + ] + ] + }, + "properties": { + "id": "fa5cf9f2-57c9-4761-bedc-e9facd89f600", + "code": "SUR", + "name": "Suriname", + "abbreviation": "C-SUR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [16.272917, 80.056252], + [15.639584, 79.864586], + [15.652083, 79.741669], + [16.379168, 78.902084], + [16.070833, 79.012497], + [15.414583, 79.366669], + [14.927083, 79.73542], + [14.5375, 79.800003], + [13.85, 79.533333], + [14.116667, 79.32708], + [13.054167, 79.591667], + [12.38125, 79.51667], + [12.3625, 79.585419], + [13.225, 79.708336], + [13.683333, 79.685417], + [13.741667, 79.879166], + [12.58125, 79.758331], + [12.195833, 79.835419], + [12.248437, 79.660934], + [11.925, 79.70417], + [11.783334, 79.839584], + [11.202084, 79.779167], + [11.333854, 79.652603], + [10.727083, 79.558334], + [10.85625, 79.337502], + [11.204687, 79.109901], + [11.664062, 79.180733], + [11.458333, 79.333336], + [12.03125, 79.28125], + [11.704166, 79.064583], + [12.520833, 78.991669], + [12.372916, 78.885414], + [11.535937, 78.97448], + [11.898437, 78.638016], + [12.389584, 78.541664], + [13.083333, 78.229164], + [13.689584, 78.197914], + [14.277083, 78.29792], + [14.185416, 78.395836], + [14.75625, 78.387497], + [14.541667, 78.543747], + [14.620833, 78.73333], + [14.927083, 78.591667], + [15.479167, 78.683334], + [15.425, 78.458336], + [16.293751, 78.554169], + [16.49375, 78.697914], + [16.772917, 78.645836], + [16.139584, 78.362503], + [15.615104, 78.307816], + [14.8125, 78.120834], + [13.60625, 78.060417], + [13.79375, 77.745834], + [15.070833, 77.79792], + [15.339583, 77.870834], + [16.470833, 77.849998], + [16.762501, 77.8125], + [15.425, 77.73333], + [14.735416, 77.645836], + [15.810416, 77.522919], + [14.352083, 77.57917], + [13.945833, 77.427086], + [14.471354, 77.173439], + [15.047916, 77.158333], + [15.18125, 77.022919], + [15.825, 76.95417], + [15.495833, 76.879166], + [16.664583, 76.558334], + [17.045313, 76.635933], + [16.793751, 76.787498], + [17.258333, 76.939583], + [17.44375, 77.306252], + [17.768749, 77.518753], + [18.229166, 77.5], + [18.347918, 77.883331], + [18.522917, 78.056252], + [19.04323, 78.098434], + [19.0625, 78.335419], + [18.845833, 78.541664], + [19.970833, 78.629166], + [20.479166, 78.727081], + [21.214582, 78.67292], + [21.104166, 78.845833], + [20.639584, 78.852081], + [20.129168, 78.997917], + [19.793751, 78.95417], + [19.677084, 79.127083], + [19.370832, 79.179169], + [18.829166, 79.145836], + [18.6625, 79.537498], + [18.210417, 79.612503], + [18.004168, 79.445831], + [17.689583, 79.35833], + [17.61875, 79.550003], + [17.972918, 79.745834], + [17.560417, 79.88958], + [16.918751, 79.943748], + [16.7875, 79.862503], + [16.529167, 80.043747], + [16.272917, 80.056252] + ] + ], + [ + [ + [22.7875, 80.5], + [22.802084, 80.385414], + [22.121353, 80.02552], + [21.685417, 80.220833], + [20.825001, 80.199997], + [20.310417, 80.412498], + [19.633333, 80.504166], + [19.604166, 80.214584], + [18.991667, 80.34375], + [19.202084, 80.089584], + [18.883333, 80.1875], + [17.983334, 80.17292], + [18.152082, 80.037498], + [18.93125, 80.083336], + [18.833334, 79.960419], + [18.177084, 79.895836], + [18.452084, 79.78125], + [19.904167, 79.75], + [20.65625, 79.804169], + [21.604166, 79.820831], + [21.856251, 79.693748], + [20.991667, 79.697914], + [20.208334, 79.614586], + [19.6625, 79.61042], + [20.05625, 79.458336], + [21.820833, 79.335419], + [22.879688, 79.364067], + [22.941668, 79.247917], + [23.950001, 79.210419], + [24.320833, 79.3125], + [25.35, 79.372917], + [25.620832, 79.5625], + [26.59375, 79.706253], + [27.147917, 79.82917], + [27.197916, 80.07708], + [26.762501, 80.150002], + [25.85, 80.168747], + [24.18125, 80.35833], + [24.1875, 80.243752], + [23.737499, 80.283333], + [23.579166, 80.114586], + [22.971354, 80.151566], + [23.254168, 80.256248], + [23.216667, 80.445831], + [22.7875, 80.5] + ] + ], + [ + [ + [22.8375, 78.25], + [22.160418, 78.195831], + [21.672916, 78.21875], + [20.841667, 78.116669], + [21.529167, 77.935417], + [20.924999, 77.587502], + [20.862499, 77.441666], + [21.772917, 77.497917], + [22.549999, 77.614586], + [22.885416, 77.574997], + [22.65625, 77.237503], + [23.422916, 77.408333], + [24.191147, 77.738022], + [24.268229, 77.933853], + [23.510416, 77.927086], + [22.8375, 78.25] + ] + ], + [ + [ + [21.30625, 78.629166], + [21.014584, 78.558334], + [20.204166, 78.502083], + [20.55625, 78.443748], + [21.052084, 78.20208], + [22.195833, 78.324997], + [21.960417, 78.61042], + [21.30625, 78.629166] + ] + ], + [ + [ + [32.953644, 80.311981], + [32.345833, 80.285416], + [31.643229, 80.18177], + [31.641666, 80.041664], + [32.306252, 80.10833], + [33.337502, 80.145836], + [33.456249, 80.239586], + [32.953644, 80.311981] + ] + ], + [ + [ + [10.554687, 78.892189], + [10.50625, 78.779167], + [11.052604, 78.464066], + [11.829687, 78.3974], + [11.3, 78.543747], + [10.966666, 78.841667], + [10.554687, 78.892189] + ] + ], + [ + [ + [-8.047916, 71.191666], + [-8.477083, 71.01458], + [-8.00625, 71.012497], + [-8.047916, 71.191666] + ] + ] + ] + }, + "properties": { + "id": "8e4ca0c3-6bd9-4487-a030-be7fa1a93b41", + "code": "SJM", + "name": "Svalbard and Jan Mayen", + "abbreviation": "C-SJM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [31.973690033, -25.953199387], + [31.867860794, -25.999599456], + [31.41629982, -25.718759537], + [31.126600265, -25.921150208], + [30.805059432, -26.46667099], + [30.81321907, -26.844480514], + [31.150550842, -27.202079774], + [31.493259431, -27.314920424], + [31.977760314, -27.317520141], + [32.015861512, -26.819879532], + [32.133117676, -26.840190888], + [32.087741853, -26.010898591], + [31.973690033, -25.953199387] + ] + ] + }, + "properties": { + "id": "67d6a637-df21-4db5-8127-0cfaff15298a", + "code": "SWZ", + "name": "Swaziland", + "abbreviation": "C-SWZ", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [20.551206589, 69.058761598], + [20.062599181, 69.046081544], + [20.334260941, 68.793495178], + [19.927127838, 68.356903077], + [18.997116088, 68.516189576], + [18.126932145, 68.536102294], + [18.15452385, 68.194000244], + [17.909151077, 67.970481872], + [17.270755767, 68.114746094], + [16.733610152, 67.911590577], + [16.578447, 67.665138], + [16.109629, 67.425087], + [16.398286819, 67.215156555], + [16.388906479, 67.043693543], + [16.030618668, 66.9092865], + [15.389968929, 66.473189997], + [15.480572653, 66.281852991], + [15.036372, 66.151505], + [14.516809464, 66.13457489], + [14.618681908, 65.808624269], + [14.512542725, 65.32219696], + [13.677269, 64.613113], + [14.09589386, 64.476539611], + [14.156627654, 64.190147401], + [13.977729798, 64.011589051], + [13.257819176, 64.0936203], + [12.697851182, 63.981346131], + [12.155960082, 63.596260071], + [11.987943649, 63.252304077], + [12.216041565, 63.002391816], + [12.059845925, 62.622909546], + [12.295542717, 62.283195495], + [12.14113617, 61.718437196], + [12.568354606, 61.57032013], + [12.852286339, 61.368545533], + [12.688180924, 61.061740876], + [12.231455961, 61.018287777], + [12.59488, 60.541663999], + [12.462190629, 60.046268464], + [12.182251931, 59.889839172], + [11.879952431, 59.871490479], + [11.941164971, 59.694381715], + [11.693858146, 59.606498719], + [11.815518379, 59.32925415], + [11.653469, 58.907196], + [11.464693, 58.890198], + [11.219166, 59.086342], + [11.116389, 58.992363], + [11.2925, 58.441528], + [11.479168, 58.236805], + [11.767499, 58.337639], + [11.859168, 58.196251], + [11.734723, 57.700974], + [12.109723, 57.434029], + [12.360833, 56.918751], + [12.608056, 56.822639], + [12.949167, 56.549026], + [12.624723, 56.428749], + [12.772500038, 56.217918396], + [12.567501069, 56.143470764], + [13.054720879, 55.692359925], + [12.96861, 55.401806], + [13.359722137, 55.336250306], + [13.709722, 55.425972], + [14.200278, 55.38625], + [14.358612061, 55.559307098], + [14.240279, 55.862083], + [14.6875, 56.166805], + [15.354168, 56.12764], + [15.591946, 56.212082], + [15.851389, 56.075417], + [15.996387, 56.202084], + [16.575832, 57.081528], + [16.487499, 57.28875], + [16.720278, 57.439583], + [16.719725, 57.688473], + [16.47139, 57.894859], + [16.778055, 57.966805], + [16.949722, 58.485138], + [16.794167, 58.597637], + [17.387501, 58.740139], + [17.623611, 58.882084], + [17.826389, 58.802917], + [18.036945, 59.046249], + [18.7075, 59.276527], + [18.308056, 59.454861], + [18.804167, 59.679028], + [18.944721, 59.877918], + [18.573437, 60.256771], + [18.125, 60.427082], + [17.9375, 60.602085], + [17.353645, 60.752602], + [17.138021, 60.952606], + [17.195833, 61.220833], + [17.079166, 61.543751], + [17.253647, 61.672394], + [17.527082, 62.166668], + [17.365105, 62.334896], + [17.527603, 62.452606], + [18.059896, 62.610935], + [17.785938, 62.984894], + [18.111979, 62.770309], + [18.44323, 62.869274], + [18.583855, 63.176559], + [19.012501, 63.1875], + [19.452084, 63.572918], + [19.65, 63.431252], + [20, 63.662498], + [20.393749, 63.670834], + [20.726796, 63.841667], + [20.973438, 64.15052], + [21.51198, 64.408852], + [21.247917, 64.606247], + [21.241667, 64.947914], + [21.53125, 65.056252], + [21.597918, 65.412498], + [21.922916, 65.397919], + [22.314583, 65.5625], + [22.371353, 65.868233], + [23.054167, 65.754166], + [23.203646, 65.832817], + [24.154009, 65.823013], + [23.940001, 66.148361], + [23.745273591, 66.184555055], + [23.661266327, 66.452293396], + [23.879522324, 66.555374146], + [24.011131286, 66.813613892], + [23.579597473, 67.143524171], + [23.773107485, 67.423248011], + [23.426544237, 67.453193995], + [23.509559994, 67.861701958], + [23.167139053, 68.238021851], + [22.834108352, 68.383499146], + [22.063533783, 68.475395202], + [21.396774292, 68.756782532], + [20.907672883, 68.890602113], + [20.551206589, 69.058761598] + ] + ], + [ + [ + [18.738054, 57.928471], + [18.46139, 57.819862], + [18.105286, 57.533749], + [18.14971, 57.168194], + [18.290833, 57.099583], + [18.890837, 57.444897], + [18.738054, 57.928471] + ] + ], + [ + [ + [16.716389, 56.652363], + [17.150833, 57.308193], + [16.515278, 56.74514], + [16.379723, 56.519306], + [16.468611, 56.226528], + [16.716389, 56.652363] + ] + ] + ] + }, + "properties": { + "id": "9004e7e2-b034-4e39-9bc5-3706f8ac3a64", + "code": "SWE", + "name": "Sweden", + "abbreviation": "C-SWE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.607548925, 47.061646232], + [9.486402, 47.181839], + [9.532011599, 47.270304645], + [9.561736197, 47.502418292], + [9.275901794, 47.656135559], + [8.898453712, 47.648422241], + [8.489027024, 47.773269653], + [8.428743362, 47.566894532], + [8.204054833, 47.62089157], + [7.696352958, 47.532772064], + [7.592329501, 47.596214294], + [7.386297704, 47.43196869], + [7.168905257, 47.489501953], + [6.955122947, 47.243160248], + [6.433014394, 46.927818298], + [6.424077035, 46.754516602], + [6.112953663, 46.575119019], + [6.221569065, 46.312976932], + [6.523421765, 46.45698166], + [6.822751999, 46.423450469], + [7.043088914, 45.938652039], + [7.122085095, 45.862365722], + [7.552368164, 45.98715973], + [7.873587131, 45.92811966], + [8.469340324, 46.451969148], + [8.463932038, 46.226081848], + [9.021220208, 46.052516937], + [9.297103883, 46.315807342], + [9.90239904, 46.385559073], + [10.173440933, 46.258937835], + [10.057415008, 46.548709869], + [10.392670631, 46.680843353], + [10.472848197, 46.856806865], + [10.348499919, 46.990232983], + [10.104813924, 46.842195451], + [9.607548925, 47.061646232] + ] + ] + }, + "properties": { + "id": "1d26a62a-064f-48cd-937d-ced66f495556", + "code": "CHE", + "name": "Switzerland", + "abbreviation": "C-CHE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [42.363708497, 37.10926056], + [42.193946839, 37.282180786], + [41.975143432, 37.159572601], + [41.500850677, 37.079544068], + [40.781726837, 37.120582581], + [39.841827393, 36.755321503], + [39.227348327, 36.6649971], + [38.731472016, 36.707485199], + [38.563400268, 36.838825226], + [38.200469971, 36.908008575], + [37.461143494, 36.638145447], + [37.126838684, 36.661655426], + [36.668354034, 36.836250305], + [36.553031921, 36.501113891], + [36.674854279, 36.22928238], + [36.403385163, 36.226360321], + [36.368366242, 35.994792938], + [36.11644745, 35.865512849], + [35.91847229, 35.932331085], + [35.732910155, 35.563751221], + [35.915134429, 35.416126251], + [35.880974, 34.882637], + [35.97533, 34.639839], + [36.451049804, 34.59230423], + [36.617130279, 34.207813263], + [35.933517, 33.650841], + [35.817222992, 33.364033], + [35.900936001, 32.938732], + [35.779568177, 32.751945711], + [36.032905578, 32.657917024], + [36.409656525, 32.382194519], + [36.845825196, 32.312484742], + [36.956195832, 32.390777588], + [38.796836853, 33.368171693], + [41.012367249, 34.419864655], + [41.23449707, 34.777236939], + [41.282604217, 35.48614502], + [41.394287108, 35.630271911], + [41.258010865, 36.054573059], + [41.423007964, 36.524684905], + [41.828254699, 36.593154908], + [42.363708497, 37.10926056] + ] + ] + }, + "properties": { + "id": "f9205fad-5022-45f0-af6d-3a72174bc7ee", + "code": "SYR", + "name": "Syria", + "abbreviation": "C-SYR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [6.673749, 0.15625], + [6.608748, 0.407638], + [6.461806, 0.224305], + [6.673749, 0.15625] + ] + ] + }, + "properties": { + "id": "3e537ef2-b45d-41af-8006-a776bad5e0c7", + "code": "STP", + "name": "São Tomé and Príncipe", + "abbreviation": "C-STP", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [120.145691, 23.525143], + [120.03514099, 23.102083207], + [120.165412902, 22.971527099], + [120.335419, 22.53264], + [120.588196, 22.369308], + [120.728752, 21.917641], + [120.893196, 22.048199], + [120.894028, 22.334028], + [121.026253, 22.658194], + [121.321251, 22.989027], + [121.513748, 23.482916], + [121.615974, 24.062084], + [121.865135, 24.588751], + [121.945137, 25.019305999], + [121.598472999, 25.291802999], + [121.049858094, 25.036806107], + [120.830970765, 24.66847229], + [120.186806, 23.811251], + [120.145691, 23.525143] + ] + ] + }, + "properties": { + "id": "8b173e78-7b01-4899-8e27-edfa7ada1d8f", + "code": "TWN", + "name": "Taiwan", + "abbreviation": "C-TWN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [74.89031601, 37.235990524], + [75.133827, 37.437439], + [74.928017, 37.55624], + [74.995079, 37.762791], + [74.822876, 38.083057], + [74.867256164, 38.4984169], + [74.382217408, 38.653030395], + [74.069793701, 38.531066895], + [73.80670929, 38.633499145], + [73.845520019, 38.947700501], + [73.565124512, 39.240421295], + [73.658241273, 39.465084075], + [73.178894044, 39.355201721], + [72.679946899, 39.394828796], + [72.349525452, 39.329994202], + [72.257003785, 39.175136566], + [72.035629271, 39.36648941], + [71.562438965, 39.454872132], + [71.498931885, 39.613620758], + [70.768028, 39.399357], + [70.524002136, 39.632574943], + [70.304527, 39.53006], + [70.10424, 39.602165], + [69.340202331, 39.53924942], + [69.279899597, 39.802967071], + [69.562545777, 40.103820801], + [69.996131897, 40.221988678], + [70.565094, 40.020699], + [70.968498, 40.228043], + [70.645622254, 40.165016174], + [70.33267975, 40.449245452], + [70.789672852, 40.725135803], + [70.496482848, 41.031852723], + [70.365493775, 40.891174316], + [69.667678833, 40.629947662], + [69.400970458, 40.782024384], + [69.316139221, 40.201591492], + [68.999465942, 40.220531465], + [68.514877319, 39.534103394], + [67.70501709, 39.65655899], + [67.425483703, 39.496959686], + [67.462097169, 39.20318985], + [67.715362549, 38.999656678], + [68.115348815, 39.010017396], + [68.068481446, 38.540653229], + [68.402641297, 38.194988252], + [67.82836914, 37.463287355], + [67.790663956, 37.185199858], + [68.027057648, 36.930368424], + [68.305309296, 37.103076936], + [68.968215942, 37.320434571], + [69.250095368, 37.095895767], + [69.40558815, 37.171580315], + [69.378969193, 37.43544674], + [69.56879425, 37.579673766], + [70.265062968, 37.607241313], + [70.189167023, 37.844972611], + [70.504997253, 38.122574807], + [70.610661825, 38.345732371], + [70.989463806, 38.490411123], + [71.374122619, 38.255630493], + [71.252235413, 37.931758881], + [71.524085998, 37.957069398], + [71.59519577, 37.805957794], + [71.432665791, 37.056616925], + [71.566844941, 36.764213562], + [71.842369079, 36.681288401], + [72.342979431, 36.989185334], + [72.662944793, 37.017257691], + [72.817558289, 37.232394219], + [73.301261903, 37.46227646], + [73.775794984, 37.439640045], + [73.761749268, 37.219787597], + [74.276100158, 37.401042938], + [74.809270223, 37.351248424], + [74.89031601, 37.235990524] + ] + ] + }, + "properties": { + "id": "824776b9-3bcf-4dfb-816b-0445f638fec1", + "code": "TJK", + "name": "Tajikistan", + "abbreviation": "C-TJK", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [29.391475678, -4.445250033], + [29.373088836, -5.016916276], + [29.575977326, -5.555999279], + [29.594978333, -6.251998901], + [29.82697487, -6.642999173], + [30.238563537, -7.021797181], + [30.795076198, -8.276758081], + [31.016937939, -8.576676287], + [31.376548793, -8.588562276], + [31.98806949, -9.075258924], + [32.437154381, -9.118147416], + [32.545851713, -9.254399438], + [32.955853378, -9.399693235], + [33.440303803, -9.61266613], + [33.760337829, -9.582036972], + [33.943237305, -9.706129074], + [34.036300659, -9.491929054], + [34.501525879, -9.976361274], + [34.555122375, -10.549004555], + [34.651935577, -10.757631302], + [34.628341676, -11.102042198], + [34.92570877, -11.415079117], + [34.957931518, -11.571338654], + [35.575569152, -11.603464127], + [35.823818207, -11.406799316], + [36.172279359, -11.58955574], + [36.201259614, -11.716184616], + [36.719501496, -11.692878724], + [36.826648712, -11.57818985], + [37.419445038, -11.680004121], + [37.747936248, -11.548653603], + [37.933540345, -11.256524087], + [38.261924743, -11.288425444], + [38.486148835, -11.41489029], + [38.884738922, -11.175510406], + [39.241691589, -11.179941178], + [39.529575349, -10.985413551], + [39.991428376, -10.81612873], + [40.436207, -10.47125], + [40.238194, -10.233473], + [39.957084657, -10.109862328], + [39.654305, -9.369582], + [39.619862, -9.064862], + [39.357360839, -8.681248664], + [39.265694, -8.317916], + [39.449028015, -8.005985259], + [39.290973663, -7.719583988], + [39.305137635, -7.469027042], + [39.551529, -7.13486], + [39.076248, -6.503471], + [38.843472, -6.338195], + [38.779304504, -6.024027824], + [39.211529, -4.869584], + [39.19791031, -4.6660614], + [37.785800934, -3.677098513], + [37.585449219, -3.440469265], + [37.672573089, -3.067704915], + [37.430202484, -2.908893346], + [34.077529908, -1.026245951], + [33.930904389, -0.993206023], + [30.823883057, -0.998916268], + [30.471065521, -1.055845856], + [30.56898117, -1.337487221], + [30.839162826, -1.650841832], + [30.853281022, -2.319875717], + [30.543420792, -2.413010359], + [30.408998488, -2.858831882], + [30.811143875, -3.045857906], + [30.829259872, -3.263623953], + [30.500318527, -3.517182112], + [30.043811798, -4.275174141], + [29.707078934, -4.462446212], + [29.391475678, -4.445250033] + ] + ], + [ + [ + [39.560138702, -6.441804885], + [39.510417939, -6.12597084], + [39.183193, -5.912083], + [39.198471069, -6.223473072], + [39.560138702, -6.441804885] + ] + ], + [ + [ + [39.678470904, -4.886805014], + [39.642082214, -5.339028835], + [39.79763794, -5.389307021], + [39.846527, -4.930138], + [39.678470904, -4.886805014] + ] + ] + ] + }, + "properties": { + "id": "d25c9892-b406-4873-abf6-48d9f2b3e9b2", + "code": "TZA", + "name": "Tanzania", + "abbreviation": "C-TZA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [105.206786775, 14.342509659], + [105.537147522, 14.558449746], + [105.578819275, 14.995071411], + [105.474609375, 15.098529816], + [105.63761139, 15.658711434], + [105.402229308, 15.793421746], + [105.414192199, 16.012958526], + [105.043159485, 16.107429505], + [104.736419678, 16.569469451], + [104.803031922, 17.372699737], + [104.277770996, 17.85559082], + [103.977539063, 18.332412719], + [103.853431702, 18.285520554], + [103.414916992, 18.446161271], + [103.24874878, 18.366689682], + [103.038780213, 17.97546959], + [102.687477112, 17.866380691], + [102.091217041, 18.217750551], + [101.267036438, 17.595661163], + [100.968528899, 17.573548983], + [101.02128601, 17.890699388], + [101.185272217, 18.06191063], + [101.056282043, 18.440540313], + [101.272979737, 18.688631058], + [101.189300538, 19.398460388], + [101.283370971, 19.579750061], + [100.884979248, 19.604930878], + [100.481719971, 19.487640382], + [100.408561835, 19.733940126], + [100.515289307, 20.143909454], + [100.331817627, 20.39661026], + [100.086769104, 20.350891113], + [99.518218995, 20.360139847], + [99.541389466, 20.144479751], + [99.07108307, 20.09041977], + [98.984138488, 19.733381272], + [98.850227356, 19.805711746], + [98.32598114, 19.694761277], + [98.085845948, 19.807189941], + [97.863769531, 19.573209762], + [97.837272644, 19.092201232], + [97.738777161, 19.038570404], + [97.771896361, 18.575000764], + [97.539405822, 18.48759079], + [97.640449524, 18.285829544], + [97.67626953, 17.868341445], + [98.33856964, 17.049209594], + [98.658470153, 16.455762863], + [98.669479371, 16.282550811], + [98.93257904, 16.327238083], + [98.609298706, 16.041229248], + [98.581329346, 15.363599777], + [98.30885315, 15.310970306], + [98.186272, 15.09499], + [98.251457215, 14.830780983], + [98.601577759, 14.323830605], + [98.970832825, 14.07981968], + [99.171791077, 13.719991684], + [99.211135865, 13.206250191], + [99.099800111, 13.077100754], + [99.403457642, 12.459459304], + [99.65927124, 11.828301431], + [99.172996649, 11.045432036], + [98.782463073, 10.675721169], + [98.773597863, 10.423904136], + [98.31868, 9.182605], + [98.205856, 8.556886], + [98.282257081, 8.245348931], + [98.699379, 8.308691], + [98.738922, 8.076463], + [98.919486999, 8.035420001], + [99.245918, 7.685317], + [99.394936, 7.307931], + [99.521584, 7.249407999], + [100.124443, 6.40509], + [100.171897888, 6.693915845], + [100.366157531, 6.539310933], + [100.818595887, 6.437360763], + [100.85369873, 6.243780137], + [101.094100952, 6.26108122], + [101.126502991, 5.981280804], + [100.986099244, 5.806541921], + [101.134300231, 5.616197109], + [101.286239623, 5.821051121], + [101.585510254, 5.932411194], + [101.814651489, 5.737160207], + [102.086631774, 6.245808125], + [101.758666993, 6.525876046], + [101.557220459, 6.846111774], + [101.018745423, 6.853234768], + [100.77571106, 6.976421833], + [100.511947633, 7.309722901], + [100.218330384, 8.434444427], + [99.952262879, 8.632295609], + [99.843330384, 9.29389], + [99.266388, 9.219167], + [99.171386718, 9.653332711], + [99.146957398, 10.342486382], + [99.492424, 10.933751], + [99.635002137, 11.509166717], + [100.020554, 12.189307], + [99.95451355, 12.621125222], + [100.103889464, 13.056666374], + [99.952217102, 13.262779237], + [100.057777406, 13.416119575], + [100.572502136, 13.514442445], + [100.93528, 13.4625], + [100.840546, 12.675601], + [101.418678, 12.584942], + [101.749443054, 12.707782745], + [102.259163, 12.30557], + [102.294441, 12.186941], + [102.751335144, 12.044395447], + [102.910336698, 11.64827416], + [102.704804795, 12.179601672], + [102.786861723, 12.416207172], + [102.510191085, 12.670404413], + [102.485721763, 12.977163336], + [102.349405943, 13.277356414], + [102.366648594, 13.577938287], + [102.52626428, 13.564489859], + [103.141920572, 14.3263238], + [103.655404711, 14.439414871], + [103.881708657, 14.338021404], + [104.277360904, 14.408219692], + [104.478402602, 14.352013321], + [104.805848828, 14.43741878], + [105.206786775, 14.342509659] + ] + ] + }, + "properties": { + "id": "b1e59cb0-c888-4760-822e-0b5e80bb179c", + "code": "THA", + "name": "Thailand", + "abbreviation": "C-THA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [125.087966919, -9.458633422], + [125.393333436, -9.263611793], + [125.943611144, -9.133055688], + [126.143608093, -8.99416542], + [126.478088379, -8.946998597], + [126.582496642, -8.80611229], + [127.012779235, -8.68638897], + [127.301109, -8.431112], + [126.96055603, -8.326665878], + [126.553970338, -8.481455802], + [125.852783203, -8.474960327], + [125.126113892, -8.640001296], + [124.949935914, -8.958686829], + [125.087966919, -9.458633422] + ] + ], + [ + [ + [124.476135254, -9.174365043], + [124.058174134, -9.357751847], + [124.35659027, -9.481808662], + [124.476135254, -9.174365043] + ] + ] + ] + }, + "properties": { + "id": "3ffbaf01-47d6-4379-8898-60ace0c72853", + "code": "TLS", + "name": "Timor-Leste", + "abbreviation": "C-TLS", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [0.912175531, 10.99653698], + [0.503931001, 11.012744001], + [-0.134967872, 11.13706899], + [0.033877909, 10.992621832], + [-0.087270273, 10.716004724], + [0.396027973, 10.314177108], + [0.382733564, 9.937065217], + [0.23890288, 9.570471323], + [0.566590189, 9.405599734], + [0.379434582, 8.749738712], + [0.645860944, 8.486721407], + [0.626224007, 7.850379392], + [0.519026965, 7.513392359], + [0.644656864, 7.397928189], + [0.562348456, 6.906712047], + [0.749223939, 6.448189283], + [1.199555296, 6.130090006], + [1.629444, 6.236389], + [1.807527, 6.286359999], + [1.578130797, 6.685646682], + [1.641587, 6.993990001], + [1.649164, 8.490761], + [1.624506, 9.042144], + [1.421417, 9.306945], + [1.364112999, 10.012135], + [0.774549218, 10.384950389], + [0.912175531, 10.99653698] + ] + ] + }, + "properties": { + "id": "24c91178-e84a-4267-bd43-a7aae74ce30f", + "code": "TGO", + "name": "Togo", + "abbreviation": "C-TGO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-171.785004, -9.149167], + [-171.787781, -9.156944], + [-171.783615, -9.172499], + [-171.766113, -9.206111], + [-171.785004, -9.159444], + [-171.785004, -9.149167] + ] + ] + }, + "properties": { + "id": "b3b74c0d-410a-4a38-b064-a1c2e2652144", + "code": "TKL", + "name": "Tokelau", + "abbreviation": "C-TKL", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-175.091659999, -21.197221999], + [-175.246154999, -21.109592001], + [-175.334717, -21.159165999], + [-175.139998999, -21.271944], + [-175.091659999, -21.197221999] + ] + ] + }, + "properties": { + "id": "2a36b92f-75aa-4fbd-bba2-78a4854b3d13", + "code": "TON", + "name": "Tonga", + "abbreviation": "C-TON", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-61.506053925, 10.071544648], + [-61.009029388, 10.154305459], + [-61.037918091, 10.685138703], + [-60.910694122, 10.835973739], + [-61.365695954, 10.812084199], + [-61.507637025, 10.645695687], + [-61.456298829, 10.30180645], + [-61.787918091, 10.148472786], + [-61.506053925, 10.071544648] + ] + ] + }, + "properties": { + "id": "a4cdc6bd-3bdd-46d4-a8ac-2f594d5746e7", + "code": "TTO", + "name": "Trinidad and Tobago", + "abbreviation": "C-TTO", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [9.557297706, 30.236810685], + [9.888902664, 30.349187851], + [10.30777359, 30.908971787], + [10.140620232, 31.493297578], + [10.291164399, 31.690118791], + [10.529793739, 31.747297288], + [10.639128684, 31.967941285], + [10.982084275, 32.186714173], + [11.527318954, 32.402809142], + [11.488797189, 32.667663575], + [11.564454379, 33.165408809], + [11.188195, 33.201805], + [11.108195, 33.55764], + [10.918749, 33.669304], + [10.480695, 33.644028], + [10.123472213, 33.880695342], + [10.025138855, 34.086250305], + [10.120694161, 34.315692901], + [10.600695611, 34.549304963], + [10.869861603, 34.797359467], + [11.11986, 35.22403], + [11.047083001, 35.626804], + [10.647639275, 35.815139771], + [10.483473, 36.052917], + [10.555137634, 36.384860993], + [10.811804771, 36.459583282], + [11.132361412, 36.86958313], + [11.060140001, 37.071250999], + [10.586528777, 36.864860535], + [10.412083, 36.714584], + [10.066528, 37.270138001], + [9.667362213, 37.338470459], + [9.027916909, 37.139583589], + [8.645665995, 36.936630792], + [8.448978782, 36.620546818], + [8.309052468, 36.173706056], + [8.268895595, 35.737574513], + [8.335195541, 35.280849457], + [8.475512505, 35.236818314], + [8.249697685, 34.920059204], + [8.282794953, 34.653060914], + [7.856798268, 34.406207276], + [7.81585312, 34.212932586], + [7.580777167, 34.085739136], + [7.531700135, 33.804058076], + [7.832243681, 33.190273285], + [8.117932321, 33.097696304], + [8.323304176, 32.82302475], + [8.357524872, 32.502140044], + [9.065976143, 32.086891174], + [9.557297706, 30.236810685] + ] + ] + }, + "properties": { + "id": "45dba9be-79c2-4e9b-8e70-61f95d11e5af", + "code": "TUN", + "name": "Tunisia", + "abbreviation": "C-TUN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [43.47107315, 41.129486085], + [42.829284668, 41.587890626], + [42.504489899, 41.445480347], + [41.548194885, 41.526275636], + [41.402362824, 41.381526948], + [40.230693818, 40.928470611], + [39.664859771, 40.994861602], + [39.418193817, 41.107639314], + [38.36541748, 40.908748627], + [37.536529541, 41.020973205], + [36.997917175, 41.282917023], + [36.651806, 41.383472], + [36.392082214, 41.252639771], + [35.954860688, 41.73513794], + [35.565418244, 41.630973817], + [35.278751374, 41.714862823], + [35.016250611, 42.093193054], + [34.801528931, 41.955417633], + [34.290416718, 41.941806793], + [33.338195801, 42.020416261], + [32.498474122, 41.800415039], + [32.124584199, 41.596805573], + [31.391805649, 41.305973053], + [31.307638168, 41.120693208], + [30.755695344, 41.086250304], + [30.278748999, 41.205418001], + [29.819583893, 41.143196105], + [29.257360458, 41.234584808], + [29.02180481, 40.978195191], + [29.35375023, 40.755416869], + [28.793193818, 40.552360534], + [29.053192139, 40.362915039], + [28.145695001, 40.395695], + [27.532083511, 40.300971984], + [27.287082672, 40.474582672], + [26.776527, 40.405972], + [26.177083969, 39.988193513], + [26.070972442, 39.471805573], + [26.727363587, 39.567359925], + [26.930692672, 39.48513794], + [26.696251, 39.266251], + [27.062916, 38.869026], + [26.727081, 38.71986], + [26.92375, 38.456806], + [26.644583, 38.339584], + [26.515972, 38.430695], + [26.272638, 38.269306], + [26.615137, 38.111805], + [26.751249, 38.222084], + [27.277360917, 37.926528932], + [27.10014, 37.680695], + [27.226807, 37.40097], + [27.476805, 37.334862], + [27.646528, 36.979027], + [28.326530457, 37.049304963], + [28.027914, 36.791527], + [28.095694, 36.641251], + [28.407639, 36.788193], + [28.669584, 36.692085], + [29.091249, 36.679028], + [29.139307, 36.358749], + [29.777639, 36.136532], + [30.149027, 36.300415], + [30.487638, 36.279026], + [30.577917, 36.800694], + [30.982918, 36.858196], + [31.315971, 36.812637], + [32.01625061, 36.542915344], + [32.295417787, 36.234306336], + [32.802916999, 36.015694], + [32.950138092, 36.103748323], + [33.687363, 36.159863], + [34.57375, 36.77375], + [34.762917, 36.809582], + [35.342918, 36.539585], + [35.622639, 36.605141], + [36.017082214, 36.930137634], + [36.203194, 36.78764], + [36.163192748, 36.595138549], + [35.779582977, 36.319026948], + [35.91847229, 35.932331085], + [36.11644745, 35.865512849], + [36.368366242, 35.994792938], + [36.403385163, 36.226360321], + [36.674854279, 36.22928238], + [36.553031921, 36.501113891], + [36.668354034, 36.836250305], + [37.126838684, 36.661655426], + [37.461143494, 36.638145447], + [38.200469971, 36.908008575], + [38.563400268, 36.838825226], + [38.731472016, 36.707485199], + [39.227348327, 36.6649971], + [39.841827393, 36.755321503], + [40.781726837, 37.120582581], + [41.500850677, 37.079544068], + [41.975143432, 37.159572601], + [42.193946839, 37.282180786], + [42.363708497, 37.10926056], + [42.591648101, 37.147251128], + [42.730808259, 37.345062255], + [43.167404175, 37.373977662], + [43.666557312, 37.230865479], + [44.237377166, 37.279071808], + [44.268787385, 36.982971192], + [44.637741089, 37.186740876], + [44.804965973, 37.148143768], + [44.602615356, 37.444278717], + [44.597114563, 37.763763428], + [44.238861083, 37.887115478], + [44.401329041, 38.140964508], + [44.316131591, 38.833858491], + [44.0472641, 39.366794587], + [44.441123963, 39.435874939], + [44.606552125, 39.773357391], + [44.820220947, 39.625209808], + [44.772602081, 39.71364975], + [44.262771606, 40.050014497], + [43.905479431, 40.018466949], + [43.546657562, 40.468128205], + [43.748699189, 40.735939026], + [43.47107315, 41.129486085] + ] + ], + [ + [ + [26.368787765, 41.714229584], + [26.596136093, 41.615470886], + [26.641773224, 41.390888214], + [26.331443787, 41.253940582], + [26.35091, 40.949791], + [26.031528, 40.733902], + [26.09514, 40.604305], + [26.818750382, 40.647083283], + [26.834863662, 40.581249238], + [26.21846962, 40.319583894], + [26.381805419, 40.14402771], + [26.740140916, 40.477085114], + [27.309305191, 40.702362061], + [27.511249542, 40.974304199], + [27.894306184, 40.965137482], + [28.233473, 41.077641], + [28.873750687, 40.968471528], + [29.105417251, 41.205696106], + [28.261806487, 41.502082825], + [27.976804733, 41.845973969], + [28.034662246, 41.98236084], + [27.563875198, 41.901424408], + [27.271862029, 42.106300353], + [26.619506835, 41.963897705], + [26.368787765, 41.714229584] + ] + ] + ] + }, + "properties": { + "id": "8e41e4ce-8c38-481d-970c-f10b1bd0d176", + "code": "TUR", + "name": "Turkey", + "abbreviation": "C-TUR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [66.526388264, 37.34608813], + [66.548225403, 37.79177475], + [66.676628112, 37.961967468], + [65.851486207, 38.274082183], + [65.481369018, 38.31899643], + [65.025039673, 38.61246109], + [64.177116395, 38.959190369], + [63.539127349, 39.383579254], + [62.487949371, 39.951393128], + [62.349460616, 40.438297203], + [62.113071442, 40.596107484], + [61.970878602, 41.019138337], + [61.62688446, 41.264987945], + [61.299812, 41.145222001], + [61.04604721, 41.234687805], + [60.469356537, 41.221382141], + [60.131248473, 41.394821166], + [60.163757324, 41.609516144], + [59.949272156, 41.973506928], + [60.039135, 42.19593], + [59.827965, 42.306316], + [59.419246674, 42.276561737], + [59.169483185, 42.52803421], + [58.297172547, 42.689449311], + [57.904190063, 42.426219939], + [57.858409882, 42.181613922], + [57.312805176, 42.137798309], + [57.001541138, 41.895999909], + [57.042415618, 41.263214112], + [56.000598907, 41.318046571], + [55.525760814, 41.25026702], + [55.283367157, 41.415798187], + [54.836013795, 42.022384643], + [54.189052581, 42.341464997], + [53.420188903, 42.258811952], + [52.959403991, 42.103263856], + [52.441433127, 41.765449602], + [52.767284393, 41.38925171], + [52.940193005, 40.947292025], + [52.736713409, 40.495632171], + [52.757526398, 40.019752502], + [53.488838195, 39.945686341], + [53.430641175, 39.721385955], + [53.577148081, 39.559826051], + [53.236183166, 39.545181274], + [53.096298218, 39.433078766], + [53.551284836, 39.296523962], + [53.571869, 39.188057], + [53.993560791, 38.93498993], + [53.860424042, 38.64951706], + [53.814163207, 37.814689636], + [53.897811889, 37.340808868], + [54.243572, 37.309181], + [54.797786713, 37.523056031], + [54.823841095, 37.725212098], + [55.129325867, 37.950969697], + [55.474193572, 38.084331512], + [56.339199066, 38.070625305], + [56.417045593, 38.24036026], + [56.754673004, 38.272594451], + [57.080413818, 38.176662446], + [57.245121002, 38.261688232], + [57.359134674, 37.974437714], + [58.211891174, 37.760105133], + [58.459835052, 37.625049592], + [58.821933747, 37.692005157], + [59.276287078, 37.497314454], + [59.552013398, 37.166263581], + [60.020957947, 37.033267975], + [60.370674133, 36.624248505], + [61.140239716, 36.662059785], + [61.229221344, 36.172401428], + [61.159267425, 35.989597321], + [61.282627426, 35.60869039], + [61.58953476, 35.435199738], + [62.066204071, 35.431550981], + [62.264902115, 35.295410156], + [62.745594025, 35.253723144], + [63.094561259, 35.420649212], + [63.307189941, 35.857135772], + [64.061935425, 36.001911163], + [64.635253905, 36.438274384], + [64.616859436, 36.630912781], + [64.796134949, 36.91607666], + [64.753700256, 37.111557008], + [65.130973817, 37.247154237], + [65.530151367, 37.239753723], + [65.704481125, 37.538148881], + [66.305900573, 37.319385529], + [66.526388264, 37.34608813] + ] + ] + }, + "properties": { + "id": "ab9268ac-556c-4fbe-bb9e-21958088044f", + "code": "TKM", + "name": "Turkmenistan", + "abbreviation": "C-TKM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.837082, 21.857916], + [-71.90403, 21.773472], + [-71.637085, 21.715139], + [-71.673195, 21.833471], + [-71.837082, 21.857916] + ] + ] + }, + "properties": { + "id": "d673e661-cf87-4571-a32f-92d136ef13a1", + "code": "TCA", + "name": "Turks and Caicos Islands", + "abbreviation": "C-TCA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [178.428268, -7.956933], + [178.431946, -7.971668], + [178.419724, -7.990833], + [178.39917, -8.013333], + [178.385712, -8.037432], + [178.378403, -8.0599], + [178.371368, -8.064609], + [178.380554, -8.073055], + [178.381378, -8.053872], + [178.387634, -8.036903], + [178.400803, -8.013326], + [178.437439, -7.973486], + [178.428268, -7.956933] + ] + ] + }, + "properties": { + "id": "ef3efe4c-def8-4230-bcdc-488fbe85d3c3", + "code": "TUV", + "name": "Tuvalu", + "abbreviation": "C-TUV", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.593131994, -1.387020823], + [30.169265747, -1.343921662], + [30.471065521, -1.055845856], + [30.823883057, -0.998916268], + [33.930904389, -0.993206023], + [33.987014999, -0.128465], + [33.91394806, 0.112544], + [34.137580872, 0.585696995], + [34.446399688, 0.864027978], + [34.502487183, 1.070647955], + [34.795150757, 1.223237038], + [34.991203307, 1.664512038], + [34.916610719, 2.424907923], + [34.736316681, 2.855247975], + [34.599010467, 2.924946069], + [34.400592804, 3.370894908], + [34.463199615, 3.669833899], + [34.30795288, 3.711992026], + [34.001964569, 4.221364975], + [33.514507293, 3.755254031], + [33.17881775, 3.779093028], + [33.027759551, 3.893971919], + [32.415290832, 3.745963096], + [32.089031219, 3.538037063], + [31.827354431, 3.818788051], + [31.507926941, 3.676660061], + [31.290119172, 3.796540976], + [30.972940444, 3.696516037], + [30.870231629, 3.482681989], + [30.777761458, 3.026928902], + [30.884183883, 2.814409017], + [30.741388321, 2.44887805], + [30.957658768, 2.403942585], + [31.305704117, 2.157105923], + [31.033359528, 1.757411479], + [30.700956344, 1.495999575], + [30.549726485, 1.266250968], + [30.240121842, 1.111332059], + [29.991146088, 0.850392998], + [29.990437982, 0.535014091], + [29.738924475, 0.128165841], + [29.587446213, -0.89732802], + [29.593131994, -1.387020823] + ] + ] + }, + "properties": { + "id": "8acc088d-d59a-4939-a122-ff91c918b1bc", + "code": "UGA", + "name": "Uganda", + "abbreviation": "C-UGA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.624755996, 51.514190675], + [23.635988235, 51.31881714], + [24.107311248, 50.838729858], + [23.997543, 50.41214], + [23.766684, 50.413635], + [23.279327392, 50.086288452], + [22.640830993, 49.529991149], + [22.734502792, 49.211853027], + [22.567663194, 49.088626862], + [22.157321931, 48.405391694], + [22.904510498, 47.957382203], + [23.182813644, 48.117553711], + [24.220169, 47.897835], + [24.625005722, 47.952026367], + [24.884765624, 47.724624634], + [25.31250763, 47.9145813], + [26.189668656, 47.995712281], + [26.336137772, 48.184467316], + [26.631242753, 48.2574234], + [26.726482391, 48.394992829], + [27.284778595, 48.384082795], + [27.763639451, 48.458564758], + [28.107629775, 48.234107972], + [28.346273423, 48.249347687], + [28.854471207, 48.121669769], + [28.943750382, 47.956123352], + [29.188543319, 47.994007111], + [29.241861344, 47.639930725], + [29.133705139, 47.548999786], + [29.397924423, 47.310413361], + [29.57916069, 47.378166199], + [29.605106353, 46.969490051], + [29.979202271, 46.763614654], + [29.917805, 46.517345], + [29.593429566, 46.364337921], + [29.242206573, 46.563331604], + [28.934158326, 46.460590362], + [29.057643821, 46.201114867], + [28.790444916, 45.846446887], + [28.547887803, 45.737163545], + [28.516287001, 45.505466001], + [28.214229823, 45.466758923], + [28.351459503, 45.320152282], + [28.720420838, 45.224594116], + [29.251850128, 45.435325623], + [29.6526165, 45.339988709], + [29.655805587, 45.216060639], + [29.965973, 45.88625], + [30.249844, 45.885971], + [30.561527253, 46.160972595], + [30.72986, 46.512085], + [31.177917481, 46.627918243], + [31.904306, 46.65625], + [32.312363, 46.465137], + [31.766251, 46.487362], + [31.897638, 46.298473], + [32.529861, 46.068195], + [33.227917, 46.154026], + [33.53986, 45.834862], + [32.955970765, 45.662082672], + [32.483470916, 45.404861451], + [32.654304504, 45.315692903], + [32.988750458, 45.350139617], + [33.280971527, 45.148471832], + [33.569026947, 45.074584962], + [33.542641, 44.657639], + [33.401527406, 44.559307099], + [33.776805878, 44.386249542], + [34.127083, 44.428471], + [34.46069336, 44.712638854], + [34.772914886, 44.818473816], + [35.082637787, 44.79208374], + [35.565803527, 45.130416871], + [35.839027405, 44.998748779], + [36.454029084, 45.095695496], + [36.597084045, 45.437637329], + [35.818473817, 45.458751679], + [35.5284729, 45.283473968], + [35.092082977, 45.612361907], + [34.809307098, 46.157638551], + [35.19986, 46.380974], + [35.358196, 46.360416], + [35.863471986, 46.64402771], + [37.322360993, 46.884304047], + [37.535694122, 47.080696107], + [38.234565911, 47.120139457], + [38.371608735, 47.611076355], + [38.764785767, 47.684131623], + [38.840553284, 47.861789704], + [39.762969971, 47.825042724], + [40.014892578, 48.266578674], + [39.688667297, 48.590930938], + [39.93523407, 49.06344223], + [40.200325012, 49.270580291], + [40.131904601, 49.619560241], + [39.794551848, 49.569641114], + [39.6032753, 49.743476868], + [38.937122345, 49.811283113], + [38.611801148, 49.977611542], + [38.047847749, 49.956104279], + [37.760421753, 50.096336365], + [37.49312973, 50.428993226], + [36.925628663, 50.347408295], + [36.597061156, 50.238174439], + [36.154998779, 50.44929886], + [35.631309509, 50.360713959], + [35.413085938, 50.589736938], + [35.491317749, 50.771396638], + [35.312839508, 51.086719514], + [35.123470307, 51.220962524], + [34.819721221, 51.176284791], + [34.270694732, 51.259902954], + [34.318195343, 51.528808595], + [34.126987458, 51.686840058], + [34.400947571, 51.845066072], + [34.092494964, 52.015304566], + [34.11433792, 52.134010314], + [33.796646118, 52.360004426], + [33.510398865, 52.292736054], + [33.185310364, 52.368099213], + [32.68713379, 52.253459931], + [32.358680726, 52.335777284], + [32.351173402, 52.138980865], + [32.072063446, 52.022766114], + [31.789606095, 52.108219148], + [31.235437392, 52.048336029], + [30.951120377, 52.078479767], + [30.520992279, 51.662387849], + [30.657110214, 51.337585449], + [30.463741303, 51.282413484], + [30.250274658, 51.493740082], + [29.72085762, 51.529037476], + [29.362110137, 51.396415711], + [29.160102844, 51.650665283], + [28.825105668, 51.542804718], + [28.274139405, 51.69776535], + [28.082235335, 51.570156097], + [27.833856582, 51.640563964], + [27.230190277, 51.602363587], + [27.193468093, 51.787284852], + [26.826513291, 51.771430969], + [26.366628646, 51.876594544], + [25.284065247, 51.983413697], + [24.995042802, 51.91225052], + [24.386892319, 51.910644532], + [24.027051925, 51.584110261], + [23.677938461, 51.646072387], + [23.624755996, 51.514190675] + ] + ] + }, + "properties": { + "id": "3ec95f20-0b66-4d45-9ec1-3aa9ef483071", + "code": "UKR", + "name": "Ukraine", + "abbreviation": "C-UKR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [56.345531, 24.973074], + [56.35636139, 25.593320847], + [56.270771027, 25.625865937], + [56.086029052, 26.050539017], + [55.990196229, 25.838352204], + [55.293705001, 25.299462999], + [55.040618897, 24.993881225], + [54.634311676, 24.726459504], + [54.605430603, 24.44852066], + [54.37788, 24.25045], + [54.217449, 24.35573], + [54.103378, 24.14822], + [53.579589845, 24.046949388], + [52.561748505, 24.131299973], + [52.096439, 23.942301], + [51.82954, 23.98719], + [51.781521, 24.263411], + [51.589015, 24.254543], + [51.590376094, 24.126970892], + [52.58104, 22.939204], + [55.137337901, 22.631621401], + [55.213485447, 22.702154118], + [55.232471465, 23.110408782], + [55.572658539, 23.631528854], + [55.484859467, 23.939989091], + [56.018131256, 24.066028594], + [55.834701538, 24.410011291], + [55.812599182, 24.910671234], + [55.960251105, 25.005985181], + [56.08108139, 24.743289948], + [56.345531, 24.973074] + ] + ] + }, + "properties": { + "id": "68644b96-7383-4fe5-9090-ef4c51935002", + "code": "ARE", + "name": "United Arab Emirates", + "abbreviation": "C-ARE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-3.753942, 50.254355], + [-3.506388, 50.542308728], + [-3.257779779, 50.672622553], + [-2.780398912, 50.714952154], + [-1.960896887, 50.590836891], + [-1.307725687, 50.840415955], + [-1.137762467, 50.773684], + [-0.237162587, 50.828251828], + [0.241702, 50.733525], + [1.057723772, 51.057968487], + [1.380935048, 51.142160466], + [1.425832033, 51.394252418], + [0.896164, 51.341526], + [0.555502707, 51.398974708], + [0.928236775, 51.591393956], + [1.045834, 51.769081], + [1.583469588, 52.091073347], + [1.764392698, 52.480140686], + [1.657930194, 52.756473127], + [1.303055562, 52.933139387], + [0.528612018, 52.975364276], + [0.356337221, 52.807909855], + [0.070202426, 52.923698012], + [0.337723629, 53.094306946], + [0.123551585, 53.656563916], + [-0.573610008, 54.482585436], + [-1.168386467, 54.637584202], + [-1.493775364, 55.100085566], + [-1.62377, 55.552307], + [-2.073706, 55.869626], + [-2.621813, 56.051989], + [-3.064945535, 55.945361535], + [-3.391944, 56.006581], + [-2.977274483, 56.202416009], + [-2.583432, 56.279081], + [-2.921945, 56.451751], + [-2.549805, 56.56078], + [-1.775363, 57.47467], + [-1.928055047, 57.678420443], + [-3.027276624, 57.664252652], + [-3.346945, 57.725086], + [-3.814585, 57.603419], + [-3.790004, 57.83849], + [-3.9843, 57.968248], + [-3.107915, 58.37144], + [-3.023966, 58.643536], + [-3.863569, 58.563378], + [-4.656368, 58.549771], + [-4.997211, 58.627083], + [-5.132187, 58.26767], + [-5.424309, 58.037652], + [-5.194328, 57.957237], + [-5.81219, 57.860165], + [-5.873473, 57.473473], + [-5.625692, 57.21547], + [-6.051242, 56.692413], + [-5.679493, 56.500155], + [-5.316677, 56.649876], + [-5.577649, 56.333478], + [-5.514319, 56.190468], + [-5.706234, 55.961025], + [-5.612993, 55.760343], + [-5.762152, 55.288803], + [-5.446977, 55.709964], + [-5.18465, 55.937973], + [-4.978322, 55.861516], + [-4.61939156, 55.492030561], + [-4.846613, 55.324375], + [-5.136616, 54.849984], + [-4.959391, 54.729637], + [-4.809391568, 54.86019143], + [-4.387119677, 54.678776977], + [-4.352563613, 54.813140568], + [-3.960876, 54.772508], + [-3.534722999, 54.968525431], + [-3.365278005, 54.893142214], + [-3.594391589, 54.482971664], + [-3.165052402, 54.083248604], + [-2.860832, 54.194252], + [-3.038611889, 53.44147448], + [-3.609946539, 53.290362885], + [-4.124929, 53.237446], + [-4.767172, 52.794362], + [-4.220609352, 52.918804351], + [-4.020501262, 52.525363673], + [-4.208345, 52.264414], + [-4.833055, 52.021751], + [-5.07103927, 52.030357996], + [-5.059426, 51.620509], + [-4.375052, 51.776806], + [-4.205278, 51.535191], + [-3.844392644, 51.619304658], + [-3.404166937, 51.380470638], + [-2.653462942, 51.607693095], + [-2.962168809, 51.381859185], + [-3.023282, 51.195919], + [-3.766165365, 51.237586628], + [-4.205083, 51.198696], + [-4.309390682, 50.995364803], + [-4.525723692, 51.022909732], + [-4.562169706, 50.78203169], + [-5.024946, 50.539635], + [-5.4375, 50.194251692], + [-5.215756, 49.960499], + [-4.756021542, 50.330485636], + [-4.122156, 50.350315], + [-3.753942, 50.254355] + ] + ], + [ + [ + [-6.291696642, 54.112307601], + [-6.064038464, 54.023893456], + [-5.823835596, 54.244861999], + [-5.611948, 54.247189], + [-5.678836588, 54.58269141], + [-5.577474011, 54.675378565], + [-6.058385434, 55.062308566], + [-6.033783752, 55.169722428], + [-6.473470268, 55.251953178], + [-6.959256788, 55.194251517], + [-7.258676313, 55.066255673], + [-7.760272, 54.594236], + [-8.153852873, 54.437100244], + [-7.861760257, 54.21872503], + [-7.375242211, 54.136791006], + [-7.029644529, 54.421295102], + [-6.623755254, 54.03647201], + [-6.291696642, 54.112307601] + ] + ], + [ + [ + [-7.112076, 58.151199], + [-7.068661, 57.823612], + [-6.472553, 57.937382], + [-6.271263, 58.49847], + [-7.112076, 58.151199] + ] + ], + [ + [ + [-6.407371, 57.653695], + [-6.722016, 57.373036], + [-6.430656, 57.340028], + [-6.322603, 57.160012], + [-5.780177, 57.166075], + [-6.145023, 57.370977], + [-6.149305, 57.586753], + [-6.407371, 57.653695] + ] + ], + [ + [ + [-1.203882, 60.048614], + [-1.100137, 60.321059], + [-1.300253, 60.62258], + [-1.574702, 60.500811], + [-1.328337, 60.357644], + [-1.69247, 60.236785], + [-1.203882, 60.048614] + ] + ], + [ + [ + [-6.198518, 56.516304], + [-6.194493, 56.358215], + [-5.834615, 56.310431], + [-5.645486, 56.44705], + [-6.065833, 56.63842], + [-6.198518, 56.516304] + ] + ], + [ + [ + [-6.190677, 55.628418], + [-6.01914, 55.684279], + [-6.196944, 55.927032], + [-6.455732, 55.85257], + [-6.190677, 55.628418] + ] + ], + [ + [ + [-4.172602115, 53.299505113], + [-4.57345, 53.404127], + [-4.358612061, 53.130749181], + [-4.172602115, 53.299505113] + ] + ], + [ + [ + [-7.549544, 57.602816], + [-7.149071, 57.51084], + [-7.198611, 57.697585], + [-7.549544, 57.602816] + ] + ] + ] + }, + "properties": { + "id": "dfbf69a1-2bfc-4b49-a5b6-9c5087fbd011", + "code": "GBR", + "name": "United Kingdom", + "abbreviation": "C-GBR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-122.757721, 49.002533], + [-122.535622, 48.775448], + [-122.342888, 48.09737], + [-122.395378, 47.806622], + [-122.323952, 47.350388], + [-122.684998, 47.097778], + [-122.472778, 47.748394], + [-122.792137, 48.09761], + [-124.049538, 48.177586], + [-124.564598, 48.367649], + [-124.733887, 48.162498], + [-124.629448, 47.892223], + [-124.424721, 47.736946], + [-124.133041, 46.904232], + [-123.90538, 46.429077], + [-123.855835, 46.156387], + [-123.969345, 45.780788], + [-123.97068, 45.173737], + [-124.076385, 44.771946], + [-124.12247467, 44.092742921], + [-124.23262, 43.560917], + [-124.555832, 42.838333], + [-124.389847, 42.573269], + [-124.357414, 42.118076], + [-124.211746, 42], + [-124.063332, 41.433334], + [-124.222778, 40.722221], + [-124.409279, 40.443237], + [-124.363724, 40.261848], + [-123.852806, 39.833057], + [-123.827057, 39.348717], + [-123.730003, 38.954166], + [-123.333336, 38.564445], + [-123.130623, 38.452255], + [-122.85611, 38.016945], + [-122.52845, 37.819679], + [-122.480003, 38.114445], + [-122.106392, 37.499168], + [-122.515274, 37.781113], + [-122.360558, 37.149723], + [-121.78805542, 36.805000306], + [-121.943336487, 36.488887788], + [-121.280861, 35.666775], + [-120.887169, 35.434029], + [-120.858887, 35.209721], + [-120.638756, 35.133442], + [-120.640831, 34.563332], + [-120.471664, 34.447777], + [-119.602295, 34.420288], + [-118.9375, 34.043056], + [-118.541992, 34.038696], + [-118.296669, 33.708611], + [-118.11528, 33.75], + [-117.470772, 33.297253], + [-117.32637, 33.119179], + [-117.123496463, 32.530884], + [-114.720236764, 32.718626008], + [-114.813572763, 32.493913162], + [-111.075016146, 31.332382343], + [-108.208473175, 31.333363342], + [-108.208373456, 31.783754008], + [-106.528523272, 31.783817453], + [-106.21959714, 31.481547519], + [-105.955292739, 31.365126226], + [-105.401847967, 30.854443587], + [-105.00756693, 30.686026093], + [-104.687275952, 30.179880005], + [-104.674580674, 29.910828075], + [-104.450749093, 29.58167358], + [-103.97337839, 29.296052619], + [-103.153168174, 28.971745931], + [-102.839219769, 29.358895347], + [-102.674098893, 29.744528998], + [-102.389945827, 29.782801462], + [-101.463746268, 29.789341929], + [-100.79427047, 29.242100333], + [-100.398499623, 28.585093732], + [-100.29424398, 28.283574509], + [-99.930937875, 27.978954726], + [-99.877781971, 27.801462911], + [-99.478806331, 27.479124943], + [-99.451691697, 27.056946331], + [-99.280285164, 26.857823757], + [-99.086828109, 26.401394077], + [-98.799294669, 26.361960984], + [-98.148976714, 26.05055035], + [-97.803342767, 26.05993454], + [-97.522961192, 25.888194409], + [-97.160128874, 25.952016647], + [-97.272362, 26.08736], + [-97.463753, 26.690695], + [-97.411591, 27.322586], + [-97.042503, 28.02861], + [-96.206108, 28.614719], + [-95.643021, 28.754951], + [-95.218292, 29.005157], + [-95.14978, 29.181299], + [-94.870224, 29.290434], + [-94.982445, 29.681267], + [-94.691391, 29.741388], + [-94.561058, 29.483212], + [-93.710891723, 29.741563798], + [-93.171714783, 29.768846512], + [-92.31778, 29.531668], + [-91.879478, 29.83437], + [-91.619934, 29.735989], + [-91.519997, 29.528889], + [-91.265274, 29.478058], + [-91.09568, 29.192047], + [-90.729164, 29.143333], + [-90.577225, 29.31889], + [-90.083885, 29.167225], + [-90.207222, 29.565001], + [-89.093887, 29.177219], + [-89.669998, 29.510555], + [-89.471504, 29.725945], + [-89.487778, 30.041389], + [-89.658058, 29.861389], + [-89.837776, 29.941942], + [-89.638336, 30.150537], + [-88.849442, 30.43111], + [-88.710625, 30.342327], + [-88.359215, 30.404615], + [-88.129448, 30.338333], + [-88.087219, 30.566944], + [-87.57074, 30.271423], + [-87.178635, 30.423088], + [-87.158783, 30.58046], + [-86.819443, 30.407778], + [-86.254997253, 30.486686707], + [-85.989998, 30.268612], + [-85.360001, 29.893333], + [-85.313156, 29.687716], + [-84.990555, 29.715], + [-84.445488, 29.929701], + [-84.35778, 30.065275], + [-84.001663, 30.105833], + [-83.637062, 29.884033], + [-83.071114, 29.191668], + [-82.810387, 29.164019], + [-82.643692, 28.584093], + [-82.847244, 27.868116], + [-82.652077, 27.69924], + [-82.641388, 28.019444], + [-82.416115, 27.900278], + [-82.654167, 27.452223], + [-82.298195, 26.841806], + [-81.842361, 26.402361], + [-81.802086, 26.094862], + [-81.592918, 25.883472], + [-81.346802, 25.821251], + [-81.000969, 25.124306], + [-80.465416, 25.211527], + [-80.30986, 25.374027], + [-80.308197, 25.608194], + [-80.119026, 25.846527], + [-80.030975, 26.796251], + [-80.377281, 27.658491], + [-80.71833, 28.386108], + [-80.575554, 28.58639], + [-80.816666, 28.832777], + [-81.257225036, 29.78583336], + [-81.499725, 30.921665], + [-81.375763, 31.424612], + [-81.135666, 31.618725], + [-81.173485, 31.840246], + [-80.75972, 32.276669], + [-80.751282, 32.547119], + [-80.465149, 32.519573], + [-80.102623, 32.788315], + [-80.013298, 32.63932], + [-79.247223, 33.124722], + [-78.937225, 33.639721], + [-78.539169, 33.876945], + [-78.022095, 33.915157], + [-77.701683, 34.343971], + [-77.092827, 34.672848], + [-76.617226, 34.7075], + [-76.278053, 34.961388], + [-76.601242, 35.071358], + [-76.414658, 35.444004], + [-76.150932, 35.337067], + [-75.734726, 35.62611], + [-75.810822, 35.959499], + [-76.013054, 35.660831], + [-76.148888, 35.995556], + [-76.574226, 36.009212], + [-76.01812, 36.187019], + [-75.929726, 36.364445], + [-75.995178, 36.921883], + [-76.430557, 36.965832], + [-76.270233, 37.087776], + [-76.266945, 37.911945], + [-76.631439, 38.153419], + [-76.952126, 38.209114], + [-76.861389, 38.365002], + [-76.320831, 38.049999], + [-76.559448, 38.766945], + [-76.51487, 39.070305], + [-76.33374, 39.323177], + [-76.202774, 38.970001], + [-76.342781, 38.748333], + [-76.331947, 38.474167], + [-76.006943, 38.37389], + [-75.675552, 37.877224], + [-75.905281, 37.626945], + [-76.025551, 37.258156], + [-75.598892, 37.567501], + [-75.579445, 37.744446], + [-75.050278, 38.44389], + [-75.089745, 38.797222], + [-75.390831, 39.052223], + [-75.438331604, 39.393333435], + [-74.782219, 39.04361], + [-74.416771, 39.543613], + [-74.168907, 39.70232], + [-73.982224, 40.402222], + [-74.206665, 40.624722], + [-74.085686, 40.654892], + [-74.038612, 40.709999], + [-73.977279663, 40.711074829], + [-73.935837, 40.785278], + [-73.818054, 40.81361], + [-73.640556, 41.004166], + [-72.844719, 41.258335], + [-71.852478, 41.309322], + [-71.421661, 41.471092], + [-71.360443115, 41.74930954], + [-71.175957, 41.458912], + [-70.558609, 41.774166], + [-70.538887, 41.925278], + [-70.774399, 42.254681001], + [-71.011391, 42.276943], + [-70.784515, 42.70335], + [-70.815628, 42.896801], + [-70.521942, 43.343334], + [-70.197235, 43.564999], + [-70.118889, 43.813889], + [-69.700836, 43.942223], + [-69.202469, 43.942287], + [-68.953888, 44.323891], + [-68.605553, 44.275833], + [-68.458054, 44.446945], + [-67.900024, 44.393311], + [-67.383614, 44.689167], + [-67.234375, 44.636719], + [-66.979034, 44.805553], + [-67.266800009, 45.191123994], + [-67.4776, 45.287292], + [-67.425682082, 45.578472085], + [-67.802940368, 45.695995331], + [-67.783599854, 47.063171386], + [-68.243835448, 47.352554321], + [-68.897491455, 47.176639558], + [-69.043998718, 47.42577362], + [-69.221817016, 47.457641603], + [-69.997085572, 46.6958313], + [-70.057159424, 46.414680481], + [-70.292007446, 46.190940856], + [-70.266288756, 45.884941102], + [-70.823326111, 45.40296936], + [-71.413208008, 45.220157624], + [-71.511032104, 45.013435364], + [-74.637466091, 44.999195099], + [-74.674439056, 45.00328786], + [-74.764564515, 45.005191803], + [-75.307723999, 44.840999604], + [-76.441131592, 44.094436646], + [-76.798332215, 43.631408691], + [-78.681213378, 43.633590698], + [-79.202788827, 43.450992751], + [-79.058082581, 43.252819061], + [-78.936920166, 42.831001282], + [-80.073326112, 42.392559052], + [-81.260551452, 42.20552063], + [-82.407691956, 41.67692566], + [-82.681221008, 41.67729187], + [-83.067810059, 41.862613679], + [-83.095352172, 42.284229278], + [-82.868286134, 42.327590943], + [-82.521339416, 42.610420228], + [-82.424347, 42.998291], + [-82.122902456, 43.588372864], + [-82.525369359, 45.340919612], + [-83.592117, 45.818684], + [-83.571136474, 46.10256958], + [-83.954797, 46.056241], + [-84.129287719, 46.531349183], + [-84.55606842, 46.459651948], + [-84.763771057, 46.634880066], + [-84.843399049, 46.887283326], + [-86.772880555, 47.681743622], + [-88.370910645, 48.304248809], + [-88.689010621, 48.241508484], + [-89.339050292, 47.969898224], + [-89.867622, 47.998009], + [-90.033508301, 48.09634781], + [-90.742241, 48.113663], + [-90.839935302, 48.245868684], + [-91.399116515, 48.057098388], + [-92.947242737, 48.621395111], + [-93.25643921, 48.642494202], + [-93.751770019, 48.519760133], + [-93.850509643, 48.631637573], + [-94.535140992, 48.702335358], + [-94.825417, 49.294743], + [-95.149650789, 49.383296893], + [-95.15139, 48.999950001], + [-121.955391, 49.000046], + [-122.757721, 49.002533] + ] + ], + [ + [ + [-141.003036, 69.646156], + [-141.395828, 69.637497], + [-142.010422, 69.79583], + [-142.727081, 70.037498], + [-143.21666, 70.097916], + [-144.412506, 70.027084], + [-144.59584, 69.970833], + [-145.262497, 69.989586], + [-145.827606, 70.155731], + [-146.541153, 70.184898], + [-146.945831, 70.150002], + [-147.78125, 70.216667], + [-148.12709, 70.32708], + [-148.475006, 70.308334], + [-149.164581, 70.48542], + [-149.864578, 70.504166], + [-150.49791, 70.387497], + [-151.887497, 70.431252], + [-151.760422, 70.54583], + [-152.414581, 70.606247], + [-152.222916, 70.824997], + [-153.145828, 70.92083], + [-153.885422, 70.883331], + [-154.15625, 70.768753], + [-154.612503, 70.820831], + [-155.156769, 71.018234], + [-155.574997, 70.82917], + [-156.147919, 70.824997], + [-156.234894, 70.922401], + [-155.725525, 70.983849], + [-155.747391, 71.191147], + [-156.599487, 71.3349], + [-156.809891, 71.28698], + [-157.490097, 70.948433], + [-158.024994, 70.82917], + [-159.68541, 70.777084], + [-160.706772, 70.381767], + [-161.306244, 70.247917], + [-161.990097, 70.242187], + [-162.468231, 70.057816], + [-162.573441, 69.919266], + [-163.028641, 69.728645], + [-163.143234, 69.339066], + [-163.690109, 69.069267], + [-164.139587, 68.941666], + [-165.31459, 68.856247], + [-166.212494, 68.879166], + [-166.224487, 68.570312], + [-166.359894, 68.404686], + [-165.881256, 68.11042], + [-165.366669, 68.039581], + [-164.131775, 67.632812], + [-163.870316, 67.4151], + [-163.660416, 67.097916], + [-162.47084, 66.981247], + [-161.835419, 67.050003], + [-161.878647, 66.71302], + [-161.486984, 66.529686], + [-161.118744, 66.63958], + [-160.254166, 66.618752], + [-160.2276, 66.385933], + [-160.785416, 66.362503], + [-161.239578, 66.520836], + [-161.583328, 66.439583], + [-162.072403, 66.648437], + [-162.010941, 66.756767], + [-162.318756, 66.941666], + [-162.620316, 66.854683], + [-161.875519, 66.509895], + [-161.916153, 66.347397], + [-161.535416, 66.402084], + [-161.141663, 66.339584], + [-160.985931, 66.225517], + [-161.556763, 66.2276], + [-161.824478, 66.003647], + [-162.759903, 66.095314], + [-163.137497, 66.052086], + [-163.767181, 66.078651], + [-163.829163, 66.591667], + [-164.43959, 66.57708], + [-164.92865, 66.449478], + [-165.43959, 66.402084], + [-165.876572, 66.234901], + [-165.524994, 66.145836], + [-166.058334, 66.106247], + [-166.264587, 66.166664], + [-166.604172, 66.089584], + [-167.189072, 65.842186], + [-167.522919, 65.824997], + [-167.889587, 65.552086], + [-167.393753, 65.400002], + [-166.808853, 65.374481], + [-166.37709, 65.254166], + [-166.677078, 65.106247], + [-166.500519, 64.947395], + [-166.409897, 64.652603], + [-166.210419, 64.57917], + [-165.018753, 64.4375], + [-164.354172, 64.5625], + [-163.643753, 64.568748], + [-163.172913, 64.397919], + [-162.858337, 64.502083], + [-162.80365, 64.335937], + [-162.545319, 64.530731], + [-162.170837, 64.681252], + [-161.413025, 64.763016], + [-161.149475, 64.913017], + [-160.8974, 64.824478], + [-160.783859, 64.626564], + [-161.03334, 64.495834], + [-161.37709, 64.533333], + [-160.960938, 64.249481], + [-160.785934, 63.744274], + [-161.137497, 63.5], + [-161.96666, 63.431252], + [-162.265106, 63.492187], + [-162.435928, 63.34219], + [-163.037506, 63.060417], + [-163.608856, 63.07552], + [-163.760422, 63.214584], + [-164.322922, 63.239582], + [-164.582809, 63.120316], + [-164.861984, 62.822399], + [-164.504684, 62.71719], + [-164.844269, 62.526566], + [-165.266144, 62.43906], + [-165.766144, 62.059898], + [-165.636978, 61.850521], + [-166.097916, 61.802082], + [-166.143234, 61.506771], + [-165.722916, 61.302082], + [-165.643234, 61.140106], + [-165.293747, 61.179165], + [-164.539581, 60.847916], + [-164.141663, 60.883335], + [-163.914062, 61.191143], + [-163.577087, 60.881248], + [-163.460419, 60.645832], + [-163.793228, 60.579685], + [-163.773437, 60.732815], + [-164.684891, 60.823441], + [-164.725006, 60.897915], + [-165.368744, 60.506248], + [-164.704681, 60.29427], + [-164.140808, 59.849819], + [-163.681015, 59.797619], + [-163.147217, 59.84782], + [-162.515381, 59.989319], + [-162.36615, 60.158852], + [-161.708069, 59.500042], + [-161.958755, 59.372211], + [-161.975021, 59.140419], + [-161.788544, 58.968216], + [-161.763214, 58.550022], + [-161.290283, 58.771912], + [-160.778015, 58.89222], + [-160.358521, 59.073822], + [-160.248718, 58.890621], + [-159.904816, 58.768322], + [-159.736221, 58.930519], + [-159.317612, 58.696121], + [-159.058914, 58.421219], + [-158.751312, 58.495422], + [-158.880508, 58.72842], + [-158.782211, 58.88242], + [-158.407013, 59.064621], + [-158.548416, 58.79232], + [-158.087219, 58.62022], + [-157.095215, 58.875622], + [-157.093521118, 58.704021455], + [-157.472015, 58.49332], + [-157.696518, 57.612419], + [-158.331161, 57.280643], + [-158.678864, 57.005276], + [-158.795471, 56.78009], + [-159.053711, 56.800621], + [-159.818008, 56.53912], + [-160.384521, 56.254822], + [-160.522919, 55.94302], + [-160.783112, 55.883121], + [-161.097717, 55.959221], + [-161.804611, 55.88792], + [-162.255615, 55.689121], + [-162.486221, 55.37672], + [-162.809296, 55.30146], + [-162.865082, 55.181072], + [-163.298218, 55.108719], + [-163.345108, 54.800121], + [-163.047791, 54.969727], + [-162.706177, 54.956726], + [-162.665527, 55.290894], + [-162.413818, 55.032471], + [-162.049698, 55.069675], + [-161.681519, 55.407619], + [-161.59552, 55.609119], + [-161.39209, 55.626892], + [-161.476318, 55.3573], + [-161.239075, 55.354675], + [-160.842819, 55.522522], + [-160.53064, 55.475677], + [-159.832611, 55.848221], + [-159.622513, 55.81992], + [-158.504913, 55.978722], + [-158.190384, 56.19231], + [-158.331116, 56.482121], + [-157.887619, 56.468121], + [-157.392883, 56.863525], + [-157.203308, 56.764221], + [-156.727921, 57.038219], + [-156.583817, 56.987122], + [-156.338913, 57.176121], + [-156.183517, 57.477119], + [-156.025513, 57.433521], + [-155.571411, 57.78912], + [-155.068817, 57.904221], + [-155.039108, 58.020119], + [-154.588318, 58.02042], + [-154.007401, 58.37521], + [-153.901016, 58.609722], + [-153.594315, 58.631821], + [-153.312515, 58.854221], + [-153.699615, 59.07552], + [-154.24881, 59.116619], + [-154.113113, 59.305222], + [-153.729309, 59.440922], + [-153.479813, 59.644722], + [-153.059219, 59.690422], + [-152.706909, 59.92012], + [-152.673431, 60.164063], + [-152.239578, 60.395832], + [-152.3349, 60.469269], + [-151.845322, 60.726562], + [-151.782822, 60.857815], + [-151.142181, 61.06094], + [-150.597916, 61.360416], + [-150.452087, 61.25], + [-149.918747, 61.266666], + [-149.762497, 61.443748], + [-149.381256, 61.466667], + [-150.072403, 61.159893], + [-149.731247, 61.014584], + [-150.236984, 60.933857], + [-150.370834, 61.037498], + [-151.052597, 60.788021], + [-151.405731, 60.72031], + [-151.270309, 60.528648], + [-151.413025, 60.215107], + [-151.695312, 60.034893], + [-151.871109, 59.76762], + [-151.483521, 59.638622], + [-151.058807, 59.796921], + [-151.268967, 59.557129], + [-151.892517, 59.428822], + [-151.981812, 59.257919], + [-151.593414, 59.162922], + [-151.453918, 59.23732], + [-150.914917, 59.251221], + [-150.747116, 59.42432], + [-150.32431, 59.471321], + [-149.739014, 59.713921], + [-149.75032, 59.94112], + [-149.470215, 59.918221], + [-149.358856, 60.114063], + [-148.84581, 59.924221], + [-148.455994, 59.941284], + [-148.335419, 60.245834], + [-147.975006, 60.514584], + [-148.402084, 60.777084], + [-148.185928, 60.990105], + [-147.858337, 60.820835], + [-147.616669, 61.008335], + [-147.366669, 60.883335], + [-147.111984, 61.003643], + [-146.735931, 60.936981], + [-146.149994, 60.631248], + [-145.949997, 60.697918], + [-145.600006, 60.450001], + [-145.295837, 60.337502], + [-144.983337, 60.535416], + [-144.953644, 60.288021], + [-144.46875, 60.166668], + [-144.229172, 60.179165], + [-144.02916, 60.020832], + [-142.675003, 60.099998], + [-141.750214, 59.951519], + [-140.668121, 59.710522], + [-140.344116, 59.69392], + [-139.804413, 59.81842], + [-139.712112, 59.918819], + [-139.471664, 59.703056], + [-139.854446, 59.534168], + [-139.291107, 59.386665], + [-138.604568, 59.122143], + [-138.364441, 59.089443], + [-137.937637, 58.876682], + [-137.679993, 58.623333], + [-136.893326, 58.381668], + [-136.686111, 58.211666], + [-136.039993, 58.384998], + [-136.204483, 58.613327], + [-136.561722, 58.832375], + [-136.088638, 58.818325], + [-135.858887, 58.57], + [-135.908249, 58.379036], + [-135.623337, 58.426945], + [-135.16394, 58.208805], + [-135.047134, 58.308216], + [-135.140549, 58.617779], + [-135.401672, 58.97361], + [-135.393539, 59.297504], + [-135.138336, 58.830555], + [-134.787781, 58.494999], + [-134.219681, 58.205128], + [-133.888824, 57.974072], + [-133.515549, 57.545555], + [-133.465698, 57.150513], + [-132.782898, 57.002075], + [-132.570328, 56.634182], + [-131.990509, 56.342552], + [-131.931671, 56.236389], + [-131.763, 56.205116], + [-131.968811, 56.175903], + [-131.9487, 55.982853], + [-132.181122, 55.797169], + [-132.18512, 55.587944], + [-131.969482, 55.500832], + [-131.759445, 55.877777], + [-131.216537, 55.983082], + [-130.904083, 55.711655], + [-130.878265, 55.331635], + [-131.093979, 55.191402], + [-130.934204, 54.801697], + [-130.718597, 54.764301], + [-130.369995, 54.907223], + [-129.994186, 55.290195], + [-130.172501, 55.778164], + [-130.01001, 55.909119], + [-130.105408, 56.122681], + [-130.425476, 56.141724], + [-130.781799, 56.367126], + [-131.086975, 56.406128], + [-131.581298827, 56.612304688], + [-131.835388087, 56.599121099], + [-131.873108115, 56.80627403], + [-132.123107881, 56.873901359], + [-132.044800001, 57.045104999], + [-132.247803041, 57.21112096], + [-133.171951, 58.153831], + [-133.37997836, 58.431814233], + [-133.841049195, 58.729854583], + [-134.257995605, 58.860870362], + [-134.482727049, 59.130969999], + [-134.959777833, 59.281040191], + [-135.028885, 59.563640668], + [-135.47958374, 59.798099518], + [-136.353545998, 59.599884], + [-136.457763672, 59.281421662], + [-137.451507568, 58.908535003], + [-137.607437133, 59.243480683], + [-138.609207152, 59.760002137], + [-138.70578003, 59.906238555], + [-139.177017, 60.082863], + [-139.052078, 60.353725], + [-139.680069, 60.33572], + [-139.974075, 60.184513], + [-140.447968, 60.307964], + [-140.52034, 60.219059], + [-141.001572, 60.305069], + [-141.003036, 69.646156] + ] + ], + [ + [ + [-153.251953, 57.996807], + [-153.179642, 57.796879], + [-153.73024, 57.892883], + [-154.032715, 57.654949], + [-154.335754, 57.637417], + [-154.691116, 57.445835], + [-154.528336, 56.992222], + [-154.222229, 56.895], + [-154.11055, 57.127224], + [-153.881805, 57.117107], + [-154.150558, 56.746666], + [-153.977829, 56.743275], + [-153.341888, 57.189838], + [-152.338287, 57.422363], + [-152.469437, 57.599007], + [-152.345779, 57.833126], + [-153.251953, 57.996807] + ] + ], + [ + [ + [-133.602722, 56.355309], + [-133.696121, 55.912777], + [-133.287781, 56.015556], + [-133.049454, 55.607777], + [-133.237228, 55.285], + [-132.946106, 55.270325], + [-132.524994, 55.116112], + [-132.166107, 54.691387], + [-132.022781, 54.698612], + [-131.985001, 55.168335], + [-132.616394, 55.908325], + [-132.932053, 56.059891], + [-133.198914, 56.336304], + [-133.602722, 56.355309] + ] + ], + [ + [ + [-155.87638855, 20.095554351], + [-156.061950683, 19.727777482], + [-155.884719848, 19.332223892], + [-155.88194275, 19.036388397], + [-155.638061524, 18.9347229], + [-155.29359436, 19.263383866], + [-154.972503662, 19.348888398], + [-154.811111449, 19.526111602], + [-155.089996337, 19.734165191], + [-155.279251098, 20.018821717], + [-155.836410522, 20.267154694], + [-155.87638855, 20.095554351] + ] + ], + [ + [ + [-135.892776, 57.998611], + [-135.202515, 57.77652], + [-135.021164, 57.779461], + [-134.951981, 58.039471], + [-135.467224, 58.131111], + [-135.828293, 58.281052], + [-136.44751, 58.120377], + [-136.43222, 57.843056], + [-135.845001, 57.391666], + [-135.547302, 57.479309], + [-135.728882, 57.720276], + [-135.021591, 57.456352], + [-134.867783, 57.463055], + [-134.939713, 57.762535], + [-135.208328, 57.727779], + [-135.892776, 57.998611] + ] + ], + [ + [ + [-171.649994, 63.772915], + [-171.828644, 63.58073], + [-171.743225, 63.371357], + [-171.433334, 63.308334], + [-170.852081, 63.456249], + [-169.904678, 63.145309], + [-169.702606, 63.031769], + [-169.212494, 63.200001], + [-168.879166, 63.160416], + [-168.699997, 63.299999], + [-169.556244, 63.360416], + [-170.050003, 63.472916], + [-170.289581, 63.6875], + [-170.916672, 63.566666], + [-171.460419, 63.587502], + [-171.649994, 63.772915] + ] + ], + [ + [ + [-166.104172, 60.364582], + [-166.481766, 60.37344], + [-166.844269, 60.204685], + [-167.420319, 60.198441], + [-167.134903, 60], + [-166.108612, 59.75312], + [-166.029648, 59.867043], + [-165.57991, 59.91272], + [-165.688019, 60.290104], + [-166.104172, 60.364582] + ] + ], + [ + [ + [-135.410126, 57.557362], + [-135.692474, 57.353489], + [-135.338882, 57.047222], + [-134.901489, 56.325073], + [-134.623886, 56.256111], + [-134.617844, 56.631592], + [-134.862778, 57.271667], + [-134.830154, 57.400558], + [-135.410126, 57.557362] + ] + ], + [ + [ + [-134.177032, 58.154564], + [-134.709015, 58.227726], + [-134.730881, 57.721672], + [-134.579727, 57.476494], + [-134.600174, 57.033569], + [-133.862442, 57.367729], + [-133.93515, 57.610878], + [-134.332474, 58.000721], + [-134.177032, 58.154564] + ] + ], + [ + [ + [-163.761673, 55.047501], + [-164.300598, 54.898071], + [-164.433334, 54.932777], + [-164.847778, 54.419998], + [-164.448883, 54.421391], + [-164.237793, 54.585327], + [-163.604034, 54.616199], + [-163.330002, 54.753056], + [-163.542297, 55.050991], + [-163.761673, 55.047501] + ] + ], + [ + [ + [-131.251114, 55.967007], + [-131.712051, 55.833611], + [-131.831116, 55.448612], + [-131.235046, 55.196762], + [-130.970596, 55.392273], + [-130.939667, 55.619781], + [-131.251114, 55.967007] + ] + ], + [ + [ + [-133.866089, 57.095886], + [-134.025406, 57.017223], + [-133.773926, 56.878571], + [-133.712006, 56.788292], + [-133.710876, 56.649475], + [-133.65332, 56.591675], + [-133.652451, 56.442009], + [-133.156128, 56.458313], + [-133.097137, 56.569347], + [-132.931625, 56.663376], + [-132.97728, 56.919994], + [-133.866089, 57.095886] + ] + ], + [ + [ + [-166.646439, 54.013237], + [-167.009277, 53.961098], + [-167.16185, 53.467297], + [-167.854507, 53.309505], + [-167.503738, 53.258499], + [-167.05278, 53.431717], + [-166.76445, 53.443611], + [-166.554443, 53.622223], + [-166.274445, 53.687778], + [-166.274994, 53.983082], + [-166.549438, 53.859497], + [-166.646439, 54.013237] + ] + ], + [ + [ + [-73.739998, 40.594444], + [-73.224007, 40.718792], + [-72.697701, 40.77784], + [-72.110275, 40.99472], + [-72.576385, 40.933334], + [-73.11869, 40.977837], + [-73.171074, 40.904167], + [-73.295837, 40.924915], + [-73.541351, 40.876873], + [-73.565735, 40.915516], + [-73.765717, 40.812897], + [-73.942665, 40.765854], + [-73.974564, 40.702126], + [-73.994164, 40.704723], + [-74.042038, 40.628414], + [-74, 40.57111], + [-73.739998, 40.594444] + ] + ], + [ + [ + [-152.64859, 58.475895], + [-152.784042, 58.278412], + [-153.042053, 58.304794], + [-153.220322, 58.15778], + [-152.861343, 57.992355], + [-152.08493, 58.152836], + [-151.995651, 58.345192], + [-152.442368, 58.372734], + [-152.64859, 58.475895] + ] + ], + [ + [ + [-134.244995, 56.935486], + [-134.401062, 56.726135], + [-134.042267, 56.40752], + [-134.294449, 56.353333], + [-134.223068, 56.063274], + [-133.957703, 56.094727], + [-133.972534, 56.348499], + [-133.853302, 56.60968], + [-133.744568, 56.556488], + [-133.72998, 56.777527], + [-133.92778, 56.779167], + [-134.244995, 56.935486] + ] + ], + [ + [ + [-167.993546, 53.564182], + [-168.407776, 53.421944], + [-168.344452, 53.261391], + [-168.764877, 53.183079], + [-168.858337, 52.950832], + [-168.460007, 53.054722], + [-168.272217, 53.241112], + [-167.841324, 53.386139], + [-167.993546, 53.564182] + ] + ], + [ + [ + [-156.593445, 21.030005], + [-156.620285, 20.806944], + [-156.366669, 20.575556], + [-156.044998, 20.653055], + [-156.001938, 20.794722], + [-156.593445, 21.030005] + ] + ], + [ + [ + [-157.97583, 21.709999], + [-158.283325, 21.575018], + [-158.103134, 21.294956], + [-157.651077, 21.298845], + [-157.97583, 21.709999] + ] + ], + [ + [ + [-147.089066, 60.364059], + [-147.398437, 60.113022], + [-147.706787, 59.99231], + [-147.883118, 59.765121], + [-147.525009, 59.841122], + [-147.031769, 60.21719], + [-147.089066, 60.364059] + ] + ], + [ + [ + [-70.190834, 42.081112], + [-70.053337, 41.776112], + [-70.550003, 41.775276], + [-70.677498, 41.527222], + [-70.008331, 41.673054], + [-69.945831, 41.846668], + [-70.190834, 42.081112] + ] + ], + [ + [ + [-132.419998, 56.347778], + [-132.716492, 56.216137], + [-132.353683, 55.912666], + [-132.220963, 56.084019], + [-132.419998, 56.347778] + ] + ], + [ + [ + [-174.139999, 52.413334], + [-174.636108, 52.112778], + [-174.412781, 52.048611], + [-174.095001, 52.142223], + [-174.139999, 52.413334] + ] + ], + [ + [ + [-159.401321, 22.23068], + [-159.723038, 22.152674], + [-159.764725, 21.986944], + [-159.451263, 21.872543], + [-159.401321, 22.23068] + ] + ], + [ + [ + [172.790558, 53.004723], + [172.738892, 52.791389], + [173.116104, 52.784443], + [173.303894, 52.924168], + [172.790558, 53.004723] + ] + ], + [ + [ + [-133.102783, 55.236397], + [-133.239456, 55.086666], + [-132.972412, 54.7995], + [-132.71611, 54.761665], + [-133.061417, 55.078743], + [-133.102783, 55.236397] + ] + ], + [ + [ + [-132.368332, 56.486668], + [-132.34668, 56.271397], + [-132.134186, 56.176537], + [-131.922256, 56.203094], + [-132.030334, 56.352665], + [-132.14502, 56.343872], + [-132.368332, 56.486668] + ] + ], + [ + [ + [-132.931671, 56.821716], + [-132.913208, 56.643921], + [-132.952133, 56.509674], + [-132.54303, 56.583313], + [-132.931671, 56.821716] + ] + ], + [ + [ + [-122.600555, 48.40889], + [-122.764511, 48.216187], + [-122.606812, 48.032074], + [-122.376656, 48.034527], + [-122.65786, 48.282558], + [-122.600555, 48.40889] + ] + ], + [ + [ + [-156.911896, 21.165503], + [-157.260315, 21.216921], + [-157.311356, 21.102251], + [-156.874313, 21.046503], + [-156.911896, 21.165503] + ] + ], + [ + [ + [-176.563339, 51.997223], + [-176.867218, 51.682777], + [-176.583328, 51.687778], + [-176.563339, 51.997223] + ] + ], + [ + [ + [-173.516113, 52.15139], + [-173.936661, 52.055], + [-173.152771, 52.059166], + [-173.516113, 52.15139] + ] + ], + [ + [ + [-146.535416, 60.474998], + [-146.618744, 60.235416], + [-146.308334, 60.345833], + [-146.535416, 60.474998] + ] + ], + [ + [ + [-160.688339, 58.81361], + [-161.052948, 58.70266], + [-160.882217, 58.58139], + [-160.688339, 58.81361] + ] + ], + [ + [ + [-159.867218, 55.285278], + [-160.19278, 55.102779], + [-159.867065, 55.094757], + [-159.867218, 55.285278] + ] + ], + [ + [ + [-131.551468, 55.281345], + [-131.601105, 54.996944], + [-131.386505, 55.012527], + [-131.551468, 55.281345] + ] + ], + [ + [ + [-160.695801, 55.400616], + [-160.861084, 55.274719], + [-160.538849, 55.157417], + [-160.695801, 55.400616] + ] + ], + [ + [ + [-153.213882, 57.203609], + [-153.305328, 56.991093], + [-152.945526, 57.187572], + [-153.213882, 57.203609] + ] + ], + [ + [ + [-147.68541, 60.489582], + [-147.902084, 60.227085], + [-147.777084, 60.15625], + [-147.68541, 60.489582] + ] + ] + ] + }, + "properties": { + "id": "a9382f9a-2939-4f52-b5d4-c9ba3b6f3def", + "code": "USA", + "name": "United States", + "abbreviation": "C-USA", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-177.368942, 28.217222], + [-177.387772, 28.215164], + [-177.392502, 28.195], + [-177.36055, 28.2075], + [-177.368942, 28.217222] + ] + ] + }, + "properties": { + "id": "3c424fb9-fd08-451e-9c84-31ac00f38882", + "code": "UMI", + "name": "United States Minor Outlying Isl", + "abbreviation": "C-UMI", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-58.348822999, -33.112979999], + [-58.417815715, -33.354201126], + [-58.419534, -33.909168], + [-57.84264, -34.476528], + [-57.133958599, -34.449881199], + [-56.8208431, -34.6883397], + [-56.448952, -34.752924], + [-56.157917023, -34.929862977], + [-55.780971527, -34.771251677], + [-55.410309, -34.790119], + [-54.941419, -34.956249], + [-54.213413, -34.663673], + [-53.805131, -34.405596], + [-53.369862, -33.744077], + [-53.53131893, -33.645071055], + [-53.484397889, -33.078063965], + [-53.09424591, -32.724189758], + [-53.542809233, -32.479692961], + [-53.849429147, -32.001130134], + [-54.080886701, -31.9292828], + [-54.4564064, -31.6517073], + [-54.5867653, -31.4565633], + [-54.8367023, -31.442002601], + [-55.0024318, -31.269257799], + [-55.2466824, -31.252289999], + [-55.578888099, -30.839533899], + [-55.9300561, -31.085948999], + [-55.989596014, -30.858504928], + [-56.661922, -30.197669], + [-57.082138, -30.094591], + [-57.203642, -30.285423], + [-57.645093944, -30.193501761], + [-57.859237999, -30.47701], + [-57.8095954, -30.9133178], + [-58.085653199, -31.8192923], + [-58.206526299, -31.867727099], + [-58.106447, -32.240017001], + [-58.204637, -32.460549001], + [-58.084104699, -32.9978188], + [-58.348822999, -33.112979999] + ] + ] + }, + "properties": { + "id": "57a46119-abe3-4928-8bf3-e9440cdf059e", + "code": "URY", + "name": "Uruguay", + "abbreviation": "C-URY", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [67.790663956, 37.185199858], + [67.82836914, 37.463287355], + [68.402641297, 38.194988252], + [68.068481446, 38.540653229], + [68.115348815, 39.010017396], + [67.715362549, 38.999656678], + [67.462097169, 39.20318985], + [67.425483703, 39.496959686], + [67.70501709, 39.65655899], + [68.514877319, 39.534103394], + [68.999465942, 40.220531465], + [69.316139221, 40.201591492], + [69.400970458, 40.782024384], + [69.667678833, 40.629947662], + [70.365493775, 40.891174316], + [70.496482848, 41.031852723], + [70.789672852, 40.725135803], + [70.33267975, 40.449245452], + [70.645622254, 40.165016174], + [70.968498, 40.228043], + [71.277320862, 40.326725006], + [71.716194, 40.150803], + [71.939475999, 40.224644], + [72.152488709, 40.457317353], + [72.420814513, 40.4049263], + [72.766708374, 40.673404694], + [73.123123168, 40.797458649], + [72.575523376, 40.890445709], + [72.497581483, 41.030647279], + [71.890357971, 41.172172546], + [71.935165406, 41.308265685], + [71.726005555, 41.553714752], + [71.435073852, 41.123622895], + [70.779647827, 41.221355438], + [70.713249206, 41.464733125], + [70.491859436, 41.399368287], + [70.222991943, 41.606998444], + [70.507652284, 41.727169037], + [71.271270752, 42.200099946], + [70.945350647, 42.262252808], + [70.626960755, 42.000823975], + [70.433303833, 42.130077362], + [70.159736633, 41.844303131], + [69.621070862, 41.658016204], + [69.033241272, 41.342170716], + [68.744804383, 40.987457275], + [68.515808105, 40.98153305], + [68.684867859, 40.59570694], + [68.416770934, 40.575237274], + [67.889350892, 40.85754776], + [67.993492127, 41.063732147], + [67.736282349, 41.202819824], + [66.60610199, 41.251403808], + [66.53076172, 41.89629364], + [66.008545, 41.943497], + [66.105667115, 42.347320557], + [66.099205017, 42.962192535], + [65.827186585, 42.868133545], + [65.651077271, 43.303516389], + [65.010261535, 43.766853333], + [64.53653717, 43.603313447], + [63.388889314, 43.672855378], + [62.028697967, 43.486515046], + [61.275432586, 44.136764527], + [61.036132813, 44.137073516], + [59.792713165, 44.923030853], + [58.569717406, 45.571105956], + [55.998100282, 45], + [56.000598907, 41.318046571], + [57.042415618, 41.263214112], + [57.001541138, 41.895999909], + [57.312805176, 42.137798309], + [57.858409882, 42.181613922], + [57.904190063, 42.426219939], + [58.297172547, 42.689449311], + [59.169483185, 42.52803421], + [59.419246674, 42.276561737], + [59.827965, 42.306316], + [60.039135, 42.19593], + [59.949272156, 41.973506928], + [60.163757324, 41.609516144], + [60.131248473, 41.394821166], + [60.469356537, 41.221382141], + [61.04604721, 41.234687805], + [61.299812, 41.145222001], + [61.62688446, 41.264987945], + [61.970878602, 41.019138337], + [62.113071442, 40.596107484], + [62.349460616, 40.438297203], + [62.487949371, 39.951393128], + [63.539127349, 39.383579254], + [64.177116395, 38.959190369], + [65.025039673, 38.61246109], + [65.481369018, 38.31899643], + [65.851486207, 38.274082183], + [66.676628112, 37.961967468], + [66.548225403, 37.79177475], + [66.526388264, 37.34608813], + [66.996528625, 37.389896393], + [67.277362824, 37.177192688], + [67.517433167, 37.274326325], + [67.790663956, 37.185199858] + ] + ] + }, + "properties": { + "id": "ec906103-fb6c-4877-bec1-0d138440cc65", + "code": "UZB", + "name": "Uzbekistan", + "abbreviation": "C-UZB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [167.22416687, -15.52000141], + [167.077225, -15.019168], + [166.822494506, -15.153609276], + [166.623672485, -14.665554999], + [166.541442871, -14.84546566], + [166.648605347, -15.399168013], + [166.815552, -15.668612], + [167.22416687, -15.52000141] + ] + ], + [ + [ + [167.565933228, -16.19914627], + [167.225281, -15.878331], + [167.152938843, -16.077356338], + [167.388611, -16.189722], + [167.459579, -16.567957], + [167.834167, -16.470833], + [167.565933228, -16.19914627] + ] + ], + [ + [ + [169.29750061, -18.858888626], + [169.041382, -18.629444], + [169.003326416, -18.885833741], + [169.29750061, -18.858888626] + ] + ], + [ + [ + [168.499512, -17.597761], + [168.249451, -17.572222], + [168.386108, -17.826111], + [168.499512, -17.597761] + ] + ] + ] + }, + "properties": { + "id": "1f15f00b-4150-4620-bc97-a265206dc5ca", + "code": "VUT", + "name": "Vanuatu", + "abbreviation": "C-VUT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [12.449790001, 41.905609131], + [12.44662857, 41.90184021], + [12.458400726, 41.90184021], + [12.455550193, 41.907550812], + [12.449790001, 41.905609131] + ] + ] + }, + "properties": { + "id": "7c9e51f2-2160-4bc8-8e60-1ef9b9bfae95", + "code": "VAT", + "name": "Vatican City", + "abbreviation": "C-VAT", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-60.73051803, 5.197120977], + [-61.386719, 5.946328], + [-61.130009, 6.181298], + [-61.219208, 6.593304], + [-61.132141, 6.723821], + [-60.720569633, 6.747941029], + [-60.343052, 7.03345], + [-60.547969818, 7.14073801], + [-60.636600001, 7.604187], + [-60.006241, 8.062861], + [-59.821274, 8.31208], + [-59.987640381, 8.530454636], + [-60.201527, 8.629862], + [-60.591805, 8.539305], + [-60.78875, 9.310416], + [-61.008472442, 9.539027215], + [-61.43208313, 9.812084198], + [-61.869583, 9.811806], + [-62.194305, 10.020695], + [-62.35236, 9.884027], + [-62.792362213, 10.555973053], + [-62.322918, 10.538194], + [-62.251526, 10.633751], + [-62.752083, 10.740973], + [-63.53125, 10.62736], + [-64.295135, 10.636805], + [-63.663471223, 10.475694656], + [-64.19236, 10.475695], + [-64.364586, 10.300972], + [-64.765976, 10.098195], + [-65.160141001, 10.083193999], + [-65.872917176, 10.30430603], + [-66.236251832, 10.649306297], + [-67.028473, 10.612917], + [-67.903473, 10.473751], + [-68.184028626, 10.51680565], + [-68.240974, 10.89125], + [-68.404305, 11.190694], + [-68.829307556, 11.444028854], + [-69.282363893, 11.534029961], + [-69.607361, 11.458748], + [-69.751251, 11.66764], + [-69.93264, 12.172083], + [-70.199303, 12.101806], + [-70.290969848, 11.901806831], + [-70.185691834, 11.60486126], + [-69.931526, 11.51736], + [-70.515694, 11.238194], + [-70.843193, 11.195417], + [-71.247643, 10.984029], + [-71.48764, 10.94514], + [-71.47958374, 10.391804695], + [-71.039306642, 9.742918969], + [-71.063194, 9.313195], + [-71.334305001, 9.09375], + [-71.696807862, 9.058471679], + [-71.73652649, 9.353193284], + [-71.931526183, 9.482916833], + [-72.125694, 9.806805], + [-71.990135, 10.073195], + [-71.630142213, 10.439306259], + [-71.581802368, 10.701806069], + [-71.960419, 11.425418], + [-71.941528, 11.601251], + [-71.439308, 11.718749], + [-71.386253, 11.81414], + [-71.966057, 11.650084], + [-72.245132446, 11.144904137], + [-72.497787, 11.085117], + [-72.895729065, 10.45032978], + [-72.944748, 9.842818], + [-73.347015382, 9.173742295], + [-73.007209779, 9.291072846], + [-72.766471863, 9.10688591], + [-72.654380798, 8.614500047], + [-72.392242432, 8.35640812], + [-72.350975036, 8.003447533], + [-72.473007202, 7.486440182], + [-72.195358276, 7.385155678], + [-72.006774902, 7.007916929], + [-71.746429444, 7.08072424], + [-71.02204132, 6.974288463], + [-70.557540894, 7.079834461], + [-70.294609071, 6.934592248], + [-70.121681213, 6.979224204], + [-69.426879882, 6.102223396], + [-69.110298157, 6.214188575], + [-68.643798828, 6.128194808], + [-67.827026367, 6.304127217], + [-67.547523499, 6.279095649], + [-67.404739379, 5.999525071], + [-67.588737488, 5.846688272], + [-67.632926941, 5.466629983], + [-67.825698852, 5.337379933], + [-67.85066986, 4.51061678], + [-67.61592865, 3.757788182], + [-67.483940125, 3.748416663], + [-67.307891846, 3.377990246], + [-67.855041504, 2.867162704], + [-67.565872192, 2.769107581], + [-67.185218812, 2.334057808], + [-66.856750488, 1.229928494], + [-66.318511964, 0.755015015], + [-65.964470003, 0.80945348], + [-65.585578919, 1.008911015], + [-65.44304657, 0.689849974], + [-65.155059815, 1.124938964], + [-64.763854981, 1.230741025], + [-64.397445679, 1.526810051], + [-64.065223694, 1.675981998], + [-64.061889648, 1.930709957], + [-63.397701264, 2.14685607], + [-63.406806946, 2.435909988], + [-63.780818939, 2.391247988], + [-64.056053162, 2.497651101], + [-63.982719421, 2.717369079], + [-64.235229493, 3.114319085], + [-64.185775758, 3.559587002], + [-64.472457886, 3.781533958], + [-64.810523986, 4.174582006], + [-64.560493469, 4.10153389], + [-64.17189026, 4.128757954], + [-63.964107513, 3.867922068], + [-63.850215911, 3.949868918], + [-63.512432098, 3.847371101], + [-63.204929351, 3.951251983], + [-62.984916687, 3.609591961], + [-62.73217392, 4.035823821], + [-62.355457306, 4.150284767], + [-62.134559632, 4.091252804], + [-61.537948608, 4.383833886], + [-60.991333008, 4.516063213], + [-60.587852477, 4.965773106], + [-60.73051803, 5.197120977] + ] + ] + }, + "properties": { + "id": "01797f8e-2811-48e1-837d-906ed10f5e1a", + "code": "VEN", + "name": "Venezuela", + "abbreviation": "C-VEN", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [104.439158228, 10.423138713], + [104.616219, 10.148005], + [104.732826233, 10.227804185], + [105.055603028, 9.945043563], + [104.850509644, 9.681191444], + [104.782066345, 8.80614853], + [104.837974548, 8.561211585], + [105.107864379, 8.636026383], + [105.54222107, 9.11970234], + [106.186874391, 9.379118919], + [106.308753967, 9.595242501], + [106.487960815, 9.550541877], + [106.783775329, 10.097368241], + [106.782730102, 10.375644683], + [107.041458131, 10.465604783], + [107.254615784, 10.379359245], + [107.896888733, 10.722084999], + [108.085067749, 10.914100647], + [108.33107, 10.951362], + [108.786437989, 11.312409402], + [109.014511109, 11.355934144], + [109.282211, 11.944951], + [109.197166443, 12.254286767], + [109.337311, 12.387954], + [109.190285, 12.630007], + [109.456024171, 12.91322899], + [109.301185608, 13.126836777], + [109.214638, 13.74518], + [109.293678, 13.89363], + [108.920478821, 15.014450074], + [108.909256, 15.248987], + [108.618339538, 15.514917373], + [108.247932433, 16.056728364], + [107.980674744, 16.316909791], + [107.309417725, 16.802339553], + [107.112930298, 17.085716247], + [106.655471801, 17.450939179], + [106.463745117, 17.759805679], + [106.420937, 18.102571], + [106.100547791, 18.275972367], + [105.637176515, 18.89720726], + [105.736854553, 19.102783203], + [105.837295532, 19.662765503], + [105.953071595, 19.919231416], + [106.35673523, 20.173336028], + [106.583358765, 20.21803856], + [106.585105896, 20.550251007], + [106.961929322, 20.950782776], + [107.199333, 20.9347], + [107.558731, 21.155949], + [107.792060851, 21.472227096], + [107.991661, 21.546322], + [107.81551361, 21.658439636], + [107.382347107, 21.595428466], + [106.991722108, 21.951656341], + [106.765014649, 22.013175964], + [106.559577943, 22.348882675], + [106.835670471, 22.806064606], + [106.588005065, 22.932483672], + [106.278671265, 22.868831635], + [106.14502716, 22.996707917], + [105.872772217, 22.932710648], + [105.321228027, 23.391620637], + [105.237396241, 23.264867783], + [104.80116272, 23.115056992], + [104.86315918, 22.943468094], + [104.399238586, 22.701955795], + [104.267967225, 22.839319229], + [104.039291382, 22.723707199], + [103.961410522, 22.506477357], + [103.647262574, 22.794525147], + [103.531600952, 22.594932557], + [103.31943512, 22.807647705], + [103.030815125, 22.4424572], + [102.481575013, 22.778799058], + [102.145095826, 22.400774002], + [102.611213683, 21.922199249], + [102.675338745, 21.655506134], + [102.985512, 21.726517], + [102.911886385, 21.230425288], + [103.11478424, 20.896928788], + [103.674446105, 20.668684005], + [103.80531311, 20.854190827], + [104.120582581, 20.972215653], + [104.524391175, 20.701698304], + [104.38721466, 20.48799324], + [104.614379882, 20.242595673], + [104.993026733, 20.094930649], + [104.641685487, 19.621925354], + [104.16191864, 19.695711137], + [103.901992798, 19.308712005], + [104.543571472, 18.973827362], + [104.738937379, 18.800678254], + [105.198867798, 18.638824462], + [105.103874207, 18.447423936], + [105.642876, 17.992552], + [105.619293212, 17.873899461], + [106.092086792, 17.360090256], + [106.549835204, 16.997842789], + [106.660644531, 16.473194122], + [106.830574036, 16.549053192], + [106.969863891, 16.302373885], + [107.467460633, 16.024957658], + [107.210578918, 15.826229096], + [107.381584167, 15.493277549], + [107.595420837, 15.381952285], + [107.556381204, 14.686234709], + [107.338652423, 14.127848981], + [107.442549785, 13.997592164], + [107.627678766, 13.36649583], + [107.495837281, 13.027784286], + [107.589547299, 12.559506696], + [107.543897177, 12.350877199], + [107.155564344, 12.27787959], + [107.003350754, 12.089350493], + [106.724104774, 11.975694743], + [106.411855086, 11.973559199], + [106.440304342, 11.6691752], + [106.024236022, 11.774410384], + [105.875629837, 11.287611961], + [106.206101064, 10.977754812], + [105.898415874, 10.844197791], + [105.779420432, 11.030489938], + [105.346457139, 10.868015445], + [105.080220543, 10.954634273], + [105.098302155, 10.721011909], + [104.869073751, 10.522200051], + [104.439158228, 10.423138713] + ] + ], + [ + [ + [104.034828185, 10.053902626], + [104.079086, 10.370454], + [103.861168, 10.305357], + [104.034828185, 10.053902626] + ] + ] + ] + }, + "properties": { + "id": "420e0bb8-8cfd-45b4-afe6-05137404bfb2", + "code": "VNM", + "name": "Vietnam", + "abbreviation": "C-VNM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-64.664306641, 17.714860916], + [-64.747642517, 17.783750534], + [-64.903198243, 17.681249618], + [-64.664306641, 17.714860916] + ] + ] + }, + "properties": { + "id": "a95c6223-4a0a-4084-b9dc-981098c7dd6a", + "code": "VIR", + "name": "Virgin Islands, U.S.", + "abbreviation": "C-VIR", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-176.186386, -13.3075], + [-176.218612999, -13.230553999], + [-176.246384, -13.314445], + [-176.186386, -13.3075] + ] + ] + }, + "properties": { + "id": "6c46fdb4-a4f6-4e04-8095-4f429b1edcb4", + "code": "WLF", + "name": "Wallis and Futuna", + "abbreviation": "C-WLF", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-8.670013428, 27.670074462], + [-13.167089462, 27.68309784], + [-13.573749543, 26.731527328], + [-13.977640152, 26.470693588], + [-14.182916641, 26.424583435], + [-14.474305153, 26.180694581], + [-14.845693588, 25.207359314], + [-14.882638932, 24.701805114], + [-15.219028, 24.442083], + [-15.599585, 24.039026], + [-16.188749, 23.126806], + [-16.494583, 22.325138], + [-16.812361, 22.151251], + [-16.982082, 21.718752], + [-17.045986, 20.771763], + [-16.939711, 21.326639], + [-15.877051, 21.341209], + [-13.00176, 21.330811], + [-13.145749092, 22.731409073], + [-12.957139015, 23.213079453], + [-12.740400313, 23.391349792], + [-12.000000001, 23.454519272], + [-12.003888131, 25.99864006], + [-8.674157142, 25.997608184], + [-8.673868179, 27.298070908], + [-8.670013428, 27.670074462] + ] + ] + }, + "properties": { + "id": "5e61a81a-17c4-4c18-8329-c29fd342b3ef", + "code": "ESH", + "name": "Western Sahara", + "abbreviation": "C-ESH", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [51.999999999, 18.999998094], + [50.7833333, 18.7888889], + [49.116666701, 18.616666699], + [48.183333299, 18.1666667], + [47.6000003, 17.449999401], + [47.4666667, 17.1166667], + [47, 16.95], + [46.75, 17.2833333], + [46.366666701, 17.2333333], + [45.399999999, 17.3333333], + [45.216666699, 17.4333333], + [44.4666667, 17.4333333], + [43.683332587, 17.366667371], + [43.484638901, 17.5451111], + [43.24075, 17.480527799], + [43.120722, 16.528583], + [42.909798, 16.392508], + [42.778236, 16.369196], + [42.810696, 15.87014], + [42.683193, 15.727362], + [43.01236, 14.544308], + [43.097363, 14.063472], + [43.292640686, 13.605972291], + [43.25375, 13.215973], + [43.494583, 12.817363], + [43.928749, 12.597085], + [44.727638, 12.753472], + [45.377361, 13.055695], + [45.639584, 13.338752], + [46.241528, 13.433473], + [46.685138703, 13.425138473], + [47.391529, 13.653473], + [47.707085, 13.91236], + [48.023472, 14.055417], + [48.17625, 13.970417], + [48.679584504, 14.045694351], + [49.112640382, 14.531525612], + [49.934307097, 14.850416183], + [50.14680481, 14.841806412], + [50.475139618, 15.023472787], + [51.22013855, 15.192361831], + [52.224582673, 15.635418892], + [52.14680481, 15.972361566], + [52.23764038, 16.202362061], + [52.49597168, 16.440416336], + [53.082321166, 16.642362594], + [52.712574005, 17.080316544], + [52.782176971, 17.349733353], + [51.999999999, 18.999998094] + ] + ], + [ + [ + [53.740970612, 12.634861946], + [53.543468, 12.713688], + [53.305138, 12.536528], + [53.678195953, 12.304026603], + [54.140415192, 12.351250649], + [54.473197936, 12.54490757], + [54.110473632, 12.70068264], + [53.740970612, 12.634861946] + ] + ] + ] + }, + "properties": { + "id": "d3d10463-5ede-462d-be64-199bc1336fda", + "code": "YEM", + "name": "Yemen", + "abbreviation": "C-YEM", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [23.440829367, -17.635094307], + [24.224937928, -17.471576287], + [24.701937939, -17.493276287], + [25.040837939, -17.584176287], + [25.267707964, -17.782541854], + [25.688637939, -17.804176287], + [25.973437939, -17.997676287], + [26.399237939, -17.935876287], + [26.717837939, -18.077376287], + [27.005437939, -17.953576287], + [27.561737939, -17.401676287], + [27.837637939, -16.963376287], + [28.829284668, -16.491699219], + [28.867919922, -16.045898438], + [29.217937939, -15.778476287], + [29.800737939, -15.607276287], + [30.411541281, -15.610714701], + [30.219437939, -14.997876287], + [30.687337939, -14.819876287], + [31.506437939, -14.600976287], + [31.956115723, -14.401000977], + [32.454837939, -14.271576287], + [33.24020417, -13.998174991], + [33.037637939, -14.042876287], + [32.802737939, -13.655476287], + [33.026137939, -13.214176287], + [32.961237939, -12.775676287], + [33.530737939, -12.365076287], + [33.241837939, -12.130776287], + [33.304837939, -11.605776287], + [33.230537939, -11.428776287], + [33.402937939, -11.160576287], + [33.248537939, -10.873776287], + [33.706237939, -10.602376287], + [33.395690918, -9.916687012], + [33.098510742, -9.674194336], + [32.955853378, -9.399693235], + [32.545851713, -9.254399438], + [32.437154381, -9.118147416], + [31.98806949, -9.075258924], + [31.376548793, -8.588562276], + [31.016937939, -8.576676287], + [30.795076198, -8.276758081], + [30.429537939, -8.273276287], + [28.994637939, -8.460476287], + [28.782437939, -8.929676287], + [28.390637939, -9.225676287], + [28.670471191, -9.815185547], + [28.631286621, -10.528686523], + [28.391837939, -11.587176287], + [28.447937939, -11.819576287], + [28.964237939, -12.209376287], + [29.050937939, -12.378176287], + [29.494337939, -12.451376287], + [29.585337939, -12.184976287], + [29.822337939, -12.147576287], + [29.811437939, -13.444976287], + [29.574537939, -13.212476287], + [29.175137939, -13.446276287], + [28.995937939, -13.426676287], + [28.809437939, -12.998476287], + [28.315237939, -12.418976287], + [27.934337939, -12.260276287], + [27.650922915, -12.284833747], + [27.46880253, -11.930631319], + [27.016276636, -11.615638271], + [27.008194646, -11.83967902], + [26.711437939, -12.001076287], + [26.473337939, -11.916376287], + [26.040437939, -11.929776287], + [25.508839191, -11.78707337], + [25.331337939, -11.620076287], + [25.343237939, -11.214876287], + [24.297883939, -11.399182287], + [24.374083939, -11.088782287], + [23.992247019, -10.896182914], + [24.075883939, -11.375682287], + [23.967137939, -11.661876287], + [23.975437939, -12.124776287], + [24.067937939, -12.295176287], + [23.900085449, -12.783295233], + [24.065917969, -12.998383124], + [22.002890145, -12.997291326], + [21.980037939, -14.513876287], + [22.001337939, -16.211876287], + [22.141337939, -16.476076287], + [22.828637939, -17.163676287], + [23.440829367, -17.635094307] + ] + ] + }, + "properties": { + "id": "3a400384-79de-4709-a6b2-3766aeb76d70", + "code": "ZMB", + "name": "Zambia", + "abbreviation": "C-ZMB", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [29.368310928, -22.197811127], + [29.773590088, -22.141420365], + [30.278530774, -22.349150761], + [30.831733698, -22.289381165], + [31.307275773, -22.420276642], + [32.399799348, -21.327598572], + [32.516838075, -20.914373397], + [32.488540649, -20.627471923], + [32.658370972, -20.561620712], + [33.013950347, -20.010980607], + [33.052776336, -19.780582428], + [32.850135803, -19.684627532], + [32.845279693, -19.024831772], + [32.704511366, -18.843793876], + [32.954124451, -18.690193176], + [32.888331142, -18.511163488], + [33.054321289, -18.357774734], + [32.942576249, -17.978823341], + [33.045261384, -17.346971511], + [32.838451386, -16.932029724], + [32.978549958, -16.707206727], + [32.285324096, -16.434577942], + [32.037540435, -16.442369462], + [31.691698074, -16.201686859], + [31.152347135, -15.988616026], + [30.424594879, -15.999998093], + [30.411541281, -15.610714701], + [29.800737939, -15.607276287], + [29.217937939, -15.778476287], + [28.867919922, -16.045898438], + [28.829284668, -16.491699219], + [27.837637939, -16.963376287], + [27.561737939, -17.401676287], + [27.005437939, -17.953576287], + [26.717837939, -18.077376287], + [26.399237939, -17.935876287], + [25.973437939, -17.997676287], + [25.688637939, -17.804176287], + [25.267707964, -17.782541854], + [25.265507709, -17.78990663], + [25.237734174, -17.90915827], + [25.521398886, -18.379168279], + [25.782484898, -18.622416768], + [25.826112962, -18.834878076], + [26.160480498, -19.537670135], + [26.72580104, -19.937199634], + [27.23468983, -20.116282495], + [27.35820961, -20.473520279], + [27.683849335, -20.490339279], + [27.68866457, -21.057577654], + [28.021941118, -21.573519046], + [28.568254707, -21.63236419], + [29.075893597, -21.81884297], + [29.051730088, -22.018145483], + [29.368310928, -22.197811127] + ] + ] + }, + "properties": { + "id": "a1d8e1a5-b0ad-4d39-b83d-7a4146a53c6d", + "code": "ZWE", + "name": "Zimbabwe", + "abbreviation": "C-ZWE", + "parent_id": null + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [20.026562001, 60.093231], + [20.254687999, 60.285934], + [19.798437, 60.401566001], + [19.758333, 60.091666999], + [20.026562001, 60.093231] + ] + ] + }, + "properties": { + "id": "63367b72-6ebc-4222-bcc7-f4384ff4e8a4", + "code": "ALA", + "name": "Åland", + "abbreviation": "C-ALA", + "parent_id": null + } + } + ] +} diff --git a/client/src/containers/action-map/map/views/national/data.json b/client/src/containers/action-map/map/views/national/data.json index f75e6b0a..ee7fc51f 100644 --- a/client/src/containers/action-map/map/views/national/data.json +++ b/client/src/containers/action-map/map/views/national/data.json @@ -1 +1,9859 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.2157,25.9701],[-97.196,26.0465],[-97.2071,26.0793],[-97.2724,26.0874],[-97.2957,26.1129],[-97.2968,26.1801],[-97.3443,26.2676],[-97.3579,26.3376],[-97.3351,26.3807],[-97.4074,26.4796],[-97.4679,26.7096],[-97.4782,26.8054],[-97.5529,26.8421],[-97.5504,26.8963],[-97.4693,26.8412],[-97.4565,26.9424],[-97.5076,26.9068],[-97.5549,26.9387],[-97.5385,26.9874],[-97.4518,26.984],[-97.4686,27.0697],[-97.4483,27.0914],[-97.4222,27.262],[-97.5127,27.233],[-97.6311,27.2425],[-97.6922,27.3348],[-97.5678,27.3178],[-97.4932,27.391],[-97.4786,27.2994],[-97.4116,27.3226],[-97.3701,27.4077],[-97.3454,27.5079],[-97.2554,27.6921],[-97.333,27.7196],[-97.3882,27.7701],[-97.3781,27.8361],[-97.4786,27.8253],[-97.4795,27.8601],[-97.4008,27.8764],[-97.2468,27.8733],[-97.1919,27.8208],[-97.1297,27.9171],[-97.0253,28.0322],[-97.0609,28.088],[-97.135,28.0475],[-97.2033,28.0678],[-97.1719,28.1214],[-97.0324,28.1881],[-97.0272,28.1503],[-96.9842,28.1275],[-96.9122,28.1264],[-96.8314,28.1983],[-96.7873,28.2556],[-96.8097,28.29],[-96.7953,28.3646],[-96.8594,28.4142],[-96.8375,28.4325],[-96.7832,28.4004],[-96.7536,28.4351],[-96.7073,28.4056],[-96.7044,28.3473],[-96.6541,28.3262],[-96.433,28.4283],[-96.4053,28.4543],[-96.5674,28.5828],[-96.6129,28.5682],[-96.6112,28.6367],[-96.6648,28.6967],[-96.5861,28.725],[-96.5631,28.6378],[-96.509,28.6405],[-96.4841,28.6085],[-96.4196,28.6479],[-96.4356,28.7381],[-96.3978,28.7371],[-96.3955,28.6806],[-96.3611,28.6267],[-96.3042,28.6459],[-96.2872,28.6836],[-96.1817,28.7072],[-96.2313,28.644],[-96.2114,28.6144],[-96.1569,28.6117],[-96.0297,28.6529],[-95.9797,28.6367],[-96.0356,28.5844],[-96.1444,28.5444],[-96.3353,28.4381],[-96.3186,28.4231],[-96.2253,28.4881],[-96.0886,28.5536],[-95.8684,28.6394],[-95.6614,28.7445],[-95.7868,28.6959],[-95.8947,28.6408],[-95.9608,28.6253],[-95.9271,28.6997],[-95.7864,28.7486],[-95.6542,28.7503],[-95.4397,28.86],[-95.3853,28.8672],[-95.2183,29.0052],[-95.1495,29.1802],[-95.1003,29.1759],[-95.0358,29.2133],[-94.9397,29.3203],[-94.8692,29.28],[-94.9258,29.2528],[-95.0451,29.1376],[-94.8237,29.2668],[-94.7253,29.3331],[-94.8702,29.2904],[-94.9074,29.3399],[-94.8663,29.374],[-94.8913,29.4338],[-94.9536,29.4723],[-94.9121,29.4965],[-94.9805,29.5127],[-95.0167,29.5569],[-94.9822,29.6022],[-95.0155,29.6385],[-94.981,29.6765],[-95.0535,29.7067],[-95.0994,29.7841],[-95.0683,29.8136],[-95.0175,29.7172],[-94.9358,29.6928],[-94.9097,29.6549],[-94.871,29.6729],[-94.8475,29.7253],[-94.7974,29.7668],[-94.7306,29.7767],[-94.6951,29.7449],[-94.7,29.6429],[-94.7638,29.5243],[-94.5511,29.5743],[-94.5122,29.5164],[-94.6816,29.4538],[-94.7674,29.3865],[-94.7294,29.3699],[-94.7077,29.4046],[-94.6174,29.459],[-94.5058,29.5054],[-94.1188,29.6527],[-93.9725,29.6829],[-93.8385,29.6778],[-93.8045,29.7131],[-93.6989,29.7439],[-93.4987,29.7686],[-93.3467,29.7617],[-93.2697,29.7769],[-93.1856,29.7716],[-92.9653,29.7147],[-92.7361,29.6181],[-92.6236,29.585],[-92.4619,29.5608],[-92.3453,29.5342],[-92.2783,29.5339],[-92.1496,29.5846],[-92.0462,29.5845],[-92.1073,29.6127],[-92.1366,29.6672],[-92.2157,29.7485],[-92.1388,29.7843],[-92.1108,29.7422],[-92.0381,29.7811],[-91.8856,29.8358],[-91.8255,29.8239],[-91.8775,29.7475],[-91.8575,29.7053],[-91.7716,29.7464],[-91.6333,29.7431],[-91.6169,29.7103],[-91.6245,29.6285],[-91.5522,29.6335],[-91.5333,29.5278],[-91.4316,29.5416],[-91.4142,29.4967],[-91.3567,29.5158],[-91.3385,29.4903],[-91.2658,29.4786],[-91.2197,29.4367],[-91.1994,29.375],[-91.1336,29.3414],[-91.1192,29.3056],[-91.1361,29.2331],[-91.0619,29.1833],[-91.0342,29.2229],[-91.0109,29.1748],[-90.9713,29.1998],[-90.9144,29.1464],[-90.8783,29.1364],[-90.8079,29.187],[-90.7697,29.1808],[-90.7842,29.1336],[-90.7261,29.1461],[-90.6936,29.2211],[-90.6261,29.2592],[-90.585,29.3186],[-90.4792,29.2911],[-90.4301,29.348],[-90.3776,29.2914],[-90.3394,29.3264],[-90.2987,29.2575],[-90.2207,29.0865],[-90.0833,29.1678],[-90.1283,29.2953],[-90.1303,29.3739],[-90.0503,29.3172],[-90.03,29.3811],[-90.08,29.4481],[-90.1822,29.4664],[-90.2281,29.5356],[-90.1658,29.5792],[-89.9797,29.4578],[-89.9286,29.4619],[-89.9233,29.4975],[-89.8169,29.4614],[-89.8369,29.4186],[-89.7761,29.4017],[-89.6916,29.467],[-89.6619,29.41],[-89.5061,29.3306],[-89.4764,29.295],[-89.4878,29.2318],[-89.4475,29.1819],[-89.4225,29.2106],[-89.3581,29.2036],[-89.2992,29.2192],[-89.2631,29.13],[-89.2117,29.0406],[-89.1639,29.0286],[-89.1125,29.0825],[-89.1208,29.1194],[-89.0567,29.1064],[-89.1144,29.1578],[-89.0975,29.1881],[-89.1544,29.2292],[-89.1389,29.2858],[-89.1744,29.3214],[-89.2442,29.3117],[-89.2664,29.2517],[-89.3244,29.2678],[-89.3217,29.3007],[-89.2542,29.3311],[-89.2922,29.3669],[-89.3475,29.3309],[-89.4703,29.4014],[-89.5617,29.3933],[-89.5364,29.4458],[-89.5922,29.4867],[-89.6308,29.4833],[-89.6864,29.5236],[-89.7242,29.6003],[-89.6219,29.6597],[-89.5569,29.6608],[-89.6494,29.7131],[-89.6408,29.7675],[-89.495,29.7278],[-89.4394,29.7531],[-89.4669,29.8267],[-89.4108,29.7672],[-89.3936,29.7906],[-89.4447,29.8856],[-89.4464,29.9539],[-89.49,29.9822],[-89.4461,30.0228],[-89.445,30.0611],[-89.5564,30],[-89.5908,29.8853],[-89.645,29.8614],[-89.7044,29.8739],[-89.7553,29.9422],[-89.8383,29.9422],[-89.86,30.0011],[-89.8192,30.0447],[-89.7269,30.0636],[-89.6228,30.1569],[-89.5564,30.1806],[-89.4919,30.1828],[-89.4203,30.23],[-89.4197,30.2542],[-89.3392,30.2961],[-89.3619,30.3447],[-89.3131,30.3755],[-89.2688,30.3418],[-89.2919,30.3039],[-89.0044,30.3875],[-88.8583,30.4056],[-88.7382,30.3446],[-88.6125,30.3732],[-88.57,30.4003],[-88.5653,30.3441],[-88.4794,30.3186],[-88.3577,30.4057],[-88.1881,30.3661],[-88.1921,30.3181],[-88.1294,30.3383],[-88.1073,30.3782],[-88.101,30.5101],[-88.0872,30.5669],[-88.0117,30.6872],[-87.9696,30.7098],[-87.9142,30.6508],[-87.9021,30.5477],[-87.9372,30.4829],[-87.9075,30.4103],[-87.8372,30.3656],[-87.7596,30.2949],[-87.7667,30.2639],[-87.8921,30.2393],[-87.9369,30.2608],[-87.9617,30.2349],[-87.8289,30.2269],[-87.6567,30.25],[-87.5581,30.2714],[-87.5092,30.3422],[-87.4636,30.3611],[-87.4308,30.4172],[-87.3744,30.4589],[-87.3408,30.43],[-87.4256,30.4025],[-87.4169,30.3425],[-87.4611,30.3097],[-87.265,30.3442],[-87.2576,30.3884],[-87.1812,30.4213],[-87.1603,30.4683],[-87.1844,30.5266],[-87.1588,30.5805],[-87.1025,30.5225],[-87.1029,30.4484],[-87.0677,30.4478],[-87.0378,30.5391],[-86.9958,30.5633],[-87.013,30.4984],[-86.9356,30.4547],[-87.0147,30.4034],[-87.0865,30.3991],[-87.0963,30.3729],[-86.9497,30.3953],[-86.7233,30.4108],[-86.6047,30.4011],[-86.51,30.4553],[-86.4522,30.5084],[-86.4208,30.4514],[-86.3192,30.4775],[-86.2097,30.4875],[-86.1189,30.3794],[-86.1653,30.3825],[-86.2481,30.4286],[-86.2456,30.39],[-86.3006,30.4025],[-86.3287,30.3828],[-86.4882,30.418],[-86.5025,30.3819],[-86.3331,30.3703],[-86.1878,30.3342],[-85.9914,30.2686],[-85.7756,30.1567],[-85.7442,30.2128],[-85.7986,30.2531],[-85.8492,30.2325],[-85.845,30.2844],[-85.7631,30.3],[-85.6792,30.2497],[-85.73,30.1872],[-85.6469,30.1347],[-85.58,30.1156],[-85.5242,30.1233],[-85.4944,30.0908],[-85.4831,30.0219],[-85.5328,30.0789],[-85.6006,30.0917],[-85.6192,30.1217],[-85.6869,30.1228],[-85.5411,30.0244],[-85.4769,29.9672],[-85.4122,29.9431],[-85.3628,29.8972],[-85.3028,29.8083],[-85.3045,29.6838],[-85.244,29.6874],[-85.1147,29.717],[-84.9906,29.715],[-84.9245,29.7611],[-84.9019,29.7344],[-84.757,29.788],[-84.5331,29.9114],[-84.4444,29.9297],[-84.3636,29.9097],[-84.3386,29.9472],[-84.441,29.9613],[-84.4372,29.9875],[-84.3547,29.9694],[-84.3775,30.0092],[-84.3489,30.0606],[-84.289,30.0571],[-84.2706,30.1058],[-84.2386,30.0856],[-84.2067,30.1153],[-84.1836,30.0775],[-84.1164,30.0942],[-83.9964,30.1041],[-83.9253,30.0347],[-83.7842,29.9786],[-83.6806,29.9226],[-83.5903,29.8213],[-83.5535,29.7368],[-83.4057,29.6533],[-83.3964,29.5244],[-83.2953,29.4368],[-83.2336,29.4323],[-83.1803,29.3619],[-83.1706,29.3017],[-83.0813,29.2666],[-83.0711,29.1917],[-83.0289,29.1617],[-82.9811,29.1747],[-82.8109,29.1637],[-82.7867,29.0786],[-82.74,29.0217],[-82.71,28.9361],[-82.6383,28.9053],[-82.6514,28.8578],[-82.7116,28.8741],[-82.733,28.8537],[-82.6856,28.7936],[-82.6878,28.7276],[-82.64,28.7008],[-82.6556,28.6303],[-82.6711,28.4341],[-82.7312,28.3255],[-82.7331,28.2828],[-82.8008,28.1708],[-82.7758,28.1097],[-82.8058,27.9547],[-82.8483,27.8714],[-82.6888,27.709],[-82.6381,27.7039],[-82.6214,27.7897],[-82.5872,27.8189],[-82.5983,27.8569],[-82.655,27.9108],[-82.7198,27.9363],[-82.6655,28.0285],[-82.5275,27.9356],[-82.555,27.8496],[-82.4733,27.8217],[-82.4863,27.9227],[-82.4012,27.8779],[-82.3958,27.8147],[-82.4783,27.7472],[-82.5671,27.6263],[-82.5699,27.5679],[-82.6038,27.5167],[-82.6417,27.5252],[-82.6411,27.4737],[-82.6861,27.465],[-82.5739,27.4053],[-82.5415,27.3304],[-82.5411,27.27],[-82.5022,27.2272],[-82.4447,27.0581],[-82.3426,26.9301],[-82.3018,26.8474],[-82.1913,26.791],[-82.1479,26.8018],[-82.189,26.9674],[-82.1532,26.924],[-82.1174,26.9615],[-82.0088,26.9526],[-82.0971,26.9151],[-82.0601,26.8793],[-82.0546,26.7946],[-82.0879,26.6757],[-82.0468,26.609],[-82.064,26.5671],[-82.0165,26.529],[-82.0137,26.4882],[-81.8765,26.4562],[-81.8374,26.3476],[-81.8015,26.091],[-81.7423,26.0337],[-81.7349,25.9988],[-81.6349,25.9387],[-81.6368,25.9063],[-81.5301,25.8929],[-81.5193,25.8396],[-81.4579,25.8668],[-81.3996,25.8568],[-81.3349,25.7876],[-81.346,25.7215],[-81.2929,25.7057],[-81.2535,25.6415],[-81.1418,25.381],[-81.1007,25.3468],[-80.9799,25.3254],[-80.9038,25.2399],[-80.9638,25.2049],[-81.0024,25.2135],[-81.029,25.2263],[-81.0476,25.2365],[-81.0699,25.2551],[-81.0888,25.311],[-81.1457,25.3268],[-81.1718,25.2235],[-81.0879,25.1162],[-80.9004,25.1396],[-80.8468,25.1774],[-80.7165,25.156],[-80.5821,25.2104],[-80.5062,25.2071],[-80.3954,25.2763],[-80.3426,25.3232],[-80.3087,25.3899],[-80.3407,25.4982],[-80.2296,25.7335],[-80.1888,25.7551],[-80.1849,25.8105],[-80.1184,25.8338],[-80.1704,25.8671],[-80.1212,25.8999],[-80.1093,26.0874],[-80.0799,26.2576],[-80.0579,26.4599],[-80.0365,26.5882],[-80.0515,26.7754],[-80.031,26.7949],[-80.0715,26.9437],[-80.0793,26.9088],[-80.0349,26.7982],[-80.0521,26.794],[-80.0807,26.9082],[-80.0799,26.9479],[-80.1201,27.0804],[-80.1575,27.1629],[-80.1917,27.1642],[-80.3216,27.4435],[-80.3747,27.6219],[-80.3754,27.653],[-80.4614,27.8059],[-80.6578,28.1953],[-80.7489,28.4089],[-80.7978,28.5589],[-80.8436,28.75],[-80.8447,28.8],[-80.7417,28.7158],[-80.7847,28.6903],[-80.7842,28.6219],[-80.7261,28.6042],[-80.7331,28.4897],[-80.7203,28.3914],[-80.6833,28.3397],[-80.635,28.5022],[-80.5872,28.5744],[-80.585,28.5158],[-80.6086,28.3758],[-80.6322,28.3225],[-80.6078,28.2639],[-80.6186,28.2122],[-80.5764,28.0775],[-80.5229,27.9929],[-80.4272,27.8139],[-80.4183,27.7665],[-80.3422,27.5958],[-80.3108,27.4708],[-80.2903,27.4728],[-80.3842,27.7424],[-80.5125,27.9764],[-80.5611,28.0792],[-80.5931,28.1906],[-80.6081,28.3103],[-80.5908,28.4078],[-80.525,28.4581],[-80.5747,28.5847],[-80.71,28.7564],[-80.9008,29.0475],[-80.9158,29.0236],[-80.8689,28.9556],[-80.8475,28.9575],[-80.775,28.8522],[-80.7764,28.8256],[-80.6442,28.6675],[-80.6856,28.6706],[-80.7669,28.7572],[-80.8203,28.8383],[-80.8689,28.9403],[-80.9781,29.1286],[-81.0566,29.3045],[-80.9961,29.2036],[-81.1653,29.5575],[-81.2583,29.7869],[-81.2644,29.8567],[-81.3014,29.9414],[-81.3786,30.2458],[-81.3931,30.3953],[-81.412,30.4855],[-81.436,30.5245],[-81.4435,30.5989],[-81.4256,30.7011],[-81.449,30.72],[-81.4522,30.7992],[-81.4064,30.9003],[-81.4027,30.9589],[-81.4633,30.9097],[-81.5131,30.9658],[-81.4611,30.9983],[-81.4841,31.0377],[-81.4256,31.0486],[-81.4606,31.0872],[-81.4353,31.1339],[-81.4631,31.1772],[-81.3883,31.2826],[-81.3717,31.3381],[-81.3347,31.3319],[-81.3333,31.3903],[-81.3758,31.4242],[-81.3261,31.4562],[-81.3319,31.4767],[-81.2919,31.4953],[-81.2314,31.5497],[-81.1659,31.5634],[-81.1301,31.63],[-81.1452,31.699],[-81.1872,31.6878],[-81.2528,31.7567],[-81.1609,31.7277],[-81.2018,31.7866],[-81.145,31.8614],[-81.0894,31.8603],[-81.0214,31.9078],[-80.9933,31.8578],[-80.9343,31.9089],[-80.9842,31.9153],[-81.0136,31.9639],[-81.0107,32.0093],[-81.0256,32.0203],[-81.0463,32.0241],[-81.0497,32.0292],[-81.029,32.0638],[-81.0148,32.0741],[-80.915,32.0842],[-80.9271,32.1258],[-80.8373,32.2144],[-80.7903,32.2033],[-80.7813,32.2602],[-80.7597,32.2767],[-80.8444,32.3831],[-80.8172,32.41],[-80.8275,32.4864],[-80.7883,32.4967],[-80.7836,32.5289],[-80.7642,32.5403],[-80.6303,32.5181],[-80.5849,32.5007],[-80.4651,32.5196],[-80.3928,32.5728],[-80.3892,32.6164],[-80.3378,32.6397],[-80.2882,32.6253],[-80.254,32.678],[-80.18,32.7175],[-80.1711,32.7387],[-80.1583,32.7508],[-80.1381,32.7485],[-80.1285,32.7779],[-80.1037,32.7882],[-80.0022,32.7672],[-79.9853,32.6939],[-79.9906,32.6347],[-79.9064,32.6683],[-79.87,32.7314],[-79.9339,32.755],[-79.935,32.8077],[-79.86,32.7664],[-79.7416,32.8708],[-79.6978,32.8508],[-79.5775,32.9085],[-79.6172,32.9381],[-79.579,33.0069],[-79.5283,33.0381],[-79.4839,33.0036],[-79.3756,33.0467],[-79.3644,33.0762],[-79.2467,33.125],[-79.1946,33.1704],[-79.2106,33.2439],[-79.2581,33.2589],[-79.275,33.3128],[-79.1958,33.2958],[-79.1789,33.2647],[-79.1455,33.3841],[-79.1158,33.4069],[-79,33.5456],[-78.9119,33.6111],[-78.9372,33.6397],[-78.8586,33.7091],[-78.7404,33.7878],[-78.6547,33.8239],[-78.5578,33.8483],[-78.5392,33.8769],[-78.32,33.9167],[-78.2275,33.9228],[-78.0761,33.9029],[-77.9936,33.9297],[-77.9539,33.975],[-77.9403,34.0781],[-77.9683,34.1625],[-77.9253,34.1272],[-77.925,34.0683],[-77.9178,34.0525],[-77.8914,34.0594],[-77.8592,34.1527],[-77.8133,34.2194],[-77.7017,34.344],[-77.5309,34.4584],[-77.4645,34.493],[-77.3741,34.5175],[-77.3615,34.5521],[-77.4366,34.5896],[-77.4441,34.6162],[-77.3729,34.6267],[-77.3778,34.7036],[-77.3376,34.6397],[-77.4003,34.5969],[-77.3183,34.5461],[-77.2797,34.5667],[-77.1132,34.7014],[-77.0935,34.6728],[-77.0297,34.6823],[-76.8933,34.725],[-76.6931,34.7211],[-76.7375,34.7792],[-76.6589,34.7475],[-76.6908,34.7139],[-76.6172,34.7075],[-76.6094,34.8064],[-76.5797,34.7228],[-76.5067,34.7256],[-76.5064,34.7869],[-76.4736,34.7681],[-76.4142,34.8506],[-76.3314,34.885],[-76.3281,34.9369],[-76.2766,34.9598],[-76.3108,35.0064],[-76.3551,35.0211],[-76.3444,34.9711],[-76.4564,34.94],[-76.425,35.0012],[-76.4359,35.0584],[-76.518,35.0037],[-76.5902,34.9783],[-76.6302,34.9887],[-76.7608,34.9154],[-76.8532,34.937],[-76.9752,35.0016],[-76.9887,35.0433],[-77.047,35.1041],[-76.9252,35.0515],[-76.8039,34.9639],[-76.7008,35.0256],[-76.6089,35.0675],[-76.5443,35.1489],[-76.5989,35.1881],[-76.59,35.2417],[-76.5287,35.2318],[-76.4793,35.2471],[-76.4912,35.3158],[-76.61,35.3279],[-76.7356,35.3554],[-76.844,35.4241],[-76.9262,35.4488],[-76.9674,35.4331],[-76.9786,35.4837],[-76.8333,35.4481],[-76.7583,35.4193],[-76.7108,35.4289],[-76.576,35.3881],[-76.5985,35.4819],[-76.6516,35.5455],[-76.537,35.5286],[-76.4539,35.5522],[-76.4721,35.511],[-76.5625,35.492],[-76.5401,35.4096],[-76.4821,35.3947],[-76.3891,35.4273],[-76.3461,35.4059],[-76.3019,35.3519],[-76.2603,35.3761],[-76.2043,35.3383],[-76.0961,35.3618],[-76.0839,35.391],[-75.9994,35.4553],[-75.9442,35.5358],[-75.8834,35.5832],[-75.8821,35.6344],[-75.8358,35.5706],[-75.7744,35.5814],[-75.7339,35.6308],[-75.7795,35.6875],[-75.7169,35.6938],[-75.7387,35.7507],[-75.7281,35.8244],[-75.7827,35.9332],[-75.8107,35.9217],[-75.9079,35.9324],[-75.9854,35.8891],[-75.9757,35.8391],[-75.9992,35.695],[-76.0219,35.6508],[-76.0611,35.7176],[-76.0642,35.8536],[-76.0133,35.9236],[-76.073,35.9229],[-76.0543,35.9874],[-76.1481,35.9956],[-76.2703,35.9726],[-76.3494,35.9419],[-76.4058,35.9822],[-76.525,35.9447],[-76.6639,35.9328],[-76.7247,35.9554],[-76.7036,36.0042],[-76.7263,36.0962],[-76.7555,36.1517],[-76.7505,36.2094],[-76.6807,36.3006],[-76.6755,36.2654],[-76.7152,36.2138],[-76.7224,36.1539],[-76.6919,36.0661],[-76.638,36.0359],[-76.6077,36.0561],[-76.5736,36.0092],[-76.4631,36.0231],[-76.4043,36.0788],[-76.3078,36.0922],[-76.4352,36.1628],[-76.3933,36.1694],[-76.215,36.0964],[-76.2465,36.1586],[-76.1668,36.1237],[-76.0615,36.146],[-76.077,36.1923],[-76.1951,36.2967],[-76.1363,36.2884],[-76.0181,36.187],[-75.925,36.1638],[-75.9542,36.2038],[-75.9762,36.3137],[-75.8763,36.1843],[-75.8632,36.1215],[-75.7979,36.0717],[-75.8224,36.1538],[-75.8971,36.3233],[-76.0006,36.4286],[-76.0405,36.5022],[-76.0118,36.5591],[-75.9886,36.4975],[-75.9119,36.495],[-75.9226,36.568],[-75.982,36.5593],[-75.9928,36.6353],[-75.9414,36.7211],[-75.8843,36.4732],[-75.8434,36.4222],[-75.8211,36.2914],[-75.774,36.2273],[-75.7448,36.1392],[-75.7375,36.0425],[-75.692,36.0508],[-75.6864,36.0119],[-75.5708,35.8642],[-75.7275,36.1289],[-75.7986,36.2981],[-75.8542,36.48],[-75.8842,36.6133],[-75.9525,36.7658],[-75.9936,36.9206],[-76.0383,36.9317],[-76.0906,36.9081],[-76.2271,36.9408],[-76.2775,36.9692],[-76.331,36.9606],[-76.3176,36.8858],[-76.3558,36.9244],[-76.3884,36.898],[-76.4831,36.897],[-76.4861,36.9561],[-76.5764,37.0197],[-76.6479,37.0368],[-76.6867,37.1972],[-76.7146,37.1489],[-76.7474,37.1503],[-76.8042,37.2072],[-76.9,37.1992],[-76.9853,37.2447],[-77.0144,37.3031],[-77.0508,37.2653],[-77.0842,37.2725],[-77.0936,37.3081],[-77.1758,37.2878],[-77.2525,37.2956],[-77.2044,37.3253],[-77.1278,37.3094],[-77.0728,37.3275],[-77.0803,37.2808],[-77.0156,37.3125],[-76.9404,37.2369],[-76.8817,37.2567],[-76.7958,37.2328],[-76.7575,37.1914],[-76.6919,37.2231],[-76.6231,37.1979],[-76.6283,37.1261],[-76.4647,37.0277],[-76.4303,36.9656],[-76.3181,37.0126],[-76.2702,37.0878],[-76.3368,37.0911],[-76.2938,37.1264],[-76.4206,37.2233],[-76.4697,37.2136],[-76.5767,37.2719],[-76.6258,37.3131],[-76.6953,37.4033],[-76.7114,37.4444],[-76.5103,37.2722],[-76.5058,37.2461],[-76.3829,37.2657],[-76.3979,37.3136],[-76.4499,37.3811],[-76.4159,37.4086],[-76.3061,37.3278],[-76.2487,37.3758],[-76.2522,37.436],[-76.3596,37.5213],[-76.3125,37.5458],[-76.4306,37.6094],[-76.5331,37.6122],[-76.5906,37.6572],[-76.5998,37.7207],[-76.6803,37.7796],[-76.7234,37.7884],[-76.7945,37.8955],[-76.8527,37.9208],[-76.9286,37.9831],[-76.9164,38.0294],[-76.93,38.0732],[-77.06,38.106],[-77.0571,38.1408],[-77.1263,38.1367],[-77.1531,38.1758],[-77.0489,38.1579],[-77.0297,38.1031],[-76.9358,38.0805],[-76.9214,38.0683],[-76.9131,38.0516],[-76.8966,37.9895],[-76.7982,37.9245],[-76.7262,37.8362],[-76.5867,37.7714],[-76.5097,37.6425],[-76.4719,37.6661],[-76.4022,37.6273],[-76.2798,37.6195],[-76.3389,37.6533],[-76.3028,37.6897],[-76.3144,37.7356],[-76.3019,37.8258],[-76.2657,37.817],[-76.2372,37.8836],[-76.2683,37.9128],[-76.4136,37.9646],[-76.4733,38.015],[-76.5458,38.039],[-76.5363,38.0749],[-76.6314,38.1534],[-76.7016,38.1598],[-76.715,38.1025],[-76.7891,38.1697],[-76.8398,38.1638],[-76.9659,38.2121],[-76.9619,38.2573],[-77.0299,38.311],[-77.0135,38.3748],[-77.0726,38.3755],[-77.237,38.3312],[-77.3223,38.3371],[-77.297,38.3707],[-77.3266,38.4435],[-77.3036,38.5094],[-77.2574,38.5609],[-77.2392,38.6617],[-77.1581,38.6372],[-77.1504,38.6659],[-77.0423,38.7218],[-77.0523,38.7886],[-77.0134,38.7883],[-77.0442,38.6976],[-77.1009,38.6854],[-77.1095,38.6268],[-77.182,38.6018],[-77.235,38.5535],[-77.2736,38.4835],[-77.2499,38.3827],[-77.2067,38.3597],[-77.0915,38.4076],[-77.0419,38.4443],[-77.0015,38.4216],[-76.975,38.3539],[-76.9263,38.2945],[-76.85,38.2658],[-76.8711,38.3333],[-76.859,38.3828],[-76.8023,38.2806],[-76.8053,38.2523],[-76.7526,38.2222],[-76.7144,38.2669],[-76.6712,38.2344],[-76.5913,38.2149],[-76.5358,38.1465],[-76.5017,38.1383],[-76.4439,38.1689],[-76.4374,38.1345],[-76.3206,38.0486],[-76.3403,38.1148],[-76.32,38.1383],[-76.3864,38.2202],[-76.3992,38.2569],[-76.3733,38.2989],[-76.4619,38.296],[-76.5031,38.3603],[-76.6192,38.4178],[-76.6723,38.4649],[-76.6419,38.4761],[-76.5714,38.4225],[-76.5233,38.4124],[-76.4708,38.3492],[-76.4214,38.3192],[-76.3811,38.3856],[-76.4917,38.4817],[-76.5175,38.5347],[-76.5114,38.615],[-76.5286,38.7281],[-76.5547,38.7697],[-76.5106,38.8008],[-76.4894,38.8878],[-76.515,38.9114],[-76.4594,38.9406],[-76.4764,38.9817],[-76.3953,39.0108],[-76.4368,39.0526],[-76.5136,39.0681],[-76.4406,39.0956],[-76.4307,39.132],[-76.4969,39.1508],[-76.5764,39.2489],[-76.4621,39.2057],[-76.4212,39.2318],[-76.3892,39.3128],[-76.3302,39.3156],[-76.3139,39.3573],[-76.2822,39.2998],[-76.2279,39.35],[-76.1024,39.4348],[-76.1133,39.4871],[-76.0839,39.5467],[-75.97,39.5575],[-75.9981,39.4655],[-75.9156,39.5033],[-76.0374,39.386],[-76.1109,39.3722],[-76.1865,39.3186],[-76.169,39.2945],[-76.2208,39.2599],[-76.2781,39.1479],[-76.2494,39.1319],[-76.2267,39.0531],[-76.1693,39.1271],[-76.1425,39.0864],[-76.1763,39.0574],[-76.1625,39.0069],[-76.2022,38.9722],[-76.1947,38.8839],[-76.1294,38.9094],[-76.1981,38.845],[-76.1839,38.7581],[-76.2658,38.8503],[-76.2981,38.8283],[-76.3428,38.75],[-76.3337,38.7033],[-76.2964,38.7728],[-76.2714,38.709],[-76.2381,38.7108],[-76.1083,38.6214],[-76.0258,38.5786],[-76.0447,38.5619],[-76.1133,38.5814],[-76.1763,38.6281],[-76.2067,38.6086],[-76.2722,38.6175],[-76.2608,38.5481],[-76.1978,38.5303],[-76.3277,38.4993],[-76.3319,38.4742],[-76.2333,38.345],[-76.2319,38.3869],[-76.1836,38.3601],[-76.1647,38.3156],[-76.0744,38.2686],[-76.0553,38.2261],[-76.0272,38.2817],[-76.0503,38.3092],[-75.9986,38.3741],[-75.9638,38.3246],[-76.0083,38.305],[-75.9489,38.2378],[-75.9404,38.3061],[-75.8634,38.3592],[-75.9188,38.2645],[-75.8615,38.2027],[-75.9368,38.1898],[-75.9347,38.1483],[-75.7948,38.1358],[-75.8664,38.0956],[-75.8547,38.0694],[-75.7748,38.0733],[-75.8365,38.0325],[-75.8922,37.9558],[-75.8647,37.9133],[-75.7786,37.9736],[-75.7378,37.9828],[-75.6358,37.9536],[-75.7142,37.9378],[-75.7378,37.9008],[-75.6928,37.8678],[-75.7431,37.7869],[-75.8133,37.7481],[-75.8531,37.6781],[-75.8869,37.6536],[-75.9825,37.4297],[-75.9664,37.3914],[-76.0146,37.3298],[-76.0136,37.2082],[-75.9414,37.0947],[-75.9281,37.2614],[-75.8956,37.3503],[-75.8619,37.3925],[-75.8306,37.3869],[-75.8186,37.4511],[-75.7533,37.5072],[-75.7278,37.5511],[-75.6581,37.4867],[-75.6139,37.5525],[-75.6689,37.5294],[-75.6961,37.5717],[-75.6292,37.5883],[-75.6681,37.6119],[-75.6492,37.6519],[-75.6053,37.62],[-75.5794,37.7444],[-75.5531,37.7417],[-75.5194,37.7969],[-75.4164,37.8906],[-75.4364,37.9633],[-75.3761,38.0086],[-75.365,38.0736],[-75.3008,38.0989],[-75.2608,38.2045],[-75.2194,38.2464],[-75.19,38.2275],[-75.0958,38.3289],[-75.1272,38.3614],[-75.1169,38.4381],[-75.0497,38.4506],[-75.0583,38.5872],[-75.0972,38.5786],[-75.1553,38.6078],[-75.151071674,38.64310412],[-75.1189,38.6928],[-75.0722,38.6703],[-75.0897,38.7972],[-75.1303,38.7814],[-75.1856,38.8033],[-75.3061,38.9158],[-75.3194,38.9897],[-75.3914,39.0525],[-75.4128,39.1508],[-75.3957,39.1896],[-75.4081,39.2642],[-75.4869,39.3569],[-75.4333,39.3939],[-75.3866,39.3565],[-75.3276,39.3405],[-75.288,39.2908],[-75.1709,39.2353],[-75.1372,39.1812],[-75.1087,39.2187],[-75.0489,39.2151],[-74.8865,39.1584],[-74.9019,39.0902],[-74.957,38.9983],[-74.9725,38.9389],[-74.9183,38.93],[-74.8339,38.9908],[-74.8044,39.0333],[-74.7619,39.0603],[-74.7497,39.1011],[-74.6961,39.1465],[-74.5989,39.2589],[-74.6352,39.3067],[-74.5864,39.3131],[-74.5181,39.3633],[-74.4078,39.3642],[-74.4397,39.3953],[-74.4878,39.395],[-74.4574,39.4474],[-74.4139,39.4772],[-74.4168,39.5436],[-74.2981,39.5381],[-74.3381,39.5686],[-74.307,39.6016],[-74.2202,39.6441],[-74.1686,39.7125],[-74.1969,39.7442],[-74.1805,39.7978],[-74.1362,39.8566],[-74.1054,39.9305],[-74.1094,39.9748],[-74.0728,40.0006],[-74.0923,39.831],[-74.0307,40.1244],[-73.9867,40.2573],[-73.9767,40.3636],[-74,40.4118],[-74.1349,40.4566],[-74.1928,40.4419],[-74.2614,40.4647],[-74.2533,40.5517],[-74.215,40.5642],[-74.19,40.6442],[-74.072,40.6615],[-74.0328,40.715],[-73.9773,40.7111],[-73.9717,40.7433],[-73.9358,40.7853],[-73.8971,40.8058],[-73.8044,40.8119],[-73.7699,40.9109],[-73.6875,40.9483],[-73.6625,40.9878],[-73.6003,41.0186],[-73.5297,41.0171],[-73.4936,41.0537],[-73.4081,41.0711],[-73.3719,41.1089],[-73.262,41.118],[-73.1736,41.1686],[-73.1302,41.1471],[-73.0468,41.2122],[-73.014,41.2048],[-72.9156,41.2967],[-72.8936,41.2419],[-72.7861,41.265],[-72.5808,41.2719],[-72.5192,41.2578],[-72.4506,41.2794],[-72.3875,41.2608],[-72.3531,41.3106],[-72.3311,41.2806],[-72.2725,41.2853],[-72.1783,41.3231],[-72.0947,41.3094],[-71.9681,41.3516],[-71.852,41.3097],[-71.7147,41.3305],[-71.6159,41.3638],[-71.5295,41.3769],[-71.487,41.3616],[-71.4217,41.4711],[-71.4185,41.5287],[-71.4455,41.5723],[-71.4074,41.5882],[-71.4092,41.6631],[-71.3802,41.7271],[-71.393,41.8179],[-71.3377,41.7248],[-71.2799,41.7415],[-71.3071,41.673],[-71.2691,41.6507],[-71.227,41.7183],[-71.197,41.7046],[-71.2215,41.5607],[-71.176,41.4589],[-71.0942,41.5032],[-71.0547,41.5512],[-71.0361,41.483],[-70.9506,41.5168],[-70.9152,41.6219],[-70.8004,41.6302],[-70.7566,41.6532],[-70.7652,41.7109],[-70.7216,41.7359],[-70.6512,41.7143],[-70.6378,41.7367],[-70.5797,41.7533],[-70.5639,41.7711],[-70.5439,41.7772],[-70.5256,41.8578],[-70.5367,41.9208],[-70.5844,41.9515],[-70.6468,41.9503],[-70.7106,42.0014],[-70.6372,42.0836],[-70.6778,42.1233],[-70.7206,42.2072],[-70.7677,42.2511],[-70.8547,42.2678],[-70.9669,42.2453],[-71.0453,42.2944],[-71.0436,42.3231],[-70.9764,42.3708],[-70.9814,42.4259],[-70.9192,42.4681],[-70.8947,42.46],[-70.8407,42.5186],[-70.8692,42.5478],[-70.6983,42.5767],[-70.5951,42.6344],[-70.63,42.693],[-70.6833,42.6542],[-70.7272,42.6481],[-70.7942,42.75],[-70.8269,42.8875],[-70.7108,43.0425],[-70.7367,43.0744],[-70.6644,43.0764],[-70.5753,43.2219],[-70.5889,43.2631],[-70.5153,43.3454],[-70.451,43.3468],[-70.3639,43.4386],[-70.3856,43.4953],[-70.3519,43.5364],[-70.2728,43.5625],[-70.1972,43.565],[-70.2514,43.6781],[-70.1647,43.7725],[-70.1031,43.8128],[-69.9844,43.8675],[-69.9537,43.849],[-70.0172,43.7789],[-69.9778,43.7867],[-69.8892,43.8822],[-69.8454,43.8048],[-69.876,43.7911],[-69.8517,43.7031],[-69.8031,43.7442],[-69.7909,43.7904],[-69.8112,43.8358],[-69.8092,43.9256],[-69.737,43.9021],[-69.6643,43.9651],[-69.6606,43.8836],[-69.6307,43.8373],[-69.5589,43.8922],[-69.5022,43.8389],[-69.4196,43.9798],[-69.3464,44.056],[-69.3708,43.9772],[-69.3028,43.978],[-69.2569,43.9228],[-69.2135,43.9361],[-69.1649,44.0027],[-69.0732,44.0462],[-69.0528,44.0848],[-69.1069,44.0907],[-69.0605,44.2071],[-68.9539,44.3239],[-68.9475,44.3536],[-68.9939,44.4214],[-68.9214,44.4572],[-68.8603,44.4461],[-68.7783,44.4922],[-68.8161,44.4281],[-68.8278,44.3119],[-68.7594,44.3317],[-68.6056,44.2758],[-68.5228,44.2283],[-68.5203,44.2664],[-68.5636,44.3081],[-68.545,44.3556],[-68.5678,44.3856],[-68.4975,44.4167],[-68.4675,44.4936],[-68.4375,44.4825],[-68.4281,44.3964],[-68.3225,44.4628],[-68.2833,44.4517],[-68.2689,44.5043],[-68.23,44.4631],[-68.2117,44.5197],[-68.1711,44.4697],[-68.12,44.4575],[-68.1144,44.4075],[-68.0764,44.3472],[-68.0456,44.3384],[-68.0126,44.4036],[-67.96,44.3978],[-67.9928,44.46],[-67.9679,44.5041],[-67.9564,44.4297],[-67.9022,44.3956],[-67.8542,44.4789],[-67.8525,44.5589],[-67.7992,44.5697],[-67.7807,44.5222],[-67.7533,44.6017],[-67.7428,44.4967],[-67.6434,44.5659],[-67.6355,44.5285],[-67.5715,44.5295],[-67.5514,44.6553],[-67.459,44.5959],[-67.396,44.6021],[-67.3619,44.6351],[-67.39,44.6957],[-67.3061,44.7087],[-67.3128,44.6597],[-67.2344,44.6367],[-67.189,44.6442],[-67.0735,44.7409],[-66.979,44.8056],[-67.0183,44.8861],[-67.0772,44.8767],[-67.1516,44.8217],[-67.1496,44.8623],[-67.2044,44.9067],[-67.0884,44.918],[-67.0319,44.9389],[-67.1086,45.0592],[-67.1147,45.0975],[-67.1633,45.1583],[-67.2428,45.1692],[-67.2808,45.1917],[-67.3022,45.1451],[-67.3816,45.1521],[-67.4663,45.2477],[-67.4776,45.2873],[-67.4215,45.3763],[-67.474,45.4237],[-67.4876,45.4897],[-67.4516,45.5111],[-67.4257,45.5785],[-67.4566,45.6053],[-67.5302,45.5983],[-67.6736,45.6278],[-67.7091,45.6793],[-67.7593,45.6712],[-67.8029,45.696],[-67.7825,45.7309],[-67.8034,45.7982],[-67.7651,45.8207],[-67.8027,45.8737],[-67.7549,45.9149],[-67.781,45.9457],[-67.7839,46.6017],[-67.7836,47.0632],[-67.8893,47.1106],[-67.958,47.2003],[-68.2438,47.3526],[-68.3698,47.3517],[-68.3805,47.2874],[-68.4752,47.297],[-68.5804,47.2869],[-68.6124,47.246],[-68.6893,47.2428],[-68.8158,47.2119],[-68.8975,47.1766],[-69.0405,47.2439],[-69.0547,47.3146],[-69.0443,47.4028],[-69.1786,47.4569],[-69.2218,47.4576],[-69.392,47.2984],[-69.9971,46.6958],[-70.0572,46.4147],[-70.0953,46.4081],[-70.1473,46.3589],[-70.1953,46.3434],[-70.292,46.1909],[-70.242,46.1502],[-70.2508,46.0979],[-70.283,46.0999],[-70.3142,46.0208],[-70.3144,45.9665],[-70.2602,45.9644],[-70.2663,45.8849],[-70.3455,45.8508],[-70.4162,45.7956],[-70.3895,45.7364],[-70.5613,45.6627],[-70.6459,45.6041],[-70.7184,45.5127],[-70.7158,45.4876],[-70.6523,45.444],[-70.626,45.4032],[-70.6598,45.3777],[-70.7192,45.3943],[-70.7545,45.4277],[-70.8233,45.403],[-70.8066,45.3211],[-70.8515,45.2344],[-70.8929,45.2439],[-70.9234,45.3181],[-70.9566,45.3426],[-71.0997,45.3023],[-71.1623,45.2469],[-71.23,45.2503],[-71.2839,45.3023],[-71.3603,45.2686],[-71.4132,45.2202],[-71.4342,45.1202],[-71.4847,45.0809],[-71.511,45.0134],[-72.3084,45.0037],[-72.6332,45.014],[-73.0549,45.0157],[-73.6293,45.0034],[-73.8279,45.0031],[-74.1501,44.9912],[-74.3476,44.9908],[-74.6457,44.9992],[-74.7334,44.9905],[-74.8262,45.0158],[-74.9086,44.9867],[-74.9922,44.9777],[-75.0175,44.9549],[-75.1305,44.9165],[-75.3077,44.841],[-75.5457,44.687],[-75.7674,44.5205],[-75.824,44.431],[-75.9106,44.3715],[-75.9948,44.3475],[-76.1629,44.2816],[-76.1656,44.241],[-76.2437,44.2051],[-76.3157,44.1987],[-76.3543,44.1344],[-76.4411,44.0944],[-76.7983,43.6314],[-78.6812,43.6336],[-79.2028,43.451],[-79.0566,43.2488],[-79.044,43.1499],[-79.0748,43.0813],[-79.0017,43.0582],[-79.0072,42.9834],[-78.9321,42.9555],[-78.9062,42.9051],[-78.9369,42.831],[-79.7627,42.5105],[-80.0733,42.3926],[-80.5139,42.3244],[-81.2606,42.2055],[-81.6388,42.0214],[-82.4077,41.6769],[-82.6812,41.6773],[-83.0678,41.8626],[-83.1466,42.0332],[-83.1231,42.1205],[-83.1332,42.173],[-83.0954,42.2842],[-83.0503,42.3177],[-82.9358,42.3446],[-82.8683,42.3276],[-82.6412,42.5548],[-82.6002,42.5496],[-82.5213,42.6104],[-82.4669,42.7739],[-82.4782,42.8031],[-82.4532,42.9257],[-82.4113,42.9707],[-82.4243,42.9983],[-82.1229,43.5884],[-82.2077,43.9512],[-82.4175,44.9067],[-82.5254,45.3409],[-83.1983,45.644],[-83.5921,45.8187],[-83.4356,45.9965],[-83.5711,46.1026],[-83.6544,46.1194],[-83.7567,46.1015],[-83.8258,46.1165],[-83.9036,46.0585],[-83.9548,46.0562],[-84.0005,46.1143],[-84.005,46.1506],[-84.0726,46.1875],[-84.1046,46.2389],[-84.1432,46.4171],[-84.1099,46.5021],[-84.1293,46.5313],[-84.2223,46.5343],[-84.2505,46.5027],[-84.3711,46.5083],[-84.4429,46.4897],[-84.4764,46.4532],[-84.5561,46.4597],[-84.7638,46.6349],[-84.8434,46.8873],[-86.0434,47.3856],[-86.7729,47.6817],[-87.4059,47.9341],[-87.8649,48.1137],[-88.3709,48.3042],[-88.689,48.2415],[-89.3391,47.9699],[-89.4877,48.0109],[-89.7699,48.0229],[-89.8676,47.998],[-89.9743,48.0441],[-90.0335,48.0963],[-90.1358,48.1127],[-90.3466,48.0983],[-90.4664,48.1095],[-90.6375,48.1059],[-90.7422,48.1137],[-90.8139,48.1907],[-90.8399,48.2459],[-90.8861,48.2466],[-91.1333,48.1569],[-91.2544,48.0815],[-91.3991,48.0571],[-91.4773,48.0801],[-91.5562,48.0804],[-91.6911,48.1273],[-91.721,48.2007],[-91.8623,48.2112],[-91.9833,48.261],[-91.9998,48.321],[-92.0548,48.3591],[-92.2625,48.3548],[-92.3052,48.3194],[-92.2797,48.2427],[-92.3643,48.2338],[-92.4748,48.3733],[-92.4665,48.435],[-92.5068,48.4504],[-92.6527,48.4408],[-92.6962,48.492],[-92.6315,48.4987],[-92.6354,48.5426],[-92.7268,48.5391],[-92.9472,48.6214],[-93.1798,48.6228],[-93.2564,48.6425],[-93.4636,48.592],[-93.4679,48.5466],[-93.6129,48.5247],[-93.7518,48.5198],[-93.7955,48.5306],[-93.817,48.6146],[-93.8505,48.6316],[-94.0805,48.6538],[-94.2233,48.6602],[-94.257,48.7035],[-94.4165,48.7103],[-94.452,48.6928],[-94.5351,48.7023],[-94.6206,48.7374],[-94.6823,48.8088],[-94.6785,48.8808],[-94.748,49.0975],[-94.7719,49.1224],[-94.8247,49.3069],[-94.9561,49.3694],[-95.0534,49.3529],[-95.1497,49.3833],[-95.1514,49],[-108.021,49],[-108.6609,49.001],[-115.2603,49],[-116.4211,49.0015],[-117.0268,48.9996],[-117.4335,49.0009],[-121.9554,49],[-122.7539,49.0033],[-122.7916,48.9798],[-122.7514,48.9111],[-122.7866,48.8855],[-122.7192,48.8494],[-122.7056,48.8003],[-122.6472,48.7847],[-122.6502,48.7156],[-122.6085,48.7628],[-122.5356,48.7754],[-122.4903,48.7425],[-122.5191,48.7168],[-122.5038,48.6568],[-122.4261,48.6],[-122.4886,48.5358],[-122.4709,48.469],[-122.585,48.4661],[-122.6147,48.5225],[-122.6658,48.4847],[-122.6575,48.4083],[-122.558,48.4281],[-122.5331,48.3747],[-122.4847,48.3714],[-122.3747,48.3008],[-122.3972,48.25],[-122.4678,48.2686],[-122.5311,48.2497],[-122.5372,48.1839],[-122.49,48.1206],[-122.4419,48.1307],[-122.4783,48.1878],[-122.4486,48.2325],[-122.3922,48.2303],[-122.3533,48.1879],[-122.362,48.1204],[-122.2378,48.0303],[-122.2033,48.0344],[-122.2309,47.9706],[-122.3066,47.9498],[-122.3373,47.8499],[-122.3954,47.8066],[-122.3736,47.7266],[-122.4358,47.6619],[-122.3369,47.6008],[-122.4209,47.5761],[-122.3682,47.4592],[-122.3259,47.3934],[-122.324,47.3504],[-122.429,47.3193],[-122.435,47.2622],[-122.5101,47.307],[-122.5631,47.2443],[-122.5916,47.1767],[-122.685,47.0978],[-122.7858,47.127],[-122.8149,47.1781],[-122.9077,47.1403],[-122.912,47.0556],[-122.9511,47.0974],[-123,47.0742],[-122.9421,47.1718],[-123.0259,47.1095],[-123.0195,47.1524],[-122.9628,47.1695],[-122.9353,47.2057],[-122.9276,47.2804],[-122.846,47.3114],[-122.8255,47.353],[-122.7877,47.2989],[-122.8308,47.244],[-122.7721,47.1685],[-122.7212,47.2214],[-122.7532,47.2894],[-122.731,47.3358],[-122.6805,47.3664],[-122.6733,47.2881],[-122.5765,47.2572],[-122.5482,47.2856],[-122.572,47.3269],[-122.5385,47.376],[-122.5319,47.4697],[-122.4957,47.5101],[-122.5467,47.5249],[-122.5326,47.5646],[-122.5698,47.5842],[-122.6077,47.5469],[-122.5909,47.6347],[-122.6142,47.6533],[-122.5539,47.7464],[-122.4728,47.7484],[-122.5133,47.8806],[-122.5478,47.9189],[-122.5967,47.9202],[-122.5735,47.8746],[-122.6846,47.7979],[-122.7487,47.7201],[-122.7532,47.6678],[-122.9155,47.6218],[-123.0311,47.5104],[-123.1194,47.39],[-123.0242,47.3613],[-123.0136,47.3786],[-122.901,47.4225],[-122.9116,47.3895],[-123.0192,47.3547],[-123.1187,47.3391],[-123.158,47.3703],[-123.1104,47.4551],[-123.0578,47.5014],[-122.982,47.615],[-122.9444,47.6307],[-122.8889,47.6903],[-122.8645,47.7699],[-122.7866,47.8038],[-122.8322,47.6918],[-122.7715,47.6934],[-122.7431,47.8092],[-122.6864,47.8325],[-122.693,47.8678],[-122.6304,47.8846],[-122.6809,47.9324],[-122.7347,48.0334],[-122.8008,48.0867],[-122.7487,48.117],[-122.7637,48.1429],[-122.8308,48.1345],[-122.8845,48.1061],[-122.8835,48.0773],[-122.827,48.0442],[-122.8399,48.002],[-122.9153,48.0958],[-122.9752,48.097],[-123.0385,48.0547],[-123.0623,48.1182],[-123.1267,48.1542],[-123.1769,48.155],[-123.2408,48.1172],[-123.3956,48.1144],[-123.5553,48.1511],[-123.6275,48.1389],[-123.6725,48.1631],[-123.8633,48.1542],[-124.0495,48.1776],[-124.1292,48.2206],[-124.2491,48.2641],[-124.275,48.2545],[-124.3844,48.285],[-124.5646,48.3676],[-124.6581,48.391],[-124.7167,48.3909],[-124.7077,48.3537],[-124.6595,48.327],[-124.7047,48.2369],[-124.7,48.1906],[-124.7342,48.1647],[-124.6872,48.0978],[-124.6614,47.9461],[-124.6229,47.8863],[-124.4969,47.8225],[-124.4728,47.7717],[-124.4314,47.7464],[-124.3667,47.5844],[-124.3203,47.3558],[-124.2794,47.3036],[-124.2339,47.2847],[-124.1861,47.1333],[-124.1723,46.9931],[-124.1778,46.9261],[-124.1272,46.9489],[-124.1492,47.0283],[-124.107,47.0424],[-124.0292,47.0299],[-124.0203,46.9911],[-123.9462,46.9679],[-123.8231,46.9572],[-123.9826,46.9231],[-124.0861,46.8617],[-124.1311,46.9],[-124.1011,46.8136],[-124.0969,46.7464],[-124.0201,46.7129],[-123.9708,46.7378],[-123.9153,46.7261],[-123.8939,46.75],[-123.8512,46.703],[-123.9222,46.6731],[-123.9586,46.6115],[-123.8947,46.5486],[-123.9439,46.4756],[-123.9054,46.4291],[-123.9664,46.3792],[-124.0147,46.3811],[-124.0311,46.4936],[-124.0236,46.5842],[-124.07,46.6364],[-124.0594,46.5386],[-124.0594,46.3956],[-124.0778,46.2842],[-124.0228,46.3142],[-123.8733,46.2406],[-123.8054,46.2836],[-123.7586,46.2755],[-123.7114,46.3086],[-123.6731,46.2685],[-123.5864,46.2598],[-123.5111,46.2698],[-123.6126,46.1874],[-123.7325,46.1736],[-123.7679,46.205],[-123.8264,46.19],[-123.855,46.1572],[-123.9526,46.2078],[-123.9828,46.2039],[-123.9329,46.0674],[-123.9389,45.9766],[-123.9973,45.9454],[-123.9632,45.8976],[-123.9693,45.7808],[-123.933,45.6917],[-123.9575,45.5709],[-123.9072,45.5473],[-123.8746,45.4988],[-123.8988,45.4754],[-123.944,45.5072],[-123.9799,45.4866],[-123.9314,45.4037],[-123.9778,45.3385],[-123.9619,45.2797],[-123.9705,45.1583],[-124.0122,45.0772],[-124.0089,45.0122],[-124.0311,44.9033],[-124.0764,44.7719],[-124.0572,44.7367],[-124.0575,44.6596],[-124.0864,44.4856],[-124.0808,44.4256],[-124.0998,44.3342],[-124.1225,44.0927],[-124.1642,43.8289],[-124.2286,43.5689],[-124.2634,43.483],[-124.3336,43.3611],[-124.3858,43.3306],[-124.3814,43.2689],[-124.4753,42.9622],[-124.5557,42.8322],[-124.5137,42.7465],[-124.4739,42.7333],[-124.4136,42.6592],[-124.39,42.57],[-124.4344,42.4322],[-124.4325,42.3203],[-124.4144,42.2519],[-124.3614,42.1808],[-124.3526,42.101],[-124.3003,42.0514],[-124.2151,42.0044],[-124.2106,41.8769],[-124.2572,41.7858],[-124.1653,41.7406],[-124.0822,41.5108],[-124.0633,41.4333],[-124.1078,41.2233],[-124.1592,41.1442],[-124.1564,41.0661],[-124.1125,41.0287],[-124.1531,40.8675],[-124.0881,40.8529],[-124.0889,40.8236],[-124.1836,40.8008],[-124.2228,40.7222],[-124.2997,40.6668],[-124.409,40.4438],[-124.3752,40.3947],[-124.3496,40.3124],[-124.3637,40.2618],[-124.1873,40.1303],[-124.1105,40.1043],[-124.0808,40.0309],[-124.0368,40.0139],[-123.9304,39.9094],[-123.8991,39.8553],[-123.8528,39.8331],[-123.8327,39.7247],[-123.7864,39.6607],[-123.7736,39.5311],[-123.8197,39.4361],[-123.8271,39.3487],[-123.8008,39.3189],[-123.7713,39.1949],[-123.7353,39.1583],[-123.6897,39.0339],[-123.73,38.9542],[-123.6436,38.8414],[-123.4411,38.6989],[-123.3333,38.5644],[-123.2511,38.5095],[-123.1306,38.4523],[-123.0647,38.3536],[-123.0711,38.3269],[-123.0039,38.2966],[-122.9503,38.2156],[-122.9304,38.2135],[-122.8442,38.0908],[-122.9831,38.2347],[-122.9546,38.1767],[-122.9613,38.1114],[-123.01,38.0036],[-122.9325,38.0358],[-122.8306,38.0028],[-122.7756,37.9433],[-122.7019,37.8936],[-122.6747,37.9131],[-122.4999,37.8198],[-122.4378,37.8828],[-122.5014,37.9272],[-122.4617,38.0033],[-122.4969,38.02],[-122.4781,38.1147],[-122.3958,38.1433],[-122.3139,38.1092],[-122.2742,38.0661],[-122.2311,38.0652],[-122.1339,38.0419],[-122.0442,38.1369],[-121.9733,38.0736],[-121.9122,38.0835],[-121.9021,38.0495],[-121.8456,38.0737],[-121.7996,38.0628],[-121.7432,38.0906],[-121.683,38.1519],[-121.7125,38.0816],[-121.8046,38.055],[-121.8124,38.0178],[-121.9506,38.0514],[-122.0703,38.0533],[-122.1481,38.0217],[-122.1903,38.0531],[-122.2625,38.0506],[-122.3,38.0103],[-122.3964,37.9542],[-122.3892,37.9092],[-122.3339,37.9092],[-122.2958,37.8294],[-122.3325,37.7825],[-122.2464,37.7517],[-122.1572,37.6558],[-122.1478,37.5942],[-122.1123,37.5106],[-122.0581,37.4964],[-122.0397,37.4408],[-122.2108,37.4919],[-122.2012,37.5396],[-122.2622,37.5744],[-122.3591,37.5922],[-122.3858,37.6289],[-122.3932,37.7074],[-122.3803,37.7739],[-122.4089,37.8117],[-122.5128,37.7764],[-122.4936,37.6275],[-122.5194,37.5378],[-122.4642,37.4972],[-122.4009,37.3586],[-122.4192,37.2478],[-122.4058,37.1972],[-122.3375,37.1176],[-122.2878,37.1047],[-122.2231,37.0242],[-122.1528,36.9753],[-122.0701,36.9481],[-121.9722,36.9536],[-121.9393,36.9779],[-121.8892,36.9581],[-121.8286,36.8819],[-121.7881,36.805],[-121.8201,36.6662],[-121.8859,36.6008],[-121.9386,36.6403],[-121.9772,36.5797],[-121.9353,36.5625],[-121.9473,36.4903],[-121.9144,36.4253],[-121.8989,36.3083],[-121.8114,36.2325],[-121.7081,36.1878],[-121.6331,36.1189],[-121.573,36.0226],[-121.5028,36],[-121.4667,35.8881],[-121.4161,35.8575],[-121.3177,35.7557],[-121.2788,35.6673],[-121.1719,35.6382],[-121.0977,35.547],[-121.0059,35.4617],[-120.9087,35.4482],[-120.84,35.3453],[-120.9,35.2522],[-120.8564,35.2075],[-120.7564,35.1594],[-120.6992,35.1708],[-120.6388,35.1334],[-120.6358,35.0178],[-120.6683,34.9008],[-120.6097,34.8436],[-120.6386,34.7564],[-120.6006,34.7059],[-120.6464,34.5789],[-120.5147,34.5253],[-120.4725,34.4486],[-120.3422,34.4569],[-120.2967,34.4706],[-120.1417,34.4733],[-120.007,34.4603],[-119.8783,34.4064],[-119.7817,34.4156],[-119.7281,34.3956],[-119.6156,34.4211],[-119.4592,34.3739],[-119.3903,34.3181],[-119.2781,34.2669],[-119.2133,34.1453],[-119.1439,34.1083],[-118.9375,34.0431],[-118.8525,34.0336],[-118.8075,34.0005],[-118.7403,34.0331],[-118.5695,34.0417],[-118.5247,34.0297],[-118.4433,33.9464],[-118.3913,33.8379],[-118.4286,33.7742],[-118.297,33.7089],[-118.2528,33.7478],[-118.1811,33.7649],[-118.0947,33.7369],[-118.0056,33.6575],[-117.9281,33.6075],[-117.8828,33.6017],[-117.7822,33.5406],[-117.7142,33.4594],[-117.6767,33.4608],[-117.4719,33.2989],[-117.3262,33.1189],[-117.2789,33.0005],[-117.2514,32.8744],[-117.2811,32.8214],[-117.2389,32.7809],[-117.2558,32.6997],[-117.2154,32.7246],[-117.1253,32.6806],[-117.0914,32.5978],[-117.1216,32.5881],[-117.1231,32.5344],[-116.5948,32.5791],[-116.0114,32.6259],[-114.7202,32.7186],[-114.7655,32.6435],[-114.807,32.6227],[-114.8136,32.4939],[-113.9713,32.2378],[-113.2108,32.0001],[-112.0007,31.6272],[-111.075,31.3324],[-109.5106,31.3343],[-108.957,31.3322],[-108.2085,31.3334],[-108.2084,31.7838],[-106.5285,31.7838],[-106.4876,31.7477],[-106.4507,31.7642],[-106.3816,31.7324],[-106.3032,31.6218],[-106.2811,31.5626],[-106.2471,31.5425],[-106.2196,31.4815],[-106.0802,31.3985],[-106.0048,31.3927],[-105.9541,31.3645],[-105.9325,31.3127],[-105.8749,31.2912],[-105.7726,31.1662],[-105.6485,31.1155],[-105.6041,31.0833],[-105.5576,30.99],[-105.4162,30.9003],[-105.3877,30.8537],[-105.2504,30.799],[-105.2155,30.8058],[-105.1617,30.7524],[-105.1188,30.7497],[-105.0546,30.6821],[-105.0069,30.6858],[-104.9717,30.61],[-104.927,30.6046],[-104.8736,30.5135],[-104.8592,30.3904],[-104.8166,30.3751],[-104.8113,30.3327],[-104.7605,30.2959],[-104.6873,30.1799],[-104.6862,30.0848],[-104.7066,30.0506],[-104.6838,29.9291],[-104.6101,29.8398],[-104.5506,29.7391],[-104.5444,29.6816],[-104.5159,29.641],[-104.3845,29.5422],[-104.2645,29.5127],[-104.2091,29.4814],[-104.1679,29.3955],[-104.1078,29.3736],[-104.0379,29.3199],[-103.9734,29.2961],[-103.7833,29.2655],[-103.7186,29.1809],[-103.5504,29.1545],[-103.4289,29.0421],[-103.3865,29.0214],[-103.1538,28.9715],[-103.1161,28.9842],[-103.1007,29.0603],[-103.0338,29.1012],[-102.9786,29.1862],[-102.9504,29.1783],[-102.8678,29.2231],[-102.9059,29.2615],[-102.8775,29.3546],[-102.8392,29.3589],[-102.8083,29.5226],[-102.7402,29.5979],[-102.7362,29.6417],[-102.6933,29.6767],[-102.674,29.7446],[-102.548,29.7446],[-102.5174,29.7838],[-102.4071,29.7642],[-102.3415,29.8694],[-102.3008,29.8777],[-102.116,29.7919],[-102.0727,29.7866],[-101.9817,29.815],[-101.9337,29.7855],[-101.8562,29.807],[-101.7101,29.7618],[-101.5749,29.7693],[-101.5395,29.7606],[-101.4534,29.7847],[-101.3477,29.662],[-101.3057,29.6542],[-101.3133,29.6038],[-101.2789,29.5877],[-101.2479,29.6195],[-101.2541,29.5208],[-101.1856,29.518],[-101.1476,29.4745],[-101.0601,29.4585],[-101.0047,29.3653],[-100.8862,29.3074],[-100.8803,29.2827],[-100.7943,29.2421],[-100.7761,29.1727],[-100.6644,29.0747],[-100.6454,28.9399],[-100.5476,28.8262],[-100.5074,28.7402],[-100.4973,28.6587],[-100.4472,28.6421],[-100.4472,28.6092],[-100.3985,28.5851],[-100.411,28.5498],[-100.3407,28.4488],[-100.3427,28.3864],[-100.2866,28.3122],[-100.2942,28.2836],[-100.2095,28.1913],[-100.0862,28.1462],[-100.0182,28.0657],[-99.9905,27.9936],[-99.9315,27.9803],[-99.9373,27.9409],[-99.8937,27.8998],[-99.8708,27.794],[-99.808,27.7653],[-99.7226,27.6674],[-99.6704,27.66],[-99.6387,27.6267],[-99.6034,27.6419],[-99.5115,27.5641],[-99.5282,27.4982],[-99.4788,27.4795],[-99.5045,27.3388],[-99.4966,27.2729],[-99.4418,27.2508],[-99.4262,27.1761],[-99.4453,27.0218],[-99.3813,26.9793],[-99.3747,26.9324],[-99.3285,26.9195],[-99.3152,26.8674],[-99.282,26.8588],[-99.209,26.7247],[-99.1982,26.6529],[-99.1729,26.6166],[-99.1669,26.536],[-99.1284,26.5255],[-99.0916,26.4756],[-99.1132,26.4312],[-99.0868,26.4014],[-99.0411,26.4125],[-98.8803,26.3662],[-98.7996,26.3635],[-98.7839,26.3281],[-98.738,26.3253],[-98.7146,26.27],[-98.633,26.2448],[-98.5797,26.2539],[-98.5635,26.2259],[-98.4426,26.1989],[-98.3216,26.1183],[-98.2821,26.1263],[-98.249,26.0721],[-98.1768,26.0753],[-98.1432,26.0541],[-98.0763,26.0675],[-98.0622,26.0463],[-97.8083,26.0609],[-97.7911,26.0336],[-97.7032,26.0321],[-97.6381,26.0021],[-97.5407,25.9313],[-97.523,25.8882],[-97.469,25.8889],[-97.4251,25.8405],[-97.3769,25.8431],[-97.3697,25.9165],[-97.2808,25.9353],[-97.2157,25.9701]]],[[[-165.3854,65.1687],[-165.3651,65.1526],[-165.4526,65.1214],[-165.5682,65.0974],[-165.6562,65.0479],[-165.7312,65.0729],[-165.8188,65.0771],[-165.8745,65.0964],[-165.9672,65.1682],[-166.0349,65.1859],[-166.0422,65.2307],[-166.1292,65.2292],[-166.2479,65.2583],[-166.3771,65.2542],[-166.4724,65.2203],[-166.4651,65.1713],[-166.5359,65.1172],[-166.6568,65.1036],[-166.8401,65.1214],[-166.8208,65.0771],[-166.7063,65.0563],[-166.6807,64.9818],[-166.5599,64.9464],[-166.5005,64.9474],[-166.4245,64.8922],[-166.3776,64.813],[-166.4745,64.7911],[-166.4682,64.7193],[-166.3911,64.6401],[-166.2104,64.5792],[-165.8521,64.5396],[-165.7437,64.5375],[-165.2167,64.4729],[-165.0104,64.4333],[-164.9271,64.4396],[-164.8432,64.4912],[-164.7521,64.5146],[-164.6187,64.5062],[-164.5437,64.5313],[-164.325,64.5667],[-164.1042,64.5687],[-163.9937,64.5521],[-163.8833,64.5729],[-163.6438,64.5687],[-163.5125,64.55],[-163.3464,64.5099],[-163.2547,64.4745],[-163.1729,64.3979],[-163.1068,64.4089],[-163.0974,64.462],[-163.0318,64.5026],[-163.1479,64.5062],[-163.1755,64.5349],[-163.25,64.5396],[-163.337,64.5714],[-163.3651,64.5974],[-163.2818,64.6026],[-163.2464,64.6297],[-163.1354,64.6458],[-163.1208,64.6],[-163.0339,64.5849],[-163.0188,64.5417],[-162.9453,64.5443],[-162.8422,64.4953],[-162.8537,64.4443],[-162.8005,64.4078],[-162.8037,64.3359],[-162.6318,64.3839],[-162.5922,64.4838],[-162.5453,64.5307],[-162.3333,64.5979],[-162.2359,64.6193],[-162.1708,64.6813],[-161.95,64.6979],[-161.8771,64.7479],[-161.6812,64.7813],[-161.7912,64.8068],[-161.6958,64.8083],[-161.6474,64.7755],[-161.5188,64.7542],[-161.413,64.763],[-161.3036,64.8474],[-161.2016,64.8932],[-161.1792,64.9271],[-161.112,64.8839],[-160.987,64.8359],[-160.8734,64.8057],[-160.862,64.7776],[-160.7776,64.7182],[-160.7839,64.6255],[-160.8974,64.5807],[-160.9297,64.5505],[-161.013,64.5224],[-161.0333,64.4958],[-161.1896,64.4938],[-161.3537,64.5193],[-161.3771,64.5333],[-161.4661,64.5057],[-161.4714,64.4464],[-161.5286,64.4089],[-161.3938,64.4313],[-161.3479,64.4042],[-161.2005,64.4161],[-161.1766,64.3422],[-161.0828,64.2901],[-161.0125,64.2833],[-160.9609,64.2495],[-160.9422,64.0766],[-160.8943,63.9932],[-160.813,63.912],[-160.7599,63.8203],[-160.7859,63.7443],[-160.963,63.6172],[-161.0083,63.6208],[-161.0359,63.5755],[-161.0974,63.5484],[-161.1359,63.5005],[-161.3062,63.4688],[-161.4292,63.4542],[-161.5,63.4688],[-161.5792,63.4458],[-161.6938,63.4625],[-161.8062,63.4375],[-161.8917,63.4479],[-161.9651,63.4318],[-162,63.4458],[-162.1042,63.4271],[-162.0417,63.4854],[-162.175,63.5292],[-162.3021,63.5375],[-162.2651,63.4932],[-162.3604,63.4458],[-162.4068,63.4068],[-162.4203,63.3568],[-162.5307,63.3141],[-162.5297,63.2922],[-162.6958,63.2125],[-162.7792,63.2146],[-162.8411,63.1859],[-162.838,63.1589],[-162.9766,63.1057],[-163.0359,63.0609],[-163.2,63.0438],[-163.3146,63.0208],[-163.3651,63.0536],[-163.5042,63.1104],[-163.6089,63.0755],[-163.6297,63.1432],[-163.6672,63.1516],[-163.7276,63.2078],[-163.8313,63.2083],[-164.0458,63.2625],[-164.2724,63.2391],[-164.3167,63.2417],[-164.4661,63.1891],[-164.5828,63.1193],[-164.5271,63.0708],[-164.4839,63.0849],[-164.3729,63.0646],[-164.35,63.0187],[-164.4787,63.0286],[-164.687,63.0182],[-164.7828,62.9474],[-164.8318,62.8526],[-164.862,62.8224],[-164.8167,62.7958],[-164.6922,62.787],[-164.6354,62.7604],[-164.5021,62.7729],[-164.45,62.7438],[-164.4984,62.7245],[-164.6193,62.6464],[-164.7047,62.6057],[-164.8349,62.5766],[-164.8458,62.5438],[-164.7776,62.5349],[-164.7651,62.5005],[-164.6521,62.4521],[-164.5755,62.4557],[-164.5578,62.4255],[-164.6417,62.4188],[-164.7479,62.4646],[-164.8557,62.4672],[-164.8583,62.5333],[-165.0625,62.5333],[-165.2661,62.4391],[-165.3297,62.363],[-165.6005,62.188],[-165.7057,62.1411],[-165.7599,62.0807],[-165.7703,62.0026],[-165.7391,61.9193],[-165.637,61.8505],[-165.8021,61.825],[-165.9187,61.8271],[-166.0995,61.8099],[-166.0099,61.7214],[-165.9208,61.6979],[-165.7375,61.6875],[-165.7271,61.6646],[-165.6479,61.6854],[-165.6229,61.7167],[-165.5625,61.725],[-165.5229,61.7062],[-165.6141,61.6641],[-165.7396,61.6583],[-165.8125,61.6833],[-165.8828,61.662],[-166.0479,61.6479],[-166.0667,61.6271],[-166.1516,61.6422],[-166.1849,61.5974],[-166.1411,61.5047],[-166.0646,61.4896],[-166.0849,61.5224],[-166.0333,61.5396],[-165.9354,61.5458],[-165.7943,61.5036],[-165.7786,61.4359],[-165.7026,61.4411],[-165.7307,61.3953],[-165.8062,61.4479],[-165.9287,61.4453],[-165.9578,61.4182],[-165.8682,61.3193],[-165.7318,61.3047],[-165.6641,61.2755],[-165.6536,61.1609],[-165.6104,61.1104],[-165.5396,61.0896],[-165.4266,61.0797],[-165.3786,61.0984],[-165.3391,61.1516],[-165.3828,61.2141],[-165.3401,61.2214],[-165.2896,61.2646],[-165.237,61.2734],[-165.2172,61.3172],[-165.2932,61.3224],[-165.2354,61.3625],[-165.1797,61.363],[-165.2078,61.4005],[-165.1521,61.4354],[-165.063,61.4078],[-165.0688,61.3854],[-165.1557,61.4182],[-165.1547,61.3589],[-165.2047,61.3349],[-165.2208,61.2438],[-165.2974,61.2474],[-165.3599,61.188],[-165.2922,61.1786],[-165.2417,61.1437],[-165.1771,61.1375],[-165.1786,61.1089],[-165.1141,61.0776],[-165.0083,61.0479],[-165,61.0896],[-164.9453,61.1016],[-164.9453,60.9922],[-164.9729,61.0208],[-165.0203,61.0026],[-165.1271,61.0125],[-165.1891,60.9547],[-165.1432,60.9255],[-165.0437,60.9083],[-164.9703,60.9453],[-164.8422,60.937],[-164.7979,60.8958],[-164.7521,60.9229],[-164.6062,60.9354],[-164.5693,60.9286],[-164.587,60.8651],[-164.5396,60.8479],[-164.3687,60.875],[-164.2479,60.8604],[-164.15,60.8833],[-164.088,60.8786],[-164.15,60.9396],[-164.1099,60.987],[-164.0417,61.0083],[-163.9901,61.0453],[-163.9766,60.9818],[-163.9234,60.9516],[-163.9672,60.8943],[-164.0609,60.8755],[-163.9854,60.8625],[-163.9354,60.8771],[-163.8776,60.9276],[-163.9396,60.9813],[-163.9005,61.0359],[-163.95,61.0958],[-163.875,61.0625],[-163.8911,61.0276],[-163.8229,61.0104],[-163.8443,61.0911],[-163.9286,61.1193],[-163.9141,61.1911],[-163.7729,61.2292],[-163.7229,61.1958],[-163.5562,61.2396],[-163.513,61.2109],[-163.5875,61.1896],[-163.6729,61.1833],[-163.7042,61.1479],[-163.7547,61.1453],[-163.7464,61.1005],[-163.8057,61.0547],[-163.7401,61.0411],[-163.737,60.988],[-163.6526,60.9891],[-163.7088,60.9516],[-163.6771,60.925],[-163.5578,60.913],[-163.5771,60.8812],[-163.7187,60.8646],[-163.6521,60.8292],[-163.6458,60.8604],[-163.5083,60.875],[-163.4479,60.8917],[-163.3734,60.8578],[-163.3479,60.8125],[-163.2776,60.7964],[-163.462,60.7547],[-163.4089,60.7224],[-163.4792,60.6396],[-163.5354,60.6292],[-163.6583,60.5812],[-163.7932,60.5797],[-163.8203,60.6401],[-163.7917,60.7542],[-163.8562,60.7542],[-163.9125,60.7854],[-164.0161,60.7641],[-164.0609,60.7255],[-164.1026,60.6589],[-164.2604,60.6437],[-164.3729,60.5521],[-164.3818,60.5776],[-164.2953,60.6661],[-164.2104,60.6792],[-164.2646,60.7292],[-164.2693,60.7891],[-164.3188,60.7833],[-164.4359,60.8182],[-164.6849,60.8234],[-164.6911,60.862],[-164.638,60.9016],[-164.725,60.8979],[-164.8479,60.85],[-164.9292,60.9208],[-164.9599,60.8953],[-164.8714,60.8536],[-164.8776,60.812],[-165.0021,60.7854],[-165.0161,60.7484],[-164.963,60.7266],[-164.9901,60.6984],[-165.0562,60.6875],[-165.1714,60.6234],[-165.2453,60.6099],[-165.275,60.575],[-165.3766,60.5745],[-165.4182,60.5495],[-165.3703,60.5068],[-165.2646,60.4917],[-165.1875,60.4979],[-165.0479,60.5458],[-164.9568,60.5286],[-165.0005,60.4755],[-165.1391,60.4422],[-165.0141,60.3609],[-164.8646,60.3063],[-164.7063,60.2938],[-164.6755,60.3089],[-164.6516,60.2505],[-164.4979,60.175],[-164.3828,60.0776],[-164.3432,60.0568],[-164.1938,60.0271],[-164.1257,59.9727],[-164.2005,59.9588],[-164.1983,59.9151],[-164.1408,59.8498],[-164.0052,59.8144],[-163.8726,59.8009],[-163.681,59.7976],[-163.4308,59.812],[-163.1472,59.8478],[-162.9984,59.8869],[-162.913,59.9232],[-162.7842,59.9428],[-162.7333,59.9719],[-162.8141,60.0297],[-162.7734,60.0693],[-162.7359,60.0432],[-162.738,59.9999],[-162.641,59.974],[-162.5154,59.9893],[-162.4797,60.0318],[-162.5036,60.113],[-162.4505,60.1828],[-162.5599,60.2193],[-162.5854,60.2417],[-162.5443,60.2776],[-162.4854,60.3667],[-162.413,60.3755],[-162.3755,60.4651],[-162.3234,60.513],[-162.2807,60.5953],[-162.2208,60.6333],[-162.034,60.6646],[-162.2141,60.5786],[-162.2172,60.5089],[-162.3016,60.4474],[-162.3026,60.388],[-162.3292,60.3583],[-162.4578,60.2953],[-162.3516,60.238],[-162.262,60.1693],[-162.3521,60.175],[-162.3661,60.1589],[-162.2646,60.0583],[-162.2661,60.1203],[-162.1792,60.1375],[-162.2349,60.088],[-162.1889,59.999],[-162.0814,59.9365],[-162.088,59.8868],[-161.9655,59.7998],[-161.9277,59.738],[-161.8784,59.6948],[-161.8681,59.635],[-161.7081,59.5],[-161.7365,59.4698],[-161.8001,59.4715],[-161.8403,59.4158],[-161.9588,59.3722],[-161.9604,59.2433],[-162.0188,59.2287],[-161.975,59.1404],[-161.8869,59.0719],[-161.7885,58.9682],[-161.7891,58.8917],[-161.7583,58.7966],[-161.8027,58.7402],[-161.8671,58.7145],[-161.8353,58.6785],[-161.9481,58.6505],[-161.995,58.6822],[-162.0677,58.6621],[-162.1162,58.6703],[-162.1709,58.6513],[-162.0841,58.6257],[-161.8223,58.6291],[-161.7745,58.6],[-161.7632,58.55],[-161.7123,58.553],[-161.6319,58.5985],[-161.5479,58.6064],[-161.5189,58.6315],[-161.3766,58.667],[-161.3659,58.7191],[-161.2903,58.7719],[-161.1792,58.7844],[-161.0017,58.8486],[-160.9632,58.8768],[-160.8651,58.8799],[-160.8252,58.8447],[-160.778,58.8922],[-160.6365,58.963],[-160.3585,59.0738],[-160.2808,59.0225],[-160.256,58.9868],[-160.33,58.9536],[-160.2647,58.9443],[-160.2487,58.8906],[-160.1598,58.9266],[-160.1602,58.863],[-160.0243,58.8852],[-159.9727,58.8189],[-159.9048,58.7683],[-159.802,58.8027],[-159.7961,58.8523],[-159.7439,58.8939],[-159.7362,58.9305],[-159.6228,58.9366],[-159.5906,58.9041],[-159.6473,58.8414],[-159.4973,58.8189],[-159.3875,58.7578],[-159.3176,58.6961],[-159.2084,58.5731],[-159.0589,58.4212],[-158.9013,58.3908],[-158.8118,58.4047],[-158.7018,58.4868],[-158.7513,58.4954],[-158.7757,58.5561],[-158.8369,58.6251],[-158.8805,58.7284],[-158.8039,58.736],[-158.7746,58.7751],[-158.7977,58.8151],[-158.7822,58.8824],[-158.7217,58.8734],[-158.6254,58.9117],[-158.5182,59.0352],[-158.4599,59.0379],[-158.407,59.0646],[-158.3197,59.0476],[-158.42,59.023],[-158.4436,58.9703],[-158.4928,58.952],[-158.4888,58.9176],[-158.5484,58.7923],[-158.4413,58.775],[-158.3695,58.7454],[-158.3141,58.6461],[-158.2212,58.6146],[-158.0872,58.6202],[-157.8141,58.6888],[-157.7142,58.7265],[-157.5443,58.7592],[-157.3156,58.8351],[-157.211,58.8421],[-157.0952,58.8756],[-157.0375,58.9161],[-157.0165,58.9677],[-156.9232,58.9923],[-157.0194,58.8719],[-157.0044,58.8224],[-157.0683,58.769],[-157.0935,58.704],[-157.2345,58.6322],[-157.3199,58.5593],[-157.3834,58.522],[-157.472,58.4933],[-157.5424,58.3825],[-157.5444,58.2781],[-157.4479,58.2092],[-157.3806,58.2179],[-157.437,58.1662],[-157.529,58.1654],[-157.5874,58.1275],[-157.6279,57.9741],[-157.6651,57.7935],[-157.7012,57.7301],[-157.7131,57.6363],[-157.6965,57.6124],[-157.6049,57.6064],[-157.5773,57.5147],[-157.6386,57.4965],[-157.6959,57.5519],[-157.7413,57.5553],[-157.9276,57.474],[-158.0017,57.408],[-158.0903,57.3583],[-158.2571,57.3126],[-158.3312,57.2806],[-158.5435,57.1295],[-158.6789,57.0053],[-158.6747,56.8567],[-158.6523,56.8153],[-158.7955,56.7801],[-158.9313,56.8181],[-158.9484,56.8588],[-159.0537,56.8006],[-159.2885,56.7125],[-159.3997,56.6871],[-159.5476,56.6228],[-159.818,56.5391],[-160.0419,56.4245],[-160.154,56.3964],[-160.255,56.3237],[-160.3845,56.2548],[-160.4559,56.1404],[-160.4528,56.1209],[-160.5223,56.0391],[-160.5411,55.9922],[-160.5229,55.943],[-160.4233,55.9106],[-160.3189,55.8603],[-160.2539,55.8528],[-160.3001,55.8219],[-160.256,55.7716],[-160.3727,55.7784],[-160.4102,55.8041],[-160.4552,55.7832],[-160.4582,55.8367],[-160.4905,55.8603],[-160.6318,55.855],[-160.7831,55.8831],[-160.7485,55.8169],[-160.757,55.7882],[-160.6516,55.7345],[-160.7529,55.7499],[-160.8015,55.7329],[-160.8927,55.8045],[-160.9439,55.8145],[-160.9463,55.85],[-161.0184,55.9046],[-160.9631,55.9417],[-160.8913,55.9507],[-160.8734,56],[-161.0517,55.9416],[-161.0977,55.9592],[-161.3246,55.9567],[-161.2636,55.9835],[-161.5459,55.9389],[-161.8046,55.8879],[-161.9665,55.7999],[-162.0389,55.7883],[-162.1221,55.7396],[-162.2556,55.6891],[-162.3725,55.5891],[-162.5114,55.4925],[-162.6259,55.4361],[-162.5049,55.4597],[-162.5197,55.4205],[-162.4862,55.3767],[-162.5803,55.3473],[-162.6432,55.3687],[-162.7104,55.3187],[-162.8093,55.3015],[-162.8374,55.2656],[-162.8914,55.2678],[-162.8424,55.2227],[-162.8651,55.1811],[-163.0439,55.1682],[-163.1652,55.1712],[-163.2982,55.1087],[-163.3114,55.0793],[-163.279,55.0362],[-163.2919,54.9664],[-163.2243,54.9238],[-163.3329,54.9467],[-163.3163,54.8769],[-163.3879,54.8489],[-163.3451,54.8001],[-163.2444,54.8263],[-163.1262,54.9037],[-163.0305,54.9436],[-163.0478,54.9697],[-163.2078,55.0228],[-163.2265,55.0758],[-163.1938,55.1261],[-163.1032,55.1192],[-162.9969,55.0745],[-162.9463,55.0228],[-162.9615,54.9945],[-162.9151,54.9475],[-162.832,54.9204],[-162.7062,54.9567],[-162.6528,55.0163],[-162.5593,54.9513],[-162.5812,55.0345],[-162.623,55.0629],[-162.6254,55.1385],[-162.5851,55.1347],[-162.646,55.196],[-162.6917,55.1913],[-162.7173,55.2379],[-162.6655,55.2909],[-162.5899,55.2936],[-162.5923,55.2689],[-162.5064,55.2397],[-162.4939,55.1695],[-162.4035,55.1147],[-162.5206,55.1143],[-162.5017,55.0733],[-162.4138,55.0325],[-162.3339,55.0393],[-162.2209,55.0258],[-162.1885,55.0603],[-162.229,55.1037],[-162.1747,55.1507],[-162.1006,55.1552],[-162.1227,55.104],[-162.0497,55.0697],[-161.9562,55.1041],[-161.9614,55.1582],[-162.0296,55.1714],[-162.001,55.2409],[-161.9015,55.2437],[-161.817,55.2965],[-161.6815,55.4076],[-161.6838,55.4843],[-161.7033,55.5099],[-161.6338,55.5601],[-161.5955,55.6091],[-161.4965,55.6294],[-161.3921,55.6269],[-161.3552,55.5871],[-161.4704,55.4797],[-161.4767,55.423],[-161.5081,55.3791],[-161.4763,55.3573],[-161.32,55.3822],[-161.318,55.3591],[-161.2391,55.3547],[-161.1733,55.3836],[-160.9878,55.4447],[-160.9445,55.5085],[-160.8428,55.5225],[-160.8329,55.4708],[-160.79,55.4549],[-160.663,55.4618],[-160.65,55.5129],[-160.7458,55.5243],[-160.7239,55.5561],[-160.6627,55.5436],[-160.5949,55.5728],[-160.5306,55.4757],[-160.4546,55.5099],[-160.4415,55.5655],[-160.3552,55.6149],[-160.4116,55.6589],[-160.2746,55.6335],[-160.2466,55.6579],[-160.1221,55.6615],[-160.135,55.7061],[-160.0495,55.693],[-160.0154,55.7155],[-160.0483,55.763],[-159.9486,55.8158],[-159.8943,55.7839],[-159.8408,55.8003],[-159.8326,55.8482],[-159.7058,55.8449],[-159.6225,55.8199],[-159.6602,55.7543],[-159.6551,55.7148],[-159.6857,55.651],[-159.6373,55.6515],[-159.6287,55.618],[-159.7016,55.6054],[-159.7085,55.5674],[-159.6272,55.5794],[-159.5637,55.639],[-159.5322,55.6465],[-159.5368,55.7191],[-159.4893,55.7627],[-159.5238,55.884],[-159.4529,55.8883],[-159.4541,55.8095],[-159.404,55.7873],[-159.3941,55.8549],[-159.2602,55.8909],[-159.1688,55.891],[-159.065,55.9181],[-159.0038,55.8871],[-158.9884,55.9263],[-158.907,55.9267],[-158.8342,56.0159],[-158.7958,55.9872],[-158.7293,56.0089],[-158.7242,55.9508],[-158.6811,55.9807],[-158.6342,55.9807],[-158.6811,56.1049],[-158.6032,56.125],[-158.5791,56.0419],[-158.5049,55.9787],[-158.468,56.0239],[-158.4894,56.0487],[-158.4395,56.106],[-158.3948,56.0883],[-158.3372,56.1548],[-158.1904,56.1923],[-158.181,56.2338],[-158.2445,56.1981],[-158.3711,56.2155],[-158.2117,56.2715],[-158.3017,56.3147],[-158.3471,56.3213],[-158.4531,56.2947],[-158.4357,56.3401],[-158.5435,56.3077],[-158.5661,56.2491],[-158.6382,56.2596],[-158.6023,56.3131],[-158.5134,56.3493],[-158.5117,56.3707],[-158.4057,56.4512],[-158.3311,56.4821],[-158.1839,56.4546],[-158.1328,56.4606],[-158.1443,56.5175],[-158.0297,56.5077],[-157.8876,56.4681],[-157.8248,56.4978],[-157.8195,56.5561],[-157.909,56.571],[-158.1281,56.5269],[-158.1304,56.5508],[-158.0289,56.6013],[-157.9762,56.5993],[-157.9438,56.6347],[-157.7713,56.6797],[-157.7387,56.6739],[-157.6824,56.6073],[-157.5846,56.6211],[-157.4624,56.6235],[-157.4798,56.6716],[-157.555,56.6782],[-157.5674,56.7055],[-157.5113,56.7622],[-157.405,56.7731],[-157.4747,56.8238],[-157.4381,56.8589],[-157.386,56.862],[-157.2033,56.7642],[-157.1398,56.8042],[-157.1872,56.8547],[-157.0907,56.8184],[-157.0358,56.8889],[-156.936,56.9156],[-156.8929,56.9638],[-156.8343,56.8954],[-156.8089,56.9025],[-156.7866,56.9709],[-156.7279,57.0382],[-156.6754,56.9938],[-156.5838,56.9871],[-156.5887,57.0365],[-156.5169,57.0491],[-156.4661,57.123],[-156.4147,57.1257],[-156.3389,57.1761],[-156.39,57.202],[-156.3829,57.2522],[-156.3402,57.2521],[-156.3224,57.2898],[-156.3564,57.3224],[-156.5577,57.288],[-156.5415,57.323],[-156.4523,57.3454],[-156.3342,57.4189],[-156.2247,57.4439],[-156.1835,57.4771],[-156.1208,57.4717],[-156.1014,57.433],[-156.0255,57.4335],[-156.056,57.5171],[-156.0191,57.5646],[-155.9342,57.5297],[-155.8353,57.5739],[-155.7959,57.5403],[-155.735,57.5398],[-155.7431,57.6292],[-155.5962,57.6584],[-155.6395,57.704],[-155.6043,57.7807],[-155.5714,57.7891],[-155.4683,57.7441],[-155.4209,57.7447],[-155.3904,57.7125],[-155.3048,57.7233],[-155.3312,57.8263],[-155.236,57.826],[-155.2103,57.8682],[-155.1558,57.8551],[-155.091,57.8727],[-155.0688,57.9042],[-155.1116,57.9442],[-155.0558,57.9503],[-155.0391,58.0201],[-154.8747,58.0278],[-154.8114,57.9999],[-154.7332,58.017],[-154.7184,58.0581],[-154.6523,58.062],[-154.6471,58.0329],[-154.5883,58.0204],[-154.5417,58.0602],[-154.6018,58.1207],[-154.465,58.0816],[-154.4512,58.1814],[-154.4193,58.1302],[-154.3152,58.0923],[-154.3374,58.1599],[-154.2724,58.1305],[-154.2155,58.1384],[-154.2903,58.1774],[-154.2779,58.2017],[-154.178,58.1917],[-154.1517,58.2339],[-154.2079,58.2542],[-154.106,58.2778],[-154.1858,58.3234],[-154.2602,58.2969],[-154.261,58.2736],[-154.3542,58.2501],[-154.3365,58.2845],[-154.1803,58.3594],[-154.0999,58.3432],[-154.0074,58.3752],[-154.0671,58.4271],[-154.0794,58.4789],[-153.9629,58.4862],[-153.9278,58.5205],[-153.901,58.6097],[-153.7614,58.6044],[-153.5943,58.6318],[-153.5644,58.6821],[-153.4551,58.7055],[-153.3945,58.7473],[-153.3559,58.8395],[-153.3125,58.8542],[-153.3361,58.9001],[-153.4074,58.9694],[-153.4844,58.9987],[-153.5463,58.9829],[-153.6286,59.0106],[-153.6996,59.0755],[-153.8071,59.074],[-153.8644,59.0553],[-153.9685,59.0716],[-154.0682,59.0741],[-154.1401,59.0217],[-154.1806,59.0229],[-154.2005,59.0735],[-154.1794,59.1219],[-154.2488,59.1166],[-154.1853,59.1924],[-154.1292,59.1993],[-154.1425,59.2687],[-154.1131,59.3052],[-153.9724,59.3568],[-153.9102,59.4206],[-153.8102,59.4228],[-153.7293,59.4409],[-153.7072,59.4677],[-153.7636,59.5456],[-153.5925,59.5537],[-153.5542,59.5972],[-153.6333,59.6449],[-153.6114,59.6765],[-153.5658,59.6249],[-153.4798,59.6447],[-153.4462,59.6982],[-153.4526,59.7863],[-153.3843,59.7309],[-153.3938,59.6651],[-153.3453,59.6217],[-153.2865,59.6709],[-153.2179,59.635],[-153.1251,59.678],[-153.0592,59.6904],[-152.9938,59.8083],[-153.0038,59.829],[-153.0943,59.8335],[-153.1476,59.8091],[-153.2831,59.8305],[-153.2222,59.8651],[-153.1204,59.8659],[-153.0068,59.8868],[-152.8699,59.8752],[-152.7069,59.9201],[-152.6685,59.983],[-152.6089,60.0068],[-152.5755,60.0828],[-152.6536,60.1339],[-152.6734,60.1641],[-152.8125,60.2125],[-152.8313,60.2333],[-152.6687,60.2],[-152.5625,60.2167],[-152.4745,60.2786],[-152.4187,60.2854],[-152.3703,60.3516],[-152.3042,60.3604],[-152.238,60.3953],[-152.2995,60.413],[-152.3307,60.4766],[-152.25,60.5354],[-152.1792,60.5687],[-152.0922,60.5797],[-152.0557,60.637],[-151.9974,60.6724],[-151.8505,60.7214],[-151.7026,60.7307],[-151.7912,60.8214],[-151.7724,60.8661],[-151.7146,60.8958],[-151.4828,60.9964],[-151.3562,61.0083],[-151.2995,61.0328],[-151.163,61.0464],[-151.0495,61.1599],[-150.9354,61.2],[-150.8542,61.2083],[-150.6938,61.2562],[-150.6646,61.325],[-150.5979,61.3604],[-150.5453,61.4078],[-150.4896,61.3979],[-150.5005,61.4661],[-150.5849,61.4964],[-150.5724,61.5307],[-150.4901,61.5568],[-150.4859,61.587],[-150.5911,61.6339],[-150.6703,61.7005],[-150.7271,61.8],[-150.7578,61.8089],[-150.8276,61.887],[-151.0208,61.9188],[-151.1229,61.975],[-151.1687,61.9896],[-151.113,61.9849],[-150.9495,61.9089],[-150.8396,61.8958],[-150.7297,61.8266],[-150.7021,61.7729],[-150.6891,61.7339],[-150.5807,61.6359],[-150.5437,61.6271],[-150.4901,61.5974],[-150.4729,61.5729],[-150.4276,61.5755],[-150.3849,61.6474],[-150.313,61.6693],[-150.2932,61.7411],[-150.1984,61.7964],[-150.2078,61.8453],[-150.1151,61.9193],[-150.1333,61.9396],[-150.1578,61.9786],[-150.125,62.0604],[-150.0818,62.0953],[-150.1891,62.1682],[-150.1276,62.2161],[-150.1682,62.2495],[-150.1297,62.2755],[-150.1562,62.3354],[-150.1687,62.3542],[-150.1047,62.3057],[-150.137,62.237],[-150.1151,62.2245],[-150.1224,62.1891],[-150.1745,62.1672],[-150.1089,62.1422],[-150.0693,62.1036],[-150.1161,62.0411],[-150.0917,61.9708],[-150.1068,61.8984],[-150.1849,61.8307],[-150.1901,61.7911],[-150.25,61.7625],[-150.2688,61.7167],[-150.313,61.663],[-150.3745,61.6172],[-150.3651,61.5943],[-150.5437,61.5271],[-150.5562,61.4875],[-150.4859,61.4703],[-150.4547,61.4099],[-150.4937,61.3708],[-150.562,61.3391],[-150.5521,61.2958],[-150.4521,61.25],[-150.3062,61.2583],[-150.1167,61.2562],[-149.9812,61.2375],[-149.9193,61.2651],[-149.9182,61.3245],[-149.8771,61.3875],[-149.825,61.3937],[-149.762,61.4453],[-149.5984,61.488],[-149.4687,61.4667],[-149.4062,61.4854],[-149.2688,61.4938],[-149.2146,61.4792],[-149.1604,61.5021],[-149.0333,61.5042],[-148.9354,61.5187],[-148.8188,61.4854],[-148.7172,61.4807],[-148.6786,61.4328],[-148.7495,61.4578],[-148.8661,61.4693],[-148.9354,61.5021],[-148.9958,61.5083],[-149.0896,61.4875],[-149.1562,61.4979],[-149.1938,61.475],[-149.2354,61.4792],[-149.3813,61.4667],[-149.6375,61.3854],[-149.7016,61.3807],[-149.7146,61.3292],[-149.8161,61.312],[-149.8963,61.2234],[-149.975,61.1979],[-150.0188,61.2021],[-150.0682,61.1526],[-149.8359,61.0724],[-149.7328,61.0151],[-149.5917,60.9813],[-149.4917,60.9833],[-149.3609,60.9307],[-149.1766,60.9359],[-149.0776,60.9057],[-149.025,60.85],[-149.0896,60.8958],[-149.1734,60.887],[-149.3771,60.8937],[-149.5625,60.9333],[-149.6479,60.9229],[-149.7458,60.9604],[-149.8437,60.9667],[-149.9271,60.9313],[-150.0917,60.9146],[-150.1979,60.925],[-150.262,60.9443],[-150.3708,61.0375],[-150.5078,61.0036],[-150.6943,60.9422],[-150.8922,60.8526],[-151.0542,60.7875],[-151.2146,60.7792],[-151.3021,60.7396],[-151.4083,60.7167],[-151.3505,60.6432],[-151.3266,60.5776],[-151.2542,60.5458],[-151.2807,60.5016],[-151.2953,60.3859],[-151.3766,60.3661],[-151.3792,60.2938],[-151.413,60.2151],[-151.4984,60.1547],[-151.6224,60.0891],[-151.6953,60.0349],[-151.7593,59.9185],[-151.8148,59.8705],[-151.8711,59.7676],[-151.8376,59.7204],[-151.6451,59.6473],[-151.4835,59.6386],[-151.4369,59.6701],[-151.3415,59.6862],[-151.0588,59.7969],[-150.9574,59.7859],[-151.1245,59.6957],[-151.206,59.6359],[-151.1974,59.5941],[-151.2816,59.5991],[-151.2712,59.5578],[-151.3654,59.5599],[-151.4544,59.5409],[-151.4901,59.4817],[-151.5611,59.4699],[-151.6361,59.4861],[-151.7088,59.4739],[-151.7067,59.4022],[-151.7469,59.4569],[-151.8925,59.4288],[-151.8951,59.3845],[-151.9941,59.3147],[-151.9818,59.2579],[-151.8719,59.253],[-151.884,59.2139],[-151.7651,59.2242],[-151.7402,59.1573],[-151.5934,59.1629],[-151.5779,59.2077],[-151.5262,59.1955],[-151.4539,59.2373],[-151.4462,59.2743],[-151.3123,59.2117],[-151.3058,59.2469],[-151.1862,59.2048],[-151.1179,59.2199],[-151.1077,59.2468],[-151.2594,59.2932],[-151.2151,59.3106],[-151.0945,59.2694],[-151.0542,59.3042],[-151.0182,59.2115],[-150.9883,59.2399],[-150.9149,59.2512],[-150.8565,59.3581],[-150.7751,59.3747],[-150.7471,59.4243],[-150.7074,59.4353],[-150.6057,59.4293],[-150.5845,59.4952],[-150.6296,59.5414],[-150.53,59.6037],[-150.5179,59.5739],[-150.5768,59.5294],[-150.4866,59.4953],[-150.4383,59.5146],[-150.4209,59.5647],[-150.3879,59.568],[-150.3277,59.6253],[-150.2516,59.7266],[-150.2701,59.6322],[-150.3609,59.528],[-150.3243,59.4713],[-150.2222,59.5438],[-150.2094,59.5821],[-150.1683,59.5613],[-150.1266,59.5896],[-150.0906,59.65],[-150.039,59.6128],[-149.9222,59.687],[-149.9966,59.7494],[-150.0598,59.7753],[-150.0252,59.7987],[-149.978,59.7698],[-149.92,59.7695],[-149.8239,59.699],[-149.7965,59.6575],[-149.739,59.7139],[-149.8224,59.8347],[-149.7632,59.8204],[-149.7503,59.9411],[-149.6894,59.9469],[-149.661,59.893],[-149.6618,59.7745],[-149.5525,59.7308],[-149.548,59.7824],[-149.5957,59.7662],[-149.6202,59.8365],[-149.569,59.9026],[-149.5242,59.928],[-149.4702,59.9182],[-149.4418,59.9779],[-149.3963,60.0016],[-149.4474,60.0339],[-149.4432,60.1161],[-149.3589,60.1141],[-149.3125,59.9819],[-149.3792,59.9031],[-149.259,59.9229],[-149.2063,60.0083],[-149.1682,60.037],[-149.0339,60.0432],[-149.1312,59.9643],[-149.0787,59.9533],[-149.039,59.9781],[-149.009,59.9462],[-148.9628,59.9721],[-148.8835,59.9252],[-148.8458,59.9242],[-148.7708,59.9768],[-148.6833,59.9219],[-148.6081,59.9285],[-148.5533,59.9697],[-148.5208,60.0229],[-148.456,59.9413],[-148.4103,59.981],[-148.3734,60.0911],[-148.3932,60.1057],[-148.3271,60.1625],[-148.2833,60.1667],[-148.2896,60.1104],[-148.2417,60.1146],[-148.1214,60.1651],[-148.1057,60.2036],[-148.1453,60.2349],[-148.1797,60.163],[-148.2104,60.2583],[-148.2807,60.2432],[-148.3292,60.2125],[-148.3542,60.2813],[-148.3,60.2604],[-148.2088,60.3005],[-148.1161,60.3776],[-148.0068,60.4005],[-147.9672,60.4484],[-148.0521,60.4604],[-147.9714,60.4818],[-147.9734,60.5141],[-148.0672,60.5609],[-148.0818,60.5932],[-148.1516,60.5745],[-148.1682,60.538],[-148.2693,60.487],[-148.3328,60.4724],[-148.3479,60.5042],[-148.4349,60.513],[-148.4542,60.5417],[-148.5745,60.4995],[-148.6896,60.4354],[-148.7146,60.4562],[-148.5974,60.5328],[-148.5229,60.5646],[-148.4542,60.5687],[-148.325,60.5292],[-148.2682,60.5849],[-148.188,60.6099],[-148.2547,60.7026],[-148.2583,60.7562],[-148.3307,60.7036],[-148.3583,60.6542],[-148.4047,60.6651],[-148.3833,60.7542],[-148.512,60.7661],[-148.5713,60.7318],[-148.588,60.6984],[-148.6812,60.6458],[-148.6807,60.7057],[-148.6037,60.7599],[-148.5292,60.7833],[-148.5604,60.8042],[-148.6562,60.775],[-148.7104,60.7875],[-148.6021,60.825],[-148.4333,60.8292],[-148.4063,60.8458],[-148.3068,60.8339],[-148.2797,60.8964],[-148.312,60.9568],[-148.2563,60.9354],[-148.1859,60.9901],[-148.1651,61.0661],[-148.25,61.0542],[-148.3245,61.0266],[-148.3838,60.9776],[-148.3687,61.0417],[-148.2354,61.0875],[-148.1479,61.0979],[-148.0792,61.0062],[-148.0005,61.063],[-147.9807,61.1078],[-147.8505,61.1839],[-147.7224,61.287],[-147.6714,61.2693],[-147.7542,61.2083],[-147.7,61.225],[-147.6338,61.2151],[-147.7578,61.1849],[-147.9057,61.0891],[-147.9943,60.9609],[-148.0104,60.9167],[-147.9229,60.8896],[-147.9099,60.8536],[-147.7792,60.8104],[-147.7995,60.8568],[-147.7672,60.8964],[-147.7958,60.9188],[-147.7208,60.9396],[-147.713,60.9016],[-147.6667,60.8625],[-147.6047,60.8484],[-147.5943,60.9359],[-147.6167,61.0083],[-147.5568,61.0797],[-147.5599,61.1453],[-147.5104,61.0812],[-147.5412,60.987],[-147.5099,60.9099],[-147.4755,60.9911],[-147.4458,60.8937],[-147.3667,60.8833],[-147.3062,60.9229],[-147.2505,60.9276],[-147.2912,60.9849],[-147.2276,60.9922],[-147.2104,60.9437],[-147.0922,61.013],[-147.0354,60.9917],[-147.0036,61.0203],[-146.9771,60.9667],[-147.0474,60.9422],[-146.9625,60.9313],[-146.863,60.9734],[-146.8474,60.9995],[-146.7667,61.0438],[-146.7021,61.0542],[-146.5979,61.1437],[-146.5708,61.1208],[-146.4646,61.1333],[-146.3917,61.1229],[-146.3042,61.1292],[-146.2354,61.0896],[-146.45,61.0771],[-146.6104,61.0812],[-146.6687,61.0313],[-146.7161,60.9672],[-146.6208,60.9521],[-146.6021,60.9188],[-146.7516,60.9453],[-146.6891,60.8672],[-146.6313,60.8854],[-146.6333,60.8167],[-146.5708,60.8563],[-146.5396,60.8104],[-146.3562,60.8167],[-146.2901,60.838],[-146.2453,60.8786],[-146.1708,60.8458],[-146.2432,60.838],[-146.2312,60.8083],[-146.3313,60.7854],[-146.5474,60.7703],[-146.6714,60.7391],[-146.6536,60.6859],[-146.5354,60.6917],[-146.4896,60.6688],[-146.4187,60.6875],[-146.3057,60.7536],[-146.2979,60.7125],[-146.2349,60.7203],[-146.1854,60.7562],[-146.1568,60.7255],[-146.0693,60.7734],[-146.0568,60.7359],[-146.2172,60.663],[-146.2521,60.6229],[-146.15,60.6312],[-146.025,60.6646],[-145.95,60.6979],[-145.9167,60.6896],[-145.9995,60.6411],[-145.938,60.6255],[-145.8995,60.6745],[-145.8437,60.6104],[-145.6651,60.6547],[-145.6943,60.5922],[-145.7922,60.5193],[-145.9141,60.4891],[-145.9271,60.4521],[-145.8792,60.4458],[-145.7583,60.4646],[-145.6,60.45],[-145.5495,60.4359],[-145.4792,60.3812],[-145.3687,60.3563],[-145.3333,60.3417],[-145.2958,60.3375],[-145.2088,60.3672],[-145.0901,60.438],[-145.0307,60.5099],[-144.9833,60.5354],[-144.8859,60.5485],[-144.8396,60.6188],[-144.7792,60.6292],[-144.7625,60.6792],[-144.7,60.6958],[-144.7042,60.675],[-144.6542,60.6667],[-144.6021,60.7167],[-144.5917,60.7333],[-144.5318,60.7422],[-144.6286,60.688],[-144.6396,60.6521],[-144.7083,60.6458],[-144.7641,60.6661],[-144.7588,60.6109],[-144.8109,60.563],[-144.8229,60.5146],[-144.7797,60.4953],[-144.7943,60.4547],[-144.9141,60.3578],[-144.9536,60.288],[-144.7667,60.2792],[-144.6776,60.2276],[-144.6771,60.2104],[-144.5562,60.1771],[-144.3729,60.1667],[-144.2937,60.1813],[-144.2891,60.1422],[-144.1083,60.0979],[-144.0453,60.0484],[-144.1083,60.0375],[-144.2125,60.0417],[-144.2479,60.0229],[-144.0292,60.0208],[-143.8899,59.9893],[-143.6479,60.0375],[-143.4687,60.0604],[-143.4292,60.0521],[-143.1083,60.0667],[-143.0375,60.1],[-142.9896,60.0833],[-142.7583,60.1104],[-142.4458,60.0729],[-142.425,60.0646],[-142.2125,60.0479],[-142.0896,60.025],[-142.0208,60.025],[-141.8854,60.0021],[-141.7502,59.9515],[-141.6046,59.9636],[-141.5308,59.9897],[-141.4297,60],[-141.3693,60.0255],[-141.4479,60.0812],[-141.4521,60.1104],[-141.4271,60.125],[-141.3458,60.0854],[-141.1938,60.1208],[-141.3146,60.0542],[-141.2693,60.0078],[-141.2954,59.9363],[-141.3678,59.9307],[-141.4631,59.8853],[-141.4331,59.8675],[-141.3135,59.847],[-140.9773,59.7684],[-140.9064,59.7424],[-140.6681,59.7105],[-140.4862,59.7053],[-140.3441,59.6939],[-140.2316,59.704],[-140.1488,59.74],[-139.9576,59.7834],[-140.1333,59.8056],[-140.1734,59.7684],[-140.2312,59.7674],[-140.248,59.806],[-140.1671,59.8037],[-140.0438,59.8387],[-139.9326,59.7917],[-139.8044,59.8184],[-139.7736,59.8684],[-139.7121,59.9188],[-139.6031,59.9521],[-139.6004,59.9876],[-139.5349,60.0469],[-139.4958,60.0021],[-139.4293,60.0021],[-139.3356,59.9175],[-139.2529,59.8602],[-139.1405,59.8625],[-139.0483,59.8406],[-139.1922,59.8417],[-139.3006,59.8194],[-139.2772,59.7864],[-139.3211,59.755],[-139.2711,59.6925],[-139.2283,59.6061],[-139.2989,59.5611],[-139.3567,59.5897],[-139.2928,59.6403],[-139.3497,59.7461],[-139.3345,59.8216],[-139.3,59.8524],[-139.4722,59.9973],[-139.5099,59.9855],[-139.5349,59.9366],[-139.6289,59.9022],[-139.637,59.8731],[-139.6006,59.8047],[-139.5422,59.7367],[-139.4717,59.7031],[-139.5878,59.6458],[-139.6017,59.6117],[-139.6653,59.5663],[-139.6967,59.6197],[-139.7328,59.5475],[-139.8378,59.5581],[-139.8567,59.5353],[-139.63,59.4569],[-139.4111,59.4119],[-139.4006,59.3797],[-139.2911,59.3867],[-139.1894,59.3222],[-138.8938,59.2388],[-138.6267,59.1281],[-138.5132,59.1045],[-138.4806,59.11],[-138.1858,59.0168],[-137.9506,58.8861],[-137.925,58.8422],[-137.9294,58.7831],[-137.7817,58.7181],[-137.6739,58.6467],[-137.515,58.6636],[-137.5122,58.6428],[-137.6428,58.6025],[-137.5761,58.5917],[-137.3978,58.5064],[-137.16,58.4239],[-137.095,58.3814],[-137.0128,58.4106],[-136.8919,58.3849],[-136.9039,58.3417],[-136.8406,58.365],[-136.8578,58.3167],[-136.7938,58.2941],[-136.7067,58.2958],[-136.7325,58.2595],[-136.665,58.2086],[-136.5828,58.2272],[-136.5647,58.2624],[-136.6067,58.3003],[-136.5967,58.3322],[-136.5422,58.3322],[-136.485,58.2994],[-136.4378,58.315],[-136.3755,58.2986],[-136.3706,58.3704],[-136.3125,58.3783],[-136.2828,58.315],[-136.2028,58.3422],[-136.1004,58.3457],[-136.0383,58.3831],[-136.0992,58.513],[-136.1867,58.5097],[-136.1767,58.5614],[-136.2045,58.6133],[-136.3155,58.671],[-136.3933,58.6175],[-136.4644,58.5931],[-136.5211,58.5936],[-136.3496,58.6867],[-136.3913,58.7176],[-136.5074,58.7564],[-136.5306,58.7404],[-136.6387,58.7913],[-136.6075,58.8185],[-136.5793,58.7806],[-136.4932,58.7915],[-136.5617,58.8324],[-136.6467,58.8406],[-136.7467,58.8772],[-137.0139,58.9042],[-137.1083,58.8333],[-137.0229,58.9236],[-136.9417,58.9178],[-136.9172,58.9494],[-137.0433,59.0206],[-137.0311,59.0618],[-136.8754,58.9629],[-136.7103,58.918],[-136.6236,58.9032],[-136.6918,58.9976],[-136.5769,58.9139],[-136.5328,58.9214],[-136.4883,58.8369],[-136.3964,58.8168],[-136.2517,58.7525],[-136.1774,58.7545],[-136.106,58.8639],[-136.1533,59.0061],[-136.1112,59.0102],[-136.1181,58.9607],[-136.0601,58.9284],[-136.0598,58.8537],[-135.9872,58.8614],[-135.92,58.905],[-135.8044,58.9036],[-135.7906,58.8867],[-135.9444,58.8775],[-136.0145,58.844],[-136.0806,58.8281],[-136.0828,58.8076],[-135.9633,58.7036],[-135.9106,58.6165],[-135.8344,58.5992],[-135.8905,58.5753],[-135.8522,58.5386],[-135.8977,58.4488],[-135.9082,58.379],[-135.7044,58.3956],[-135.62,58.4269],[-135.475,58.3756],[-135.4579,58.4075],[-135.5155,58.4756],[-135.4972,58.5033],[-135.4529,58.4561],[-135.3978,58.3254],[-135.314,58.2459],[-135.2222,58.2361],[-135.1627,58.2088],[-135.09,58.24],[-135.1071,58.2658],[-135.0535,58.3464],[-135.1308,58.5102],[-135.1651,58.5634],[-135.2389,58.6192],[-135.1394,58.6172],[-135.227,58.7178],[-135.2467,58.7908],[-135.2839,58.8183],[-135.4022,58.9728],[-135.3822,59.1017],[-135.4406,59.1132],[-135.4691,59.1739],[-135.5178,59.2081],[-135.4756,59.2269],[-135.3849,59.1731],[-135.37,59.1127],[-135.3083,59.0817],[-135.3597,59.2004],[-135.4306,59.2258],[-135.4431,59.2766],[-135.5426,59.3079],[-135.5317,59.325],[-135.4078,59.2894],[-135.3618,59.4494],[-135.3286,59.4442],[-135.3587,59.3718],[-135.3711,59.2653],[-135.2849,59.1974],[-135.2036,59.0704],[-135.1772,58.9992],[-135.1533,58.8551],[-135.0267,58.7328],[-135.0268,58.7899],[-134.9523,58.7952],[-134.9203,58.6804],[-134.9903,58.6765],[-134.8405,58.5184],[-134.7878,58.495],[-134.7781,58.3954],[-134.7267,58.3717],[-134.6467,58.3867],[-134.6367,58.3409],[-134.5389,58.3478],[-134.4985,58.3432],[-134.2134,58.2045],[-134.1494,58.2006],[-134.1037,58.2492],[-134.1467,58.2725],[-134.1405,58.3061],[-134.0578,58.3325],[-134.0528,58.3764],[-133.9704,58.4465],[-133.985,58.4897],[-133.9415,58.5051],[-133.9472,58.4222],[-134.0161,58.4012],[-133.9795,58.3197],[-134.0044,58.295],[-134.0816,58.2794],[-134.0539,58.2308],[-134.0846,58.214],[-134.0672,58.0928],[-134.05,58.0617],[-133.8888,57.9741],[-133.786,58.009],[-133.7761,58.0639],[-133.7117,57.9953],[-133.6939,57.9372],[-133.7619,57.9954],[-133.8306,57.97],[-133.8501,57.934],[-133.6967,57.7914],[-133.6322,57.7914],[-133.6276,57.8454],[-133.5744,57.9178],[-133.5798,57.8311],[-133.5607,57.7761],[-133.4247,57.7225],[-133.3297,57.6634],[-133.2794,57.6611],[-133.1511,57.5884],[-133.0687,57.5094],[-133.1756,57.5818],[-133.3898,57.6593],[-133.5276,57.6876],[-133.5704,57.721],[-133.6509,57.7165],[-133.6739,57.6569],[-133.6621,57.6133],[-133.5621,57.5617],[-133.4517,57.5886],[-133.5167,57.5442],[-133.5276,57.4895],[-133.4673,57.4219],[-133.4186,57.4362],[-133.3645,57.4131],[-133.473,57.3873],[-133.4521,57.3547],[-133.3563,57.3329],[-133.2345,57.3213],[-133.1828,57.3397],[-133.1563,57.3114],[-133.2298,57.3069],[-133.2564,57.2845],[-133.3401,57.2988],[-133.4268,57.2862],[-133.4744,57.2978],[-133.5336,57.2605],[-133.4995,57.2272],[-133.5342,57.1819],[-133.465,57.1501],[-133.3161,57.1067],[-133.1728,57.1773],[-133.1411,57.1619],[-133.1817,57.0891],[-133.0789,57.0825],[-133.0044,57.0492],[-132.8737,57.03],[-132.8349,57.0658],[-132.7829,57.0021],[-132.7889,56.9717],[-132.8721,57.0014],[-132.9528,56.9942],[-132.8861,56.9222],[-132.8096,56.892],[-132.79,56.8433],[-132.6439,56.7817],[-132.4917,56.7456],[-132.5572,56.7148],[-132.5322,56.6881],[-132.5656,56.6286],[-132.4982,56.6035],[-132.4239,56.6092],[-132.3511,56.6367],[-132.3679,56.5928],[-132.3592,56.5277],[-132.2893,56.4844],[-132.2113,56.4607],[-132.1977,56.4157],[-132.1209,56.365],[-132.0944,56.3761],[-132.0622,56.377],[-131.9944,56.3603],[-131.98,56.3011],[-131.9317,56.2364],[-131.8061,56.2161],[-131.7583,56.2245],[-131.6389,56.1911],[-131.7106,56.1867],[-131.7639,56.2056],[-131.9728,56.1739],[-131.9783,56.0439],[-131.9605,56.0128],[-131.9911,55.9628],[-132.0412,55.9602],[-132.0709,55.9242],[-132.0417,55.8858],[-132.0917,55.8531],[-132.0723,55.8092],[-132.1313,55.8109],[-132.1928,55.7856],[-132.1967,55.7308],[-132.287,55.7617],[-132.2281,55.6993],[-132.1851,55.5879],[-132.1208,55.55],[-132.0739,55.545],[-131.9695,55.4978],[-131.9389,55.5677],[-132.0111,55.6731],[-131.9278,55.6117],[-131.8811,55.6228],[-131.8294,55.6833],[-131.777,55.7813],[-131.7697,55.8241],[-131.9194,55.8644],[-131.8323,55.8863],[-131.7606,55.8778],[-131.6767,55.9194],[-131.4397,56.0026],[-131.4083,55.9845],[-131.3883,55.9598],[-131.2969,55.9959],[-131.2278,56.0057],[-131.0945,56.0781],[-131.096,56.0431],[-131.2155,55.9864],[-131.18,55.9472],[-131.0928,55.8948],[-131.0038,55.8052],[-130.9672,55.7848],[-130.9069,55.7122],[-130.8758,55.5595],[-130.8294,55.55],[-130.7967,55.5792],[-130.7766,55.5253],[-130.8666,55.5428],[-130.9004,55.4673],[-130.8761,55.3842],[-130.8783,55.3316],[-130.8322,55.2887],[-130.9272,55.301],[-130.9917,55.2433],[-131.0915,55.1946],[-131.0663,55.1225],[-130.995,55.0853],[-130.9025,55.1025],[-130.8211,55.1445],[-130.7944,55.102],[-130.7199,55.0938],[-130.7952,55.0669],[-130.8528,55.1191],[-130.8715,55.0984],[-130.9893,55.0669],[-131.0051,55.0028],[-130.9532,54.9642],[-130.9713,54.9316],[-130.948,54.8279],[-130.9142,54.7901],[-130.8139,54.7728],[-130.735,54.8417],[-130.7611,54.9408],[-130.7372,54.9536],[-130.7204,54.7649],[-130.6567,54.7745],[-130.6322,54.8167],[-130.525,54.8668],[-130.4971,54.8335],[-130.3706,54.9067],[-130.2956,54.9657],[-130.2289,55.0378],[-130.1951,55.1044],[-130.0987,55.2133],[-129.9942,55.2902],[-130.03,55.3228],[-130.0539,55.4425],[-130.1069,55.4957],[-130.15,55.5979],[-130.1246,55.6795],[-130.1568,55.7074],[-130.1733,55.7769],[-130.1389,55.8181],[-130.0917,55.8277],[-130.016,55.9235],[-130.003,56.0079],[-130.1054,56.1227],[-130.2459,56.0963],[-130.4255,56.1417],[-130.4682,56.2433],[-130.623,56.2669],[-130.7818,56.3671],[-131.087,56.4061],[-131.1733,56.4495],[-131.4716,56.5527],[-131.5813,56.6123],[-131.8354,56.5991],[-131.8604,56.7029],[-131.9009,56.7535],[-131.8731,56.8063],[-132.1231,56.8739],[-132.0448,57.0451],[-132.3687,57.0917],[-132.2478,57.2111],[-132.3692,57.3499],[-132.5539,57.4967],[-132.6608,57.6169],[-132.7512,57.6961],[-132.869,57.8397],[-133.0696,58.0001],[-133.172,58.1538],[-133.3487,58.2795],[-133.4599,58.3885],[-133.38,58.4318],[-133.5042,58.4964],[-133.6995,58.6091],[-133.841,58.7299],[-133.9719,58.7671],[-134.258,58.8609],[-134.3363,58.9236],[-134.3134,58.9621],[-134.4074,58.979],[-134.382,59.0388],[-134.4827,59.131],[-134.5655,59.1308],[-134.6789,59.1921],[-134.7007,59.2489],[-134.9598,59.281],[-135.0335,59.3502],[-134.9924,59.3878],[-135.1006,59.4278],[-135.0279,59.4746],[-135.0289,59.5636],[-135.1175,59.6231],[-135.2198,59.6629],[-135.2337,59.6961],[-135.3644,59.7396],[-135.4796,59.7981],[-135.9476,59.6634],[-136.1953,59.6388],[-136.3535,59.5999],[-136.2414,59.5591],[-136.2363,59.5267],[-136.3014,59.4658],[-136.3963,59.4474],[-136.464,59.463],[-136.4578,59.2814],[-136.582,59.1655],[-136.8247,59.1598],[-136.9996,59.0914],[-137.2827,59.0001],[-137.4515,58.9085],[-137.526,58.9066],[-137.5,58.9849],[-137.5418,59.1063],[-137.6074,59.2435],[-138.1689,59.5359],[-138.6092,59.76],[-138.6563,59.7992],[-138.7058,59.9062],[-138.7908,59.923],[-139.0421,59.9916],[-139.177,60.0829],[-139.0485,60.3259],[-139.0521,60.3537],[-139.6801,60.3357],[-139.9741,60.1845],[-140.448,60.308],[-140.5203,60.2191],[-140.7683,60.2583],[-141.0016,60.3051],[-141.0018,63.9326],[-141.0032,65.0001],[-141.0022,67.0133],[-141.0069,67.9999],[-141.0023,68.5045],[-141.003,69.6462],[-141.1167,69.6729],[-141.2063,69.6792],[-141.2464,69.6297],[-141.3974,69.638],[-141.438,69.6766],[-141.5339,69.7286],[-141.662,69.7589],[-141.75,69.7625],[-141.7854,69.7917],[-141.9,69.8042],[-141.9292,69.7896],[-142.0104,69.7958],[-142.1687,69.8458],[-142.2396,69.8458],[-142.3391,69.8859],[-142.3797,69.9287],[-142.5188,69.9604],[-142.5807,69.9589],[-142.5818,69.9974],[-142.7271,70.0375],[-142.8667,70.0563],[-142.9937,70.0583],[-143.0042,70.0771],[-143.1062,70.0771],[-143.2203,70.1099],[-143.35,70.0896],[-143.5125,70.0875],[-143.6583,70.0729],[-143.7292,70.0896],[-143.8078,70.0693],[-143.875,70.0771],[-143.9125,70.0583],[-143.9818,70.0599],[-144.0896,70.0375],[-144.4125,70.0271],[-144.4875,70.0167],[-144.6375,69.9646],[-144.8292,69.9833],[-144.9625,69.9583],[-145.025,69.9812],[-145.2625,69.9896],[-145.3,70.0104],[-145.4187,70.0292],[-145.4833,70.0583],[-145.6042,70.0333],[-145.6521,70.0583],[-145.5792,70.0708],[-145.7937,70.1375],[-145.8542,70.1625],[-145.8708,70.1167],[-145.9104,70.1146],[-146.1687,70.1646],[-146.5083,70.1854],[-146.7187,70.1687],[-146.8542,70.175],[-146.9458,70.15],[-147.1828,70.1547],[-147.2417,70.1771],[-147.4167,70.1854],[-147.5125,70.2021],[-147.6771,70.1979],[-147.7812,70.2167],[-147.7958,70.2813],[-147.9542,70.2729],[-148.0672,70.2859],[-148.1271,70.3271],[-148.2229,70.3146],[-148.2609,70.3255],[-148.3453,70.3016],[-148.4516,70.3068],[-148.4724,70.337],[-148.5536,70.3422],[-148.5292,70.3688],[-148.5813,70.3958],[-148.7104,70.4083],[-148.8354,70.3875],[-148.9229,70.3958],[-148.8797,70.4287],[-148.963,70.4266],[-149.0562,70.4625],[-149.1625,70.4854],[-149.4214,70.4922],[-149.4646,70.5146],[-149.5396,70.4896],[-149.6667,70.5062],[-149.7661,70.4797],[-149.8479,70.5021],[-149.9021,70.4958],[-150.0646,70.4417],[-150.2104,70.4313],[-150.3875,70.4063],[-150.6563,70.3458],[-150.7229,70.3229],[-150.7922,70.2693],[-150.7797,70.2338],[-150.8359,70.2172],[-150.8422,70.2693],[-150.7693,70.2963],[-150.7297,70.338],[-150.7453,70.3682],[-150.6359,70.3943],[-150.6255,70.4182],[-150.7734,70.4745],[-150.7271,70.4],[-150.7891,70.3755],[-150.8328,70.3901],[-150.837,70.4526],[-150.9146,70.4625],[-150.9703,70.438],[-151.0417,70.4396],[-151.0891,70.3859],[-151.1479,70.4271],[-151.1807,70.3818],[-151.2896,70.3458],[-151.2672,70.3891],[-151.3875,70.4167],[-151.7646,70.4354],[-151.8875,70.4313],[-151.9422,70.4516],[-151.9,70.475],[-151.8,70.4896],[-151.7604,70.5458],[-152.0208,70.5604],[-152.0437,70.5458],[-152.1812,70.55],[-152.3646,70.5375],[-152.3792,70.55],[-152.5208,70.5375],[-152.5937,70.5667],[-152.5167,70.5813],[-152.2729,70.575],[-152.1979,70.5833],[-152.3042,70.6042],[-152.4146,70.6062],[-152.4646,70.6333],[-152.4708,70.6937],[-152.3818,70.7151],[-152.2974,70.7849],[-152.2443,70.7943],[-152.2229,70.825],[-152.5833,70.8812],[-152.6646,70.8792],[-152.6172,70.8339],[-152.6995,70.7859],[-152.6953,70.7464],[-152.7766,70.8724],[-152.8583,70.8417],[-152.913,70.8891],[-152.9937,70.8875],[-153.0479,70.9042],[-153.1313,70.8938],[-153.1292,70.9208],[-153.2953,70.9099],[-153.3813,70.8875],[-153.5542,70.8833],[-153.7104,70.8896],[-153.9333,70.8771],[-153.9984,70.8172],[-154.1562,70.7688],[-154.2125,70.7708],[-154.2521,70.8104],[-154.3417,70.8125],[-154.3562,70.8313],[-154.4667,70.8208],[-154.6141,70.8214],[-154.6338,70.8599],[-154.7625,70.8688],[-154.7766,70.8891],[-154.6109,70.9068],[-154.6172,70.9411],[-154.5734,70.9953],[-154.6505,71.0328],[-154.7063,71.0021],[-154.7708,71.0729],[-154.8125,71.0854],[-154.8943,71.0703],[-154.9661,71.0339],[-154.8641,71.0443],[-154.7437,71.0417],[-154.7276,70.9568],[-154.7828,70.9484],[-154.8208,70.975],[-154.8505,70.9516],[-154.8208,70.8854],[-154.9391,70.9422],[-154.9568,71.0089],[-155.0188,71.0313],[-155.0667,71.1292],[-155.0667,71.0625],[-155.1458,71.1042],[-155.2521,71.075],[-155.1568,71.0182],[-155.2021,70.9771],[-155.2625,71.0146],[-155.3599,70.9953],[-155.5099,70.9339],[-155.4542,70.8458],[-155.2859,70.8474],[-155.313,70.788],[-155.4375,70.8104],[-155.5036,70.8443],[-155.5875,70.8021],[-155.6896,70.8313],[-155.875,70.8271],[-155.9141,70.7922],[-155.8875,70.7562],[-156,70.7479],[-155.9583,70.7792],[-155.9896,70.825],[-156.05,70.8208],[-156.1729,70.8542],[-156.1703,70.8745],[-156.0854,70.8583],[-155.9958,70.8625],[-156.0083,70.8958],[-156.0729,70.8833],[-156.1037,70.9057],[-156.1641,70.8922],[-156.1797,70.8672],[-156.2437,70.9],[-156.2563,70.8667],[-156.3245,70.8724],[-156.2349,70.9182],[-156.3313,70.9167],[-156.3729,70.9042],[-156.4187,70.9083],[-156.4375,70.875],[-156.4958,70.9125],[-156.3583,70.9104],[-156.2875,70.9396],[-156.1625,70.9729],[-156.1109,70.9484],[-156.15,70.9187],[-155.9854,70.9187],[-156,70.9646],[-155.7271,70.9833],[-155.6974,71.0203],[-155.6141,71.0599],[-155.5396,71.0625],[-155.5068,71.0859],[-155.5688,71.1396],[-155.6375,71.1167],[-155.6422,71.1589],[-155.7474,71.1911],[-155.8917,71.1771],[-155.9208,71.2104],[-156.0146,71.1708],[-156.1,71.2417],[-156.2542,71.2625],[-156.35,71.2583],[-156.45,71.2875],[-156.5318,71.2974],[-156.5979,71.3354],[-156.6729,71.3021],[-156.7521,71.3063],[-157.0328,71.1724],[-157.0021,71.1208],[-157.0521,71.1062],[-157.0771,71.1458],[-157.2359,71.0505],[-157.4479,70.9625],[-157.8188,70.8625],[-158.025,70.8292],[-158.1917,70.8167],[-158.3542,70.8125],[-158.3917,70.7979],[-158.7187,70.7854],[-158.9646,70.7917],[-158.9812,70.7646],[-159.1849,70.7578],[-159.2563,70.7708],[-159.2578,70.7089],[-159.2984,70.7578],[-159.4141,70.7651],[-159.3438,70.8063],[-159.1193,70.8203],[-159.1917,70.8458],[-159.3708,70.8438],[-159.5458,70.8167],[-159.6854,70.7771],[-159.8109,70.7234],[-159.9474,70.6787],[-160.0167,70.6333],[-159.8901,70.612],[-159.8286,70.5766],[-159.8224,70.5432],[-159.737,70.4901],[-159.6229,70.4875],[-159.6,70.5062],[-159.5213,70.4818],[-159.6766,70.4547],[-159.7609,70.487],[-159.8484,70.4234],[-159.8766,70.3797],[-159.8255,70.3557],[-159.8411,70.2568],[-159.8984,70.3276],[-159.9536,70.3672],[-160.1432,70.3078],[-160.1417,70.3396],[-160.0833,70.3458],[-159.9828,70.4099],[-159.987,70.4276],[-159.9104,70.4833],[-160.0458,70.4604],[-160.0292,70.5021],[-159.913,70.5109],[-159.9109,70.5766],[-160.025,70.5792],[-160.0896,70.5646],[-160.138,70.5807],[-160.2688,70.5396],[-160.2797,70.5255],[-160.5937,70.4187],[-160.6786,70.4036],[-160.7068,70.3818],[-160.8604,70.3375],[-161.0401,70.313],[-161.3062,70.2479],[-161.4083,70.2396],[-161.6104,70.2438],[-161.6151,70.2245],[-161.7932,70.1807],[-161.8375,70.15],[-162.0125,70.1583],[-162.0813,70.1167],[-162.0813,70.1625],[-161.9792,70.1833],[-161.9146,70.1604],[-161.8458,70.1604],[-161.862,70.2099],[-161.7667,70.2125],[-161.8646,70.2479],[-161.7146,70.2354],[-161.6833,70.2625],[-161.8432,70.2714],[-161.7354,70.3083],[-161.8792,70.3271],[-161.9266,70.312],[-161.9901,70.2422],[-162.0922,70.2005],[-162.1938,70.1729],[-162.2688,70.125],[-162.3953,70.0922],[-162.4682,70.0578],[-162.4568,70.0005],[-162.4922,69.963],[-162.575,69.9187],[-162.6104,69.9167],[-162.8104,69.8354],[-162.8214,69.8193],[-162.9432,69.7932],[-163.0286,69.7276],[-162.9172,69.6943],[-162.9792,69.6687],[-163.0255,69.6828],[-163.0479,69.6292],[-163.088,69.6464],[-163.112,69.5901],[-163.0151,69.5359],[-163.0771,69.4292],[-163.1734,69.313],[-163.225,69.2813],[-163.3036,69.2703],[-163.4661,69.1911],[-163.5307,69.1412],[-163.6917,69.0687],[-163.8432,69.0307],[-163.9312,68.9917],[-164.1057,68.9599],[-164.1396,68.9417],[-164.2833,68.925],[-164.4937,68.9104],[-164.6396,68.9125],[-164.7979,68.8938],[-165.1125,68.875],[-165.3146,68.8562],[-165.5417,68.8521],[-165.65,68.8438],[-165.7437,68.8562],[-166.2125,68.8792],[-166.1922,68.6943],[-166.2287,68.6495],[-166.2245,68.5703],[-166.2995,68.5141],[-166.2984,68.4672],[-166.3708,68.4021],[-166.4417,68.3938],[-166.5208,68.3396],[-166.3708,68.3229],[-166.2479,68.3187],[-166.1714,68.2849],[-166.1328,68.2422],[-166.0958,68.2438],[-166.0151,68.2016],[-165.9807,68.1464],[-165.8813,68.1104],[-165.7063,68.0938],[-165.3667,68.0396],[-165.1146,67.9542],[-164.9266,67.8734],[-164.8193,67.8516],[-164.7812,67.8229],[-164.725,67.8354],[-164.6849,67.8026],[-164.6172,67.7953],[-164.4953,67.7151],[-164.4125,67.6937],[-164.3521,67.7063],[-164.138,67.6391],[-164.1078,67.6047],[-163.9667,67.5062],[-163.8807,67.4213],[-163.8167,67.4187],[-163.7708,67.3875],[-163.8203,67.3526],[-163.7625,67.2646],[-163.7328,67.1932],[-163.6417,67.1854],[-163.5891,67.1568],[-163.5083,67.1458],[-163.4172,67.1036],[-163.4193,67.0839],[-163.525,67.1167],[-163.7328,67.1193],[-163.6604,67.0979],[-163.5396,67.0896],[-163.3083,67.0625],[-163.2526,67.0807],[-163.1583,67.0458],[-162.9979,67.0313],[-162.7479,67.0521],[-162.5557,66.9838],[-162.5161,67.0286],[-162.4708,66.9812],[-162.3687,66.9938],[-162.2375,66.9938],[-162.1625,67.0188],[-161.9792,67.0417],[-161.8354,67.05],[-161.7229,67.0083],[-161.7083,67.025],[-161.6193,67.0099],[-161.5833,66.9833],[-161.5292,66.9896],[-161.4734,66.9495],[-161.525,66.9375],[-161.6083,66.95],[-161.7057,66.9411],[-161.6963,66.9193],[-161.7828,66.8912],[-161.8057,66.8161],[-161.8474,66.8078],[-161.8401,66.7672],[-161.8641,66.7026],[-161.7396,66.6542],[-161.6938,66.625],[-161.5854,66.5875],[-161.5234,66.5807],[-161.487,66.5297],[-161.2917,66.5229],[-161.2068,66.5578],[-161.2312,66.5771],[-161.1187,66.6396],[-160.9729,66.6417],[-160.8938,66.6583],[-160.8083,66.6563],[-160.7339,66.6328],[-160.6562,66.5896],[-160.5109,66.5859],[-160.5021,66.6125],[-160.4354,66.6208],[-160.3542,66.6104],[-160.275,66.6521],[-160.1854,66.6312],[-160.0979,66.675],[-160.0412,66.6589],[-159.9438,66.6813],[-159.8104,66.6583],[-159.8229,66.6813],[-159.7229,66.6771],[-159.6964,66.6484],[-159.7771,66.6146],[-159.8724,66.637],[-159.9125,66.5729],[-159.9599,66.5755],[-159.9839,66.6214],[-160.0354,66.6062],[-160.0953,66.6193],[-160.1187,66.5917],[-160.25,66.6167],[-160.3182,66.5953],[-160.2688,66.5646],[-160.2479,66.5896],[-160.1833,66.525],[-160.2016,66.4797],[-160.1208,66.4688],[-160.0333,66.475],[-160.05,66.4146],[-160.1938,66.4521],[-160.2276,66.3859],[-160.3542,66.375],[-160.4833,66.375],[-160.5458,66.3562],[-160.6771,66.3667],[-160.7854,66.3625],[-160.8484,66.3953],[-160.962,66.4172],[-161.0651,66.4849],[-161.1682,66.4984],[-161.1771,66.5333],[-161.2661,66.512],[-161.3229,66.4771],[-161.5063,66.4417],[-161.5833,66.4396],[-161.6651,66.4703],[-161.8203,66.5109],[-161.9099,66.5443],[-161.9922,66.6099],[-162.0724,66.6484],[-162.0828,66.6911],[-162.0109,66.7568],[-162.0208,66.7813],[-162.0995,66.788],[-162.2391,66.8734],[-162.3188,66.9417],[-162.4,66.9167],[-162.4729,66.9479],[-162.5208,66.9021],[-162.6182,66.8505],[-162.5088,66.7766],[-162.5016,66.7338],[-162.3224,66.7234],[-162.2333,66.7104],[-162.1214,66.6536],[-162.0995,66.6109],[-161.9922,66.5787],[-161.8963,66.5286],[-161.8651,66.4734],[-161.8057,66.438],[-161.8724,66.4245],[-161.9391,66.3234],[-161.8792,66.3604],[-161.8354,66.3604],[-161.6917,66.3979],[-161.5354,66.4021],[-161.1047,66.3287],[-160.9859,66.2255],[-161.0047,66.1891],[-161.0724,66.1787],[-161.1042,66.1208],[-161.0937,66.2292],[-161.2104,66.2063],[-161.3021,66.2167],[-161.3516,66.2547],[-161.4979,66.2583],[-161.5568,66.2276],[-161.7214,66.0589],[-161.8245,66.0036],[-161.7854,65.9688],[-161.85,65.9563],[-161.8693,66.0005],[-161.9318,66.0349],[-162.0396,66.0687],[-162.1354,66.075],[-162.3354,66.0271],[-162.4036,66.0297],[-162.4521,66.0563],[-162.5396,66.0333],[-162.6432,66.0266],[-162.6745,65.9943],[-162.688,66.0703],[-162.7583,66.0958],[-162.8687,66.0792],[-162.9229,66.0896],[-163.1375,66.0521],[-163.3062,66.0687],[-163.3313,66.0854],[-163.4833,66.0833],[-163.6271,66.0542],[-163.7661,66.0734],[-163.8537,66.1276],[-163.8979,66.1937],[-163.9703,66.1672],[-164.1625,66.1917],[-163.9917,66.2146],[-163.9333,66.2146],[-163.8255,66.2714],[-163.8651,66.3339],[-163.8724,66.387],[-163.8474,66.4182],[-163.7713,66.4484],[-163.7255,66.4964],[-163.8146,66.5563],[-163.8042,66.5771],[-163.6521,66.5542],[-163.6792,66.5771],[-163.8271,66.5917],[-164.1062,66.5917],[-164.4396,66.5771],[-164.6896,66.5437],[-164.7276,66.5109],[-164.9286,66.4495],[-165.0146,66.3792],[-165.0422,66.4287],[-165.1458,66.4333],[-165.2479,66.4146],[-165.4396,66.4021],[-165.5979,66.3542],[-165.6583,66.3479],[-165.7557,66.3141],[-165.8464,66.263],[-165.8537,66.213],[-165.6958,66.2042],[-165.5312,66.1458],[-165.6896,66.0958],[-165.7792,66.0958],[-165.8729,66.1125],[-166.0583,66.1062],[-166.2187,66.1708],[-166.6042,66.0896],[-166.7708,66.0313],[-166.7958,65.9729],[-166.9187,65.9875],[-166.9438,65.9583],[-166.8682,65.9276],[-166.9974,65.8953],[-167.0354,65.8688],[-167.1849,65.8401],[-167.2276,65.8766],[-167.2807,65.8901],[-167.4833,65.8354],[-167.4563,65.7979],[-167.5312,65.8021],[-167.562,65.7714],[-167.4859,65.7599],[-167.4953,65.7338],[-167.5833,65.7083],[-167.7896,65.7063],[-167.9104,65.6438],[-168,65.625],[-168.0599,65.6297],[-168.0286,65.6891],[-167.925,65.7125],[-167.8354,65.7521],[-167.8125,65.7396],[-167.7396,65.7771],[-167.9458,65.7354],[-168.0807,65.6932],[-168.1245,65.6453],[-168.087,65.5901],[-168.0458,65.5687],[-167.8896,65.5521],[-167.8167,65.5208],[-167.6422,65.4807],[-167.6062,65.4542],[-167.4083,65.4021],[-167.1292,65.3875],[-167.0354,65.3875],[-166.9542,65.3708],[-166.825,65.375],[-166.7521,65.3604],[-166.6104,65.3521],[-166.3979,65.3083],[-166.387,65.3182],[-166.1479,65.2875],[-166.0359,65.2474],[-166.0188,65.1896],[-165.8338,65.1339],[-165.8703,65.1807],[-165.7521,65.1896],[-165.6687,65.1583],[-165.5792,65.1771],[-165.4354,65.1646],[-165.4,65.2104],[-165.3854,65.1687]]],[[[-153.252,57.9968],[-153.3048,57.9846],[-153.0948,57.8618],[-153.09,57.8453],[-153.2349,57.8944],[-153.1796,57.7972],[-153.2057,57.7901],[-153.3381,57.8037],[-153.4768,57.8417],[-153.4604,57.7899],[-153.3313,57.7493],[-153.3528,57.7027],[-153.3903,57.7499],[-153.4889,57.7744],[-153.5052,57.7427],[-153.43,57.695],[-153.5078,57.7125],[-153.5247,57.6561],[-153.5561,57.7382],[-153.5474,57.7847],[-153.5718,57.8323],[-153.6253,57.8423],[-153.6191,57.8804],[-153.7197,57.8965],[-153.9306,57.8091],[-153.9356,57.7297],[-153.9056,57.7013],[-153.8011,57.6964],[-153.6667,57.665],[-153.5945,57.6292],[-153.6078,57.6008],[-153.6593,57.6401],[-153.8682,57.6502],[-153.8798,57.633],[-153.6942,57.5278],[-153.8487,57.562],[-153.8196,57.5379],[-153.8122,57.4136],[-153.7398,57.3174],[-153.7589,57.3075],[-153.8326,57.3861],[-153.8943,57.4205],[-153.9267,57.5334],[-153.9894,57.5386],[-153.9801,57.621],[-154.0172,57.6483],[-154.2328,57.6633],[-154.2622,57.6419],[-154.3872,57.6139],[-154.4448,57.5733],[-154.5178,57.5766],[-154.5228,57.5367],[-154.63,57.5078],[-154.651,57.4611],[-154.7161,57.4308],[-154.6956,57.3989],[-154.7441,57.3252],[-154.7347,57.2715],[-154.6211,57.2704],[-154.5722,57.2378],[-154.5294,57.1803],[-154.5144,57.0781],[-154.5283,56.9922],[-154.3967,56.9633],[-154.3122,56.9175],[-154.3033,56.8419],[-154.2256,56.8758],[-154.205,56.9292],[-154.1533,56.9489],[-154.1511,57.0019],[-154.1105,57.0447],[-154.1128,57.0728],[-154.0917,57.1006],[-154.1157,57.128],[-154.2939,57.1136],[-154.3789,57.0497],[-154.4361,57.0544],[-154.4839,57.0964],[-154.4744,57.1242],[-154.3911,57.1233],[-154.3383,57.1503],[-154.2572,57.1438],[-154.2289,57.1614],[-154.1306,57.1456],[-154.0767,57.122],[-154.013,57.1289],[-153.9861,57.1082],[-154.055,57.0908],[-154.1078,57.0569],[-154.0972,57.0336],[-154.1417,56.9972],[-154.0744,56.9703],[-153.9764,57.0566],[-153.8818,57.1171],[-153.8033,57.1125],[-153.9209,57.0629],[-153.975,56.958],[-153.8595,56.9833],[-153.844,56.945],[-153.9799,56.8977],[-154.0089,56.86],[-154.0806,56.8406],[-154.1506,56.7469],[-154.0556,56.7631],[-153.9767,56.7434],[-153.8985,56.7667],[-153.8426,56.8329],[-153.7583,56.8383],[-153.6698,56.9309],[-153.6013,56.933],[-153.5406,57.0009],[-153.6388,57.0157],[-153.5943,57.0563],[-153.7026,57.057],[-153.6611,57.0842],[-153.573,57.0927],[-153.4994,57.0651],[-153.486,57.14],[-153.4498,57.1119],[-153.3419,57.1898],[-153.2185,57.2175],[-153.0797,57.2123],[-152.9507,57.2491],[-153.015,57.3014],[-153.0985,57.287],[-153.1928,57.3019],[-152.9974,57.3446],[-152.8593,57.3044],[-152.8187,57.2645],[-152.7432,57.3129],[-152.7069,57.2759],[-152.6267,57.3286],[-152.626,57.4058],[-152.7157,57.4185],[-152.7627,57.4583],[-152.8164,57.4717],[-152.9326,57.4641],[-152.8832,57.5117],[-152.8011,57.4943],[-152.7389,57.5058],[-152.6636,57.4632],[-152.6245,57.4764],[-152.5888,57.444],[-152.5173,57.4336],[-152.4891,57.4683],[-152.3504,57.4213],[-152.2889,57.5211],[-152.1668,57.5868],[-152.1544,57.6205],[-152.2689,57.6283],[-152.4695,57.6014],[-152.4004,57.6876],[-152.492,57.6457],[-152.4638,57.7251],[-152.5327,57.6951],[-152.5581,57.719],[-152.4801,57.744],[-152.4485,57.7782],[-152.4009,57.7757],[-152.3251,57.8219],[-152.3467,57.835],[-152.4212,57.8138],[-152.4004,57.8557],[-152.5269,57.9104],[-152.5581,57.8982],[-152.6172,57.9208],[-152.7102,57.8644],[-152.7285,57.8189],[-152.785,57.8587],[-152.8458,57.829],[-152.8438,57.729],[-152.908,57.7557],[-152.9123,57.8195],[-152.8612,57.8791],[-152.7971,57.8995],[-152.8497,57.9291],[-152.9369,57.9486],[-152.9995,57.9471],[-152.9976,57.9188],[-153.1989,57.9682],[-153.252,57.9968]]],[[[-133.6027,56.3553],[-133.6028,56.3241],[-133.6639,56.3195],[-133.6318,56.2206],[-133.6065,56.1902],[-133.4683,56.1764],[-133.4621,56.1401],[-133.526,56.1179],[-133.6245,56.1424],[-133.6328,56.1081],[-133.5259,56.0963],[-133.505,56.0775],[-133.6361,56.0859],[-133.7022,56.0669],[-133.8092,55.9668],[-133.7939,55.9164],[-133.6961,55.9128],[-133.6272,55.9678],[-133.5385,55.981],[-133.3783,56.0328],[-133.365,55.9886],[-133.4311,55.9559],[-133.4422,55.9133],[-133.3844,55.8947],[-133.3861,55.9539],[-133.2878,56.0156],[-133.2922,56.0874],[-133.2533,56.0192],[-133.285,55.9564],[-133.2399,55.8833],[-133.1633,55.8456],[-133.1678,55.8095],[-133.223,55.7888],[-133.2583,55.7464],[-133.314,55.7599],[-133.3423,55.7063],[-133.3911,55.7287],[-133.4078,55.6477],[-133.3592,55.6069],[-133.2716,55.5756],[-133.1819,55.5809],[-133.1378,55.613],[-133.0855,55.6109],[-133.0817,55.5603],[-133.156,55.4766],[-133.0725,55.4473],[-133.0511,55.4002],[-132.9752,55.3661],[-133.0039,55.3431],[-133.1027,55.3753],[-133.2255,55.3828],[-133.2795,55.3511],[-133.235,55.2842],[-133.1411,55.2852],[-133.0897,55.2696],[-132.9585,55.2767],[-132.9795,55.2472],[-133.0395,55.2342],[-133.0161,55.2031],[-132.9696,55.2229],[-132.8806,55.2314],[-132.8353,55.2693],[-132.8267,55.2019],[-132.7094,55.148],[-132.6635,55.1393],[-132.629,55.1723],[-132.6577,55.2349],[-132.5822,55.1719],[-132.6292,55.1109],[-132.6244,55.0617],[-132.5844,55.1186],[-132.525,55.1161],[-132.5575,55.0765],[-132.5211,55.0394],[-132.6163,54.9699],[-132.5294,54.9327],[-132.4695,54.98],[-132.4927,54.8952],[-132.4478,54.9039],[-132.4111,54.9678],[-132.3605,54.917],[-132.3755,54.8935],[-132.3072,54.8392],[-132.3656,54.8186],[-132.3078,54.7803],[-132.31,54.7217],[-132.2308,54.718],[-132.165,54.6908],[-132.0896,54.7012],[-132.0178,54.69],[-131.9982,54.7297],[-132.0182,54.7848],[-131.9633,54.7831],[-131.9728,54.8489],[-132.054,54.8928],[-131.9789,54.8983],[-131.9656,54.9528],[-132.0305,55.0332],[-132.1306,54.9964],[-132.2056,55.0033],[-132.0928,55.0406],[-132.076,55.0797],[-131.9944,55.1128],[-132.0367,55.1431],[-131.9755,55.1836],[-131.9922,55.2583],[-132.0283,55.2798],[-132.1103,55.1989],[-132.2273,55.2207],[-132.2906,55.2447],[-132.1664,55.2369],[-132.0939,55.2667],[-132.1463,55.3377],[-132.205,55.3628],[-132.2595,55.4171],[-132.3626,55.4077],[-132.4111,55.4203],[-132.3189,55.4703],[-132.3972,55.4742],[-132.4122,55.5155],[-132.4883,55.4964],[-132.5152,55.5123],[-132.5854,55.4986],[-132.5356,55.5603],[-132.5387,55.6084],[-132.4217,55.5395],[-132.2305,55.4843],[-132.1761,55.4506],[-132.1822,55.5059],[-132.3043,55.5599],[-132.3472,55.6009],[-132.3737,55.6609],[-132.4958,55.6594],[-132.4444,55.7201],[-132.4911,55.7545],[-132.4861,55.7967],[-132.5949,55.8795],[-132.6164,55.9083],[-132.715,55.9584],[-132.7346,55.9842],[-132.8272,56.0228],[-132.9675,56.0281],[-133.0119,56.0557],[-133.0779,56.0429],[-133.1222,56.0937],[-133.0766,56.1111],[-133.0379,56.1827],[-133.0739,56.2334],[-133.1239,56.2601],[-133.1502,56.3069],[-133.2032,56.3351],[-133.3071,56.3218],[-133.3573,56.3401],[-133.4156,56.3269],[-133.6027,56.3553]]],[[[-155.8764,20.0956],[-155.8234,20.0276],[-155.9367,19.8497],[-155.96,19.8531],[-156.0503,19.7744],[-156.0328,19.6563],[-155.9753,19.6046],[-155.9508,19.4869],[-155.9203,19.4769],[-155.8847,19.3322],[-155.9189,19.115],[-155.8819,19.0364],[-155.7953,19.0042],[-155.6864,18.9372],[-155.6378,18.9347],[-155.5516,19.052],[-155.504,19.1357],[-155.4523,19.1474],[-155.4154,19.1838],[-155.3471,19.2135],[-155.2936,19.2634],[-155.2078,19.2562],[-155.1305,19.2728],[-155.0714,19.3111],[-154.9725,19.3489],[-154.8206,19.4769],[-154.8058,19.5161],[-154.9031,19.5689],[-154.98,19.6376],[-155.0022,19.7364],[-155.0903,19.7347],[-155.0811,19.8475],[-155.1572,19.9325],[-155.2746,20.0165],[-155.4383,20.0925],[-155.5561,20.1289],[-155.5878,20.1188],[-155.7303,20.2022],[-155.7539,20.2361],[-155.8369,20.2672],[-155.8881,20.2517],[-155.9033,20.2131],[-155.8764,20.0956]]],[[[-135.8928,57.9986],[-135.7797,57.9555],[-135.7076,57.9421],[-135.5022,57.8764],[-135.4137,57.8591],[-135.3158,57.807],[-135.2025,57.7765],[-135.0202,57.7798],[-134.9578,57.8167],[-135.0741,57.8783],[-135.1572,57.9],[-135.141,57.924],[-134.9995,57.8892],[-134.9226,57.9232],[-134.9142,57.9763],[-134.9527,58.04],[-135.1087,58.0607],[-135.1161,58.0914],[-135.275,58.0975],[-135.4063,58.1442],[-135.4672,58.1311],[-135.4878,58.0858],[-135.5576,58.0449],[-135.5976,57.9892],[-135.6433,57.9661],[-135.7452,57.992],[-135.637,57.9957],[-135.7133,58.0594],[-135.626,58.049],[-135.5184,58.1268],[-135.5277,58.1876],[-135.6496,58.2291],[-135.7322,58.2386],[-135.7797,58.2842],[-135.825,58.2827],[-136.0056,58.1881],[-136.1404,58.2256],[-136.2027,58.1773],[-136.2029,58.1453],[-136.2957,58.2232],[-136.354,58.2238],[-136.3201,58.1551],[-136.4437,58.1252],[-136.4386,58.0952],[-136.2495,57.9824],[-136.1104,57.8704],[-136.272,57.9688],[-136.3539,58.0028],[-136.3611,57.9339],[-136.4322,57.8431],[-136.2951,57.7629],[-136.2589,57.7773],[-136.2144,57.7411],[-136.1096,57.6911],[-136.1621,57.6423],[-136.0756,57.5995],[-135.9686,57.5291],[-135.9228,57.5245],[-135.8843,57.4881],[-135.8244,57.4723],[-135.8178,57.445],[-136,57.5295],[-136.0317,57.5219],[-135.9683,57.4633],[-135.9144,57.4475],[-135.84,57.3892],[-135.713,57.3664],[-135.6755,57.4069],[-135.6201,57.4119],[-135.5556,57.4527],[-135.5811,57.5177],[-135.5705,57.5955],[-135.7056,57.6589],[-135.7283,57.72],[-135.7855,57.7547],[-135.6263,57.7015],[-135.5337,57.6521],[-135.2485,57.5484],[-135.1286,57.4971],[-135.0886,57.4655],[-134.9818,57.4573],[-134.8706,57.4647],[-134.8334,57.4873],[-134.8622,57.5478],[-134.85,57.5805],[-134.9229,57.6779],[-134.9288,57.7571],[-135.0216,57.7439],[-135.1106,57.76],[-135.2361,57.7072],[-135.2444,57.7322],[-135.3271,57.7472],[-135.3774,57.8013],[-135.5178,57.8431],[-135.5769,57.8838],[-135.6681,57.9149],[-135.7734,57.9228],[-135.8205,57.9695],[-135.8928,57.9986]]],[[[-171.65,63.7729],[-171.7068,63.7464],[-171.7536,63.6839],[-171.738,63.6547],[-171.7854,63.6312],[-171.8391,63.5516],[-171.8432,63.4859],[-171.8167,63.4313],[-171.7312,63.3667],[-171.6604,63.3563],[-171.5458,63.3187],[-171.5042,63.3271],[-171.4333,63.3083],[-171.2964,63.3526],[-171.2833,63.3833],[-171.1917,63.3958],[-171.0604,63.4333],[-170.9458,63.4354],[-170.8521,63.4562],[-170.7833,63.4083],[-170.6797,63.4026],[-170.6297,63.3818],[-170.5849,63.3964],[-170.5229,63.3646],[-170.4714,63.3599],[-170.3526,63.3141],[-170.3167,63.2875],[-170.2375,63.2792],[-170.2245,63.188],[-170.1021,63.1896],[-170.0042,63.1437],[-169.9104,63.1458],[-169.7583,63.0812],[-169.7109,63.0109],[-169.7708,63.0083],[-169.7542,62.9583],[-169.6375,62.9375],[-169.6172,62.9672],[-169.5318,62.9776],[-169.5828,63.0276],[-169.5771,63.0521],[-169.4891,63.0974],[-169.4563,63.0958],[-169.3745,63.1557],[-169.2125,63.2],[-169.1396,63.1896],[-169.0667,63.1979],[-168.9521,63.1604],[-168.8792,63.1604],[-168.7214,63.2318],[-168.737,63.263],[-168.7,63.3],[-168.8203,63.3026],[-168.8813,63.3292],[-169.0042,63.3417],[-169.2563,63.3417],[-169.3938,63.3563],[-169.475,63.3438],[-169.5578,63.3609],[-169.5693,63.3995],[-169.6521,63.4292],[-169.8229,63.4292],[-169.9375,63.4688],[-170.0021,63.4667],[-170.0641,63.488],[-170.1062,63.6146],[-170.1458,63.6146],[-170.2896,63.6875],[-170.4167,63.6854],[-170.4771,63.6958],[-170.5359,63.6672],[-170.6375,63.6688],[-170.7307,63.6391],[-170.8932,63.5714],[-170.9854,63.5646],[-171.1104,63.5875],[-171.175,63.5875],[-171.2271,63.6125],[-171.4995,63.6005],[-171.5172,63.6578],[-171.65,63.7062],[-171.65,63.7729]]],[[[-66.022087096,17.977361679],[-65.914024352,17.975973129],[-65.830139159,18.019027711],[-65.761253,18.154585],[-65.725418,18.188194],[-65.604584,18.210417],[-65.62764,18.259306],[-65.619308,18.365973],[-65.666527,18.361805],[-65.814857483,18.409305572],[-65.904861,18.453194],[-65.990417,18.460417],[-66.005142212,18.44430542],[-66.185974001,18.46986],[-66.284584046,18.471248627],[-66.397636414,18.49319458],[-66.452919007,18.469305038],[-66.622642518,18.494026184],[-66.702079773,18.474027635],[-66.781806946,18.491804123],[-66.9118042,18.48374939],[-67.016807556,18.510971069],[-67.090698243,18.515972138],[-67.169303894,18.480138779],[-67.163749696,18.411804199],[-67.270416259,18.366527557],[-67.235137939,18.299304962],[-67.195419312,18.290138245],[-67.153198,18.204306],[-67.185417,18.165974],[-67.181808,18.112638],[-67.215416,17.982916],[-67.105698,17.945415],[-67.062363,17.973747],[-66.987915,17.970415],[-66.953751,17.932362],[-66.838470459,17.949306489],[-66.770141602,18.005973817],[-66.672363,17.965973],[-66.578476,17.961529],[-66.459305,17.989584],[-66.392082,17.946529],[-66.317085,17.977083],[-66.237083,17.926527],[-66.206802,17.962641],[-66.15486145,17.929304122],[-66.022087096,17.977361679]]],[[[-134.177,58.1546],[-134.3336,58.1428],[-134.4486,58.1739],[-134.538,58.1824],[-134.6926,58.1596],[-134.7094,58.2282],[-134.8047,58.3218],[-134.8781,58.3574],[-134.887,58.3218],[-134.9527,58.4091],[-134.9704,58.3698],[-134.957,58.31],[-134.8959,58.1916],[-134.866,58.1814],[-134.7709,58.0873],[-134.8099,58.0452],[-134.7056,57.8317],[-134.7309,57.7217],[-134.6778,57.6113],[-134.6118,57.5624],[-134.5796,57.5062],[-134.4872,57.5458],[-134.3741,57.5608],[-134.3759,57.5442],[-134.535,57.5233],[-134.53,57.4819],[-134.5797,57.4765],[-134.4686,57.3843],[-134.4878,57.3725],[-134.5808,57.401],[-134.5807,57.3444],[-134.5098,57.3175],[-134.57,57.305],[-134.6539,57.2233],[-134.6067,57.1528],[-134.6378,57.1076],[-134.6004,57.0335],[-134.4926,57.0278],[-134.4804,57.0497],[-134.3745,57.0919],[-134.3778,57.1313],[-134.3283,57.1236],[-134.281,57.1579],[-134.1557,57.2075],[-134.1486,57.2636],[-134.0956,57.2709],[-134.1606,57.3333],[-134.1744,57.3911],[-134.1078,57.3213],[-134.0861,57.3614],[-133.9808,57.3042],[-133.8624,57.3677],[-133.9189,57.4437],[-133.9688,57.4499],[-134.0889,57.495],[-134,57.4947],[-133.9137,57.4715],[-133.9464,57.5673],[-133.9351,57.6109],[-134.0472,57.6747],[-134.1483,57.7631],[-134.2339,57.8647],[-134.3102,57.8558],[-134.2811,57.9175],[-134.3304,58.0005],[-134.2383,57.9669],[-134.3154,58.0957],[-134.2038,58.0246],[-134.1387,57.9048],[-134.0928,57.8493],[-134.0317,57.8175],[-133.9981,57.7199],[-133.8561,57.6228],[-133.8392,57.5778],[-133.8004,57.5845],[-133.809,57.6276],[-133.8941,57.6847],[-133.8748,57.7321],[-133.9006,57.8064],[-134.0064,57.8933],[-133.9922,57.9122],[-134.0987,57.9826],[-134.099,58.0175],[-134.1724,58.0671],[-134.2041,58.1147],[-134.177,58.1546]]],[[[-166.1042,60.3646],[-166.1245,60.3755],[-166.2729,60.3833],[-166.3755,60.3443],[-166.4375,60.375],[-166.5745,60.3516],[-166.5896,60.3021],[-166.6375,60.325],[-166.7583,60.3042],[-166.8286,60.2693],[-166.7964,60.2391],[-166.862,60.2026],[-166.9479,60.2208],[-167.0542,60.2146],[-167.1083,60.2313],[-167.3146,60.2313],[-167.3917,60.2],[-167.4401,60.2016],[-167.338,60.1266],[-167.3307,60.0651],[-167.2401,60.0578],[-167.1349,60],[-167.0226,60],[-167.0123,59.9832],[-166.8954,59.9591],[-166.7519,59.8929],[-166.675,59.8844],[-166.613,59.8527],[-166.4162,59.8567],[-166.3073,59.8262],[-166.2004,59.7758],[-166.1926,59.7515],[-166.1086,59.7531],[-166.0808,59.7757],[-166.1281,59.8205],[-166.0296,59.867],[-165.9553,59.8817],[-165.8922,59.8717],[-165.7468,59.9084],[-165.7165,59.8943],[-165.5799,59.9127],[-165.5885,59.9502],[-165.6536,59.9961],[-165.7109,60.063],[-165.6672,60.0984],[-165.6776,60.1516],[-165.7214,60.163],[-165.6839,60.2005],[-165.7255,60.2464],[-165.6776,60.2703],[-165.7854,60.3229],[-165.8729,60.3396],[-165.9995,60.3089],[-166.0854,60.3187],[-166.1042,60.3646]]],[[[-135.4101,57.5574],[-135.4506,57.5575],[-135.551,57.5093],[-135.5329,57.4511],[-135.6008,57.4035],[-135.495,57.3533],[-135.6065,57.3719],[-135.685,57.3725],[-135.5498,57.2378],[-135.4995,57.2561],[-135.3456,57.2473],[-135.4242,57.1687],[-135.3929,57.1438],[-135.343,57.1857],[-135.2839,57.1742],[-135.3722,57.1497],[-135.4038,57.1011],[-135.3389,57.0472],[-135.2724,57.0319],[-135.3039,56.9847],[-135.3761,56.9891],[-135.3406,56.8772],[-135.3967,56.8801],[-135.3779,56.8164],[-135.3283,56.8283],[-135.3092,56.777],[-135.2666,56.7575],[-135.2911,56.7208],[-135.1912,56.7619],[-135.2244,56.6936],[-135.18,56.6659],[-135.1183,56.72],[-135.0344,56.7697],[-135.0177,56.7437],[-135.0917,56.7195],[-135.1417,56.6786],[-135.1283,56.6064],[-135.0783,56.6008],[-135.0089,56.6367],[-134.9615,56.6187],[-134.9912,56.5748],[-135.0178,56.5981],[-135.0648,56.5407],[-134.9022,56.3506],[-134.8945,56.3148],[-134.8422,56.3222],[-134.8089,56.2414],[-134.7716,56.2177],[-134.7183,56.2245],[-134.6656,56.1673],[-134.6283,56.2643],[-134.6389,56.4769],[-134.6651,56.5004],[-134.6677,56.5921],[-134.6377,56.5395],[-134.6155,56.6361],[-134.6645,56.8073],[-134.7042,56.8391],[-134.6967,56.9003],[-134.7363,56.9693],[-134.7635,57.0687],[-134.7893,57.0846],[-134.7994,57.1633],[-134.8641,57.212],[-134.8628,57.2717],[-134.945,57.2711],[-134.9506,57.3273],[-134.9222,57.3438],[-134.8323,57.2926],[-134.8036,57.3409],[-134.8539,57.4114],[-134.8987,57.4261],[-135.0079,57.411],[-135.1642,57.4454],[-135.225,57.4889],[-135.2749,57.4667],[-135.3214,57.5365],[-135.4101,57.5574]]],[[[-163.7617,55.0475],[-163.8961,55.0364],[-164.0227,54.9723],[-164.1606,54.9601],[-164.2061,54.9283],[-164.3378,54.8953],[-164.4328,54.9328],[-164.5544,54.8878],[-164.5573,54.8539],[-164.6715,54.7003],[-164.7167,54.6561],[-164.8036,54.6421],[-164.9289,54.5997],[-164.94,54.5364],[-164.905,54.5086],[-164.8478,54.42],[-164.7394,54.3931],[-164.655,54.3886],[-164.4494,54.4211],[-164.335,54.4821],[-164.328,54.5403],[-164.2061,54.5959],[-164.0667,54.624],[-163.8189,54.6361],[-163.6774,54.627],[-163.5868,54.6105],[-163.4989,54.6525],[-163.4208,54.6557],[-163.4256,54.72],[-163.3972,54.7419],[-163.3261,54.7459],[-163.285,54.6958],[-163.1134,54.6953],[-163.1572,54.6678],[-163.0601,54.6625],[-163.1,54.7295],[-163.1866,54.7769],[-163.2244,54.7553],[-163.33,54.7531],[-163.4022,54.8397],[-163.395,54.895],[-163.467,54.9851],[-163.5317,55.0147],[-163.5396,55.051],[-163.6594,55.04],[-163.7617,55.0475]]],[[[-133.8661,57.0959],[-134.0083,57.0728],[-134.0411,57.0227],[-133.8922,56.9484],[-133.8328,56.9014],[-133.8983,56.8864],[-133.8729,56.8591],[-133.7639,56.8072],[-133.7,56.8259],[-133.712,56.7883],[-133.7086,56.6481],[-133.6533,56.5917],[-133.6744,56.52],[-133.645,56.4404],[-133.5089,56.4363],[-133.4324,56.4506],[-133.3883,56.4965],[-133.3263,56.4661],[-133.3,56.48],[-133.2211,56.4481],[-133.1561,56.4583],[-133.0846,56.5273],[-133.0978,56.6011],[-133.1461,56.6367],[-133.2507,56.6519],[-133.2162,56.6972],[-133.2499,56.7498],[-133.3028,56.73],[-133.3427,56.7647],[-133.3011,56.7961],[-133.2462,56.795],[-133.2156,56.7364],[-133.0272,56.6047],[-132.956,56.6278],[-132.9323,56.665],[-132.9967,56.8131],[-132.9406,56.8522],[-132.9923,56.9375],[-133.0755,56.9908],[-133.2065,57.0122],[-133.3222,57.0059],[-133.2637,56.938],[-133.2886,56.925],[-133.3263,56.9929],[-133.5692,57.0439],[-133.5974,57.059],[-133.8661,57.0959]]],[[[-131.2511,55.967],[-131.459,55.9357],[-131.5444,55.9071],[-131.6,55.8996],[-131.5246,55.8383],[-131.7121,55.8336],[-131.7009,55.8023],[-131.6308,55.7837],[-131.4989,55.7937],[-131.6166,55.7628],[-131.671,55.7701],[-131.7328,55.7289],[-131.6991,55.6965],[-131.7238,55.6345],[-131.6294,55.6011],[-131.6833,55.5661],[-131.7182,55.5168],[-131.8311,55.4486],[-131.7365,55.3978],[-131.6872,55.3505],[-131.5504,55.2939],[-131.4661,55.3751],[-131.54,55.4756],[-131.4928,55.4781],[-131.4661,55.4092],[-131.4119,55.3713],[-131.3253,55.4299],[-131.3312,55.5104],[-131.3514,55.5372],[-131.3691,55.6309],[-131.289,55.4657],[-131.33,55.3797],[-131.3896,55.3397],[-131.4838,55.3],[-131.4528,55.2756],[-131.3555,55.2595],[-131.2835,55.2881],[-131.2542,55.3325],[-131.2928,55.3792],[-131.2521,55.3995],[-131.1904,55.3616],[-131.2405,55.2871],[-131.327,55.2452],[-131.235,55.1968],[-131.185,55.1908],[-131.1477,55.2297],[-131.0643,55.2602],[-131.0507,55.32],[-131.021,55.3501],[-131.0383,55.4],[-130.9706,55.3928],[-130.9943,55.4738],[-130.9894,55.5373],[-130.9397,55.6198],[-130.9738,55.7058],[-131.0419,55.7668],[-131.0711,55.8278],[-131.2511,55.967]]],[[[-166.6464,54.0132],[-166.726,53.9989],[-166.7472,54.0143],[-166.8534,53.976],[-166.8765,53.9877],[-167.0756,53.925],[-167.1529,53.8282],[-167.0952,53.8194],[-167.0927,53.7901],[-167.0095,53.7547],[-166.9611,53.7772],[-166.8317,53.7406],[-166.7122,53.7278],[-166.8332,53.7077],[-166.7889,53.6258],[-166.8961,53.7164],[-167,53.7175],[-167.0543,53.7006],[-167.0722,53.6665],[-167.0093,53.6421],[-167.045,53.6078],[-167.1061,53.6344],[-167.165,53.6014],[-167.1232,53.5437],[-167.0735,53.5101],[-167.161,53.5097],[-167.1618,53.4673],[-167.2845,53.4777],[-167.3281,53.4058],[-167.4718,53.4479],[-167.4985,53.394],[-167.5515,53.4029],[-167.7106,53.3816],[-167.7378,53.3575],[-167.8551,53.3101],[-167.7582,53.2725],[-167.7092,53.274],[-167.6567,53.2472],[-167.6106,53.2829],[-167.4958,53.279],[-167.4555,53.3211],[-167.3049,53.335],[-167.2968,53.369],[-167.1714,53.3972],[-167.151,53.4186],[-167.0528,53.4317],[-167.0292,53.4642],[-166.9011,53.4336],[-166.8789,53.4725],[-166.8078,53.4342],[-166.7644,53.4436],[-166.7461,53.4864],[-166.7711,53.5269],[-166.6622,53.4836],[-166.5964,53.5338],[-166.5517,53.6236],[-166.425,53.66],[-166.2744,53.6864],[-166.2672,53.7219],[-166.3244,53.7306],[-166.3206,53.7689],[-166.4133,53.7631],[-166.5696,53.7056],[-166.5104,53.7772],[-166.4128,53.8081],[-166.3561,53.8572],[-166.2625,53.8714],[-166.2217,53.9022],[-166.275,53.9831],[-166.3367,53.9461],[-166.4428,53.9514],[-166.4439,53.9033],[-166.5234,53.8733],[-166.6182,53.8684],[-166.6461,53.9286],[-166.5905,53.9638],[-166.6464,54.0132]]],[[[-73.74,40.5944],[-73.6507,40.5958],[-73.5952,40.6338],[-73.3868,40.6568],[-73.2785,40.6842],[-73.2256,40.7181],[-73.1487,40.6983],[-73.0206,40.7486],[-72.9453,40.7408],[-72.8864,40.7653],[-72.8694,40.7392],[-72.7238,40.8089],[-72.6708,40.7848],[-72.4921,40.8354],[-72.4933,40.8831],[-72.4422,40.8747],[-72.4738,40.8389],[-71.9575,41.0283],[-71.8741,41.0517],[-71.8959,41.0772],[-71.9603,41.0702],[-72.0222,41.0214],[-72.1103,40.9947],[-72.1594,41.0539],[-72.2789,41.0003],[-72.3717,40.9956],[-72.4072,40.95],[-72.4425,40.9456],[-72.4747,40.8994],[-72.5517,40.9147],[-72.6125,40.9083],[-72.5267,40.98],[-72.4564,41.0014],[-72.4022,41.0756],[-72.2783,41.1593],[-72.3536,41.1403],[-72.3967,41.0964],[-72.4452,41.0868],[-72.4789,41.0514],[-72.6369,40.9814],[-72.778,40.9652],[-73.02,40.9628],[-73.1187,40.9778],[-73.1711,40.9042],[-73.2939,40.9244],[-73.4383,40.9009],[-73.4369,40.935],[-73.4853,40.9473],[-73.4886,40.8775],[-73.5414,40.8769],[-73.5657,40.9155],[-73.6764,40.8575],[-73.7297,40.8664],[-73.7658,40.8121],[-73.8697,40.7792],[-73.8883,40.7989],[-73.936,40.7775],[-73.9728,40.7025],[-73.9984,40.7014],[-74.0405,40.6156],[-74,40.5711],[-73.8761,40.5847],[-73.897,40.6237],[-73.8234,40.6493],[-73.74,40.5944]]],[[[-134.245,56.9355],[-134.2195,56.9025],[-134.145,56.8753],[-134.1617,56.8489],[-134.2942,56.9078],[-134.3561,56.8942],[-134.3456,56.8347],[-134.4033,56.8597],[-134.4228,56.8411],[-134.3911,56.7564],[-134.4011,56.7261],[-134.3216,56.6437],[-134.2652,56.603],[-134.2672,56.5606],[-134.2028,56.5414],[-134.1389,56.4775],[-134.0956,56.5439],[-134.0444,56.4869],[-134.0744,56.4458],[-134.0567,56.3839],[-134.1172,56.4131],[-134.1533,56.3978],[-134.2378,56.4323],[-134.2336,56.361],[-134.2939,56.3539],[-134.2744,56.3142],[-134.1761,56.3278],[-134.231,56.2758],[-134.2768,56.2656],[-134.2461,56.1756],[-134.2606,56.1333],[-134.2122,56.105],[-134.2222,56.0631],[-134.1694,56.0578],[-134.1373,56.0091],[-134.0911,56.0895],[-134.1039,56.1431],[-134.0613,56.2316],[-134.0263,56.1479],[-134.045,56.1179],[-133.9942,56.0803],[-133.9577,56.0947],[-133.9339,56.1687],[-133.9561,56.2051],[-133.8817,56.2205],[-133.9189,56.2779],[-133.9812,56.2659],[-133.9522,56.3454],[-133.875,56.275],[-133.8311,56.3233],[-133.9077,56.3688],[-133.892,56.4284],[-133.8355,56.4305],[-133.9268,56.5165],[-133.8743,56.5204],[-133.8365,56.6061],[-133.7778,56.5578],[-133.7446,56.5565],[-133.6904,56.6026],[-133.7361,56.6728],[-133.7706,56.6795],[-133.735,56.7783],[-133.8745,56.8109],[-133.8642,56.7518],[-133.935,56.6933],[-133.9272,56.76],[-133.965,56.8244],[-133.9995,56.8236],[-134.0144,56.8736],[-134.1545,56.9195],[-134.245,56.9355]]],[[[-152.6486,58.4759],[-152.6964,58.4148],[-152.7267,58.4506],[-152.8678,58.3861],[-152.778,58.3671],[-152.784,58.2784],[-152.9802,58.2865],[-153.0449,58.3064],[-153.1044,58.2603],[-153.0038,58.2059],[-152.9294,58.1931],[-152.9154,58.1673],[-153.0343,58.2018],[-153.063,58.1932],[-153.1732,58.2161],[-153.2222,58.1595],[-153.1668,58.1263],[-153.0739,58.1006],[-153.02,58.0453],[-152.9711,58.0403],[-152.8613,57.9924],[-152.7572,58.0122],[-152.7593,58.0558],[-152.7061,58.0494],[-152.6278,58.0769],[-152.6028,58.1594],[-152.56,58.1883],[-152.5694,58.1044],[-152.4367,58.1394],[-152.3967,58.1181],[-152.2714,58.1252],[-152.3572,58.2011],[-152.3199,58.2478],[-152.2683,58.2573],[-152.2203,58.1916],[-152.1394,58.1567],[-152.083,58.1536],[-152.0274,58.2089],[-152,58.2061],[-151.9646,58.2594],[-151.9706,58.3222],[-151.9957,58.3452],[-152.0357,58.2879],[-152.0839,58.3081],[-152.1256,58.2298],[-152.1394,58.2947],[-152.0939,58.3719],[-152.1739,58.3725],[-152.2017,58.3422],[-152.2722,58.3794],[-152.2628,58.4047],[-152.3678,58.3808],[-152.3811,58.3131],[-152.4394,58.3747],[-152.4806,58.3328],[-152.5035,58.4124],[-152.4872,58.4626],[-152.5362,58.458],[-152.6486,58.4759]]],[[[-167.9935,53.5642],[-168.0867,53.5592],[-168.2345,53.5292],[-168.3454,53.4703],[-168.4078,53.4219],[-168.3844,53.3806],[-168.4294,53.3236],[-168.3745,53.3181],[-168.3445,53.2614],[-168.4378,53.2547],[-168.4828,53.2753],[-168.5094,53.2514],[-168.5872,53.2717],[-168.6944,53.2272],[-168.8039,53.1408],[-168.8056,53.1058],[-168.7617,53.0803],[-168.8072,53.0258],[-168.8589,53.0183],[-168.8583,52.9508],[-168.9595,52.9319],[-168.9567,52.8664],[-168.8167,52.9244],[-168.7861,52.9486],[-168.6272,52.9914],[-168.5922,53.0256],[-168.4978,53.0325],[-168.3944,53.1247],[-168.3617,53.1325],[-168.3339,53.2042],[-168.27,53.2422],[-168.1211,53.2761],[-168.0022,53.3172],[-167.8413,53.3861],[-167.8522,53.4495],[-167.7893,53.4883],[-167.7912,53.5211],[-167.937,53.5263],[-167.9935,53.5642]]],[[[-156.5934,21.03],[-156.6333,21.0267],[-156.6925,20.9472],[-156.6871,20.882],[-156.6283,20.8136],[-156.5366,20.7743],[-156.4631,20.7812],[-156.4478,20.7213],[-156.4414,20.605],[-156.3736,20.5739],[-156.2972,20.5822],[-156.1927,20.6283],[-156.1403,20.6178],[-156.0472,20.6508],[-155.9872,20.7083],[-156.0019,20.7947],[-156.1081,20.825],[-156.2265,20.9148],[-156.2825,20.9458],[-156.3294,20.9456],[-156.4739,20.8908],[-156.5265,20.9805],[-156.5934,21.03]]],[[[-174.14,52.4133],[-174.2672,52.4022],[-174.3172,52.3808],[-174.3589,52.3133],[-174.4428,52.3272],[-174.4075,52.2886],[-174.2406,52.2756],[-174.2389,52.2419],[-174.36,52.2128],[-174.4633,52.2183],[-174.405,52.1819],[-174.4761,52.1858],[-174.5945,52.1444],[-174.5806,52.105],[-174.6361,52.1128],[-174.7839,52.0794],[-174.9067,52.1178],[-174.9933,52.0597],[-175.1289,52.0281],[-175.1422,52.0596],[-175.2161,52.0328],[-175.2589,52.0458],[-175.3011,52.0183],[-175.2127,52.0054],[-175.0159,52.007],[-174.9672,52.0375],[-174.8932,52.0471],[-174.7078,52.0089],[-174.6789,52.0556],[-174.6483,52.0231],[-174.6067,52.0467],[-174.5567,52.035],[-174.5072,52.0706],[-174.4183,52.0375],[-174.3728,52.1028],[-174.3306,52.1203],[-174.2311,52.0919],[-174.2089,52.115],[-174.0783,52.1292],[-174.1978,52.1969],[-174.1783,52.2344],[-174.0607,52.2244],[-173.9928,52.2906],[-174.025,52.3614],[-174.14,52.4133]]],[[[-132.42,56.3478],[-132.5348,56.3362],[-132.5965,56.2449],[-132.71,56.2227],[-132.7064,56.1088],[-132.6361,56.0317],[-132.5915,56.0829],[-132.4545,56.0625],[-132.4307,56.0286],[-132.4312,55.9535],[-132.352,55.9124],[-132.235,55.925],[-132.2,55.9875],[-132.2156,56.0442],[-132.168,56.0457],[-132.1082,56.1127],[-132.1877,56.1683],[-132.2739,56.1945],[-132.3131,56.1898],[-132.3818,56.2249],[-132.3781,56.3085],[-132.42,56.3478]]],[[[-157.9758,21.71],[-158.0633,21.655],[-158.1169,21.5847],[-158.283,21.5756],[-158.2303,21.5349],[-158.2317,21.4825],[-158.1417,21.3764],[-158.1031,21.295],[-157.9005,21.3259],[-157.8188,21.2576],[-157.6487,21.3044],[-157.7035,21.3464],[-157.7446,21.4211],[-157.7814,21.4114],[-157.8397,21.4562],[-157.8338,21.5265],[-157.9209,21.6268],[-157.9335,21.6743],[-157.9758,21.71]]],[[[-147.0891,60.3641],[-147.1042,60.3792],[-147.212,60.3453],[-147.1651,60.3068],[-147.212,60.2911],[-147.1859,60.2505],[-147.2474,60.2328],[-147.3578,60.162],[-147.3984,60.113],[-147.6167,60.0104],[-147.7068,59.9923],[-147.6725,59.9647],[-147.7443,59.9559],[-147.8273,59.9036],[-147.7531,59.8786],[-147.8613,59.8721],[-147.9179,59.8335],[-147.8831,59.7651],[-147.7689,59.8042],[-147.6934,59.8011],[-147.6391,59.8491],[-147.525,59.8411],[-147.469,59.8599],[-147.4563,59.9044],[-147.5142,59.9373],[-147.4464,59.9659],[-147.3852,59.9549],[-147.3958,60.0004],[-147.3604,60.0417],[-147.2078,60.1453],[-147.0318,60.2172],[-146.9172,60.288],[-146.9521,60.3063],[-147.0604,60.2667],[-147.0891,60.2891],[-147.0104,60.3438],[-147.1432,60.3401],[-147.0891,60.3641]]],[[[-159.4013,22.2307],[-159.4768,22.2305],[-159.4983,22.2068],[-159.5865,22.2205],[-159.6598,22.1719],[-159.7223,22.1531],[-159.746,22.0968],[-159.7858,22.0619],[-159.7564,21.9786],[-159.6664,21.9524],[-159.6284,21.9084],[-159.4436,21.868],[-159.3307,21.9592],[-159.3348,22.0492],[-159.2978,22.103],[-159.2942,22.1476],[-159.3501,22.2151],[-159.4013,22.2307]]],[[[172.7906,53.0047],[172.6533,53.0036],[172.5528,52.9719],[172.4672,52.9308],[172.5128,52.9056],[172.6372,52.9247],[172.6245,52.8653],[172.7456,52.8758],[172.7515,52.8073],[172.8928,52.7864],[172.9061,52.7458],[173.0567,52.8325],[173.1161,52.7844],[173.23,52.8575],[173.3044,52.8258],[173.4072,52.8472],[173.2874,52.8591],[173.3039,52.9242],[173.2117,52.9375],[173.1245,52.9903],[172.9983,52.9922],[172.9423,52.972],[172.9059,52.994],[172.7906,53.0047]]],[[[-70.1908,42.0811],[-70.2331,42.0597],[-70.1958,42.0214],[-70.1683,42.06],[-70.1127,42.0461],[-70.0789,41.9928],[-70.0719,41.8981],[-70.0239,41.9303],[-70.0067,41.8056],[-70.0528,41.7761],[-70.2175,41.7433],[-70.2603,41.7123],[-70.2892,41.7347],[-70.4139,41.7444],[-70.4961,41.7753],[-70.5478,41.7756],[-70.5631,41.7689],[-70.5761,41.7536],[-70.5908,41.7458],[-70.6183,41.74],[-70.615,41.6575],[-70.6502,41.6456],[-70.6346,41.5382],[-70.5489,41.5506],[-70.5267,41.5792],[-70.4839,41.5546],[-70.4322,41.6206],[-70.3992,41.6064],[-70.3392,41.6372],[-70.1386,41.6504],[-70.0122,41.6731],[-69.9633,41.6531],[-69.9454,41.7036],[-69.9778,41.7216],[-69.9653,41.7742],[-69.9289,41.7547],[-69.9783,41.9364],[-70.0664,42.0453],[-70.1908,42.0811]]],[[[-133.1028,55.2364],[-133.1241,55.2586],[-133.2217,55.2414],[-133.1913,55.1953],[-133.2395,55.1836],[-133.2122,55.1067],[-133.2395,55.0867],[-133.2111,55.0428],[-133.1466,54.9975],[-133.1613,54.9465],[-133.0744,54.9125],[-133.0028,54.8283],[-132.9235,54.8489],[-132.9724,54.7995],[-132.8867,54.7651],[-132.8372,54.6903],[-132.8183,54.7117],[-132.75,54.6693],[-132.6817,54.6819],[-132.7306,54.7428],[-132.7491,54.8193],[-132.8551,54.8963],[-132.9076,54.913],[-132.9633,54.9889],[-132.9547,55.0161],[-133.0614,55.0787],[-133.0106,55.0867],[-133.0522,55.1342],[-133.1028,55.2364]]],[[[-176.5633,51.9972],[-176.5911,52.0019],[-176.6628,51.9517],[-176.7229,51.9681],[-176.7911,51.9569],[-176.7961,51.9033],[-176.7306,51.8747],[-176.7894,51.8411],[-176.7739,51.8083],[-176.705,51.7881],[-176.8078,51.7792],[-176.8661,51.8267],[-176.9044,51.7708],[-176.8311,51.7458],[-176.8994,51.6967],[-176.9811,51.6653],[-176.9889,51.6064],[-176.9344,51.5914],[-176.8672,51.6828],[-176.8389,51.6814],[-176.8061,51.6086],[-176.7733,51.6331],[-176.7233,51.6247],[-176.715,51.6806],[-176.5806,51.6875],[-176.5083,51.7617],[-176.4695,51.7264],[-176.4267,51.7489],[-176.4272,51.8367],[-176.4978,51.8519],[-176.519,51.8354],[-176.6291,51.8627],[-176.5811,51.9136],[-176.5633,51.9972]]],[[[-132.9317,56.8217],[-132.9794,56.8058],[-132.9396,56.7403],[-132.9344,56.6725],[-132.9011,56.6333],[-132.9455,56.6318],[-132.9751,56.6023],[-132.9583,56.5636],[-132.9521,56.5097],[-132.8149,56.4938],[-132.7243,56.5111],[-132.5425,56.5838],[-132.5932,56.6115],[-132.6183,56.6636],[-132.7368,56.7125],[-132.7653,56.7556],[-132.8293,56.795],[-132.9317,56.8217]]],[[[-132.3683,56.4867],[-132.38,56.4445],[-132.3427,56.4117],[-132.3417,56.3428],[-132.3653,56.2844],[-132.275,56.2069],[-132.1294,56.1653],[-132.0738,56.1158],[-132.024,56.1355],[-132.0161,56.195],[-131.9223,56.2031],[-132.0303,56.3527],[-132.0944,56.3711],[-132.1466,56.3447],[-132.237,56.3971],[-132.2447,56.4408],[-132.3683,56.4867]]],[[[-146.5354,60.475],[-146.5979,60.4833],[-146.6453,60.4599],[-146.7245,60.387],[-146.7083,60.3417],[-146.6255,60.3589],[-146.5318,60.3297],[-146.6974,60.2786],[-146.6479,60.2354],[-146.6005,60.2401],[-146.3938,60.3271],[-146.1984,60.3464],[-146.1812,60.3708],[-146.1005,60.3734],[-146.0833,60.4021],[-146.1354,60.4313],[-146.3625,60.4063],[-146.3609,60.4724],[-146.412,60.4766],[-146.4672,60.4547],[-146.5354,60.475]]],[[[-135.7621,57.3438],[-135.84,57.3406],[-135.825,57.3025],[-135.8739,57.2272],[-135.823,57.2207],[-135.8366,57.1761],[-135.7456,57.1649],[-135.76,57.1163],[-135.843,57.0907],[-135.8501,56.9933],[-135.638,57.0103],[-135.5722,57.0856],[-135.5629,57.1486],[-135.6148,57.1755],[-135.6254,57.2315],[-135.5685,57.2283],[-135.6261,57.3025],[-135.7621,57.3438]]],[[[-132.8954,56.4575],[-133.0005,56.4306],[-133.0663,56.3309],[-132.9594,56.2953],[-132.8706,56.2322],[-132.718,56.2577],[-132.6572,56.2769],[-132.6833,56.3464],[-132.6222,56.3911],[-132.6325,56.4212],[-132.718,56.4565],[-132.8128,56.4406],[-132.8954,56.4575]]],[[[-160.6958,55.4006],[-160.7299,55.4079],[-160.8022,55.3809],[-160.8417,55.3406],[-160.8611,55.2697],[-160.8555,55.2059],[-160.8083,55.1669],[-160.7547,55.1951],[-160.6833,55.1927],[-160.6144,55.1475],[-160.4969,55.1573],[-160.4932,55.2201],[-160.5699,55.2755],[-160.5786,55.3137],[-160.5281,55.343],[-160.5648,55.3906],[-160.6017,55.3417],[-160.6643,55.3017],[-160.6456,55.3821],[-160.6958,55.4006]]],[[[-178.0828,51.9147],[-178.1992,51.908],[-178.2244,51.8617],[-178.095,51.8158],[-178.0372,51.7789],[-177.9611,51.7742],[-177.9517,51.7306],[-178.0496,51.7023],[-178.0998,51.7084],[-178.1144,51.6719],[-178.0461,51.6714],[-178.0007,51.639],[-177.9278,51.6456],[-177.8672,51.6764],[-177.8178,51.7894],[-177.7189,51.815],[-177.6515,51.8166],[-177.6589,51.8489],[-177.735,51.8264],[-177.791,51.8453],[-177.8489,51.8247],[-177.9256,51.8578],[-177.9544,51.9025],[-178.0828,51.9147]]],[[[-156.9119,21.1655],[-156.9706,21.2158],[-157,21.1789],[-157.0652,21.1952],[-157.2606,21.2175],[-157.2508,21.1775],[-157.3114,21.1014],[-157.2525,21.0877],[-157.0937,21.1026],[-156.8743,21.0465],[-156.7486,21.1028],[-156.7109,21.1479],[-156.7393,21.173],[-156.9119,21.1655]]],[[[-173.5161,52.1514],[-173.6122,52.1517],[-173.7706,52.1342],[-173.8089,52.0925],[-173.8889,52.1419],[-173.9983,52.1236],[-173.9422,52.0692],[-173.8289,52.0408],[-173.6806,52.0661],[-173.5761,52.0506],[-173.545,52.0272],[-173.4506,52.0469],[-173.1528,52.0592],[-173.0956,52.0794],[-173.1228,52.11],[-173.2361,52.0936],[-173.2983,52.1067],[-173.3533,52.0897],[-173.4406,52.1175],[-173.5442,52.1146],[-173.5161,52.1514]]],[[[-122.6006,48.4089],[-122.6647,48.4017],[-122.6705,48.3603],[-122.7539,48.258],[-122.7637,48.2155],[-122.7097,48.1925],[-122.6794,48.1544],[-122.6208,48.1604],[-122.5986,48.1098],[-122.5987,48.0269],[-122.5414,47.9936],[-122.4811,47.9919],[-122.4308,47.9139],[-122.3758,47.9246],[-122.3492,47.959],[-122.3767,48.0345],[-122.4462,48.0528],[-122.5214,48.0975],[-122.5264,48.0163],[-122.5717,48.1027],[-122.5672,48.1478],[-122.6273,48.222],[-122.6579,48.2826],[-122.5747,48.2946],[-122.529,48.2828],[-122.5064,48.3103],[-122.5606,48.3464],[-122.6006,48.4089]]],[[[-153.2139,57.2036],[-153.2727,57.1892],[-153.3851,57.114],[-153.3926,57.061],[-153.3478,57.0078],[-153.3053,56.9911],[-153.2413,57.0031],[-153.1957,57.0401],[-153.2192,57.0682],[-153.1764,57.0967],[-153.1215,57.0911],[-153.0553,57.1106],[-152.9122,57.1262],[-152.8686,57.1508],[-152.9459,57.1878],[-153.0465,57.1723],[-153.0625,57.1904],[-153.1999,57.1456],[-153.1622,57.1883],[-153.2139,57.2036]]],[[[-177.1422,51.9422],[-177.1822,51.9417],[-177.2296,51.8029],[-177.4189,51.7531],[-177.445,51.76],[-177.5617,51.7208],[-177.64,51.7411],[-177.6928,51.7164],[-177.6737,51.6608],[-177.6167,51.7042],[-177.5883,51.6944],[-177.4678,51.705],[-177.3928,51.7339],[-177.2889,51.6811],[-177.2283,51.7058],[-177.1567,51.7042],[-177.1233,51.7261],[-177.1328,51.83],[-177.065,51.8611],[-177.0467,51.8969],[-177.1422,51.9422]]],[[[-131.5515,55.2813],[-131.5915,55.2732],[-131.605,55.2142],[-131.5319,55.1495],[-131.585,55.1307],[-131.5982,55.0755],[-131.6485,55.0353],[-131.6028,54.9964],[-131.5121,55.057],[-131.4923,55.0121],[-131.3892,55.0119],[-131.3563,55.0403],[-131.3757,55.0909],[-131.3515,55.1233],[-131.3978,55.1969],[-131.4663,55.2248],[-131.5515,55.2813]]],[[[-172.9187,60.6042],[-172.9516,60.6057],[-173.0354,60.5625],[-173.0562,60.4938],[-172.9438,60.4813],[-172.8974,60.4484],[-172.7526,60.3849],[-172.737,60.3651],[-172.5688,60.3187],[-172.4687,60.3417],[-172.3437,60.3354],[-172.2917,60.2958],[-172.2214,60.3109],[-172.3161,60.3422],[-172.3838,60.3828],[-172.6141,60.3776],[-172.6167,60.4],[-172.7682,60.4464],[-172.8766,60.4984],[-172.9328,60.5589],[-172.9187,60.6042]]],[[[-159.8672,55.2853],[-159.9216,55.2488],[-159.9472,55.1693],[-160.0259,55.2033],[-160.065,55.2014],[-159.9761,55.1194],[-160.0072,55.1023],[-160.1055,55.1603],[-160.1928,55.1028],[-160.176,55.0508],[-160.0957,55.0519],[-160.1897,54.9649],[-160.2574,54.9167],[-160.2264,54.8637],[-160.18,54.9033],[-160.1856,54.9342],[-160.1247,54.9458],[-160.1083,54.9869],[-160.013,55.0281],[-159.9356,55.1289],[-159.8696,55.0944],[-159.8111,55.1728],[-159.9031,55.1744],[-159.9006,55.2287],[-159.8417,55.2445],[-159.8672,55.2853]]],[[[-165.9261,54.2119],[-165.9822,54.2206],[-166.0861,54.1739],[-166.1171,54.1226],[-166.0522,54.0758],[-166.0422,54.0428],[-165.98,54.0703],[-165.8973,54.0572],[-165.847,54.0809],[-165.7669,54.0645],[-165.689,54.0891],[-165.6723,54.1309],[-165.7383,54.1125],[-165.7346,54.1459],[-165.8133,54.1759],[-165.88,54.1825],[-165.9261,54.2119]]],[[[-160.6883,58.8136],[-160.8475,58.7495],[-160.9939,58.7243],[-161.0536,58.6897],[-161.0797,58.6383],[-161.0733,58.5456],[-160.963,58.5511],[-160.8839,58.5803],[-160.855,58.6258],[-160.6883,58.8136]]],[[[-147.6854,60.4896],[-147.7203,60.4995],[-147.7088,60.4276],[-147.8167,60.4417],[-147.8479,60.3833],[-147.8068,60.3359],[-147.8047,60.2995],[-147.9016,60.2849],[-147.8917,60.2229],[-147.7964,60.2391],[-147.8208,60.1792],[-147.7547,60.1609],[-147.7172,60.2026],[-147.7172,60.2651],[-147.6672,60.3089],[-147.6193,60.3786],[-147.7292,60.3896],[-147.6089,60.4255],[-147.6729,60.4604],[-147.6854,60.4896]]],[[[177.6059,52.1349],[177.5451,52.1035],[177.4783,51.9828],[177.3753,51.9765],[177.2433,51.9056],[177.1989,51.895],[177.3097,51.8257],[177.3478,51.9045],[177.4067,51.93],[177.4732,51.9084],[177.5044,51.9347],[177.5483,51.9122],[177.6017,51.9469],[177.5359,51.9595],[177.6742,52.0892],[177.6059,52.1349]]],[[[-131.8295,55.4201],[-131.8694,55.3197],[-131.8292,55.1899],[-131.7465,55.129],[-131.7194,55.2024],[-131.6856,55.2257],[-131.67,55.3014],[-131.6289,55.3055],[-131.8295,55.4201]]],[[[178.6816,51.6499],[178.631,51.6239],[178.7839,51.5692],[178.8428,51.5773],[178.9321,51.5462],[179.0344,51.4814],[179.0572,51.4528],[179.228,51.3815],[179.2588,51.3568],[179.3705,51.3749],[179.4028,51.4061],[179.28,51.3897],[179.1567,51.4656],[179.0233,51.5316],[178.9667,51.5886],[178.8079,51.6327],[178.6816,51.6499]]],[[[-164.8042,62.7896],[-164.8724,62.7818],[-164.8703,62.7276],[-164.8401,62.7036],[-164.7958,62.6104],[-164.5328,62.7286],[-164.5146,62.7708],[-164.6792,62.7562],[-164.7109,62.7849],[-164.8042,62.7896]]],[[[-136.4776,58.1016],[-136.5572,58.0792],[-136.5578,57.9756],[-136.5734,57.9188],[-136.4907,57.9017],[-136.4533,57.8419],[-136.3772,57.9295],[-136.3878,57.9675],[-136.3566,58.0268],[-136.4776,58.1016]]],[[[-68.3036,44.4389],[-68.3694,44.4208],[-68.4317,44.3097],[-68.4072,44.2581],[-68.3397,44.2222],[-68.2905,44.2495],[-68.2944,44.2867],[-68.2306,44.2875],[-68.1731,44.3281],[-68.1856,44.3706],[-68.3036,44.4389]]],[[[-97.2887,26.5974],[-97.3613,26.8482],[-97.3793,26.9982],[-97.365,27.205],[-97.3358,27.3225],[-97.2814,27.4628],[-97.1575,27.6934],[-97.0475,27.8336],[-97.1003,27.8175],[-97.2314,27.6317],[-97.2672,27.5406],[-97.3606,27.3664],[-97.3556,27.3111],[-97.3831,27.2614],[-97.395,27.1219],[-97.3862,27.0853],[-97.3924,26.8874],[-97.3529,26.7321],[-97.2949,26.5715],[-97.2887,26.5974]]],[[[-152.3349,58.6275],[-152.5311,58.5844],[-152.5639,58.6217],[-152.6472,58.5572],[-152.5906,58.5508],[-152.6389,58.4997],[-152.5628,58.4767],[-152.4784,58.4689],[-152.415,58.4894],[-152.3632,58.5391],[-152.3349,58.6275]]],[[[-153.2584,58.1426],[-153.2972,58.1457],[-153.3359,58.1018],[-153.4178,58.0578],[-153.3663,58.038],[-153.2972,58.0503],[-153.1261,58.0164],[-153.0483,57.9867],[-152.9438,57.9766],[-152.9435,58.0082],[-153.0269,58.0343],[-153.0908,58.089],[-153.1628,58.0884],[-153.2584,58.1426]]],[[[-134.5141,58.3376],[-134.5842,58.3434],[-134.6521,58.3189],[-134.6789,58.2978],[-134.6294,58.2483],[-134.5072,58.2167],[-134.46,58.2294],[-134.3378,58.1972],[-134.2692,58.2082],[-134.3482,58.2554],[-134.5141,58.3376]]],[[[-156.9754,20.9248],[-157.0579,20.909],[-157.0525,20.8728],[-156.9981,20.8408],[-156.9636,20.7308],[-156.8761,20.7425],[-156.8056,20.8066],[-156.8216,20.848],[-156.9079,20.9175],[-156.9754,20.9248]]],[[[173.7561,52.4958],[173.7406,52.5122],[173.6239,52.5056],[173.5304,52.4476],[173.44,52.4528],[173.3583,52.4019],[173.4689,52.3806],[173.5611,52.4011],[173.6167,52.3969],[173.642,52.356],[173.7256,52.3569],[173.6922,52.4619],[173.7561,52.4958]]],[[[179.6461,52.0258],[179.5804,52.0163],[179.5246,51.9825],[179.4846,51.9839],[179.4799,51.9219],[179.6124,51.8708],[179.7388,51.9112],[179.762,51.9747],[179.6461,52.0258]]],[[[-172.4061,52.3837],[-172.4378,52.3928],[-172.57,52.3486],[-172.6339,52.2642],[-172.5383,52.2458],[-172.3117,52.3197],[-172.3056,52.3547],[-172.4061,52.3837]]],[[[-132.8327,55.1989],[-132.8973,55.1547],[-132.878,55.1004],[-132.8244,55.075],[-132.8932,55.0361],[-132.8098,55.0081],[-132.695,55.0197],[-132.688,55.1245],[-132.7333,55.1342],[-132.8327,55.1989]]],[[[-145.7917,60.5792],[-145.9,60.5875],[-146.0229,60.5479],[-146.0833,60.5417],[-146.1187,60.5125],[-146.1708,60.5271],[-146.2833,60.5167],[-146.3208,60.4542],[-146.1854,60.4562],[-146.0896,60.475],[-146.025,60.5042],[-145.8214,60.5526],[-145.7917,60.5792]]],[[[-80.6156,32.5014],[-80.6783,32.5014],[-80.6571,32.4388],[-80.6442,32.2603],[-80.6037,32.2705],[-80.5422,32.3328],[-80.55,32.3589],[-80.4557,32.4058],[-80.4789,32.4453],[-80.5454,32.4557],[-80.6035,32.4443],[-80.6156,32.5014]]],[[[-91.895,29.6311],[-91.9825,29.6147],[-92.0263,29.5674],[-91.847,29.4799],[-91.7672,29.4894],[-91.7583,29.5578],[-91.7844,29.5944],[-91.895,29.6311]]],[[[-70.5969,41.4766],[-70.6591,41.4605],[-70.7744,41.3497],[-70.8377,41.3455],[-70.7699,41.3024],[-70.7344,41.3372],[-70.6413,41.3494],[-70.4508,41.3487],[-70.4641,41.4019],[-70.4971,41.3841],[-70.568,41.4186],[-70.5969,41.4766]]],[[[-133.5589,55.8345],[-133.6633,55.8186],[-133.6863,55.7749],[-133.645,55.7292],[-133.532,55.6927],[-133.4872,55.7324],[-133.5211,55.7689],[-133.4161,55.74],[-133.3317,55.7672],[-133.4283,55.7883],[-133.5589,55.8345]]],[[[-153.4641,57.9694],[-153.5165,57.9593],[-153.535,57.9282],[-153.4588,57.8807],[-153.33,57.8256],[-153.2082,57.7972],[-153.2221,57.8496],[-153.2826,57.9043],[-153.4641,57.9694]]],[[[-80.097,32.7806],[-80.1257,32.7777],[-80.1301,32.76],[-80.1368,32.7484],[-80.1418,32.7462],[-80.1705,32.7355],[-80.1628,32.7214],[-80.1706,32.7111],[-80.1647,32.7075],[-80.1616,32.7084],[-80.1589,32.7047],[-80.1392,32.7131],[-80.1272,32.7053],[-80.1014,32.7186],[-80.0819,32.7125],[-80.0744,32.7],[-80.0864,32.6872],[-80.1317,32.6664],[-80.1558,32.6108],[-80.1567,32.6064],[-80.1611,32.6039],[-80.1722,32.6019],[-80.1783,32.5937],[-80.2047,32.5839],[-80.1776,32.5593],[-80.1113,32.5941],[-80.0163,32.6113],[-79.9903,32.6939],[-80.0073,32.7658],[-80.097,32.7806]]],[[[-154.085,56.6144],[-154.2211,56.6147],[-154.3144,56.5853],[-154.3644,56.5428],[-154.3433,56.5092],[-154.2311,56.4925],[-154.1533,56.5117],[-154.0778,56.5908],[-154.085,56.6144]]],[[[-162.3797,63.6224],[-162.4917,63.6188],[-162.5542,63.6333],[-162.6208,63.6188],[-162.6932,63.5755],[-162.6266,63.5443],[-162.3813,63.5396],[-162.3464,63.5911],[-162.3797,63.6224]]],[[[-154.4817,56.6011],[-154.55,56.5897],[-154.6917,56.525],[-154.7939,56.4369],[-154.7728,56.4064],[-154.7094,56.4144],[-154.6189,56.4764],[-154.4811,56.5119],[-154.5352,56.5657],[-154.4817,56.6011]]],[[[-170.6533,52.6975],[-170.7277,52.682],[-170.81,52.6406],[-170.8467,52.5589],[-170.7957,52.5424],[-170.6842,52.6022],[-170.6083,52.6012],[-170.558,52.6668],[-170.6533,52.6975]]],[[[-119.9103,34.0761],[-119.8764,34.0322],[-119.8741,33.98],[-119.8187,33.9595],[-119.7208,33.9589],[-119.6637,33.9851],[-119.5603,33.9956],[-119.52,34.0342],[-119.5862,34.0539],[-119.6331,34.0128],[-119.6847,34.02],[-119.7572,34.0592],[-119.8098,34.0511],[-119.9103,34.0761]]],[[[-133.3308,55.3453],[-133.4616,55.3208],[-133.4714,55.2692],[-133.4544,55.2172],[-133.3888,55.2291],[-133.336,55.2031],[-133.2529,55.2221],[-133.23,55.2687],[-133.2983,55.3047],[-133.3308,55.3453]]],[[[-120.0489,34.037],[-120.1394,34.0273],[-120.175,34.0064],[-120.2386,34.0102],[-120.1693,33.917],[-120.1203,33.8942],[-119.971,33.9413],[-119.9814,33.9798],[-120.0466,34],[-120.0489,34.037]]],[[[-165.6238,54.298],[-165.6879,54.2421],[-165.5844,54.2236],[-165.6362,54.1977],[-165.598,54.1634],[-165.6372,54.1391],[-165.5594,54.1055],[-165.4931,54.1682],[-165.4095,54.1751],[-165.4076,54.2117],[-165.5442,54.2189],[-165.5148,54.2984],[-165.5978,54.264],[-165.6238,54.298]]],[[[-169.7521,52.8928],[-169.8683,52.8789],[-169.8667,52.8536],[-169.9845,52.8586],[-170.0133,52.8311],[-169.9595,52.7871],[-169.8717,52.825],[-169.7753,52.8099],[-169.72,52.7719],[-169.6772,52.8244],[-169.6767,52.8714],[-169.7521,52.8928]]],[[[-131.2472,54.9993],[-131.3433,54.9592],[-131.3617,54.9753],[-131.4922,54.9461],[-131.4667,54.9133],[-131.3889,54.8928],[-131.3472,54.8558],[-131.1967,54.9144],[-131.2539,54.9683],[-131.2472,54.9993]]],[[[-118.6008,33.4775],[-118.5742,33.44],[-118.4886,33.4189],[-118.4892,33.3572],[-118.4656,33.3256],[-118.3784,33.3208],[-118.3261,33.2986],[-118.3106,33.3367],[-118.3664,33.4058],[-118.5364,33.4775],[-118.6008,33.4775]]],[[[-162.2856,54.9803],[-162.3706,54.9656],[-162.4234,54.9205],[-162.4022,54.8789],[-162.3167,54.8272],[-162.2733,54.8433],[-162.2317,54.8923],[-162.2433,54.9681],[-162.2856,54.9803]]],[[[-80.7397,32.5361],[-80.7794,32.5281],[-80.7833,32.4972],[-80.8103,32.4725],[-80.765,32.3725],[-80.666,32.2996],[-80.6856,32.3672],[-80.663,32.4376],[-80.6828,32.5],[-80.7397,32.5361]]],[[[-148.0141,60.913],[-148.0745,60.9224],[-148.1474,60.8245],[-148.0292,60.7813],[-147.9151,60.813],[-147.9536,60.8464],[-147.9349,60.8755],[-148.0141,60.913]]],[[[-176.1373,52.1132],[-176.2056,52.0777],[-176.1816,52.0011],[-176.105,51.9972],[-176.0661,51.9667],[-176.0211,51.9831],[-176.0501,52.0193],[-175.9822,52.0289],[-176.0551,52.1073],[-176.1373,52.1132]]],[[[-170.1531,57.1837],[-170.1382,57.2299],[-170.2259,57.2119],[-170.3032,57.2205],[-170.4001,57.2038],[-170.4206,57.1619],[-170.2778,57.1274],[-170.1731,57.1551],[-170.1531,57.1837]]],[[[-133.5677,55.4217],[-133.5932,55.4316],[-133.6316,55.3611],[-133.6914,55.3175],[-133.6689,55.2769],[-133.6106,55.2536],[-133.5709,55.322],[-133.4592,55.3789],[-133.5017,55.4192],[-133.5677,55.4217]]],[[[-122.8813,48.7118],[-122.9394,48.7095],[-123.0302,48.6307],[-122.9578,48.6319],[-122.9482,48.5975],[-122.8625,48.6065],[-122.8842,48.6592],[-122.8145,48.6064],[-122.7513,48.665],[-122.8813,48.7118]]],[[[-162.7906,54.49],[-162.8378,54.4506],[-162.7805,54.4128],[-162.6105,54.3672],[-162.5445,54.4164],[-162.6689,54.4614],[-162.7906,54.49]]],[[[-96.4062,28.3951],[-96.4555,28.3358],[-96.5431,28.315],[-96.6342,28.2606],[-96.7035,28.1985],[-96.7919,28.1886],[-96.8231,28.1672],[-96.8107,28.1243],[-96.8488,28.0646],[-96.7028,28.1773],[-96.5895,28.2492],[-96.4439,28.3153],[-96.3997,28.3567],[-96.4062,28.3951]]],[[[-176.2883,51.8689],[-176.4006,51.8683],[-176.4267,51.8536],[-176.3972,51.7336],[-176.32,51.7347],[-176.265,51.7806],[-176.2883,51.8689]]],[[[-64.664306641,17.714860916],[-64.580696,17.747357999],[-64.655135999,17.763472],[-64.709587098,17.747083663],[-64.747642517,17.783750534],[-64.894584655,17.747358323],[-64.883193971,17.685693741],[-64.740417,17.695972],[-64.664306641,17.714860916]]],[[[-132.7187,54.9364],[-132.8183,54.9242],[-132.8061,54.8711],[-132.7046,54.8147],[-132.6756,54.7669],[-132.6355,54.7489],[-132.6239,54.8039],[-132.6856,54.8353],[-132.6321,54.8908],[-132.7187,54.9364]]],[[[-80.3289,32.6342],[-80.3853,32.615],[-80.3852,32.5738],[-80.4112,32.5475],[-80.345,32.5045],[-80.3358,32.4775],[-80.1975,32.5683],[-80.2419,32.6036],[-80.2983,32.6022],[-80.3289,32.6342]]],[[[-123.1422,48.6222],[-123.1764,48.5619],[-123.133,48.4981],[-123.0368,48.458],[-123.0092,48.4739],[-123.0166,48.5619],[-123.1422,48.6222]]],[[[-155.5611,55.8975],[-155.6056,55.9144],[-155.6667,55.8542],[-155.755,55.8222],[-155.7278,55.7747],[-155.6506,55.7749],[-155.6133,55.7567],[-155.5639,55.7897],[-155.5867,55.8458],[-155.5611,55.8975]]],[[[-166.1095,53.8472],[-166.2167,53.8294],[-166.3011,53.7986],[-166.3006,53.7517],[-166.2078,53.7072],[-166.1144,53.7747],[-166.1389,53.8031],[-166.1095,53.8472]]],[[[-148.0474,60.1755],[-148.1766,60.1328],[-148.2812,60.0854],[-148.2146,60.0771],[-148.275,60.0396],[-148.2667,60.0125],[-148.1979,60.0167],[-148.0838,60.1047],[-148.0474,60.1755]]],[[[-74.0776,40.647],[-74.18,40.6453],[-74.1994,40.5735],[-74.2486,40.5439],[-74.2463,40.4963],[-74.1051,40.5538],[-74.0527,40.6014],[-74.0776,40.647]]],[[[-160.0855,21.9999],[-160.1269,21.9527],[-160.2294,21.8856],[-160.2472,21.8153],[-160.2027,21.7789],[-160.1611,21.8614],[-160.0672,21.8935],[-160.0855,21.9999]]],[[[-159.5118,55.2388],[-159.5584,55.2045],[-159.5895,55.1275],[-159.6383,55.1342],[-159.6572,55.0611],[-159.5706,55.0453],[-159.5294,55.0801],[-159.4961,55.1544],[-159.5355,55.1706],[-159.5118,55.2388]]],[[[-161.8094,55.175],[-161.8983,55.1639],[-161.8905,55.1256],[-161.8172,55.0986],[-161.7828,55.1617],[-161.7555,55.1322],[-161.8006,55.0817],[-161.7322,55.0539],[-161.7072,55.0809],[-161.6339,55.1053],[-161.6416,55.1275],[-161.7283,55.1397],[-161.8094,55.175]]],[[[-118.5867,33.0287],[-118.5767,32.9741],[-118.4891,32.8436],[-118.4291,32.8038],[-118.3706,32.84],[-118.485,32.9233],[-118.5636,33.0242],[-118.5867,33.0287]]],[[[-91.239,29.3512],[-91.3342,29.2995],[-91.2792,29.2494],[-91.1367,29.2172],[-91.1364,29.25],[-91.239,29.3512]]],[[[-169.6017,56.6041],[-169.7522,56.6162],[-169.7511,56.5875],[-169.6822,56.5789],[-169.6405,56.5364],[-169.5671,56.5329],[-169.4839,56.5767],[-169.5176,56.6098],[-169.6017,56.6041]]],[[[-160.3638,55.3601],[-160.4339,55.3394],[-160.4922,55.3583],[-160.5173,55.3081],[-160.4833,55.2914],[-160.3911,55.2869],[-160.3315,55.26],[-160.308,55.3041],[-160.3356,55.3594],[-160.3638,55.3601]]],[[[-164.98,54.1336],[-164.9717,54.1183],[-165.144,54.1311],[-165.21,54.0869],[-165.0822,54.0691],[-164.9557,54.0727],[-164.9217,54.1079],[-164.98,54.1336]]],[[[-153.4231,59.41],[-153.511,59.3931],[-153.5494,59.3317],[-153.5153,59.32],[-153.3627,59.3378],[-153.3472,59.3776],[-153.4231,59.41]]],[[[-133.7222,55.5525],[-133.7111,55.5186],[-133.7665,55.5016],[-133.7811,55.4702],[-133.6706,55.4381],[-133.6317,55.4908],[-133.5865,55.5052],[-133.6633,55.5578],[-133.7222,55.5525]]],[[[-70.0439,41.3883],[-70.0039,41.3231],[-70.0797,41.2819],[-70.1972,41.2967],[-70.2122,41.2725],[-70.1017,41.2406],[-69.9719,41.2469],[-69.9722,41.2992],[-70.0439,41.3883]]],[[[-133.2928,55.9143],[-133.3528,55.8756],[-133.3622,55.845],[-133.26,55.7721],[-133.2163,55.8229],[-133.2476,55.885],[-133.2928,55.9143]]],[[[-80.0936,32.7144],[-80.1275,32.704],[-80.1392,32.7108],[-80.155,32.7061],[-80.1583,32.7019],[-80.1622,32.7073],[-80.1658,32.7033],[-80.1707,32.7071],[-80.1833,32.7075],[-80.2391,32.6756],[-80.265,32.6221],[-80.2155,32.5871],[-80.1928,32.5996],[-80.1787,32.5959],[-80.1739,32.6031],[-80.1572,32.6078],[-80.1669,32.6144],[-80.1673,32.6303],[-80.135,32.6669],[-80.0864,32.6889],[-80.0761,32.7006],[-80.0936,32.7144]]],[[[-133.395,55.5625],[-133.4544,55.5367],[-133.3611,55.4533],[-133.3057,55.4819],[-133.2852,55.5354],[-133.3369,55.5682],[-133.395,55.5625]]],[[[-147.963,60.1245],[-147.9755,60.1484],[-148.1182,60.0474],[-148.1396,59.9853],[-148.0943,60.0026],[-148.0495,60.0599],[-147.9812,60.0604],[-147.8963,60.0964],[-147.963,60.1245]]],[[[-157.2422,56.5819],[-157.3294,56.5272],[-157.1516,56.5273],[-157.1155,56.5525],[-156.9956,56.5514],[-157.0883,56.5837],[-157.2422,56.5819]]],[[[-134.2634,55.9273],[-134.3675,55.905],[-134.3194,55.8781],[-134.3446,55.8402],[-134.2711,55.8286],[-134.2283,55.864],[-134.133,55.8968],[-134.1734,55.9215],[-134.2649,55.897],[-134.2634,55.9273]]],[[[-97.0517,27.844],[-97.0034,27.9089],[-96.8492,28.0703],[-96.8435,28.1087],[-96.9258,28.0878],[-96.9678,27.9869],[-97.0377,27.9043],[-97.0517,27.844]]],[[[-148.1859,60.7422],[-148.2391,60.7245],[-148.1786,60.6401],[-148.1234,60.6401],[-148.0875,60.6729],[-148.1068,60.7391],[-148.1859,60.7422]]],[[[-147.8255,60.0641],[-147.8542,60.0771],[-147.913,60.0359],[-148.0378,59.9733],[-148.0468,59.9385],[-147.9179,59.9706],[-147.8193,60.0464],[-147.8255,60.0641]]],[[[-65.390976,18.161806],[-65.57708,18.119583],[-65.542641,18.080973],[-65.423195,18.095972],[-65.363747,18.130138],[-65.27597,18.131805],[-65.390976,18.161806]]],[[[-81.1164,31.85],[-81.1757,31.8164],[-81.1715,31.7572],[-81.1325,31.7222],[-81.0717,31.7669],[-81.0347,31.8173],[-81.1164,31.85]]],[[[-80.7222,32.2678],[-80.7836,32.2227],[-80.8121,32.1101],[-80.7391,32.1466],[-80.6675,32.2144],[-80.7222,32.2678]]],[[[-150.5333,70.4938],[-150.7479,70.4938],[-150.7375,70.4625],[-150.6313,70.4354],[-150.4839,70.4714],[-150.5333,70.4938]]],[[[-170.680638631,-14.282476107],[-170.567497197,-14.269325997],[-170.672442928,-14.241035743],[-170.732063743,-14.282688197],[-170.82071228,-14.300050544],[-170.759218852,-14.373241822],[-170.702067693,-14.326775719],[-170.680638631,-14.282476107]]],[[[-122.4558,47.4997],[-122.5132,47.4529],[-122.5268,47.3421],[-122.4844,47.3803],[-122.4442,47.3611],[-122.3737,47.3883],[-122.4266,47.402],[-122.4558,47.4997]]],[[[-144.2162,60],[-144.2697,60.0001],[-144.3707,59.9627],[-144.5696,59.8518],[-144.5859,59.8113],[-144.4332,59.8981],[-144.2162,60]]],[[[-81.3337,31.2911],[-81.3739,31.2993],[-81.4186,31.1572],[-81.3688,31.1452],[-81.3104,31.2141],[-81.3337,31.2911]]],[[[-153.87,56.5579],[-154.0317,56.5553],[-154.1328,56.5108],[-154.0494,56.4958],[-153.9513,56.5049],[-153.87,56.5579]]],[[[-133.4595,55.5021],[-133.527,55.5294],[-133.545,55.4864],[-133.6192,55.4482],[-133.5484,55.4291],[-133.4283,55.4503],[-133.4595,55.5021]]],[[[-81.1883,31.5311],[-81.2392,31.5272],[-81.2597,31.4978],[-81.2944,31.4878],[-81.3078,31.4233],[-81.2794,31.3783],[-81.1778,31.5147],[-81.1883,31.5311]]],[[[-82.1571,26.7062],[-82.0943,26.489],[-82.0563,26.4976],[-82.0801,26.5462],[-82.0651,26.6107],[-82.1243,26.699],[-82.1571,26.7062]]],[[[-147.9901,60.3682],[-148.0583,60.3688],[-148.137,60.3266],[-148.1083,60.2792],[-148.0213,60.2859],[-147.9901,60.3682]]],[[[-76.3047,39.0306],[-76.3553,38.9561],[-76.3767,38.8492],[-76.3306,38.8636],[-76.3148,38.9342],[-76.2517,38.9431],[-76.3047,39.0306]]],[[[-176.1706,51.8808],[-176.235,51.8219],[-176.17,51.7978],[-176.0894,51.7986],[-176.03,51.8444],[-176.1317,51.8506],[-176.1706,51.8808]]],[[[-150.6867,59.415],[-150.708,59.3587],[-150.7759,59.3082],[-150.6815,59.3044],[-150.6104,59.3659],[-150.6362,59.4065],[-150.6867,59.415]]],[[[-160.2332,55.4581],[-160.3227,55.4458],[-160.3261,55.3953],[-160.2333,55.4123],[-160.1433,55.3861],[-160.1358,55.4495],[-160.2038,55.4389],[-160.2332,55.4581]]],[[[-71.2482,41.48],[-71.229,41.5317],[-71.2397,41.617],[-71.2747,41.6207],[-71.3235,41.515],[-71.2482,41.48]]],[[[-144.9005,60.5318],[-144.975,60.5125],[-144.9818,60.4818],[-145.0536,60.4432],[-145.0276,60.4203],[-144.9667,60.4208],[-144.913,60.4484],[-144.9255,60.5016],[-144.9005,60.5318]]],[[[-156.5622,20.5994],[-156.6092,20.5906],[-156.6986,20.5336],[-156.6786,20.5028],[-156.5518,20.5339],[-156.5622,20.5994]]],[[[-178.8,51.8342],[-178.86,51.8197],[-178.8733,51.7817],[-178.8139,51.746],[-178.7706,51.7469],[-178.7332,51.7807],[-178.8,51.8342]]],[[[-97.2538,26.4285],[-97.319,26.5376],[-97.3362,26.5076],[-97.279,26.4343],[-97.1971,26.2499],[-97.1901,26.2729],[-97.2224,26.4037],[-97.2538,26.4285]]],[[[-132.4789,56.4377],[-132.5376,56.4209],[-132.5583,56.3556],[-132.5014,56.3524],[-132.4052,56.4078],[-132.4789,56.4377]]],[[[178.5017,51.9881],[178.4573,51.984],[178.4526,51.9393],[178.515,51.8981],[178.5906,51.9525],[178.5017,51.9881]]],[[[-122.5306,47.7045],[-122.5654,47.7102],[-122.5778,47.5994],[-122.4982,47.597],[-122.4898,47.6329],[-122.5306,47.7045]]],[[[-131.4222,55.9907],[-131.4605,55.9903],[-131.5967,55.9331],[-131.5522,55.9145],[-131.5044,55.9211],[-131.4083,55.9589],[-131.4222,55.9907]]],[[[-81.0067,32.0686],[-81.0292,32.0622],[-81.0283,32.0497],[-81.0396,32.0447],[-81.0481,32.0278],[-81.0283,32.025],[-81.0031,32.0094],[-80.9856,31.9517],[-80.9292,31.9725],[-80.9325,31.9911],[-80.9245,32.0091],[-80.94,32.0154],[-80.9849,32.0611],[-81.0067,32.0686]]],[[[-75.8672,37.2867],[-75.8969,37.2789],[-75.9106,37.1758],[-75.8944,37.1189],[-75.8017,37.2006],[-75.8847,37.2044],[-75.8672,37.2867]]],[[[-170.1173,52.7896],[-170.1688,52.7863],[-170.168,52.7172],[-170.085,52.7181],[-170.0525,52.7726],[-170.1173,52.7896]]],[[[-89.7033,29.3822],[-89.8139,29.3136],[-89.6836,29.2938],[-89.6394,29.3483],[-89.7064,29.3411],[-89.7033,29.3822]]],[[[-151.8206,58.2652],[-151.8672,58.2539],[-151.894,58.2155],[-151.8673,58.1655],[-151.8086,58.1864],[-151.7953,58.2568],[-151.8206,58.2652]]],[[[-135.6199,58.3791],[-135.733,58.368],[-135.6803,58.3309],[-135.5765,58.3254],[-135.5377,58.3446],[-135.6199,58.3791]]],[[[-122.8839,48.5652],[-122.9222,48.5394],[-122.9457,48.4656],[-122.8599,48.4304],[-122.8839,48.5652]]],[[[-159.4428,55.0617],[-159.405,54.9767],[-159.4256,54.9417],[-159.3289,54.9769],[-159.3783,55.0247],[-159.38,55.0642],[-159.4428,55.0617]]],[[[-122.8497,47.2967],[-122.9194,47.2761],[-122.9253,47.2328],[-122.8747,47.1642],[-122.8406,47.2078],[-122.8711,47.2469],[-122.8497,47.2967]]],[[[-133.8665,55.9363],[-133.9442,55.9171],[-133.9189,55.8567],[-133.8716,55.8448],[-133.8392,55.8897],[-133.8665,55.9363]]],[[[-132.9811,56.5914],[-133.074,56.5798],[-133.0441,56.5204],[-132.9845,56.5114],[-132.9635,56.5559],[-132.9811,56.5914]]],[[[-171.2413,52.5269],[-171.3113,52.5011],[-171.3038,52.4495],[-171.2417,52.4528],[-171.1937,52.4936],[-171.2413,52.5269]]],[[[-161.535,55.2567],[-161.6617,55.2456],[-161.6967,55.2056],[-161.5628,55.2033],[-161.535,55.2567]]],[[[-68.6561,44.265],[-68.7086,44.2272],[-68.7119,44.1681],[-68.6464,44.1558],[-68.6589,44.2111],[-68.6078,44.2408],[-68.6561,44.265]]],[[[-80.6468,24.9126],[-80.566,24.9557],[-80.474,25.0607],[-80.3715,25.1365],[-80.3679,25.1699],[-80.2851,25.2874],[-80.3302,25.2579],[-80.3501,25.2107],[-80.5126,25.0179],[-80.5674,24.9646],[-80.6007,24.9621],[-80.6468,24.9126]]],[[[-152.4136,57.9671],[-152.5156,57.9217],[-152.369,57.8838],[-152.3222,57.9155],[-152.4237,57.9284],[-152.4136,57.9671]]],[[[-159.2717,54.9453],[-159.3261,54.8923],[-159.2761,54.8628],[-159.2233,54.8839],[-159.2083,54.9281],[-159.2717,54.9453]]],[[[-164.9057,66.4964],[-164.9104,66.5083],[-165.1542,66.4688],[-165.3328,66.4287],[-165.1875,66.4417],[-165.1354,66.4625],[-165.0354,66.4708],[-164.9057,66.4964]]],[[[-64.888191,18.35486],[-64.963752999,18.372084001],[-65.027359,18.362919],[-64.972916,18.329027],[-64.926247,18.339306],[-64.905975,18.310141],[-64.840698,18.317638],[-64.888191,18.35486]]],[[[-75.2483,38.0217],[-75.1864,38.1117],[-75.1292,38.2542],[-75.1892,38.1533],[-75.1917,38.1172],[-75.3033,37.9628],[-75.3392,37.9228],[-75.3778,37.8936],[-75.3489,37.8806],[-75.2483,38.0217]]],[[[-169.0375,65.8146],[-169.0813,65.8167],[-169.1182,65.7589],[-169.0443,65.7526],[-168.9964,65.8026],[-169.0375,65.8146]]],[[[-169.6761,53.0311],[-169.739,53.0286],[-169.7636,52.9825],[-169.7461,52.9517],[-169.6922,52.9636],[-169.6761,53.0311]]],[[[-151.9042,60.5062],[-151.9687,60.4896],[-151.9563,60.4188],[-151.8547,60.4932],[-151.9042,60.5062]]],[[[-135.4677,57.2503],[-135.5155,57.2291],[-135.4556,57.1853],[-135.4211,57.1947],[-135.3916,57.2453],[-135.4677,57.2503]]],[[[-119.5192,33.2795],[-119.5756,33.2792],[-119.5467,33.2346],[-119.4704,33.2144],[-119.4346,33.2311],[-119.5192,33.2795]]],[[[-82.196,26.5507],[-82.1729,26.4688],[-82.0715,26.4215],[-82.014,26.4524],[-82.1599,26.4821],[-82.196,26.5507]]],[[[-147.9375,60.7167],[-147.9568,60.7474],[-147.9964,60.6901],[-147.8505,60.6797],[-147.8984,60.7307],[-147.9375,60.7167]]],[[[-75.7017,35.9378],[-75.7233,35.9256],[-75.6617,35.8686],[-75.6619,35.8242],[-75.6158,35.8389],[-75.6461,35.91],[-75.7017,35.9378]]],[[[-136.19,57.7161],[-136.2561,57.677],[-136.1811,57.64],[-136.1394,57.6978],[-136.19,57.7161]]],[[[-67.859863,18.121248001],[-67.912086,18.120419],[-67.945968999,18.084028001],[-67.897362001,18.052360999],[-67.845139,18.081246999],[-67.859863,18.121248001]]],[[[-69.7517,43.8694],[-69.7831,43.7961],[-69.7575,43.7511],[-69.7074,43.828],[-69.7517,43.8694]]],[[[-152.7254,57.9752],[-152.8485,57.9708],[-152.8512,57.9412],[-152.7601,57.9251],[-152.7254,57.9752]]],[[[-148.2456,59.9383],[-148.1643,59.9356],[-148.1023,59.953],[-148.0234,60.0026],[-148.0021,60.0375],[-148.1252,59.9657],[-148.2456,59.9383]]],[[[-175.9872,51.9092],[-176.1144,51.8842],[-175.9633,51.8461],[-175.9872,51.9092]]],[[[-158.7981,55.891],[-158.8733,55.8783],[-158.8489,55.8543],[-158.7292,55.841],[-158.7495,55.8764],[-158.7981,55.891]]],[[[-170.0406,52.9228],[-170.1255,52.8972],[-170.0517,52.8564],[-169.995,52.9033],[-170.0406,52.9228]]],[[[-68.8628,44.1167],[-68.8983,44.1239],[-68.8475,44.0386],[-68.8178,44.0317],[-68.7806,44.085],[-68.8306,44.0817],[-68.8628,44.1167]]],[[[-153.8331,57.5323],[-153.8728,57.5531],[-153.8738,57.4483],[-153.8322,57.4289],[-153.8331,57.5323]]],[[[-178.9572,51.3967],[-178.9944,51.3739],[-178.9883,51.3064],[-178.9055,51.3614],[-178.9572,51.3967]]],[[[-135.5186,57.2189],[-135.5578,57.1572],[-135.5059,57.1425],[-135.4518,57.1775],[-135.5186,57.2189]]],[[[-132.0288,56.0889],[-132.07,56.03],[-132.0256,55.9967],[-131.9822,56.0249],[-132.0288,56.0889]]],[[[-120.3623,34.0737],[-120.4395,34.0383],[-120.3604,34.0134],[-120.3069,34.0197],[-120.3623,34.0737]]],[[[-161.3376,55.2196],[-161.4281,55.2163],[-161.4145,55.1808],[-161.3394,55.1587],[-161.3376,55.2196]]],[[[-132.1918,56.0399],[-132.2028,55.9564],[-132.1804,55.9263],[-132.1333,55.9422],[-132.1918,56.0399]]],[[[-146.7354,60.8708],[-146.8141,60.8432],[-146.7896,60.8042],[-146.725,60.8104],[-146.7354,60.8708]]],[[[-75.5178,35.2753],[-75.5967,35.2583],[-75.6372,35.2281],[-75.5294,35.2239],[-75.5178,35.2753]]],[[[-81.7271,25.9726],[-81.7288,25.9079],[-81.6735,25.9007],[-81.6552,25.9426],[-81.7271,25.9726]]],[[[-157.83,56.3706],[-157.9072,56.3442],[-157.8233,56.3069],[-157.7961,56.3245],[-157.83,56.3706]]],[[[-81.5626,24.6921],[-81.5696,24.6338],[-81.6038,24.5857],[-81.5101,24.6257],[-81.5626,24.6921]]],[[[-122.6872,48.1015],[-122.7391,48.0806],[-122.7419,48.0491],[-122.6881,48.0081],[-122.6872,48.1015]]],[[[178.2296,51.8321],[178.3073,51.7763],[178.3805,51.7702],[178.3356,51.8083],[178.2296,51.8321]]],[[[178.1615,52.0412],[178.089,52.0364],[178.0981,51.9978],[178.1732,51.9912],[178.1615,52.0412]]],[[[-164.8995,62.6599],[-164.8807,62.5984],[-164.8151,62.6078],[-164.8589,62.662],[-164.8995,62.6599]]],[[[-147.3771,60.2625],[-147.3464,60.2995],[-147.4495,60.2703],[-147.4812,60.225],[-147.3771,60.2625]]],[[[-136.0354,58.2942],[-136.0369,58.3174],[-136.1577,58.2792],[-136.0932,58.2578],[-136.0354,58.2942]]],[[[-164.9875,60.8688],[-165.0203,60.8339],[-164.9583,60.8208],[-164.8901,60.838],[-164.9875,60.8688]]],[[[-152.8817,58.3378],[-152.9217,58.3136],[-152.7839,58.2872],[-152.8461,58.3378],[-152.8817,58.3378]]],[[[-152.5872,60.1749],[-152.6438,60.1646],[-152.5911,60.113],[-152.5484,60.1141],[-152.5872,60.1749]]],[[[-179.0868,51.295],[-179.147,51.2793],[-179.1405,51.2325],[-179.0944,51.2271],[-179.0868,51.295]]],[[[-80.975,32.0647],[-80.9242,32.0125],[-80.9217,32.0072],[-80.9261,31.9958],[-80.8764,31.9927],[-80.8608,32.0011],[-80.8478,31.9892],[-80.8422,32.0242],[-80.8797,32.0167],[-80.975,32.0647]]],[[[-130.5198,54.8584],[-130.5944,54.8309],[-130.6156,54.7928],[-130.5262,54.8155],[-130.5198,54.8584]]],[[[-169.420166016,-14.234145385],[-169.428611755,-14.211944261],[-169.501431552,-14.216898051],[-169.491531372,-14.271703856],[-169.420166016,-14.234145385]]],[[[-134.1994,57.8908],[-134.1894,57.8342],[-134.1334,57.7905],[-134.1138,57.8068],[-134.1994,57.8908]]],[[[-133.4361,55.9967],[-133.4948,55.9667],[-133.4494,55.9333],[-133.4349,55.9562],[-133.3905,55.9811],[-133.4361,55.9967]]],[[[-145.1792,60.3375],[-145.1771,60.3583],[-145.2849,60.3307],[-145.213,60.3026],[-145.1792,60.3375]]],[[[-159.5733,54.8244],[-159.5828,54.7736],[-159.52,54.7581],[-159.5106,54.7891],[-159.5733,54.8244]]],[[[-166.1485,53.9971],[-166.1933,53.9589],[-166.1165,53.9539],[-166.073,53.9698],[-166.1485,53.9971]]],[[[-133.0384,56.1179],[-133.081,56.088],[-133.0472,56.0647],[-132.979,56.0808],[-133.0384,56.1179]]],[[[-150.3521,70.4771],[-150.4661,70.4599],[-150.4526,70.4318],[-150.3687,70.45],[-150.3521,70.4771]]],[[[-151.963,60.4078],[-152.0807,60.3401],[-151.9547,60.3672],[-151.963,60.4078]]],[[[-152.3039,58.9597],[-152.3377,58.9042],[-152.2367,58.9144],[-152.3039,58.9597]]],[[[-159.7036,54.8364],[-159.7337,54.8423],[-159.82,54.8136],[-159.7743,54.7922],[-159.7036,54.8364]]],[[[-72.3251,41.1024],[-72.384,41.0691],[-72.3542,41.042],[-72.3106,41.0542],[-72.3251,41.1024]]],[[[-147.2068,60.8922],[-147.2875,60.8708],[-147.1255,60.8547],[-147.2068,60.8922]]],[[[-68.6111,44.0894],[-68.6517,44.065],[-68.6611,44.0172],[-68.6042,44.0386],[-68.6111,44.0894]]],[[[-123.9789,46.4931],[-124.0053,46.4633],[-123.9417,46.4108],[-123.9497,46.4675],[-123.9789,46.4931]]],[[[-159.3133,55.8117],[-159.3568,55.8061],[-159.3078,55.7455],[-159.2821,55.7606],[-159.3133,55.8117]]],[[[-133.2298,55.4361],[-133.2978,55.4456],[-133.3094,55.4011],[-133.2539,55.4061],[-133.2298,55.4361]]],[[[-75.3117,37.9808],[-75.3675,37.9419],[-75.4144,37.9364],[-75.4044,37.8978],[-75.3531,37.9158],[-75.3439,37.9503],[-75.3117,37.9808]]],[[[-80.4753,32.3425],[-80.505,32.3425],[-80.5468,32.284],[-80.4536,32.3225],[-80.4753,32.3425]]],[[[-165.3472,54.0897],[-165.2897,54.0385],[-165.2644,54.0917],[-165.3472,54.0897]]],[[[-85.1091,29.6872],[-85.1828,29.6638],[-85.0972,29.6325],[-85.1091,29.6872]]],[[[-122.7066,48.6051],[-122.7408,48.585],[-122.7197,48.5396],[-122.6776,48.5766],[-122.7066,48.6051]]],[[[-150.4787,70.438],[-150.6057,70.4224],[-150.6062,70.3896],[-150.4787,70.438]]],[[[-81.0051,25.2729],[-81.014,25.2721],[-81.0226,25.2554],[-81.0462,25.2374],[-81.0207,25.2279],[-81.0054,25.2282],[-81.0007,25.2162],[-80.9676,25.2185],[-81.0051,25.2729]]],[[[-134.9096,58.4838],[-134.8416,58.3712],[-134.8078,58.3757],[-134.9096,58.4838]]],[[[-135.2983,58.9433],[-135.3286,59.01],[-135.3537,59.0052],[-135.3294,58.9372],[-135.2983,58.9433]]],[[[-164.4693,63.0682],[-164.4542,63.0438],[-164.375,63.0271],[-164.3776,63.0536],[-164.4693,63.0682]]],[[[-68.8188,44.1808],[-68.9175,44.1481],[-68.8597,44.1261],[-68.8188,44.1808]]],[[[-70.7119,41.5128],[-70.802,41.4667],[-70.7908,41.4458],[-70.7063,41.4968],[-70.7119,41.5128]]],[[[-78.3919,33.8975],[-78.5394,33.8756],[-78.5444,33.8481],[-78.3919,33.8975]]],[[[-154.0467,56.7269],[-154.1272,56.6945],[-154.0167,56.69],[-154.0467,56.7269]]],[[[-135.7028,57.7069],[-135.62,57.6381],[-135.5895,57.6601],[-135.7028,57.7069]]],[[[-77.9503,33.9203],[-78.0088,33.8673],[-77.9614,33.8433],[-77.9503,33.9203]]],[[[-150.3146,59.4611],[-150.4146,59.4386],[-150.3431,59.4156],[-150.3146,59.4611]]],[[[-71.5746,41.2283],[-71.5996,41.1469],[-71.5501,41.1519],[-71.5746,41.2283]]],[[[-151.7939,59.1575],[-151.8239,59.1781],[-151.8772,59.1456],[-151.8083,59.1344],[-151.7939,59.1575]]],[[[-74.1192,39.7681],[-74.1419,39.6958],[-74.1806,39.6622],[-74.2373,39.5583],[-74.0997,39.7564],[-74.1192,39.7681]]],[[[-71.4033,41.4529],[-71.3628,41.4774],[-71.3841,41.5582],[-71.4033,41.4529]]],[[[-147.4266,60.6849],[-147.4563,60.6167],[-147.3859,60.6526],[-147.4266,60.6849]]],[[[-80.8574,31.9904],[-80.9089,31.9942],[-80.9212,31.943],[-80.8614,31.9733],[-80.8574,31.9904]]],[[[-122.6394,48.586],[-122.6522,48.5306],[-122.583,48.5511],[-122.6394,48.586]]],[[[-81.3592,31.3122],[-81.3181,31.2872],[-81.2954,31.2158],[-81.2827,31.2896],[-81.3592,31.3122]]],[[[-65.337082,18.349028],[-65.282639,18.280416],[-65.272636,18.331249],[-65.337082,18.349028]]],[[[-131.6211,55.9028],[-131.6618,55.8603],[-131.5902,55.8535],[-131.6211,55.9028]]],[[[-69.6696,43.9579],[-69.7314,43.8903],[-69.6994,43.8722],[-69.6696,43.9579]]],[[[-64.762916565,18.321527481],[-64.699585,18.303749],[-64.744026,18.365973],[-64.762916565,18.321527481]]],[[[-156.6896,56.0564],[-156.7517,56.0408],[-156.6757,56.0093],[-156.6896,56.0564]]],[[[-150.5979,61.3604],[-150.6349,61.337],[-150.5943,61.2797],[-150.5979,61.3604]]],[[[-81.4135,25.8026],[-81.4246,25.8554],[-81.4799,25.8443],[-81.4135,25.8026]]],[[[-77.8775,34.0711],[-77.8892,34.0569],[-77.9188,34.0512],[-77.9139,33.9719],[-77.8775,34.0711]]],[[[-146.2934,59.4645],[-146.374,59.4184],[-146.3344,59.4042],[-146.2934,59.4645]]],[[[-80.8348,32.1446],[-80.8983,32.1192],[-80.8735,32.0824],[-80.8348,32.1446]]],[[[-175.7926,51.9556],[-175.8626,51.9534],[-175.7833,51.9137],[-175.7926,51.9556]]],[[[-89.3767,29.9069],[-89.4167,29.8689],[-89.3578,29.8511],[-89.3767,29.9069]]],[[[-74.8,39.0289],[-74.8647,38.9417],[-74.7869,39.0014],[-74.8,39.0289]]],[[[-80.3959,32.5341],[-80.4146,32.4707],[-80.3604,32.4989],[-80.3959,32.5341]]],[[[-69.7942,43.9031],[-69.7889,43.8122],[-69.76,43.8625],[-69.7942,43.9031]]],[[[-131.2006,55.1072],[-131.2422,55.0664],[-131.195,55.0433],[-131.2006,55.1072]]],[[[-122.6937,48.7353],[-122.6734,48.68],[-122.618,48.6708],[-122.6937,48.7353]]],[[[-76.7469,34.7111],[-76.8392,34.6922],[-76.6789,34.6944],[-76.7469,34.7111]]],[[[-163.7849,60.8797],[-163.862,60.8755],[-163.8229,60.8417],[-163.7849,60.8797]]],[[[175.88,52.3728],[175.9025,52.3369],[175.9654,52.3596],[175.88,52.3728]]],[[[-150.163,61.1568],[-150.2125,61.1708],[-150.2354,61.1229],[-150.163,61.1568]]],[[[-80.4314,32.4084],[-80.4802,32.3783],[-80.4507,32.3418],[-80.4314,32.4084]]],[[[-134.2628,57.955],[-134.2466,57.9086],[-134.2006,57.9392],[-134.2628,57.955]]],[[[-76.0456,35.0681],[-76.1366,35.0112],[-76.2278,34.9253],[-76.0456,35.0681]]],[[[-133.4855,56.1667],[-133.5725,56.132],[-133.5039,56.1294],[-133.4855,56.1667]]],[[[-74.3106,39.4821],[-74.3617,39.4875],[-74.3633,39.4367],[-74.3106,39.4821]]],[[[-76.0297,37.9989],[-76.0453,37.9489],[-75.9894,37.9617],[-76.0297,37.9989]]],[[[-80.195,27.2543],[-80.2644,27.3961],[-80.2592,27.3481],[-80.195,27.2543]]],[[[-159.1311,55.8706],[-159.1683,55.8389],[-159.095,55.8328],[-159.1311,55.8706]]],[[[-145.875,60.3937],[-145.8813,60.375],[-145.7505,60.363],[-145.875,60.3937]]],[[[-147.5557,60.5599],[-147.6224,60.5641],[-147.5995,60.5255],[-147.5557,60.5599]]],[[[-173.0568,60.6557],[-173.087,60.6995],[-173.1161,60.6599],[-173.0568,60.6557]]],[[[-71.3416,41.6485],[-71.327,41.5804],[-71.2981,41.6148],[-71.3416,41.6485]]],[[[-68.4042,44.1747],[-68.4611,44.1597],[-68.4203,44.1278],[-68.4042,44.1747]]],[[[-151.5069,59.1459],[-151.4443,59.1046],[-151.4312,59.1345],[-151.5069,59.1459]]],[[[-167.6641,65.7828],[-167.7182,65.7786],[-167.7042,65.7354],[-167.6641,65.7828]]],[[[-132.8795,55.2258],[-132.9383,55.2086],[-132.9259,55.1716],[-132.8795,55.2258]]],[[[-81.0299,24.7301],[-81.1249,24.7068],[-81.0826,24.6921],[-81.0299,24.7301]]],[[[-178.8367,51.5742],[-178.8161,51.5394],[-178.7617,51.5628],[-178.8367,51.5742]]],[[[-89.6989,29.4422],[-89.7275,29.3892],[-89.6772,29.3997],[-89.6989,29.4422]]],[[[-160.4249,58.6786],[-160.3841,58.7042],[-160.4043,58.7494],[-160.4249,58.6786]]],[[[-162.4594,54.4172],[-162.4328,54.3714],[-162.4017,54.4056],[-162.4594,54.4172]]],[[[-160.2794,58.715],[-160.3167,58.6817],[-160.2706,58.6611],[-160.2794,58.715]]],[[[-154.4306,56.5908],[-154.4378,56.5375],[-154.3928,56.5533],[-154.4306,56.5908]]],[[[-143.6146,70.1292],[-143.6833,70.1333],[-143.6682,70.0995],[-143.6146,70.1292]]],[[[-75.8653,35.9711],[-75.9469,35.9592],[-75.9192,35.9356],[-75.8653,35.9711]]],[[[-144.3945,60.1516],[-144.3297,60.1026],[-144.3297,60.137],[-144.3945,60.1516]]],[[[-68.865,44.3672],[-68.9114,44.3647],[-68.9017,44.3183],[-68.865,44.3672]]],[[[-68.4947,44.3619],[-68.5331,44.3306],[-68.48,44.3172],[-68.4947,44.3619]]],[[[-160.8038,55.9061],[-160.8188,55.9528],[-160.8525,55.9155],[-160.8038,55.9061]]],[[[-122.6874,47.1828],[-122.7414,47.1506],[-122.7127,47.1283],[-122.6874,47.1828]]],[[[-161.5928,55.1073],[-161.5816,55.0567],[-161.5478,55.0828],[-161.5928,55.1073]]]]},"properties":{"id":"d2824676-2bf4-40a3-a27c-88221ea0ff5c","code":"USA","name":"United States","abbreviation":"N-USA","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-97.2157, 25.9701], + [-97.196, 26.0465], + [-97.2071, 26.0793], + [-97.2724, 26.0874], + [-97.2957, 26.1129], + [-97.2968, 26.1801], + [-97.3443, 26.2676], + [-97.3579, 26.3376], + [-97.3351, 26.3807], + [-97.4074, 26.4796], + [-97.4679, 26.7096], + [-97.4782, 26.8054], + [-97.5529, 26.8421], + [-97.5504, 26.8963], + [-97.4693, 26.8412], + [-97.4565, 26.9424], + [-97.5076, 26.9068], + [-97.5549, 26.9387], + [-97.5385, 26.9874], + [-97.4518, 26.984], + [-97.4686, 27.0697], + [-97.4483, 27.0914], + [-97.4222, 27.262], + [-97.5127, 27.233], + [-97.6311, 27.2425], + [-97.6922, 27.3348], + [-97.5678, 27.3178], + [-97.4932, 27.391], + [-97.4786, 27.2994], + [-97.4116, 27.3226], + [-97.3701, 27.4077], + [-97.3454, 27.5079], + [-97.2554, 27.6921], + [-97.333, 27.7196], + [-97.3882, 27.7701], + [-97.3781, 27.8361], + [-97.4786, 27.8253], + [-97.4795, 27.8601], + [-97.4008, 27.8764], + [-97.2468, 27.8733], + [-97.1919, 27.8208], + [-97.1297, 27.9171], + [-97.0253, 28.0322], + [-97.0609, 28.088], + [-97.135, 28.0475], + [-97.2033, 28.0678], + [-97.1719, 28.1214], + [-97.0324, 28.1881], + [-97.0272, 28.1503], + [-96.9842, 28.1275], + [-96.9122, 28.1264], + [-96.8314, 28.1983], + [-96.7873, 28.2556], + [-96.8097, 28.29], + [-96.7953, 28.3646], + [-96.8594, 28.4142], + [-96.8375, 28.4325], + [-96.7832, 28.4004], + [-96.7536, 28.4351], + [-96.7073, 28.4056], + [-96.7044, 28.3473], + [-96.6541, 28.3262], + [-96.433, 28.4283], + [-96.4053, 28.4543], + [-96.5674, 28.5828], + [-96.6129, 28.5682], + [-96.6112, 28.6367], + [-96.6648, 28.6967], + [-96.5861, 28.725], + [-96.5631, 28.6378], + [-96.509, 28.6405], + [-96.4841, 28.6085], + [-96.4196, 28.6479], + [-96.4356, 28.7381], + [-96.3978, 28.7371], + [-96.3955, 28.6806], + [-96.3611, 28.6267], + [-96.3042, 28.6459], + [-96.2872, 28.6836], + [-96.1817, 28.7072], + [-96.2313, 28.644], + [-96.2114, 28.6144], + [-96.1569, 28.6117], + [-96.0297, 28.6529], + [-95.9797, 28.6367], + [-96.0356, 28.5844], + [-96.1444, 28.5444], + [-96.3353, 28.4381], + [-96.3186, 28.4231], + [-96.2253, 28.4881], + [-96.0886, 28.5536], + [-95.8684, 28.6394], + [-95.6614, 28.7445], + [-95.7868, 28.6959], + [-95.8947, 28.6408], + [-95.9608, 28.6253], + [-95.9271, 28.6997], + [-95.7864, 28.7486], + [-95.6542, 28.7503], + [-95.4397, 28.86], + [-95.3853, 28.8672], + [-95.2183, 29.0052], + [-95.1495, 29.1802], + [-95.1003, 29.1759], + [-95.0358, 29.2133], + [-94.9397, 29.3203], + [-94.8692, 29.28], + [-94.9258, 29.2528], + [-95.0451, 29.1376], + [-94.8237, 29.2668], + [-94.7253, 29.3331], + [-94.8702, 29.2904], + [-94.9074, 29.3399], + [-94.8663, 29.374], + [-94.8913, 29.4338], + [-94.9536, 29.4723], + [-94.9121, 29.4965], + [-94.9805, 29.5127], + [-95.0167, 29.5569], + [-94.9822, 29.6022], + [-95.0155, 29.6385], + [-94.981, 29.6765], + [-95.0535, 29.7067], + [-95.0994, 29.7841], + [-95.0683, 29.8136], + [-95.0175, 29.7172], + [-94.9358, 29.6928], + [-94.9097, 29.6549], + [-94.871, 29.6729], + [-94.8475, 29.7253], + [-94.7974, 29.7668], + [-94.7306, 29.7767], + [-94.6951, 29.7449], + [-94.7, 29.6429], + [-94.7638, 29.5243], + [-94.5511, 29.5743], + [-94.5122, 29.5164], + [-94.6816, 29.4538], + [-94.7674, 29.3865], + [-94.7294, 29.3699], + [-94.7077, 29.4046], + [-94.6174, 29.459], + [-94.5058, 29.5054], + [-94.1188, 29.6527], + [-93.9725, 29.6829], + [-93.8385, 29.6778], + [-93.8045, 29.7131], + [-93.6989, 29.7439], + [-93.4987, 29.7686], + [-93.3467, 29.7617], + [-93.2697, 29.7769], + [-93.1856, 29.7716], + [-92.9653, 29.7147], + [-92.7361, 29.6181], + [-92.6236, 29.585], + [-92.4619, 29.5608], + [-92.3453, 29.5342], + [-92.2783, 29.5339], + [-92.1496, 29.5846], + [-92.0462, 29.5845], + [-92.1073, 29.6127], + [-92.1366, 29.6672], + [-92.2157, 29.7485], + [-92.1388, 29.7843], + [-92.1108, 29.7422], + [-92.0381, 29.7811], + [-91.8856, 29.8358], + [-91.8255, 29.8239], + [-91.8775, 29.7475], + [-91.8575, 29.7053], + [-91.7716, 29.7464], + [-91.6333, 29.7431], + [-91.6169, 29.7103], + [-91.6245, 29.6285], + [-91.5522, 29.6335], + [-91.5333, 29.5278], + [-91.4316, 29.5416], + [-91.4142, 29.4967], + [-91.3567, 29.5158], + [-91.3385, 29.4903], + [-91.2658, 29.4786], + [-91.2197, 29.4367], + [-91.1994, 29.375], + [-91.1336, 29.3414], + [-91.1192, 29.3056], + [-91.1361, 29.2331], + [-91.0619, 29.1833], + [-91.0342, 29.2229], + [-91.0109, 29.1748], + [-90.9713, 29.1998], + [-90.9144, 29.1464], + [-90.8783, 29.1364], + [-90.8079, 29.187], + [-90.7697, 29.1808], + [-90.7842, 29.1336], + [-90.7261, 29.1461], + [-90.6936, 29.2211], + [-90.6261, 29.2592], + [-90.585, 29.3186], + [-90.4792, 29.2911], + [-90.4301, 29.348], + [-90.3776, 29.2914], + [-90.3394, 29.3264], + [-90.2987, 29.2575], + [-90.2207, 29.0865], + [-90.0833, 29.1678], + [-90.1283, 29.2953], + [-90.1303, 29.3739], + [-90.0503, 29.3172], + [-90.03, 29.3811], + [-90.08, 29.4481], + [-90.1822, 29.4664], + [-90.2281, 29.5356], + [-90.1658, 29.5792], + [-89.9797, 29.4578], + [-89.9286, 29.4619], + [-89.9233, 29.4975], + [-89.8169, 29.4614], + [-89.8369, 29.4186], + [-89.7761, 29.4017], + [-89.6916, 29.467], + [-89.6619, 29.41], + [-89.5061, 29.3306], + [-89.4764, 29.295], + [-89.4878, 29.2318], + [-89.4475, 29.1819], + [-89.4225, 29.2106], + [-89.3581, 29.2036], + [-89.2992, 29.2192], + [-89.2631, 29.13], + [-89.2117, 29.0406], + [-89.1639, 29.0286], + [-89.1125, 29.0825], + [-89.1208, 29.1194], + [-89.0567, 29.1064], + [-89.1144, 29.1578], + [-89.0975, 29.1881], + [-89.1544, 29.2292], + [-89.1389, 29.2858], + [-89.1744, 29.3214], + [-89.2442, 29.3117], + [-89.2664, 29.2517], + [-89.3244, 29.2678], + [-89.3217, 29.3007], + [-89.2542, 29.3311], + [-89.2922, 29.3669], + [-89.3475, 29.3309], + [-89.4703, 29.4014], + [-89.5617, 29.3933], + [-89.5364, 29.4458], + [-89.5922, 29.4867], + [-89.6308, 29.4833], + [-89.6864, 29.5236], + [-89.7242, 29.6003], + [-89.6219, 29.6597], + [-89.5569, 29.6608], + [-89.6494, 29.7131], + [-89.6408, 29.7675], + [-89.495, 29.7278], + [-89.4394, 29.7531], + [-89.4669, 29.8267], + [-89.4108, 29.7672], + [-89.3936, 29.7906], + [-89.4447, 29.8856], + [-89.4464, 29.9539], + [-89.49, 29.9822], + [-89.4461, 30.0228], + [-89.445, 30.0611], + [-89.5564, 30], + [-89.5908, 29.8853], + [-89.645, 29.8614], + [-89.7044, 29.8739], + [-89.7553, 29.9422], + [-89.8383, 29.9422], + [-89.86, 30.0011], + [-89.8192, 30.0447], + [-89.7269, 30.0636], + [-89.6228, 30.1569], + [-89.5564, 30.1806], + [-89.4919, 30.1828], + [-89.4203, 30.23], + [-89.4197, 30.2542], + [-89.3392, 30.2961], + [-89.3619, 30.3447], + [-89.3131, 30.3755], + [-89.2688, 30.3418], + [-89.2919, 30.3039], + [-89.0044, 30.3875], + [-88.8583, 30.4056], + [-88.7382, 30.3446], + [-88.6125, 30.3732], + [-88.57, 30.4003], + [-88.5653, 30.3441], + [-88.4794, 30.3186], + [-88.3577, 30.4057], + [-88.1881, 30.3661], + [-88.1921, 30.3181], + [-88.1294, 30.3383], + [-88.1073, 30.3782], + [-88.101, 30.5101], + [-88.0872, 30.5669], + [-88.0117, 30.6872], + [-87.9696, 30.7098], + [-87.9142, 30.6508], + [-87.9021, 30.5477], + [-87.9372, 30.4829], + [-87.9075, 30.4103], + [-87.8372, 30.3656], + [-87.7596, 30.2949], + [-87.7667, 30.2639], + [-87.8921, 30.2393], + [-87.9369, 30.2608], + [-87.9617, 30.2349], + [-87.8289, 30.2269], + [-87.6567, 30.25], + [-87.5581, 30.2714], + [-87.5092, 30.3422], + [-87.4636, 30.3611], + [-87.4308, 30.4172], + [-87.3744, 30.4589], + [-87.3408, 30.43], + [-87.4256, 30.4025], + [-87.4169, 30.3425], + [-87.4611, 30.3097], + [-87.265, 30.3442], + [-87.2576, 30.3884], + [-87.1812, 30.4213], + [-87.1603, 30.4683], + [-87.1844, 30.5266], + [-87.1588, 30.5805], + [-87.1025, 30.5225], + [-87.1029, 30.4484], + [-87.0677, 30.4478], + [-87.0378, 30.5391], + [-86.9958, 30.5633], + [-87.013, 30.4984], + [-86.9356, 30.4547], + [-87.0147, 30.4034], + [-87.0865, 30.3991], + [-87.0963, 30.3729], + [-86.9497, 30.3953], + [-86.7233, 30.4108], + [-86.6047, 30.4011], + [-86.51, 30.4553], + [-86.4522, 30.5084], + [-86.4208, 30.4514], + [-86.3192, 30.4775], + [-86.2097, 30.4875], + [-86.1189, 30.3794], + [-86.1653, 30.3825], + [-86.2481, 30.4286], + [-86.2456, 30.39], + [-86.3006, 30.4025], + [-86.3287, 30.3828], + [-86.4882, 30.418], + [-86.5025, 30.3819], + [-86.3331, 30.3703], + [-86.1878, 30.3342], + [-85.9914, 30.2686], + [-85.7756, 30.1567], + [-85.7442, 30.2128], + [-85.7986, 30.2531], + [-85.8492, 30.2325], + [-85.845, 30.2844], + [-85.7631, 30.3], + [-85.6792, 30.2497], + [-85.73, 30.1872], + [-85.6469, 30.1347], + [-85.58, 30.1156], + [-85.5242, 30.1233], + [-85.4944, 30.0908], + [-85.4831, 30.0219], + [-85.5328, 30.0789], + [-85.6006, 30.0917], + [-85.6192, 30.1217], + [-85.6869, 30.1228], + [-85.5411, 30.0244], + [-85.4769, 29.9672], + [-85.4122, 29.9431], + [-85.3628, 29.8972], + [-85.3028, 29.8083], + [-85.3045, 29.6838], + [-85.244, 29.6874], + [-85.1147, 29.717], + [-84.9906, 29.715], + [-84.9245, 29.7611], + [-84.9019, 29.7344], + [-84.757, 29.788], + [-84.5331, 29.9114], + [-84.4444, 29.9297], + [-84.3636, 29.9097], + [-84.3386, 29.9472], + [-84.441, 29.9613], + [-84.4372, 29.9875], + [-84.3547, 29.9694], + [-84.3775, 30.0092], + [-84.3489, 30.0606], + [-84.289, 30.0571], + [-84.2706, 30.1058], + [-84.2386, 30.0856], + [-84.2067, 30.1153], + [-84.1836, 30.0775], + [-84.1164, 30.0942], + [-83.9964, 30.1041], + [-83.9253, 30.0347], + [-83.7842, 29.9786], + [-83.6806, 29.9226], + [-83.5903, 29.8213], + [-83.5535, 29.7368], + [-83.4057, 29.6533], + [-83.3964, 29.5244], + [-83.2953, 29.4368], + [-83.2336, 29.4323], + [-83.1803, 29.3619], + [-83.1706, 29.3017], + [-83.0813, 29.2666], + [-83.0711, 29.1917], + [-83.0289, 29.1617], + [-82.9811, 29.1747], + [-82.8109, 29.1637], + [-82.7867, 29.0786], + [-82.74, 29.0217], + [-82.71, 28.9361], + [-82.6383, 28.9053], + [-82.6514, 28.8578], + [-82.7116, 28.8741], + [-82.733, 28.8537], + [-82.6856, 28.7936], + [-82.6878, 28.7276], + [-82.64, 28.7008], + [-82.6556, 28.6303], + [-82.6711, 28.4341], + [-82.7312, 28.3255], + [-82.7331, 28.2828], + [-82.8008, 28.1708], + [-82.7758, 28.1097], + [-82.8058, 27.9547], + [-82.8483, 27.8714], + [-82.6888, 27.709], + [-82.6381, 27.7039], + [-82.6214, 27.7897], + [-82.5872, 27.8189], + [-82.5983, 27.8569], + [-82.655, 27.9108], + [-82.7198, 27.9363], + [-82.6655, 28.0285], + [-82.5275, 27.9356], + [-82.555, 27.8496], + [-82.4733, 27.8217], + [-82.4863, 27.9227], + [-82.4012, 27.8779], + [-82.3958, 27.8147], + [-82.4783, 27.7472], + [-82.5671, 27.6263], + [-82.5699, 27.5679], + [-82.6038, 27.5167], + [-82.6417, 27.5252], + [-82.6411, 27.4737], + [-82.6861, 27.465], + [-82.5739, 27.4053], + [-82.5415, 27.3304], + [-82.5411, 27.27], + [-82.5022, 27.2272], + [-82.4447, 27.0581], + [-82.3426, 26.9301], + [-82.3018, 26.8474], + [-82.1913, 26.791], + [-82.1479, 26.8018], + [-82.189, 26.9674], + [-82.1532, 26.924], + [-82.1174, 26.9615], + [-82.0088, 26.9526], + [-82.0971, 26.9151], + [-82.0601, 26.8793], + [-82.0546, 26.7946], + [-82.0879, 26.6757], + [-82.0468, 26.609], + [-82.064, 26.5671], + [-82.0165, 26.529], + [-82.0137, 26.4882], + [-81.8765, 26.4562], + [-81.8374, 26.3476], + [-81.8015, 26.091], + [-81.7423, 26.0337], + [-81.7349, 25.9988], + [-81.6349, 25.9387], + [-81.6368, 25.9063], + [-81.5301, 25.8929], + [-81.5193, 25.8396], + [-81.4579, 25.8668], + [-81.3996, 25.8568], + [-81.3349, 25.7876], + [-81.346, 25.7215], + [-81.2929, 25.7057], + [-81.2535, 25.6415], + [-81.1418, 25.381], + [-81.1007, 25.3468], + [-80.9799, 25.3254], + [-80.9038, 25.2399], + [-80.9638, 25.2049], + [-81.0024, 25.2135], + [-81.029, 25.2263], + [-81.0476, 25.2365], + [-81.0699, 25.2551], + [-81.0888, 25.311], + [-81.1457, 25.3268], + [-81.1718, 25.2235], + [-81.0879, 25.1162], + [-80.9004, 25.1396], + [-80.8468, 25.1774], + [-80.7165, 25.156], + [-80.5821, 25.2104], + [-80.5062, 25.2071], + [-80.3954, 25.2763], + [-80.3426, 25.3232], + [-80.3087, 25.3899], + [-80.3407, 25.4982], + [-80.2296, 25.7335], + [-80.1888, 25.7551], + [-80.1849, 25.8105], + [-80.1184, 25.8338], + [-80.1704, 25.8671], + [-80.1212, 25.8999], + [-80.1093, 26.0874], + [-80.0799, 26.2576], + [-80.0579, 26.4599], + [-80.0365, 26.5882], + [-80.0515, 26.7754], + [-80.031, 26.7949], + [-80.0715, 26.9437], + [-80.0793, 26.9088], + [-80.0349, 26.7982], + [-80.0521, 26.794], + [-80.0807, 26.9082], + [-80.0799, 26.9479], + [-80.1201, 27.0804], + [-80.1575, 27.1629], + [-80.1917, 27.1642], + [-80.3216, 27.4435], + [-80.3747, 27.6219], + [-80.3754, 27.653], + [-80.4614, 27.8059], + [-80.6578, 28.1953], + [-80.7489, 28.4089], + [-80.7978, 28.5589], + [-80.8436, 28.75], + [-80.8447, 28.8], + [-80.7417, 28.7158], + [-80.7847, 28.6903], + [-80.7842, 28.6219], + [-80.7261, 28.6042], + [-80.7331, 28.4897], + [-80.7203, 28.3914], + [-80.6833, 28.3397], + [-80.635, 28.5022], + [-80.5872, 28.5744], + [-80.585, 28.5158], + [-80.6086, 28.3758], + [-80.6322, 28.3225], + [-80.6078, 28.2639], + [-80.6186, 28.2122], + [-80.5764, 28.0775], + [-80.5229, 27.9929], + [-80.4272, 27.8139], + [-80.4183, 27.7665], + [-80.3422, 27.5958], + [-80.3108, 27.4708], + [-80.2903, 27.4728], + [-80.3842, 27.7424], + [-80.5125, 27.9764], + [-80.5611, 28.0792], + [-80.5931, 28.1906], + [-80.6081, 28.3103], + [-80.5908, 28.4078], + [-80.525, 28.4581], + [-80.5747, 28.5847], + [-80.71, 28.7564], + [-80.9008, 29.0475], + [-80.9158, 29.0236], + [-80.8689, 28.9556], + [-80.8475, 28.9575], + [-80.775, 28.8522], + [-80.7764, 28.8256], + [-80.6442, 28.6675], + [-80.6856, 28.6706], + [-80.7669, 28.7572], + [-80.8203, 28.8383], + [-80.8689, 28.9403], + [-80.9781, 29.1286], + [-81.0566, 29.3045], + [-80.9961, 29.2036], + [-81.1653, 29.5575], + [-81.2583, 29.7869], + [-81.2644, 29.8567], + [-81.3014, 29.9414], + [-81.3786, 30.2458], + [-81.3931, 30.3953], + [-81.412, 30.4855], + [-81.436, 30.5245], + [-81.4435, 30.5989], + [-81.4256, 30.7011], + [-81.449, 30.72], + [-81.4522, 30.7992], + [-81.4064, 30.9003], + [-81.4027, 30.9589], + [-81.4633, 30.9097], + [-81.5131, 30.9658], + [-81.4611, 30.9983], + [-81.4841, 31.0377], + [-81.4256, 31.0486], + [-81.4606, 31.0872], + [-81.4353, 31.1339], + [-81.4631, 31.1772], + [-81.3883, 31.2826], + [-81.3717, 31.3381], + [-81.3347, 31.3319], + [-81.3333, 31.3903], + [-81.3758, 31.4242], + [-81.3261, 31.4562], + [-81.3319, 31.4767], + [-81.2919, 31.4953], + [-81.2314, 31.5497], + [-81.1659, 31.5634], + [-81.1301, 31.63], + [-81.1452, 31.699], + [-81.1872, 31.6878], + [-81.2528, 31.7567], + [-81.1609, 31.7277], + [-81.2018, 31.7866], + [-81.145, 31.8614], + [-81.0894, 31.8603], + [-81.0214, 31.9078], + [-80.9933, 31.8578], + [-80.9343, 31.9089], + [-80.9842, 31.9153], + [-81.0136, 31.9639], + [-81.0107, 32.0093], + [-81.0256, 32.0203], + [-81.0463, 32.0241], + [-81.0497, 32.0292], + [-81.029, 32.0638], + [-81.0148, 32.0741], + [-80.915, 32.0842], + [-80.9271, 32.1258], + [-80.8373, 32.2144], + [-80.7903, 32.2033], + [-80.7813, 32.2602], + [-80.7597, 32.2767], + [-80.8444, 32.3831], + [-80.8172, 32.41], + [-80.8275, 32.4864], + [-80.7883, 32.4967], + [-80.7836, 32.5289], + [-80.7642, 32.5403], + [-80.6303, 32.5181], + [-80.5849, 32.5007], + [-80.4651, 32.5196], + [-80.3928, 32.5728], + [-80.3892, 32.6164], + [-80.3378, 32.6397], + [-80.2882, 32.6253], + [-80.254, 32.678], + [-80.18, 32.7175], + [-80.1711, 32.7387], + [-80.1583, 32.7508], + [-80.1381, 32.7485], + [-80.1285, 32.7779], + [-80.1037, 32.7882], + [-80.0022, 32.7672], + [-79.9853, 32.6939], + [-79.9906, 32.6347], + [-79.9064, 32.6683], + [-79.87, 32.7314], + [-79.9339, 32.755], + [-79.935, 32.8077], + [-79.86, 32.7664], + [-79.7416, 32.8708], + [-79.6978, 32.8508], + [-79.5775, 32.9085], + [-79.6172, 32.9381], + [-79.579, 33.0069], + [-79.5283, 33.0381], + [-79.4839, 33.0036], + [-79.3756, 33.0467], + [-79.3644, 33.0762], + [-79.2467, 33.125], + [-79.1946, 33.1704], + [-79.2106, 33.2439], + [-79.2581, 33.2589], + [-79.275, 33.3128], + [-79.1958, 33.2958], + [-79.1789, 33.2647], + [-79.1455, 33.3841], + [-79.1158, 33.4069], + [-79, 33.5456], + [-78.9119, 33.6111], + [-78.9372, 33.6397], + [-78.8586, 33.7091], + [-78.7404, 33.7878], + [-78.6547, 33.8239], + [-78.5578, 33.8483], + [-78.5392, 33.8769], + [-78.32, 33.9167], + [-78.2275, 33.9228], + [-78.0761, 33.9029], + [-77.9936, 33.9297], + [-77.9539, 33.975], + [-77.9403, 34.0781], + [-77.9683, 34.1625], + [-77.9253, 34.1272], + [-77.925, 34.0683], + [-77.9178, 34.0525], + [-77.8914, 34.0594], + [-77.8592, 34.1527], + [-77.8133, 34.2194], + [-77.7017, 34.344], + [-77.5309, 34.4584], + [-77.4645, 34.493], + [-77.3741, 34.5175], + [-77.3615, 34.5521], + [-77.4366, 34.5896], + [-77.4441, 34.6162], + [-77.3729, 34.6267], + [-77.3778, 34.7036], + [-77.3376, 34.6397], + [-77.4003, 34.5969], + [-77.3183, 34.5461], + [-77.2797, 34.5667], + [-77.1132, 34.7014], + [-77.0935, 34.6728], + [-77.0297, 34.6823], + [-76.8933, 34.725], + [-76.6931, 34.7211], + [-76.7375, 34.7792], + [-76.6589, 34.7475], + [-76.6908, 34.7139], + [-76.6172, 34.7075], + [-76.6094, 34.8064], + [-76.5797, 34.7228], + [-76.5067, 34.7256], + [-76.5064, 34.7869], + [-76.4736, 34.7681], + [-76.4142, 34.8506], + [-76.3314, 34.885], + [-76.3281, 34.9369], + [-76.2766, 34.9598], + [-76.3108, 35.0064], + [-76.3551, 35.0211], + [-76.3444, 34.9711], + [-76.4564, 34.94], + [-76.425, 35.0012], + [-76.4359, 35.0584], + [-76.518, 35.0037], + [-76.5902, 34.9783], + [-76.6302, 34.9887], + [-76.7608, 34.9154], + [-76.8532, 34.937], + [-76.9752, 35.0016], + [-76.9887, 35.0433], + [-77.047, 35.1041], + [-76.9252, 35.0515], + [-76.8039, 34.9639], + [-76.7008, 35.0256], + [-76.6089, 35.0675], + [-76.5443, 35.1489], + [-76.5989, 35.1881], + [-76.59, 35.2417], + [-76.5287, 35.2318], + [-76.4793, 35.2471], + [-76.4912, 35.3158], + [-76.61, 35.3279], + [-76.7356, 35.3554], + [-76.844, 35.4241], + [-76.9262, 35.4488], + [-76.9674, 35.4331], + [-76.9786, 35.4837], + [-76.8333, 35.4481], + [-76.7583, 35.4193], + [-76.7108, 35.4289], + [-76.576, 35.3881], + [-76.5985, 35.4819], + [-76.6516, 35.5455], + [-76.537, 35.5286], + [-76.4539, 35.5522], + [-76.4721, 35.511], + [-76.5625, 35.492], + [-76.5401, 35.4096], + [-76.4821, 35.3947], + [-76.3891, 35.4273], + [-76.3461, 35.4059], + [-76.3019, 35.3519], + [-76.2603, 35.3761], + [-76.2043, 35.3383], + [-76.0961, 35.3618], + [-76.0839, 35.391], + [-75.9994, 35.4553], + [-75.9442, 35.5358], + [-75.8834, 35.5832], + [-75.8821, 35.6344], + [-75.8358, 35.5706], + [-75.7744, 35.5814], + [-75.7339, 35.6308], + [-75.7795, 35.6875], + [-75.7169, 35.6938], + [-75.7387, 35.7507], + [-75.7281, 35.8244], + [-75.7827, 35.9332], + [-75.8107, 35.9217], + [-75.9079, 35.9324], + [-75.9854, 35.8891], + [-75.9757, 35.8391], + [-75.9992, 35.695], + [-76.0219, 35.6508], + [-76.0611, 35.7176], + [-76.0642, 35.8536], + [-76.0133, 35.9236], + [-76.073, 35.9229], + [-76.0543, 35.9874], + [-76.1481, 35.9956], + [-76.2703, 35.9726], + [-76.3494, 35.9419], + [-76.4058, 35.9822], + [-76.525, 35.9447], + [-76.6639, 35.9328], + [-76.7247, 35.9554], + [-76.7036, 36.0042], + [-76.7263, 36.0962], + [-76.7555, 36.1517], + [-76.7505, 36.2094], + [-76.6807, 36.3006], + [-76.6755, 36.2654], + [-76.7152, 36.2138], + [-76.7224, 36.1539], + [-76.6919, 36.0661], + [-76.638, 36.0359], + [-76.6077, 36.0561], + [-76.5736, 36.0092], + [-76.4631, 36.0231], + [-76.4043, 36.0788], + [-76.3078, 36.0922], + [-76.4352, 36.1628], + [-76.3933, 36.1694], + [-76.215, 36.0964], + [-76.2465, 36.1586], + [-76.1668, 36.1237], + [-76.0615, 36.146], + [-76.077, 36.1923], + [-76.1951, 36.2967], + [-76.1363, 36.2884], + [-76.0181, 36.187], + [-75.925, 36.1638], + [-75.9542, 36.2038], + [-75.9762, 36.3137], + [-75.8763, 36.1843], + [-75.8632, 36.1215], + [-75.7979, 36.0717], + [-75.8224, 36.1538], + [-75.8971, 36.3233], + [-76.0006, 36.4286], + [-76.0405, 36.5022], + [-76.0118, 36.5591], + [-75.9886, 36.4975], + [-75.9119, 36.495], + [-75.9226, 36.568], + [-75.982, 36.5593], + [-75.9928, 36.6353], + [-75.9414, 36.7211], + [-75.8843, 36.4732], + [-75.8434, 36.4222], + [-75.8211, 36.2914], + [-75.774, 36.2273], + [-75.7448, 36.1392], + [-75.7375, 36.0425], + [-75.692, 36.0508], + [-75.6864, 36.0119], + [-75.5708, 35.8642], + [-75.7275, 36.1289], + [-75.7986, 36.2981], + [-75.8542, 36.48], + [-75.8842, 36.6133], + [-75.9525, 36.7658], + [-75.9936, 36.9206], + [-76.0383, 36.9317], + [-76.0906, 36.9081], + [-76.2271, 36.9408], + [-76.2775, 36.9692], + [-76.331, 36.9606], + [-76.3176, 36.8858], + [-76.3558, 36.9244], + [-76.3884, 36.898], + [-76.4831, 36.897], + [-76.4861, 36.9561], + [-76.5764, 37.0197], + [-76.6479, 37.0368], + [-76.6867, 37.1972], + [-76.7146, 37.1489], + [-76.7474, 37.1503], + [-76.8042, 37.2072], + [-76.9, 37.1992], + [-76.9853, 37.2447], + [-77.0144, 37.3031], + [-77.0508, 37.2653], + [-77.0842, 37.2725], + [-77.0936, 37.3081], + [-77.1758, 37.2878], + [-77.2525, 37.2956], + [-77.2044, 37.3253], + [-77.1278, 37.3094], + [-77.0728, 37.3275], + [-77.0803, 37.2808], + [-77.0156, 37.3125], + [-76.9404, 37.2369], + [-76.8817, 37.2567], + [-76.7958, 37.2328], + [-76.7575, 37.1914], + [-76.6919, 37.2231], + [-76.6231, 37.1979], + [-76.6283, 37.1261], + [-76.4647, 37.0277], + [-76.4303, 36.9656], + [-76.3181, 37.0126], + [-76.2702, 37.0878], + [-76.3368, 37.0911], + [-76.2938, 37.1264], + [-76.4206, 37.2233], + [-76.4697, 37.2136], + [-76.5767, 37.2719], + [-76.6258, 37.3131], + [-76.6953, 37.4033], + [-76.7114, 37.4444], + [-76.5103, 37.2722], + [-76.5058, 37.2461], + [-76.3829, 37.2657], + [-76.3979, 37.3136], + [-76.4499, 37.3811], + [-76.4159, 37.4086], + [-76.3061, 37.3278], + [-76.2487, 37.3758], + [-76.2522, 37.436], + [-76.3596, 37.5213], + [-76.3125, 37.5458], + [-76.4306, 37.6094], + [-76.5331, 37.6122], + [-76.5906, 37.6572], + [-76.5998, 37.7207], + [-76.6803, 37.7796], + [-76.7234, 37.7884], + [-76.7945, 37.8955], + [-76.8527, 37.9208], + [-76.9286, 37.9831], + [-76.9164, 38.0294], + [-76.93, 38.0732], + [-77.06, 38.106], + [-77.0571, 38.1408], + [-77.1263, 38.1367], + [-77.1531, 38.1758], + [-77.0489, 38.1579], + [-77.0297, 38.1031], + [-76.9358, 38.0805], + [-76.9214, 38.0683], + [-76.9131, 38.0516], + [-76.8966, 37.9895], + [-76.7982, 37.9245], + [-76.7262, 37.8362], + [-76.5867, 37.7714], + [-76.5097, 37.6425], + [-76.4719, 37.6661], + [-76.4022, 37.6273], + [-76.2798, 37.6195], + [-76.3389, 37.6533], + [-76.3028, 37.6897], + [-76.3144, 37.7356], + [-76.3019, 37.8258], + [-76.2657, 37.817], + [-76.2372, 37.8836], + [-76.2683, 37.9128], + [-76.4136, 37.9646], + [-76.4733, 38.015], + [-76.5458, 38.039], + [-76.5363, 38.0749], + [-76.6314, 38.1534], + [-76.7016, 38.1598], + [-76.715, 38.1025], + [-76.7891, 38.1697], + [-76.8398, 38.1638], + [-76.9659, 38.2121], + [-76.9619, 38.2573], + [-77.0299, 38.311], + [-77.0135, 38.3748], + [-77.0726, 38.3755], + [-77.237, 38.3312], + [-77.3223, 38.3371], + [-77.297, 38.3707], + [-77.3266, 38.4435], + [-77.3036, 38.5094], + [-77.2574, 38.5609], + [-77.2392, 38.6617], + [-77.1581, 38.6372], + [-77.1504, 38.6659], + [-77.0423, 38.7218], + [-77.0523, 38.7886], + [-77.0134, 38.7883], + [-77.0442, 38.6976], + [-77.1009, 38.6854], + [-77.1095, 38.6268], + [-77.182, 38.6018], + [-77.235, 38.5535], + [-77.2736, 38.4835], + [-77.2499, 38.3827], + [-77.2067, 38.3597], + [-77.0915, 38.4076], + [-77.0419, 38.4443], + [-77.0015, 38.4216], + [-76.975, 38.3539], + [-76.9263, 38.2945], + [-76.85, 38.2658], + [-76.8711, 38.3333], + [-76.859, 38.3828], + [-76.8023, 38.2806], + [-76.8053, 38.2523], + [-76.7526, 38.2222], + [-76.7144, 38.2669], + [-76.6712, 38.2344], + [-76.5913, 38.2149], + [-76.5358, 38.1465], + [-76.5017, 38.1383], + [-76.4439, 38.1689], + [-76.4374, 38.1345], + [-76.3206, 38.0486], + [-76.3403, 38.1148], + [-76.32, 38.1383], + [-76.3864, 38.2202], + [-76.3992, 38.2569], + [-76.3733, 38.2989], + [-76.4619, 38.296], + [-76.5031, 38.3603], + [-76.6192, 38.4178], + [-76.6723, 38.4649], + [-76.6419, 38.4761], + [-76.5714, 38.4225], + [-76.5233, 38.4124], + [-76.4708, 38.3492], + [-76.4214, 38.3192], + [-76.3811, 38.3856], + [-76.4917, 38.4817], + [-76.5175, 38.5347], + [-76.5114, 38.615], + [-76.5286, 38.7281], + [-76.5547, 38.7697], + [-76.5106, 38.8008], + [-76.4894, 38.8878], + [-76.515, 38.9114], + [-76.4594, 38.9406], + [-76.4764, 38.9817], + [-76.3953, 39.0108], + [-76.4368, 39.0526], + [-76.5136, 39.0681], + [-76.4406, 39.0956], + [-76.4307, 39.132], + [-76.4969, 39.1508], + [-76.5764, 39.2489], + [-76.4621, 39.2057], + [-76.4212, 39.2318], + [-76.3892, 39.3128], + [-76.3302, 39.3156], + [-76.3139, 39.3573], + [-76.2822, 39.2998], + [-76.2279, 39.35], + [-76.1024, 39.4348], + [-76.1133, 39.4871], + [-76.0839, 39.5467], + [-75.97, 39.5575], + [-75.9981, 39.4655], + [-75.9156, 39.5033], + [-76.0374, 39.386], + [-76.1109, 39.3722], + [-76.1865, 39.3186], + [-76.169, 39.2945], + [-76.2208, 39.2599], + [-76.2781, 39.1479], + [-76.2494, 39.1319], + [-76.2267, 39.0531], + [-76.1693, 39.1271], + [-76.1425, 39.0864], + [-76.1763, 39.0574], + [-76.1625, 39.0069], + [-76.2022, 38.9722], + [-76.1947, 38.8839], + [-76.1294, 38.9094], + [-76.1981, 38.845], + [-76.1839, 38.7581], + [-76.2658, 38.8503], + [-76.2981, 38.8283], + [-76.3428, 38.75], + [-76.3337, 38.7033], + [-76.2964, 38.7728], + [-76.2714, 38.709], + [-76.2381, 38.7108], + [-76.1083, 38.6214], + [-76.0258, 38.5786], + [-76.0447, 38.5619], + [-76.1133, 38.5814], + [-76.1763, 38.6281], + [-76.2067, 38.6086], + [-76.2722, 38.6175], + [-76.2608, 38.5481], + [-76.1978, 38.5303], + [-76.3277, 38.4993], + [-76.3319, 38.4742], + [-76.2333, 38.345], + [-76.2319, 38.3869], + [-76.1836, 38.3601], + [-76.1647, 38.3156], + [-76.0744, 38.2686], + [-76.0553, 38.2261], + [-76.0272, 38.2817], + [-76.0503, 38.3092], + [-75.9986, 38.3741], + [-75.9638, 38.3246], + [-76.0083, 38.305], + [-75.9489, 38.2378], + [-75.9404, 38.3061], + [-75.8634, 38.3592], + [-75.9188, 38.2645], + [-75.8615, 38.2027], + [-75.9368, 38.1898], + [-75.9347, 38.1483], + [-75.7948, 38.1358], + [-75.8664, 38.0956], + [-75.8547, 38.0694], + [-75.7748, 38.0733], + [-75.8365, 38.0325], + [-75.8922, 37.9558], + [-75.8647, 37.9133], + [-75.7786, 37.9736], + [-75.7378, 37.9828], + [-75.6358, 37.9536], + [-75.7142, 37.9378], + [-75.7378, 37.9008], + [-75.6928, 37.8678], + [-75.7431, 37.7869], + [-75.8133, 37.7481], + [-75.8531, 37.6781], + [-75.8869, 37.6536], + [-75.9825, 37.4297], + [-75.9664, 37.3914], + [-76.0146, 37.3298], + [-76.0136, 37.2082], + [-75.9414, 37.0947], + [-75.9281, 37.2614], + [-75.8956, 37.3503], + [-75.8619, 37.3925], + [-75.8306, 37.3869], + [-75.8186, 37.4511], + [-75.7533, 37.5072], + [-75.7278, 37.5511], + [-75.6581, 37.4867], + [-75.6139, 37.5525], + [-75.6689, 37.5294], + [-75.6961, 37.5717], + [-75.6292, 37.5883], + [-75.6681, 37.6119], + [-75.6492, 37.6519], + [-75.6053, 37.62], + [-75.5794, 37.7444], + [-75.5531, 37.7417], + [-75.5194, 37.7969], + [-75.4164, 37.8906], + [-75.4364, 37.9633], + [-75.3761, 38.0086], + [-75.365, 38.0736], + [-75.3008, 38.0989], + [-75.2608, 38.2045], + [-75.2194, 38.2464], + [-75.19, 38.2275], + [-75.0958, 38.3289], + [-75.1272, 38.3614], + [-75.1169, 38.4381], + [-75.0497, 38.4506], + [-75.0583, 38.5872], + [-75.0972, 38.5786], + [-75.1553, 38.6078], + [-75.151071674, 38.64310412], + [-75.1189, 38.6928], + [-75.0722, 38.6703], + [-75.0897, 38.7972], + [-75.1303, 38.7814], + [-75.1856, 38.8033], + [-75.3061, 38.9158], + [-75.3194, 38.9897], + [-75.3914, 39.0525], + [-75.4128, 39.1508], + [-75.3957, 39.1896], + [-75.4081, 39.2642], + [-75.4869, 39.3569], + [-75.4333, 39.3939], + [-75.3866, 39.3565], + [-75.3276, 39.3405], + [-75.288, 39.2908], + [-75.1709, 39.2353], + [-75.1372, 39.1812], + [-75.1087, 39.2187], + [-75.0489, 39.2151], + [-74.8865, 39.1584], + [-74.9019, 39.0902], + [-74.957, 38.9983], + [-74.9725, 38.9389], + [-74.9183, 38.93], + [-74.8339, 38.9908], + [-74.8044, 39.0333], + [-74.7619, 39.0603], + [-74.7497, 39.1011], + [-74.6961, 39.1465], + [-74.5989, 39.2589], + [-74.6352, 39.3067], + [-74.5864, 39.3131], + [-74.5181, 39.3633], + [-74.4078, 39.3642], + [-74.4397, 39.3953], + [-74.4878, 39.395], + [-74.4574, 39.4474], + [-74.4139, 39.4772], + [-74.4168, 39.5436], + [-74.2981, 39.5381], + [-74.3381, 39.5686], + [-74.307, 39.6016], + [-74.2202, 39.6441], + [-74.1686, 39.7125], + [-74.1969, 39.7442], + [-74.1805, 39.7978], + [-74.1362, 39.8566], + [-74.1054, 39.9305], + [-74.1094, 39.9748], + [-74.0728, 40.0006], + [-74.0923, 39.831], + [-74.0307, 40.1244], + [-73.9867, 40.2573], + [-73.9767, 40.3636], + [-74, 40.4118], + [-74.1349, 40.4566], + [-74.1928, 40.4419], + [-74.2614, 40.4647], + [-74.2533, 40.5517], + [-74.215, 40.5642], + [-74.19, 40.6442], + [-74.072, 40.6615], + [-74.0328, 40.715], + [-73.9773, 40.7111], + [-73.9717, 40.7433], + [-73.9358, 40.7853], + [-73.8971, 40.8058], + [-73.8044, 40.8119], + [-73.7699, 40.9109], + [-73.6875, 40.9483], + [-73.6625, 40.9878], + [-73.6003, 41.0186], + [-73.5297, 41.0171], + [-73.4936, 41.0537], + [-73.4081, 41.0711], + [-73.3719, 41.1089], + [-73.262, 41.118], + [-73.1736, 41.1686], + [-73.1302, 41.1471], + [-73.0468, 41.2122], + [-73.014, 41.2048], + [-72.9156, 41.2967], + [-72.8936, 41.2419], + [-72.7861, 41.265], + [-72.5808, 41.2719], + [-72.5192, 41.2578], + [-72.4506, 41.2794], + [-72.3875, 41.2608], + [-72.3531, 41.3106], + [-72.3311, 41.2806], + [-72.2725, 41.2853], + [-72.1783, 41.3231], + [-72.0947, 41.3094], + [-71.9681, 41.3516], + [-71.852, 41.3097], + [-71.7147, 41.3305], + [-71.6159, 41.3638], + [-71.5295, 41.3769], + [-71.487, 41.3616], + [-71.4217, 41.4711], + [-71.4185, 41.5287], + [-71.4455, 41.5723], + [-71.4074, 41.5882], + [-71.4092, 41.6631], + [-71.3802, 41.7271], + [-71.393, 41.8179], + [-71.3377, 41.7248], + [-71.2799, 41.7415], + [-71.3071, 41.673], + [-71.2691, 41.6507], + [-71.227, 41.7183], + [-71.197, 41.7046], + [-71.2215, 41.5607], + [-71.176, 41.4589], + [-71.0942, 41.5032], + [-71.0547, 41.5512], + [-71.0361, 41.483], + [-70.9506, 41.5168], + [-70.9152, 41.6219], + [-70.8004, 41.6302], + [-70.7566, 41.6532], + [-70.7652, 41.7109], + [-70.7216, 41.7359], + [-70.6512, 41.7143], + [-70.6378, 41.7367], + [-70.5797, 41.7533], + [-70.5639, 41.7711], + [-70.5439, 41.7772], + [-70.5256, 41.8578], + [-70.5367, 41.9208], + [-70.5844, 41.9515], + [-70.6468, 41.9503], + [-70.7106, 42.0014], + [-70.6372, 42.0836], + [-70.6778, 42.1233], + [-70.7206, 42.2072], + [-70.7677, 42.2511], + [-70.8547, 42.2678], + [-70.9669, 42.2453], + [-71.0453, 42.2944], + [-71.0436, 42.3231], + [-70.9764, 42.3708], + [-70.9814, 42.4259], + [-70.9192, 42.4681], + [-70.8947, 42.46], + [-70.8407, 42.5186], + [-70.8692, 42.5478], + [-70.6983, 42.5767], + [-70.5951, 42.6344], + [-70.63, 42.693], + [-70.6833, 42.6542], + [-70.7272, 42.6481], + [-70.7942, 42.75], + [-70.8269, 42.8875], + [-70.7108, 43.0425], + [-70.7367, 43.0744], + [-70.6644, 43.0764], + [-70.5753, 43.2219], + [-70.5889, 43.2631], + [-70.5153, 43.3454], + [-70.451, 43.3468], + [-70.3639, 43.4386], + [-70.3856, 43.4953], + [-70.3519, 43.5364], + [-70.2728, 43.5625], + [-70.1972, 43.565], + [-70.2514, 43.6781], + [-70.1647, 43.7725], + [-70.1031, 43.8128], + [-69.9844, 43.8675], + [-69.9537, 43.849], + [-70.0172, 43.7789], + [-69.9778, 43.7867], + [-69.8892, 43.8822], + [-69.8454, 43.8048], + [-69.876, 43.7911], + [-69.8517, 43.7031], + [-69.8031, 43.7442], + [-69.7909, 43.7904], + [-69.8112, 43.8358], + [-69.8092, 43.9256], + [-69.737, 43.9021], + [-69.6643, 43.9651], + [-69.6606, 43.8836], + [-69.6307, 43.8373], + [-69.5589, 43.8922], + [-69.5022, 43.8389], + [-69.4196, 43.9798], + [-69.3464, 44.056], + [-69.3708, 43.9772], + [-69.3028, 43.978], + [-69.2569, 43.9228], + [-69.2135, 43.9361], + [-69.1649, 44.0027], + [-69.0732, 44.0462], + [-69.0528, 44.0848], + [-69.1069, 44.0907], + [-69.0605, 44.2071], + [-68.9539, 44.3239], + [-68.9475, 44.3536], + [-68.9939, 44.4214], + [-68.9214, 44.4572], + [-68.8603, 44.4461], + [-68.7783, 44.4922], + [-68.8161, 44.4281], + [-68.8278, 44.3119], + [-68.7594, 44.3317], + [-68.6056, 44.2758], + [-68.5228, 44.2283], + [-68.5203, 44.2664], + [-68.5636, 44.3081], + [-68.545, 44.3556], + [-68.5678, 44.3856], + [-68.4975, 44.4167], + [-68.4675, 44.4936], + [-68.4375, 44.4825], + [-68.4281, 44.3964], + [-68.3225, 44.4628], + [-68.2833, 44.4517], + [-68.2689, 44.5043], + [-68.23, 44.4631], + [-68.2117, 44.5197], + [-68.1711, 44.4697], + [-68.12, 44.4575], + [-68.1144, 44.4075], + [-68.0764, 44.3472], + [-68.0456, 44.3384], + [-68.0126, 44.4036], + [-67.96, 44.3978], + [-67.9928, 44.46], + [-67.9679, 44.5041], + [-67.9564, 44.4297], + [-67.9022, 44.3956], + [-67.8542, 44.4789], + [-67.8525, 44.5589], + [-67.7992, 44.5697], + [-67.7807, 44.5222], + [-67.7533, 44.6017], + [-67.7428, 44.4967], + [-67.6434, 44.5659], + [-67.6355, 44.5285], + [-67.5715, 44.5295], + [-67.5514, 44.6553], + [-67.459, 44.5959], + [-67.396, 44.6021], + [-67.3619, 44.6351], + [-67.39, 44.6957], + [-67.3061, 44.7087], + [-67.3128, 44.6597], + [-67.2344, 44.6367], + [-67.189, 44.6442], + [-67.0735, 44.7409], + [-66.979, 44.8056], + [-67.0183, 44.8861], + [-67.0772, 44.8767], + [-67.1516, 44.8217], + [-67.1496, 44.8623], + [-67.2044, 44.9067], + [-67.0884, 44.918], + [-67.0319, 44.9389], + [-67.1086, 45.0592], + [-67.1147, 45.0975], + [-67.1633, 45.1583], + [-67.2428, 45.1692], + [-67.2808, 45.1917], + [-67.3022, 45.1451], + [-67.3816, 45.1521], + [-67.4663, 45.2477], + [-67.4776, 45.2873], + [-67.4215, 45.3763], + [-67.474, 45.4237], + [-67.4876, 45.4897], + [-67.4516, 45.5111], + [-67.4257, 45.5785], + [-67.4566, 45.6053], + [-67.5302, 45.5983], + [-67.6736, 45.6278], + [-67.7091, 45.6793], + [-67.7593, 45.6712], + [-67.8029, 45.696], + [-67.7825, 45.7309], + [-67.8034, 45.7982], + [-67.7651, 45.8207], + [-67.8027, 45.8737], + [-67.7549, 45.9149], + [-67.781, 45.9457], + [-67.7839, 46.6017], + [-67.7836, 47.0632], + [-67.8893, 47.1106], + [-67.958, 47.2003], + [-68.2438, 47.3526], + [-68.3698, 47.3517], + [-68.3805, 47.2874], + [-68.4752, 47.297], + [-68.5804, 47.2869], + [-68.6124, 47.246], + [-68.6893, 47.2428], + [-68.8158, 47.2119], + [-68.8975, 47.1766], + [-69.0405, 47.2439], + [-69.0547, 47.3146], + [-69.0443, 47.4028], + [-69.1786, 47.4569], + [-69.2218, 47.4576], + [-69.392, 47.2984], + [-69.9971, 46.6958], + [-70.0572, 46.4147], + [-70.0953, 46.4081], + [-70.1473, 46.3589], + [-70.1953, 46.3434], + [-70.292, 46.1909], + [-70.242, 46.1502], + [-70.2508, 46.0979], + [-70.283, 46.0999], + [-70.3142, 46.0208], + [-70.3144, 45.9665], + [-70.2602, 45.9644], + [-70.2663, 45.8849], + [-70.3455, 45.8508], + [-70.4162, 45.7956], + [-70.3895, 45.7364], + [-70.5613, 45.6627], + [-70.6459, 45.6041], + [-70.7184, 45.5127], + [-70.7158, 45.4876], + [-70.6523, 45.444], + [-70.626, 45.4032], + [-70.6598, 45.3777], + [-70.7192, 45.3943], + [-70.7545, 45.4277], + [-70.8233, 45.403], + [-70.8066, 45.3211], + [-70.8515, 45.2344], + [-70.8929, 45.2439], + [-70.9234, 45.3181], + [-70.9566, 45.3426], + [-71.0997, 45.3023], + [-71.1623, 45.2469], + [-71.23, 45.2503], + [-71.2839, 45.3023], + [-71.3603, 45.2686], + [-71.4132, 45.2202], + [-71.4342, 45.1202], + [-71.4847, 45.0809], + [-71.511, 45.0134], + [-72.3084, 45.0037], + [-72.6332, 45.014], + [-73.0549, 45.0157], + [-73.6293, 45.0034], + [-73.8279, 45.0031], + [-74.1501, 44.9912], + [-74.3476, 44.9908], + [-74.6457, 44.9992], + [-74.7334, 44.9905], + [-74.8262, 45.0158], + [-74.9086, 44.9867], + [-74.9922, 44.9777], + [-75.0175, 44.9549], + [-75.1305, 44.9165], + [-75.3077, 44.841], + [-75.5457, 44.687], + [-75.7674, 44.5205], + [-75.824, 44.431], + [-75.9106, 44.3715], + [-75.9948, 44.3475], + [-76.1629, 44.2816], + [-76.1656, 44.241], + [-76.2437, 44.2051], + [-76.3157, 44.1987], + [-76.3543, 44.1344], + [-76.4411, 44.0944], + [-76.7983, 43.6314], + [-78.6812, 43.6336], + [-79.2028, 43.451], + [-79.0566, 43.2488], + [-79.044, 43.1499], + [-79.0748, 43.0813], + [-79.0017, 43.0582], + [-79.0072, 42.9834], + [-78.9321, 42.9555], + [-78.9062, 42.9051], + [-78.9369, 42.831], + [-79.7627, 42.5105], + [-80.0733, 42.3926], + [-80.5139, 42.3244], + [-81.2606, 42.2055], + [-81.6388, 42.0214], + [-82.4077, 41.6769], + [-82.6812, 41.6773], + [-83.0678, 41.8626], + [-83.1466, 42.0332], + [-83.1231, 42.1205], + [-83.1332, 42.173], + [-83.0954, 42.2842], + [-83.0503, 42.3177], + [-82.9358, 42.3446], + [-82.8683, 42.3276], + [-82.6412, 42.5548], + [-82.6002, 42.5496], + [-82.5213, 42.6104], + [-82.4669, 42.7739], + [-82.4782, 42.8031], + [-82.4532, 42.9257], + [-82.4113, 42.9707], + [-82.4243, 42.9983], + [-82.1229, 43.5884], + [-82.2077, 43.9512], + [-82.4175, 44.9067], + [-82.5254, 45.3409], + [-83.1983, 45.644], + [-83.5921, 45.8187], + [-83.4356, 45.9965], + [-83.5711, 46.1026], + [-83.6544, 46.1194], + [-83.7567, 46.1015], + [-83.8258, 46.1165], + [-83.9036, 46.0585], + [-83.9548, 46.0562], + [-84.0005, 46.1143], + [-84.005, 46.1506], + [-84.0726, 46.1875], + [-84.1046, 46.2389], + [-84.1432, 46.4171], + [-84.1099, 46.5021], + [-84.1293, 46.5313], + [-84.2223, 46.5343], + [-84.2505, 46.5027], + [-84.3711, 46.5083], + [-84.4429, 46.4897], + [-84.4764, 46.4532], + [-84.5561, 46.4597], + [-84.7638, 46.6349], + [-84.8434, 46.8873], + [-86.0434, 47.3856], + [-86.7729, 47.6817], + [-87.4059, 47.9341], + [-87.8649, 48.1137], + [-88.3709, 48.3042], + [-88.689, 48.2415], + [-89.3391, 47.9699], + [-89.4877, 48.0109], + [-89.7699, 48.0229], + [-89.8676, 47.998], + [-89.9743, 48.0441], + [-90.0335, 48.0963], + [-90.1358, 48.1127], + [-90.3466, 48.0983], + [-90.4664, 48.1095], + [-90.6375, 48.1059], + [-90.7422, 48.1137], + [-90.8139, 48.1907], + [-90.8399, 48.2459], + [-90.8861, 48.2466], + [-91.1333, 48.1569], + [-91.2544, 48.0815], + [-91.3991, 48.0571], + [-91.4773, 48.0801], + [-91.5562, 48.0804], + [-91.6911, 48.1273], + [-91.721, 48.2007], + [-91.8623, 48.2112], + [-91.9833, 48.261], + [-91.9998, 48.321], + [-92.0548, 48.3591], + [-92.2625, 48.3548], + [-92.3052, 48.3194], + [-92.2797, 48.2427], + [-92.3643, 48.2338], + [-92.4748, 48.3733], + [-92.4665, 48.435], + [-92.5068, 48.4504], + [-92.6527, 48.4408], + [-92.6962, 48.492], + [-92.6315, 48.4987], + [-92.6354, 48.5426], + [-92.7268, 48.5391], + [-92.9472, 48.6214], + [-93.1798, 48.6228], + [-93.2564, 48.6425], + [-93.4636, 48.592], + [-93.4679, 48.5466], + [-93.6129, 48.5247], + [-93.7518, 48.5198], + [-93.7955, 48.5306], + [-93.817, 48.6146], + [-93.8505, 48.6316], + [-94.0805, 48.6538], + [-94.2233, 48.6602], + [-94.257, 48.7035], + [-94.4165, 48.7103], + [-94.452, 48.6928], + [-94.5351, 48.7023], + [-94.6206, 48.7374], + [-94.6823, 48.8088], + [-94.6785, 48.8808], + [-94.748, 49.0975], + [-94.7719, 49.1224], + [-94.8247, 49.3069], + [-94.9561, 49.3694], + [-95.0534, 49.3529], + [-95.1497, 49.3833], + [-95.1514, 49], + [-108.021, 49], + [-108.6609, 49.001], + [-115.2603, 49], + [-116.4211, 49.0015], + [-117.0268, 48.9996], + [-117.4335, 49.0009], + [-121.9554, 49], + [-122.7539, 49.0033], + [-122.7916, 48.9798], + [-122.7514, 48.9111], + [-122.7866, 48.8855], + [-122.7192, 48.8494], + [-122.7056, 48.8003], + [-122.6472, 48.7847], + [-122.6502, 48.7156], + [-122.6085, 48.7628], + [-122.5356, 48.7754], + [-122.4903, 48.7425], + [-122.5191, 48.7168], + [-122.5038, 48.6568], + [-122.4261, 48.6], + [-122.4886, 48.5358], + [-122.4709, 48.469], + [-122.585, 48.4661], + [-122.6147, 48.5225], + [-122.6658, 48.4847], + [-122.6575, 48.4083], + [-122.558, 48.4281], + [-122.5331, 48.3747], + [-122.4847, 48.3714], + [-122.3747, 48.3008], + [-122.3972, 48.25], + [-122.4678, 48.2686], + [-122.5311, 48.2497], + [-122.5372, 48.1839], + [-122.49, 48.1206], + [-122.4419, 48.1307], + [-122.4783, 48.1878], + [-122.4486, 48.2325], + [-122.3922, 48.2303], + [-122.3533, 48.1879], + [-122.362, 48.1204], + [-122.2378, 48.0303], + [-122.2033, 48.0344], + [-122.2309, 47.9706], + [-122.3066, 47.9498], + [-122.3373, 47.8499], + [-122.3954, 47.8066], + [-122.3736, 47.7266], + [-122.4358, 47.6619], + [-122.3369, 47.6008], + [-122.4209, 47.5761], + [-122.3682, 47.4592], + [-122.3259, 47.3934], + [-122.324, 47.3504], + [-122.429, 47.3193], + [-122.435, 47.2622], + [-122.5101, 47.307], + [-122.5631, 47.2443], + [-122.5916, 47.1767], + [-122.685, 47.0978], + [-122.7858, 47.127], + [-122.8149, 47.1781], + [-122.9077, 47.1403], + [-122.912, 47.0556], + [-122.9511, 47.0974], + [-123, 47.0742], + [-122.9421, 47.1718], + [-123.0259, 47.1095], + [-123.0195, 47.1524], + [-122.9628, 47.1695], + [-122.9353, 47.2057], + [-122.9276, 47.2804], + [-122.846, 47.3114], + [-122.8255, 47.353], + [-122.7877, 47.2989], + [-122.8308, 47.244], + [-122.7721, 47.1685], + [-122.7212, 47.2214], + [-122.7532, 47.2894], + [-122.731, 47.3358], + [-122.6805, 47.3664], + [-122.6733, 47.2881], + [-122.5765, 47.2572], + [-122.5482, 47.2856], + [-122.572, 47.3269], + [-122.5385, 47.376], + [-122.5319, 47.4697], + [-122.4957, 47.5101], + [-122.5467, 47.5249], + [-122.5326, 47.5646], + [-122.5698, 47.5842], + [-122.6077, 47.5469], + [-122.5909, 47.6347], + [-122.6142, 47.6533], + [-122.5539, 47.7464], + [-122.4728, 47.7484], + [-122.5133, 47.8806], + [-122.5478, 47.9189], + [-122.5967, 47.9202], + [-122.5735, 47.8746], + [-122.6846, 47.7979], + [-122.7487, 47.7201], + [-122.7532, 47.6678], + [-122.9155, 47.6218], + [-123.0311, 47.5104], + [-123.1194, 47.39], + [-123.0242, 47.3613], + [-123.0136, 47.3786], + [-122.901, 47.4225], + [-122.9116, 47.3895], + [-123.0192, 47.3547], + [-123.1187, 47.3391], + [-123.158, 47.3703], + [-123.1104, 47.4551], + [-123.0578, 47.5014], + [-122.982, 47.615], + [-122.9444, 47.6307], + [-122.8889, 47.6903], + [-122.8645, 47.7699], + [-122.7866, 47.8038], + [-122.8322, 47.6918], + [-122.7715, 47.6934], + [-122.7431, 47.8092], + [-122.6864, 47.8325], + [-122.693, 47.8678], + [-122.6304, 47.8846], + [-122.6809, 47.9324], + [-122.7347, 48.0334], + [-122.8008, 48.0867], + [-122.7487, 48.117], + [-122.7637, 48.1429], + [-122.8308, 48.1345], + [-122.8845, 48.1061], + [-122.8835, 48.0773], + [-122.827, 48.0442], + [-122.8399, 48.002], + [-122.9153, 48.0958], + [-122.9752, 48.097], + [-123.0385, 48.0547], + [-123.0623, 48.1182], + [-123.1267, 48.1542], + [-123.1769, 48.155], + [-123.2408, 48.1172], + [-123.3956, 48.1144], + [-123.5553, 48.1511], + [-123.6275, 48.1389], + [-123.6725, 48.1631], + [-123.8633, 48.1542], + [-124.0495, 48.1776], + [-124.1292, 48.2206], + [-124.2491, 48.2641], + [-124.275, 48.2545], + [-124.3844, 48.285], + [-124.5646, 48.3676], + [-124.6581, 48.391], + [-124.7167, 48.3909], + [-124.7077, 48.3537], + [-124.6595, 48.327], + [-124.7047, 48.2369], + [-124.7, 48.1906], + [-124.7342, 48.1647], + [-124.6872, 48.0978], + [-124.6614, 47.9461], + [-124.6229, 47.8863], + [-124.4969, 47.8225], + [-124.4728, 47.7717], + [-124.4314, 47.7464], + [-124.3667, 47.5844], + [-124.3203, 47.3558], + [-124.2794, 47.3036], + [-124.2339, 47.2847], + [-124.1861, 47.1333], + [-124.1723, 46.9931], + [-124.1778, 46.9261], + [-124.1272, 46.9489], + [-124.1492, 47.0283], + [-124.107, 47.0424], + [-124.0292, 47.0299], + [-124.0203, 46.9911], + [-123.9462, 46.9679], + [-123.8231, 46.9572], + [-123.9826, 46.9231], + [-124.0861, 46.8617], + [-124.1311, 46.9], + [-124.1011, 46.8136], + [-124.0969, 46.7464], + [-124.0201, 46.7129], + [-123.9708, 46.7378], + [-123.9153, 46.7261], + [-123.8939, 46.75], + [-123.8512, 46.703], + [-123.9222, 46.6731], + [-123.9586, 46.6115], + [-123.8947, 46.5486], + [-123.9439, 46.4756], + [-123.9054, 46.4291], + [-123.9664, 46.3792], + [-124.0147, 46.3811], + [-124.0311, 46.4936], + [-124.0236, 46.5842], + [-124.07, 46.6364], + [-124.0594, 46.5386], + [-124.0594, 46.3956], + [-124.0778, 46.2842], + [-124.0228, 46.3142], + [-123.8733, 46.2406], + [-123.8054, 46.2836], + [-123.7586, 46.2755], + [-123.7114, 46.3086], + [-123.6731, 46.2685], + [-123.5864, 46.2598], + [-123.5111, 46.2698], + [-123.6126, 46.1874], + [-123.7325, 46.1736], + [-123.7679, 46.205], + [-123.8264, 46.19], + [-123.855, 46.1572], + [-123.9526, 46.2078], + [-123.9828, 46.2039], + [-123.9329, 46.0674], + [-123.9389, 45.9766], + [-123.9973, 45.9454], + [-123.9632, 45.8976], + [-123.9693, 45.7808], + [-123.933, 45.6917], + [-123.9575, 45.5709], + [-123.9072, 45.5473], + [-123.8746, 45.4988], + [-123.8988, 45.4754], + [-123.944, 45.5072], + [-123.9799, 45.4866], + [-123.9314, 45.4037], + [-123.9778, 45.3385], + [-123.9619, 45.2797], + [-123.9705, 45.1583], + [-124.0122, 45.0772], + [-124.0089, 45.0122], + [-124.0311, 44.9033], + [-124.0764, 44.7719], + [-124.0572, 44.7367], + [-124.0575, 44.6596], + [-124.0864, 44.4856], + [-124.0808, 44.4256], + [-124.0998, 44.3342], + [-124.1225, 44.0927], + [-124.1642, 43.8289], + [-124.2286, 43.5689], + [-124.2634, 43.483], + [-124.3336, 43.3611], + [-124.3858, 43.3306], + [-124.3814, 43.2689], + [-124.4753, 42.9622], + [-124.5557, 42.8322], + [-124.5137, 42.7465], + [-124.4739, 42.7333], + [-124.4136, 42.6592], + [-124.39, 42.57], + [-124.4344, 42.4322], + [-124.4325, 42.3203], + [-124.4144, 42.2519], + [-124.3614, 42.1808], + [-124.3526, 42.101], + [-124.3003, 42.0514], + [-124.2151, 42.0044], + [-124.2106, 41.8769], + [-124.2572, 41.7858], + [-124.1653, 41.7406], + [-124.0822, 41.5108], + [-124.0633, 41.4333], + [-124.1078, 41.2233], + [-124.1592, 41.1442], + [-124.1564, 41.0661], + [-124.1125, 41.0287], + [-124.1531, 40.8675], + [-124.0881, 40.8529], + [-124.0889, 40.8236], + [-124.1836, 40.8008], + [-124.2228, 40.7222], + [-124.2997, 40.6668], + [-124.409, 40.4438], + [-124.3752, 40.3947], + [-124.3496, 40.3124], + [-124.3637, 40.2618], + [-124.1873, 40.1303], + [-124.1105, 40.1043], + [-124.0808, 40.0309], + [-124.0368, 40.0139], + [-123.9304, 39.9094], + [-123.8991, 39.8553], + [-123.8528, 39.8331], + [-123.8327, 39.7247], + [-123.7864, 39.6607], + [-123.7736, 39.5311], + [-123.8197, 39.4361], + [-123.8271, 39.3487], + [-123.8008, 39.3189], + [-123.7713, 39.1949], + [-123.7353, 39.1583], + [-123.6897, 39.0339], + [-123.73, 38.9542], + [-123.6436, 38.8414], + [-123.4411, 38.6989], + [-123.3333, 38.5644], + [-123.2511, 38.5095], + [-123.1306, 38.4523], + [-123.0647, 38.3536], + [-123.0711, 38.3269], + [-123.0039, 38.2966], + [-122.9503, 38.2156], + [-122.9304, 38.2135], + [-122.8442, 38.0908], + [-122.9831, 38.2347], + [-122.9546, 38.1767], + [-122.9613, 38.1114], + [-123.01, 38.0036], + [-122.9325, 38.0358], + [-122.8306, 38.0028], + [-122.7756, 37.9433], + [-122.7019, 37.8936], + [-122.6747, 37.9131], + [-122.4999, 37.8198], + [-122.4378, 37.8828], + [-122.5014, 37.9272], + [-122.4617, 38.0033], + [-122.4969, 38.02], + [-122.4781, 38.1147], + [-122.3958, 38.1433], + [-122.3139, 38.1092], + [-122.2742, 38.0661], + [-122.2311, 38.0652], + [-122.1339, 38.0419], + [-122.0442, 38.1369], + [-121.9733, 38.0736], + [-121.9122, 38.0835], + [-121.9021, 38.0495], + [-121.8456, 38.0737], + [-121.7996, 38.0628], + [-121.7432, 38.0906], + [-121.683, 38.1519], + [-121.7125, 38.0816], + [-121.8046, 38.055], + [-121.8124, 38.0178], + [-121.9506, 38.0514], + [-122.0703, 38.0533], + [-122.1481, 38.0217], + [-122.1903, 38.0531], + [-122.2625, 38.0506], + [-122.3, 38.0103], + [-122.3964, 37.9542], + [-122.3892, 37.9092], + [-122.3339, 37.9092], + [-122.2958, 37.8294], + [-122.3325, 37.7825], + [-122.2464, 37.7517], + [-122.1572, 37.6558], + [-122.1478, 37.5942], + [-122.1123, 37.5106], + [-122.0581, 37.4964], + [-122.0397, 37.4408], + [-122.2108, 37.4919], + [-122.2012, 37.5396], + [-122.2622, 37.5744], + [-122.3591, 37.5922], + [-122.3858, 37.6289], + [-122.3932, 37.7074], + [-122.3803, 37.7739], + [-122.4089, 37.8117], + [-122.5128, 37.7764], + [-122.4936, 37.6275], + [-122.5194, 37.5378], + [-122.4642, 37.4972], + [-122.4009, 37.3586], + [-122.4192, 37.2478], + [-122.4058, 37.1972], + [-122.3375, 37.1176], + [-122.2878, 37.1047], + [-122.2231, 37.0242], + [-122.1528, 36.9753], + [-122.0701, 36.9481], + [-121.9722, 36.9536], + [-121.9393, 36.9779], + [-121.8892, 36.9581], + [-121.8286, 36.8819], + [-121.7881, 36.805], + [-121.8201, 36.6662], + [-121.8859, 36.6008], + [-121.9386, 36.6403], + [-121.9772, 36.5797], + [-121.9353, 36.5625], + [-121.9473, 36.4903], + [-121.9144, 36.4253], + [-121.8989, 36.3083], + [-121.8114, 36.2325], + [-121.7081, 36.1878], + [-121.6331, 36.1189], + [-121.573, 36.0226], + [-121.5028, 36], + [-121.4667, 35.8881], + [-121.4161, 35.8575], + [-121.3177, 35.7557], + [-121.2788, 35.6673], + [-121.1719, 35.6382], + [-121.0977, 35.547], + [-121.0059, 35.4617], + [-120.9087, 35.4482], + [-120.84, 35.3453], + [-120.9, 35.2522], + [-120.8564, 35.2075], + [-120.7564, 35.1594], + [-120.6992, 35.1708], + [-120.6388, 35.1334], + [-120.6358, 35.0178], + [-120.6683, 34.9008], + [-120.6097, 34.8436], + [-120.6386, 34.7564], + [-120.6006, 34.7059], + [-120.6464, 34.5789], + [-120.5147, 34.5253], + [-120.4725, 34.4486], + [-120.3422, 34.4569], + [-120.2967, 34.4706], + [-120.1417, 34.4733], + [-120.007, 34.4603], + [-119.8783, 34.4064], + [-119.7817, 34.4156], + [-119.7281, 34.3956], + [-119.6156, 34.4211], + [-119.4592, 34.3739], + [-119.3903, 34.3181], + [-119.2781, 34.2669], + [-119.2133, 34.1453], + [-119.1439, 34.1083], + [-118.9375, 34.0431], + [-118.8525, 34.0336], + [-118.8075, 34.0005], + [-118.7403, 34.0331], + [-118.5695, 34.0417], + [-118.5247, 34.0297], + [-118.4433, 33.9464], + [-118.3913, 33.8379], + [-118.4286, 33.7742], + [-118.297, 33.7089], + [-118.2528, 33.7478], + [-118.1811, 33.7649], + [-118.0947, 33.7369], + [-118.0056, 33.6575], + [-117.9281, 33.6075], + [-117.8828, 33.6017], + [-117.7822, 33.5406], + [-117.7142, 33.4594], + [-117.6767, 33.4608], + [-117.4719, 33.2989], + [-117.3262, 33.1189], + [-117.2789, 33.0005], + [-117.2514, 32.8744], + [-117.2811, 32.8214], + [-117.2389, 32.7809], + [-117.2558, 32.6997], + [-117.2154, 32.7246], + [-117.1253, 32.6806], + [-117.0914, 32.5978], + [-117.1216, 32.5881], + [-117.1231, 32.5344], + [-116.5948, 32.5791], + [-116.0114, 32.6259], + [-114.7202, 32.7186], + [-114.7655, 32.6435], + [-114.807, 32.6227], + [-114.8136, 32.4939], + [-113.9713, 32.2378], + [-113.2108, 32.0001], + [-112.0007, 31.6272], + [-111.075, 31.3324], + [-109.5106, 31.3343], + [-108.957, 31.3322], + [-108.2085, 31.3334], + [-108.2084, 31.7838], + [-106.5285, 31.7838], + [-106.4876, 31.7477], + [-106.4507, 31.7642], + [-106.3816, 31.7324], + [-106.3032, 31.6218], + [-106.2811, 31.5626], + [-106.2471, 31.5425], + [-106.2196, 31.4815], + [-106.0802, 31.3985], + [-106.0048, 31.3927], + [-105.9541, 31.3645], + [-105.9325, 31.3127], + [-105.8749, 31.2912], + [-105.7726, 31.1662], + [-105.6485, 31.1155], + [-105.6041, 31.0833], + [-105.5576, 30.99], + [-105.4162, 30.9003], + [-105.3877, 30.8537], + [-105.2504, 30.799], + [-105.2155, 30.8058], + [-105.1617, 30.7524], + [-105.1188, 30.7497], + [-105.0546, 30.6821], + [-105.0069, 30.6858], + [-104.9717, 30.61], + [-104.927, 30.6046], + [-104.8736, 30.5135], + [-104.8592, 30.3904], + [-104.8166, 30.3751], + [-104.8113, 30.3327], + [-104.7605, 30.2959], + [-104.6873, 30.1799], + [-104.6862, 30.0848], + [-104.7066, 30.0506], + [-104.6838, 29.9291], + [-104.6101, 29.8398], + [-104.5506, 29.7391], + [-104.5444, 29.6816], + [-104.5159, 29.641], + [-104.3845, 29.5422], + [-104.2645, 29.5127], + [-104.2091, 29.4814], + [-104.1679, 29.3955], + [-104.1078, 29.3736], + [-104.0379, 29.3199], + [-103.9734, 29.2961], + [-103.7833, 29.2655], + [-103.7186, 29.1809], + [-103.5504, 29.1545], + [-103.4289, 29.0421], + [-103.3865, 29.0214], + [-103.1538, 28.9715], + [-103.1161, 28.9842], + [-103.1007, 29.0603], + [-103.0338, 29.1012], + [-102.9786, 29.1862], + [-102.9504, 29.1783], + [-102.8678, 29.2231], + [-102.9059, 29.2615], + [-102.8775, 29.3546], + [-102.8392, 29.3589], + [-102.8083, 29.5226], + [-102.7402, 29.5979], + [-102.7362, 29.6417], + [-102.6933, 29.6767], + [-102.674, 29.7446], + [-102.548, 29.7446], + [-102.5174, 29.7838], + [-102.4071, 29.7642], + [-102.3415, 29.8694], + [-102.3008, 29.8777], + [-102.116, 29.7919], + [-102.0727, 29.7866], + [-101.9817, 29.815], + [-101.9337, 29.7855], + [-101.8562, 29.807], + [-101.7101, 29.7618], + [-101.5749, 29.7693], + [-101.5395, 29.7606], + [-101.4534, 29.7847], + [-101.3477, 29.662], + [-101.3057, 29.6542], + [-101.3133, 29.6038], + [-101.2789, 29.5877], + [-101.2479, 29.6195], + [-101.2541, 29.5208], + [-101.1856, 29.518], + [-101.1476, 29.4745], + [-101.0601, 29.4585], + [-101.0047, 29.3653], + [-100.8862, 29.3074], + [-100.8803, 29.2827], + [-100.7943, 29.2421], + [-100.7761, 29.1727], + [-100.6644, 29.0747], + [-100.6454, 28.9399], + [-100.5476, 28.8262], + [-100.5074, 28.7402], + [-100.4973, 28.6587], + [-100.4472, 28.6421], + [-100.4472, 28.6092], + [-100.3985, 28.5851], + [-100.411, 28.5498], + [-100.3407, 28.4488], + [-100.3427, 28.3864], + [-100.2866, 28.3122], + [-100.2942, 28.2836], + [-100.2095, 28.1913], + [-100.0862, 28.1462], + [-100.0182, 28.0657], + [-99.9905, 27.9936], + [-99.9315, 27.9803], + [-99.9373, 27.9409], + [-99.8937, 27.8998], + [-99.8708, 27.794], + [-99.808, 27.7653], + [-99.7226, 27.6674], + [-99.6704, 27.66], + [-99.6387, 27.6267], + [-99.6034, 27.6419], + [-99.5115, 27.5641], + [-99.5282, 27.4982], + [-99.4788, 27.4795], + [-99.5045, 27.3388], + [-99.4966, 27.2729], + [-99.4418, 27.2508], + [-99.4262, 27.1761], + [-99.4453, 27.0218], + [-99.3813, 26.9793], + [-99.3747, 26.9324], + [-99.3285, 26.9195], + [-99.3152, 26.8674], + [-99.282, 26.8588], + [-99.209, 26.7247], + [-99.1982, 26.6529], + [-99.1729, 26.6166], + [-99.1669, 26.536], + [-99.1284, 26.5255], + [-99.0916, 26.4756], + [-99.1132, 26.4312], + [-99.0868, 26.4014], + [-99.0411, 26.4125], + [-98.8803, 26.3662], + [-98.7996, 26.3635], + [-98.7839, 26.3281], + [-98.738, 26.3253], + [-98.7146, 26.27], + [-98.633, 26.2448], + [-98.5797, 26.2539], + [-98.5635, 26.2259], + [-98.4426, 26.1989], + [-98.3216, 26.1183], + [-98.2821, 26.1263], + [-98.249, 26.0721], + [-98.1768, 26.0753], + [-98.1432, 26.0541], + [-98.0763, 26.0675], + [-98.0622, 26.0463], + [-97.8083, 26.0609], + [-97.7911, 26.0336], + [-97.7032, 26.0321], + [-97.6381, 26.0021], + [-97.5407, 25.9313], + [-97.523, 25.8882], + [-97.469, 25.8889], + [-97.4251, 25.8405], + [-97.3769, 25.8431], + [-97.3697, 25.9165], + [-97.2808, 25.9353], + [-97.2157, 25.9701] + ] + ], + [ + [ + [-165.3854, 65.1687], + [-165.3651, 65.1526], + [-165.4526, 65.1214], + [-165.5682, 65.0974], + [-165.6562, 65.0479], + [-165.7312, 65.0729], + [-165.8188, 65.0771], + [-165.8745, 65.0964], + [-165.9672, 65.1682], + [-166.0349, 65.1859], + [-166.0422, 65.2307], + [-166.1292, 65.2292], + [-166.2479, 65.2583], + [-166.3771, 65.2542], + [-166.4724, 65.2203], + [-166.4651, 65.1713], + [-166.5359, 65.1172], + [-166.6568, 65.1036], + [-166.8401, 65.1214], + [-166.8208, 65.0771], + [-166.7063, 65.0563], + [-166.6807, 64.9818], + [-166.5599, 64.9464], + [-166.5005, 64.9474], + [-166.4245, 64.8922], + [-166.3776, 64.813], + [-166.4745, 64.7911], + [-166.4682, 64.7193], + [-166.3911, 64.6401], + [-166.2104, 64.5792], + [-165.8521, 64.5396], + [-165.7437, 64.5375], + [-165.2167, 64.4729], + [-165.0104, 64.4333], + [-164.9271, 64.4396], + [-164.8432, 64.4912], + [-164.7521, 64.5146], + [-164.6187, 64.5062], + [-164.5437, 64.5313], + [-164.325, 64.5667], + [-164.1042, 64.5687], + [-163.9937, 64.5521], + [-163.8833, 64.5729], + [-163.6438, 64.5687], + [-163.5125, 64.55], + [-163.3464, 64.5099], + [-163.2547, 64.4745], + [-163.1729, 64.3979], + [-163.1068, 64.4089], + [-163.0974, 64.462], + [-163.0318, 64.5026], + [-163.1479, 64.5062], + [-163.1755, 64.5349], + [-163.25, 64.5396], + [-163.337, 64.5714], + [-163.3651, 64.5974], + [-163.2818, 64.6026], + [-163.2464, 64.6297], + [-163.1354, 64.6458], + [-163.1208, 64.6], + [-163.0339, 64.5849], + [-163.0188, 64.5417], + [-162.9453, 64.5443], + [-162.8422, 64.4953], + [-162.8537, 64.4443], + [-162.8005, 64.4078], + [-162.8037, 64.3359], + [-162.6318, 64.3839], + [-162.5922, 64.4838], + [-162.5453, 64.5307], + [-162.3333, 64.5979], + [-162.2359, 64.6193], + [-162.1708, 64.6813], + [-161.95, 64.6979], + [-161.8771, 64.7479], + [-161.6812, 64.7813], + [-161.7912, 64.8068], + [-161.6958, 64.8083], + [-161.6474, 64.7755], + [-161.5188, 64.7542], + [-161.413, 64.763], + [-161.3036, 64.8474], + [-161.2016, 64.8932], + [-161.1792, 64.9271], + [-161.112, 64.8839], + [-160.987, 64.8359], + [-160.8734, 64.8057], + [-160.862, 64.7776], + [-160.7776, 64.7182], + [-160.7839, 64.6255], + [-160.8974, 64.5807], + [-160.9297, 64.5505], + [-161.013, 64.5224], + [-161.0333, 64.4958], + [-161.1896, 64.4938], + [-161.3537, 64.5193], + [-161.3771, 64.5333], + [-161.4661, 64.5057], + [-161.4714, 64.4464], + [-161.5286, 64.4089], + [-161.3938, 64.4313], + [-161.3479, 64.4042], + [-161.2005, 64.4161], + [-161.1766, 64.3422], + [-161.0828, 64.2901], + [-161.0125, 64.2833], + [-160.9609, 64.2495], + [-160.9422, 64.0766], + [-160.8943, 63.9932], + [-160.813, 63.912], + [-160.7599, 63.8203], + [-160.7859, 63.7443], + [-160.963, 63.6172], + [-161.0083, 63.6208], + [-161.0359, 63.5755], + [-161.0974, 63.5484], + [-161.1359, 63.5005], + [-161.3062, 63.4688], + [-161.4292, 63.4542], + [-161.5, 63.4688], + [-161.5792, 63.4458], + [-161.6938, 63.4625], + [-161.8062, 63.4375], + [-161.8917, 63.4479], + [-161.9651, 63.4318], + [-162, 63.4458], + [-162.1042, 63.4271], + [-162.0417, 63.4854], + [-162.175, 63.5292], + [-162.3021, 63.5375], + [-162.2651, 63.4932], + [-162.3604, 63.4458], + [-162.4068, 63.4068], + [-162.4203, 63.3568], + [-162.5307, 63.3141], + [-162.5297, 63.2922], + [-162.6958, 63.2125], + [-162.7792, 63.2146], + [-162.8411, 63.1859], + [-162.838, 63.1589], + [-162.9766, 63.1057], + [-163.0359, 63.0609], + [-163.2, 63.0438], + [-163.3146, 63.0208], + [-163.3651, 63.0536], + [-163.5042, 63.1104], + [-163.6089, 63.0755], + [-163.6297, 63.1432], + [-163.6672, 63.1516], + [-163.7276, 63.2078], + [-163.8313, 63.2083], + [-164.0458, 63.2625], + [-164.2724, 63.2391], + [-164.3167, 63.2417], + [-164.4661, 63.1891], + [-164.5828, 63.1193], + [-164.5271, 63.0708], + [-164.4839, 63.0849], + [-164.3729, 63.0646], + [-164.35, 63.0187], + [-164.4787, 63.0286], + [-164.687, 63.0182], + [-164.7828, 62.9474], + [-164.8318, 62.8526], + [-164.862, 62.8224], + [-164.8167, 62.7958], + [-164.6922, 62.787], + [-164.6354, 62.7604], + [-164.5021, 62.7729], + [-164.45, 62.7438], + [-164.4984, 62.7245], + [-164.6193, 62.6464], + [-164.7047, 62.6057], + [-164.8349, 62.5766], + [-164.8458, 62.5438], + [-164.7776, 62.5349], + [-164.7651, 62.5005], + [-164.6521, 62.4521], + [-164.5755, 62.4557], + [-164.5578, 62.4255], + [-164.6417, 62.4188], + [-164.7479, 62.4646], + [-164.8557, 62.4672], + [-164.8583, 62.5333], + [-165.0625, 62.5333], + [-165.2661, 62.4391], + [-165.3297, 62.363], + [-165.6005, 62.188], + [-165.7057, 62.1411], + [-165.7599, 62.0807], + [-165.7703, 62.0026], + [-165.7391, 61.9193], + [-165.637, 61.8505], + [-165.8021, 61.825], + [-165.9187, 61.8271], + [-166.0995, 61.8099], + [-166.0099, 61.7214], + [-165.9208, 61.6979], + [-165.7375, 61.6875], + [-165.7271, 61.6646], + [-165.6479, 61.6854], + [-165.6229, 61.7167], + [-165.5625, 61.725], + [-165.5229, 61.7062], + [-165.6141, 61.6641], + [-165.7396, 61.6583], + [-165.8125, 61.6833], + [-165.8828, 61.662], + [-166.0479, 61.6479], + [-166.0667, 61.6271], + [-166.1516, 61.6422], + [-166.1849, 61.5974], + [-166.1411, 61.5047], + [-166.0646, 61.4896], + [-166.0849, 61.5224], + [-166.0333, 61.5396], + [-165.9354, 61.5458], + [-165.7943, 61.5036], + [-165.7786, 61.4359], + [-165.7026, 61.4411], + [-165.7307, 61.3953], + [-165.8062, 61.4479], + [-165.9287, 61.4453], + [-165.9578, 61.4182], + [-165.8682, 61.3193], + [-165.7318, 61.3047], + [-165.6641, 61.2755], + [-165.6536, 61.1609], + [-165.6104, 61.1104], + [-165.5396, 61.0896], + [-165.4266, 61.0797], + [-165.3786, 61.0984], + [-165.3391, 61.1516], + [-165.3828, 61.2141], + [-165.3401, 61.2214], + [-165.2896, 61.2646], + [-165.237, 61.2734], + [-165.2172, 61.3172], + [-165.2932, 61.3224], + [-165.2354, 61.3625], + [-165.1797, 61.363], + [-165.2078, 61.4005], + [-165.1521, 61.4354], + [-165.063, 61.4078], + [-165.0688, 61.3854], + [-165.1557, 61.4182], + [-165.1547, 61.3589], + [-165.2047, 61.3349], + [-165.2208, 61.2438], + [-165.2974, 61.2474], + [-165.3599, 61.188], + [-165.2922, 61.1786], + [-165.2417, 61.1437], + [-165.1771, 61.1375], + [-165.1786, 61.1089], + [-165.1141, 61.0776], + [-165.0083, 61.0479], + [-165, 61.0896], + [-164.9453, 61.1016], + [-164.9453, 60.9922], + [-164.9729, 61.0208], + [-165.0203, 61.0026], + [-165.1271, 61.0125], + [-165.1891, 60.9547], + [-165.1432, 60.9255], + [-165.0437, 60.9083], + [-164.9703, 60.9453], + [-164.8422, 60.937], + [-164.7979, 60.8958], + [-164.7521, 60.9229], + [-164.6062, 60.9354], + [-164.5693, 60.9286], + [-164.587, 60.8651], + [-164.5396, 60.8479], + [-164.3687, 60.875], + [-164.2479, 60.8604], + [-164.15, 60.8833], + [-164.088, 60.8786], + [-164.15, 60.9396], + [-164.1099, 60.987], + [-164.0417, 61.0083], + [-163.9901, 61.0453], + [-163.9766, 60.9818], + [-163.9234, 60.9516], + [-163.9672, 60.8943], + [-164.0609, 60.8755], + [-163.9854, 60.8625], + [-163.9354, 60.8771], + [-163.8776, 60.9276], + [-163.9396, 60.9813], + [-163.9005, 61.0359], + [-163.95, 61.0958], + [-163.875, 61.0625], + [-163.8911, 61.0276], + [-163.8229, 61.0104], + [-163.8443, 61.0911], + [-163.9286, 61.1193], + [-163.9141, 61.1911], + [-163.7729, 61.2292], + [-163.7229, 61.1958], + [-163.5562, 61.2396], + [-163.513, 61.2109], + [-163.5875, 61.1896], + [-163.6729, 61.1833], + [-163.7042, 61.1479], + [-163.7547, 61.1453], + [-163.7464, 61.1005], + [-163.8057, 61.0547], + [-163.7401, 61.0411], + [-163.737, 60.988], + [-163.6526, 60.9891], + [-163.7088, 60.9516], + [-163.6771, 60.925], + [-163.5578, 60.913], + [-163.5771, 60.8812], + [-163.7187, 60.8646], + [-163.6521, 60.8292], + [-163.6458, 60.8604], + [-163.5083, 60.875], + [-163.4479, 60.8917], + [-163.3734, 60.8578], + [-163.3479, 60.8125], + [-163.2776, 60.7964], + [-163.462, 60.7547], + [-163.4089, 60.7224], + [-163.4792, 60.6396], + [-163.5354, 60.6292], + [-163.6583, 60.5812], + [-163.7932, 60.5797], + [-163.8203, 60.6401], + [-163.7917, 60.7542], + [-163.8562, 60.7542], + [-163.9125, 60.7854], + [-164.0161, 60.7641], + [-164.0609, 60.7255], + [-164.1026, 60.6589], + [-164.2604, 60.6437], + [-164.3729, 60.5521], + [-164.3818, 60.5776], + [-164.2953, 60.6661], + [-164.2104, 60.6792], + [-164.2646, 60.7292], + [-164.2693, 60.7891], + [-164.3188, 60.7833], + [-164.4359, 60.8182], + [-164.6849, 60.8234], + [-164.6911, 60.862], + [-164.638, 60.9016], + [-164.725, 60.8979], + [-164.8479, 60.85], + [-164.9292, 60.9208], + [-164.9599, 60.8953], + [-164.8714, 60.8536], + [-164.8776, 60.812], + [-165.0021, 60.7854], + [-165.0161, 60.7484], + [-164.963, 60.7266], + [-164.9901, 60.6984], + [-165.0562, 60.6875], + [-165.1714, 60.6234], + [-165.2453, 60.6099], + [-165.275, 60.575], + [-165.3766, 60.5745], + [-165.4182, 60.5495], + [-165.3703, 60.5068], + [-165.2646, 60.4917], + [-165.1875, 60.4979], + [-165.0479, 60.5458], + [-164.9568, 60.5286], + [-165.0005, 60.4755], + [-165.1391, 60.4422], + [-165.0141, 60.3609], + [-164.8646, 60.3063], + [-164.7063, 60.2938], + [-164.6755, 60.3089], + [-164.6516, 60.2505], + [-164.4979, 60.175], + [-164.3828, 60.0776], + [-164.3432, 60.0568], + [-164.1938, 60.0271], + [-164.1257, 59.9727], + [-164.2005, 59.9588], + [-164.1983, 59.9151], + [-164.1408, 59.8498], + [-164.0052, 59.8144], + [-163.8726, 59.8009], + [-163.681, 59.7976], + [-163.4308, 59.812], + [-163.1472, 59.8478], + [-162.9984, 59.8869], + [-162.913, 59.9232], + [-162.7842, 59.9428], + [-162.7333, 59.9719], + [-162.8141, 60.0297], + [-162.7734, 60.0693], + [-162.7359, 60.0432], + [-162.738, 59.9999], + [-162.641, 59.974], + [-162.5154, 59.9893], + [-162.4797, 60.0318], + [-162.5036, 60.113], + [-162.4505, 60.1828], + [-162.5599, 60.2193], + [-162.5854, 60.2417], + [-162.5443, 60.2776], + [-162.4854, 60.3667], + [-162.413, 60.3755], + [-162.3755, 60.4651], + [-162.3234, 60.513], + [-162.2807, 60.5953], + [-162.2208, 60.6333], + [-162.034, 60.6646], + [-162.2141, 60.5786], + [-162.2172, 60.5089], + [-162.3016, 60.4474], + [-162.3026, 60.388], + [-162.3292, 60.3583], + [-162.4578, 60.2953], + [-162.3516, 60.238], + [-162.262, 60.1693], + [-162.3521, 60.175], + [-162.3661, 60.1589], + [-162.2646, 60.0583], + [-162.2661, 60.1203], + [-162.1792, 60.1375], + [-162.2349, 60.088], + [-162.1889, 59.999], + [-162.0814, 59.9365], + [-162.088, 59.8868], + [-161.9655, 59.7998], + [-161.9277, 59.738], + [-161.8784, 59.6948], + [-161.8681, 59.635], + [-161.7081, 59.5], + [-161.7365, 59.4698], + [-161.8001, 59.4715], + [-161.8403, 59.4158], + [-161.9588, 59.3722], + [-161.9604, 59.2433], + [-162.0188, 59.2287], + [-161.975, 59.1404], + [-161.8869, 59.0719], + [-161.7885, 58.9682], + [-161.7891, 58.8917], + [-161.7583, 58.7966], + [-161.8027, 58.7402], + [-161.8671, 58.7145], + [-161.8353, 58.6785], + [-161.9481, 58.6505], + [-161.995, 58.6822], + [-162.0677, 58.6621], + [-162.1162, 58.6703], + [-162.1709, 58.6513], + [-162.0841, 58.6257], + [-161.8223, 58.6291], + [-161.7745, 58.6], + [-161.7632, 58.55], + [-161.7123, 58.553], + [-161.6319, 58.5985], + [-161.5479, 58.6064], + [-161.5189, 58.6315], + [-161.3766, 58.667], + [-161.3659, 58.7191], + [-161.2903, 58.7719], + [-161.1792, 58.7844], + [-161.0017, 58.8486], + [-160.9632, 58.8768], + [-160.8651, 58.8799], + [-160.8252, 58.8447], + [-160.778, 58.8922], + [-160.6365, 58.963], + [-160.3585, 59.0738], + [-160.2808, 59.0225], + [-160.256, 58.9868], + [-160.33, 58.9536], + [-160.2647, 58.9443], + [-160.2487, 58.8906], + [-160.1598, 58.9266], + [-160.1602, 58.863], + [-160.0243, 58.8852], + [-159.9727, 58.8189], + [-159.9048, 58.7683], + [-159.802, 58.8027], + [-159.7961, 58.8523], + [-159.7439, 58.8939], + [-159.7362, 58.9305], + [-159.6228, 58.9366], + [-159.5906, 58.9041], + [-159.6473, 58.8414], + [-159.4973, 58.8189], + [-159.3875, 58.7578], + [-159.3176, 58.6961], + [-159.2084, 58.5731], + [-159.0589, 58.4212], + [-158.9013, 58.3908], + [-158.8118, 58.4047], + [-158.7018, 58.4868], + [-158.7513, 58.4954], + [-158.7757, 58.5561], + [-158.8369, 58.6251], + [-158.8805, 58.7284], + [-158.8039, 58.736], + [-158.7746, 58.7751], + [-158.7977, 58.8151], + [-158.7822, 58.8824], + [-158.7217, 58.8734], + [-158.6254, 58.9117], + [-158.5182, 59.0352], + [-158.4599, 59.0379], + [-158.407, 59.0646], + [-158.3197, 59.0476], + [-158.42, 59.023], + [-158.4436, 58.9703], + [-158.4928, 58.952], + [-158.4888, 58.9176], + [-158.5484, 58.7923], + [-158.4413, 58.775], + [-158.3695, 58.7454], + [-158.3141, 58.6461], + [-158.2212, 58.6146], + [-158.0872, 58.6202], + [-157.8141, 58.6888], + [-157.7142, 58.7265], + [-157.5443, 58.7592], + [-157.3156, 58.8351], + [-157.211, 58.8421], + [-157.0952, 58.8756], + [-157.0375, 58.9161], + [-157.0165, 58.9677], + [-156.9232, 58.9923], + [-157.0194, 58.8719], + [-157.0044, 58.8224], + [-157.0683, 58.769], + [-157.0935, 58.704], + [-157.2345, 58.6322], + [-157.3199, 58.5593], + [-157.3834, 58.522], + [-157.472, 58.4933], + [-157.5424, 58.3825], + [-157.5444, 58.2781], + [-157.4479, 58.2092], + [-157.3806, 58.2179], + [-157.437, 58.1662], + [-157.529, 58.1654], + [-157.5874, 58.1275], + [-157.6279, 57.9741], + [-157.6651, 57.7935], + [-157.7012, 57.7301], + [-157.7131, 57.6363], + [-157.6965, 57.6124], + [-157.6049, 57.6064], + [-157.5773, 57.5147], + [-157.6386, 57.4965], + [-157.6959, 57.5519], + [-157.7413, 57.5553], + [-157.9276, 57.474], + [-158.0017, 57.408], + [-158.0903, 57.3583], + [-158.2571, 57.3126], + [-158.3312, 57.2806], + [-158.5435, 57.1295], + [-158.6789, 57.0053], + [-158.6747, 56.8567], + [-158.6523, 56.8153], + [-158.7955, 56.7801], + [-158.9313, 56.8181], + [-158.9484, 56.8588], + [-159.0537, 56.8006], + [-159.2885, 56.7125], + [-159.3997, 56.6871], + [-159.5476, 56.6228], + [-159.818, 56.5391], + [-160.0419, 56.4245], + [-160.154, 56.3964], + [-160.255, 56.3237], + [-160.3845, 56.2548], + [-160.4559, 56.1404], + [-160.4528, 56.1209], + [-160.5223, 56.0391], + [-160.5411, 55.9922], + [-160.5229, 55.943], + [-160.4233, 55.9106], + [-160.3189, 55.8603], + [-160.2539, 55.8528], + [-160.3001, 55.8219], + [-160.256, 55.7716], + [-160.3727, 55.7784], + [-160.4102, 55.8041], + [-160.4552, 55.7832], + [-160.4582, 55.8367], + [-160.4905, 55.8603], + [-160.6318, 55.855], + [-160.7831, 55.8831], + [-160.7485, 55.8169], + [-160.757, 55.7882], + [-160.6516, 55.7345], + [-160.7529, 55.7499], + [-160.8015, 55.7329], + [-160.8927, 55.8045], + [-160.9439, 55.8145], + [-160.9463, 55.85], + [-161.0184, 55.9046], + [-160.9631, 55.9417], + [-160.8913, 55.9507], + [-160.8734, 56], + [-161.0517, 55.9416], + [-161.0977, 55.9592], + [-161.3246, 55.9567], + [-161.2636, 55.9835], + [-161.5459, 55.9389], + [-161.8046, 55.8879], + [-161.9665, 55.7999], + [-162.0389, 55.7883], + [-162.1221, 55.7396], + [-162.2556, 55.6891], + [-162.3725, 55.5891], + [-162.5114, 55.4925], + [-162.6259, 55.4361], + [-162.5049, 55.4597], + [-162.5197, 55.4205], + [-162.4862, 55.3767], + [-162.5803, 55.3473], + [-162.6432, 55.3687], + [-162.7104, 55.3187], + [-162.8093, 55.3015], + [-162.8374, 55.2656], + [-162.8914, 55.2678], + [-162.8424, 55.2227], + [-162.8651, 55.1811], + [-163.0439, 55.1682], + [-163.1652, 55.1712], + [-163.2982, 55.1087], + [-163.3114, 55.0793], + [-163.279, 55.0362], + [-163.2919, 54.9664], + [-163.2243, 54.9238], + [-163.3329, 54.9467], + [-163.3163, 54.8769], + [-163.3879, 54.8489], + [-163.3451, 54.8001], + [-163.2444, 54.8263], + [-163.1262, 54.9037], + [-163.0305, 54.9436], + [-163.0478, 54.9697], + [-163.2078, 55.0228], + [-163.2265, 55.0758], + [-163.1938, 55.1261], + [-163.1032, 55.1192], + [-162.9969, 55.0745], + [-162.9463, 55.0228], + [-162.9615, 54.9945], + [-162.9151, 54.9475], + [-162.832, 54.9204], + [-162.7062, 54.9567], + [-162.6528, 55.0163], + [-162.5593, 54.9513], + [-162.5812, 55.0345], + [-162.623, 55.0629], + [-162.6254, 55.1385], + [-162.5851, 55.1347], + [-162.646, 55.196], + [-162.6917, 55.1913], + [-162.7173, 55.2379], + [-162.6655, 55.2909], + [-162.5899, 55.2936], + [-162.5923, 55.2689], + [-162.5064, 55.2397], + [-162.4939, 55.1695], + [-162.4035, 55.1147], + [-162.5206, 55.1143], + [-162.5017, 55.0733], + [-162.4138, 55.0325], + [-162.3339, 55.0393], + [-162.2209, 55.0258], + [-162.1885, 55.0603], + [-162.229, 55.1037], + [-162.1747, 55.1507], + [-162.1006, 55.1552], + [-162.1227, 55.104], + [-162.0497, 55.0697], + [-161.9562, 55.1041], + [-161.9614, 55.1582], + [-162.0296, 55.1714], + [-162.001, 55.2409], + [-161.9015, 55.2437], + [-161.817, 55.2965], + [-161.6815, 55.4076], + [-161.6838, 55.4843], + [-161.7033, 55.5099], + [-161.6338, 55.5601], + [-161.5955, 55.6091], + [-161.4965, 55.6294], + [-161.3921, 55.6269], + [-161.3552, 55.5871], + [-161.4704, 55.4797], + [-161.4767, 55.423], + [-161.5081, 55.3791], + [-161.4763, 55.3573], + [-161.32, 55.3822], + [-161.318, 55.3591], + [-161.2391, 55.3547], + [-161.1733, 55.3836], + [-160.9878, 55.4447], + [-160.9445, 55.5085], + [-160.8428, 55.5225], + [-160.8329, 55.4708], + [-160.79, 55.4549], + [-160.663, 55.4618], + [-160.65, 55.5129], + [-160.7458, 55.5243], + [-160.7239, 55.5561], + [-160.6627, 55.5436], + [-160.5949, 55.5728], + [-160.5306, 55.4757], + [-160.4546, 55.5099], + [-160.4415, 55.5655], + [-160.3552, 55.6149], + [-160.4116, 55.6589], + [-160.2746, 55.6335], + [-160.2466, 55.6579], + [-160.1221, 55.6615], + [-160.135, 55.7061], + [-160.0495, 55.693], + [-160.0154, 55.7155], + [-160.0483, 55.763], + [-159.9486, 55.8158], + [-159.8943, 55.7839], + [-159.8408, 55.8003], + [-159.8326, 55.8482], + [-159.7058, 55.8449], + [-159.6225, 55.8199], + [-159.6602, 55.7543], + [-159.6551, 55.7148], + [-159.6857, 55.651], + [-159.6373, 55.6515], + [-159.6287, 55.618], + [-159.7016, 55.6054], + [-159.7085, 55.5674], + [-159.6272, 55.5794], + [-159.5637, 55.639], + [-159.5322, 55.6465], + [-159.5368, 55.7191], + [-159.4893, 55.7627], + [-159.5238, 55.884], + [-159.4529, 55.8883], + [-159.4541, 55.8095], + [-159.404, 55.7873], + [-159.3941, 55.8549], + [-159.2602, 55.8909], + [-159.1688, 55.891], + [-159.065, 55.9181], + [-159.0038, 55.8871], + [-158.9884, 55.9263], + [-158.907, 55.9267], + [-158.8342, 56.0159], + [-158.7958, 55.9872], + [-158.7293, 56.0089], + [-158.7242, 55.9508], + [-158.6811, 55.9807], + [-158.6342, 55.9807], + [-158.6811, 56.1049], + [-158.6032, 56.125], + [-158.5791, 56.0419], + [-158.5049, 55.9787], + [-158.468, 56.0239], + [-158.4894, 56.0487], + [-158.4395, 56.106], + [-158.3948, 56.0883], + [-158.3372, 56.1548], + [-158.1904, 56.1923], + [-158.181, 56.2338], + [-158.2445, 56.1981], + [-158.3711, 56.2155], + [-158.2117, 56.2715], + [-158.3017, 56.3147], + [-158.3471, 56.3213], + [-158.4531, 56.2947], + [-158.4357, 56.3401], + [-158.5435, 56.3077], + [-158.5661, 56.2491], + [-158.6382, 56.2596], + [-158.6023, 56.3131], + [-158.5134, 56.3493], + [-158.5117, 56.3707], + [-158.4057, 56.4512], + [-158.3311, 56.4821], + [-158.1839, 56.4546], + [-158.1328, 56.4606], + [-158.1443, 56.5175], + [-158.0297, 56.5077], + [-157.8876, 56.4681], + [-157.8248, 56.4978], + [-157.8195, 56.5561], + [-157.909, 56.571], + [-158.1281, 56.5269], + [-158.1304, 56.5508], + [-158.0289, 56.6013], + [-157.9762, 56.5993], + [-157.9438, 56.6347], + [-157.7713, 56.6797], + [-157.7387, 56.6739], + [-157.6824, 56.6073], + [-157.5846, 56.6211], + [-157.4624, 56.6235], + [-157.4798, 56.6716], + [-157.555, 56.6782], + [-157.5674, 56.7055], + [-157.5113, 56.7622], + [-157.405, 56.7731], + [-157.4747, 56.8238], + [-157.4381, 56.8589], + [-157.386, 56.862], + [-157.2033, 56.7642], + [-157.1398, 56.8042], + [-157.1872, 56.8547], + [-157.0907, 56.8184], + [-157.0358, 56.8889], + [-156.936, 56.9156], + [-156.8929, 56.9638], + [-156.8343, 56.8954], + [-156.8089, 56.9025], + [-156.7866, 56.9709], + [-156.7279, 57.0382], + [-156.6754, 56.9938], + [-156.5838, 56.9871], + [-156.5887, 57.0365], + [-156.5169, 57.0491], + [-156.4661, 57.123], + [-156.4147, 57.1257], + [-156.3389, 57.1761], + [-156.39, 57.202], + [-156.3829, 57.2522], + [-156.3402, 57.2521], + [-156.3224, 57.2898], + [-156.3564, 57.3224], + [-156.5577, 57.288], + [-156.5415, 57.323], + [-156.4523, 57.3454], + [-156.3342, 57.4189], + [-156.2247, 57.4439], + [-156.1835, 57.4771], + [-156.1208, 57.4717], + [-156.1014, 57.433], + [-156.0255, 57.4335], + [-156.056, 57.5171], + [-156.0191, 57.5646], + [-155.9342, 57.5297], + [-155.8353, 57.5739], + [-155.7959, 57.5403], + [-155.735, 57.5398], + [-155.7431, 57.6292], + [-155.5962, 57.6584], + [-155.6395, 57.704], + [-155.6043, 57.7807], + [-155.5714, 57.7891], + [-155.4683, 57.7441], + [-155.4209, 57.7447], + [-155.3904, 57.7125], + [-155.3048, 57.7233], + [-155.3312, 57.8263], + [-155.236, 57.826], + [-155.2103, 57.8682], + [-155.1558, 57.8551], + [-155.091, 57.8727], + [-155.0688, 57.9042], + [-155.1116, 57.9442], + [-155.0558, 57.9503], + [-155.0391, 58.0201], + [-154.8747, 58.0278], + [-154.8114, 57.9999], + [-154.7332, 58.017], + [-154.7184, 58.0581], + [-154.6523, 58.062], + [-154.6471, 58.0329], + [-154.5883, 58.0204], + [-154.5417, 58.0602], + [-154.6018, 58.1207], + [-154.465, 58.0816], + [-154.4512, 58.1814], + [-154.4193, 58.1302], + [-154.3152, 58.0923], + [-154.3374, 58.1599], + [-154.2724, 58.1305], + [-154.2155, 58.1384], + [-154.2903, 58.1774], + [-154.2779, 58.2017], + [-154.178, 58.1917], + [-154.1517, 58.2339], + [-154.2079, 58.2542], + [-154.106, 58.2778], + [-154.1858, 58.3234], + [-154.2602, 58.2969], + [-154.261, 58.2736], + [-154.3542, 58.2501], + [-154.3365, 58.2845], + [-154.1803, 58.3594], + [-154.0999, 58.3432], + [-154.0074, 58.3752], + [-154.0671, 58.4271], + [-154.0794, 58.4789], + [-153.9629, 58.4862], + [-153.9278, 58.5205], + [-153.901, 58.6097], + [-153.7614, 58.6044], + [-153.5943, 58.6318], + [-153.5644, 58.6821], + [-153.4551, 58.7055], + [-153.3945, 58.7473], + [-153.3559, 58.8395], + [-153.3125, 58.8542], + [-153.3361, 58.9001], + [-153.4074, 58.9694], + [-153.4844, 58.9987], + [-153.5463, 58.9829], + [-153.6286, 59.0106], + [-153.6996, 59.0755], + [-153.8071, 59.074], + [-153.8644, 59.0553], + [-153.9685, 59.0716], + [-154.0682, 59.0741], + [-154.1401, 59.0217], + [-154.1806, 59.0229], + [-154.2005, 59.0735], + [-154.1794, 59.1219], + [-154.2488, 59.1166], + [-154.1853, 59.1924], + [-154.1292, 59.1993], + [-154.1425, 59.2687], + [-154.1131, 59.3052], + [-153.9724, 59.3568], + [-153.9102, 59.4206], + [-153.8102, 59.4228], + [-153.7293, 59.4409], + [-153.7072, 59.4677], + [-153.7636, 59.5456], + [-153.5925, 59.5537], + [-153.5542, 59.5972], + [-153.6333, 59.6449], + [-153.6114, 59.6765], + [-153.5658, 59.6249], + [-153.4798, 59.6447], + [-153.4462, 59.6982], + [-153.4526, 59.7863], + [-153.3843, 59.7309], + [-153.3938, 59.6651], + [-153.3453, 59.6217], + [-153.2865, 59.6709], + [-153.2179, 59.635], + [-153.1251, 59.678], + [-153.0592, 59.6904], + [-152.9938, 59.8083], + [-153.0038, 59.829], + [-153.0943, 59.8335], + [-153.1476, 59.8091], + [-153.2831, 59.8305], + [-153.2222, 59.8651], + [-153.1204, 59.8659], + [-153.0068, 59.8868], + [-152.8699, 59.8752], + [-152.7069, 59.9201], + [-152.6685, 59.983], + [-152.6089, 60.0068], + [-152.5755, 60.0828], + [-152.6536, 60.1339], + [-152.6734, 60.1641], + [-152.8125, 60.2125], + [-152.8313, 60.2333], + [-152.6687, 60.2], + [-152.5625, 60.2167], + [-152.4745, 60.2786], + [-152.4187, 60.2854], + [-152.3703, 60.3516], + [-152.3042, 60.3604], + [-152.238, 60.3953], + [-152.2995, 60.413], + [-152.3307, 60.4766], + [-152.25, 60.5354], + [-152.1792, 60.5687], + [-152.0922, 60.5797], + [-152.0557, 60.637], + [-151.9974, 60.6724], + [-151.8505, 60.7214], + [-151.7026, 60.7307], + [-151.7912, 60.8214], + [-151.7724, 60.8661], + [-151.7146, 60.8958], + [-151.4828, 60.9964], + [-151.3562, 61.0083], + [-151.2995, 61.0328], + [-151.163, 61.0464], + [-151.0495, 61.1599], + [-150.9354, 61.2], + [-150.8542, 61.2083], + [-150.6938, 61.2562], + [-150.6646, 61.325], + [-150.5979, 61.3604], + [-150.5453, 61.4078], + [-150.4896, 61.3979], + [-150.5005, 61.4661], + [-150.5849, 61.4964], + [-150.5724, 61.5307], + [-150.4901, 61.5568], + [-150.4859, 61.587], + [-150.5911, 61.6339], + [-150.6703, 61.7005], + [-150.7271, 61.8], + [-150.7578, 61.8089], + [-150.8276, 61.887], + [-151.0208, 61.9188], + [-151.1229, 61.975], + [-151.1687, 61.9896], + [-151.113, 61.9849], + [-150.9495, 61.9089], + [-150.8396, 61.8958], + [-150.7297, 61.8266], + [-150.7021, 61.7729], + [-150.6891, 61.7339], + [-150.5807, 61.6359], + [-150.5437, 61.6271], + [-150.4901, 61.5974], + [-150.4729, 61.5729], + [-150.4276, 61.5755], + [-150.3849, 61.6474], + [-150.313, 61.6693], + [-150.2932, 61.7411], + [-150.1984, 61.7964], + [-150.2078, 61.8453], + [-150.1151, 61.9193], + [-150.1333, 61.9396], + [-150.1578, 61.9786], + [-150.125, 62.0604], + [-150.0818, 62.0953], + [-150.1891, 62.1682], + [-150.1276, 62.2161], + [-150.1682, 62.2495], + [-150.1297, 62.2755], + [-150.1562, 62.3354], + [-150.1687, 62.3542], + [-150.1047, 62.3057], + [-150.137, 62.237], + [-150.1151, 62.2245], + [-150.1224, 62.1891], + [-150.1745, 62.1672], + [-150.1089, 62.1422], + [-150.0693, 62.1036], + [-150.1161, 62.0411], + [-150.0917, 61.9708], + [-150.1068, 61.8984], + [-150.1849, 61.8307], + [-150.1901, 61.7911], + [-150.25, 61.7625], + [-150.2688, 61.7167], + [-150.313, 61.663], + [-150.3745, 61.6172], + [-150.3651, 61.5943], + [-150.5437, 61.5271], + [-150.5562, 61.4875], + [-150.4859, 61.4703], + [-150.4547, 61.4099], + [-150.4937, 61.3708], + [-150.562, 61.3391], + [-150.5521, 61.2958], + [-150.4521, 61.25], + [-150.3062, 61.2583], + [-150.1167, 61.2562], + [-149.9812, 61.2375], + [-149.9193, 61.2651], + [-149.9182, 61.3245], + [-149.8771, 61.3875], + [-149.825, 61.3937], + [-149.762, 61.4453], + [-149.5984, 61.488], + [-149.4687, 61.4667], + [-149.4062, 61.4854], + [-149.2688, 61.4938], + [-149.2146, 61.4792], + [-149.1604, 61.5021], + [-149.0333, 61.5042], + [-148.9354, 61.5187], + [-148.8188, 61.4854], + [-148.7172, 61.4807], + [-148.6786, 61.4328], + [-148.7495, 61.4578], + [-148.8661, 61.4693], + [-148.9354, 61.5021], + [-148.9958, 61.5083], + [-149.0896, 61.4875], + [-149.1562, 61.4979], + [-149.1938, 61.475], + [-149.2354, 61.4792], + [-149.3813, 61.4667], + [-149.6375, 61.3854], + [-149.7016, 61.3807], + [-149.7146, 61.3292], + [-149.8161, 61.312], + [-149.8963, 61.2234], + [-149.975, 61.1979], + [-150.0188, 61.2021], + [-150.0682, 61.1526], + [-149.8359, 61.0724], + [-149.7328, 61.0151], + [-149.5917, 60.9813], + [-149.4917, 60.9833], + [-149.3609, 60.9307], + [-149.1766, 60.9359], + [-149.0776, 60.9057], + [-149.025, 60.85], + [-149.0896, 60.8958], + [-149.1734, 60.887], + [-149.3771, 60.8937], + [-149.5625, 60.9333], + [-149.6479, 60.9229], + [-149.7458, 60.9604], + [-149.8437, 60.9667], + [-149.9271, 60.9313], + [-150.0917, 60.9146], + [-150.1979, 60.925], + [-150.262, 60.9443], + [-150.3708, 61.0375], + [-150.5078, 61.0036], + [-150.6943, 60.9422], + [-150.8922, 60.8526], + [-151.0542, 60.7875], + [-151.2146, 60.7792], + [-151.3021, 60.7396], + [-151.4083, 60.7167], + [-151.3505, 60.6432], + [-151.3266, 60.5776], + [-151.2542, 60.5458], + [-151.2807, 60.5016], + [-151.2953, 60.3859], + [-151.3766, 60.3661], + [-151.3792, 60.2938], + [-151.413, 60.2151], + [-151.4984, 60.1547], + [-151.6224, 60.0891], + [-151.6953, 60.0349], + [-151.7593, 59.9185], + [-151.8148, 59.8705], + [-151.8711, 59.7676], + [-151.8376, 59.7204], + [-151.6451, 59.6473], + [-151.4835, 59.6386], + [-151.4369, 59.6701], + [-151.3415, 59.6862], + [-151.0588, 59.7969], + [-150.9574, 59.7859], + [-151.1245, 59.6957], + [-151.206, 59.6359], + [-151.1974, 59.5941], + [-151.2816, 59.5991], + [-151.2712, 59.5578], + [-151.3654, 59.5599], + [-151.4544, 59.5409], + [-151.4901, 59.4817], + [-151.5611, 59.4699], + [-151.6361, 59.4861], + [-151.7088, 59.4739], + [-151.7067, 59.4022], + [-151.7469, 59.4569], + [-151.8925, 59.4288], + [-151.8951, 59.3845], + [-151.9941, 59.3147], + [-151.9818, 59.2579], + [-151.8719, 59.253], + [-151.884, 59.2139], + [-151.7651, 59.2242], + [-151.7402, 59.1573], + [-151.5934, 59.1629], + [-151.5779, 59.2077], + [-151.5262, 59.1955], + [-151.4539, 59.2373], + [-151.4462, 59.2743], + [-151.3123, 59.2117], + [-151.3058, 59.2469], + [-151.1862, 59.2048], + [-151.1179, 59.2199], + [-151.1077, 59.2468], + [-151.2594, 59.2932], + [-151.2151, 59.3106], + [-151.0945, 59.2694], + [-151.0542, 59.3042], + [-151.0182, 59.2115], + [-150.9883, 59.2399], + [-150.9149, 59.2512], + [-150.8565, 59.3581], + [-150.7751, 59.3747], + [-150.7471, 59.4243], + [-150.7074, 59.4353], + [-150.6057, 59.4293], + [-150.5845, 59.4952], + [-150.6296, 59.5414], + [-150.53, 59.6037], + [-150.5179, 59.5739], + [-150.5768, 59.5294], + [-150.4866, 59.4953], + [-150.4383, 59.5146], + [-150.4209, 59.5647], + [-150.3879, 59.568], + [-150.3277, 59.6253], + [-150.2516, 59.7266], + [-150.2701, 59.6322], + [-150.3609, 59.528], + [-150.3243, 59.4713], + [-150.2222, 59.5438], + [-150.2094, 59.5821], + [-150.1683, 59.5613], + [-150.1266, 59.5896], + [-150.0906, 59.65], + [-150.039, 59.6128], + [-149.9222, 59.687], + [-149.9966, 59.7494], + [-150.0598, 59.7753], + [-150.0252, 59.7987], + [-149.978, 59.7698], + [-149.92, 59.7695], + [-149.8239, 59.699], + [-149.7965, 59.6575], + [-149.739, 59.7139], + [-149.8224, 59.8347], + [-149.7632, 59.8204], + [-149.7503, 59.9411], + [-149.6894, 59.9469], + [-149.661, 59.893], + [-149.6618, 59.7745], + [-149.5525, 59.7308], + [-149.548, 59.7824], + [-149.5957, 59.7662], + [-149.6202, 59.8365], + [-149.569, 59.9026], + [-149.5242, 59.928], + [-149.4702, 59.9182], + [-149.4418, 59.9779], + [-149.3963, 60.0016], + [-149.4474, 60.0339], + [-149.4432, 60.1161], + [-149.3589, 60.1141], + [-149.3125, 59.9819], + [-149.3792, 59.9031], + [-149.259, 59.9229], + [-149.2063, 60.0083], + [-149.1682, 60.037], + [-149.0339, 60.0432], + [-149.1312, 59.9643], + [-149.0787, 59.9533], + [-149.039, 59.9781], + [-149.009, 59.9462], + [-148.9628, 59.9721], + [-148.8835, 59.9252], + [-148.8458, 59.9242], + [-148.7708, 59.9768], + [-148.6833, 59.9219], + [-148.6081, 59.9285], + [-148.5533, 59.9697], + [-148.5208, 60.0229], + [-148.456, 59.9413], + [-148.4103, 59.981], + [-148.3734, 60.0911], + [-148.3932, 60.1057], + [-148.3271, 60.1625], + [-148.2833, 60.1667], + [-148.2896, 60.1104], + [-148.2417, 60.1146], + [-148.1214, 60.1651], + [-148.1057, 60.2036], + [-148.1453, 60.2349], + [-148.1797, 60.163], + [-148.2104, 60.2583], + [-148.2807, 60.2432], + [-148.3292, 60.2125], + [-148.3542, 60.2813], + [-148.3, 60.2604], + [-148.2088, 60.3005], + [-148.1161, 60.3776], + [-148.0068, 60.4005], + [-147.9672, 60.4484], + [-148.0521, 60.4604], + [-147.9714, 60.4818], + [-147.9734, 60.5141], + [-148.0672, 60.5609], + [-148.0818, 60.5932], + [-148.1516, 60.5745], + [-148.1682, 60.538], + [-148.2693, 60.487], + [-148.3328, 60.4724], + [-148.3479, 60.5042], + [-148.4349, 60.513], + [-148.4542, 60.5417], + [-148.5745, 60.4995], + [-148.6896, 60.4354], + [-148.7146, 60.4562], + [-148.5974, 60.5328], + [-148.5229, 60.5646], + [-148.4542, 60.5687], + [-148.325, 60.5292], + [-148.2682, 60.5849], + [-148.188, 60.6099], + [-148.2547, 60.7026], + [-148.2583, 60.7562], + [-148.3307, 60.7036], + [-148.3583, 60.6542], + [-148.4047, 60.6651], + [-148.3833, 60.7542], + [-148.512, 60.7661], + [-148.5713, 60.7318], + [-148.588, 60.6984], + [-148.6812, 60.6458], + [-148.6807, 60.7057], + [-148.6037, 60.7599], + [-148.5292, 60.7833], + [-148.5604, 60.8042], + [-148.6562, 60.775], + [-148.7104, 60.7875], + [-148.6021, 60.825], + [-148.4333, 60.8292], + [-148.4063, 60.8458], + [-148.3068, 60.8339], + [-148.2797, 60.8964], + [-148.312, 60.9568], + [-148.2563, 60.9354], + [-148.1859, 60.9901], + [-148.1651, 61.0661], + [-148.25, 61.0542], + [-148.3245, 61.0266], + [-148.3838, 60.9776], + [-148.3687, 61.0417], + [-148.2354, 61.0875], + [-148.1479, 61.0979], + [-148.0792, 61.0062], + [-148.0005, 61.063], + [-147.9807, 61.1078], + [-147.8505, 61.1839], + [-147.7224, 61.287], + [-147.6714, 61.2693], + [-147.7542, 61.2083], + [-147.7, 61.225], + [-147.6338, 61.2151], + [-147.7578, 61.1849], + [-147.9057, 61.0891], + [-147.9943, 60.9609], + [-148.0104, 60.9167], + [-147.9229, 60.8896], + [-147.9099, 60.8536], + [-147.7792, 60.8104], + [-147.7995, 60.8568], + [-147.7672, 60.8964], + [-147.7958, 60.9188], + [-147.7208, 60.9396], + [-147.713, 60.9016], + [-147.6667, 60.8625], + [-147.6047, 60.8484], + [-147.5943, 60.9359], + [-147.6167, 61.0083], + [-147.5568, 61.0797], + [-147.5599, 61.1453], + [-147.5104, 61.0812], + [-147.5412, 60.987], + [-147.5099, 60.9099], + [-147.4755, 60.9911], + [-147.4458, 60.8937], + [-147.3667, 60.8833], + [-147.3062, 60.9229], + [-147.2505, 60.9276], + [-147.2912, 60.9849], + [-147.2276, 60.9922], + [-147.2104, 60.9437], + [-147.0922, 61.013], + [-147.0354, 60.9917], + [-147.0036, 61.0203], + [-146.9771, 60.9667], + [-147.0474, 60.9422], + [-146.9625, 60.9313], + [-146.863, 60.9734], + [-146.8474, 60.9995], + [-146.7667, 61.0438], + [-146.7021, 61.0542], + [-146.5979, 61.1437], + [-146.5708, 61.1208], + [-146.4646, 61.1333], + [-146.3917, 61.1229], + [-146.3042, 61.1292], + [-146.2354, 61.0896], + [-146.45, 61.0771], + [-146.6104, 61.0812], + [-146.6687, 61.0313], + [-146.7161, 60.9672], + [-146.6208, 60.9521], + [-146.6021, 60.9188], + [-146.7516, 60.9453], + [-146.6891, 60.8672], + [-146.6313, 60.8854], + [-146.6333, 60.8167], + [-146.5708, 60.8563], + [-146.5396, 60.8104], + [-146.3562, 60.8167], + [-146.2901, 60.838], + [-146.2453, 60.8786], + [-146.1708, 60.8458], + [-146.2432, 60.838], + [-146.2312, 60.8083], + [-146.3313, 60.7854], + [-146.5474, 60.7703], + [-146.6714, 60.7391], + [-146.6536, 60.6859], + [-146.5354, 60.6917], + [-146.4896, 60.6688], + [-146.4187, 60.6875], + [-146.3057, 60.7536], + [-146.2979, 60.7125], + [-146.2349, 60.7203], + [-146.1854, 60.7562], + [-146.1568, 60.7255], + [-146.0693, 60.7734], + [-146.0568, 60.7359], + [-146.2172, 60.663], + [-146.2521, 60.6229], + [-146.15, 60.6312], + [-146.025, 60.6646], + [-145.95, 60.6979], + [-145.9167, 60.6896], + [-145.9995, 60.6411], + [-145.938, 60.6255], + [-145.8995, 60.6745], + [-145.8437, 60.6104], + [-145.6651, 60.6547], + [-145.6943, 60.5922], + [-145.7922, 60.5193], + [-145.9141, 60.4891], + [-145.9271, 60.4521], + [-145.8792, 60.4458], + [-145.7583, 60.4646], + [-145.6, 60.45], + [-145.5495, 60.4359], + [-145.4792, 60.3812], + [-145.3687, 60.3563], + [-145.3333, 60.3417], + [-145.2958, 60.3375], + [-145.2088, 60.3672], + [-145.0901, 60.438], + [-145.0307, 60.5099], + [-144.9833, 60.5354], + [-144.8859, 60.5485], + [-144.8396, 60.6188], + [-144.7792, 60.6292], + [-144.7625, 60.6792], + [-144.7, 60.6958], + [-144.7042, 60.675], + [-144.6542, 60.6667], + [-144.6021, 60.7167], + [-144.5917, 60.7333], + [-144.5318, 60.7422], + [-144.6286, 60.688], + [-144.6396, 60.6521], + [-144.7083, 60.6458], + [-144.7641, 60.6661], + [-144.7588, 60.6109], + [-144.8109, 60.563], + [-144.8229, 60.5146], + [-144.7797, 60.4953], + [-144.7943, 60.4547], + [-144.9141, 60.3578], + [-144.9536, 60.288], + [-144.7667, 60.2792], + [-144.6776, 60.2276], + [-144.6771, 60.2104], + [-144.5562, 60.1771], + [-144.3729, 60.1667], + [-144.2937, 60.1813], + [-144.2891, 60.1422], + [-144.1083, 60.0979], + [-144.0453, 60.0484], + [-144.1083, 60.0375], + [-144.2125, 60.0417], + [-144.2479, 60.0229], + [-144.0292, 60.0208], + [-143.8899, 59.9893], + [-143.6479, 60.0375], + [-143.4687, 60.0604], + [-143.4292, 60.0521], + [-143.1083, 60.0667], + [-143.0375, 60.1], + [-142.9896, 60.0833], + [-142.7583, 60.1104], + [-142.4458, 60.0729], + [-142.425, 60.0646], + [-142.2125, 60.0479], + [-142.0896, 60.025], + [-142.0208, 60.025], + [-141.8854, 60.0021], + [-141.7502, 59.9515], + [-141.6046, 59.9636], + [-141.5308, 59.9897], + [-141.4297, 60], + [-141.3693, 60.0255], + [-141.4479, 60.0812], + [-141.4521, 60.1104], + [-141.4271, 60.125], + [-141.3458, 60.0854], + [-141.1938, 60.1208], + [-141.3146, 60.0542], + [-141.2693, 60.0078], + [-141.2954, 59.9363], + [-141.3678, 59.9307], + [-141.4631, 59.8853], + [-141.4331, 59.8675], + [-141.3135, 59.847], + [-140.9773, 59.7684], + [-140.9064, 59.7424], + [-140.6681, 59.7105], + [-140.4862, 59.7053], + [-140.3441, 59.6939], + [-140.2316, 59.704], + [-140.1488, 59.74], + [-139.9576, 59.7834], + [-140.1333, 59.8056], + [-140.1734, 59.7684], + [-140.2312, 59.7674], + [-140.248, 59.806], + [-140.1671, 59.8037], + [-140.0438, 59.8387], + [-139.9326, 59.7917], + [-139.8044, 59.8184], + [-139.7736, 59.8684], + [-139.7121, 59.9188], + [-139.6031, 59.9521], + [-139.6004, 59.9876], + [-139.5349, 60.0469], + [-139.4958, 60.0021], + [-139.4293, 60.0021], + [-139.3356, 59.9175], + [-139.2529, 59.8602], + [-139.1405, 59.8625], + [-139.0483, 59.8406], + [-139.1922, 59.8417], + [-139.3006, 59.8194], + [-139.2772, 59.7864], + [-139.3211, 59.755], + [-139.2711, 59.6925], + [-139.2283, 59.6061], + [-139.2989, 59.5611], + [-139.3567, 59.5897], + [-139.2928, 59.6403], + [-139.3497, 59.7461], + [-139.3345, 59.8216], + [-139.3, 59.8524], + [-139.4722, 59.9973], + [-139.5099, 59.9855], + [-139.5349, 59.9366], + [-139.6289, 59.9022], + [-139.637, 59.8731], + [-139.6006, 59.8047], + [-139.5422, 59.7367], + [-139.4717, 59.7031], + [-139.5878, 59.6458], + [-139.6017, 59.6117], + [-139.6653, 59.5663], + [-139.6967, 59.6197], + [-139.7328, 59.5475], + [-139.8378, 59.5581], + [-139.8567, 59.5353], + [-139.63, 59.4569], + [-139.4111, 59.4119], + [-139.4006, 59.3797], + [-139.2911, 59.3867], + [-139.1894, 59.3222], + [-138.8938, 59.2388], + [-138.6267, 59.1281], + [-138.5132, 59.1045], + [-138.4806, 59.11], + [-138.1858, 59.0168], + [-137.9506, 58.8861], + [-137.925, 58.8422], + [-137.9294, 58.7831], + [-137.7817, 58.7181], + [-137.6739, 58.6467], + [-137.515, 58.6636], + [-137.5122, 58.6428], + [-137.6428, 58.6025], + [-137.5761, 58.5917], + [-137.3978, 58.5064], + [-137.16, 58.4239], + [-137.095, 58.3814], + [-137.0128, 58.4106], + [-136.8919, 58.3849], + [-136.9039, 58.3417], + [-136.8406, 58.365], + [-136.8578, 58.3167], + [-136.7938, 58.2941], + [-136.7067, 58.2958], + [-136.7325, 58.2595], + [-136.665, 58.2086], + [-136.5828, 58.2272], + [-136.5647, 58.2624], + [-136.6067, 58.3003], + [-136.5967, 58.3322], + [-136.5422, 58.3322], + [-136.485, 58.2994], + [-136.4378, 58.315], + [-136.3755, 58.2986], + [-136.3706, 58.3704], + [-136.3125, 58.3783], + [-136.2828, 58.315], + [-136.2028, 58.3422], + [-136.1004, 58.3457], + [-136.0383, 58.3831], + [-136.0992, 58.513], + [-136.1867, 58.5097], + [-136.1767, 58.5614], + [-136.2045, 58.6133], + [-136.3155, 58.671], + [-136.3933, 58.6175], + [-136.4644, 58.5931], + [-136.5211, 58.5936], + [-136.3496, 58.6867], + [-136.3913, 58.7176], + [-136.5074, 58.7564], + [-136.5306, 58.7404], + [-136.6387, 58.7913], + [-136.6075, 58.8185], + [-136.5793, 58.7806], + [-136.4932, 58.7915], + [-136.5617, 58.8324], + [-136.6467, 58.8406], + [-136.7467, 58.8772], + [-137.0139, 58.9042], + [-137.1083, 58.8333], + [-137.0229, 58.9236], + [-136.9417, 58.9178], + [-136.9172, 58.9494], + [-137.0433, 59.0206], + [-137.0311, 59.0618], + [-136.8754, 58.9629], + [-136.7103, 58.918], + [-136.6236, 58.9032], + [-136.6918, 58.9976], + [-136.5769, 58.9139], + [-136.5328, 58.9214], + [-136.4883, 58.8369], + [-136.3964, 58.8168], + [-136.2517, 58.7525], + [-136.1774, 58.7545], + [-136.106, 58.8639], + [-136.1533, 59.0061], + [-136.1112, 59.0102], + [-136.1181, 58.9607], + [-136.0601, 58.9284], + [-136.0598, 58.8537], + [-135.9872, 58.8614], + [-135.92, 58.905], + [-135.8044, 58.9036], + [-135.7906, 58.8867], + [-135.9444, 58.8775], + [-136.0145, 58.844], + [-136.0806, 58.8281], + [-136.0828, 58.8076], + [-135.9633, 58.7036], + [-135.9106, 58.6165], + [-135.8344, 58.5992], + [-135.8905, 58.5753], + [-135.8522, 58.5386], + [-135.8977, 58.4488], + [-135.9082, 58.379], + [-135.7044, 58.3956], + [-135.62, 58.4269], + [-135.475, 58.3756], + [-135.4579, 58.4075], + [-135.5155, 58.4756], + [-135.4972, 58.5033], + [-135.4529, 58.4561], + [-135.3978, 58.3254], + [-135.314, 58.2459], + [-135.2222, 58.2361], + [-135.1627, 58.2088], + [-135.09, 58.24], + [-135.1071, 58.2658], + [-135.0535, 58.3464], + [-135.1308, 58.5102], + [-135.1651, 58.5634], + [-135.2389, 58.6192], + [-135.1394, 58.6172], + [-135.227, 58.7178], + [-135.2467, 58.7908], + [-135.2839, 58.8183], + [-135.4022, 58.9728], + [-135.3822, 59.1017], + [-135.4406, 59.1132], + [-135.4691, 59.1739], + [-135.5178, 59.2081], + [-135.4756, 59.2269], + [-135.3849, 59.1731], + [-135.37, 59.1127], + [-135.3083, 59.0817], + [-135.3597, 59.2004], + [-135.4306, 59.2258], + [-135.4431, 59.2766], + [-135.5426, 59.3079], + [-135.5317, 59.325], + [-135.4078, 59.2894], + [-135.3618, 59.4494], + [-135.3286, 59.4442], + [-135.3587, 59.3718], + [-135.3711, 59.2653], + [-135.2849, 59.1974], + [-135.2036, 59.0704], + [-135.1772, 58.9992], + [-135.1533, 58.8551], + [-135.0267, 58.7328], + [-135.0268, 58.7899], + [-134.9523, 58.7952], + [-134.9203, 58.6804], + [-134.9903, 58.6765], + [-134.8405, 58.5184], + [-134.7878, 58.495], + [-134.7781, 58.3954], + [-134.7267, 58.3717], + [-134.6467, 58.3867], + [-134.6367, 58.3409], + [-134.5389, 58.3478], + [-134.4985, 58.3432], + [-134.2134, 58.2045], + [-134.1494, 58.2006], + [-134.1037, 58.2492], + [-134.1467, 58.2725], + [-134.1405, 58.3061], + [-134.0578, 58.3325], + [-134.0528, 58.3764], + [-133.9704, 58.4465], + [-133.985, 58.4897], + [-133.9415, 58.5051], + [-133.9472, 58.4222], + [-134.0161, 58.4012], + [-133.9795, 58.3197], + [-134.0044, 58.295], + [-134.0816, 58.2794], + [-134.0539, 58.2308], + [-134.0846, 58.214], + [-134.0672, 58.0928], + [-134.05, 58.0617], + [-133.8888, 57.9741], + [-133.786, 58.009], + [-133.7761, 58.0639], + [-133.7117, 57.9953], + [-133.6939, 57.9372], + [-133.7619, 57.9954], + [-133.8306, 57.97], + [-133.8501, 57.934], + [-133.6967, 57.7914], + [-133.6322, 57.7914], + [-133.6276, 57.8454], + [-133.5744, 57.9178], + [-133.5798, 57.8311], + [-133.5607, 57.7761], + [-133.4247, 57.7225], + [-133.3297, 57.6634], + [-133.2794, 57.6611], + [-133.1511, 57.5884], + [-133.0687, 57.5094], + [-133.1756, 57.5818], + [-133.3898, 57.6593], + [-133.5276, 57.6876], + [-133.5704, 57.721], + [-133.6509, 57.7165], + [-133.6739, 57.6569], + [-133.6621, 57.6133], + [-133.5621, 57.5617], + [-133.4517, 57.5886], + [-133.5167, 57.5442], + [-133.5276, 57.4895], + [-133.4673, 57.4219], + [-133.4186, 57.4362], + [-133.3645, 57.4131], + [-133.473, 57.3873], + [-133.4521, 57.3547], + [-133.3563, 57.3329], + [-133.2345, 57.3213], + [-133.1828, 57.3397], + [-133.1563, 57.3114], + [-133.2298, 57.3069], + [-133.2564, 57.2845], + [-133.3401, 57.2988], + [-133.4268, 57.2862], + [-133.4744, 57.2978], + [-133.5336, 57.2605], + [-133.4995, 57.2272], + [-133.5342, 57.1819], + [-133.465, 57.1501], + [-133.3161, 57.1067], + [-133.1728, 57.1773], + [-133.1411, 57.1619], + [-133.1817, 57.0891], + [-133.0789, 57.0825], + [-133.0044, 57.0492], + [-132.8737, 57.03], + [-132.8349, 57.0658], + [-132.7829, 57.0021], + [-132.7889, 56.9717], + [-132.8721, 57.0014], + [-132.9528, 56.9942], + [-132.8861, 56.9222], + [-132.8096, 56.892], + [-132.79, 56.8433], + [-132.6439, 56.7817], + [-132.4917, 56.7456], + [-132.5572, 56.7148], + [-132.5322, 56.6881], + [-132.5656, 56.6286], + [-132.4982, 56.6035], + [-132.4239, 56.6092], + [-132.3511, 56.6367], + [-132.3679, 56.5928], + [-132.3592, 56.5277], + [-132.2893, 56.4844], + [-132.2113, 56.4607], + [-132.1977, 56.4157], + [-132.1209, 56.365], + [-132.0944, 56.3761], + [-132.0622, 56.377], + [-131.9944, 56.3603], + [-131.98, 56.3011], + [-131.9317, 56.2364], + [-131.8061, 56.2161], + [-131.7583, 56.2245], + [-131.6389, 56.1911], + [-131.7106, 56.1867], + [-131.7639, 56.2056], + [-131.9728, 56.1739], + [-131.9783, 56.0439], + [-131.9605, 56.0128], + [-131.9911, 55.9628], + [-132.0412, 55.9602], + [-132.0709, 55.9242], + [-132.0417, 55.8858], + [-132.0917, 55.8531], + [-132.0723, 55.8092], + [-132.1313, 55.8109], + [-132.1928, 55.7856], + [-132.1967, 55.7308], + [-132.287, 55.7617], + [-132.2281, 55.6993], + [-132.1851, 55.5879], + [-132.1208, 55.55], + [-132.0739, 55.545], + [-131.9695, 55.4978], + [-131.9389, 55.5677], + [-132.0111, 55.6731], + [-131.9278, 55.6117], + [-131.8811, 55.6228], + [-131.8294, 55.6833], + [-131.777, 55.7813], + [-131.7697, 55.8241], + [-131.9194, 55.8644], + [-131.8323, 55.8863], + [-131.7606, 55.8778], + [-131.6767, 55.9194], + [-131.4397, 56.0026], + [-131.4083, 55.9845], + [-131.3883, 55.9598], + [-131.2969, 55.9959], + [-131.2278, 56.0057], + [-131.0945, 56.0781], + [-131.096, 56.0431], + [-131.2155, 55.9864], + [-131.18, 55.9472], + [-131.0928, 55.8948], + [-131.0038, 55.8052], + [-130.9672, 55.7848], + [-130.9069, 55.7122], + [-130.8758, 55.5595], + [-130.8294, 55.55], + [-130.7967, 55.5792], + [-130.7766, 55.5253], + [-130.8666, 55.5428], + [-130.9004, 55.4673], + [-130.8761, 55.3842], + [-130.8783, 55.3316], + [-130.8322, 55.2887], + [-130.9272, 55.301], + [-130.9917, 55.2433], + [-131.0915, 55.1946], + [-131.0663, 55.1225], + [-130.995, 55.0853], + [-130.9025, 55.1025], + [-130.8211, 55.1445], + [-130.7944, 55.102], + [-130.7199, 55.0938], + [-130.7952, 55.0669], + [-130.8528, 55.1191], + [-130.8715, 55.0984], + [-130.9893, 55.0669], + [-131.0051, 55.0028], + [-130.9532, 54.9642], + [-130.9713, 54.9316], + [-130.948, 54.8279], + [-130.9142, 54.7901], + [-130.8139, 54.7728], + [-130.735, 54.8417], + [-130.7611, 54.9408], + [-130.7372, 54.9536], + [-130.7204, 54.7649], + [-130.6567, 54.7745], + [-130.6322, 54.8167], + [-130.525, 54.8668], + [-130.4971, 54.8335], + [-130.3706, 54.9067], + [-130.2956, 54.9657], + [-130.2289, 55.0378], + [-130.1951, 55.1044], + [-130.0987, 55.2133], + [-129.9942, 55.2902], + [-130.03, 55.3228], + [-130.0539, 55.4425], + [-130.1069, 55.4957], + [-130.15, 55.5979], + [-130.1246, 55.6795], + [-130.1568, 55.7074], + [-130.1733, 55.7769], + [-130.1389, 55.8181], + [-130.0917, 55.8277], + [-130.016, 55.9235], + [-130.003, 56.0079], + [-130.1054, 56.1227], + [-130.2459, 56.0963], + [-130.4255, 56.1417], + [-130.4682, 56.2433], + [-130.623, 56.2669], + [-130.7818, 56.3671], + [-131.087, 56.4061], + [-131.1733, 56.4495], + [-131.4716, 56.5527], + [-131.5813, 56.6123], + [-131.8354, 56.5991], + [-131.8604, 56.7029], + [-131.9009, 56.7535], + [-131.8731, 56.8063], + [-132.1231, 56.8739], + [-132.0448, 57.0451], + [-132.3687, 57.0917], + [-132.2478, 57.2111], + [-132.3692, 57.3499], + [-132.5539, 57.4967], + [-132.6608, 57.6169], + [-132.7512, 57.6961], + [-132.869, 57.8397], + [-133.0696, 58.0001], + [-133.172, 58.1538], + [-133.3487, 58.2795], + [-133.4599, 58.3885], + [-133.38, 58.4318], + [-133.5042, 58.4964], + [-133.6995, 58.6091], + [-133.841, 58.7299], + [-133.9719, 58.7671], + [-134.258, 58.8609], + [-134.3363, 58.9236], + [-134.3134, 58.9621], + [-134.4074, 58.979], + [-134.382, 59.0388], + [-134.4827, 59.131], + [-134.5655, 59.1308], + [-134.6789, 59.1921], + [-134.7007, 59.2489], + [-134.9598, 59.281], + [-135.0335, 59.3502], + [-134.9924, 59.3878], + [-135.1006, 59.4278], + [-135.0279, 59.4746], + [-135.0289, 59.5636], + [-135.1175, 59.6231], + [-135.2198, 59.6629], + [-135.2337, 59.6961], + [-135.3644, 59.7396], + [-135.4796, 59.7981], + [-135.9476, 59.6634], + [-136.1953, 59.6388], + [-136.3535, 59.5999], + [-136.2414, 59.5591], + [-136.2363, 59.5267], + [-136.3014, 59.4658], + [-136.3963, 59.4474], + [-136.464, 59.463], + [-136.4578, 59.2814], + [-136.582, 59.1655], + [-136.8247, 59.1598], + [-136.9996, 59.0914], + [-137.2827, 59.0001], + [-137.4515, 58.9085], + [-137.526, 58.9066], + [-137.5, 58.9849], + [-137.5418, 59.1063], + [-137.6074, 59.2435], + [-138.1689, 59.5359], + [-138.6092, 59.76], + [-138.6563, 59.7992], + [-138.7058, 59.9062], + [-138.7908, 59.923], + [-139.0421, 59.9916], + [-139.177, 60.0829], + [-139.0485, 60.3259], + [-139.0521, 60.3537], + [-139.6801, 60.3357], + [-139.9741, 60.1845], + [-140.448, 60.308], + [-140.5203, 60.2191], + [-140.7683, 60.2583], + [-141.0016, 60.3051], + [-141.0018, 63.9326], + [-141.0032, 65.0001], + [-141.0022, 67.0133], + [-141.0069, 67.9999], + [-141.0023, 68.5045], + [-141.003, 69.6462], + [-141.1167, 69.6729], + [-141.2063, 69.6792], + [-141.2464, 69.6297], + [-141.3974, 69.638], + [-141.438, 69.6766], + [-141.5339, 69.7286], + [-141.662, 69.7589], + [-141.75, 69.7625], + [-141.7854, 69.7917], + [-141.9, 69.8042], + [-141.9292, 69.7896], + [-142.0104, 69.7958], + [-142.1687, 69.8458], + [-142.2396, 69.8458], + [-142.3391, 69.8859], + [-142.3797, 69.9287], + [-142.5188, 69.9604], + [-142.5807, 69.9589], + [-142.5818, 69.9974], + [-142.7271, 70.0375], + [-142.8667, 70.0563], + [-142.9937, 70.0583], + [-143.0042, 70.0771], + [-143.1062, 70.0771], + [-143.2203, 70.1099], + [-143.35, 70.0896], + [-143.5125, 70.0875], + [-143.6583, 70.0729], + [-143.7292, 70.0896], + [-143.8078, 70.0693], + [-143.875, 70.0771], + [-143.9125, 70.0583], + [-143.9818, 70.0599], + [-144.0896, 70.0375], + [-144.4125, 70.0271], + [-144.4875, 70.0167], + [-144.6375, 69.9646], + [-144.8292, 69.9833], + [-144.9625, 69.9583], + [-145.025, 69.9812], + [-145.2625, 69.9896], + [-145.3, 70.0104], + [-145.4187, 70.0292], + [-145.4833, 70.0583], + [-145.6042, 70.0333], + [-145.6521, 70.0583], + [-145.5792, 70.0708], + [-145.7937, 70.1375], + [-145.8542, 70.1625], + [-145.8708, 70.1167], + [-145.9104, 70.1146], + [-146.1687, 70.1646], + [-146.5083, 70.1854], + [-146.7187, 70.1687], + [-146.8542, 70.175], + [-146.9458, 70.15], + [-147.1828, 70.1547], + [-147.2417, 70.1771], + [-147.4167, 70.1854], + [-147.5125, 70.2021], + [-147.6771, 70.1979], + [-147.7812, 70.2167], + [-147.7958, 70.2813], + [-147.9542, 70.2729], + [-148.0672, 70.2859], + [-148.1271, 70.3271], + [-148.2229, 70.3146], + [-148.2609, 70.3255], + [-148.3453, 70.3016], + [-148.4516, 70.3068], + [-148.4724, 70.337], + [-148.5536, 70.3422], + [-148.5292, 70.3688], + [-148.5813, 70.3958], + [-148.7104, 70.4083], + [-148.8354, 70.3875], + [-148.9229, 70.3958], + [-148.8797, 70.4287], + [-148.963, 70.4266], + [-149.0562, 70.4625], + [-149.1625, 70.4854], + [-149.4214, 70.4922], + [-149.4646, 70.5146], + [-149.5396, 70.4896], + [-149.6667, 70.5062], + [-149.7661, 70.4797], + [-149.8479, 70.5021], + [-149.9021, 70.4958], + [-150.0646, 70.4417], + [-150.2104, 70.4313], + [-150.3875, 70.4063], + [-150.6563, 70.3458], + [-150.7229, 70.3229], + [-150.7922, 70.2693], + [-150.7797, 70.2338], + [-150.8359, 70.2172], + [-150.8422, 70.2693], + [-150.7693, 70.2963], + [-150.7297, 70.338], + [-150.7453, 70.3682], + [-150.6359, 70.3943], + [-150.6255, 70.4182], + [-150.7734, 70.4745], + [-150.7271, 70.4], + [-150.7891, 70.3755], + [-150.8328, 70.3901], + [-150.837, 70.4526], + [-150.9146, 70.4625], + [-150.9703, 70.438], + [-151.0417, 70.4396], + [-151.0891, 70.3859], + [-151.1479, 70.4271], + [-151.1807, 70.3818], + [-151.2896, 70.3458], + [-151.2672, 70.3891], + [-151.3875, 70.4167], + [-151.7646, 70.4354], + [-151.8875, 70.4313], + [-151.9422, 70.4516], + [-151.9, 70.475], + [-151.8, 70.4896], + [-151.7604, 70.5458], + [-152.0208, 70.5604], + [-152.0437, 70.5458], + [-152.1812, 70.55], + [-152.3646, 70.5375], + [-152.3792, 70.55], + [-152.5208, 70.5375], + [-152.5937, 70.5667], + [-152.5167, 70.5813], + [-152.2729, 70.575], + [-152.1979, 70.5833], + [-152.3042, 70.6042], + [-152.4146, 70.6062], + [-152.4646, 70.6333], + [-152.4708, 70.6937], + [-152.3818, 70.7151], + [-152.2974, 70.7849], + [-152.2443, 70.7943], + [-152.2229, 70.825], + [-152.5833, 70.8812], + [-152.6646, 70.8792], + [-152.6172, 70.8339], + [-152.6995, 70.7859], + [-152.6953, 70.7464], + [-152.7766, 70.8724], + [-152.8583, 70.8417], + [-152.913, 70.8891], + [-152.9937, 70.8875], + [-153.0479, 70.9042], + [-153.1313, 70.8938], + [-153.1292, 70.9208], + [-153.2953, 70.9099], + [-153.3813, 70.8875], + [-153.5542, 70.8833], + [-153.7104, 70.8896], + [-153.9333, 70.8771], + [-153.9984, 70.8172], + [-154.1562, 70.7688], + [-154.2125, 70.7708], + [-154.2521, 70.8104], + [-154.3417, 70.8125], + [-154.3562, 70.8313], + [-154.4667, 70.8208], + [-154.6141, 70.8214], + [-154.6338, 70.8599], + [-154.7625, 70.8688], + [-154.7766, 70.8891], + [-154.6109, 70.9068], + [-154.6172, 70.9411], + [-154.5734, 70.9953], + [-154.6505, 71.0328], + [-154.7063, 71.0021], + [-154.7708, 71.0729], + [-154.8125, 71.0854], + [-154.8943, 71.0703], + [-154.9661, 71.0339], + [-154.8641, 71.0443], + [-154.7437, 71.0417], + [-154.7276, 70.9568], + [-154.7828, 70.9484], + [-154.8208, 70.975], + [-154.8505, 70.9516], + [-154.8208, 70.8854], + [-154.9391, 70.9422], + [-154.9568, 71.0089], + [-155.0188, 71.0313], + [-155.0667, 71.1292], + [-155.0667, 71.0625], + [-155.1458, 71.1042], + [-155.2521, 71.075], + [-155.1568, 71.0182], + [-155.2021, 70.9771], + [-155.2625, 71.0146], + [-155.3599, 70.9953], + [-155.5099, 70.9339], + [-155.4542, 70.8458], + [-155.2859, 70.8474], + [-155.313, 70.788], + [-155.4375, 70.8104], + [-155.5036, 70.8443], + [-155.5875, 70.8021], + [-155.6896, 70.8313], + [-155.875, 70.8271], + [-155.9141, 70.7922], + [-155.8875, 70.7562], + [-156, 70.7479], + [-155.9583, 70.7792], + [-155.9896, 70.825], + [-156.05, 70.8208], + [-156.1729, 70.8542], + [-156.1703, 70.8745], + [-156.0854, 70.8583], + [-155.9958, 70.8625], + [-156.0083, 70.8958], + [-156.0729, 70.8833], + [-156.1037, 70.9057], + [-156.1641, 70.8922], + [-156.1797, 70.8672], + [-156.2437, 70.9], + [-156.2563, 70.8667], + [-156.3245, 70.8724], + [-156.2349, 70.9182], + [-156.3313, 70.9167], + [-156.3729, 70.9042], + [-156.4187, 70.9083], + [-156.4375, 70.875], + [-156.4958, 70.9125], + [-156.3583, 70.9104], + [-156.2875, 70.9396], + [-156.1625, 70.9729], + [-156.1109, 70.9484], + [-156.15, 70.9187], + [-155.9854, 70.9187], + [-156, 70.9646], + [-155.7271, 70.9833], + [-155.6974, 71.0203], + [-155.6141, 71.0599], + [-155.5396, 71.0625], + [-155.5068, 71.0859], + [-155.5688, 71.1396], + [-155.6375, 71.1167], + [-155.6422, 71.1589], + [-155.7474, 71.1911], + [-155.8917, 71.1771], + [-155.9208, 71.2104], + [-156.0146, 71.1708], + [-156.1, 71.2417], + [-156.2542, 71.2625], + [-156.35, 71.2583], + [-156.45, 71.2875], + [-156.5318, 71.2974], + [-156.5979, 71.3354], + [-156.6729, 71.3021], + [-156.7521, 71.3063], + [-157.0328, 71.1724], + [-157.0021, 71.1208], + [-157.0521, 71.1062], + [-157.0771, 71.1458], + [-157.2359, 71.0505], + [-157.4479, 70.9625], + [-157.8188, 70.8625], + [-158.025, 70.8292], + [-158.1917, 70.8167], + [-158.3542, 70.8125], + [-158.3917, 70.7979], + [-158.7187, 70.7854], + [-158.9646, 70.7917], + [-158.9812, 70.7646], + [-159.1849, 70.7578], + [-159.2563, 70.7708], + [-159.2578, 70.7089], + [-159.2984, 70.7578], + [-159.4141, 70.7651], + [-159.3438, 70.8063], + [-159.1193, 70.8203], + [-159.1917, 70.8458], + [-159.3708, 70.8438], + [-159.5458, 70.8167], + [-159.6854, 70.7771], + [-159.8109, 70.7234], + [-159.9474, 70.6787], + [-160.0167, 70.6333], + [-159.8901, 70.612], + [-159.8286, 70.5766], + [-159.8224, 70.5432], + [-159.737, 70.4901], + [-159.6229, 70.4875], + [-159.6, 70.5062], + [-159.5213, 70.4818], + [-159.6766, 70.4547], + [-159.7609, 70.487], + [-159.8484, 70.4234], + [-159.8766, 70.3797], + [-159.8255, 70.3557], + [-159.8411, 70.2568], + [-159.8984, 70.3276], + [-159.9536, 70.3672], + [-160.1432, 70.3078], + [-160.1417, 70.3396], + [-160.0833, 70.3458], + [-159.9828, 70.4099], + [-159.987, 70.4276], + [-159.9104, 70.4833], + [-160.0458, 70.4604], + [-160.0292, 70.5021], + [-159.913, 70.5109], + [-159.9109, 70.5766], + [-160.025, 70.5792], + [-160.0896, 70.5646], + [-160.138, 70.5807], + [-160.2688, 70.5396], + [-160.2797, 70.5255], + [-160.5937, 70.4187], + [-160.6786, 70.4036], + [-160.7068, 70.3818], + [-160.8604, 70.3375], + [-161.0401, 70.313], + [-161.3062, 70.2479], + [-161.4083, 70.2396], + [-161.6104, 70.2438], + [-161.6151, 70.2245], + [-161.7932, 70.1807], + [-161.8375, 70.15], + [-162.0125, 70.1583], + [-162.0813, 70.1167], + [-162.0813, 70.1625], + [-161.9792, 70.1833], + [-161.9146, 70.1604], + [-161.8458, 70.1604], + [-161.862, 70.2099], + [-161.7667, 70.2125], + [-161.8646, 70.2479], + [-161.7146, 70.2354], + [-161.6833, 70.2625], + [-161.8432, 70.2714], + [-161.7354, 70.3083], + [-161.8792, 70.3271], + [-161.9266, 70.312], + [-161.9901, 70.2422], + [-162.0922, 70.2005], + [-162.1938, 70.1729], + [-162.2688, 70.125], + [-162.3953, 70.0922], + [-162.4682, 70.0578], + [-162.4568, 70.0005], + [-162.4922, 69.963], + [-162.575, 69.9187], + [-162.6104, 69.9167], + [-162.8104, 69.8354], + [-162.8214, 69.8193], + [-162.9432, 69.7932], + [-163.0286, 69.7276], + [-162.9172, 69.6943], + [-162.9792, 69.6687], + [-163.0255, 69.6828], + [-163.0479, 69.6292], + [-163.088, 69.6464], + [-163.112, 69.5901], + [-163.0151, 69.5359], + [-163.0771, 69.4292], + [-163.1734, 69.313], + [-163.225, 69.2813], + [-163.3036, 69.2703], + [-163.4661, 69.1911], + [-163.5307, 69.1412], + [-163.6917, 69.0687], + [-163.8432, 69.0307], + [-163.9312, 68.9917], + [-164.1057, 68.9599], + [-164.1396, 68.9417], + [-164.2833, 68.925], + [-164.4937, 68.9104], + [-164.6396, 68.9125], + [-164.7979, 68.8938], + [-165.1125, 68.875], + [-165.3146, 68.8562], + [-165.5417, 68.8521], + [-165.65, 68.8438], + [-165.7437, 68.8562], + [-166.2125, 68.8792], + [-166.1922, 68.6943], + [-166.2287, 68.6495], + [-166.2245, 68.5703], + [-166.2995, 68.5141], + [-166.2984, 68.4672], + [-166.3708, 68.4021], + [-166.4417, 68.3938], + [-166.5208, 68.3396], + [-166.3708, 68.3229], + [-166.2479, 68.3187], + [-166.1714, 68.2849], + [-166.1328, 68.2422], + [-166.0958, 68.2438], + [-166.0151, 68.2016], + [-165.9807, 68.1464], + [-165.8813, 68.1104], + [-165.7063, 68.0938], + [-165.3667, 68.0396], + [-165.1146, 67.9542], + [-164.9266, 67.8734], + [-164.8193, 67.8516], + [-164.7812, 67.8229], + [-164.725, 67.8354], + [-164.6849, 67.8026], + [-164.6172, 67.7953], + [-164.4953, 67.7151], + [-164.4125, 67.6937], + [-164.3521, 67.7063], + [-164.138, 67.6391], + [-164.1078, 67.6047], + [-163.9667, 67.5062], + [-163.8807, 67.4213], + [-163.8167, 67.4187], + [-163.7708, 67.3875], + [-163.8203, 67.3526], + [-163.7625, 67.2646], + [-163.7328, 67.1932], + [-163.6417, 67.1854], + [-163.5891, 67.1568], + [-163.5083, 67.1458], + [-163.4172, 67.1036], + [-163.4193, 67.0839], + [-163.525, 67.1167], + [-163.7328, 67.1193], + [-163.6604, 67.0979], + [-163.5396, 67.0896], + [-163.3083, 67.0625], + [-163.2526, 67.0807], + [-163.1583, 67.0458], + [-162.9979, 67.0313], + [-162.7479, 67.0521], + [-162.5557, 66.9838], + [-162.5161, 67.0286], + [-162.4708, 66.9812], + [-162.3687, 66.9938], + [-162.2375, 66.9938], + [-162.1625, 67.0188], + [-161.9792, 67.0417], + [-161.8354, 67.05], + [-161.7229, 67.0083], + [-161.7083, 67.025], + [-161.6193, 67.0099], + [-161.5833, 66.9833], + [-161.5292, 66.9896], + [-161.4734, 66.9495], + [-161.525, 66.9375], + [-161.6083, 66.95], + [-161.7057, 66.9411], + [-161.6963, 66.9193], + [-161.7828, 66.8912], + [-161.8057, 66.8161], + [-161.8474, 66.8078], + [-161.8401, 66.7672], + [-161.8641, 66.7026], + [-161.7396, 66.6542], + [-161.6938, 66.625], + [-161.5854, 66.5875], + [-161.5234, 66.5807], + [-161.487, 66.5297], + [-161.2917, 66.5229], + [-161.2068, 66.5578], + [-161.2312, 66.5771], + [-161.1187, 66.6396], + [-160.9729, 66.6417], + [-160.8938, 66.6583], + [-160.8083, 66.6563], + [-160.7339, 66.6328], + [-160.6562, 66.5896], + [-160.5109, 66.5859], + [-160.5021, 66.6125], + [-160.4354, 66.6208], + [-160.3542, 66.6104], + [-160.275, 66.6521], + [-160.1854, 66.6312], + [-160.0979, 66.675], + [-160.0412, 66.6589], + [-159.9438, 66.6813], + [-159.8104, 66.6583], + [-159.8229, 66.6813], + [-159.7229, 66.6771], + [-159.6964, 66.6484], + [-159.7771, 66.6146], + [-159.8724, 66.637], + [-159.9125, 66.5729], + [-159.9599, 66.5755], + [-159.9839, 66.6214], + [-160.0354, 66.6062], + [-160.0953, 66.6193], + [-160.1187, 66.5917], + [-160.25, 66.6167], + [-160.3182, 66.5953], + [-160.2688, 66.5646], + [-160.2479, 66.5896], + [-160.1833, 66.525], + [-160.2016, 66.4797], + [-160.1208, 66.4688], + [-160.0333, 66.475], + [-160.05, 66.4146], + [-160.1938, 66.4521], + [-160.2276, 66.3859], + [-160.3542, 66.375], + [-160.4833, 66.375], + [-160.5458, 66.3562], + [-160.6771, 66.3667], + [-160.7854, 66.3625], + [-160.8484, 66.3953], + [-160.962, 66.4172], + [-161.0651, 66.4849], + [-161.1682, 66.4984], + [-161.1771, 66.5333], + [-161.2661, 66.512], + [-161.3229, 66.4771], + [-161.5063, 66.4417], + [-161.5833, 66.4396], + [-161.6651, 66.4703], + [-161.8203, 66.5109], + [-161.9099, 66.5443], + [-161.9922, 66.6099], + [-162.0724, 66.6484], + [-162.0828, 66.6911], + [-162.0109, 66.7568], + [-162.0208, 66.7813], + [-162.0995, 66.788], + [-162.2391, 66.8734], + [-162.3188, 66.9417], + [-162.4, 66.9167], + [-162.4729, 66.9479], + [-162.5208, 66.9021], + [-162.6182, 66.8505], + [-162.5088, 66.7766], + [-162.5016, 66.7338], + [-162.3224, 66.7234], + [-162.2333, 66.7104], + [-162.1214, 66.6536], + [-162.0995, 66.6109], + [-161.9922, 66.5787], + [-161.8963, 66.5286], + [-161.8651, 66.4734], + [-161.8057, 66.438], + [-161.8724, 66.4245], + [-161.9391, 66.3234], + [-161.8792, 66.3604], + [-161.8354, 66.3604], + [-161.6917, 66.3979], + [-161.5354, 66.4021], + [-161.1047, 66.3287], + [-160.9859, 66.2255], + [-161.0047, 66.1891], + [-161.0724, 66.1787], + [-161.1042, 66.1208], + [-161.0937, 66.2292], + [-161.2104, 66.2063], + [-161.3021, 66.2167], + [-161.3516, 66.2547], + [-161.4979, 66.2583], + [-161.5568, 66.2276], + [-161.7214, 66.0589], + [-161.8245, 66.0036], + [-161.7854, 65.9688], + [-161.85, 65.9563], + [-161.8693, 66.0005], + [-161.9318, 66.0349], + [-162.0396, 66.0687], + [-162.1354, 66.075], + [-162.3354, 66.0271], + [-162.4036, 66.0297], + [-162.4521, 66.0563], + [-162.5396, 66.0333], + [-162.6432, 66.0266], + [-162.6745, 65.9943], + [-162.688, 66.0703], + [-162.7583, 66.0958], + [-162.8687, 66.0792], + [-162.9229, 66.0896], + [-163.1375, 66.0521], + [-163.3062, 66.0687], + [-163.3313, 66.0854], + [-163.4833, 66.0833], + [-163.6271, 66.0542], + [-163.7661, 66.0734], + [-163.8537, 66.1276], + [-163.8979, 66.1937], + [-163.9703, 66.1672], + [-164.1625, 66.1917], + [-163.9917, 66.2146], + [-163.9333, 66.2146], + [-163.8255, 66.2714], + [-163.8651, 66.3339], + [-163.8724, 66.387], + [-163.8474, 66.4182], + [-163.7713, 66.4484], + [-163.7255, 66.4964], + [-163.8146, 66.5563], + [-163.8042, 66.5771], + [-163.6521, 66.5542], + [-163.6792, 66.5771], + [-163.8271, 66.5917], + [-164.1062, 66.5917], + [-164.4396, 66.5771], + [-164.6896, 66.5437], + [-164.7276, 66.5109], + [-164.9286, 66.4495], + [-165.0146, 66.3792], + [-165.0422, 66.4287], + [-165.1458, 66.4333], + [-165.2479, 66.4146], + [-165.4396, 66.4021], + [-165.5979, 66.3542], + [-165.6583, 66.3479], + [-165.7557, 66.3141], + [-165.8464, 66.263], + [-165.8537, 66.213], + [-165.6958, 66.2042], + [-165.5312, 66.1458], + [-165.6896, 66.0958], + [-165.7792, 66.0958], + [-165.8729, 66.1125], + [-166.0583, 66.1062], + [-166.2187, 66.1708], + [-166.6042, 66.0896], + [-166.7708, 66.0313], + [-166.7958, 65.9729], + [-166.9187, 65.9875], + [-166.9438, 65.9583], + [-166.8682, 65.9276], + [-166.9974, 65.8953], + [-167.0354, 65.8688], + [-167.1849, 65.8401], + [-167.2276, 65.8766], + [-167.2807, 65.8901], + [-167.4833, 65.8354], + [-167.4563, 65.7979], + [-167.5312, 65.8021], + [-167.562, 65.7714], + [-167.4859, 65.7599], + [-167.4953, 65.7338], + [-167.5833, 65.7083], + [-167.7896, 65.7063], + [-167.9104, 65.6438], + [-168, 65.625], + [-168.0599, 65.6297], + [-168.0286, 65.6891], + [-167.925, 65.7125], + [-167.8354, 65.7521], + [-167.8125, 65.7396], + [-167.7396, 65.7771], + [-167.9458, 65.7354], + [-168.0807, 65.6932], + [-168.1245, 65.6453], + [-168.087, 65.5901], + [-168.0458, 65.5687], + [-167.8896, 65.5521], + [-167.8167, 65.5208], + [-167.6422, 65.4807], + [-167.6062, 65.4542], + [-167.4083, 65.4021], + [-167.1292, 65.3875], + [-167.0354, 65.3875], + [-166.9542, 65.3708], + [-166.825, 65.375], + [-166.7521, 65.3604], + [-166.6104, 65.3521], + [-166.3979, 65.3083], + [-166.387, 65.3182], + [-166.1479, 65.2875], + [-166.0359, 65.2474], + [-166.0188, 65.1896], + [-165.8338, 65.1339], + [-165.8703, 65.1807], + [-165.7521, 65.1896], + [-165.6687, 65.1583], + [-165.5792, 65.1771], + [-165.4354, 65.1646], + [-165.4, 65.2104], + [-165.3854, 65.1687] + ] + ], + [ + [ + [-153.252, 57.9968], + [-153.3048, 57.9846], + [-153.0948, 57.8618], + [-153.09, 57.8453], + [-153.2349, 57.8944], + [-153.1796, 57.7972], + [-153.2057, 57.7901], + [-153.3381, 57.8037], + [-153.4768, 57.8417], + [-153.4604, 57.7899], + [-153.3313, 57.7493], + [-153.3528, 57.7027], + [-153.3903, 57.7499], + [-153.4889, 57.7744], + [-153.5052, 57.7427], + [-153.43, 57.695], + [-153.5078, 57.7125], + [-153.5247, 57.6561], + [-153.5561, 57.7382], + [-153.5474, 57.7847], + [-153.5718, 57.8323], + [-153.6253, 57.8423], + [-153.6191, 57.8804], + [-153.7197, 57.8965], + [-153.9306, 57.8091], + [-153.9356, 57.7297], + [-153.9056, 57.7013], + [-153.8011, 57.6964], + [-153.6667, 57.665], + [-153.5945, 57.6292], + [-153.6078, 57.6008], + [-153.6593, 57.6401], + [-153.8682, 57.6502], + [-153.8798, 57.633], + [-153.6942, 57.5278], + [-153.8487, 57.562], + [-153.8196, 57.5379], + [-153.8122, 57.4136], + [-153.7398, 57.3174], + [-153.7589, 57.3075], + [-153.8326, 57.3861], + [-153.8943, 57.4205], + [-153.9267, 57.5334], + [-153.9894, 57.5386], + [-153.9801, 57.621], + [-154.0172, 57.6483], + [-154.2328, 57.6633], + [-154.2622, 57.6419], + [-154.3872, 57.6139], + [-154.4448, 57.5733], + [-154.5178, 57.5766], + [-154.5228, 57.5367], + [-154.63, 57.5078], + [-154.651, 57.4611], + [-154.7161, 57.4308], + [-154.6956, 57.3989], + [-154.7441, 57.3252], + [-154.7347, 57.2715], + [-154.6211, 57.2704], + [-154.5722, 57.2378], + [-154.5294, 57.1803], + [-154.5144, 57.0781], + [-154.5283, 56.9922], + [-154.3967, 56.9633], + [-154.3122, 56.9175], + [-154.3033, 56.8419], + [-154.2256, 56.8758], + [-154.205, 56.9292], + [-154.1533, 56.9489], + [-154.1511, 57.0019], + [-154.1105, 57.0447], + [-154.1128, 57.0728], + [-154.0917, 57.1006], + [-154.1157, 57.128], + [-154.2939, 57.1136], + [-154.3789, 57.0497], + [-154.4361, 57.0544], + [-154.4839, 57.0964], + [-154.4744, 57.1242], + [-154.3911, 57.1233], + [-154.3383, 57.1503], + [-154.2572, 57.1438], + [-154.2289, 57.1614], + [-154.1306, 57.1456], + [-154.0767, 57.122], + [-154.013, 57.1289], + [-153.9861, 57.1082], + [-154.055, 57.0908], + [-154.1078, 57.0569], + [-154.0972, 57.0336], + [-154.1417, 56.9972], + [-154.0744, 56.9703], + [-153.9764, 57.0566], + [-153.8818, 57.1171], + [-153.8033, 57.1125], + [-153.9209, 57.0629], + [-153.975, 56.958], + [-153.8595, 56.9833], + [-153.844, 56.945], + [-153.9799, 56.8977], + [-154.0089, 56.86], + [-154.0806, 56.8406], + [-154.1506, 56.7469], + [-154.0556, 56.7631], + [-153.9767, 56.7434], + [-153.8985, 56.7667], + [-153.8426, 56.8329], + [-153.7583, 56.8383], + [-153.6698, 56.9309], + [-153.6013, 56.933], + [-153.5406, 57.0009], + [-153.6388, 57.0157], + [-153.5943, 57.0563], + [-153.7026, 57.057], + [-153.6611, 57.0842], + [-153.573, 57.0927], + [-153.4994, 57.0651], + [-153.486, 57.14], + [-153.4498, 57.1119], + [-153.3419, 57.1898], + [-153.2185, 57.2175], + [-153.0797, 57.2123], + [-152.9507, 57.2491], + [-153.015, 57.3014], + [-153.0985, 57.287], + [-153.1928, 57.3019], + [-152.9974, 57.3446], + [-152.8593, 57.3044], + [-152.8187, 57.2645], + [-152.7432, 57.3129], + [-152.7069, 57.2759], + [-152.6267, 57.3286], + [-152.626, 57.4058], + [-152.7157, 57.4185], + [-152.7627, 57.4583], + [-152.8164, 57.4717], + [-152.9326, 57.4641], + [-152.8832, 57.5117], + [-152.8011, 57.4943], + [-152.7389, 57.5058], + [-152.6636, 57.4632], + [-152.6245, 57.4764], + [-152.5888, 57.444], + [-152.5173, 57.4336], + [-152.4891, 57.4683], + [-152.3504, 57.4213], + [-152.2889, 57.5211], + [-152.1668, 57.5868], + [-152.1544, 57.6205], + [-152.2689, 57.6283], + [-152.4695, 57.6014], + [-152.4004, 57.6876], + [-152.492, 57.6457], + [-152.4638, 57.7251], + [-152.5327, 57.6951], + [-152.5581, 57.719], + [-152.4801, 57.744], + [-152.4485, 57.7782], + [-152.4009, 57.7757], + [-152.3251, 57.8219], + [-152.3467, 57.835], + [-152.4212, 57.8138], + [-152.4004, 57.8557], + [-152.5269, 57.9104], + [-152.5581, 57.8982], + [-152.6172, 57.9208], + [-152.7102, 57.8644], + [-152.7285, 57.8189], + [-152.785, 57.8587], + [-152.8458, 57.829], + [-152.8438, 57.729], + [-152.908, 57.7557], + [-152.9123, 57.8195], + [-152.8612, 57.8791], + [-152.7971, 57.8995], + [-152.8497, 57.9291], + [-152.9369, 57.9486], + [-152.9995, 57.9471], + [-152.9976, 57.9188], + [-153.1989, 57.9682], + [-153.252, 57.9968] + ] + ], + [ + [ + [-133.6027, 56.3553], + [-133.6028, 56.3241], + [-133.6639, 56.3195], + [-133.6318, 56.2206], + [-133.6065, 56.1902], + [-133.4683, 56.1764], + [-133.4621, 56.1401], + [-133.526, 56.1179], + [-133.6245, 56.1424], + [-133.6328, 56.1081], + [-133.5259, 56.0963], + [-133.505, 56.0775], + [-133.6361, 56.0859], + [-133.7022, 56.0669], + [-133.8092, 55.9668], + [-133.7939, 55.9164], + [-133.6961, 55.9128], + [-133.6272, 55.9678], + [-133.5385, 55.981], + [-133.3783, 56.0328], + [-133.365, 55.9886], + [-133.4311, 55.9559], + [-133.4422, 55.9133], + [-133.3844, 55.8947], + [-133.3861, 55.9539], + [-133.2878, 56.0156], + [-133.2922, 56.0874], + [-133.2533, 56.0192], + [-133.285, 55.9564], + [-133.2399, 55.8833], + [-133.1633, 55.8456], + [-133.1678, 55.8095], + [-133.223, 55.7888], + [-133.2583, 55.7464], + [-133.314, 55.7599], + [-133.3423, 55.7063], + [-133.3911, 55.7287], + [-133.4078, 55.6477], + [-133.3592, 55.6069], + [-133.2716, 55.5756], + [-133.1819, 55.5809], + [-133.1378, 55.613], + [-133.0855, 55.6109], + [-133.0817, 55.5603], + [-133.156, 55.4766], + [-133.0725, 55.4473], + [-133.0511, 55.4002], + [-132.9752, 55.3661], + [-133.0039, 55.3431], + [-133.1027, 55.3753], + [-133.2255, 55.3828], + [-133.2795, 55.3511], + [-133.235, 55.2842], + [-133.1411, 55.2852], + [-133.0897, 55.2696], + [-132.9585, 55.2767], + [-132.9795, 55.2472], + [-133.0395, 55.2342], + [-133.0161, 55.2031], + [-132.9696, 55.2229], + [-132.8806, 55.2314], + [-132.8353, 55.2693], + [-132.8267, 55.2019], + [-132.7094, 55.148], + [-132.6635, 55.1393], + [-132.629, 55.1723], + [-132.6577, 55.2349], + [-132.5822, 55.1719], + [-132.6292, 55.1109], + [-132.6244, 55.0617], + [-132.5844, 55.1186], + [-132.525, 55.1161], + [-132.5575, 55.0765], + [-132.5211, 55.0394], + [-132.6163, 54.9699], + [-132.5294, 54.9327], + [-132.4695, 54.98], + [-132.4927, 54.8952], + [-132.4478, 54.9039], + [-132.4111, 54.9678], + [-132.3605, 54.917], + [-132.3755, 54.8935], + [-132.3072, 54.8392], + [-132.3656, 54.8186], + [-132.3078, 54.7803], + [-132.31, 54.7217], + [-132.2308, 54.718], + [-132.165, 54.6908], + [-132.0896, 54.7012], + [-132.0178, 54.69], + [-131.9982, 54.7297], + [-132.0182, 54.7848], + [-131.9633, 54.7831], + [-131.9728, 54.8489], + [-132.054, 54.8928], + [-131.9789, 54.8983], + [-131.9656, 54.9528], + [-132.0305, 55.0332], + [-132.1306, 54.9964], + [-132.2056, 55.0033], + [-132.0928, 55.0406], + [-132.076, 55.0797], + [-131.9944, 55.1128], + [-132.0367, 55.1431], + [-131.9755, 55.1836], + [-131.9922, 55.2583], + [-132.0283, 55.2798], + [-132.1103, 55.1989], + [-132.2273, 55.2207], + [-132.2906, 55.2447], + [-132.1664, 55.2369], + [-132.0939, 55.2667], + [-132.1463, 55.3377], + [-132.205, 55.3628], + [-132.2595, 55.4171], + [-132.3626, 55.4077], + [-132.4111, 55.4203], + [-132.3189, 55.4703], + [-132.3972, 55.4742], + [-132.4122, 55.5155], + [-132.4883, 55.4964], + [-132.5152, 55.5123], + [-132.5854, 55.4986], + [-132.5356, 55.5603], + [-132.5387, 55.6084], + [-132.4217, 55.5395], + [-132.2305, 55.4843], + [-132.1761, 55.4506], + [-132.1822, 55.5059], + [-132.3043, 55.5599], + [-132.3472, 55.6009], + [-132.3737, 55.6609], + [-132.4958, 55.6594], + [-132.4444, 55.7201], + [-132.4911, 55.7545], + [-132.4861, 55.7967], + [-132.5949, 55.8795], + [-132.6164, 55.9083], + [-132.715, 55.9584], + [-132.7346, 55.9842], + [-132.8272, 56.0228], + [-132.9675, 56.0281], + [-133.0119, 56.0557], + [-133.0779, 56.0429], + [-133.1222, 56.0937], + [-133.0766, 56.1111], + [-133.0379, 56.1827], + [-133.0739, 56.2334], + [-133.1239, 56.2601], + [-133.1502, 56.3069], + [-133.2032, 56.3351], + [-133.3071, 56.3218], + [-133.3573, 56.3401], + [-133.4156, 56.3269], + [-133.6027, 56.3553] + ] + ], + [ + [ + [-155.8764, 20.0956], + [-155.8234, 20.0276], + [-155.9367, 19.8497], + [-155.96, 19.8531], + [-156.0503, 19.7744], + [-156.0328, 19.6563], + [-155.9753, 19.6046], + [-155.9508, 19.4869], + [-155.9203, 19.4769], + [-155.8847, 19.3322], + [-155.9189, 19.115], + [-155.8819, 19.0364], + [-155.7953, 19.0042], + [-155.6864, 18.9372], + [-155.6378, 18.9347], + [-155.5516, 19.052], + [-155.504, 19.1357], + [-155.4523, 19.1474], + [-155.4154, 19.1838], + [-155.3471, 19.2135], + [-155.2936, 19.2634], + [-155.2078, 19.2562], + [-155.1305, 19.2728], + [-155.0714, 19.3111], + [-154.9725, 19.3489], + [-154.8206, 19.4769], + [-154.8058, 19.5161], + [-154.9031, 19.5689], + [-154.98, 19.6376], + [-155.0022, 19.7364], + [-155.0903, 19.7347], + [-155.0811, 19.8475], + [-155.1572, 19.9325], + [-155.2746, 20.0165], + [-155.4383, 20.0925], + [-155.5561, 20.1289], + [-155.5878, 20.1188], + [-155.7303, 20.2022], + [-155.7539, 20.2361], + [-155.8369, 20.2672], + [-155.8881, 20.2517], + [-155.9033, 20.2131], + [-155.8764, 20.0956] + ] + ], + [ + [ + [-135.8928, 57.9986], + [-135.7797, 57.9555], + [-135.7076, 57.9421], + [-135.5022, 57.8764], + [-135.4137, 57.8591], + [-135.3158, 57.807], + [-135.2025, 57.7765], + [-135.0202, 57.7798], + [-134.9578, 57.8167], + [-135.0741, 57.8783], + [-135.1572, 57.9], + [-135.141, 57.924], + [-134.9995, 57.8892], + [-134.9226, 57.9232], + [-134.9142, 57.9763], + [-134.9527, 58.04], + [-135.1087, 58.0607], + [-135.1161, 58.0914], + [-135.275, 58.0975], + [-135.4063, 58.1442], + [-135.4672, 58.1311], + [-135.4878, 58.0858], + [-135.5576, 58.0449], + [-135.5976, 57.9892], + [-135.6433, 57.9661], + [-135.7452, 57.992], + [-135.637, 57.9957], + [-135.7133, 58.0594], + [-135.626, 58.049], + [-135.5184, 58.1268], + [-135.5277, 58.1876], + [-135.6496, 58.2291], + [-135.7322, 58.2386], + [-135.7797, 58.2842], + [-135.825, 58.2827], + [-136.0056, 58.1881], + [-136.1404, 58.2256], + [-136.2027, 58.1773], + [-136.2029, 58.1453], + [-136.2957, 58.2232], + [-136.354, 58.2238], + [-136.3201, 58.1551], + [-136.4437, 58.1252], + [-136.4386, 58.0952], + [-136.2495, 57.9824], + [-136.1104, 57.8704], + [-136.272, 57.9688], + [-136.3539, 58.0028], + [-136.3611, 57.9339], + [-136.4322, 57.8431], + [-136.2951, 57.7629], + [-136.2589, 57.7773], + [-136.2144, 57.7411], + [-136.1096, 57.6911], + [-136.1621, 57.6423], + [-136.0756, 57.5995], + [-135.9686, 57.5291], + [-135.9228, 57.5245], + [-135.8843, 57.4881], + [-135.8244, 57.4723], + [-135.8178, 57.445], + [-136, 57.5295], + [-136.0317, 57.5219], + [-135.9683, 57.4633], + [-135.9144, 57.4475], + [-135.84, 57.3892], + [-135.713, 57.3664], + [-135.6755, 57.4069], + [-135.6201, 57.4119], + [-135.5556, 57.4527], + [-135.5811, 57.5177], + [-135.5705, 57.5955], + [-135.7056, 57.6589], + [-135.7283, 57.72], + [-135.7855, 57.7547], + [-135.6263, 57.7015], + [-135.5337, 57.6521], + [-135.2485, 57.5484], + [-135.1286, 57.4971], + [-135.0886, 57.4655], + [-134.9818, 57.4573], + [-134.8706, 57.4647], + [-134.8334, 57.4873], + [-134.8622, 57.5478], + [-134.85, 57.5805], + [-134.9229, 57.6779], + [-134.9288, 57.7571], + [-135.0216, 57.7439], + [-135.1106, 57.76], + [-135.2361, 57.7072], + [-135.2444, 57.7322], + [-135.3271, 57.7472], + [-135.3774, 57.8013], + [-135.5178, 57.8431], + [-135.5769, 57.8838], + [-135.6681, 57.9149], + [-135.7734, 57.9228], + [-135.8205, 57.9695], + [-135.8928, 57.9986] + ] + ], + [ + [ + [-171.65, 63.7729], + [-171.7068, 63.7464], + [-171.7536, 63.6839], + [-171.738, 63.6547], + [-171.7854, 63.6312], + [-171.8391, 63.5516], + [-171.8432, 63.4859], + [-171.8167, 63.4313], + [-171.7312, 63.3667], + [-171.6604, 63.3563], + [-171.5458, 63.3187], + [-171.5042, 63.3271], + [-171.4333, 63.3083], + [-171.2964, 63.3526], + [-171.2833, 63.3833], + [-171.1917, 63.3958], + [-171.0604, 63.4333], + [-170.9458, 63.4354], + [-170.8521, 63.4562], + [-170.7833, 63.4083], + [-170.6797, 63.4026], + [-170.6297, 63.3818], + [-170.5849, 63.3964], + [-170.5229, 63.3646], + [-170.4714, 63.3599], + [-170.3526, 63.3141], + [-170.3167, 63.2875], + [-170.2375, 63.2792], + [-170.2245, 63.188], + [-170.1021, 63.1896], + [-170.0042, 63.1437], + [-169.9104, 63.1458], + [-169.7583, 63.0812], + [-169.7109, 63.0109], + [-169.7708, 63.0083], + [-169.7542, 62.9583], + [-169.6375, 62.9375], + [-169.6172, 62.9672], + [-169.5318, 62.9776], + [-169.5828, 63.0276], + [-169.5771, 63.0521], + [-169.4891, 63.0974], + [-169.4563, 63.0958], + [-169.3745, 63.1557], + [-169.2125, 63.2], + [-169.1396, 63.1896], + [-169.0667, 63.1979], + [-168.9521, 63.1604], + [-168.8792, 63.1604], + [-168.7214, 63.2318], + [-168.737, 63.263], + [-168.7, 63.3], + [-168.8203, 63.3026], + [-168.8813, 63.3292], + [-169.0042, 63.3417], + [-169.2563, 63.3417], + [-169.3938, 63.3563], + [-169.475, 63.3438], + [-169.5578, 63.3609], + [-169.5693, 63.3995], + [-169.6521, 63.4292], + [-169.8229, 63.4292], + [-169.9375, 63.4688], + [-170.0021, 63.4667], + [-170.0641, 63.488], + [-170.1062, 63.6146], + [-170.1458, 63.6146], + [-170.2896, 63.6875], + [-170.4167, 63.6854], + [-170.4771, 63.6958], + [-170.5359, 63.6672], + [-170.6375, 63.6688], + [-170.7307, 63.6391], + [-170.8932, 63.5714], + [-170.9854, 63.5646], + [-171.1104, 63.5875], + [-171.175, 63.5875], + [-171.2271, 63.6125], + [-171.4995, 63.6005], + [-171.5172, 63.6578], + [-171.65, 63.7062], + [-171.65, 63.7729] + ] + ], + [ + [ + [-66.022087096, 17.977361679], + [-65.914024352, 17.975973129], + [-65.830139159, 18.019027711], + [-65.761253, 18.154585], + [-65.725418, 18.188194], + [-65.604584, 18.210417], + [-65.62764, 18.259306], + [-65.619308, 18.365973], + [-65.666527, 18.361805], + [-65.814857483, 18.409305572], + [-65.904861, 18.453194], + [-65.990417, 18.460417], + [-66.005142212, 18.44430542], + [-66.185974001, 18.46986], + [-66.284584046, 18.471248627], + [-66.397636414, 18.49319458], + [-66.452919007, 18.469305038], + [-66.622642518, 18.494026184], + [-66.702079773, 18.474027635], + [-66.781806946, 18.491804123], + [-66.9118042, 18.48374939], + [-67.016807556, 18.510971069], + [-67.090698243, 18.515972138], + [-67.169303894, 18.480138779], + [-67.163749696, 18.411804199], + [-67.270416259, 18.366527557], + [-67.235137939, 18.299304962], + [-67.195419312, 18.290138245], + [-67.153198, 18.204306], + [-67.185417, 18.165974], + [-67.181808, 18.112638], + [-67.215416, 17.982916], + [-67.105698, 17.945415], + [-67.062363, 17.973747], + [-66.987915, 17.970415], + [-66.953751, 17.932362], + [-66.838470459, 17.949306489], + [-66.770141602, 18.005973817], + [-66.672363, 17.965973], + [-66.578476, 17.961529], + [-66.459305, 17.989584], + [-66.392082, 17.946529], + [-66.317085, 17.977083], + [-66.237083, 17.926527], + [-66.206802, 17.962641], + [-66.15486145, 17.929304122], + [-66.022087096, 17.977361679] + ] + ], + [ + [ + [-134.177, 58.1546], + [-134.3336, 58.1428], + [-134.4486, 58.1739], + [-134.538, 58.1824], + [-134.6926, 58.1596], + [-134.7094, 58.2282], + [-134.8047, 58.3218], + [-134.8781, 58.3574], + [-134.887, 58.3218], + [-134.9527, 58.4091], + [-134.9704, 58.3698], + [-134.957, 58.31], + [-134.8959, 58.1916], + [-134.866, 58.1814], + [-134.7709, 58.0873], + [-134.8099, 58.0452], + [-134.7056, 57.8317], + [-134.7309, 57.7217], + [-134.6778, 57.6113], + [-134.6118, 57.5624], + [-134.5796, 57.5062], + [-134.4872, 57.5458], + [-134.3741, 57.5608], + [-134.3759, 57.5442], + [-134.535, 57.5233], + [-134.53, 57.4819], + [-134.5797, 57.4765], + [-134.4686, 57.3843], + [-134.4878, 57.3725], + [-134.5808, 57.401], + [-134.5807, 57.3444], + [-134.5098, 57.3175], + [-134.57, 57.305], + [-134.6539, 57.2233], + [-134.6067, 57.1528], + [-134.6378, 57.1076], + [-134.6004, 57.0335], + [-134.4926, 57.0278], + [-134.4804, 57.0497], + [-134.3745, 57.0919], + [-134.3778, 57.1313], + [-134.3283, 57.1236], + [-134.281, 57.1579], + [-134.1557, 57.2075], + [-134.1486, 57.2636], + [-134.0956, 57.2709], + [-134.1606, 57.3333], + [-134.1744, 57.3911], + [-134.1078, 57.3213], + [-134.0861, 57.3614], + [-133.9808, 57.3042], + [-133.8624, 57.3677], + [-133.9189, 57.4437], + [-133.9688, 57.4499], + [-134.0889, 57.495], + [-134, 57.4947], + [-133.9137, 57.4715], + [-133.9464, 57.5673], + [-133.9351, 57.6109], + [-134.0472, 57.6747], + [-134.1483, 57.7631], + [-134.2339, 57.8647], + [-134.3102, 57.8558], + [-134.2811, 57.9175], + [-134.3304, 58.0005], + [-134.2383, 57.9669], + [-134.3154, 58.0957], + [-134.2038, 58.0246], + [-134.1387, 57.9048], + [-134.0928, 57.8493], + [-134.0317, 57.8175], + [-133.9981, 57.7199], + [-133.8561, 57.6228], + [-133.8392, 57.5778], + [-133.8004, 57.5845], + [-133.809, 57.6276], + [-133.8941, 57.6847], + [-133.8748, 57.7321], + [-133.9006, 57.8064], + [-134.0064, 57.8933], + [-133.9922, 57.9122], + [-134.0987, 57.9826], + [-134.099, 58.0175], + [-134.1724, 58.0671], + [-134.2041, 58.1147], + [-134.177, 58.1546] + ] + ], + [ + [ + [-166.1042, 60.3646], + [-166.1245, 60.3755], + [-166.2729, 60.3833], + [-166.3755, 60.3443], + [-166.4375, 60.375], + [-166.5745, 60.3516], + [-166.5896, 60.3021], + [-166.6375, 60.325], + [-166.7583, 60.3042], + [-166.8286, 60.2693], + [-166.7964, 60.2391], + [-166.862, 60.2026], + [-166.9479, 60.2208], + [-167.0542, 60.2146], + [-167.1083, 60.2313], + [-167.3146, 60.2313], + [-167.3917, 60.2], + [-167.4401, 60.2016], + [-167.338, 60.1266], + [-167.3307, 60.0651], + [-167.2401, 60.0578], + [-167.1349, 60], + [-167.0226, 60], + [-167.0123, 59.9832], + [-166.8954, 59.9591], + [-166.7519, 59.8929], + [-166.675, 59.8844], + [-166.613, 59.8527], + [-166.4162, 59.8567], + [-166.3073, 59.8262], + [-166.2004, 59.7758], + [-166.1926, 59.7515], + [-166.1086, 59.7531], + [-166.0808, 59.7757], + [-166.1281, 59.8205], + [-166.0296, 59.867], + [-165.9553, 59.8817], + [-165.8922, 59.8717], + [-165.7468, 59.9084], + [-165.7165, 59.8943], + [-165.5799, 59.9127], + [-165.5885, 59.9502], + [-165.6536, 59.9961], + [-165.7109, 60.063], + [-165.6672, 60.0984], + [-165.6776, 60.1516], + [-165.7214, 60.163], + [-165.6839, 60.2005], + [-165.7255, 60.2464], + [-165.6776, 60.2703], + [-165.7854, 60.3229], + [-165.8729, 60.3396], + [-165.9995, 60.3089], + [-166.0854, 60.3187], + [-166.1042, 60.3646] + ] + ], + [ + [ + [-135.4101, 57.5574], + [-135.4506, 57.5575], + [-135.551, 57.5093], + [-135.5329, 57.4511], + [-135.6008, 57.4035], + [-135.495, 57.3533], + [-135.6065, 57.3719], + [-135.685, 57.3725], + [-135.5498, 57.2378], + [-135.4995, 57.2561], + [-135.3456, 57.2473], + [-135.4242, 57.1687], + [-135.3929, 57.1438], + [-135.343, 57.1857], + [-135.2839, 57.1742], + [-135.3722, 57.1497], + [-135.4038, 57.1011], + [-135.3389, 57.0472], + [-135.2724, 57.0319], + [-135.3039, 56.9847], + [-135.3761, 56.9891], + [-135.3406, 56.8772], + [-135.3967, 56.8801], + [-135.3779, 56.8164], + [-135.3283, 56.8283], + [-135.3092, 56.777], + [-135.2666, 56.7575], + [-135.2911, 56.7208], + [-135.1912, 56.7619], + [-135.2244, 56.6936], + [-135.18, 56.6659], + [-135.1183, 56.72], + [-135.0344, 56.7697], + [-135.0177, 56.7437], + [-135.0917, 56.7195], + [-135.1417, 56.6786], + [-135.1283, 56.6064], + [-135.0783, 56.6008], + [-135.0089, 56.6367], + [-134.9615, 56.6187], + [-134.9912, 56.5748], + [-135.0178, 56.5981], + [-135.0648, 56.5407], + [-134.9022, 56.3506], + [-134.8945, 56.3148], + [-134.8422, 56.3222], + [-134.8089, 56.2414], + [-134.7716, 56.2177], + [-134.7183, 56.2245], + [-134.6656, 56.1673], + [-134.6283, 56.2643], + [-134.6389, 56.4769], + [-134.6651, 56.5004], + [-134.6677, 56.5921], + [-134.6377, 56.5395], + [-134.6155, 56.6361], + [-134.6645, 56.8073], + [-134.7042, 56.8391], + [-134.6967, 56.9003], + [-134.7363, 56.9693], + [-134.7635, 57.0687], + [-134.7893, 57.0846], + [-134.7994, 57.1633], + [-134.8641, 57.212], + [-134.8628, 57.2717], + [-134.945, 57.2711], + [-134.9506, 57.3273], + [-134.9222, 57.3438], + [-134.8323, 57.2926], + [-134.8036, 57.3409], + [-134.8539, 57.4114], + [-134.8987, 57.4261], + [-135.0079, 57.411], + [-135.1642, 57.4454], + [-135.225, 57.4889], + [-135.2749, 57.4667], + [-135.3214, 57.5365], + [-135.4101, 57.5574] + ] + ], + [ + [ + [-163.7617, 55.0475], + [-163.8961, 55.0364], + [-164.0227, 54.9723], + [-164.1606, 54.9601], + [-164.2061, 54.9283], + [-164.3378, 54.8953], + [-164.4328, 54.9328], + [-164.5544, 54.8878], + [-164.5573, 54.8539], + [-164.6715, 54.7003], + [-164.7167, 54.6561], + [-164.8036, 54.6421], + [-164.9289, 54.5997], + [-164.94, 54.5364], + [-164.905, 54.5086], + [-164.8478, 54.42], + [-164.7394, 54.3931], + [-164.655, 54.3886], + [-164.4494, 54.4211], + [-164.335, 54.4821], + [-164.328, 54.5403], + [-164.2061, 54.5959], + [-164.0667, 54.624], + [-163.8189, 54.6361], + [-163.6774, 54.627], + [-163.5868, 54.6105], + [-163.4989, 54.6525], + [-163.4208, 54.6557], + [-163.4256, 54.72], + [-163.3972, 54.7419], + [-163.3261, 54.7459], + [-163.285, 54.6958], + [-163.1134, 54.6953], + [-163.1572, 54.6678], + [-163.0601, 54.6625], + [-163.1, 54.7295], + [-163.1866, 54.7769], + [-163.2244, 54.7553], + [-163.33, 54.7531], + [-163.4022, 54.8397], + [-163.395, 54.895], + [-163.467, 54.9851], + [-163.5317, 55.0147], + [-163.5396, 55.051], + [-163.6594, 55.04], + [-163.7617, 55.0475] + ] + ], + [ + [ + [-133.8661, 57.0959], + [-134.0083, 57.0728], + [-134.0411, 57.0227], + [-133.8922, 56.9484], + [-133.8328, 56.9014], + [-133.8983, 56.8864], + [-133.8729, 56.8591], + [-133.7639, 56.8072], + [-133.7, 56.8259], + [-133.712, 56.7883], + [-133.7086, 56.6481], + [-133.6533, 56.5917], + [-133.6744, 56.52], + [-133.645, 56.4404], + [-133.5089, 56.4363], + [-133.4324, 56.4506], + [-133.3883, 56.4965], + [-133.3263, 56.4661], + [-133.3, 56.48], + [-133.2211, 56.4481], + [-133.1561, 56.4583], + [-133.0846, 56.5273], + [-133.0978, 56.6011], + [-133.1461, 56.6367], + [-133.2507, 56.6519], + [-133.2162, 56.6972], + [-133.2499, 56.7498], + [-133.3028, 56.73], + [-133.3427, 56.7647], + [-133.3011, 56.7961], + [-133.2462, 56.795], + [-133.2156, 56.7364], + [-133.0272, 56.6047], + [-132.956, 56.6278], + [-132.9323, 56.665], + [-132.9967, 56.8131], + [-132.9406, 56.8522], + [-132.9923, 56.9375], + [-133.0755, 56.9908], + [-133.2065, 57.0122], + [-133.3222, 57.0059], + [-133.2637, 56.938], + [-133.2886, 56.925], + [-133.3263, 56.9929], + [-133.5692, 57.0439], + [-133.5974, 57.059], + [-133.8661, 57.0959] + ] + ], + [ + [ + [-131.2511, 55.967], + [-131.459, 55.9357], + [-131.5444, 55.9071], + [-131.6, 55.8996], + [-131.5246, 55.8383], + [-131.7121, 55.8336], + [-131.7009, 55.8023], + [-131.6308, 55.7837], + [-131.4989, 55.7937], + [-131.6166, 55.7628], + [-131.671, 55.7701], + [-131.7328, 55.7289], + [-131.6991, 55.6965], + [-131.7238, 55.6345], + [-131.6294, 55.6011], + [-131.6833, 55.5661], + [-131.7182, 55.5168], + [-131.8311, 55.4486], + [-131.7365, 55.3978], + [-131.6872, 55.3505], + [-131.5504, 55.2939], + [-131.4661, 55.3751], + [-131.54, 55.4756], + [-131.4928, 55.4781], + [-131.4661, 55.4092], + [-131.4119, 55.3713], + [-131.3253, 55.4299], + [-131.3312, 55.5104], + [-131.3514, 55.5372], + [-131.3691, 55.6309], + [-131.289, 55.4657], + [-131.33, 55.3797], + [-131.3896, 55.3397], + [-131.4838, 55.3], + [-131.4528, 55.2756], + [-131.3555, 55.2595], + [-131.2835, 55.2881], + [-131.2542, 55.3325], + [-131.2928, 55.3792], + [-131.2521, 55.3995], + [-131.1904, 55.3616], + [-131.2405, 55.2871], + [-131.327, 55.2452], + [-131.235, 55.1968], + [-131.185, 55.1908], + [-131.1477, 55.2297], + [-131.0643, 55.2602], + [-131.0507, 55.32], + [-131.021, 55.3501], + [-131.0383, 55.4], + [-130.9706, 55.3928], + [-130.9943, 55.4738], + [-130.9894, 55.5373], + [-130.9397, 55.6198], + [-130.9738, 55.7058], + [-131.0419, 55.7668], + [-131.0711, 55.8278], + [-131.2511, 55.967] + ] + ], + [ + [ + [-166.6464, 54.0132], + [-166.726, 53.9989], + [-166.7472, 54.0143], + [-166.8534, 53.976], + [-166.8765, 53.9877], + [-167.0756, 53.925], + [-167.1529, 53.8282], + [-167.0952, 53.8194], + [-167.0927, 53.7901], + [-167.0095, 53.7547], + [-166.9611, 53.7772], + [-166.8317, 53.7406], + [-166.7122, 53.7278], + [-166.8332, 53.7077], + [-166.7889, 53.6258], + [-166.8961, 53.7164], + [-167, 53.7175], + [-167.0543, 53.7006], + [-167.0722, 53.6665], + [-167.0093, 53.6421], + [-167.045, 53.6078], + [-167.1061, 53.6344], + [-167.165, 53.6014], + [-167.1232, 53.5437], + [-167.0735, 53.5101], + [-167.161, 53.5097], + [-167.1618, 53.4673], + [-167.2845, 53.4777], + [-167.3281, 53.4058], + [-167.4718, 53.4479], + [-167.4985, 53.394], + [-167.5515, 53.4029], + [-167.7106, 53.3816], + [-167.7378, 53.3575], + [-167.8551, 53.3101], + [-167.7582, 53.2725], + [-167.7092, 53.274], + [-167.6567, 53.2472], + [-167.6106, 53.2829], + [-167.4958, 53.279], + [-167.4555, 53.3211], + [-167.3049, 53.335], + [-167.2968, 53.369], + [-167.1714, 53.3972], + [-167.151, 53.4186], + [-167.0528, 53.4317], + [-167.0292, 53.4642], + [-166.9011, 53.4336], + [-166.8789, 53.4725], + [-166.8078, 53.4342], + [-166.7644, 53.4436], + [-166.7461, 53.4864], + [-166.7711, 53.5269], + [-166.6622, 53.4836], + [-166.5964, 53.5338], + [-166.5517, 53.6236], + [-166.425, 53.66], + [-166.2744, 53.6864], + [-166.2672, 53.7219], + [-166.3244, 53.7306], + [-166.3206, 53.7689], + [-166.4133, 53.7631], + [-166.5696, 53.7056], + [-166.5104, 53.7772], + [-166.4128, 53.8081], + [-166.3561, 53.8572], + [-166.2625, 53.8714], + [-166.2217, 53.9022], + [-166.275, 53.9831], + [-166.3367, 53.9461], + [-166.4428, 53.9514], + [-166.4439, 53.9033], + [-166.5234, 53.8733], + [-166.6182, 53.8684], + [-166.6461, 53.9286], + [-166.5905, 53.9638], + [-166.6464, 54.0132] + ] + ], + [ + [ + [-73.74, 40.5944], + [-73.6507, 40.5958], + [-73.5952, 40.6338], + [-73.3868, 40.6568], + [-73.2785, 40.6842], + [-73.2256, 40.7181], + [-73.1487, 40.6983], + [-73.0206, 40.7486], + [-72.9453, 40.7408], + [-72.8864, 40.7653], + [-72.8694, 40.7392], + [-72.7238, 40.8089], + [-72.6708, 40.7848], + [-72.4921, 40.8354], + [-72.4933, 40.8831], + [-72.4422, 40.8747], + [-72.4738, 40.8389], + [-71.9575, 41.0283], + [-71.8741, 41.0517], + [-71.8959, 41.0772], + [-71.9603, 41.0702], + [-72.0222, 41.0214], + [-72.1103, 40.9947], + [-72.1594, 41.0539], + [-72.2789, 41.0003], + [-72.3717, 40.9956], + [-72.4072, 40.95], + [-72.4425, 40.9456], + [-72.4747, 40.8994], + [-72.5517, 40.9147], + [-72.6125, 40.9083], + [-72.5267, 40.98], + [-72.4564, 41.0014], + [-72.4022, 41.0756], + [-72.2783, 41.1593], + [-72.3536, 41.1403], + [-72.3967, 41.0964], + [-72.4452, 41.0868], + [-72.4789, 41.0514], + [-72.6369, 40.9814], + [-72.778, 40.9652], + [-73.02, 40.9628], + [-73.1187, 40.9778], + [-73.1711, 40.9042], + [-73.2939, 40.9244], + [-73.4383, 40.9009], + [-73.4369, 40.935], + [-73.4853, 40.9473], + [-73.4886, 40.8775], + [-73.5414, 40.8769], + [-73.5657, 40.9155], + [-73.6764, 40.8575], + [-73.7297, 40.8664], + [-73.7658, 40.8121], + [-73.8697, 40.7792], + [-73.8883, 40.7989], + [-73.936, 40.7775], + [-73.9728, 40.7025], + [-73.9984, 40.7014], + [-74.0405, 40.6156], + [-74, 40.5711], + [-73.8761, 40.5847], + [-73.897, 40.6237], + [-73.8234, 40.6493], + [-73.74, 40.5944] + ] + ], + [ + [ + [-134.245, 56.9355], + [-134.2195, 56.9025], + [-134.145, 56.8753], + [-134.1617, 56.8489], + [-134.2942, 56.9078], + [-134.3561, 56.8942], + [-134.3456, 56.8347], + [-134.4033, 56.8597], + [-134.4228, 56.8411], + [-134.3911, 56.7564], + [-134.4011, 56.7261], + [-134.3216, 56.6437], + [-134.2652, 56.603], + [-134.2672, 56.5606], + [-134.2028, 56.5414], + [-134.1389, 56.4775], + [-134.0956, 56.5439], + [-134.0444, 56.4869], + [-134.0744, 56.4458], + [-134.0567, 56.3839], + [-134.1172, 56.4131], + [-134.1533, 56.3978], + [-134.2378, 56.4323], + [-134.2336, 56.361], + [-134.2939, 56.3539], + [-134.2744, 56.3142], + [-134.1761, 56.3278], + [-134.231, 56.2758], + [-134.2768, 56.2656], + [-134.2461, 56.1756], + [-134.2606, 56.1333], + [-134.2122, 56.105], + [-134.2222, 56.0631], + [-134.1694, 56.0578], + [-134.1373, 56.0091], + [-134.0911, 56.0895], + [-134.1039, 56.1431], + [-134.0613, 56.2316], + [-134.0263, 56.1479], + [-134.045, 56.1179], + [-133.9942, 56.0803], + [-133.9577, 56.0947], + [-133.9339, 56.1687], + [-133.9561, 56.2051], + [-133.8817, 56.2205], + [-133.9189, 56.2779], + [-133.9812, 56.2659], + [-133.9522, 56.3454], + [-133.875, 56.275], + [-133.8311, 56.3233], + [-133.9077, 56.3688], + [-133.892, 56.4284], + [-133.8355, 56.4305], + [-133.9268, 56.5165], + [-133.8743, 56.5204], + [-133.8365, 56.6061], + [-133.7778, 56.5578], + [-133.7446, 56.5565], + [-133.6904, 56.6026], + [-133.7361, 56.6728], + [-133.7706, 56.6795], + [-133.735, 56.7783], + [-133.8745, 56.8109], + [-133.8642, 56.7518], + [-133.935, 56.6933], + [-133.9272, 56.76], + [-133.965, 56.8244], + [-133.9995, 56.8236], + [-134.0144, 56.8736], + [-134.1545, 56.9195], + [-134.245, 56.9355] + ] + ], + [ + [ + [-152.6486, 58.4759], + [-152.6964, 58.4148], + [-152.7267, 58.4506], + [-152.8678, 58.3861], + [-152.778, 58.3671], + [-152.784, 58.2784], + [-152.9802, 58.2865], + [-153.0449, 58.3064], + [-153.1044, 58.2603], + [-153.0038, 58.2059], + [-152.9294, 58.1931], + [-152.9154, 58.1673], + [-153.0343, 58.2018], + [-153.063, 58.1932], + [-153.1732, 58.2161], + [-153.2222, 58.1595], + [-153.1668, 58.1263], + [-153.0739, 58.1006], + [-153.02, 58.0453], + [-152.9711, 58.0403], + [-152.8613, 57.9924], + [-152.7572, 58.0122], + [-152.7593, 58.0558], + [-152.7061, 58.0494], + [-152.6278, 58.0769], + [-152.6028, 58.1594], + [-152.56, 58.1883], + [-152.5694, 58.1044], + [-152.4367, 58.1394], + [-152.3967, 58.1181], + [-152.2714, 58.1252], + [-152.3572, 58.2011], + [-152.3199, 58.2478], + [-152.2683, 58.2573], + [-152.2203, 58.1916], + [-152.1394, 58.1567], + [-152.083, 58.1536], + [-152.0274, 58.2089], + [-152, 58.2061], + [-151.9646, 58.2594], + [-151.9706, 58.3222], + [-151.9957, 58.3452], + [-152.0357, 58.2879], + [-152.0839, 58.3081], + [-152.1256, 58.2298], + [-152.1394, 58.2947], + [-152.0939, 58.3719], + [-152.1739, 58.3725], + [-152.2017, 58.3422], + [-152.2722, 58.3794], + [-152.2628, 58.4047], + [-152.3678, 58.3808], + [-152.3811, 58.3131], + [-152.4394, 58.3747], + [-152.4806, 58.3328], + [-152.5035, 58.4124], + [-152.4872, 58.4626], + [-152.5362, 58.458], + [-152.6486, 58.4759] + ] + ], + [ + [ + [-167.9935, 53.5642], + [-168.0867, 53.5592], + [-168.2345, 53.5292], + [-168.3454, 53.4703], + [-168.4078, 53.4219], + [-168.3844, 53.3806], + [-168.4294, 53.3236], + [-168.3745, 53.3181], + [-168.3445, 53.2614], + [-168.4378, 53.2547], + [-168.4828, 53.2753], + [-168.5094, 53.2514], + [-168.5872, 53.2717], + [-168.6944, 53.2272], + [-168.8039, 53.1408], + [-168.8056, 53.1058], + [-168.7617, 53.0803], + [-168.8072, 53.0258], + [-168.8589, 53.0183], + [-168.8583, 52.9508], + [-168.9595, 52.9319], + [-168.9567, 52.8664], + [-168.8167, 52.9244], + [-168.7861, 52.9486], + [-168.6272, 52.9914], + [-168.5922, 53.0256], + [-168.4978, 53.0325], + [-168.3944, 53.1247], + [-168.3617, 53.1325], + [-168.3339, 53.2042], + [-168.27, 53.2422], + [-168.1211, 53.2761], + [-168.0022, 53.3172], + [-167.8413, 53.3861], + [-167.8522, 53.4495], + [-167.7893, 53.4883], + [-167.7912, 53.5211], + [-167.937, 53.5263], + [-167.9935, 53.5642] + ] + ], + [ + [ + [-156.5934, 21.03], + [-156.6333, 21.0267], + [-156.6925, 20.9472], + [-156.6871, 20.882], + [-156.6283, 20.8136], + [-156.5366, 20.7743], + [-156.4631, 20.7812], + [-156.4478, 20.7213], + [-156.4414, 20.605], + [-156.3736, 20.5739], + [-156.2972, 20.5822], + [-156.1927, 20.6283], + [-156.1403, 20.6178], + [-156.0472, 20.6508], + [-155.9872, 20.7083], + [-156.0019, 20.7947], + [-156.1081, 20.825], + [-156.2265, 20.9148], + [-156.2825, 20.9458], + [-156.3294, 20.9456], + [-156.4739, 20.8908], + [-156.5265, 20.9805], + [-156.5934, 21.03] + ] + ], + [ + [ + [-174.14, 52.4133], + [-174.2672, 52.4022], + [-174.3172, 52.3808], + [-174.3589, 52.3133], + [-174.4428, 52.3272], + [-174.4075, 52.2886], + [-174.2406, 52.2756], + [-174.2389, 52.2419], + [-174.36, 52.2128], + [-174.4633, 52.2183], + [-174.405, 52.1819], + [-174.4761, 52.1858], + [-174.5945, 52.1444], + [-174.5806, 52.105], + [-174.6361, 52.1128], + [-174.7839, 52.0794], + [-174.9067, 52.1178], + [-174.9933, 52.0597], + [-175.1289, 52.0281], + [-175.1422, 52.0596], + [-175.2161, 52.0328], + [-175.2589, 52.0458], + [-175.3011, 52.0183], + [-175.2127, 52.0054], + [-175.0159, 52.007], + [-174.9672, 52.0375], + [-174.8932, 52.0471], + [-174.7078, 52.0089], + [-174.6789, 52.0556], + [-174.6483, 52.0231], + [-174.6067, 52.0467], + [-174.5567, 52.035], + [-174.5072, 52.0706], + [-174.4183, 52.0375], + [-174.3728, 52.1028], + [-174.3306, 52.1203], + [-174.2311, 52.0919], + [-174.2089, 52.115], + [-174.0783, 52.1292], + [-174.1978, 52.1969], + [-174.1783, 52.2344], + [-174.0607, 52.2244], + [-173.9928, 52.2906], + [-174.025, 52.3614], + [-174.14, 52.4133] + ] + ], + [ + [ + [-132.42, 56.3478], + [-132.5348, 56.3362], + [-132.5965, 56.2449], + [-132.71, 56.2227], + [-132.7064, 56.1088], + [-132.6361, 56.0317], + [-132.5915, 56.0829], + [-132.4545, 56.0625], + [-132.4307, 56.0286], + [-132.4312, 55.9535], + [-132.352, 55.9124], + [-132.235, 55.925], + [-132.2, 55.9875], + [-132.2156, 56.0442], + [-132.168, 56.0457], + [-132.1082, 56.1127], + [-132.1877, 56.1683], + [-132.2739, 56.1945], + [-132.3131, 56.1898], + [-132.3818, 56.2249], + [-132.3781, 56.3085], + [-132.42, 56.3478] + ] + ], + [ + [ + [-157.9758, 21.71], + [-158.0633, 21.655], + [-158.1169, 21.5847], + [-158.283, 21.5756], + [-158.2303, 21.5349], + [-158.2317, 21.4825], + [-158.1417, 21.3764], + [-158.1031, 21.295], + [-157.9005, 21.3259], + [-157.8188, 21.2576], + [-157.6487, 21.3044], + [-157.7035, 21.3464], + [-157.7446, 21.4211], + [-157.7814, 21.4114], + [-157.8397, 21.4562], + [-157.8338, 21.5265], + [-157.9209, 21.6268], + [-157.9335, 21.6743], + [-157.9758, 21.71] + ] + ], + [ + [ + [-147.0891, 60.3641], + [-147.1042, 60.3792], + [-147.212, 60.3453], + [-147.1651, 60.3068], + [-147.212, 60.2911], + [-147.1859, 60.2505], + [-147.2474, 60.2328], + [-147.3578, 60.162], + [-147.3984, 60.113], + [-147.6167, 60.0104], + [-147.7068, 59.9923], + [-147.6725, 59.9647], + [-147.7443, 59.9559], + [-147.8273, 59.9036], + [-147.7531, 59.8786], + [-147.8613, 59.8721], + [-147.9179, 59.8335], + [-147.8831, 59.7651], + [-147.7689, 59.8042], + [-147.6934, 59.8011], + [-147.6391, 59.8491], + [-147.525, 59.8411], + [-147.469, 59.8599], + [-147.4563, 59.9044], + [-147.5142, 59.9373], + [-147.4464, 59.9659], + [-147.3852, 59.9549], + [-147.3958, 60.0004], + [-147.3604, 60.0417], + [-147.2078, 60.1453], + [-147.0318, 60.2172], + [-146.9172, 60.288], + [-146.9521, 60.3063], + [-147.0604, 60.2667], + [-147.0891, 60.2891], + [-147.0104, 60.3438], + [-147.1432, 60.3401], + [-147.0891, 60.3641] + ] + ], + [ + [ + [-159.4013, 22.2307], + [-159.4768, 22.2305], + [-159.4983, 22.2068], + [-159.5865, 22.2205], + [-159.6598, 22.1719], + [-159.7223, 22.1531], + [-159.746, 22.0968], + [-159.7858, 22.0619], + [-159.7564, 21.9786], + [-159.6664, 21.9524], + [-159.6284, 21.9084], + [-159.4436, 21.868], + [-159.3307, 21.9592], + [-159.3348, 22.0492], + [-159.2978, 22.103], + [-159.2942, 22.1476], + [-159.3501, 22.2151], + [-159.4013, 22.2307] + ] + ], + [ + [ + [172.7906, 53.0047], + [172.6533, 53.0036], + [172.5528, 52.9719], + [172.4672, 52.9308], + [172.5128, 52.9056], + [172.6372, 52.9247], + [172.6245, 52.8653], + [172.7456, 52.8758], + [172.7515, 52.8073], + [172.8928, 52.7864], + [172.9061, 52.7458], + [173.0567, 52.8325], + [173.1161, 52.7844], + [173.23, 52.8575], + [173.3044, 52.8258], + [173.4072, 52.8472], + [173.2874, 52.8591], + [173.3039, 52.9242], + [173.2117, 52.9375], + [173.1245, 52.9903], + [172.9983, 52.9922], + [172.9423, 52.972], + [172.9059, 52.994], + [172.7906, 53.0047] + ] + ], + [ + [ + [-70.1908, 42.0811], + [-70.2331, 42.0597], + [-70.1958, 42.0214], + [-70.1683, 42.06], + [-70.1127, 42.0461], + [-70.0789, 41.9928], + [-70.0719, 41.8981], + [-70.0239, 41.9303], + [-70.0067, 41.8056], + [-70.0528, 41.7761], + [-70.2175, 41.7433], + [-70.2603, 41.7123], + [-70.2892, 41.7347], + [-70.4139, 41.7444], + [-70.4961, 41.7753], + [-70.5478, 41.7756], + [-70.5631, 41.7689], + [-70.5761, 41.7536], + [-70.5908, 41.7458], + [-70.6183, 41.74], + [-70.615, 41.6575], + [-70.6502, 41.6456], + [-70.6346, 41.5382], + [-70.5489, 41.5506], + [-70.5267, 41.5792], + [-70.4839, 41.5546], + [-70.4322, 41.6206], + [-70.3992, 41.6064], + [-70.3392, 41.6372], + [-70.1386, 41.6504], + [-70.0122, 41.6731], + [-69.9633, 41.6531], + [-69.9454, 41.7036], + [-69.9778, 41.7216], + [-69.9653, 41.7742], + [-69.9289, 41.7547], + [-69.9783, 41.9364], + [-70.0664, 42.0453], + [-70.1908, 42.0811] + ] + ], + [ + [ + [-133.1028, 55.2364], + [-133.1241, 55.2586], + [-133.2217, 55.2414], + [-133.1913, 55.1953], + [-133.2395, 55.1836], + [-133.2122, 55.1067], + [-133.2395, 55.0867], + [-133.2111, 55.0428], + [-133.1466, 54.9975], + [-133.1613, 54.9465], + [-133.0744, 54.9125], + [-133.0028, 54.8283], + [-132.9235, 54.8489], + [-132.9724, 54.7995], + [-132.8867, 54.7651], + [-132.8372, 54.6903], + [-132.8183, 54.7117], + [-132.75, 54.6693], + [-132.6817, 54.6819], + [-132.7306, 54.7428], + [-132.7491, 54.8193], + [-132.8551, 54.8963], + [-132.9076, 54.913], + [-132.9633, 54.9889], + [-132.9547, 55.0161], + [-133.0614, 55.0787], + [-133.0106, 55.0867], + [-133.0522, 55.1342], + [-133.1028, 55.2364] + ] + ], + [ + [ + [-176.5633, 51.9972], + [-176.5911, 52.0019], + [-176.6628, 51.9517], + [-176.7229, 51.9681], + [-176.7911, 51.9569], + [-176.7961, 51.9033], + [-176.7306, 51.8747], + [-176.7894, 51.8411], + [-176.7739, 51.8083], + [-176.705, 51.7881], + [-176.8078, 51.7792], + [-176.8661, 51.8267], + [-176.9044, 51.7708], + [-176.8311, 51.7458], + [-176.8994, 51.6967], + [-176.9811, 51.6653], + [-176.9889, 51.6064], + [-176.9344, 51.5914], + [-176.8672, 51.6828], + [-176.8389, 51.6814], + [-176.8061, 51.6086], + [-176.7733, 51.6331], + [-176.7233, 51.6247], + [-176.715, 51.6806], + [-176.5806, 51.6875], + [-176.5083, 51.7617], + [-176.4695, 51.7264], + [-176.4267, 51.7489], + [-176.4272, 51.8367], + [-176.4978, 51.8519], + [-176.519, 51.8354], + [-176.6291, 51.8627], + [-176.5811, 51.9136], + [-176.5633, 51.9972] + ] + ], + [ + [ + [-132.9317, 56.8217], + [-132.9794, 56.8058], + [-132.9396, 56.7403], + [-132.9344, 56.6725], + [-132.9011, 56.6333], + [-132.9455, 56.6318], + [-132.9751, 56.6023], + [-132.9583, 56.5636], + [-132.9521, 56.5097], + [-132.8149, 56.4938], + [-132.7243, 56.5111], + [-132.5425, 56.5838], + [-132.5932, 56.6115], + [-132.6183, 56.6636], + [-132.7368, 56.7125], + [-132.7653, 56.7556], + [-132.8293, 56.795], + [-132.9317, 56.8217] + ] + ], + [ + [ + [-132.3683, 56.4867], + [-132.38, 56.4445], + [-132.3427, 56.4117], + [-132.3417, 56.3428], + [-132.3653, 56.2844], + [-132.275, 56.2069], + [-132.1294, 56.1653], + [-132.0738, 56.1158], + [-132.024, 56.1355], + [-132.0161, 56.195], + [-131.9223, 56.2031], + [-132.0303, 56.3527], + [-132.0944, 56.3711], + [-132.1466, 56.3447], + [-132.237, 56.3971], + [-132.2447, 56.4408], + [-132.3683, 56.4867] + ] + ], + [ + [ + [-146.5354, 60.475], + [-146.5979, 60.4833], + [-146.6453, 60.4599], + [-146.7245, 60.387], + [-146.7083, 60.3417], + [-146.6255, 60.3589], + [-146.5318, 60.3297], + [-146.6974, 60.2786], + [-146.6479, 60.2354], + [-146.6005, 60.2401], + [-146.3938, 60.3271], + [-146.1984, 60.3464], + [-146.1812, 60.3708], + [-146.1005, 60.3734], + [-146.0833, 60.4021], + [-146.1354, 60.4313], + [-146.3625, 60.4063], + [-146.3609, 60.4724], + [-146.412, 60.4766], + [-146.4672, 60.4547], + [-146.5354, 60.475] + ] + ], + [ + [ + [-135.7621, 57.3438], + [-135.84, 57.3406], + [-135.825, 57.3025], + [-135.8739, 57.2272], + [-135.823, 57.2207], + [-135.8366, 57.1761], + [-135.7456, 57.1649], + [-135.76, 57.1163], + [-135.843, 57.0907], + [-135.8501, 56.9933], + [-135.638, 57.0103], + [-135.5722, 57.0856], + [-135.5629, 57.1486], + [-135.6148, 57.1755], + [-135.6254, 57.2315], + [-135.5685, 57.2283], + [-135.6261, 57.3025], + [-135.7621, 57.3438] + ] + ], + [ + [ + [-132.8954, 56.4575], + [-133.0005, 56.4306], + [-133.0663, 56.3309], + [-132.9594, 56.2953], + [-132.8706, 56.2322], + [-132.718, 56.2577], + [-132.6572, 56.2769], + [-132.6833, 56.3464], + [-132.6222, 56.3911], + [-132.6325, 56.4212], + [-132.718, 56.4565], + [-132.8128, 56.4406], + [-132.8954, 56.4575] + ] + ], + [ + [ + [-160.6958, 55.4006], + [-160.7299, 55.4079], + [-160.8022, 55.3809], + [-160.8417, 55.3406], + [-160.8611, 55.2697], + [-160.8555, 55.2059], + [-160.8083, 55.1669], + [-160.7547, 55.1951], + [-160.6833, 55.1927], + [-160.6144, 55.1475], + [-160.4969, 55.1573], + [-160.4932, 55.2201], + [-160.5699, 55.2755], + [-160.5786, 55.3137], + [-160.5281, 55.343], + [-160.5648, 55.3906], + [-160.6017, 55.3417], + [-160.6643, 55.3017], + [-160.6456, 55.3821], + [-160.6958, 55.4006] + ] + ], + [ + [ + [-178.0828, 51.9147], + [-178.1992, 51.908], + [-178.2244, 51.8617], + [-178.095, 51.8158], + [-178.0372, 51.7789], + [-177.9611, 51.7742], + [-177.9517, 51.7306], + [-178.0496, 51.7023], + [-178.0998, 51.7084], + [-178.1144, 51.6719], + [-178.0461, 51.6714], + [-178.0007, 51.639], + [-177.9278, 51.6456], + [-177.8672, 51.6764], + [-177.8178, 51.7894], + [-177.7189, 51.815], + [-177.6515, 51.8166], + [-177.6589, 51.8489], + [-177.735, 51.8264], + [-177.791, 51.8453], + [-177.8489, 51.8247], + [-177.9256, 51.8578], + [-177.9544, 51.9025], + [-178.0828, 51.9147] + ] + ], + [ + [ + [-156.9119, 21.1655], + [-156.9706, 21.2158], + [-157, 21.1789], + [-157.0652, 21.1952], + [-157.2606, 21.2175], + [-157.2508, 21.1775], + [-157.3114, 21.1014], + [-157.2525, 21.0877], + [-157.0937, 21.1026], + [-156.8743, 21.0465], + [-156.7486, 21.1028], + [-156.7109, 21.1479], + [-156.7393, 21.173], + [-156.9119, 21.1655] + ] + ], + [ + [ + [-173.5161, 52.1514], + [-173.6122, 52.1517], + [-173.7706, 52.1342], + [-173.8089, 52.0925], + [-173.8889, 52.1419], + [-173.9983, 52.1236], + [-173.9422, 52.0692], + [-173.8289, 52.0408], + [-173.6806, 52.0661], + [-173.5761, 52.0506], + [-173.545, 52.0272], + [-173.4506, 52.0469], + [-173.1528, 52.0592], + [-173.0956, 52.0794], + [-173.1228, 52.11], + [-173.2361, 52.0936], + [-173.2983, 52.1067], + [-173.3533, 52.0897], + [-173.4406, 52.1175], + [-173.5442, 52.1146], + [-173.5161, 52.1514] + ] + ], + [ + [ + [-122.6006, 48.4089], + [-122.6647, 48.4017], + [-122.6705, 48.3603], + [-122.7539, 48.258], + [-122.7637, 48.2155], + [-122.7097, 48.1925], + [-122.6794, 48.1544], + [-122.6208, 48.1604], + [-122.5986, 48.1098], + [-122.5987, 48.0269], + [-122.5414, 47.9936], + [-122.4811, 47.9919], + [-122.4308, 47.9139], + [-122.3758, 47.9246], + [-122.3492, 47.959], + [-122.3767, 48.0345], + [-122.4462, 48.0528], + [-122.5214, 48.0975], + [-122.5264, 48.0163], + [-122.5717, 48.1027], + [-122.5672, 48.1478], + [-122.6273, 48.222], + [-122.6579, 48.2826], + [-122.5747, 48.2946], + [-122.529, 48.2828], + [-122.5064, 48.3103], + [-122.5606, 48.3464], + [-122.6006, 48.4089] + ] + ], + [ + [ + [-153.2139, 57.2036], + [-153.2727, 57.1892], + [-153.3851, 57.114], + [-153.3926, 57.061], + [-153.3478, 57.0078], + [-153.3053, 56.9911], + [-153.2413, 57.0031], + [-153.1957, 57.0401], + [-153.2192, 57.0682], + [-153.1764, 57.0967], + [-153.1215, 57.0911], + [-153.0553, 57.1106], + [-152.9122, 57.1262], + [-152.8686, 57.1508], + [-152.9459, 57.1878], + [-153.0465, 57.1723], + [-153.0625, 57.1904], + [-153.1999, 57.1456], + [-153.1622, 57.1883], + [-153.2139, 57.2036] + ] + ], + [ + [ + [-177.1422, 51.9422], + [-177.1822, 51.9417], + [-177.2296, 51.8029], + [-177.4189, 51.7531], + [-177.445, 51.76], + [-177.5617, 51.7208], + [-177.64, 51.7411], + [-177.6928, 51.7164], + [-177.6737, 51.6608], + [-177.6167, 51.7042], + [-177.5883, 51.6944], + [-177.4678, 51.705], + [-177.3928, 51.7339], + [-177.2889, 51.6811], + [-177.2283, 51.7058], + [-177.1567, 51.7042], + [-177.1233, 51.7261], + [-177.1328, 51.83], + [-177.065, 51.8611], + [-177.0467, 51.8969], + [-177.1422, 51.9422] + ] + ], + [ + [ + [-131.5515, 55.2813], + [-131.5915, 55.2732], + [-131.605, 55.2142], + [-131.5319, 55.1495], + [-131.585, 55.1307], + [-131.5982, 55.0755], + [-131.6485, 55.0353], + [-131.6028, 54.9964], + [-131.5121, 55.057], + [-131.4923, 55.0121], + [-131.3892, 55.0119], + [-131.3563, 55.0403], + [-131.3757, 55.0909], + [-131.3515, 55.1233], + [-131.3978, 55.1969], + [-131.4663, 55.2248], + [-131.5515, 55.2813] + ] + ], + [ + [ + [-172.9187, 60.6042], + [-172.9516, 60.6057], + [-173.0354, 60.5625], + [-173.0562, 60.4938], + [-172.9438, 60.4813], + [-172.8974, 60.4484], + [-172.7526, 60.3849], + [-172.737, 60.3651], + [-172.5688, 60.3187], + [-172.4687, 60.3417], + [-172.3437, 60.3354], + [-172.2917, 60.2958], + [-172.2214, 60.3109], + [-172.3161, 60.3422], + [-172.3838, 60.3828], + [-172.6141, 60.3776], + [-172.6167, 60.4], + [-172.7682, 60.4464], + [-172.8766, 60.4984], + [-172.9328, 60.5589], + [-172.9187, 60.6042] + ] + ], + [ + [ + [-159.8672, 55.2853], + [-159.9216, 55.2488], + [-159.9472, 55.1693], + [-160.0259, 55.2033], + [-160.065, 55.2014], + [-159.9761, 55.1194], + [-160.0072, 55.1023], + [-160.1055, 55.1603], + [-160.1928, 55.1028], + [-160.176, 55.0508], + [-160.0957, 55.0519], + [-160.1897, 54.9649], + [-160.2574, 54.9167], + [-160.2264, 54.8637], + [-160.18, 54.9033], + [-160.1856, 54.9342], + [-160.1247, 54.9458], + [-160.1083, 54.9869], + [-160.013, 55.0281], + [-159.9356, 55.1289], + [-159.8696, 55.0944], + [-159.8111, 55.1728], + [-159.9031, 55.1744], + [-159.9006, 55.2287], + [-159.8417, 55.2445], + [-159.8672, 55.2853] + ] + ], + [ + [ + [-165.9261, 54.2119], + [-165.9822, 54.2206], + [-166.0861, 54.1739], + [-166.1171, 54.1226], + [-166.0522, 54.0758], + [-166.0422, 54.0428], + [-165.98, 54.0703], + [-165.8973, 54.0572], + [-165.847, 54.0809], + [-165.7669, 54.0645], + [-165.689, 54.0891], + [-165.6723, 54.1309], + [-165.7383, 54.1125], + [-165.7346, 54.1459], + [-165.8133, 54.1759], + [-165.88, 54.1825], + [-165.9261, 54.2119] + ] + ], + [ + [ + [-160.6883, 58.8136], + [-160.8475, 58.7495], + [-160.9939, 58.7243], + [-161.0536, 58.6897], + [-161.0797, 58.6383], + [-161.0733, 58.5456], + [-160.963, 58.5511], + [-160.8839, 58.5803], + [-160.855, 58.6258], + [-160.6883, 58.8136] + ] + ], + [ + [ + [-147.6854, 60.4896], + [-147.7203, 60.4995], + [-147.7088, 60.4276], + [-147.8167, 60.4417], + [-147.8479, 60.3833], + [-147.8068, 60.3359], + [-147.8047, 60.2995], + [-147.9016, 60.2849], + [-147.8917, 60.2229], + [-147.7964, 60.2391], + [-147.8208, 60.1792], + [-147.7547, 60.1609], + [-147.7172, 60.2026], + [-147.7172, 60.2651], + [-147.6672, 60.3089], + [-147.6193, 60.3786], + [-147.7292, 60.3896], + [-147.6089, 60.4255], + [-147.6729, 60.4604], + [-147.6854, 60.4896] + ] + ], + [ + [ + [177.6059, 52.1349], + [177.5451, 52.1035], + [177.4783, 51.9828], + [177.3753, 51.9765], + [177.2433, 51.9056], + [177.1989, 51.895], + [177.3097, 51.8257], + [177.3478, 51.9045], + [177.4067, 51.93], + [177.4732, 51.9084], + [177.5044, 51.9347], + [177.5483, 51.9122], + [177.6017, 51.9469], + [177.5359, 51.9595], + [177.6742, 52.0892], + [177.6059, 52.1349] + ] + ], + [ + [ + [-131.8295, 55.4201], + [-131.8694, 55.3197], + [-131.8292, 55.1899], + [-131.7465, 55.129], + [-131.7194, 55.2024], + [-131.6856, 55.2257], + [-131.67, 55.3014], + [-131.6289, 55.3055], + [-131.8295, 55.4201] + ] + ], + [ + [ + [178.6816, 51.6499], + [178.631, 51.6239], + [178.7839, 51.5692], + [178.8428, 51.5773], + [178.9321, 51.5462], + [179.0344, 51.4814], + [179.0572, 51.4528], + [179.228, 51.3815], + [179.2588, 51.3568], + [179.3705, 51.3749], + [179.4028, 51.4061], + [179.28, 51.3897], + [179.1567, 51.4656], + [179.0233, 51.5316], + [178.9667, 51.5886], + [178.8079, 51.6327], + [178.6816, 51.6499] + ] + ], + [ + [ + [-164.8042, 62.7896], + [-164.8724, 62.7818], + [-164.8703, 62.7276], + [-164.8401, 62.7036], + [-164.7958, 62.6104], + [-164.5328, 62.7286], + [-164.5146, 62.7708], + [-164.6792, 62.7562], + [-164.7109, 62.7849], + [-164.8042, 62.7896] + ] + ], + [ + [ + [-136.4776, 58.1016], + [-136.5572, 58.0792], + [-136.5578, 57.9756], + [-136.5734, 57.9188], + [-136.4907, 57.9017], + [-136.4533, 57.8419], + [-136.3772, 57.9295], + [-136.3878, 57.9675], + [-136.3566, 58.0268], + [-136.4776, 58.1016] + ] + ], + [ + [ + [-68.3036, 44.4389], + [-68.3694, 44.4208], + [-68.4317, 44.3097], + [-68.4072, 44.2581], + [-68.3397, 44.2222], + [-68.2905, 44.2495], + [-68.2944, 44.2867], + [-68.2306, 44.2875], + [-68.1731, 44.3281], + [-68.1856, 44.3706], + [-68.3036, 44.4389] + ] + ], + [ + [ + [-97.2887, 26.5974], + [-97.3613, 26.8482], + [-97.3793, 26.9982], + [-97.365, 27.205], + [-97.3358, 27.3225], + [-97.2814, 27.4628], + [-97.1575, 27.6934], + [-97.0475, 27.8336], + [-97.1003, 27.8175], + [-97.2314, 27.6317], + [-97.2672, 27.5406], + [-97.3606, 27.3664], + [-97.3556, 27.3111], + [-97.3831, 27.2614], + [-97.395, 27.1219], + [-97.3862, 27.0853], + [-97.3924, 26.8874], + [-97.3529, 26.7321], + [-97.2949, 26.5715], + [-97.2887, 26.5974] + ] + ], + [ + [ + [-152.3349, 58.6275], + [-152.5311, 58.5844], + [-152.5639, 58.6217], + [-152.6472, 58.5572], + [-152.5906, 58.5508], + [-152.6389, 58.4997], + [-152.5628, 58.4767], + [-152.4784, 58.4689], + [-152.415, 58.4894], + [-152.3632, 58.5391], + [-152.3349, 58.6275] + ] + ], + [ + [ + [-153.2584, 58.1426], + [-153.2972, 58.1457], + [-153.3359, 58.1018], + [-153.4178, 58.0578], + [-153.3663, 58.038], + [-153.2972, 58.0503], + [-153.1261, 58.0164], + [-153.0483, 57.9867], + [-152.9438, 57.9766], + [-152.9435, 58.0082], + [-153.0269, 58.0343], + [-153.0908, 58.089], + [-153.1628, 58.0884], + [-153.2584, 58.1426] + ] + ], + [ + [ + [-134.5141, 58.3376], + [-134.5842, 58.3434], + [-134.6521, 58.3189], + [-134.6789, 58.2978], + [-134.6294, 58.2483], + [-134.5072, 58.2167], + [-134.46, 58.2294], + [-134.3378, 58.1972], + [-134.2692, 58.2082], + [-134.3482, 58.2554], + [-134.5141, 58.3376] + ] + ], + [ + [ + [-156.9754, 20.9248], + [-157.0579, 20.909], + [-157.0525, 20.8728], + [-156.9981, 20.8408], + [-156.9636, 20.7308], + [-156.8761, 20.7425], + [-156.8056, 20.8066], + [-156.8216, 20.848], + [-156.9079, 20.9175], + [-156.9754, 20.9248] + ] + ], + [ + [ + [173.7561, 52.4958], + [173.7406, 52.5122], + [173.6239, 52.5056], + [173.5304, 52.4476], + [173.44, 52.4528], + [173.3583, 52.4019], + [173.4689, 52.3806], + [173.5611, 52.4011], + [173.6167, 52.3969], + [173.642, 52.356], + [173.7256, 52.3569], + [173.6922, 52.4619], + [173.7561, 52.4958] + ] + ], + [ + [ + [179.6461, 52.0258], + [179.5804, 52.0163], + [179.5246, 51.9825], + [179.4846, 51.9839], + [179.4799, 51.9219], + [179.6124, 51.8708], + [179.7388, 51.9112], + [179.762, 51.9747], + [179.6461, 52.0258] + ] + ], + [ + [ + [-172.4061, 52.3837], + [-172.4378, 52.3928], + [-172.57, 52.3486], + [-172.6339, 52.2642], + [-172.5383, 52.2458], + [-172.3117, 52.3197], + [-172.3056, 52.3547], + [-172.4061, 52.3837] + ] + ], + [ + [ + [-132.8327, 55.1989], + [-132.8973, 55.1547], + [-132.878, 55.1004], + [-132.8244, 55.075], + [-132.8932, 55.0361], + [-132.8098, 55.0081], + [-132.695, 55.0197], + [-132.688, 55.1245], + [-132.7333, 55.1342], + [-132.8327, 55.1989] + ] + ], + [ + [ + [-145.7917, 60.5792], + [-145.9, 60.5875], + [-146.0229, 60.5479], + [-146.0833, 60.5417], + [-146.1187, 60.5125], + [-146.1708, 60.5271], + [-146.2833, 60.5167], + [-146.3208, 60.4542], + [-146.1854, 60.4562], + [-146.0896, 60.475], + [-146.025, 60.5042], + [-145.8214, 60.5526], + [-145.7917, 60.5792] + ] + ], + [ + [ + [-80.6156, 32.5014], + [-80.6783, 32.5014], + [-80.6571, 32.4388], + [-80.6442, 32.2603], + [-80.6037, 32.2705], + [-80.5422, 32.3328], + [-80.55, 32.3589], + [-80.4557, 32.4058], + [-80.4789, 32.4453], + [-80.5454, 32.4557], + [-80.6035, 32.4443], + [-80.6156, 32.5014] + ] + ], + [ + [ + [-91.895, 29.6311], + [-91.9825, 29.6147], + [-92.0263, 29.5674], + [-91.847, 29.4799], + [-91.7672, 29.4894], + [-91.7583, 29.5578], + [-91.7844, 29.5944], + [-91.895, 29.6311] + ] + ], + [ + [ + [-70.5969, 41.4766], + [-70.6591, 41.4605], + [-70.7744, 41.3497], + [-70.8377, 41.3455], + [-70.7699, 41.3024], + [-70.7344, 41.3372], + [-70.6413, 41.3494], + [-70.4508, 41.3487], + [-70.4641, 41.4019], + [-70.4971, 41.3841], + [-70.568, 41.4186], + [-70.5969, 41.4766] + ] + ], + [ + [ + [-133.5589, 55.8345], + [-133.6633, 55.8186], + [-133.6863, 55.7749], + [-133.645, 55.7292], + [-133.532, 55.6927], + [-133.4872, 55.7324], + [-133.5211, 55.7689], + [-133.4161, 55.74], + [-133.3317, 55.7672], + [-133.4283, 55.7883], + [-133.5589, 55.8345] + ] + ], + [ + [ + [-153.4641, 57.9694], + [-153.5165, 57.9593], + [-153.535, 57.9282], + [-153.4588, 57.8807], + [-153.33, 57.8256], + [-153.2082, 57.7972], + [-153.2221, 57.8496], + [-153.2826, 57.9043], + [-153.4641, 57.9694] + ] + ], + [ + [ + [-80.097, 32.7806], + [-80.1257, 32.7777], + [-80.1301, 32.76], + [-80.1368, 32.7484], + [-80.1418, 32.7462], + [-80.1705, 32.7355], + [-80.1628, 32.7214], + [-80.1706, 32.7111], + [-80.1647, 32.7075], + [-80.1616, 32.7084], + [-80.1589, 32.7047], + [-80.1392, 32.7131], + [-80.1272, 32.7053], + [-80.1014, 32.7186], + [-80.0819, 32.7125], + [-80.0744, 32.7], + [-80.0864, 32.6872], + [-80.1317, 32.6664], + [-80.1558, 32.6108], + [-80.1567, 32.6064], + [-80.1611, 32.6039], + [-80.1722, 32.6019], + [-80.1783, 32.5937], + [-80.2047, 32.5839], + [-80.1776, 32.5593], + [-80.1113, 32.5941], + [-80.0163, 32.6113], + [-79.9903, 32.6939], + [-80.0073, 32.7658], + [-80.097, 32.7806] + ] + ], + [ + [ + [-154.085, 56.6144], + [-154.2211, 56.6147], + [-154.3144, 56.5853], + [-154.3644, 56.5428], + [-154.3433, 56.5092], + [-154.2311, 56.4925], + [-154.1533, 56.5117], + [-154.0778, 56.5908], + [-154.085, 56.6144] + ] + ], + [ + [ + [-162.3797, 63.6224], + [-162.4917, 63.6188], + [-162.5542, 63.6333], + [-162.6208, 63.6188], + [-162.6932, 63.5755], + [-162.6266, 63.5443], + [-162.3813, 63.5396], + [-162.3464, 63.5911], + [-162.3797, 63.6224] + ] + ], + [ + [ + [-154.4817, 56.6011], + [-154.55, 56.5897], + [-154.6917, 56.525], + [-154.7939, 56.4369], + [-154.7728, 56.4064], + [-154.7094, 56.4144], + [-154.6189, 56.4764], + [-154.4811, 56.5119], + [-154.5352, 56.5657], + [-154.4817, 56.6011] + ] + ], + [ + [ + [-170.6533, 52.6975], + [-170.7277, 52.682], + [-170.81, 52.6406], + [-170.8467, 52.5589], + [-170.7957, 52.5424], + [-170.6842, 52.6022], + [-170.6083, 52.6012], + [-170.558, 52.6668], + [-170.6533, 52.6975] + ] + ], + [ + [ + [-119.9103, 34.0761], + [-119.8764, 34.0322], + [-119.8741, 33.98], + [-119.8187, 33.9595], + [-119.7208, 33.9589], + [-119.6637, 33.9851], + [-119.5603, 33.9956], + [-119.52, 34.0342], + [-119.5862, 34.0539], + [-119.6331, 34.0128], + [-119.6847, 34.02], + [-119.7572, 34.0592], + [-119.8098, 34.0511], + [-119.9103, 34.0761] + ] + ], + [ + [ + [-133.3308, 55.3453], + [-133.4616, 55.3208], + [-133.4714, 55.2692], + [-133.4544, 55.2172], + [-133.3888, 55.2291], + [-133.336, 55.2031], + [-133.2529, 55.2221], + [-133.23, 55.2687], + [-133.2983, 55.3047], + [-133.3308, 55.3453] + ] + ], + [ + [ + [-120.0489, 34.037], + [-120.1394, 34.0273], + [-120.175, 34.0064], + [-120.2386, 34.0102], + [-120.1693, 33.917], + [-120.1203, 33.8942], + [-119.971, 33.9413], + [-119.9814, 33.9798], + [-120.0466, 34], + [-120.0489, 34.037] + ] + ], + [ + [ + [-165.6238, 54.298], + [-165.6879, 54.2421], + [-165.5844, 54.2236], + [-165.6362, 54.1977], + [-165.598, 54.1634], + [-165.6372, 54.1391], + [-165.5594, 54.1055], + [-165.4931, 54.1682], + [-165.4095, 54.1751], + [-165.4076, 54.2117], + [-165.5442, 54.2189], + [-165.5148, 54.2984], + [-165.5978, 54.264], + [-165.6238, 54.298] + ] + ], + [ + [ + [-169.7521, 52.8928], + [-169.8683, 52.8789], + [-169.8667, 52.8536], + [-169.9845, 52.8586], + [-170.0133, 52.8311], + [-169.9595, 52.7871], + [-169.8717, 52.825], + [-169.7753, 52.8099], + [-169.72, 52.7719], + [-169.6772, 52.8244], + [-169.6767, 52.8714], + [-169.7521, 52.8928] + ] + ], + [ + [ + [-131.2472, 54.9993], + [-131.3433, 54.9592], + [-131.3617, 54.9753], + [-131.4922, 54.9461], + [-131.4667, 54.9133], + [-131.3889, 54.8928], + [-131.3472, 54.8558], + [-131.1967, 54.9144], + [-131.2539, 54.9683], + [-131.2472, 54.9993] + ] + ], + [ + [ + [-118.6008, 33.4775], + [-118.5742, 33.44], + [-118.4886, 33.4189], + [-118.4892, 33.3572], + [-118.4656, 33.3256], + [-118.3784, 33.3208], + [-118.3261, 33.2986], + [-118.3106, 33.3367], + [-118.3664, 33.4058], + [-118.5364, 33.4775], + [-118.6008, 33.4775] + ] + ], + [ + [ + [-162.2856, 54.9803], + [-162.3706, 54.9656], + [-162.4234, 54.9205], + [-162.4022, 54.8789], + [-162.3167, 54.8272], + [-162.2733, 54.8433], + [-162.2317, 54.8923], + [-162.2433, 54.9681], + [-162.2856, 54.9803] + ] + ], + [ + [ + [-80.7397, 32.5361], + [-80.7794, 32.5281], + [-80.7833, 32.4972], + [-80.8103, 32.4725], + [-80.765, 32.3725], + [-80.666, 32.2996], + [-80.6856, 32.3672], + [-80.663, 32.4376], + [-80.6828, 32.5], + [-80.7397, 32.5361] + ] + ], + [ + [ + [-148.0141, 60.913], + [-148.0745, 60.9224], + [-148.1474, 60.8245], + [-148.0292, 60.7813], + [-147.9151, 60.813], + [-147.9536, 60.8464], + [-147.9349, 60.8755], + [-148.0141, 60.913] + ] + ], + [ + [ + [-176.1373, 52.1132], + [-176.2056, 52.0777], + [-176.1816, 52.0011], + [-176.105, 51.9972], + [-176.0661, 51.9667], + [-176.0211, 51.9831], + [-176.0501, 52.0193], + [-175.9822, 52.0289], + [-176.0551, 52.1073], + [-176.1373, 52.1132] + ] + ], + [ + [ + [-170.1531, 57.1837], + [-170.1382, 57.2299], + [-170.2259, 57.2119], + [-170.3032, 57.2205], + [-170.4001, 57.2038], + [-170.4206, 57.1619], + [-170.2778, 57.1274], + [-170.1731, 57.1551], + [-170.1531, 57.1837] + ] + ], + [ + [ + [-133.5677, 55.4217], + [-133.5932, 55.4316], + [-133.6316, 55.3611], + [-133.6914, 55.3175], + [-133.6689, 55.2769], + [-133.6106, 55.2536], + [-133.5709, 55.322], + [-133.4592, 55.3789], + [-133.5017, 55.4192], + [-133.5677, 55.4217] + ] + ], + [ + [ + [-122.8813, 48.7118], + [-122.9394, 48.7095], + [-123.0302, 48.6307], + [-122.9578, 48.6319], + [-122.9482, 48.5975], + [-122.8625, 48.6065], + [-122.8842, 48.6592], + [-122.8145, 48.6064], + [-122.7513, 48.665], + [-122.8813, 48.7118] + ] + ], + [ + [ + [-162.7906, 54.49], + [-162.8378, 54.4506], + [-162.7805, 54.4128], + [-162.6105, 54.3672], + [-162.5445, 54.4164], + [-162.6689, 54.4614], + [-162.7906, 54.49] + ] + ], + [ + [ + [-96.4062, 28.3951], + [-96.4555, 28.3358], + [-96.5431, 28.315], + [-96.6342, 28.2606], + [-96.7035, 28.1985], + [-96.7919, 28.1886], + [-96.8231, 28.1672], + [-96.8107, 28.1243], + [-96.8488, 28.0646], + [-96.7028, 28.1773], + [-96.5895, 28.2492], + [-96.4439, 28.3153], + [-96.3997, 28.3567], + [-96.4062, 28.3951] + ] + ], + [ + [ + [-176.2883, 51.8689], + [-176.4006, 51.8683], + [-176.4267, 51.8536], + [-176.3972, 51.7336], + [-176.32, 51.7347], + [-176.265, 51.7806], + [-176.2883, 51.8689] + ] + ], + [ + [ + [-64.664306641, 17.714860916], + [-64.580696, 17.747357999], + [-64.655135999, 17.763472], + [-64.709587098, 17.747083663], + [-64.747642517, 17.783750534], + [-64.894584655, 17.747358323], + [-64.883193971, 17.685693741], + [-64.740417, 17.695972], + [-64.664306641, 17.714860916] + ] + ], + [ + [ + [-132.7187, 54.9364], + [-132.8183, 54.9242], + [-132.8061, 54.8711], + [-132.7046, 54.8147], + [-132.6756, 54.7669], + [-132.6355, 54.7489], + [-132.6239, 54.8039], + [-132.6856, 54.8353], + [-132.6321, 54.8908], + [-132.7187, 54.9364] + ] + ], + [ + [ + [-80.3289, 32.6342], + [-80.3853, 32.615], + [-80.3852, 32.5738], + [-80.4112, 32.5475], + [-80.345, 32.5045], + [-80.3358, 32.4775], + [-80.1975, 32.5683], + [-80.2419, 32.6036], + [-80.2983, 32.6022], + [-80.3289, 32.6342] + ] + ], + [ + [ + [-123.1422, 48.6222], + [-123.1764, 48.5619], + [-123.133, 48.4981], + [-123.0368, 48.458], + [-123.0092, 48.4739], + [-123.0166, 48.5619], + [-123.1422, 48.6222] + ] + ], + [ + [ + [-155.5611, 55.8975], + [-155.6056, 55.9144], + [-155.6667, 55.8542], + [-155.755, 55.8222], + [-155.7278, 55.7747], + [-155.6506, 55.7749], + [-155.6133, 55.7567], + [-155.5639, 55.7897], + [-155.5867, 55.8458], + [-155.5611, 55.8975] + ] + ], + [ + [ + [-166.1095, 53.8472], + [-166.2167, 53.8294], + [-166.3011, 53.7986], + [-166.3006, 53.7517], + [-166.2078, 53.7072], + [-166.1144, 53.7747], + [-166.1389, 53.8031], + [-166.1095, 53.8472] + ] + ], + [ + [ + [-148.0474, 60.1755], + [-148.1766, 60.1328], + [-148.2812, 60.0854], + [-148.2146, 60.0771], + [-148.275, 60.0396], + [-148.2667, 60.0125], + [-148.1979, 60.0167], + [-148.0838, 60.1047], + [-148.0474, 60.1755] + ] + ], + [ + [ + [-74.0776, 40.647], + [-74.18, 40.6453], + [-74.1994, 40.5735], + [-74.2486, 40.5439], + [-74.2463, 40.4963], + [-74.1051, 40.5538], + [-74.0527, 40.6014], + [-74.0776, 40.647] + ] + ], + [ + [ + [-160.0855, 21.9999], + [-160.1269, 21.9527], + [-160.2294, 21.8856], + [-160.2472, 21.8153], + [-160.2027, 21.7789], + [-160.1611, 21.8614], + [-160.0672, 21.8935], + [-160.0855, 21.9999] + ] + ], + [ + [ + [-159.5118, 55.2388], + [-159.5584, 55.2045], + [-159.5895, 55.1275], + [-159.6383, 55.1342], + [-159.6572, 55.0611], + [-159.5706, 55.0453], + [-159.5294, 55.0801], + [-159.4961, 55.1544], + [-159.5355, 55.1706], + [-159.5118, 55.2388] + ] + ], + [ + [ + [-161.8094, 55.175], + [-161.8983, 55.1639], + [-161.8905, 55.1256], + [-161.8172, 55.0986], + [-161.7828, 55.1617], + [-161.7555, 55.1322], + [-161.8006, 55.0817], + [-161.7322, 55.0539], + [-161.7072, 55.0809], + [-161.6339, 55.1053], + [-161.6416, 55.1275], + [-161.7283, 55.1397], + [-161.8094, 55.175] + ] + ], + [ + [ + [-118.5867, 33.0287], + [-118.5767, 32.9741], + [-118.4891, 32.8436], + [-118.4291, 32.8038], + [-118.3706, 32.84], + [-118.485, 32.9233], + [-118.5636, 33.0242], + [-118.5867, 33.0287] + ] + ], + [ + [ + [-91.239, 29.3512], + [-91.3342, 29.2995], + [-91.2792, 29.2494], + [-91.1367, 29.2172], + [-91.1364, 29.25], + [-91.239, 29.3512] + ] + ], + [ + [ + [-169.6017, 56.6041], + [-169.7522, 56.6162], + [-169.7511, 56.5875], + [-169.6822, 56.5789], + [-169.6405, 56.5364], + [-169.5671, 56.5329], + [-169.4839, 56.5767], + [-169.5176, 56.6098], + [-169.6017, 56.6041] + ] + ], + [ + [ + [-160.3638, 55.3601], + [-160.4339, 55.3394], + [-160.4922, 55.3583], + [-160.5173, 55.3081], + [-160.4833, 55.2914], + [-160.3911, 55.2869], + [-160.3315, 55.26], + [-160.308, 55.3041], + [-160.3356, 55.3594], + [-160.3638, 55.3601] + ] + ], + [ + [ + [-164.98, 54.1336], + [-164.9717, 54.1183], + [-165.144, 54.1311], + [-165.21, 54.0869], + [-165.0822, 54.0691], + [-164.9557, 54.0727], + [-164.9217, 54.1079], + [-164.98, 54.1336] + ] + ], + [ + [ + [-153.4231, 59.41], + [-153.511, 59.3931], + [-153.5494, 59.3317], + [-153.5153, 59.32], + [-153.3627, 59.3378], + [-153.3472, 59.3776], + [-153.4231, 59.41] + ] + ], + [ + [ + [-133.7222, 55.5525], + [-133.7111, 55.5186], + [-133.7665, 55.5016], + [-133.7811, 55.4702], + [-133.6706, 55.4381], + [-133.6317, 55.4908], + [-133.5865, 55.5052], + [-133.6633, 55.5578], + [-133.7222, 55.5525] + ] + ], + [ + [ + [-70.0439, 41.3883], + [-70.0039, 41.3231], + [-70.0797, 41.2819], + [-70.1972, 41.2967], + [-70.2122, 41.2725], + [-70.1017, 41.2406], + [-69.9719, 41.2469], + [-69.9722, 41.2992], + [-70.0439, 41.3883] + ] + ], + [ + [ + [-133.2928, 55.9143], + [-133.3528, 55.8756], + [-133.3622, 55.845], + [-133.26, 55.7721], + [-133.2163, 55.8229], + [-133.2476, 55.885], + [-133.2928, 55.9143] + ] + ], + [ + [ + [-80.0936, 32.7144], + [-80.1275, 32.704], + [-80.1392, 32.7108], + [-80.155, 32.7061], + [-80.1583, 32.7019], + [-80.1622, 32.7073], + [-80.1658, 32.7033], + [-80.1707, 32.7071], + [-80.1833, 32.7075], + [-80.2391, 32.6756], + [-80.265, 32.6221], + [-80.2155, 32.5871], + [-80.1928, 32.5996], + [-80.1787, 32.5959], + [-80.1739, 32.6031], + [-80.1572, 32.6078], + [-80.1669, 32.6144], + [-80.1673, 32.6303], + [-80.135, 32.6669], + [-80.0864, 32.6889], + [-80.0761, 32.7006], + [-80.0936, 32.7144] + ] + ], + [ + [ + [-133.395, 55.5625], + [-133.4544, 55.5367], + [-133.3611, 55.4533], + [-133.3057, 55.4819], + [-133.2852, 55.5354], + [-133.3369, 55.5682], + [-133.395, 55.5625] + ] + ], + [ + [ + [-147.963, 60.1245], + [-147.9755, 60.1484], + [-148.1182, 60.0474], + [-148.1396, 59.9853], + [-148.0943, 60.0026], + [-148.0495, 60.0599], + [-147.9812, 60.0604], + [-147.8963, 60.0964], + [-147.963, 60.1245] + ] + ], + [ + [ + [-157.2422, 56.5819], + [-157.3294, 56.5272], + [-157.1516, 56.5273], + [-157.1155, 56.5525], + [-156.9956, 56.5514], + [-157.0883, 56.5837], + [-157.2422, 56.5819] + ] + ], + [ + [ + [-134.2634, 55.9273], + [-134.3675, 55.905], + [-134.3194, 55.8781], + [-134.3446, 55.8402], + [-134.2711, 55.8286], + [-134.2283, 55.864], + [-134.133, 55.8968], + [-134.1734, 55.9215], + [-134.2649, 55.897], + [-134.2634, 55.9273] + ] + ], + [ + [ + [-97.0517, 27.844], + [-97.0034, 27.9089], + [-96.8492, 28.0703], + [-96.8435, 28.1087], + [-96.9258, 28.0878], + [-96.9678, 27.9869], + [-97.0377, 27.9043], + [-97.0517, 27.844] + ] + ], + [ + [ + [-148.1859, 60.7422], + [-148.2391, 60.7245], + [-148.1786, 60.6401], + [-148.1234, 60.6401], + [-148.0875, 60.6729], + [-148.1068, 60.7391], + [-148.1859, 60.7422] + ] + ], + [ + [ + [-147.8255, 60.0641], + [-147.8542, 60.0771], + [-147.913, 60.0359], + [-148.0378, 59.9733], + [-148.0468, 59.9385], + [-147.9179, 59.9706], + [-147.8193, 60.0464], + [-147.8255, 60.0641] + ] + ], + [ + [ + [-65.390976, 18.161806], + [-65.57708, 18.119583], + [-65.542641, 18.080973], + [-65.423195, 18.095972], + [-65.363747, 18.130138], + [-65.27597, 18.131805], + [-65.390976, 18.161806] + ] + ], + [ + [ + [-81.1164, 31.85], + [-81.1757, 31.8164], + [-81.1715, 31.7572], + [-81.1325, 31.7222], + [-81.0717, 31.7669], + [-81.0347, 31.8173], + [-81.1164, 31.85] + ] + ], + [ + [ + [-80.7222, 32.2678], + [-80.7836, 32.2227], + [-80.8121, 32.1101], + [-80.7391, 32.1466], + [-80.6675, 32.2144], + [-80.7222, 32.2678] + ] + ], + [ + [ + [-150.5333, 70.4938], + [-150.7479, 70.4938], + [-150.7375, 70.4625], + [-150.6313, 70.4354], + [-150.4839, 70.4714], + [-150.5333, 70.4938] + ] + ], + [ + [ + [-170.680638631, -14.282476107], + [-170.567497197, -14.269325997], + [-170.672442928, -14.241035743], + [-170.732063743, -14.282688197], + [-170.82071228, -14.300050544], + [-170.759218852, -14.373241822], + [-170.702067693, -14.326775719], + [-170.680638631, -14.282476107] + ] + ], + [ + [ + [-122.4558, 47.4997], + [-122.5132, 47.4529], + [-122.5268, 47.3421], + [-122.4844, 47.3803], + [-122.4442, 47.3611], + [-122.3737, 47.3883], + [-122.4266, 47.402], + [-122.4558, 47.4997] + ] + ], + [ + [ + [-144.2162, 60], + [-144.2697, 60.0001], + [-144.3707, 59.9627], + [-144.5696, 59.8518], + [-144.5859, 59.8113], + [-144.4332, 59.8981], + [-144.2162, 60] + ] + ], + [ + [ + [-81.3337, 31.2911], + [-81.3739, 31.2993], + [-81.4186, 31.1572], + [-81.3688, 31.1452], + [-81.3104, 31.2141], + [-81.3337, 31.2911] + ] + ], + [ + [ + [-153.87, 56.5579], + [-154.0317, 56.5553], + [-154.1328, 56.5108], + [-154.0494, 56.4958], + [-153.9513, 56.5049], + [-153.87, 56.5579] + ] + ], + [ + [ + [-133.4595, 55.5021], + [-133.527, 55.5294], + [-133.545, 55.4864], + [-133.6192, 55.4482], + [-133.5484, 55.4291], + [-133.4283, 55.4503], + [-133.4595, 55.5021] + ] + ], + [ + [ + [-81.1883, 31.5311], + [-81.2392, 31.5272], + [-81.2597, 31.4978], + [-81.2944, 31.4878], + [-81.3078, 31.4233], + [-81.2794, 31.3783], + [-81.1778, 31.5147], + [-81.1883, 31.5311] + ] + ], + [ + [ + [-82.1571, 26.7062], + [-82.0943, 26.489], + [-82.0563, 26.4976], + [-82.0801, 26.5462], + [-82.0651, 26.6107], + [-82.1243, 26.699], + [-82.1571, 26.7062] + ] + ], + [ + [ + [-147.9901, 60.3682], + [-148.0583, 60.3688], + [-148.137, 60.3266], + [-148.1083, 60.2792], + [-148.0213, 60.2859], + [-147.9901, 60.3682] + ] + ], + [ + [ + [-76.3047, 39.0306], + [-76.3553, 38.9561], + [-76.3767, 38.8492], + [-76.3306, 38.8636], + [-76.3148, 38.9342], + [-76.2517, 38.9431], + [-76.3047, 39.0306] + ] + ], + [ + [ + [-176.1706, 51.8808], + [-176.235, 51.8219], + [-176.17, 51.7978], + [-176.0894, 51.7986], + [-176.03, 51.8444], + [-176.1317, 51.8506], + [-176.1706, 51.8808] + ] + ], + [ + [ + [-150.6867, 59.415], + [-150.708, 59.3587], + [-150.7759, 59.3082], + [-150.6815, 59.3044], + [-150.6104, 59.3659], + [-150.6362, 59.4065], + [-150.6867, 59.415] + ] + ], + [ + [ + [-160.2332, 55.4581], + [-160.3227, 55.4458], + [-160.3261, 55.3953], + [-160.2333, 55.4123], + [-160.1433, 55.3861], + [-160.1358, 55.4495], + [-160.2038, 55.4389], + [-160.2332, 55.4581] + ] + ], + [ + [ + [-71.2482, 41.48], + [-71.229, 41.5317], + [-71.2397, 41.617], + [-71.2747, 41.6207], + [-71.3235, 41.515], + [-71.2482, 41.48] + ] + ], + [ + [ + [-144.9005, 60.5318], + [-144.975, 60.5125], + [-144.9818, 60.4818], + [-145.0536, 60.4432], + [-145.0276, 60.4203], + [-144.9667, 60.4208], + [-144.913, 60.4484], + [-144.9255, 60.5016], + [-144.9005, 60.5318] + ] + ], + [ + [ + [-156.5622, 20.5994], + [-156.6092, 20.5906], + [-156.6986, 20.5336], + [-156.6786, 20.5028], + [-156.5518, 20.5339], + [-156.5622, 20.5994] + ] + ], + [ + [ + [-178.8, 51.8342], + [-178.86, 51.8197], + [-178.8733, 51.7817], + [-178.8139, 51.746], + [-178.7706, 51.7469], + [-178.7332, 51.7807], + [-178.8, 51.8342] + ] + ], + [ + [ + [-97.2538, 26.4285], + [-97.319, 26.5376], + [-97.3362, 26.5076], + [-97.279, 26.4343], + [-97.1971, 26.2499], + [-97.1901, 26.2729], + [-97.2224, 26.4037], + [-97.2538, 26.4285] + ] + ], + [ + [ + [-132.4789, 56.4377], + [-132.5376, 56.4209], + [-132.5583, 56.3556], + [-132.5014, 56.3524], + [-132.4052, 56.4078], + [-132.4789, 56.4377] + ] + ], + [ + [ + [178.5017, 51.9881], + [178.4573, 51.984], + [178.4526, 51.9393], + [178.515, 51.8981], + [178.5906, 51.9525], + [178.5017, 51.9881] + ] + ], + [ + [ + [-122.5306, 47.7045], + [-122.5654, 47.7102], + [-122.5778, 47.5994], + [-122.4982, 47.597], + [-122.4898, 47.6329], + [-122.5306, 47.7045] + ] + ], + [ + [ + [-131.4222, 55.9907], + [-131.4605, 55.9903], + [-131.5967, 55.9331], + [-131.5522, 55.9145], + [-131.5044, 55.9211], + [-131.4083, 55.9589], + [-131.4222, 55.9907] + ] + ], + [ + [ + [-81.0067, 32.0686], + [-81.0292, 32.0622], + [-81.0283, 32.0497], + [-81.0396, 32.0447], + [-81.0481, 32.0278], + [-81.0283, 32.025], + [-81.0031, 32.0094], + [-80.9856, 31.9517], + [-80.9292, 31.9725], + [-80.9325, 31.9911], + [-80.9245, 32.0091], + [-80.94, 32.0154], + [-80.9849, 32.0611], + [-81.0067, 32.0686] + ] + ], + [ + [ + [-75.8672, 37.2867], + [-75.8969, 37.2789], + [-75.9106, 37.1758], + [-75.8944, 37.1189], + [-75.8017, 37.2006], + [-75.8847, 37.2044], + [-75.8672, 37.2867] + ] + ], + [ + [ + [-170.1173, 52.7896], + [-170.1688, 52.7863], + [-170.168, 52.7172], + [-170.085, 52.7181], + [-170.0525, 52.7726], + [-170.1173, 52.7896] + ] + ], + [ + [ + [-89.7033, 29.3822], + [-89.8139, 29.3136], + [-89.6836, 29.2938], + [-89.6394, 29.3483], + [-89.7064, 29.3411], + [-89.7033, 29.3822] + ] + ], + [ + [ + [-151.8206, 58.2652], + [-151.8672, 58.2539], + [-151.894, 58.2155], + [-151.8673, 58.1655], + [-151.8086, 58.1864], + [-151.7953, 58.2568], + [-151.8206, 58.2652] + ] + ], + [ + [ + [-135.6199, 58.3791], + [-135.733, 58.368], + [-135.6803, 58.3309], + [-135.5765, 58.3254], + [-135.5377, 58.3446], + [-135.6199, 58.3791] + ] + ], + [ + [ + [-122.8839, 48.5652], + [-122.9222, 48.5394], + [-122.9457, 48.4656], + [-122.8599, 48.4304], + [-122.8839, 48.5652] + ] + ], + [ + [ + [-159.4428, 55.0617], + [-159.405, 54.9767], + [-159.4256, 54.9417], + [-159.3289, 54.9769], + [-159.3783, 55.0247], + [-159.38, 55.0642], + [-159.4428, 55.0617] + ] + ], + [ + [ + [-122.8497, 47.2967], + [-122.9194, 47.2761], + [-122.9253, 47.2328], + [-122.8747, 47.1642], + [-122.8406, 47.2078], + [-122.8711, 47.2469], + [-122.8497, 47.2967] + ] + ], + [ + [ + [-133.8665, 55.9363], + [-133.9442, 55.9171], + [-133.9189, 55.8567], + [-133.8716, 55.8448], + [-133.8392, 55.8897], + [-133.8665, 55.9363] + ] + ], + [ + [ + [-132.9811, 56.5914], + [-133.074, 56.5798], + [-133.0441, 56.5204], + [-132.9845, 56.5114], + [-132.9635, 56.5559], + [-132.9811, 56.5914] + ] + ], + [ + [ + [-171.2413, 52.5269], + [-171.3113, 52.5011], + [-171.3038, 52.4495], + [-171.2417, 52.4528], + [-171.1937, 52.4936], + [-171.2413, 52.5269] + ] + ], + [ + [ + [-161.535, 55.2567], + [-161.6617, 55.2456], + [-161.6967, 55.2056], + [-161.5628, 55.2033], + [-161.535, 55.2567] + ] + ], + [ + [ + [-68.6561, 44.265], + [-68.7086, 44.2272], + [-68.7119, 44.1681], + [-68.6464, 44.1558], + [-68.6589, 44.2111], + [-68.6078, 44.2408], + [-68.6561, 44.265] + ] + ], + [ + [ + [-80.6468, 24.9126], + [-80.566, 24.9557], + [-80.474, 25.0607], + [-80.3715, 25.1365], + [-80.3679, 25.1699], + [-80.2851, 25.2874], + [-80.3302, 25.2579], + [-80.3501, 25.2107], + [-80.5126, 25.0179], + [-80.5674, 24.9646], + [-80.6007, 24.9621], + [-80.6468, 24.9126] + ] + ], + [ + [ + [-152.4136, 57.9671], + [-152.5156, 57.9217], + [-152.369, 57.8838], + [-152.3222, 57.9155], + [-152.4237, 57.9284], + [-152.4136, 57.9671] + ] + ], + [ + [ + [-159.2717, 54.9453], + [-159.3261, 54.8923], + [-159.2761, 54.8628], + [-159.2233, 54.8839], + [-159.2083, 54.9281], + [-159.2717, 54.9453] + ] + ], + [ + [ + [-164.9057, 66.4964], + [-164.9104, 66.5083], + [-165.1542, 66.4688], + [-165.3328, 66.4287], + [-165.1875, 66.4417], + [-165.1354, 66.4625], + [-165.0354, 66.4708], + [-164.9057, 66.4964] + ] + ], + [ + [ + [-64.888191, 18.35486], + [-64.963752999, 18.372084001], + [-65.027359, 18.362919], + [-64.972916, 18.329027], + [-64.926247, 18.339306], + [-64.905975, 18.310141], + [-64.840698, 18.317638], + [-64.888191, 18.35486] + ] + ], + [ + [ + [-75.2483, 38.0217], + [-75.1864, 38.1117], + [-75.1292, 38.2542], + [-75.1892, 38.1533], + [-75.1917, 38.1172], + [-75.3033, 37.9628], + [-75.3392, 37.9228], + [-75.3778, 37.8936], + [-75.3489, 37.8806], + [-75.2483, 38.0217] + ] + ], + [ + [ + [-169.0375, 65.8146], + [-169.0813, 65.8167], + [-169.1182, 65.7589], + [-169.0443, 65.7526], + [-168.9964, 65.8026], + [-169.0375, 65.8146] + ] + ], + [ + [ + [-169.6761, 53.0311], + [-169.739, 53.0286], + [-169.7636, 52.9825], + [-169.7461, 52.9517], + [-169.6922, 52.9636], + [-169.6761, 53.0311] + ] + ], + [ + [ + [-151.9042, 60.5062], + [-151.9687, 60.4896], + [-151.9563, 60.4188], + [-151.8547, 60.4932], + [-151.9042, 60.5062] + ] + ], + [ + [ + [-135.4677, 57.2503], + [-135.5155, 57.2291], + [-135.4556, 57.1853], + [-135.4211, 57.1947], + [-135.3916, 57.2453], + [-135.4677, 57.2503] + ] + ], + [ + [ + [-119.5192, 33.2795], + [-119.5756, 33.2792], + [-119.5467, 33.2346], + [-119.4704, 33.2144], + [-119.4346, 33.2311], + [-119.5192, 33.2795] + ] + ], + [ + [ + [-82.196, 26.5507], + [-82.1729, 26.4688], + [-82.0715, 26.4215], + [-82.014, 26.4524], + [-82.1599, 26.4821], + [-82.196, 26.5507] + ] + ], + [ + [ + [-147.9375, 60.7167], + [-147.9568, 60.7474], + [-147.9964, 60.6901], + [-147.8505, 60.6797], + [-147.8984, 60.7307], + [-147.9375, 60.7167] + ] + ], + [ + [ + [-75.7017, 35.9378], + [-75.7233, 35.9256], + [-75.6617, 35.8686], + [-75.6619, 35.8242], + [-75.6158, 35.8389], + [-75.6461, 35.91], + [-75.7017, 35.9378] + ] + ], + [ + [ + [-136.19, 57.7161], + [-136.2561, 57.677], + [-136.1811, 57.64], + [-136.1394, 57.6978], + [-136.19, 57.7161] + ] + ], + [ + [ + [-67.859863, 18.121248001], + [-67.912086, 18.120419], + [-67.945968999, 18.084028001], + [-67.897362001, 18.052360999], + [-67.845139, 18.081246999], + [-67.859863, 18.121248001] + ] + ], + [ + [ + [-69.7517, 43.8694], + [-69.7831, 43.7961], + [-69.7575, 43.7511], + [-69.7074, 43.828], + [-69.7517, 43.8694] + ] + ], + [ + [ + [-152.7254, 57.9752], + [-152.8485, 57.9708], + [-152.8512, 57.9412], + [-152.7601, 57.9251], + [-152.7254, 57.9752] + ] + ], + [ + [ + [-148.2456, 59.9383], + [-148.1643, 59.9356], + [-148.1023, 59.953], + [-148.0234, 60.0026], + [-148.0021, 60.0375], + [-148.1252, 59.9657], + [-148.2456, 59.9383] + ] + ], + [ + [ + [-175.9872, 51.9092], + [-176.1144, 51.8842], + [-175.9633, 51.8461], + [-175.9872, 51.9092] + ] + ], + [ + [ + [-158.7981, 55.891], + [-158.8733, 55.8783], + [-158.8489, 55.8543], + [-158.7292, 55.841], + [-158.7495, 55.8764], + [-158.7981, 55.891] + ] + ], + [ + [ + [-170.0406, 52.9228], + [-170.1255, 52.8972], + [-170.0517, 52.8564], + [-169.995, 52.9033], + [-170.0406, 52.9228] + ] + ], + [ + [ + [-68.8628, 44.1167], + [-68.8983, 44.1239], + [-68.8475, 44.0386], + [-68.8178, 44.0317], + [-68.7806, 44.085], + [-68.8306, 44.0817], + [-68.8628, 44.1167] + ] + ], + [ + [ + [-153.8331, 57.5323], + [-153.8728, 57.5531], + [-153.8738, 57.4483], + [-153.8322, 57.4289], + [-153.8331, 57.5323] + ] + ], + [ + [ + [-178.9572, 51.3967], + [-178.9944, 51.3739], + [-178.9883, 51.3064], + [-178.9055, 51.3614], + [-178.9572, 51.3967] + ] + ], + [ + [ + [-135.5186, 57.2189], + [-135.5578, 57.1572], + [-135.5059, 57.1425], + [-135.4518, 57.1775], + [-135.5186, 57.2189] + ] + ], + [ + [ + [-132.0288, 56.0889], + [-132.07, 56.03], + [-132.0256, 55.9967], + [-131.9822, 56.0249], + [-132.0288, 56.0889] + ] + ], + [ + [ + [-120.3623, 34.0737], + [-120.4395, 34.0383], + [-120.3604, 34.0134], + [-120.3069, 34.0197], + [-120.3623, 34.0737] + ] + ], + [ + [ + [-161.3376, 55.2196], + [-161.4281, 55.2163], + [-161.4145, 55.1808], + [-161.3394, 55.1587], + [-161.3376, 55.2196] + ] + ], + [ + [ + [-132.1918, 56.0399], + [-132.2028, 55.9564], + [-132.1804, 55.9263], + [-132.1333, 55.9422], + [-132.1918, 56.0399] + ] + ], + [ + [ + [-146.7354, 60.8708], + [-146.8141, 60.8432], + [-146.7896, 60.8042], + [-146.725, 60.8104], + [-146.7354, 60.8708] + ] + ], + [ + [ + [-75.5178, 35.2753], + [-75.5967, 35.2583], + [-75.6372, 35.2281], + [-75.5294, 35.2239], + [-75.5178, 35.2753] + ] + ], + [ + [ + [-81.7271, 25.9726], + [-81.7288, 25.9079], + [-81.6735, 25.9007], + [-81.6552, 25.9426], + [-81.7271, 25.9726] + ] + ], + [ + [ + [-157.83, 56.3706], + [-157.9072, 56.3442], + [-157.8233, 56.3069], + [-157.7961, 56.3245], + [-157.83, 56.3706] + ] + ], + [ + [ + [-81.5626, 24.6921], + [-81.5696, 24.6338], + [-81.6038, 24.5857], + [-81.5101, 24.6257], + [-81.5626, 24.6921] + ] + ], + [ + [ + [-122.6872, 48.1015], + [-122.7391, 48.0806], + [-122.7419, 48.0491], + [-122.6881, 48.0081], + [-122.6872, 48.1015] + ] + ], + [ + [ + [178.2296, 51.8321], + [178.3073, 51.7763], + [178.3805, 51.7702], + [178.3356, 51.8083], + [178.2296, 51.8321] + ] + ], + [ + [ + [178.1615, 52.0412], + [178.089, 52.0364], + [178.0981, 51.9978], + [178.1732, 51.9912], + [178.1615, 52.0412] + ] + ], + [ + [ + [-164.8995, 62.6599], + [-164.8807, 62.5984], + [-164.8151, 62.6078], + [-164.8589, 62.662], + [-164.8995, 62.6599] + ] + ], + [ + [ + [-147.3771, 60.2625], + [-147.3464, 60.2995], + [-147.4495, 60.2703], + [-147.4812, 60.225], + [-147.3771, 60.2625] + ] + ], + [ + [ + [-136.0354, 58.2942], + [-136.0369, 58.3174], + [-136.1577, 58.2792], + [-136.0932, 58.2578], + [-136.0354, 58.2942] + ] + ], + [ + [ + [-164.9875, 60.8688], + [-165.0203, 60.8339], + [-164.9583, 60.8208], + [-164.8901, 60.838], + [-164.9875, 60.8688] + ] + ], + [ + [ + [-152.8817, 58.3378], + [-152.9217, 58.3136], + [-152.7839, 58.2872], + [-152.8461, 58.3378], + [-152.8817, 58.3378] + ] + ], + [ + [ + [-152.5872, 60.1749], + [-152.6438, 60.1646], + [-152.5911, 60.113], + [-152.5484, 60.1141], + [-152.5872, 60.1749] + ] + ], + [ + [ + [-179.0868, 51.295], + [-179.147, 51.2793], + [-179.1405, 51.2325], + [-179.0944, 51.2271], + [-179.0868, 51.295] + ] + ], + [ + [ + [-80.975, 32.0647], + [-80.9242, 32.0125], + [-80.9217, 32.0072], + [-80.9261, 31.9958], + [-80.8764, 31.9927], + [-80.8608, 32.0011], + [-80.8478, 31.9892], + [-80.8422, 32.0242], + [-80.8797, 32.0167], + [-80.975, 32.0647] + ] + ], + [ + [ + [-130.5198, 54.8584], + [-130.5944, 54.8309], + [-130.6156, 54.7928], + [-130.5262, 54.8155], + [-130.5198, 54.8584] + ] + ], + [ + [ + [-169.420166016, -14.234145385], + [-169.428611755, -14.211944261], + [-169.501431552, -14.216898051], + [-169.491531372, -14.271703856], + [-169.420166016, -14.234145385] + ] + ], + [ + [ + [-134.1994, 57.8908], + [-134.1894, 57.8342], + [-134.1334, 57.7905], + [-134.1138, 57.8068], + [-134.1994, 57.8908] + ] + ], + [ + [ + [-133.4361, 55.9967], + [-133.4948, 55.9667], + [-133.4494, 55.9333], + [-133.4349, 55.9562], + [-133.3905, 55.9811], + [-133.4361, 55.9967] + ] + ], + [ + [ + [-145.1792, 60.3375], + [-145.1771, 60.3583], + [-145.2849, 60.3307], + [-145.213, 60.3026], + [-145.1792, 60.3375] + ] + ], + [ + [ + [-159.5733, 54.8244], + [-159.5828, 54.7736], + [-159.52, 54.7581], + [-159.5106, 54.7891], + [-159.5733, 54.8244] + ] + ], + [ + [ + [-166.1485, 53.9971], + [-166.1933, 53.9589], + [-166.1165, 53.9539], + [-166.073, 53.9698], + [-166.1485, 53.9971] + ] + ], + [ + [ + [-133.0384, 56.1179], + [-133.081, 56.088], + [-133.0472, 56.0647], + [-132.979, 56.0808], + [-133.0384, 56.1179] + ] + ], + [ + [ + [-150.3521, 70.4771], + [-150.4661, 70.4599], + [-150.4526, 70.4318], + [-150.3687, 70.45], + [-150.3521, 70.4771] + ] + ], + [ + [ + [-151.963, 60.4078], + [-152.0807, 60.3401], + [-151.9547, 60.3672], + [-151.963, 60.4078] + ] + ], + [ + [ + [-152.3039, 58.9597], + [-152.3377, 58.9042], + [-152.2367, 58.9144], + [-152.3039, 58.9597] + ] + ], + [ + [ + [-159.7036, 54.8364], + [-159.7337, 54.8423], + [-159.82, 54.8136], + [-159.7743, 54.7922], + [-159.7036, 54.8364] + ] + ], + [ + [ + [-72.3251, 41.1024], + [-72.384, 41.0691], + [-72.3542, 41.042], + [-72.3106, 41.0542], + [-72.3251, 41.1024] + ] + ], + [ + [ + [-147.2068, 60.8922], + [-147.2875, 60.8708], + [-147.1255, 60.8547], + [-147.2068, 60.8922] + ] + ], + [ + [ + [-68.6111, 44.0894], + [-68.6517, 44.065], + [-68.6611, 44.0172], + [-68.6042, 44.0386], + [-68.6111, 44.0894] + ] + ], + [ + [ + [-123.9789, 46.4931], + [-124.0053, 46.4633], + [-123.9417, 46.4108], + [-123.9497, 46.4675], + [-123.9789, 46.4931] + ] + ], + [ + [ + [-159.3133, 55.8117], + [-159.3568, 55.8061], + [-159.3078, 55.7455], + [-159.2821, 55.7606], + [-159.3133, 55.8117] + ] + ], + [ + [ + [-133.2298, 55.4361], + [-133.2978, 55.4456], + [-133.3094, 55.4011], + [-133.2539, 55.4061], + [-133.2298, 55.4361] + ] + ], + [ + [ + [-75.3117, 37.9808], + [-75.3675, 37.9419], + [-75.4144, 37.9364], + [-75.4044, 37.8978], + [-75.3531, 37.9158], + [-75.3439, 37.9503], + [-75.3117, 37.9808] + ] + ], + [ + [ + [-80.4753, 32.3425], + [-80.505, 32.3425], + [-80.5468, 32.284], + [-80.4536, 32.3225], + [-80.4753, 32.3425] + ] + ], + [ + [ + [-165.3472, 54.0897], + [-165.2897, 54.0385], + [-165.2644, 54.0917], + [-165.3472, 54.0897] + ] + ], + [ + [ + [-85.1091, 29.6872], + [-85.1828, 29.6638], + [-85.0972, 29.6325], + [-85.1091, 29.6872] + ] + ], + [ + [ + [-122.7066, 48.6051], + [-122.7408, 48.585], + [-122.7197, 48.5396], + [-122.6776, 48.5766], + [-122.7066, 48.6051] + ] + ], + [ + [ + [-150.4787, 70.438], + [-150.6057, 70.4224], + [-150.6062, 70.3896], + [-150.4787, 70.438] + ] + ], + [ + [ + [-81.0051, 25.2729], + [-81.014, 25.2721], + [-81.0226, 25.2554], + [-81.0462, 25.2374], + [-81.0207, 25.2279], + [-81.0054, 25.2282], + [-81.0007, 25.2162], + [-80.9676, 25.2185], + [-81.0051, 25.2729] + ] + ], + [ + [ + [-134.9096, 58.4838], + [-134.8416, 58.3712], + [-134.8078, 58.3757], + [-134.9096, 58.4838] + ] + ], + [ + [ + [-135.2983, 58.9433], + [-135.3286, 59.01], + [-135.3537, 59.0052], + [-135.3294, 58.9372], + [-135.2983, 58.9433] + ] + ], + [ + [ + [-164.4693, 63.0682], + [-164.4542, 63.0438], + [-164.375, 63.0271], + [-164.3776, 63.0536], + [-164.4693, 63.0682] + ] + ], + [ + [ + [-68.8188, 44.1808], + [-68.9175, 44.1481], + [-68.8597, 44.1261], + [-68.8188, 44.1808] + ] + ], + [ + [ + [-70.7119, 41.5128], + [-70.802, 41.4667], + [-70.7908, 41.4458], + [-70.7063, 41.4968], + [-70.7119, 41.5128] + ] + ], + [ + [ + [-78.3919, 33.8975], + [-78.5394, 33.8756], + [-78.5444, 33.8481], + [-78.3919, 33.8975] + ] + ], + [ + [ + [-154.0467, 56.7269], + [-154.1272, 56.6945], + [-154.0167, 56.69], + [-154.0467, 56.7269] + ] + ], + [ + [ + [-135.7028, 57.7069], + [-135.62, 57.6381], + [-135.5895, 57.6601], + [-135.7028, 57.7069] + ] + ], + [ + [ + [-77.9503, 33.9203], + [-78.0088, 33.8673], + [-77.9614, 33.8433], + [-77.9503, 33.9203] + ] + ], + [ + [ + [-150.3146, 59.4611], + [-150.4146, 59.4386], + [-150.3431, 59.4156], + [-150.3146, 59.4611] + ] + ], + [ + [ + [-71.5746, 41.2283], + [-71.5996, 41.1469], + [-71.5501, 41.1519], + [-71.5746, 41.2283] + ] + ], + [ + [ + [-151.7939, 59.1575], + [-151.8239, 59.1781], + [-151.8772, 59.1456], + [-151.8083, 59.1344], + [-151.7939, 59.1575] + ] + ], + [ + [ + [-74.1192, 39.7681], + [-74.1419, 39.6958], + [-74.1806, 39.6622], + [-74.2373, 39.5583], + [-74.0997, 39.7564], + [-74.1192, 39.7681] + ] + ], + [ + [ + [-71.4033, 41.4529], + [-71.3628, 41.4774], + [-71.3841, 41.5582], + [-71.4033, 41.4529] + ] + ], + [ + [ + [-147.4266, 60.6849], + [-147.4563, 60.6167], + [-147.3859, 60.6526], + [-147.4266, 60.6849] + ] + ], + [ + [ + [-80.8574, 31.9904], + [-80.9089, 31.9942], + [-80.9212, 31.943], + [-80.8614, 31.9733], + [-80.8574, 31.9904] + ] + ], + [ + [ + [-122.6394, 48.586], + [-122.6522, 48.5306], + [-122.583, 48.5511], + [-122.6394, 48.586] + ] + ], + [ + [ + [-81.3592, 31.3122], + [-81.3181, 31.2872], + [-81.2954, 31.2158], + [-81.2827, 31.2896], + [-81.3592, 31.3122] + ] + ], + [ + [ + [-65.337082, 18.349028], + [-65.282639, 18.280416], + [-65.272636, 18.331249], + [-65.337082, 18.349028] + ] + ], + [ + [ + [-131.6211, 55.9028], + [-131.6618, 55.8603], + [-131.5902, 55.8535], + [-131.6211, 55.9028] + ] + ], + [ + [ + [-69.6696, 43.9579], + [-69.7314, 43.8903], + [-69.6994, 43.8722], + [-69.6696, 43.9579] + ] + ], + [ + [ + [-64.762916565, 18.321527481], + [-64.699585, 18.303749], + [-64.744026, 18.365973], + [-64.762916565, 18.321527481] + ] + ], + [ + [ + [-156.6896, 56.0564], + [-156.7517, 56.0408], + [-156.6757, 56.0093], + [-156.6896, 56.0564] + ] + ], + [ + [ + [-150.5979, 61.3604], + [-150.6349, 61.337], + [-150.5943, 61.2797], + [-150.5979, 61.3604] + ] + ], + [ + [ + [-81.4135, 25.8026], + [-81.4246, 25.8554], + [-81.4799, 25.8443], + [-81.4135, 25.8026] + ] + ], + [ + [ + [-77.8775, 34.0711], + [-77.8892, 34.0569], + [-77.9188, 34.0512], + [-77.9139, 33.9719], + [-77.8775, 34.0711] + ] + ], + [ + [ + [-146.2934, 59.4645], + [-146.374, 59.4184], + [-146.3344, 59.4042], + [-146.2934, 59.4645] + ] + ], + [ + [ + [-80.8348, 32.1446], + [-80.8983, 32.1192], + [-80.8735, 32.0824], + [-80.8348, 32.1446] + ] + ], + [ + [ + [-175.7926, 51.9556], + [-175.8626, 51.9534], + [-175.7833, 51.9137], + [-175.7926, 51.9556] + ] + ], + [ + [ + [-89.3767, 29.9069], + [-89.4167, 29.8689], + [-89.3578, 29.8511], + [-89.3767, 29.9069] + ] + ], + [ + [ + [-74.8, 39.0289], + [-74.8647, 38.9417], + [-74.7869, 39.0014], + [-74.8, 39.0289] + ] + ], + [ + [ + [-80.3959, 32.5341], + [-80.4146, 32.4707], + [-80.3604, 32.4989], + [-80.3959, 32.5341] + ] + ], + [ + [ + [-69.7942, 43.9031], + [-69.7889, 43.8122], + [-69.76, 43.8625], + [-69.7942, 43.9031] + ] + ], + [ + [ + [-131.2006, 55.1072], + [-131.2422, 55.0664], + [-131.195, 55.0433], + [-131.2006, 55.1072] + ] + ], + [ + [ + [-122.6937, 48.7353], + [-122.6734, 48.68], + [-122.618, 48.6708], + [-122.6937, 48.7353] + ] + ], + [ + [ + [-76.7469, 34.7111], + [-76.8392, 34.6922], + [-76.6789, 34.6944], + [-76.7469, 34.7111] + ] + ], + [ + [ + [-163.7849, 60.8797], + [-163.862, 60.8755], + [-163.8229, 60.8417], + [-163.7849, 60.8797] + ] + ], + [ + [ + [175.88, 52.3728], + [175.9025, 52.3369], + [175.9654, 52.3596], + [175.88, 52.3728] + ] + ], + [ + [ + [-150.163, 61.1568], + [-150.2125, 61.1708], + [-150.2354, 61.1229], + [-150.163, 61.1568] + ] + ], + [ + [ + [-80.4314, 32.4084], + [-80.4802, 32.3783], + [-80.4507, 32.3418], + [-80.4314, 32.4084] + ] + ], + [ + [ + [-134.2628, 57.955], + [-134.2466, 57.9086], + [-134.2006, 57.9392], + [-134.2628, 57.955] + ] + ], + [ + [ + [-76.0456, 35.0681], + [-76.1366, 35.0112], + [-76.2278, 34.9253], + [-76.0456, 35.0681] + ] + ], + [ + [ + [-133.4855, 56.1667], + [-133.5725, 56.132], + [-133.5039, 56.1294], + [-133.4855, 56.1667] + ] + ], + [ + [ + [-74.3106, 39.4821], + [-74.3617, 39.4875], + [-74.3633, 39.4367], + [-74.3106, 39.4821] + ] + ], + [ + [ + [-76.0297, 37.9989], + [-76.0453, 37.9489], + [-75.9894, 37.9617], + [-76.0297, 37.9989] + ] + ], + [ + [ + [-80.195, 27.2543], + [-80.2644, 27.3961], + [-80.2592, 27.3481], + [-80.195, 27.2543] + ] + ], + [ + [ + [-159.1311, 55.8706], + [-159.1683, 55.8389], + [-159.095, 55.8328], + [-159.1311, 55.8706] + ] + ], + [ + [ + [-145.875, 60.3937], + [-145.8813, 60.375], + [-145.7505, 60.363], + [-145.875, 60.3937] + ] + ], + [ + [ + [-147.5557, 60.5599], + [-147.6224, 60.5641], + [-147.5995, 60.5255], + [-147.5557, 60.5599] + ] + ], + [ + [ + [-173.0568, 60.6557], + [-173.087, 60.6995], + [-173.1161, 60.6599], + [-173.0568, 60.6557] + ] + ], + [ + [ + [-71.3416, 41.6485], + [-71.327, 41.5804], + [-71.2981, 41.6148], + [-71.3416, 41.6485] + ] + ], + [ + [ + [-68.4042, 44.1747], + [-68.4611, 44.1597], + [-68.4203, 44.1278], + [-68.4042, 44.1747] + ] + ], + [ + [ + [-151.5069, 59.1459], + [-151.4443, 59.1046], + [-151.4312, 59.1345], + [-151.5069, 59.1459] + ] + ], + [ + [ + [-167.6641, 65.7828], + [-167.7182, 65.7786], + [-167.7042, 65.7354], + [-167.6641, 65.7828] + ] + ], + [ + [ + [-132.8795, 55.2258], + [-132.9383, 55.2086], + [-132.9259, 55.1716], + [-132.8795, 55.2258] + ] + ], + [ + [ + [-81.0299, 24.7301], + [-81.1249, 24.7068], + [-81.0826, 24.6921], + [-81.0299, 24.7301] + ] + ], + [ + [ + [-178.8367, 51.5742], + [-178.8161, 51.5394], + [-178.7617, 51.5628], + [-178.8367, 51.5742] + ] + ], + [ + [ + [-89.6989, 29.4422], + [-89.7275, 29.3892], + [-89.6772, 29.3997], + [-89.6989, 29.4422] + ] + ], + [ + [ + [-160.4249, 58.6786], + [-160.3841, 58.7042], + [-160.4043, 58.7494], + [-160.4249, 58.6786] + ] + ], + [ + [ + [-162.4594, 54.4172], + [-162.4328, 54.3714], + [-162.4017, 54.4056], + [-162.4594, 54.4172] + ] + ], + [ + [ + [-160.2794, 58.715], + [-160.3167, 58.6817], + [-160.2706, 58.6611], + [-160.2794, 58.715] + ] + ], + [ + [ + [-154.4306, 56.5908], + [-154.4378, 56.5375], + [-154.3928, 56.5533], + [-154.4306, 56.5908] + ] + ], + [ + [ + [-143.6146, 70.1292], + [-143.6833, 70.1333], + [-143.6682, 70.0995], + [-143.6146, 70.1292] + ] + ], + [ + [ + [-75.8653, 35.9711], + [-75.9469, 35.9592], + [-75.9192, 35.9356], + [-75.8653, 35.9711] + ] + ], + [ + [ + [-144.3945, 60.1516], + [-144.3297, 60.1026], + [-144.3297, 60.137], + [-144.3945, 60.1516] + ] + ], + [ + [ + [-68.865, 44.3672], + [-68.9114, 44.3647], + [-68.9017, 44.3183], + [-68.865, 44.3672] + ] + ], + [ + [ + [-68.4947, 44.3619], + [-68.5331, 44.3306], + [-68.48, 44.3172], + [-68.4947, 44.3619] + ] + ], + [ + [ + [-160.8038, 55.9061], + [-160.8188, 55.9528], + [-160.8525, 55.9155], + [-160.8038, 55.9061] + ] + ], + [ + [ + [-122.6874, 47.1828], + [-122.7414, 47.1506], + [-122.7127, 47.1283], + [-122.6874, 47.1828] + ] + ], + [ + [ + [-161.5928, 55.1073], + [-161.5816, 55.0567], + [-161.5478, 55.0828], + [-161.5928, 55.1073] + ] + ] + ] + }, + "properties": { + "id": "d2824676-2bf4-40a3-a27c-88221ea0ff5c", + "code": "USA", + "name": "United States", + "abbreviation": "N-USA", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + } + ] +} diff --git a/client/src/containers/action-map/map/views/regions/data.json b/client/src/containers/action-map/map/views/regions/data.json index b5f02eda..df96fb78 100644 --- a/client/src/containers/action-map/map/views/regions/data.json +++ b/client/src/containers/action-map/map/views/regions/data.json @@ -1 +1,11241 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-141.3146,60.0542],[-141.2693,60.0078],[-141.2954,59.9363],[-141.3678,59.9307],[-141.4631,59.8853],[-141.4331,59.8675],[-141.3135,59.847],[-140.9773,59.7684],[-140.9064,59.7424],[-140.6681,59.7105],[-140.3441,59.6939],[-140.2316,59.704],[-140.1488,59.74],[-139.9576,59.7834],[-140.1333,59.8056],[-140.1734,59.7684],[-140.2312,59.7674],[-140.248,59.806],[-140.1671,59.8037],[-140.0438,59.8387],[-139.9326,59.7917],[-139.8044,59.8184],[-139.7736,59.8684],[-139.7121,59.9188],[-139.6031,59.9521],[-139.6004,59.9876],[-139.5349,60.0469],[-139.4958,60.0021],[-139.4293,60.0021],[-139.3356,59.9175],[-139.2529,59.8602],[-139.1405,59.8625],[-139.0483,59.8406],[-139.1922,59.8417],[-139.3006,59.8194],[-139.2772,59.7864],[-139.3211,59.755],[-139.2711,59.6925],[-139.2283,59.6061],[-139.2989,59.5611],[-139.3567,59.5897],[-139.2928,59.6403],[-139.3497,59.7461],[-139.3345,59.8216],[-139.3,59.8524],[-139.4722,59.9973],[-139.5099,59.9855],[-139.5349,59.9366],[-139.6289,59.9022],[-139.637,59.8731],[-139.6006,59.8047],[-139.5422,59.7367],[-139.4717,59.7031],[-139.5878,59.6458],[-139.6017,59.6117],[-139.6653,59.5663],[-139.6967,59.6197],[-139.7328,59.5475],[-139.8378,59.5581],[-139.8567,59.5353],[-139.63,59.4569],[-139.4111,59.4119],[-139.4006,59.3797],[-139.2911,59.3867],[-139.1894,59.3222],[-138.8938,59.2388],[-138.6267,59.1281],[-138.4806,59.11],[-138.1858,59.0168],[-137.9506,58.8861],[-137.925,58.8422],[-137.9294,58.7831],[-137.7817,58.7181],[-137.6739,58.6467],[-137.515,58.6636],[-137.5122,58.6428],[-137.6428,58.6025],[-137.5761,58.5917],[-137.3978,58.5064],[-137.16,58.4239],[-137.095,58.3814],[-137.0128,58.4106],[-136.8919,58.3849],[-136.9039,58.3417],[-136.8406,58.365],[-136.8578,58.3167],[-136.7938,58.2941],[-136.7067,58.2958],[-136.7325,58.2595],[-136.665,58.2086],[-136.5828,58.2272],[-136.5647,58.2624],[-136.6067,58.3003],[-136.5967,58.3322],[-136.5422,58.3322],[-136.485,58.2994],[-136.4378,58.315],[-136.3755,58.2986],[-136.3706,58.3704],[-136.3125,58.3783],[-136.2828,58.315],[-136.2028,58.3422],[-136.1004,58.3457],[-136.0383,58.3831],[-136.0992,58.513],[-136.1867,58.5097],[-136.1767,58.5614],[-136.2045,58.6133],[-136.3155,58.671],[-136.3933,58.6175],[-136.5211,58.5936],[-136.3496,58.6867],[-136.3913,58.7176],[-136.5074,58.7564],[-136.5306,58.7404],[-136.6387,58.7913],[-136.6075,58.8185],[-136.5793,58.7806],[-136.4932,58.7915],[-136.5617,58.8324],[-136.6467,58.8406],[-136.7467,58.8772],[-137.0139,58.9042],[-136.9417,58.9178],[-136.9172,58.9494],[-137.0433,59.0206],[-137.0311,59.0618],[-136.8754,58.9629],[-136.7103,58.918],[-136.6236,58.9032],[-136.6918,58.9976],[-136.5769,58.9139],[-136.5328,58.9214],[-136.4883,58.8369],[-136.3964,58.8168],[-136.2517,58.7525],[-136.1774,58.7545],[-136.106,58.8639],[-136.1533,59.0061],[-136.1112,59.0102],[-136.1181,58.9607],[-136.0601,58.9284],[-136.0598,58.8537],[-135.9872,58.8614],[-135.92,58.905],[-135.8044,58.9036],[-135.7906,58.8867],[-135.9444,58.8775],[-136.0145,58.844],[-136.0806,58.8281],[-136.0828,58.8076],[-135.9633,58.7036],[-135.9106,58.6165],[-135.8344,58.5992],[-135.8905,58.5753],[-135.8522,58.5386],[-135.8977,58.4488],[-135.9082,58.379],[-135.7044,58.3956],[-135.62,58.4269],[-135.475,58.3756],[-135.4579,58.4075],[-135.5155,58.4756],[-135.4972,58.5033],[-135.4529,58.4561],[-135.3978,58.3254],[-135.314,58.2459],[-135.2222,58.2361],[-135.1627,58.2088],[-135.09,58.24],[-135.1071,58.2658],[-135.0535,58.3464],[-135.1308,58.5102],[-135.1651,58.5634],[-135.2389,58.6192],[-135.1394,58.6172],[-135.227,58.7178],[-135.2467,58.7908],[-135.2839,58.8183],[-135.4022,58.9728],[-135.3822,59.1017],[-135.4406,59.1132],[-135.4691,59.1739],[-135.5178,59.2081],[-135.4756,59.2269],[-135.3849,59.1731],[-135.37,59.1127],[-135.3083,59.0817],[-135.3597,59.2004],[-135.4306,59.2258],[-135.4431,59.2766],[-135.5426,59.3079],[-135.5317,59.325],[-135.4078,59.2894],[-135.3618,59.4494],[-135.3286,59.4442],[-135.3587,59.3718],[-135.3711,59.2653],[-135.2849,59.1974],[-135.2036,59.0704],[-135.1772,58.9992],[-135.1533,58.8551],[-135.0267,58.7328],[-135.0268,58.7899],[-134.9523,58.7952],[-134.9203,58.6804],[-134.9903,58.6765],[-134.8405,58.5184],[-134.7878,58.495],[-134.7781,58.3954],[-134.7267,58.3717],[-134.6467,58.3867],[-134.6367,58.3409],[-134.5389,58.3478],[-134.4985,58.3432],[-134.2134,58.2045],[-134.1494,58.2006],[-134.1037,58.2492],[-134.1405,58.3061],[-134.0578,58.3325],[-134.0528,58.3764],[-133.9704,58.4465],[-133.985,58.4897],[-133.9415,58.5051],[-133.9472,58.4222],[-134.0161,58.4012],[-133.9795,58.3197],[-134.0044,58.295],[-134.0816,58.2794],[-134.0539,58.2308],[-134.0846,58.214],[-134.0672,58.0928],[-134.05,58.0617],[-133.8888,57.9741],[-133.786,58.009],[-133.7761,58.0639],[-133.7117,57.9953],[-133.6939,57.9372],[-133.7619,57.9954],[-133.8306,57.97],[-133.8501,57.934],[-133.6967,57.7914],[-133.6322,57.7914],[-133.6276,57.8454],[-133.5744,57.9178],[-133.5798,57.8311],[-133.5607,57.7761],[-133.4247,57.7225],[-133.3297,57.6634],[-133.2794,57.6611],[-133.1511,57.5884],[-133.1756,57.5818],[-133.3898,57.6593],[-133.5276,57.6876],[-133.5704,57.721],[-133.6509,57.7165],[-133.6739,57.6569],[-133.6621,57.6133],[-133.5621,57.5617],[-133.4517,57.5886],[-133.5167,57.5442],[-133.5276,57.4895],[-133.4673,57.4219],[-133.4186,57.4362],[-133.3645,57.4131],[-133.473,57.3873],[-133.4521,57.3547],[-133.3563,57.3329],[-133.2345,57.3213],[-133.2564,57.2845],[-133.3401,57.2988],[-133.4268,57.2862],[-133.4744,57.2978],[-133.5336,57.2605],[-133.4995,57.2272],[-133.5342,57.1819],[-133.465,57.1501],[-133.3161,57.1067],[-133.1728,57.1773],[-133.1411,57.1619],[-133.1817,57.0891],[-133.0789,57.0825],[-133.0044,57.0492],[-132.8737,57.03],[-132.8349,57.0658],[-132.7829,57.0021],[-132.7889,56.9717],[-132.8721,57.0014],[-132.9528,56.9942],[-132.8861,56.9222],[-132.8096,56.892],[-132.79,56.8433],[-132.6439,56.7817],[-132.4917,56.7456],[-132.5572,56.7148],[-132.5322,56.6881],[-132.5656,56.6286],[-132.4982,56.6035],[-132.4239,56.6092],[-132.3511,56.6367],[-132.3679,56.5928],[-132.3592,56.5277],[-132.2893,56.4844],[-132.2113,56.4607],[-132.1977,56.4157],[-132.1209,56.365],[-132.0944,56.3761],[-132.0622,56.377],[-131.9944,56.3603],[-131.98,56.3011],[-131.9317,56.2364],[-131.8061,56.2161],[-131.7583,56.2245],[-131.6389,56.1911],[-131.7106,56.1867],[-131.7639,56.2056],[-131.9728,56.1739],[-131.9783,56.0439],[-131.9605,56.0128],[-131.9911,55.9628],[-132.0412,55.9602],[-132.0709,55.9242],[-132.0417,55.8858],[-132.0917,55.8531],[-132.0723,55.8092],[-132.1313,55.8109],[-132.1928,55.7856],[-132.1967,55.7308],[-132.287,55.7617],[-132.2281,55.6993],[-132.1851,55.5879],[-132.1208,55.55],[-132.0739,55.545],[-131.9695,55.4978],[-131.9389,55.5677],[-132.0111,55.6731],[-131.9278,55.6117],[-131.8811,55.6228],[-131.8294,55.6833],[-131.777,55.7813],[-131.7697,55.8241],[-131.9194,55.8644],[-131.8323,55.8863],[-131.7606,55.8778],[-131.6767,55.9194],[-131.4397,56.0026],[-131.4083,55.9845],[-131.3883,55.9598],[-131.2969,55.9959],[-131.2278,56.0057],[-131.0945,56.0781],[-131.096,56.0431],[-131.2155,55.9864],[-131.18,55.9472],[-131.0928,55.8948],[-130.9069,55.7122],[-130.8722,55.5569],[-130.7967,55.5792],[-130.7766,55.5253],[-130.8666,55.5428],[-130.9004,55.4673],[-130.8761,55.3842],[-130.8783,55.3316],[-130.8322,55.2887],[-130.9272,55.301],[-130.9917,55.2433],[-131.0915,55.1946],[-131.0663,55.1225],[-130.9939,55.0853],[-130.9025,55.1025],[-130.8211,55.1445],[-130.7951,55.1025],[-130.7199,55.0938],[-130.7952,55.0669],[-130.8528,55.1191],[-130.8715,55.0984],[-130.9893,55.0669],[-131.0051,55.0028],[-130.9532,54.9642],[-130.9342,54.8017],[-130.8561,54.7675],[-130.7361,54.8214],[-130.7611,54.9408],[-130.7372,54.9536],[-130.7204,54.7649],[-130.6567,54.7745],[-130.6322,54.8167],[-130.525,54.8668],[-130.4971,54.8335],[-130.3706,54.9067],[-130.2956,54.9657],[-130.2289,55.0378],[-130.1951,55.1044],[-130.0987,55.2133],[-129.9942,55.2902],[-130.03,55.3228],[-130.0539,55.4425],[-130.1069,55.4957],[-130.15,55.5979],[-130.1246,55.6795],[-130.1568,55.7074],[-130.1725,55.7782],[-130.0917,55.8277],[-130.016,55.9235],[-130.003,56.0079],[-130.1054,56.1227],[-130.2459,56.0963],[-130.4255,56.1417],[-130.4682,56.2433],[-130.623,56.2669],[-130.7818,56.3671],[-131.087,56.4061],[-131.1733,56.4495],[-131.4716,56.5527],[-131.5813,56.6123],[-131.8354,56.5991],[-131.8604,56.7029],[-131.9009,56.7535],[-131.8731,56.8063],[-132.1231,56.8739],[-132.0448,57.0451],[-132.3687,57.0917],[-132.2478,57.2111],[-132.3692,57.3499],[-132.5539,57.4967],[-132.6608,57.6169],[-132.7512,57.6961],[-132.869,57.8397],[-133.0696,58.0001],[-133.172,58.1538],[-133.3487,58.2795],[-133.4599,58.3885],[-133.38,58.4318],[-133.6995,58.6091],[-133.841,58.7299],[-133.9719,58.7671],[-134.258,58.8609],[-134.3363,58.9236],[-134.3134,58.9621],[-134.4074,58.979],[-134.382,59.0388],[-134.4827,59.131],[-134.5655,59.1308],[-134.6789,59.1921],[-134.7007,59.2489],[-134.9598,59.281],[-135.0335,59.3502],[-134.9924,59.3878],[-135.1006,59.4278],[-135.0279,59.4746],[-135.0289,59.5636],[-135.1175,59.6231],[-135.2198,59.6629],[-135.2337,59.6961],[-135.3644,59.7396],[-135.4796,59.7981],[-135.9476,59.6634],[-136.1953,59.6388],[-136.3535,59.5999],[-136.2414,59.5591],[-136.2363,59.5267],[-136.3014,59.4658],[-136.3963,59.4474],[-136.464,59.463],[-136.4578,59.2814],[-136.582,59.1655],[-136.8247,59.1598],[-136.9996,59.0914],[-137.2827,59.0001],[-137.4515,58.9085],[-137.526,58.9066],[-137.5,58.9849],[-137.5418,59.1063],[-137.6074,59.2435],[-138.1689,59.5359],[-138.6092,59.76],[-138.6563,59.7992],[-138.7058,59.9062],[-138.7908,59.923],[-139.0421,59.9916],[-139.177,60.0829],[-139.0485,60.3259],[-139.0521,60.3537],[-139.6801,60.3357],[-139.9741,60.1845],[-140.448,60.308],[-140.5203,60.2191],[-140.7683,60.2583],[-141.0016,60.3051],[-141.0018,63.9326],[-141.0032,65.0001],[-141.0022,67.0133],[-141.0069,67.9999],[-141.0023,68.5045],[-141.003,69.6462],[-141.1167,69.6729],[-141.2063,69.6792],[-141.2464,69.6297],[-141.3974,69.638],[-141.438,69.6766],[-141.5339,69.7286],[-141.662,69.7589],[-141.75,69.7625],[-141.7854,69.7917],[-141.9,69.8042],[-142.0104,69.7958],[-142.1687,69.8458],[-142.2396,69.8458],[-142.3391,69.8859],[-142.3797,69.9287],[-142.5188,69.9604],[-142.5807,69.9589],[-142.5818,69.9974],[-142.7271,70.0375],[-142.8667,70.0563],[-142.9937,70.0583],[-143.0042,70.0771],[-143.1062,70.0771],[-143.2203,70.1099],[-143.35,70.0896],[-143.5125,70.0875],[-143.6583,70.0729],[-143.7292,70.0896],[-143.8078,70.0693],[-143.875,70.0771],[-144.0896,70.0375],[-144.4125,70.0271],[-144.4875,70.0167],[-144.6375,69.9646],[-144.8292,69.9833],[-144.9625,69.9583],[-145.025,69.9812],[-145.2625,69.9896],[-145.3,70.0104],[-145.4187,70.0292],[-145.4833,70.0583],[-145.6042,70.0333],[-145.6521,70.0583],[-145.5792,70.0708],[-145.8542,70.1625],[-145.8708,70.1167],[-145.9104,70.1146],[-146.1687,70.1646],[-146.5083,70.1854],[-146.7187,70.1687],[-146.8542,70.175],[-146.9458,70.15],[-147.1828,70.1547],[-147.2417,70.1771],[-147.4167,70.1854],[-147.5125,70.2021],[-147.6771,70.1979],[-147.7812,70.2167],[-147.7958,70.2813],[-147.9542,70.2729],[-148.0672,70.2859],[-148.1271,70.3271],[-148.2229,70.3146],[-148.2609,70.3255],[-148.3453,70.3016],[-148.4516,70.3068],[-148.4724,70.337],[-148.5536,70.3422],[-148.5292,70.3688],[-148.5813,70.3958],[-148.7104,70.4083],[-148.8354,70.3875],[-148.9229,70.3958],[-148.8797,70.4287],[-148.963,70.4266],[-149.0562,70.4625],[-149.1625,70.4854],[-149.4214,70.4922],[-149.4646,70.5146],[-149.5396,70.4896],[-149.6667,70.5062],[-149.7661,70.4797],[-149.8479,70.5021],[-149.9021,70.4958],[-150.0646,70.4417],[-150.2104,70.4313],[-150.3875,70.4063],[-150.6563,70.3458],[-150.7229,70.3229],[-150.7922,70.2693],[-150.7797,70.2338],[-150.8359,70.2172],[-150.8422,70.2693],[-150.7693,70.2963],[-150.7297,70.338],[-150.7453,70.3682],[-150.6359,70.3943],[-150.6255,70.4182],[-150.7734,70.4745],[-150.7271,70.4],[-150.7891,70.3755],[-150.8328,70.3901],[-150.837,70.4526],[-150.9146,70.4625],[-150.9703,70.438],[-151.0417,70.4396],[-151.0891,70.3859],[-151.1479,70.4271],[-151.1807,70.3818],[-151.2896,70.3458],[-151.2672,70.3891],[-151.3875,70.4167],[-151.7646,70.4354],[-151.8875,70.4313],[-151.9,70.475],[-151.8,70.4896],[-151.7604,70.5458],[-152.0208,70.5604],[-152.0437,70.5458],[-152.1812,70.55],[-152.3646,70.5375],[-152.3792,70.55],[-152.5208,70.5375],[-152.5937,70.5667],[-152.5167,70.5813],[-152.2729,70.575],[-152.3042,70.6042],[-152.4146,70.6062],[-152.4646,70.6333],[-152.4708,70.6937],[-152.3818,70.7151],[-152.2974,70.7849],[-152.2229,70.825],[-152.5833,70.8812],[-152.6646,70.8792],[-152.6172,70.8339],[-152.6995,70.7859],[-152.6953,70.7464],[-152.7766,70.8724],[-152.8583,70.8417],[-152.913,70.8891],[-152.9937,70.8875],[-153.0479,70.9042],[-153.1313,70.8938],[-153.1292,70.9208],[-153.2953,70.9099],[-153.3813,70.8875],[-153.5542,70.8833],[-153.7104,70.8896],[-153.9333,70.8771],[-153.9984,70.8172],[-154.1562,70.7688],[-154.2125,70.7708],[-154.2521,70.8104],[-154.3417,70.8125],[-154.3562,70.8313],[-154.4667,70.8208],[-154.6141,70.8214],[-154.6338,70.8599],[-154.7625,70.8688],[-154.7766,70.8891],[-154.6109,70.9068],[-154.6172,70.9411],[-154.5734,70.9953],[-154.6505,71.0328],[-154.7063,71.0021],[-154.7708,71.0729],[-154.8125,71.0854],[-154.8943,71.0703],[-154.9661,71.0339],[-154.8641,71.0443],[-154.7437,71.0417],[-154.7276,70.9568],[-154.8505,70.9516],[-154.8208,70.8854],[-154.9391,70.9422],[-154.9568,71.0089],[-155.0188,71.0313],[-155.0667,71.1292],[-155.0667,71.0625],[-155.1458,71.1042],[-155.2521,71.075],[-155.1568,71.0182],[-155.2021,70.9771],[-155.2625,71.0146],[-155.3599,70.9953],[-155.5099,70.9339],[-155.4542,70.8458],[-155.2859,70.8474],[-155.313,70.788],[-155.4375,70.8104],[-155.5036,70.8443],[-155.5875,70.8021],[-155.6896,70.8313],[-155.875,70.8271],[-155.9141,70.7922],[-155.8875,70.7562],[-156,70.7479],[-155.9583,70.7792],[-155.9896,70.825],[-156.05,70.8208],[-156.1729,70.8542],[-155.9958,70.8625],[-156.0083,70.8958],[-156.0729,70.8833],[-156.1037,70.9057],[-156.1797,70.8672],[-156.2437,70.9],[-156.2563,70.8667],[-156.3245,70.8724],[-156.2349,70.9182],[-156.3313,70.9167],[-156.3729,70.9042],[-156.4187,70.9083],[-156.4375,70.875],[-156.4958,70.9125],[-156.3583,70.9104],[-156.2875,70.9396],[-156.1625,70.9729],[-156.1109,70.9484],[-156.15,70.9187],[-155.9854,70.9187],[-156,70.9646],[-155.7271,70.9833],[-155.6974,71.0203],[-155.6141,71.0599],[-155.5396,71.0625],[-155.5068,71.0859],[-155.5688,71.1396],[-155.6375,71.1167],[-155.6422,71.1589],[-155.7474,71.1911],[-155.8917,71.1771],[-155.9208,71.2104],[-156.0146,71.1708],[-156.1,71.2417],[-156.2542,71.2625],[-156.35,71.2583],[-156.5318,71.2974],[-156.5979,71.3354],[-156.8099,71.287],[-156.888,71.2401],[-157.0328,71.1724],[-157.0021,71.1208],[-157.0521,71.1062],[-157.0771,71.1458],[-157.2359,71.0505],[-157.4479,70.9625],[-157.8188,70.8625],[-158.025,70.8292],[-158.3542,70.8125],[-158.3917,70.7979],[-158.7187,70.7854],[-158.9646,70.7917],[-158.9812,70.7646],[-159.1849,70.7578],[-159.2563,70.7708],[-159.2578,70.7089],[-159.2984,70.7578],[-159.4141,70.7651],[-159.3438,70.8063],[-159.1193,70.8203],[-159.1917,70.8458],[-159.3708,70.8438],[-159.5458,70.8167],[-159.6854,70.7771],[-159.8109,70.7234],[-159.9474,70.6787],[-160.0167,70.6333],[-159.8901,70.612],[-159.8286,70.5766],[-159.8224,70.5432],[-159.737,70.4901],[-159.6229,70.4875],[-159.6,70.5062],[-159.5213,70.4818],[-159.6766,70.4547],[-159.7609,70.487],[-159.8484,70.4234],[-159.8766,70.3797],[-159.8255,70.3557],[-159.8411,70.2568],[-159.8984,70.3276],[-159.9536,70.3672],[-160.1432,70.3078],[-160.1417,70.3396],[-160.0833,70.3458],[-159.9828,70.4099],[-159.9104,70.4833],[-160.0458,70.4604],[-160.0292,70.5021],[-159.913,70.5109],[-159.9109,70.5766],[-160.025,70.5792],[-160.0896,70.5646],[-160.138,70.5807],[-160.2797,70.5255],[-160.7068,70.3818],[-160.8604,70.3375],[-161.0401,70.313],[-161.3062,70.2479],[-161.4083,70.2396],[-161.6104,70.2438],[-161.6151,70.2245],[-161.7932,70.1807],[-161.8375,70.15],[-162.0125,70.1583],[-162.0813,70.1167],[-162.0813,70.1625],[-161.9792,70.1833],[-161.9146,70.1604],[-161.8458,70.1604],[-161.862,70.2099],[-161.7667,70.2125],[-161.8646,70.2479],[-161.7146,70.2354],[-161.6833,70.2625],[-161.8432,70.2714],[-161.7354,70.3083],[-161.8792,70.3271],[-161.9266,70.312],[-161.9901,70.2422],[-162.0922,70.2005],[-162.1938,70.1729],[-162.2688,70.125],[-162.3953,70.0922],[-162.4682,70.0578],[-162.4568,70.0005],[-162.4922,69.963],[-162.8104,69.8354],[-162.8214,69.8193],[-162.9432,69.7932],[-163.0286,69.7276],[-162.9172,69.6943],[-162.9792,69.6687],[-163.0255,69.6828],[-163.0479,69.6292],[-163.088,69.6464],[-163.112,69.5901],[-163.0151,69.5359],[-163.0771,69.4292],[-163.1734,69.313],[-163.225,69.2813],[-163.3036,69.2703],[-163.4661,69.1911],[-163.5307,69.1412],[-163.6917,69.0687],[-163.8432,69.0307],[-163.9312,68.9917],[-164.1057,68.9599],[-164.1396,68.9417],[-164.2833,68.925],[-164.4937,68.9104],[-164.6396,68.9125],[-164.7979,68.8938],[-165.1125,68.875],[-165.3146,68.8562],[-165.5417,68.8521],[-165.65,68.8438],[-165.7437,68.8562],[-166.2125,68.8792],[-166.1922,68.6943],[-166.2287,68.6495],[-166.2245,68.5703],[-166.2995,68.5141],[-166.2984,68.4672],[-166.3708,68.4021],[-166.4417,68.3938],[-166.5208,68.3396],[-166.3708,68.3229],[-166.2479,68.3187],[-166.1714,68.2849],[-166.1328,68.2422],[-166.0958,68.2438],[-166.0151,68.2016],[-165.9807,68.1464],[-165.8813,68.1104],[-165.7063,68.0938],[-165.3667,68.0396],[-165.1146,67.9542],[-164.9266,67.8734],[-164.8193,67.8516],[-164.7812,67.8229],[-164.725,67.8354],[-164.6849,67.8026],[-164.6172,67.7953],[-164.4953,67.7151],[-164.4125,67.6937],[-164.3521,67.7063],[-164.138,67.6391],[-164.1078,67.6047],[-163.9667,67.5062],[-163.8807,67.4213],[-163.8167,67.4187],[-163.7708,67.3875],[-163.8203,67.3526],[-163.7625,67.2646],[-163.7328,67.1932],[-163.6417,67.1854],[-163.5891,67.1568],[-163.5083,67.1458],[-163.4172,67.1036],[-163.4193,67.0839],[-163.525,67.1167],[-163.7328,67.1193],[-163.6604,67.0979],[-163.3083,67.0625],[-163.2526,67.0807],[-163.1583,67.0458],[-162.9979,67.0313],[-162.7479,67.0521],[-162.5557,66.9838],[-162.5161,67.0286],[-162.4708,66.9812],[-162.3687,66.9938],[-162.2375,66.9938],[-162.1625,67.0188],[-161.9792,67.0417],[-161.8354,67.05],[-161.7229,67.0083],[-161.7083,67.025],[-161.6193,67.0099],[-161.5833,66.9833],[-161.5292,66.9896],[-161.4734,66.9495],[-161.525,66.9375],[-161.6083,66.95],[-161.7057,66.9411],[-161.6963,66.9193],[-161.7828,66.8912],[-161.8057,66.8161],[-161.8641,66.7026],[-161.6938,66.625],[-161.5854,66.5875],[-161.5234,66.5807],[-161.487,66.5297],[-161.2917,66.5229],[-161.2068,66.5578],[-161.2312,66.5771],[-161.1187,66.6396],[-160.9729,66.6417],[-160.8938,66.6583],[-160.8083,66.6563],[-160.6562,66.5896],[-160.5109,66.5859],[-160.5021,66.6125],[-160.3542,66.6104],[-160.275,66.6521],[-160.1854,66.6312],[-160.0979,66.675],[-160.0412,66.6589],[-159.9438,66.6813],[-159.8104,66.6583],[-159.8229,66.6813],[-159.7229,66.6771],[-159.6964,66.6484],[-159.7771,66.6146],[-159.8724,66.637],[-159.9125,66.5729],[-159.9599,66.5755],[-159.9839,66.6214],[-160.0354,66.6062],[-160.0953,66.6193],[-160.1187,66.5917],[-160.25,66.6167],[-160.3182,66.5953],[-160.2688,66.5646],[-160.2479,66.5896],[-160.1833,66.525],[-160.2016,66.4797],[-160.1208,66.4688],[-160.0333,66.475],[-160.05,66.4146],[-160.1938,66.4521],[-160.2276,66.3859],[-160.4833,66.375],[-160.5458,66.3562],[-160.6771,66.3667],[-160.7854,66.3625],[-160.8484,66.3953],[-160.962,66.4172],[-161.0651,66.4849],[-161.1682,66.4984],[-161.1771,66.5333],[-161.2661,66.512],[-161.3229,66.4771],[-161.5063,66.4417],[-161.5833,66.4396],[-161.6651,66.4703],[-161.8203,66.5109],[-161.9099,66.5443],[-161.9922,66.6099],[-162.0724,66.6484],[-162.0828,66.6911],[-162.0109,66.7568],[-162.0208,66.7813],[-162.0995,66.788],[-162.2391,66.8734],[-162.3188,66.9417],[-162.4,66.9167],[-162.4729,66.9479],[-162.5208,66.9021],[-162.6182,66.8505],[-162.5088,66.7766],[-162.5016,66.7338],[-162.2333,66.7104],[-162.1214,66.6536],[-162.0995,66.6109],[-161.9922,66.5787],[-161.8963,66.5286],[-161.8651,66.4734],[-161.8057,66.438],[-161.8724,66.4245],[-161.9391,66.3234],[-161.8792,66.3604],[-161.8354,66.3604],[-161.6917,66.3979],[-161.5354,66.4021],[-161.1047,66.3287],[-160.9859,66.2255],[-161.0047,66.1891],[-161.0724,66.1787],[-161.1042,66.1208],[-161.0937,66.2292],[-161.2104,66.2063],[-161.3021,66.2167],[-161.3516,66.2547],[-161.4979,66.2583],[-161.5568,66.2276],[-161.7214,66.0589],[-161.8245,66.0036],[-161.7854,65.9688],[-161.85,65.9563],[-161.8693,66.0005],[-161.9318,66.0349],[-162.0396,66.0687],[-162.1354,66.075],[-162.3354,66.0271],[-162.4036,66.0297],[-162.4521,66.0563],[-162.5396,66.0333],[-162.6432,66.0266],[-162.6745,65.9943],[-162.688,66.0703],[-162.7583,66.0958],[-162.8687,66.0792],[-162.9229,66.0896],[-163.1375,66.0521],[-163.3062,66.0687],[-163.3313,66.0854],[-163.4833,66.0833],[-163.6271,66.0542],[-163.7661,66.0734],[-163.8537,66.1276],[-163.8979,66.1937],[-163.9703,66.1672],[-164.1625,66.1917],[-163.9333,66.2146],[-163.8255,66.2714],[-163.8651,66.3339],[-163.8724,66.387],[-163.8474,66.4182],[-163.7713,66.4484],[-163.7255,66.4964],[-163.8146,66.5563],[-163.8042,66.5771],[-163.6521,66.5542],[-163.6792,66.5771],[-163.8271,66.5917],[-164.1062,66.5917],[-164.4396,66.5771],[-164.6896,66.5437],[-164.7276,66.5109],[-164.9286,66.4495],[-165.0146,66.3792],[-165.0422,66.4287],[-165.1458,66.4333],[-165.2479,66.4146],[-165.4396,66.4021],[-165.5979,66.3542],[-165.6583,66.3479],[-165.7557,66.3141],[-165.8464,66.263],[-165.8537,66.213],[-165.6958,66.2042],[-165.5312,66.1458],[-165.6896,66.0958],[-165.7792,66.0958],[-165.8729,66.1125],[-166.0583,66.1062],[-166.2187,66.1708],[-166.6042,66.0896],[-166.7708,66.0313],[-166.7958,65.9729],[-166.9187,65.9875],[-166.9438,65.9583],[-166.8682,65.9276],[-166.9974,65.8953],[-167.0354,65.8688],[-167.1849,65.8401],[-167.2807,65.8901],[-167.4833,65.8354],[-167.4563,65.7979],[-167.5312,65.8021],[-167.562,65.7714],[-167.4859,65.7599],[-167.4953,65.7338],[-167.5833,65.7083],[-167.7896,65.7063],[-167.9104,65.6438],[-168,65.625],[-168.0599,65.6297],[-168.0286,65.6891],[-167.925,65.7125],[-167.8354,65.7521],[-167.8125,65.7396],[-167.7396,65.7771],[-167.9458,65.7354],[-168.0807,65.6932],[-168.1245,65.6453],[-168.087,65.5901],[-168.0458,65.5687],[-167.8896,65.5521],[-167.8167,65.5208],[-167.6422,65.4807],[-167.6062,65.4542],[-167.4083,65.4021],[-167.0354,65.3875],[-166.9542,65.3708],[-166.825,65.375],[-166.7521,65.3604],[-166.6104,65.3521],[-166.3979,65.3083],[-166.387,65.3182],[-166.1479,65.2875],[-166.0359,65.2474],[-166.0188,65.1896],[-165.8338,65.1339],[-165.8703,65.1807],[-165.7521,65.1896],[-165.6687,65.1583],[-165.5792,65.1771],[-165.3854,65.1687],[-165.4526,65.1214],[-165.5682,65.0974],[-165.6562,65.0479],[-165.7312,65.0729],[-165.8188,65.0771],[-165.8745,65.0964],[-165.9672,65.1682],[-166.0349,65.1859],[-166.0422,65.2307],[-166.1292,65.2292],[-166.2479,65.2583],[-166.3771,65.2542],[-166.4724,65.2203],[-166.4651,65.1713],[-166.5359,65.1172],[-166.6568,65.1036],[-166.8401,65.1214],[-166.8208,65.0771],[-166.7063,65.0563],[-166.6807,64.9818],[-166.5599,64.9464],[-166.5005,64.9474],[-166.4245,64.8922],[-166.3776,64.813],[-166.4745,64.7911],[-166.4682,64.7193],[-166.3911,64.6401],[-166.2104,64.5792],[-165.8521,64.5396],[-165.7437,64.5375],[-165.2167,64.4729],[-165.0104,64.4333],[-164.9271,64.4396],[-164.8432,64.4912],[-164.7521,64.5146],[-164.6187,64.5062],[-164.5437,64.5313],[-164.325,64.5667],[-164.1042,64.5687],[-163.9937,64.5521],[-163.8833,64.5729],[-163.6438,64.5687],[-163.5125,64.55],[-163.3464,64.5099],[-163.2547,64.4745],[-163.1729,64.3979],[-163.1068,64.4089],[-163.0974,64.462],[-163.0318,64.5026],[-163.1479,64.5062],[-163.1755,64.5349],[-163.25,64.5396],[-163.3651,64.5974],[-163.2818,64.6026],[-163.2464,64.6297],[-163.1354,64.6458],[-163.1208,64.6],[-163.0339,64.5849],[-163.0188,64.5417],[-162.9453,64.5443],[-162.8422,64.4953],[-162.8537,64.4443],[-162.8005,64.4078],[-162.8037,64.3359],[-162.6318,64.3839],[-162.5922,64.4838],[-162.5453,64.5307],[-162.3333,64.5979],[-162.2359,64.6193],[-162.1708,64.6813],[-161.95,64.6979],[-161.8771,64.7479],[-161.6812,64.7813],[-161.7912,64.8068],[-161.6958,64.8083],[-161.6474,64.7755],[-161.5188,64.7542],[-161.413,64.763],[-161.3036,64.8474],[-161.2016,64.8932],[-161.1792,64.9271],[-161.112,64.8839],[-160.987,64.8359],[-160.8734,64.8057],[-160.862,64.7776],[-160.7776,64.7182],[-160.7839,64.6255],[-160.8974,64.5807],[-160.9297,64.5505],[-161.013,64.5224],[-161.0333,64.4958],[-161.1896,64.4938],[-161.3537,64.5193],[-161.3771,64.5333],[-161.4661,64.5057],[-161.4714,64.4464],[-161.5286,64.4089],[-161.3938,64.4313],[-161.3479,64.4042],[-161.2146,64.4125],[-161.1766,64.3422],[-161.0828,64.2901],[-161.0109,64.2828],[-160.9609,64.2495],[-160.9422,64.0766],[-160.8943,63.9932],[-160.813,63.912],[-160.7599,63.8203],[-160.7859,63.7443],[-160.963,63.6172],[-161.0083,63.6208],[-161.0359,63.5755],[-161.0974,63.5484],[-161.1359,63.5005],[-161.4292,63.4542],[-161.5,63.4688],[-161.5792,63.4458],[-161.6938,63.4625],[-161.8062,63.4375],[-161.8917,63.4479],[-161.9651,63.4318],[-162,63.4458],[-162.1042,63.4271],[-162.0417,63.4854],[-162.175,63.5292],[-162.3021,63.5375],[-162.2651,63.4932],[-162.3604,63.4458],[-162.4068,63.4068],[-162.4203,63.3568],[-162.5307,63.3141],[-162.5297,63.2922],[-162.6958,63.2125],[-162.7792,63.2146],[-162.8411,63.1859],[-162.838,63.1589],[-162.9766,63.1057],[-163.0359,63.0609],[-163.2,63.0438],[-163.3146,63.0208],[-163.3651,63.0536],[-163.5042,63.1104],[-163.6089,63.0755],[-163.6297,63.1432],[-163.6672,63.1516],[-163.7276,63.2078],[-163.8313,63.2083],[-164.0458,63.2625],[-164.2724,63.2391],[-164.3167,63.2417],[-164.4661,63.1891],[-164.5828,63.1193],[-164.5271,63.0708],[-164.4839,63.0849],[-164.3729,63.0646],[-164.35,63.0187],[-164.4787,63.0286],[-164.687,63.0182],[-164.7828,62.9474],[-164.862,62.8224],[-164.8167,62.7958],[-164.6922,62.787],[-164.6354,62.7604],[-164.5021,62.7729],[-164.45,62.7438],[-164.4984,62.7245],[-164.6193,62.6464],[-164.7047,62.6057],[-164.8349,62.5766],[-164.8458,62.5438],[-164.7776,62.5349],[-164.7651,62.5005],[-164.6521,62.4521],[-164.5755,62.4557],[-164.5578,62.4255],[-164.6417,62.4188],[-164.7479,62.4646],[-164.8557,62.4672],[-164.8583,62.5333],[-164.9521,62.5271],[-165.0229,62.5396],[-165.0974,62.5203],[-165.2349,62.4578],[-165.3297,62.363],[-165.6005,62.188],[-165.7057,62.1411],[-165.7599,62.0807],[-165.7703,62.0026],[-165.7391,61.9193],[-165.637,61.8505],[-165.8021,61.825],[-165.9187,61.8271],[-166.0995,61.8099],[-166.0099,61.7214],[-165.9208,61.6979],[-165.7375,61.6875],[-165.7271,61.6646],[-165.6479,61.6854],[-165.6229,61.7167],[-165.5229,61.7062],[-165.6141,61.6641],[-165.7396,61.6583],[-165.8125,61.6833],[-165.8828,61.662],[-166.0479,61.6479],[-166.0667,61.6271],[-166.1516,61.6422],[-166.1849,61.5974],[-166.1411,61.5047],[-166.0333,61.5396],[-165.9354,61.5458],[-165.7943,61.5036],[-165.7479,61.425],[-165.7026,61.4411],[-165.7063,61.3875],[-165.8021,61.4479],[-165.9287,61.4453],[-165.9578,61.4172],[-165.8682,61.3193],[-165.7318,61.3047],[-165.6641,61.2755],[-165.6391,61.1318],[-165.5396,61.0896],[-165.3958,61.0771],[-165.3391,61.1516],[-165.3932,61.1984],[-165.2896,61.2646],[-165.237,61.2734],[-165.213,61.3068],[-165.2912,61.3151],[-165.2828,61.3516],[-165.1797,61.363],[-165.2047,61.3349],[-165.2208,61.2438],[-165.2974,61.2474],[-165.362,61.1901],[-165.2713,61.1703],[-165.2417,61.1437],[-165.1771,61.1375],[-165.1786,61.1089],[-165.0083,61.0479],[-165,61.0896],[-164.9453,61.1016],[-164.9453,60.9922],[-164.9729,61.0208],[-165.0203,61.0026],[-165.1271,61.0125],[-165.1891,60.9547],[-165.1417,60.925],[-165.0437,60.9083],[-164.9703,60.9453],[-164.8422,60.937],[-164.7979,60.8958],[-164.7521,60.9229],[-164.6062,60.9354],[-164.5693,60.9286],[-164.587,60.8651],[-164.5396,60.8479],[-164.3687,60.875],[-164.2479,60.8604],[-164.15,60.8833],[-164.088,60.8776],[-164.15,60.9396],[-164.1099,60.987],[-163.9901,61.0453],[-163.9766,60.9818],[-163.9234,60.9516],[-163.9672,60.8943],[-164.0609,60.8755],[-163.9854,60.8625],[-163.9354,60.8771],[-163.8776,60.9276],[-163.9396,60.9813],[-163.9005,61.0359],[-163.95,61.0958],[-163.875,61.0625],[-163.8911,61.0276],[-163.8229,61.0104],[-163.8443,61.0911],[-163.9286,61.1193],[-163.9141,61.1911],[-163.7729,61.2292],[-163.7229,61.1958],[-163.5562,61.2396],[-163.513,61.2109],[-163.6729,61.1833],[-163.7042,61.1479],[-163.7547,61.1453],[-163.7464,61.1005],[-163.8057,61.0547],[-163.7401,61.0411],[-163.737,60.988],[-163.6526,60.9891],[-163.7088,60.9516],[-163.6771,60.925],[-163.5578,60.913],[-163.5771,60.8812],[-163.7187,60.8646],[-163.6521,60.8292],[-163.6458,60.8604],[-163.4479,60.8917],[-163.3734,60.8578],[-163.3479,60.8125],[-163.2776,60.7964],[-163.462,60.7547],[-163.4089,60.7224],[-163.4792,60.6396],[-163.5354,60.6292],[-163.6583,60.5812],[-163.7932,60.5797],[-163.8203,60.6401],[-163.7917,60.7542],[-163.8562,60.7542],[-163.9125,60.7854],[-164.0161,60.7641],[-164.1026,60.6589],[-164.2604,60.6437],[-164.3729,60.5521],[-164.3818,60.5776],[-164.2953,60.6661],[-164.2104,60.6792],[-164.2646,60.7292],[-164.2693,60.7891],[-164.3188,60.7833],[-164.4359,60.8182],[-164.6849,60.8234],[-164.6911,60.862],[-164.638,60.9016],[-164.725,60.8979],[-164.8479,60.85],[-164.9292,60.9208],[-164.9599,60.8953],[-164.8714,60.8536],[-164.8776,60.812],[-165.0021,60.7854],[-165.0161,60.7484],[-164.963,60.7266],[-164.9901,60.6984],[-165.0562,60.6875],[-165.1714,60.6234],[-165.2453,60.6099],[-165.275,60.575],[-165.3766,60.5745],[-165.4182,60.5495],[-165.3703,60.5068],[-165.2646,60.4917],[-165.1875,60.4979],[-165.0479,60.5458],[-164.9568,60.5286],[-165.0005,60.4755],[-165.1391,60.4422],[-165.0141,60.3609],[-164.8646,60.3063],[-164.7063,60.2938],[-164.6755,60.3089],[-164.6516,60.2505],[-164.4979,60.175],[-164.3828,60.0776],[-164.3432,60.0568],[-164.1938,60.0271],[-164.1257,59.9727],[-164.2005,59.9588],[-164.1983,59.9151],[-164.1408,59.8498],[-164.0052,59.8144],[-163.8726,59.8009],[-163.681,59.7976],[-163.4308,59.812],[-163.1472,59.8478],[-162.9984,59.8869],[-162.913,59.9232],[-162.7842,59.9428],[-162.7333,59.9719],[-162.8141,60.0297],[-162.7734,60.0693],[-162.7359,60.0432],[-162.738,59.9999],[-162.641,59.974],[-162.5154,59.9893],[-162.4797,60.0318],[-162.5036,60.113],[-162.4505,60.1828],[-162.5599,60.2193],[-162.5443,60.2776],[-162.4854,60.3667],[-162.413,60.3755],[-162.3755,60.4651],[-162.3234,60.513],[-162.2807,60.5953],[-162.2208,60.6333],[-162.034,60.6646],[-162.2141,60.5786],[-162.2172,60.5089],[-162.3016,60.4474],[-162.3026,60.388],[-162.3292,60.3583],[-162.4578,60.2953],[-162.3516,60.238],[-162.262,60.1693],[-162.3661,60.1589],[-162.2646,60.0583],[-162.2661,60.1203],[-162.1792,60.1375],[-162.2349,60.088],[-162.1889,59.999],[-162.0814,59.9365],[-162.088,59.8868],[-161.9655,59.7998],[-161.8784,59.6948],[-161.8681,59.635],[-161.7081,59.5],[-161.7365,59.4698],[-161.8001,59.4715],[-161.8403,59.4158],[-161.9588,59.3722],[-161.9604,59.2433],[-162.0188,59.2287],[-161.975,59.1404],[-161.8869,59.0719],[-161.7885,58.9682],[-161.7891,58.8917],[-161.7583,58.7966],[-161.8027,58.7402],[-161.8671,58.7145],[-161.8353,58.6785],[-161.9481,58.6505],[-161.995,58.6822],[-162.1709,58.6513],[-162.0841,58.6257],[-161.8223,58.6291],[-161.7745,58.6],[-161.7632,58.55],[-161.7123,58.553],[-161.6319,58.5985],[-161.5479,58.6064],[-161.5189,58.6315],[-161.3766,58.667],[-161.3659,58.7191],[-161.2903,58.7719],[-161.1792,58.7844],[-161.0017,58.8486],[-160.9632,58.8768],[-160.8651,58.8799],[-160.8252,58.8447],[-160.778,58.8922],[-160.6365,58.963],[-160.3585,59.0738],[-160.2808,59.0225],[-160.256,58.9868],[-160.33,58.9536],[-160.2647,58.9443],[-160.2487,58.8906],[-160.1598,58.9266],[-160.1602,58.863],[-160.0243,58.8852],[-159.9727,58.8189],[-159.9048,58.7683],[-159.802,58.8027],[-159.7961,58.8523],[-159.7439,58.8939],[-159.7362,58.9305],[-159.6228,58.9366],[-159.5906,58.9041],[-159.6473,58.8414],[-159.4973,58.8189],[-159.3875,58.7578],[-159.3176,58.6961],[-159.2084,58.5731],[-159.0589,58.4212],[-158.9013,58.3908],[-158.8118,58.4047],[-158.7018,58.4868],[-158.7513,58.4954],[-158.7757,58.5561],[-158.8369,58.6251],[-158.8805,58.7284],[-158.8039,58.736],[-158.7746,58.7751],[-158.7977,58.8151],[-158.7822,58.8824],[-158.7217,58.8734],[-158.6254,58.9117],[-158.5182,59.0352],[-158.407,59.0646],[-158.3197,59.0476],[-158.42,59.023],[-158.4436,58.9703],[-158.4928,58.952],[-158.4888,58.9176],[-158.5484,58.7923],[-158.4413,58.775],[-158.3695,58.7454],[-158.3141,58.6461],[-158.2212,58.6146],[-158.0872,58.6202],[-157.8141,58.6888],[-157.7142,58.7265],[-157.5443,58.7592],[-157.3156,58.8351],[-157.211,58.8421],[-157.0952,58.8756],[-157.0375,58.9161],[-157.0165,58.9677],[-156.9232,58.9923],[-157.0194,58.8719],[-157.0044,58.8224],[-157.0683,58.769],[-157.0935,58.704],[-157.2345,58.6322],[-157.3199,58.5593],[-157.3834,58.522],[-157.472,58.4933],[-157.5424,58.3825],[-157.5444,58.2781],[-157.4479,58.2092],[-157.3806,58.2179],[-157.437,58.1662],[-157.529,58.1654],[-157.5874,58.1275],[-157.6279,57.9741],[-157.6651,57.7935],[-157.7012,57.7301],[-157.7131,57.6363],[-157.6965,57.6124],[-157.6049,57.6064],[-157.5773,57.5147],[-157.6386,57.4965],[-157.6959,57.5519],[-157.7413,57.5553],[-157.9276,57.474],[-158.0017,57.408],[-158.0903,57.3583],[-158.2571,57.3126],[-158.3312,57.2806],[-158.5435,57.1295],[-158.6789,57.0053],[-158.6747,56.8567],[-158.6523,56.8153],[-158.7955,56.7801],[-158.9313,56.8181],[-158.9484,56.8588],[-159.0537,56.8006],[-159.2885,56.7125],[-159.3997,56.6871],[-159.5476,56.6228],[-159.818,56.5391],[-160.0419,56.4245],[-160.154,56.3964],[-160.255,56.3237],[-160.3845,56.2548],[-160.4559,56.1404],[-160.4528,56.1209],[-160.5223,56.0391],[-160.5411,55.9922],[-160.5229,55.943],[-160.4233,55.9106],[-160.3189,55.8603],[-160.256,55.7716],[-160.3727,55.7784],[-160.4102,55.8041],[-160.4552,55.7832],[-160.4582,55.8367],[-160.4905,55.8603],[-160.6318,55.855],[-160.7831,55.8831],[-160.7485,55.8169],[-160.757,55.7882],[-160.6516,55.7345],[-160.7529,55.7499],[-160.8015,55.7329],[-160.8927,55.8045],[-160.9439,55.8145],[-160.9463,55.85],[-161.0184,55.9046],[-160.9631,55.9417],[-160.8913,55.9507],[-160.8734,56],[-161.0517,55.9416],[-161.0977,55.9592],[-161.3246,55.9567],[-161.2636,55.9835],[-161.5459,55.9389],[-161.8046,55.8879],[-161.9665,55.7999],[-162.0389,55.7883],[-162.1221,55.7396],[-162.2556,55.6891],[-162.3725,55.5891],[-162.5114,55.4925],[-162.6259,55.4361],[-162.5049,55.4597],[-162.5197,55.4205],[-162.4862,55.3767],[-162.5803,55.3473],[-162.6432,55.3687],[-162.7104,55.3187],[-162.8093,55.3015],[-162.8651,55.1811],[-163.0439,55.1682],[-163.1652,55.1712],[-163.2982,55.1087],[-163.279,55.0362],[-163.2919,54.9664],[-163.2243,54.9238],[-163.3329,54.9467],[-163.3163,54.8769],[-163.3879,54.8489],[-163.3451,54.8001],[-163.2396,54.8277],[-163.1262,54.9037],[-163.0305,54.9436],[-163.0478,54.9697],[-163.2078,55.0228],[-163.2265,55.0758],[-163.1938,55.1261],[-163.1032,55.1192],[-162.9969,55.0745],[-162.9463,55.0228],[-162.9615,54.9945],[-162.9151,54.9475],[-162.832,54.9204],[-162.7062,54.9567],[-162.6528,55.0163],[-162.5593,54.9513],[-162.5812,55.0345],[-162.623,55.0629],[-162.646,55.196],[-162.6917,55.1913],[-162.7173,55.2379],[-162.6655,55.2909],[-162.5064,55.2397],[-162.4939,55.1695],[-162.4035,55.1147],[-162.5206,55.1143],[-162.5017,55.0733],[-162.4138,55.0325],[-162.3339,55.0393],[-162.2209,55.0258],[-162.1885,55.0603],[-162.229,55.1037],[-162.1747,55.1507],[-162.1006,55.1552],[-162.1227,55.104],[-162.0497,55.0697],[-161.9562,55.1041],[-161.9614,55.1582],[-162.0296,55.1714],[-162.001,55.2409],[-161.9015,55.2437],[-161.817,55.2965],[-161.6815,55.4076],[-161.7033,55.5099],[-161.6338,55.5601],[-161.5955,55.6091],[-161.4965,55.6294],[-161.3921,55.6269],[-161.3552,55.5871],[-161.4704,55.4797],[-161.4767,55.423],[-161.5081,55.3791],[-161.4763,55.3573],[-161.32,55.3822],[-161.318,55.3591],[-161.2391,55.3547],[-160.9878,55.4447],[-160.9445,55.5085],[-160.8428,55.5225],[-160.8329,55.4708],[-160.79,55.4549],[-160.663,55.4618],[-160.65,55.5129],[-160.7458,55.5243],[-160.7239,55.5561],[-160.6627,55.5436],[-160.5949,55.5728],[-160.5306,55.4757],[-160.4546,55.5099],[-160.4415,55.5655],[-160.3552,55.6149],[-160.4116,55.6589],[-160.2746,55.6335],[-160.2466,55.6579],[-160.1221,55.6615],[-160.135,55.7061],[-160.0495,55.693],[-160.0154,55.7155],[-160.0483,55.763],[-159.9486,55.8158],[-159.8943,55.7839],[-159.8408,55.8003],[-159.8326,55.8482],[-159.7058,55.8449],[-159.6225,55.8199],[-159.6602,55.7543],[-159.6551,55.7148],[-159.6857,55.651],[-159.6287,55.618],[-159.7016,55.6054],[-159.7085,55.5674],[-159.6272,55.5794],[-159.5322,55.6465],[-159.5368,55.7191],[-159.4893,55.7627],[-159.5238,55.884],[-159.4529,55.8883],[-159.4541,55.8095],[-159.404,55.7873],[-159.3941,55.8549],[-159.2602,55.8909],[-159.1688,55.891],[-159.065,55.9181],[-159.0038,55.8871],[-158.9884,55.9263],[-158.907,55.9267],[-158.8342,56.0159],[-158.7958,55.9872],[-158.7293,56.0089],[-158.7242,55.9508],[-158.6342,55.9807],[-158.6811,56.1049],[-158.6032,56.125],[-158.5791,56.0419],[-158.5049,55.9787],[-158.468,56.0239],[-158.4894,56.0487],[-158.4395,56.106],[-158.3948,56.0883],[-158.3372,56.1548],[-158.1904,56.1923],[-158.181,56.2338],[-158.2445,56.1981],[-158.3711,56.2155],[-158.2117,56.2715],[-158.3471,56.3213],[-158.4531,56.2947],[-158.4357,56.3401],[-158.5435,56.3077],[-158.5661,56.2491],[-158.6382,56.2596],[-158.6023,56.3131],[-158.5134,56.3493],[-158.5117,56.3707],[-158.4057,56.4512],[-158.3311,56.4821],[-158.1839,56.4546],[-158.1328,56.4606],[-158.1443,56.5175],[-158.0297,56.5077],[-157.8876,56.4681],[-157.8248,56.4978],[-157.8195,56.5561],[-157.909,56.571],[-158.1281,56.5269],[-158.1304,56.5508],[-158.0289,56.6013],[-157.9762,56.5993],[-157.9438,56.6347],[-157.7713,56.6797],[-157.7387,56.6739],[-157.6824,56.6073],[-157.5846,56.6211],[-157.4624,56.6235],[-157.4798,56.6716],[-157.555,56.6782],[-157.5674,56.7055],[-157.5113,56.7622],[-157.405,56.7731],[-157.4747,56.8238],[-157.4381,56.8589],[-157.386,56.862],[-157.2033,56.7642],[-157.1398,56.8042],[-157.1872,56.8547],[-157.0907,56.8184],[-157.0358,56.8889],[-156.936,56.9156],[-156.8929,56.9638],[-156.8343,56.8954],[-156.8089,56.9025],[-156.7866,56.9709],[-156.7279,57.0382],[-156.6754,56.9938],[-156.5838,56.9871],[-156.5887,57.0365],[-156.5169,57.0491],[-156.4661,57.123],[-156.4147,57.1257],[-156.3389,57.1761],[-156.39,57.202],[-156.3829,57.2522],[-156.3224,57.2898],[-156.3564,57.3224],[-156.5577,57.288],[-156.5415,57.323],[-156.4523,57.3454],[-156.3342,57.4189],[-156.2247,57.4439],[-156.1835,57.4771],[-156.1208,57.4717],[-156.1014,57.433],[-156.0255,57.4335],[-156.056,57.5171],[-156.0191,57.5646],[-155.9342,57.5297],[-155.8353,57.5739],[-155.7959,57.5403],[-155.735,57.5398],[-155.7431,57.6292],[-155.5962,57.6584],[-155.6395,57.704],[-155.6043,57.7807],[-155.5714,57.7891],[-155.4683,57.7441],[-155.4209,57.7447],[-155.3904,57.7125],[-155.3048,57.7233],[-155.3312,57.8263],[-155.236,57.826],[-155.2103,57.8682],[-155.1558,57.8551],[-155.091,57.8727],[-155.0688,57.9042],[-155.1116,57.9442],[-155.0558,57.9503],[-155.0391,58.0201],[-154.8747,58.0278],[-154.8114,57.9999],[-154.7332,58.017],[-154.7184,58.0581],[-154.6523,58.062],[-154.5883,58.0204],[-154.5417,58.0602],[-154.6018,58.1207],[-154.465,58.0816],[-154.4512,58.1814],[-154.4193,58.1302],[-154.3152,58.0923],[-154.3374,58.1599],[-154.2724,58.1305],[-154.2155,58.1384],[-154.2903,58.1774],[-154.2779,58.2017],[-154.178,58.1917],[-154.1517,58.2339],[-154.2079,58.2542],[-154.106,58.2778],[-154.1858,58.3234],[-154.2602,58.2969],[-154.261,58.2736],[-154.3542,58.2501],[-154.3365,58.2845],[-154.1803,58.3594],[-154.0999,58.3432],[-154.0074,58.3752],[-154.0671,58.4271],[-154.0794,58.4789],[-153.9629,58.4862],[-153.9278,58.5205],[-153.901,58.6097],[-153.7614,58.6044],[-153.5943,58.6318],[-153.5644,58.6821],[-153.4551,58.7055],[-153.3945,58.7473],[-153.3559,58.8395],[-153.3125,58.8542],[-153.3361,58.9001],[-153.4074,58.9694],[-153.4844,58.9987],[-153.5463,58.9829],[-153.6286,59.0106],[-153.6996,59.0755],[-153.8071,59.074],[-153.8644,59.0553],[-154.0682,59.0741],[-154.1401,59.0217],[-154.1806,59.0229],[-154.2005,59.0735],[-154.1794,59.1219],[-154.2488,59.1166],[-154.1853,59.1924],[-154.1292,59.1993],[-154.1425,59.2687],[-154.1131,59.3052],[-153.9724,59.3568],[-153.9102,59.4206],[-153.8102,59.4228],[-153.7293,59.4409],[-153.7072,59.4677],[-153.7636,59.5456],[-153.5925,59.5537],[-153.5542,59.5972],[-153.6333,59.6449],[-153.6114,59.6765],[-153.5658,59.6249],[-153.4798,59.6447],[-153.4462,59.6982],[-153.4526,59.7863],[-153.3843,59.7309],[-153.3938,59.6651],[-153.3453,59.6217],[-153.2865,59.6709],[-153.2179,59.635],[-153.1251,59.678],[-153.0592,59.6904],[-152.9938,59.8083],[-153.0038,59.829],[-153.0943,59.8335],[-153.1476,59.8091],[-153.2831,59.8305],[-153.2222,59.8651],[-153.1204,59.8659],[-153.0068,59.8868],[-152.8699,59.8752],[-152.7069,59.9201],[-152.6685,59.983],[-152.6089,60.0068],[-152.5755,60.0828],[-152.6734,60.1641],[-152.8125,60.2125],[-152.8313,60.2333],[-152.6687,60.2],[-152.5625,60.2167],[-152.4745,60.2786],[-152.4187,60.2854],[-152.3703,60.3516],[-152.3042,60.3604],[-152.238,60.3953],[-152.2995,60.413],[-152.3307,60.4766],[-152.25,60.5354],[-152.1792,60.5687],[-152.0922,60.5797],[-152.0557,60.637],[-151.9974,60.6724],[-151.8505,60.7214],[-151.7026,60.7307],[-151.7912,60.8214],[-151.7724,60.8661],[-151.7146,60.8958],[-151.4828,60.9964],[-151.3562,61.0083],[-151.2995,61.0328],[-151.163,61.0464],[-151.0495,61.1599],[-150.9354,61.2],[-150.8542,61.2083],[-150.6938,61.2562],[-150.6646,61.325],[-150.5979,61.3604],[-150.5453,61.4078],[-150.4896,61.3979],[-150.5005,61.4661],[-150.5849,61.4964],[-150.5724,61.5307],[-150.4901,61.5568],[-150.4859,61.587],[-150.5911,61.6339],[-150.6703,61.7005],[-150.7271,61.8],[-150.7578,61.8089],[-150.8276,61.887],[-151.0208,61.9188],[-151.1229,61.975],[-151.1687,61.9896],[-151.113,61.9849],[-150.9495,61.9089],[-150.8396,61.8958],[-150.7297,61.8266],[-150.7021,61.7729],[-150.6891,61.7339],[-150.5807,61.6359],[-150.5437,61.6271],[-150.4901,61.5974],[-150.4729,61.5729],[-150.4276,61.5755],[-150.3849,61.6474],[-150.313,61.6693],[-150.2932,61.7411],[-150.1984,61.7964],[-150.2078,61.8453],[-150.1151,61.9193],[-150.1333,61.9396],[-150.1578,61.9786],[-150.125,62.0604],[-150.0818,62.0953],[-150.1891,62.1682],[-150.1276,62.2161],[-150.1682,62.2495],[-150.1297,62.2755],[-150.1562,62.3354],[-150.1687,62.3542],[-150.1047,62.3057],[-150.137,62.237],[-150.1151,62.2245],[-150.1224,62.1891],[-150.1745,62.1672],[-150.1089,62.1422],[-150.0693,62.1036],[-150.1161,62.0411],[-150.0917,61.9708],[-150.1068,61.8984],[-150.1849,61.8307],[-150.1901,61.7911],[-150.25,61.7625],[-150.2688,61.7167],[-150.313,61.663],[-150.3745,61.6172],[-150.3651,61.5943],[-150.5437,61.5271],[-150.5562,61.4875],[-150.4859,61.4703],[-150.4547,61.4099],[-150.4937,61.3708],[-150.562,61.3391],[-150.5521,61.2958],[-150.4521,61.25],[-150.3062,61.2583],[-150.1167,61.2562],[-149.9812,61.2375],[-149.9193,61.2651],[-149.9182,61.3245],[-149.8771,61.3875],[-149.825,61.3937],[-149.762,61.4453],[-149.5984,61.488],[-149.4687,61.4667],[-149.4062,61.4854],[-149.2688,61.4938],[-149.2146,61.4792],[-149.1604,61.5021],[-149.0333,61.5042],[-148.9354,61.5187],[-148.8188,61.4854],[-148.7172,61.4807],[-148.7495,61.4578],[-148.8661,61.4693],[-148.9354,61.5021],[-148.9958,61.5083],[-149.0896,61.4875],[-149.1562,61.4979],[-149.1938,61.475],[-149.2354,61.4792],[-149.3813,61.4667],[-149.6375,61.3854],[-149.7016,61.3807],[-149.7146,61.3292],[-149.8161,61.312],[-149.8963,61.2234],[-149.975,61.1979],[-150.0188,61.2021],[-150.0682,61.1526],[-149.8359,61.0724],[-149.7328,61.0151],[-149.5917,60.9813],[-149.4917,60.9833],[-149.3609,60.9307],[-149.1766,60.9359],[-149.0776,60.9057],[-149.025,60.85],[-149.0896,60.8958],[-149.1734,60.887],[-149.3771,60.8937],[-149.5625,60.9333],[-149.6479,60.9229],[-149.7458,60.9604],[-149.8437,60.9667],[-149.9271,60.9313],[-150.0917,60.9146],[-150.262,60.9443],[-150.3708,61.0375],[-150.5078,61.0036],[-150.6943,60.9422],[-150.8922,60.8526],[-151.0542,60.7875],[-151.2146,60.7792],[-151.3021,60.7396],[-151.4083,60.7167],[-151.3505,60.6432],[-151.3266,60.5776],[-151.2542,60.5458],[-151.2807,60.5016],[-151.2953,60.3859],[-151.3766,60.3661],[-151.3792,60.2938],[-151.413,60.2151],[-151.4984,60.1547],[-151.6224,60.0891],[-151.6953,60.0349],[-151.7593,59.9185],[-151.8148,59.8705],[-151.8711,59.7676],[-151.8376,59.7204],[-151.6451,59.6473],[-151.4835,59.6386],[-151.4369,59.6701],[-151.3415,59.6862],[-151.0588,59.7969],[-150.9574,59.7859],[-151.1245,59.6957],[-151.206,59.6359],[-151.1974,59.5941],[-151.2816,59.5991],[-151.2712,59.5578],[-151.3654,59.5599],[-151.4544,59.5409],[-151.4901,59.4817],[-151.5611,59.4699],[-151.6361,59.4861],[-151.7088,59.4739],[-151.7067,59.4022],[-151.7469,59.4569],[-151.8925,59.4288],[-151.8951,59.3845],[-151.9941,59.3147],[-151.9818,59.2579],[-151.8719,59.253],[-151.884,59.2139],[-151.7651,59.2242],[-151.7402,59.1573],[-151.5934,59.1629],[-151.5779,59.2077],[-151.5262,59.1955],[-151.4539,59.2373],[-151.4462,59.2743],[-151.3123,59.2117],[-151.3058,59.2469],[-151.1862,59.2048],[-151.1179,59.2199],[-151.1077,59.2468],[-151.2594,59.2932],[-151.2151,59.3106],[-151.0945,59.2694],[-151.0542,59.3042],[-151.0182,59.2115],[-150.9883,59.2399],[-150.9149,59.2512],[-150.8565,59.3581],[-150.7751,59.3747],[-150.7471,59.4243],[-150.6057,59.4293],[-150.5845,59.4952],[-150.6296,59.5414],[-150.53,59.6037],[-150.5179,59.5739],[-150.5768,59.5294],[-150.4866,59.4953],[-150.4383,59.5146],[-150.3277,59.6253],[-150.2516,59.7266],[-150.2701,59.6322],[-150.3609,59.528],[-150.3243,59.4713],[-150.2222,59.5438],[-150.1266,59.5896],[-150.0906,59.65],[-150.039,59.6128],[-149.9222,59.687],[-149.9966,59.7494],[-150.0598,59.7753],[-150.0252,59.7987],[-149.978,59.7698],[-149.92,59.7695],[-149.8239,59.699],[-149.7965,59.6575],[-149.739,59.7139],[-149.8224,59.8347],[-149.7632,59.8204],[-149.7503,59.9411],[-149.6894,59.9469],[-149.661,59.893],[-149.6618,59.7745],[-149.5525,59.7308],[-149.548,59.7824],[-149.5957,59.7662],[-149.6202,59.8365],[-149.569,59.9026],[-149.5242,59.928],[-149.4702,59.9182],[-149.4418,59.9779],[-149.3963,60.0016],[-149.4474,60.0339],[-149.4432,60.1161],[-149.3589,60.1141],[-149.3125,59.9819],[-149.3792,59.9031],[-149.259,59.9229],[-149.2063,60.0083],[-149.1682,60.037],[-149.0339,60.0432],[-149.1312,59.9643],[-149.0787,59.9533],[-149.039,59.9781],[-149.009,59.9462],[-148.9628,59.9721],[-148.8835,59.9252],[-148.8458,59.9242],[-148.7708,59.9768],[-148.6833,59.9219],[-148.6081,59.9285],[-148.5533,59.9697],[-148.5208,60.0229],[-148.456,59.9413],[-148.4103,59.981],[-148.3734,60.0911],[-148.3932,60.1057],[-148.3271,60.1625],[-148.2833,60.1667],[-148.2896,60.1104],[-148.2417,60.1146],[-148.1214,60.1651],[-148.1057,60.2036],[-148.1453,60.2349],[-148.1797,60.163],[-148.2104,60.2583],[-148.3292,60.2125],[-148.3542,60.2813],[-148.3,60.2604],[-148.2088,60.3005],[-148.1161,60.3776],[-148.0068,60.4005],[-147.9672,60.4484],[-148.0521,60.4604],[-147.9714,60.4818],[-147.9734,60.5141],[-148.0672,60.5609],[-148.0818,60.5932],[-148.1516,60.5745],[-148.1682,60.538],[-148.2693,60.487],[-148.3328,60.4724],[-148.3479,60.5042],[-148.4349,60.513],[-148.4542,60.5417],[-148.5745,60.4995],[-148.6896,60.4354],[-148.7146,60.4562],[-148.5974,60.5328],[-148.5229,60.5646],[-148.4542,60.5687],[-148.325,60.5292],[-148.2682,60.5849],[-148.188,60.6099],[-148.2547,60.7026],[-148.2583,60.7562],[-148.3307,60.7036],[-148.3583,60.6542],[-148.4047,60.6651],[-148.3833,60.7542],[-148.512,60.7661],[-148.588,60.6984],[-148.6812,60.6458],[-148.6807,60.7057],[-148.6037,60.7599],[-148.5292,60.7833],[-148.5604,60.8042],[-148.6562,60.775],[-148.7104,60.7875],[-148.6021,60.825],[-148.4333,60.8292],[-148.4063,60.8458],[-148.3068,60.8339],[-148.2797,60.8964],[-148.312,60.9568],[-148.2563,60.9354],[-148.1859,60.9901],[-148.1651,61.0661],[-148.25,61.0542],[-148.3245,61.0266],[-148.3838,60.9776],[-148.3687,61.0417],[-148.2354,61.0875],[-148.1479,61.0979],[-148.0792,61.0062],[-148.0005,61.063],[-147.9807,61.1078],[-147.8505,61.1839],[-147.7224,61.287],[-147.6714,61.2693],[-147.7542,61.2083],[-147.7,61.225],[-147.6338,61.2151],[-147.7578,61.1849],[-147.9057,61.0891],[-147.9943,60.9609],[-148.0104,60.9167],[-147.9229,60.8896],[-147.9099,60.8536],[-147.7792,60.8104],[-147.7995,60.8568],[-147.7672,60.8964],[-147.7958,60.9188],[-147.7208,60.9396],[-147.6667,60.8625],[-147.6047,60.8484],[-147.5943,60.9359],[-147.6167,61.0083],[-147.5568,61.0797],[-147.5599,61.1453],[-147.5104,61.0812],[-147.5412,60.987],[-147.5099,60.9099],[-147.4755,60.9911],[-147.4458,60.8937],[-147.3667,60.8833],[-147.3062,60.9229],[-147.2505,60.9276],[-147.2912,60.9849],[-147.2276,60.9922],[-147.2104,60.9437],[-147.0922,61.013],[-147.0354,60.9917],[-147.0036,61.0203],[-146.9771,60.9667],[-147.0474,60.9422],[-146.9625,60.9313],[-146.863,60.9734],[-146.7667,61.0438],[-146.7021,61.0542],[-146.5979,61.1437],[-146.5708,61.1208],[-146.4646,61.1333],[-146.3042,61.1292],[-146.2354,61.0896],[-146.45,61.0771],[-146.6104,61.0812],[-146.7161,60.9672],[-146.6208,60.9521],[-146.6021,60.9188],[-146.7516,60.9453],[-146.6891,60.8672],[-146.6313,60.8854],[-146.6333,60.8167],[-146.5708,60.8563],[-146.5396,60.8104],[-146.3562,60.8167],[-146.2901,60.838],[-146.2453,60.8786],[-146.1708,60.8458],[-146.2432,60.838],[-146.2312,60.8083],[-146.3313,60.7854],[-146.5474,60.7703],[-146.6714,60.7391],[-146.6536,60.6859],[-146.5354,60.6917],[-146.4896,60.6688],[-146.4187,60.6875],[-146.3057,60.7536],[-146.2979,60.7125],[-146.2349,60.7203],[-146.1854,60.7562],[-146.1568,60.7255],[-146.0693,60.7734],[-146.0568,60.7359],[-146.2172,60.663],[-146.2521,60.6229],[-146.15,60.6312],[-146.025,60.6646],[-145.95,60.6979],[-145.9995,60.6411],[-145.938,60.6255],[-145.8995,60.6745],[-145.8437,60.6104],[-145.6651,60.6547],[-145.6943,60.5922],[-145.7922,60.5193],[-145.9141,60.4891],[-145.8792,60.4458],[-145.7583,60.4646],[-145.6,60.45],[-145.5495,60.4359],[-145.4792,60.3812],[-145.3687,60.3563],[-145.3333,60.3417],[-145.2958,60.3375],[-145.2088,60.3672],[-145.0901,60.438],[-145.0307,60.5099],[-144.9833,60.5354],[-144.8859,60.5485],[-144.8396,60.6188],[-144.7792,60.6292],[-144.7625,60.6792],[-144.7,60.6958],[-144.7042,60.675],[-144.6542,60.6667],[-144.6021,60.7167],[-144.5917,60.7333],[-144.6396,60.6521],[-144.7083,60.6458],[-144.7641,60.6661],[-144.7588,60.6109],[-144.8109,60.563],[-144.8229,60.5146],[-144.7797,60.4953],[-144.7943,60.4547],[-144.9141,60.3578],[-144.9536,60.288],[-144.7667,60.2792],[-144.6771,60.2104],[-144.5562,60.1771],[-144.3729,60.1667],[-144.2937,60.1813],[-144.2891,60.1422],[-144.1083,60.0979],[-144.0453,60.0484],[-144.2125,60.0417],[-144.2479,60.0229],[-144.0292,60.0208],[-143.8899,59.9893],[-143.6479,60.0375],[-143.4687,60.0604],[-143.4292,60.0521],[-143.1083,60.0667],[-143.0375,60.1],[-142.9896,60.0833],[-142.7583,60.1104],[-142.2125,60.0479],[-142.0896,60.025],[-142.0208,60.025],[-141.8854,60.0021],[-141.7502,59.9515],[-141.6046,59.9636],[-141.5308,59.9897],[-141.4297,60],[-141.3693,60.0255],[-141.4479,60.0812],[-141.4521,60.1104],[-141.4271,60.125],[-141.3458,60.0854],[-141.1938,60.1208],[-141.3146,60.0542]]],[[[-153.2523,57.997],[-153.3048,57.9846],[-153.0948,57.8618],[-153.2349,57.8944],[-153.1796,57.7972],[-153.2057,57.7901],[-153.3381,57.8037],[-153.4768,57.8417],[-153.4604,57.7899],[-153.3313,57.7493],[-153.3528,57.7027],[-153.3903,57.7499],[-153.4889,57.7744],[-153.5247,57.6561],[-153.5561,57.7382],[-153.5474,57.7847],[-153.5718,57.8323],[-153.6253,57.8423],[-153.6191,57.8804],[-153.7197,57.8965],[-153.9306,57.8091],[-153.9356,57.7297],[-153.9056,57.7013],[-153.8011,57.6964],[-153.6667,57.665],[-153.5945,57.6292],[-153.6078,57.6008],[-153.6593,57.6401],[-153.8682,57.6502],[-153.8798,57.633],[-153.6942,57.5278],[-153.8487,57.562],[-153.8196,57.5379],[-153.8122,57.4136],[-153.7398,57.3174],[-153.7589,57.3075],[-153.8326,57.3861],[-153.8943,57.4205],[-153.9267,57.5334],[-153.9894,57.5386],[-153.9801,57.621],[-154.0172,57.6483],[-154.2328,57.6633],[-154.2622,57.6419],[-154.3872,57.6139],[-154.4448,57.5733],[-154.5178,57.5766],[-154.5228,57.5367],[-154.63,57.5078],[-154.651,57.4611],[-154.7161,57.4308],[-154.6956,57.3989],[-154.7441,57.3252],[-154.7347,57.2715],[-154.6211,57.2704],[-154.5294,57.1803],[-154.5144,57.0781],[-154.5283,56.9922],[-154.3967,56.9633],[-154.3122,56.9175],[-154.3033,56.8419],[-154.2256,56.8758],[-154.205,56.9292],[-154.1533,56.9489],[-154.1511,57.0019],[-154.1105,57.0447],[-154.1128,57.0728],[-154.0917,57.1006],[-154.1157,57.128],[-154.2939,57.1136],[-154.3789,57.0497],[-154.4361,57.0544],[-154.4839,57.0964],[-154.4744,57.1242],[-154.3911,57.1233],[-154.3383,57.1503],[-154.2572,57.1438],[-154.2289,57.1614],[-154.1306,57.1456],[-154.0767,57.122],[-154.013,57.1289],[-153.9861,57.1082],[-154.055,57.0908],[-154.1078,57.0569],[-154.0972,57.0336],[-154.1417,56.9972],[-154.0744,56.9703],[-153.9764,57.0566],[-153.8818,57.1171],[-153.8033,57.1125],[-153.9209,57.0629],[-153.975,56.958],[-153.8595,56.9833],[-153.844,56.945],[-153.9799,56.8977],[-154.0089,56.86],[-154.0806,56.8406],[-154.1506,56.7469],[-154.0556,56.7631],[-153.9767,56.7434],[-153.8985,56.7667],[-153.8426,56.8329],[-153.7583,56.8383],[-153.6698,56.9309],[-153.6013,56.933],[-153.5406,57.0009],[-153.6388,57.0157],[-153.5943,57.0563],[-153.7026,57.057],[-153.6611,57.0842],[-153.573,57.0927],[-153.4994,57.0651],[-153.486,57.14],[-153.4498,57.1119],[-153.3419,57.1898],[-153.2185,57.2175],[-153.0797,57.2123],[-152.9507,57.2491],[-153.015,57.3014],[-153.0985,57.287],[-153.1928,57.3019],[-152.9974,57.3446],[-152.8593,57.3044],[-152.8187,57.2645],[-152.7432,57.3129],[-152.7069,57.2759],[-152.6267,57.3286],[-152.626,57.4058],[-152.7157,57.4185],[-152.7627,57.4583],[-152.8164,57.4717],[-152.9326,57.4641],[-152.8832,57.5117],[-152.8011,57.4943],[-152.7389,57.5058],[-152.6636,57.4632],[-152.6245,57.4764],[-152.5888,57.444],[-152.5173,57.4336],[-152.4891,57.4683],[-152.3504,57.4213],[-152.2889,57.5211],[-152.1668,57.5868],[-152.1544,57.6205],[-152.2689,57.6283],[-152.4695,57.6014],[-152.4004,57.6876],[-152.492,57.6457],[-152.4638,57.7251],[-152.5327,57.6951],[-152.5581,57.719],[-152.4801,57.744],[-152.4485,57.7782],[-152.4009,57.7757],[-152.3467,57.835],[-152.4212,57.8138],[-152.4004,57.8557],[-152.5269,57.9104],[-152.6172,57.9208],[-152.7102,57.8644],[-152.7285,57.8189],[-152.785,57.8587],[-152.8458,57.829],[-152.8438,57.729],[-152.908,57.7557],[-152.9123,57.8195],[-152.8612,57.8791],[-152.7971,57.8995],[-152.8497,57.9291],[-152.9995,57.9471],[-152.9976,57.9188],[-153.1989,57.9682],[-153.2523,57.997]]],[[[-133.6022,56.3561],[-133.6028,56.3241],[-133.6639,56.3195],[-133.6318,56.2206],[-133.6065,56.1902],[-133.4683,56.1764],[-133.4621,56.1401],[-133.526,56.1179],[-133.6245,56.1424],[-133.6361,56.0859],[-133.7022,56.0669],[-133.8092,55.9668],[-133.7939,55.9164],[-133.6961,55.9128],[-133.6272,55.9678],[-133.5385,55.981],[-133.3783,56.0328],[-133.365,55.9886],[-133.4311,55.9559],[-133.4422,55.9133],[-133.3844,55.8947],[-133.3861,55.9539],[-133.2878,56.0156],[-133.285,55.9564],[-133.2399,55.8833],[-133.1633,55.8456],[-133.1678,55.8095],[-133.223,55.7888],[-133.2583,55.7464],[-133.314,55.7599],[-133.3423,55.7063],[-133.3911,55.7287],[-133.4078,55.6477],[-133.3592,55.6069],[-133.2716,55.5756],[-133.1819,55.5809],[-133.1378,55.613],[-133.0855,55.6109],[-133.0817,55.5603],[-133.156,55.4766],[-133.0725,55.4473],[-133.0511,55.4002],[-132.9752,55.3661],[-133.0039,55.3431],[-133.1027,55.3753],[-133.2255,55.3828],[-133.2795,55.3511],[-133.235,55.2842],[-133.1411,55.2852],[-133.0897,55.2696],[-132.9585,55.2767],[-133.0395,55.2342],[-133.0161,55.2031],[-132.8806,55.2314],[-132.8353,55.2693],[-132.8267,55.2019],[-132.7094,55.148],[-132.6635,55.1393],[-132.629,55.1723],[-132.6577,55.2349],[-132.5822,55.1719],[-132.6292,55.1109],[-132.525,55.1161],[-132.5575,55.0765],[-132.5211,55.0394],[-132.6163,54.9699],[-132.5294,54.9327],[-132.4695,54.98],[-132.4927,54.8952],[-132.4478,54.9039],[-132.4111,54.9678],[-132.3605,54.917],[-132.3755,54.8935],[-132.3072,54.8392],[-132.3656,54.8186],[-132.3078,54.7803],[-132.31,54.7217],[-132.2308,54.718],[-132.165,54.6908],[-132.0896,54.7012],[-132.0178,54.69],[-131.9982,54.7297],[-132.0182,54.7848],[-131.9633,54.7831],[-131.9728,54.8489],[-132.054,54.8928],[-131.9789,54.8983],[-131.9656,54.9528],[-132.0305,55.0332],[-132.1306,54.9964],[-132.2056,55.0033],[-132.0928,55.0406],[-132.076,55.0797],[-131.9944,55.1128],[-132.0367,55.1431],[-131.9755,55.1836],[-131.9922,55.2583],[-132.0283,55.2798],[-132.1103,55.1989],[-132.2273,55.2207],[-132.0939,55.2667],[-132.1463,55.3377],[-132.205,55.3628],[-132.2595,55.4171],[-132.3626,55.4077],[-132.4111,55.4203],[-132.3189,55.4703],[-132.3972,55.4742],[-132.4122,55.5155],[-132.4883,55.4964],[-132.5854,55.4986],[-132.5356,55.5603],[-132.5387,55.6084],[-132.4217,55.5395],[-132.2305,55.4843],[-132.1761,55.4506],[-132.1822,55.5059],[-132.3043,55.5599],[-132.3472,55.6009],[-132.3737,55.6609],[-132.4958,55.6594],[-132.4444,55.7201],[-132.4911,55.7545],[-132.4861,55.7967],[-132.6164,55.9083],[-132.715,55.9584],[-132.7346,55.9842],[-132.8272,56.0228],[-132.9675,56.0281],[-133.0119,56.0557],[-133.0779,56.0429],[-133.1222,56.0937],[-133.0766,56.1111],[-133.0379,56.1827],[-133.0739,56.2334],[-133.1239,56.2601],[-133.1502,56.3069],[-133.2032,56.3351],[-133.3071,56.3218],[-133.3573,56.3401],[-133.4156,56.3269],[-133.6022,56.3561]]],[[[-135.8933,57.9978],[-135.7797,57.9555],[-135.7076,57.9421],[-135.5022,57.8764],[-135.4137,57.8591],[-135.3158,57.807],[-135.2025,57.7765],[-135.0202,57.7798],[-134.9578,57.8167],[-135.0741,57.8783],[-135.1572,57.9],[-135.141,57.924],[-134.9995,57.8892],[-134.9226,57.9232],[-134.9142,57.9763],[-134.9527,58.04],[-135.1087,58.0607],[-135.1161,58.0914],[-135.275,58.0975],[-135.4063,58.1442],[-135.4672,58.1311],[-135.4878,58.0858],[-135.5576,58.0449],[-135.5976,57.9892],[-135.6433,57.9661],[-135.7452,57.992],[-135.637,57.9957],[-135.7133,58.0594],[-135.626,58.049],[-135.5184,58.1268],[-135.5277,58.1876],[-135.6496,58.2291],[-135.7322,58.2386],[-135.7797,58.2842],[-135.825,58.2827],[-136.0056,58.1881],[-136.1404,58.2256],[-136.2027,58.1773],[-136.2029,58.1453],[-136.2957,58.2232],[-136.354,58.2238],[-136.3201,58.1551],[-136.4437,58.1252],[-136.4386,58.0952],[-136.2495,57.9824],[-136.1104,57.8704],[-136.272,57.9688],[-136.3539,58.0028],[-136.3611,57.9339],[-136.4322,57.8431],[-136.2951,57.7629],[-136.2589,57.7773],[-136.2144,57.7411],[-136.1096,57.6911],[-136.1621,57.6423],[-136.0756,57.5995],[-135.9686,57.5291],[-135.9228,57.5245],[-135.8178,57.445],[-136,57.5295],[-136.0317,57.5219],[-135.9683,57.4633],[-135.9144,57.4475],[-135.84,57.3892],[-135.713,57.3664],[-135.6755,57.4069],[-135.6201,57.4119],[-135.5556,57.4527],[-135.5811,57.5177],[-135.5705,57.5955],[-135.7056,57.6589],[-135.7283,57.72],[-135.6263,57.7015],[-135.5337,57.6521],[-135.2485,57.5484],[-135.1286,57.4971],[-135.0886,57.4655],[-134.9818,57.4573],[-134.8706,57.4647],[-134.8334,57.4873],[-134.8622,57.5478],[-134.85,57.5805],[-134.9229,57.6779],[-134.9288,57.7571],[-135.0216,57.7439],[-135.1106,57.76],[-135.2361,57.7072],[-135.2444,57.7322],[-135.3271,57.7472],[-135.3774,57.8013],[-135.5178,57.8431],[-135.5769,57.8838],[-135.7894,57.9411],[-135.8933,57.9978]]],[[[-171.6536,63.7734],[-171.7068,63.7464],[-171.8391,63.5516],[-171.8432,63.4859],[-171.8167,63.4313],[-171.7312,63.3667],[-171.6604,63.3563],[-171.5458,63.3187],[-171.4333,63.3083],[-171.2964,63.3526],[-171.2833,63.3833],[-171.1917,63.3958],[-171.0604,63.4333],[-170.9458,63.4354],[-170.8521,63.4562],[-170.7833,63.4083],[-170.6797,63.4026],[-170.6297,63.3818],[-170.5849,63.3964],[-170.3526,63.3141],[-170.3167,63.2875],[-170.2375,63.2792],[-170.2245,63.188],[-170.1021,63.1896],[-170.0042,63.1437],[-169.9104,63.1458],[-169.7583,63.0812],[-169.7109,63.0109],[-169.7708,63.0083],[-169.7542,62.9583],[-169.6375,62.9375],[-169.6172,62.9672],[-169.5318,62.9776],[-169.5771,63.0521],[-169.4891,63.0974],[-169.4563,63.0958],[-169.3745,63.1557],[-169.2125,63.2],[-169.0667,63.1979],[-168.9521,63.1604],[-168.8792,63.1604],[-168.7214,63.2318],[-168.737,63.263],[-168.7,63.3],[-168.8203,63.3026],[-168.8813,63.3292],[-169.0042,63.3417],[-169.2563,63.3417],[-169.3938,63.3563],[-169.475,63.3438],[-169.5578,63.3609],[-169.5693,63.3995],[-169.6521,63.4292],[-169.8229,63.4292],[-169.9375,63.4688],[-170.0021,63.4667],[-170.0641,63.488],[-170.1062,63.6146],[-170.1458,63.6146],[-170.2896,63.6875],[-170.4167,63.6854],[-170.4771,63.6958],[-170.5359,63.6672],[-170.6375,63.6688],[-170.7307,63.6391],[-170.8932,63.5714],[-170.9854,63.5646],[-171.1104,63.5875],[-171.175,63.5875],[-171.2271,63.6125],[-171.4995,63.6005],[-171.5172,63.6578],[-171.65,63.7062],[-171.6536,63.7734]]],[[[-134.1774,58.156],[-134.3336,58.1428],[-134.4486,58.1739],[-134.538,58.1824],[-134.6926,58.1596],[-134.7094,58.2282],[-134.8047,58.3218],[-134.8781,58.3574],[-134.887,58.3218],[-134.9527,58.4091],[-134.9704,58.3698],[-134.957,58.31],[-134.8959,58.1916],[-134.866,58.1814],[-134.7709,58.0873],[-134.8099,58.0452],[-134.7056,57.8317],[-134.7309,57.7217],[-134.6778,57.6113],[-134.6118,57.5624],[-134.5797,57.4765],[-134.4686,57.3843],[-134.4878,57.3725],[-134.5808,57.401],[-134.5807,57.3444],[-134.5098,57.3175],[-134.57,57.305],[-134.6539,57.2233],[-134.6067,57.1528],[-134.6378,57.1076],[-134.6004,57.0335],[-134.4926,57.0278],[-134.4804,57.0497],[-134.3745,57.0919],[-134.281,57.1579],[-134.1557,57.2075],[-134.1486,57.2636],[-134.0956,57.2709],[-134.1606,57.3333],[-134.1744,57.3911],[-134.1078,57.3213],[-134.0861,57.3614],[-133.9808,57.3042],[-133.8624,57.3677],[-133.9189,57.4437],[-133.9688,57.4499],[-134.0889,57.495],[-134,57.4947],[-133.9137,57.4715],[-133.9464,57.5673],[-133.9351,57.6109],[-134.0472,57.6747],[-134.1483,57.7631],[-134.2339,57.8647],[-134.3102,57.8558],[-134.2811,57.9175],[-134.3304,58.0005],[-134.2383,57.9669],[-134.3154,58.0957],[-134.2038,58.0246],[-134.1387,57.9048],[-134.0928,57.8493],[-134.0317,57.8175],[-133.9981,57.7199],[-133.8561,57.6228],[-133.809,57.6276],[-133.8941,57.6847],[-133.8748,57.7321],[-133.9006,57.8064],[-134.0064,57.8933],[-133.9922,57.9122],[-134.0987,57.9826],[-134.099,58.0175],[-134.1724,58.0671],[-134.2041,58.1147],[-134.1774,58.156]]],[[[-166.1057,60.3651],[-166.2729,60.3833],[-166.3755,60.3443],[-166.4375,60.375],[-166.5745,60.3516],[-166.5896,60.3021],[-166.6375,60.325],[-166.7583,60.3042],[-166.8286,60.2693],[-166.7964,60.2391],[-166.862,60.2026],[-166.9479,60.2208],[-167.0542,60.2146],[-167.1083,60.2313],[-167.3146,60.2313],[-167.3917,60.2],[-167.4401,60.2016],[-167.338,60.1266],[-167.3307,60.0651],[-167.2401,60.0578],[-167.1349,60],[-167.0226,60],[-167.0123,59.9832],[-166.8954,59.9591],[-166.7519,59.8929],[-166.675,59.8844],[-166.613,59.8527],[-166.4162,59.8567],[-166.3073,59.8262],[-166.2004,59.7758],[-166.1926,59.7515],[-166.1086,59.7531],[-166.0808,59.7757],[-166.1281,59.8205],[-166.0296,59.867],[-165.9553,59.8817],[-165.8922,59.8717],[-165.7468,59.9084],[-165.7165,59.8943],[-165.5799,59.9127],[-165.5885,59.9502],[-165.6536,59.9961],[-165.7109,60.063],[-165.6672,60.0984],[-165.6839,60.2005],[-165.7255,60.2464],[-165.6776,60.2703],[-165.7854,60.3229],[-165.8729,60.3396],[-165.9995,60.3089],[-166.0854,60.3187],[-166.1057,60.3651]]],[[[-135.4126,57.5579],[-135.4506,57.5575],[-135.551,57.5093],[-135.5329,57.4511],[-135.6008,57.4035],[-135.495,57.3533],[-135.685,57.3725],[-135.5498,57.2378],[-135.4995,57.2561],[-135.3456,57.2473],[-135.4242,57.1687],[-135.4038,57.1011],[-135.3389,57.0472],[-135.2724,57.0319],[-135.3039,56.9847],[-135.3761,56.9891],[-135.3406,56.8772],[-135.3967,56.8801],[-135.3779,56.8164],[-135.3283,56.8283],[-135.3092,56.777],[-135.2666,56.7575],[-135.2911,56.7208],[-135.1912,56.7619],[-135.2244,56.6936],[-135.18,56.6659],[-135.1183,56.72],[-135.0344,56.7697],[-135.0177,56.7437],[-135.0917,56.7195],[-135.1417,56.6786],[-135.1283,56.6064],[-135.0783,56.6008],[-135.0089,56.6367],[-135.0648,56.5407],[-134.9022,56.3506],[-134.8945,56.3148],[-134.8422,56.3222],[-134.8089,56.2414],[-134.7716,56.2177],[-134.7183,56.2245],[-134.6656,56.1673],[-134.6283,56.2643],[-134.6389,56.4769],[-134.6651,56.5004],[-134.6677,56.5921],[-134.6377,56.5395],[-134.6155,56.6361],[-134.6645,56.8073],[-134.7042,56.8391],[-134.6967,56.9003],[-134.7363,56.9693],[-134.7635,57.0687],[-134.7893,57.0846],[-134.7994,57.1633],[-134.8641,57.212],[-134.8628,57.2717],[-134.945,57.2711],[-134.9506,57.3273],[-134.9222,57.3438],[-134.8323,57.2926],[-134.8036,57.3409],[-134.8539,57.4114],[-134.8987,57.4261],[-135.0079,57.411],[-135.1642,57.4454],[-135.225,57.4889],[-135.2749,57.4667],[-135.3214,57.5365],[-135.4126,57.5579]]],[[[-163.7622,55.0478],[-163.8961,55.0364],[-164.0227,54.9723],[-164.1606,54.9601],[-164.2061,54.9283],[-164.3378,54.8953],[-164.4328,54.9328],[-164.5544,54.8878],[-164.5573,54.8539],[-164.6715,54.7003],[-164.7167,54.6561],[-164.8036,54.6421],[-164.9289,54.5997],[-164.94,54.5364],[-164.905,54.5086],[-164.8478,54.42],[-164.7394,54.3931],[-164.655,54.3886],[-164.4494,54.4211],[-164.335,54.4821],[-164.328,54.5403],[-164.2061,54.5959],[-164.0667,54.624],[-163.8189,54.6361],[-163.6774,54.627],[-163.5868,54.6105],[-163.4989,54.6525],[-163.4208,54.6557],[-163.4256,54.72],[-163.3261,54.7459],[-163.285,54.6958],[-163.1134,54.6953],[-163.1572,54.6678],[-163.0601,54.6625],[-163.1,54.7295],[-163.1866,54.7769],[-163.2244,54.7553],[-163.33,54.7531],[-163.4022,54.8397],[-163.395,54.895],[-163.467,54.9851],[-163.5317,55.0147],[-163.5396,55.051],[-163.6594,55.04],[-163.7622,55.0478]]],[[[-133.8678,57.0963],[-134.0083,57.0728],[-134.0411,57.0227],[-133.8922,56.9484],[-133.8328,56.9014],[-133.8983,56.8864],[-133.8729,56.8591],[-133.712,56.7883],[-133.7086,56.6481],[-133.6533,56.5917],[-133.6744,56.52],[-133.645,56.4404],[-133.5089,56.4363],[-133.4324,56.4506],[-133.3883,56.4965],[-133.3263,56.4661],[-133.3,56.48],[-133.2211,56.4481],[-133.1561,56.4583],[-133.0846,56.5273],[-133.0978,56.6011],[-133.1461,56.6367],[-133.2507,56.6519],[-133.2162,56.6972],[-133.2499,56.7498],[-133.3028,56.73],[-133.3427,56.7647],[-133.3011,56.7961],[-133.2462,56.795],[-133.2156,56.7364],[-133.0272,56.6047],[-132.956,56.6278],[-132.9323,56.665],[-132.9967,56.8131],[-132.9406,56.8522],[-132.9923,56.9375],[-133.0755,56.9908],[-133.2065,57.0122],[-133.3222,57.0059],[-133.2637,56.938],[-133.2886,56.925],[-133.3263,56.9929],[-133.5692,57.0439],[-133.5974,57.059],[-133.8678,57.0963]]],[[[-131.2521,55.9681],[-131.459,55.9357],[-131.5053,55.9142],[-131.6,55.8996],[-131.5246,55.8383],[-131.7121,55.8336],[-131.7009,55.8023],[-131.6308,55.7837],[-131.4989,55.7937],[-131.6166,55.7628],[-131.671,55.7701],[-131.7328,55.7289],[-131.6991,55.6965],[-131.7238,55.6345],[-131.6294,55.6011],[-131.7182,55.5168],[-131.8311,55.4486],[-131.7365,55.3978],[-131.6872,55.3505],[-131.5504,55.2939],[-131.4661,55.3751],[-131.54,55.4756],[-131.4928,55.4781],[-131.4661,55.4092],[-131.4119,55.3713],[-131.3253,55.4299],[-131.3312,55.5104],[-131.3691,55.6309],[-131.289,55.4657],[-131.33,55.3797],[-131.4838,55.3],[-131.4528,55.2756],[-131.3555,55.2595],[-131.2835,55.2881],[-131.2542,55.3325],[-131.2928,55.3792],[-131.2521,55.3995],[-131.1904,55.3616],[-131.2405,55.2871],[-131.327,55.2452],[-131.235,55.1968],[-131.185,55.1908],[-131.1477,55.2297],[-131.0643,55.2602],[-131.021,55.3501],[-131.0383,55.4],[-130.9706,55.3928],[-130.9943,55.4738],[-130.9894,55.5373],[-130.9397,55.6198],[-130.9738,55.7058],[-131.0419,55.7668],[-131.0711,55.8278],[-131.2521,55.9681]]],[[[-166.6476,54.0133],[-166.7023,53.9989],[-166.7472,54.0143],[-166.8534,53.976],[-166.8765,53.9877],[-167.0756,53.925],[-167.1529,53.8282],[-167.0095,53.7547],[-166.9611,53.7772],[-166.8317,53.7406],[-166.7122,53.7278],[-166.8332,53.7077],[-166.7889,53.6258],[-166.8961,53.7164],[-167,53.7175],[-167.0543,53.7006],[-167.0722,53.6665],[-167.0093,53.6421],[-167.045,53.6078],[-167.1061,53.6344],[-167.165,53.6014],[-167.1232,53.5437],[-167.0735,53.5101],[-167.161,53.5097],[-167.1618,53.4673],[-167.2845,53.4777],[-167.3281,53.4058],[-167.4718,53.4479],[-167.4985,53.394],[-167.5515,53.4029],[-167.7106,53.3816],[-167.7378,53.3575],[-167.8551,53.3101],[-167.6567,53.2472],[-167.6106,53.2829],[-167.4958,53.279],[-167.4555,53.3211],[-167.3049,53.335],[-167.2968,53.369],[-167.1714,53.3972],[-167.151,53.4186],[-167.0528,53.4317],[-167.0292,53.4642],[-166.9011,53.4336],[-166.8789,53.4725],[-166.8078,53.4342],[-166.7644,53.4436],[-166.7461,53.4864],[-166.7711,53.5269],[-166.6622,53.4836],[-166.5964,53.5338],[-166.5517,53.6236],[-166.425,53.66],[-166.2744,53.6864],[-166.2672,53.7219],[-166.3244,53.7306],[-166.3206,53.7689],[-166.4133,53.7631],[-166.5696,53.7056],[-166.5104,53.7772],[-166.4128,53.8081],[-166.3561,53.8572],[-166.2625,53.8714],[-166.2217,53.9022],[-166.275,53.9831],[-166.3367,53.9461],[-166.4428,53.9514],[-166.4439,53.9033],[-166.5234,53.8733],[-166.6182,53.8684],[-166.6461,53.9286],[-166.5905,53.9638],[-166.6476,54.0133]]],[[[-134.2456,56.9358],[-134.2195,56.9025],[-134.145,56.8753],[-134.1617,56.8489],[-134.2942,56.9078],[-134.3561,56.8942],[-134.3456,56.8347],[-134.4228,56.8411],[-134.3911,56.7564],[-134.4011,56.7261],[-134.2652,56.603],[-134.2672,56.5606],[-134.2028,56.5414],[-134.1389,56.4775],[-134.0956,56.5439],[-134.0444,56.4869],[-134.0744,56.4458],[-134.0567,56.3839],[-134.1172,56.4131],[-134.1533,56.3978],[-134.2378,56.4323],[-134.2336,56.361],[-134.2939,56.3539],[-134.2744,56.3142],[-134.1761,56.3278],[-134.231,56.2758],[-134.2768,56.2656],[-134.2461,56.1756],[-134.2606,56.1333],[-134.2122,56.105],[-134.2222,56.0631],[-134.1694,56.0578],[-134.1373,56.0091],[-134.0911,56.0895],[-134.1039,56.1431],[-134.0613,56.2316],[-134.0263,56.1479],[-134.045,56.1179],[-133.9942,56.0803],[-133.9577,56.0947],[-133.9339,56.1687],[-133.9561,56.2051],[-133.8817,56.2205],[-133.9189,56.2779],[-133.9812,56.2659],[-133.9522,56.3454],[-133.875,56.275],[-133.8311,56.3233],[-133.9077,56.3688],[-133.892,56.4284],[-133.8355,56.4305],[-133.9268,56.5165],[-133.8743,56.5204],[-133.8365,56.6061],[-133.7778,56.5578],[-133.7446,56.5565],[-133.6904,56.6026],[-133.7361,56.6728],[-133.7706,56.6795],[-133.735,56.7783],[-133.8745,56.8109],[-133.8642,56.7518],[-133.935,56.6933],[-133.9272,56.76],[-133.965,56.8244],[-133.9995,56.8236],[-134.0144,56.8736],[-134.1545,56.9195],[-134.2456,56.9358]]],[[[-152.6501,58.4766],[-152.6964,58.4148],[-152.7267,58.4506],[-152.8678,58.3861],[-152.778,58.3671],[-152.784,58.2784],[-152.9802,58.2865],[-153.0449,58.3064],[-153.1044,58.2603],[-153.0038,58.2059],[-152.9294,58.1931],[-152.9154,58.1673],[-153.0343,58.2018],[-153.063,58.1932],[-153.1732,58.2161],[-153.2222,58.1595],[-153.1668,58.1263],[-153.0739,58.1006],[-153.02,58.0453],[-152.9711,58.0403],[-152.8613,57.9924],[-152.7572,58.0122],[-152.7593,58.0558],[-152.7061,58.0494],[-152.6278,58.0769],[-152.6028,58.1594],[-152.56,58.1883],[-152.5694,58.1044],[-152.4367,58.1394],[-152.3967,58.1181],[-152.2714,58.1252],[-152.3572,58.2011],[-152.3199,58.2478],[-152.2683,58.2573],[-152.2203,58.1916],[-152.1394,58.1567],[-152.083,58.1536],[-151.9646,58.2594],[-151.9957,58.3452],[-152.0357,58.2879],[-152.0839,58.3081],[-152.1256,58.2298],[-152.1394,58.2947],[-152.0939,58.3719],[-152.1739,58.3725],[-152.2017,58.3422],[-152.2722,58.3794],[-152.2628,58.4047],[-152.3678,58.3808],[-152.3811,58.3131],[-152.4394,58.3747],[-152.4806,58.3328],[-152.5035,58.4124],[-152.4872,58.4626],[-152.5362,58.458],[-152.6501,58.4766]]],[[[-167.9944,53.5642],[-168.0867,53.5592],[-168.2345,53.5292],[-168.3454,53.4703],[-168.4078,53.4219],[-168.3844,53.3806],[-168.4294,53.3236],[-168.3745,53.3181],[-168.3445,53.2614],[-168.5094,53.2514],[-168.5872,53.2717],[-168.6944,53.2272],[-168.8039,53.1408],[-168.7617,53.0803],[-168.8072,53.0258],[-168.8589,53.0183],[-168.8583,52.9508],[-168.9595,52.9319],[-168.9567,52.8664],[-168.8167,52.9244],[-168.7861,52.9486],[-168.6272,52.9914],[-168.5922,53.0256],[-168.4978,53.0325],[-168.3944,53.1247],[-168.3617,53.1325],[-168.3339,53.2042],[-168.27,53.2422],[-168.1211,53.2761],[-168.0022,53.3172],[-167.8413,53.3861],[-167.8522,53.4495],[-167.7893,53.4883],[-167.7912,53.5211],[-167.937,53.5263],[-167.9944,53.5642]]],[[[-174.1405,52.4133],[-174.2672,52.4022],[-174.3172,52.3808],[-174.3589,52.3133],[-174.4428,52.3272],[-174.4075,52.2886],[-174.2406,52.2756],[-174.2389,52.2419],[-174.36,52.2128],[-174.4633,52.2183],[-174.4761,52.1858],[-174.5945,52.1444],[-174.6361,52.1128],[-174.7839,52.0794],[-174.9067,52.1178],[-174.9933,52.0597],[-175.1289,52.0281],[-175.1422,52.0596],[-175.2161,52.0328],[-175.2589,52.0458],[-175.3011,52.0183],[-175.2127,52.0054],[-175.0159,52.007],[-174.9672,52.0375],[-174.8932,52.0471],[-174.7078,52.0089],[-174.6789,52.0556],[-174.6483,52.0231],[-174.6067,52.0467],[-174.5567,52.035],[-174.5072,52.0706],[-174.4183,52.0375],[-174.3728,52.1028],[-174.3306,52.1203],[-174.2311,52.0919],[-174.2089,52.115],[-174.0783,52.1292],[-174.1978,52.1969],[-174.1783,52.2344],[-174.0607,52.2244],[-173.9928,52.2906],[-174.025,52.3614],[-174.1405,52.4133]]],[[[-132.42,56.3478],[-132.5348,56.3362],[-132.5965,56.2449],[-132.71,56.2227],[-132.7064,56.1088],[-132.6361,56.0317],[-132.5915,56.0829],[-132.4545,56.0625],[-132.4307,56.0286],[-132.4312,55.9535],[-132.352,55.9124],[-132.235,55.925],[-132.2,55.9875],[-132.2156,56.0442],[-132.168,56.0457],[-132.1082,56.1127],[-132.1877,56.1683],[-132.3131,56.1898],[-132.3818,56.2249],[-132.3781,56.3085],[-132.42,56.3478]]],[[[-147.0875,60.3667],[-147.1042,60.3792],[-147.212,60.3453],[-147.1651,60.3068],[-147.212,60.2911],[-147.1859,60.2505],[-147.2474,60.2328],[-147.3578,60.162],[-147.3984,60.113],[-147.6167,60.0104],[-147.7068,59.9923],[-147.8273,59.9036],[-147.7531,59.8786],[-147.8613,59.8721],[-147.9179,59.8335],[-147.8831,59.7651],[-147.7689,59.8042],[-147.6934,59.8011],[-147.6391,59.8491],[-147.525,59.8411],[-147.469,59.8599],[-147.4563,59.9044],[-147.5142,59.9373],[-147.4464,59.9659],[-147.3852,59.9549],[-147.3958,60.0004],[-147.3604,60.0417],[-147.2078,60.1453],[-147.0318,60.2172],[-146.9172,60.288],[-146.9521,60.3063],[-147.0604,60.2667],[-147.0891,60.2891],[-147.0104,60.3438],[-147.0875,60.3354],[-147.0875,60.3667]]],[[[172.7928,53.0039],[172.6533,53.0036],[172.5528,52.9719],[172.4672,52.9308],[172.5128,52.9056],[172.6372,52.9247],[172.6245,52.8653],[172.7456,52.8758],[172.7515,52.8073],[172.8928,52.7864],[172.9061,52.7458],[173.0567,52.8325],[173.1161,52.7844],[173.23,52.8575],[173.3044,52.8258],[173.4072,52.8472],[173.2874,52.8591],[173.3039,52.9242],[173.2117,52.9375],[173.1245,52.9903],[172.9983,52.9922],[172.9423,52.972],[172.9059,52.994],[172.7928,53.0039]]],[[[-133.1011,55.2372],[-133.1241,55.2586],[-133.2217,55.2414],[-133.1913,55.1953],[-133.2395,55.1836],[-133.2122,55.1067],[-133.2111,55.0428],[-133.1466,54.9975],[-133.1613,54.9465],[-133.0744,54.9125],[-133.0028,54.8283],[-132.9235,54.8489],[-132.9724,54.7995],[-132.8867,54.7651],[-132.8372,54.6903],[-132.8183,54.7117],[-132.75,54.6693],[-132.6817,54.6819],[-132.7306,54.7428],[-132.7491,54.8193],[-132.8551,54.8963],[-132.9076,54.913],[-132.9633,54.9889],[-132.9547,55.0161],[-133.0614,55.0787],[-133.0106,55.0867],[-133.0522,55.1342],[-133.1011,55.2372]]],[[[-176.5656,51.9984],[-176.5911,52.0019],[-176.6628,51.9517],[-176.7229,51.9681],[-176.7911,51.9569],[-176.7961,51.9033],[-176.7306,51.8747],[-176.7894,51.8411],[-176.7739,51.8083],[-176.705,51.7881],[-176.8078,51.7792],[-176.8661,51.8267],[-176.9044,51.7708],[-176.8311,51.7458],[-176.8994,51.6967],[-176.9811,51.6653],[-176.9889,51.6064],[-176.9344,51.5914],[-176.8672,51.6828],[-176.8389,51.6814],[-176.8061,51.6086],[-176.7233,51.6247],[-176.715,51.6806],[-176.5806,51.6875],[-176.5083,51.7617],[-176.4695,51.7264],[-176.4267,51.7489],[-176.4272,51.8367],[-176.519,51.8354],[-176.6291,51.8627],[-176.5811,51.9136],[-176.5656,51.9984]]],[[[-132.9322,56.8217],[-132.9794,56.8058],[-132.9396,56.7403],[-132.9344,56.6725],[-132.9011,56.6333],[-132.9455,56.6318],[-132.9751,56.6023],[-132.9583,56.5636],[-132.9521,56.5097],[-132.8149,56.4938],[-132.7243,56.5111],[-132.5425,56.5838],[-132.5932,56.6115],[-132.6183,56.6636],[-132.7368,56.7125],[-132.7653,56.7556],[-132.8293,56.795],[-132.9322,56.8217]]],[[[-132.3683,56.4867],[-132.38,56.4445],[-132.3427,56.4117],[-132.3417,56.3428],[-132.3653,56.2844],[-132.275,56.2069],[-132.1294,56.1653],[-132.0738,56.1158],[-132.024,56.1355],[-132.0161,56.195],[-131.9223,56.2031],[-132.0303,56.3527],[-132.0944,56.3711],[-132.1466,56.3447],[-132.237,56.3971],[-132.2447,56.4408],[-132.3683,56.4867]]],[[[-146.5328,60.4734],[-146.5979,60.4833],[-146.6453,60.4599],[-146.7245,60.387],[-146.7083,60.3417],[-146.6255,60.3589],[-146.5318,60.3297],[-146.6974,60.2786],[-146.6479,60.2354],[-146.6005,60.2401],[-146.3938,60.3271],[-146.1984,60.3464],[-146.1812,60.3708],[-146.1005,60.3734],[-146.0833,60.4021],[-146.1354,60.4313],[-146.3625,60.4063],[-146.3609,60.4724],[-146.4672,60.4547],[-146.5328,60.4734]]],[[[-135.7624,57.3439],[-135.84,57.3406],[-135.825,57.3025],[-135.8739,57.2272],[-135.823,57.2207],[-135.8366,57.1761],[-135.7456,57.1649],[-135.76,57.1163],[-135.843,57.0907],[-135.8501,56.9933],[-135.638,57.0103],[-135.5722,57.0856],[-135.5629,57.1486],[-135.6148,57.1755],[-135.6254,57.2315],[-135.5685,57.2283],[-135.6261,57.3025],[-135.7624,57.3439]]],[[[-132.8955,56.4575],[-133.0005,56.4306],[-133.0663,56.3309],[-132.9594,56.2953],[-132.8706,56.2322],[-132.6572,56.2769],[-132.6833,56.3464],[-132.6222,56.3911],[-132.6325,56.4212],[-132.718,56.4565],[-132.8128,56.4406],[-132.8955,56.4575]]],[[[-160.6967,55.4005],[-160.8022,55.3809],[-160.8417,55.3406],[-160.8611,55.2697],[-160.8555,55.2059],[-160.8083,55.1669],[-160.7547,55.1951],[-160.6833,55.1927],[-160.6144,55.1475],[-160.4969,55.1573],[-160.4932,55.2201],[-160.5699,55.2755],[-160.5786,55.3137],[-160.5281,55.343],[-160.5648,55.3906],[-160.6017,55.3417],[-160.6643,55.3017],[-160.6456,55.3821],[-160.6967,55.4005]]],[[[-178.0833,51.915],[-178.1992,51.908],[-178.2244,51.8617],[-178.095,51.8158],[-178.0372,51.7789],[-177.9611,51.7742],[-177.9517,51.7306],[-178.0496,51.7023],[-178.0998,51.7084],[-178.1144,51.6719],[-178.0461,51.6714],[-178.0007,51.639],[-177.9278,51.6456],[-177.8672,51.6764],[-177.8178,51.7894],[-177.7189,51.815],[-177.6515,51.8166],[-177.6589,51.8489],[-177.735,51.8264],[-177.791,51.8453],[-177.8489,51.8247],[-177.9256,51.8578],[-177.9544,51.9025],[-178.0833,51.915]]],[[[-173.5144,52.1522],[-173.6122,52.1517],[-173.7706,52.1342],[-173.8089,52.0925],[-173.8889,52.1419],[-173.9983,52.1236],[-173.9422,52.0692],[-173.8289,52.0408],[-173.6806,52.0661],[-173.5761,52.0506],[-173.545,52.0272],[-173.4506,52.0469],[-173.1528,52.0592],[-173.0956,52.0794],[-173.1228,52.11],[-173.2361,52.0936],[-173.2983,52.1067],[-173.3533,52.0897],[-173.4406,52.1175],[-173.5442,52.1146],[-173.5144,52.1522]]],[[[-153.2133,57.2039],[-153.2727,57.1892],[-153.3851,57.114],[-153.3926,57.061],[-153.3478,57.0078],[-153.3053,56.9911],[-153.2413,57.0031],[-153.1957,57.0401],[-153.1764,57.0967],[-153.1215,57.0911],[-153.0553,57.1106],[-152.9122,57.1262],[-152.8686,57.1508],[-152.9459,57.1878],[-153.0465,57.1723],[-153.0625,57.1904],[-153.1999,57.1456],[-153.1622,57.1883],[-153.2133,57.2039]]],[[[-177.1433,51.9422],[-177.1822,51.9417],[-177.2296,51.8029],[-177.4189,51.7531],[-177.445,51.76],[-177.5617,51.7208],[-177.64,51.7411],[-177.6928,51.7164],[-177.6737,51.6608],[-177.6167,51.7042],[-177.5883,51.6944],[-177.4678,51.705],[-177.3928,51.7339],[-177.2889,51.6811],[-177.2283,51.7058],[-177.1567,51.7042],[-177.1233,51.7261],[-177.1328,51.83],[-177.065,51.8611],[-177.0556,51.9103],[-177.1433,51.9422]]],[[[-131.553,55.282],[-131.5915,55.2732],[-131.605,55.2142],[-131.5319,55.1495],[-131.585,55.1307],[-131.5982,55.0755],[-131.6485,55.0353],[-131.6028,54.9964],[-131.5121,55.057],[-131.4923,55.0121],[-131.3892,55.0119],[-131.3563,55.0403],[-131.3757,55.0909],[-131.3515,55.1233],[-131.3978,55.1969],[-131.4663,55.2248],[-131.553,55.282]]],[[[-159.8689,55.2844],[-159.9216,55.2488],[-159.9472,55.1693],[-160.0259,55.2033],[-160.065,55.2014],[-159.9761,55.1194],[-160.0072,55.1023],[-160.1055,55.1603],[-160.1928,55.1028],[-160.176,55.0508],[-160.0957,55.0519],[-160.2574,54.9167],[-160.2264,54.8637],[-160.18,54.9033],[-160.1856,54.9342],[-160.1247,54.9458],[-160.1083,54.9869],[-160.013,55.0281],[-159.9356,55.1289],[-159.8696,55.0944],[-159.8111,55.1728],[-159.9031,55.1744],[-159.9006,55.2287],[-159.8417,55.2445],[-159.8689,55.2844]]],[[[-172.9208,60.6042],[-173.0354,60.5625],[-173.0562,60.4938],[-172.9438,60.4813],[-172.8974,60.4484],[-172.7526,60.3849],[-172.737,60.3651],[-172.5688,60.3187],[-172.4687,60.3417],[-172.3437,60.3354],[-172.2917,60.2958],[-172.2214,60.3109],[-172.3161,60.3422],[-172.3838,60.3828],[-172.6141,60.3776],[-172.6167,60.4],[-172.7682,60.4464],[-172.8766,60.4984],[-172.9328,60.5589],[-172.9208,60.6042]]],[[[-165.9283,54.2125],[-165.9822,54.2206],[-166.0861,54.1739],[-166.1171,54.1226],[-166.0522,54.0758],[-166.0422,54.0428],[-165.98,54.0703],[-165.8973,54.0572],[-165.847,54.0809],[-165.7669,54.0645],[-165.689,54.0891],[-165.6723,54.1309],[-165.7383,54.1125],[-165.7346,54.1459],[-165.8133,54.1759],[-165.88,54.1825],[-165.9283,54.2125]]],[[[-160.6878,58.8139],[-160.8475,58.7495],[-160.9939,58.7243],[-161.0536,58.6897],[-161.0797,58.6383],[-161.0733,58.5456],[-160.963,58.5511],[-160.8839,58.5803],[-160.855,58.6258],[-160.6878,58.8139]]],[[[-147.6875,60.4917],[-147.7203,60.4995],[-147.7088,60.4276],[-147.8167,60.4417],[-147.8479,60.3833],[-147.8047,60.2995],[-147.9016,60.2849],[-147.8917,60.2229],[-147.7964,60.2391],[-147.8208,60.1792],[-147.7547,60.1609],[-147.7172,60.2026],[-147.7172,60.2651],[-147.6193,60.3786],[-147.7292,60.3896],[-147.6089,60.4255],[-147.6729,60.4604],[-147.6875,60.4917]]],[[[177.6059,52.1349],[177.5451,52.1035],[177.4783,51.9828],[177.3753,51.9765],[177.2433,51.9056],[177.1989,51.895],[177.3097,51.8257],[177.3478,51.9045],[177.4067,51.93],[177.4732,51.9084],[177.5044,51.9347],[177.5483,51.9122],[177.6017,51.9469],[177.5359,51.9595],[177.6742,52.0892],[177.6059,52.1349]]],[[[-131.83,55.4205],[-131.8694,55.3197],[-131.8292,55.1899],[-131.7465,55.129],[-131.7194,55.2024],[-131.6856,55.2257],[-131.67,55.3014],[-131.6289,55.3055],[-131.83,55.4205]]],[[[178.6815,51.6511],[178.631,51.6239],[178.7839,51.5692],[178.8428,51.5773],[178.9321,51.5462],[179.0344,51.4814],[179.0572,51.4528],[179.228,51.3815],[179.2588,51.3568],[179.3705,51.3749],[179.4028,51.4061],[179.28,51.3897],[179.1567,51.4656],[179.0233,51.5316],[178.9667,51.5886],[178.8079,51.6327],[178.6815,51.6511]]],[[[-164.8083,62.7896],[-164.8724,62.7828],[-164.8703,62.7276],[-164.8401,62.7036],[-164.7958,62.6104],[-164.5328,62.7286],[-164.5146,62.7708],[-164.6792,62.7562],[-164.7109,62.7849],[-164.8083,62.7896]]],[[[-136.4802,58.1015],[-136.5572,58.0792],[-136.5578,57.9756],[-136.5734,57.9188],[-136.4907,57.9017],[-136.4533,57.8419],[-136.3772,57.9295],[-136.3878,57.9675],[-136.3566,58.0268],[-136.4802,58.1015]]],[[[-153.2591,58.1436],[-153.2972,58.1457],[-153.3359,58.1018],[-153.4178,58.0578],[-153.3663,58.038],[-153.2972,58.0503],[-153.1261,58.0164],[-153.0483,57.9867],[-152.9438,57.9766],[-152.9435,58.0082],[-153.0269,58.0343],[-153.0908,58.089],[-153.1628,58.0884],[-153.2591,58.1436]]],[[[-152.3335,58.6281],[-152.5311,58.5844],[-152.5639,58.6217],[-152.6472,58.5572],[-152.5906,58.5508],[-152.6389,58.4997],[-152.4784,58.4689],[-152.415,58.4894],[-152.3632,58.5391],[-152.3335,58.6281]]],[[[173.7561,52.4958],[173.7406,52.5122],[173.6239,52.5056],[173.5304,52.4476],[173.44,52.4528],[173.3583,52.4019],[173.4689,52.3806],[173.5611,52.4011],[173.6167,52.3969],[173.642,52.356],[173.7256,52.3569],[173.6922,52.4619],[173.7561,52.4958]]],[[[179.6443,52.026],[179.4846,51.9839],[179.4799,51.9219],[179.6124,51.8708],[179.7388,51.9112],[179.762,51.9747],[179.6443,52.026]]],[[[-134.5178,58.3395],[-134.5842,58.3434],[-134.6521,58.3189],[-134.6789,58.2978],[-134.6294,58.2483],[-134.5072,58.2167],[-134.46,58.2294],[-134.3378,58.1972],[-134.2692,58.2082],[-134.5178,58.3395]]],[[[-172.4055,52.3836],[-172.4378,52.3928],[-172.57,52.3486],[-172.6339,52.2642],[-172.5383,52.2458],[-172.3117,52.3197],[-172.3056,52.3547],[-172.4055,52.3836]]],[[[-132.8328,55.1994],[-132.8973,55.1547],[-132.878,55.1004],[-132.8244,55.075],[-132.8932,55.0361],[-132.8098,55.0081],[-132.695,55.0197],[-132.688,55.1245],[-132.7333,55.1342],[-132.8328,55.1994]]],[[[-145.7937,60.5792],[-145.9,60.5875],[-146.0229,60.5479],[-146.0833,60.5417],[-146.1187,60.5125],[-146.1708,60.5271],[-146.2833,60.5167],[-146.3208,60.4542],[-146.1854,60.4562],[-146.0896,60.475],[-146.025,60.5042],[-145.8214,60.5526],[-145.7937,60.5792]]],[[[-133.5583,55.8333],[-133.6633,55.8186],[-133.6863,55.7749],[-133.645,55.7292],[-133.532,55.6927],[-133.4872,55.7324],[-133.5211,55.7689],[-133.4161,55.74],[-133.3317,55.7672],[-133.4283,55.7883],[-133.5583,55.8333]]],[[[-154.085,56.6147],[-154.2211,56.6147],[-154.3144,56.5853],[-154.3644,56.5428],[-154.3433,56.5092],[-154.2311,56.4925],[-154.1533,56.5117],[-154.0778,56.5908],[-154.085,56.6147]]],[[[-153.4659,57.9696],[-153.535,57.9282],[-153.4588,57.8807],[-153.33,57.8256],[-153.2082,57.7972],[-153.2221,57.8496],[-153.2826,57.9043],[-153.4659,57.9696]]],[[[-162.3807,63.6234],[-162.4917,63.6188],[-162.5542,63.6333],[-162.6208,63.6188],[-162.6932,63.5755],[-162.6266,63.5443],[-162.3813,63.5396],[-162.3464,63.5911],[-162.3807,63.6234]]],[[[-154.4828,56.6011],[-154.55,56.5897],[-154.6917,56.525],[-154.7939,56.4369],[-154.7728,56.4064],[-154.7094,56.4144],[-154.6189,56.4764],[-154.4811,56.5119],[-154.5352,56.5657],[-154.4828,56.6011]]],[[[-170.6544,52.6981],[-170.7277,52.682],[-170.81,52.6406],[-170.8467,52.5589],[-170.7957,52.5424],[-170.6842,52.6022],[-170.6083,52.6012],[-170.558,52.6668],[-170.6544,52.6981]]],[[[-133.3325,55.3453],[-133.4616,55.3208],[-133.4544,55.2172],[-133.3888,55.2291],[-133.336,55.2031],[-133.2529,55.2221],[-133.23,55.2687],[-133.2983,55.3047],[-133.3325,55.3453]]],[[[-165.6244,54.2983],[-165.6879,54.2421],[-165.5844,54.2236],[-165.6362,54.1977],[-165.598,54.1634],[-165.6372,54.1391],[-165.5594,54.1055],[-165.4931,54.1682],[-165.4095,54.1751],[-165.4076,54.2117],[-165.5442,54.2189],[-165.5148,54.2984],[-165.5978,54.264],[-165.6244,54.2983]]],[[[-169.7548,52.8925],[-169.8683,52.8789],[-169.8667,52.8536],[-169.9845,52.8586],[-170.0133,52.8311],[-169.9595,52.7871],[-169.8717,52.825],[-169.7753,52.8099],[-169.72,52.7719],[-169.6772,52.8244],[-169.6767,52.8714],[-169.7548,52.8925]]],[[[-131.2469,54.9996],[-131.3433,54.9592],[-131.3617,54.9753],[-131.4922,54.9461],[-131.4667,54.9133],[-131.3889,54.8928],[-131.3472,54.8558],[-131.1967,54.9144],[-131.2539,54.9683],[-131.2469,54.9996]]],[[[-148.0151,60.9141],[-148.0745,60.9224],[-148.1474,60.8245],[-148.0292,60.7813],[-147.9151,60.813],[-147.9349,60.8755],[-148.0151,60.9141]]],[[[-162.2871,54.9803],[-162.3706,54.9656],[-162.4234,54.9205],[-162.4022,54.8789],[-162.3167,54.8272],[-162.2733,54.8433],[-162.2317,54.8923],[-162.2433,54.9681],[-162.2871,54.9803]]],[[[-176.1382,52.1136],[-176.2056,52.0777],[-176.1816,52.0011],[-176.105,51.9972],[-176.0661,51.9667],[-176.0211,51.9831],[-176.0501,52.0193],[-175.9822,52.0289],[-176.0551,52.1073],[-176.1382,52.1136]]],[[[-133.5678,55.4206],[-133.6144,55.4192],[-133.6656,55.3742],[-133.6316,55.3611],[-133.6914,55.3175],[-133.6689,55.2769],[-133.6106,55.2536],[-133.5709,55.322],[-133.4592,55.3789],[-133.5017,55.4192],[-133.5678,55.4206]]],[[[-170.1526,57.1877],[-170.1382,57.2299],[-170.2259,57.2119],[-170.3032,57.2205],[-170.4001,57.2038],[-170.4206,57.1619],[-170.2778,57.1274],[-170.1731,57.1551],[-170.1526,57.1877]]],[[[-162.7939,54.4916],[-162.8378,54.4506],[-162.7805,54.4128],[-162.6105,54.3672],[-162.5445,54.4164],[-162.6689,54.4614],[-162.7939,54.4916]]],[[[-176.2894,51.8696],[-176.4006,51.8683],[-176.4267,51.8536],[-176.3972,51.7336],[-176.32,51.7347],[-176.265,51.7806],[-176.2894,51.8696]]],[[[-155.5606,55.8978],[-155.6056,55.9144],[-155.6667,55.8542],[-155.755,55.8222],[-155.7278,55.7747],[-155.6133,55.7567],[-155.5639,55.7897],[-155.5867,55.8458],[-155.5606,55.8978]]],[[[-132.7194,54.9368],[-132.8183,54.9242],[-132.8061,54.8711],[-132.7046,54.8147],[-132.6355,54.7489],[-132.6239,54.8039],[-132.6856,54.8353],[-132.6321,54.8908],[-132.7194,54.9368]]],[[[-166.1095,53.8478],[-166.2167,53.8294],[-166.3011,53.7986],[-166.3006,53.7517],[-166.2078,53.7072],[-166.1144,53.7747],[-166.1389,53.8031],[-166.1095,53.8478]]],[[[-148.0474,60.1786],[-148.2812,60.0854],[-148.2146,60.0771],[-148.275,60.0396],[-148.2667,60.0125],[-148.1979,60.0167],[-148.0838,60.1047],[-148.0474,60.1786]]],[[[-161.81,55.175],[-161.8983,55.1639],[-161.8905,55.1256],[-161.8172,55.0986],[-161.7828,55.1617],[-161.7555,55.1322],[-161.8006,55.0817],[-161.7322,55.0539],[-161.6339,55.1053],[-161.6416,55.1275],[-161.7283,55.1397],[-161.81,55.175]]],[[[-159.5125,55.2395],[-159.5584,55.2045],[-159.5895,55.1275],[-159.6383,55.1342],[-159.6572,55.0611],[-159.5706,55.0453],[-159.5294,55.0801],[-159.4961,55.1544],[-159.5355,55.1706],[-159.5125,55.2395]]],[[[-169.6097,56.6075],[-169.7522,56.6162],[-169.7511,56.5875],[-169.6822,56.5789],[-169.6405,56.5364],[-169.5671,56.5329],[-169.4839,56.5767],[-169.5176,56.6098],[-169.6097,56.6075]]],[[[-164.98,54.1329],[-164.9717,54.1183],[-165.144,54.1311],[-165.21,54.0869],[-165.0822,54.0691],[-164.9557,54.0727],[-164.9217,54.1079],[-164.98,54.1329]]],[[[-133.3967,55.5636],[-133.4511,55.555],[-133.4406,55.515],[-133.3611,55.4533],[-133.3057,55.4819],[-133.2852,55.5354],[-133.3369,55.5682],[-133.3967,55.5636]]],[[[-153.4244,59.4095],[-153.5117,59.3929],[-153.5494,59.3317],[-153.5153,59.32],[-153.3627,59.3378],[-153.3472,59.3776],[-153.4244,59.4095]]],[[[-147.9641,60.1255],[-147.9755,60.1484],[-148.1182,60.0474],[-148.1396,59.9853],[-148.0943,60.0026],[-148.0495,60.0599],[-147.9812,60.0604],[-147.8963,60.0964],[-147.9641,60.1255]]],[[[-133.725,55.5525],[-133.7111,55.5186],[-133.7811,55.4702],[-133.6706,55.4381],[-133.6317,55.4908],[-133.5865,55.5052],[-133.6633,55.5578],[-133.725,55.5525]]],[[[-133.2956,55.9153],[-133.3622,55.845],[-133.26,55.7721],[-133.2163,55.8229],[-133.2244,55.8652],[-133.2956,55.9153]]],[[[-160.3632,55.3603],[-160.4339,55.3394],[-160.4922,55.3583],[-160.5173,55.3081],[-160.3911,55.2869],[-160.3315,55.26],[-160.308,55.3041],[-160.3632,55.3603]]],[[[-157.2422,56.5823],[-157.3294,56.5272],[-157.1516,56.5273],[-157.1155,56.5525],[-156.9956,56.5514],[-157.0883,56.5837],[-157.2422,56.5823]]],[[[-134.2639,55.9281],[-134.3675,55.905],[-134.3194,55.8781],[-134.3446,55.8402],[-134.2711,55.8286],[-134.2283,55.864],[-134.133,55.8968],[-134.1734,55.9215],[-134.2649,55.897],[-134.2639,55.9281]]],[[[-148.1849,60.7432],[-148.2391,60.7245],[-148.1786,60.6401],[-148.1234,60.6401],[-148.0875,60.6729],[-148.1068,60.7391],[-148.1849,60.7432]]],[[[-144.1963,60.0016],[-144.2697,60.0001],[-144.3707,59.9627],[-144.5696,59.8518],[-144.5859,59.8113],[-144.4332,59.8981],[-144.1963,60.0016]]],[[[-147.8276,60.0661],[-147.8542,60.0771],[-147.913,60.0359],[-148.0378,59.9733],[-148.0468,59.9385],[-147.9179,59.9706],[-147.8193,60.0464],[-147.8276,60.0661]]],[[[-150.5349,70.4943],[-150.7479,70.4938],[-150.7375,70.4625],[-150.6313,70.4354],[-150.4839,70.4714],[-150.5349,70.4943]]],[[[-133.4623,55.5072],[-133.527,55.5294],[-133.545,55.4864],[-133.6192,55.4482],[-133.5484,55.4291],[-133.4283,55.4503],[-133.4623,55.5072]]],[[[-153.87,56.5583],[-154.0317,56.5553],[-154.1328,56.5108],[-154.0494,56.4958],[-153.9513,56.5049],[-153.87,56.5583]]],[[[-147.9917,60.3708],[-148.0583,60.3688],[-148.137,60.3266],[-148.1083,60.2792],[-148.0213,60.2859],[-147.9917,60.3708]]],[[[-176.1722,51.8817],[-176.235,51.8219],[-176.17,51.7978],[-176.0894,51.7986],[-176.03,51.8444],[-176.1317,51.8506],[-176.1722,51.8817]]],[[[-150.6888,59.4156],[-150.708,59.3587],[-150.7688,59.3298],[-150.7052,59.2947],[-150.6104,59.3659],[-150.6362,59.4065],[-150.6888,59.4156]]],[[[-160.239,55.4582],[-160.3227,55.4458],[-160.3261,55.3953],[-160.2333,55.4123],[-160.1433,55.3861],[-160.1358,55.4495],[-160.2038,55.4389],[-160.239,55.4582]]],[[[-132.479,56.4382],[-132.5376,56.4209],[-132.5583,56.3556],[-132.5014,56.3524],[-132.4052,56.4078],[-132.479,56.4382]]],[[[-144.9021,60.5313],[-144.975,60.5125],[-144.9818,60.4818],[-145.0536,60.4432],[-144.9667,60.4208],[-144.913,60.4484],[-144.9255,60.5016],[-144.9021,60.5313]]],[[[178.5011,51.9883],[178.4573,51.984],[178.4526,51.9393],[178.515,51.8981],[178.5906,51.9525],[178.5011,51.9883]]],[[[-178.8014,51.8339],[-178.86,51.8197],[-178.8733,51.7817],[-178.8139,51.746],[-178.7332,51.7807],[-178.8014,51.8339]]],[[[-170.1178,52.7898],[-170.1688,52.7863],[-170.168,52.7172],[-170.085,52.7181],[-170.0525,52.7726],[-170.1178,52.7898]]],[[[-131.4224,55.991],[-131.4605,55.9903],[-131.5967,55.9331],[-131.5044,55.9211],[-131.4083,55.9589],[-131.4224,55.991]]],[[[-135.622,58.3795],[-135.733,58.368],[-135.6803,58.3309],[-135.5765,58.3254],[-135.5377,58.3446],[-135.622,58.3795]]],[[[-159.4433,55.0614],[-159.405,54.9767],[-159.4256,54.9417],[-159.3289,54.9769],[-159.3783,55.0247],[-159.38,55.0642],[-159.4433,55.0614]]],[[[-133.8694,55.9373],[-133.9442,55.9171],[-133.9189,55.8567],[-133.8716,55.8448],[-133.8392,55.8897],[-133.8694,55.9373]]],[[[-132.9817,56.5914],[-133.074,56.5798],[-133.0441,56.5204],[-132.9845,56.5114],[-132.9635,56.5559],[-132.9817,56.5914]]],[[[-171.2417,52.5269],[-171.3113,52.5011],[-171.3038,52.4495],[-171.2417,52.4528],[-171.1937,52.4936],[-171.2417,52.5269]]],[[[-161.5349,55.2567],[-161.6617,55.2456],[-161.6967,55.2056],[-161.5628,55.2033],[-161.5349,55.2567]]],[[[-152.4123,57.968],[-152.5156,57.9217],[-152.369,57.8838],[-152.3222,57.9155],[-152.4237,57.9284],[-152.4123,57.968]]],[[[-151.8218,58.2651],[-151.894,58.2155],[-151.8673,58.1655],[-151.8086,58.1864],[-151.7953,58.2568],[-151.8218,58.2651]]],[[[-159.2726,54.9457],[-159.3261,54.8923],[-159.2761,54.8628],[-159.2233,54.8839],[-159.2083,54.9281],[-159.2726,54.9457]]],[[[-169.6767,53.0314],[-169.739,53.0286],[-169.7636,52.9825],[-169.6967,52.9572],[-169.6611,53.0022],[-169.6767,53.0314]]],[[[-151.9057,60.5068],[-151.9687,60.4896],[-151.9563,60.4188],[-151.8547,60.4932],[-151.9057,60.5068]]],[[[-169.0417,65.8146],[-169.0813,65.8167],[-169.1182,65.7589],[-169.0443,65.7526],[-168.9964,65.8026],[-169.0417,65.8146]]],[[[-164.9021,66.4958],[-164.9104,66.5083],[-165.1542,66.4688],[-165.3328,66.4287],[-165.1875,66.4417],[-165.1354,66.4625],[-164.9021,66.4958]]],[[[-147.938,60.7182],[-147.9568,60.7474],[-147.9964,60.6901],[-147.8505,60.6797],[-147.8984,60.7307],[-147.938,60.7182]]],[[[-136.1906,57.7161],[-136.2561,57.677],[-136.1811,57.64],[-136.1394,57.6978],[-136.1906,57.7161]]],[[[-148.2522,59.9381],[-148.1643,59.9356],[-148.1023,59.953],[-148.0234,60.0026],[-148.0021,60.0375],[-148.1252,59.9657],[-148.2522,59.9381]]],[[[-152.7238,57.9755],[-152.8503,57.9701],[-152.8512,57.9412],[-152.7601,57.9251],[-152.7238,57.9755]]],[[[-175.9878,51.9094],[-176.1144,51.8842],[-175.9633,51.8461],[-175.9878,51.9094]]],[[[-170.0411,52.9228],[-170.1255,52.8972],[-170.0517,52.8564],[-169.995,52.9033],[-170.0411,52.9228]]],[[[-135.5208,57.2199],[-135.5578,57.1572],[-135.5059,57.1425],[-135.4518,57.1775],[-135.5208,57.2199]]],[[[-178.9567,51.3969],[-178.9944,51.3739],[-178.9883,51.3064],[-178.9055,51.3614],[-178.9567,51.3969]]],[[[-153.8335,57.5326],[-153.8728,57.5531],[-153.8738,57.4483],[-153.8322,57.4289],[-153.8335,57.5326]]],[[[-135.4688,57.2505],[-135.5155,57.2291],[-135.4556,57.1853],[-135.3916,57.2453],[-135.4688,57.2505]]],[[[-132.0288,56.0889],[-132.07,56.03],[-132.0256,55.9967],[-131.9822,56.0249],[-132.0288,56.0889]]],[[[-161.3386,55.2198],[-161.4281,55.2163],[-161.4145,55.1808],[-161.3394,55.1587],[-161.3386,55.2198]]],[[[-132.1918,56.0399],[-132.2028,55.9564],[-132.1804,55.9263],[-132.1333,55.9422],[-132.1918,56.0399]]],[[[-146.7375,60.8708],[-146.8141,60.8432],[-146.7896,60.8042],[-146.725,60.8104],[-146.7375,60.8708]]],[[[-147.3729,60.2625],[-147.3464,60.2995],[-147.4495,60.2703],[-147.4812,60.225],[-147.3729,60.2625]]],[[[178.2289,51.8322],[178.3073,51.7763],[178.3805,51.7702],[178.3356,51.8083],[178.2289,51.8322]]],[[[178.1615,52.0412],[178.089,52.0364],[178.0981,51.9978],[178.1732,51.9912],[178.1615,52.0412]]],[[[-164.8984,62.662],[-164.8807,62.5984],[-164.8151,62.6078],[-164.8589,62.662],[-164.8984,62.662]]],[[[-164.9859,60.8693],[-165.0203,60.8339],[-164.9583,60.8208],[-164.8901,60.838],[-164.9859,60.8693]]],[[[-136.035,58.2953],[-136.0369,58.3174],[-136.1577,58.2792],[-136.0903,58.2582],[-136.035,58.2953]]],[[[-152.8822,58.3383],[-152.9217,58.3136],[-152.7839,58.2872],[-152.8461,58.3378],[-152.8822,58.3383]]],[[[-179.0874,51.2956],[-179.147,51.2793],[-179.1405,51.2325],[-179.0944,51.2271],[-179.0874,51.2956]]],[[[-152.5884,60.175],[-152.6438,60.1646],[-152.5911,60.113],[-152.5484,60.1141],[-152.5884,60.175]]],[[[-130.5194,54.8587],[-130.5944,54.8309],[-130.6156,54.7928],[-130.5262,54.8155],[-130.5194,54.8587]]],[[[-134.2017,57.8917],[-134.1894,57.8342],[-134.1334,57.7905],[-134.1142,57.8073],[-134.2017,57.8917]]],[[[-133.4422,55.9969],[-133.4948,55.9667],[-133.4494,55.9333],[-133.4349,55.9562],[-133.3944,55.9756],[-133.4422,55.9969]]],[[[-159.5744,54.8245],[-159.5828,54.7736],[-159.52,54.7581],[-159.5106,54.7891],[-159.5744,54.8245]]],[[[-152.3067,58.9608],[-152.3377,58.9042],[-152.2367,58.9144],[-152.3067,58.9608]]],[[[-150.3542,70.4771],[-150.4661,70.4599],[-150.4526,70.4318],[-150.3687,70.45],[-150.3542,70.4771]]],[[[-158.7982,55.8911],[-158.8489,55.8543],[-158.7292,55.841],[-158.7982,55.8911]]],[[[-157.8306,56.3706],[-157.9072,56.3442],[-157.8233,56.3069],[-157.8306,56.3706]]],[[[-133.2318,55.4443],[-133.2978,55.4456],[-133.3094,55.4011],[-133.2522,55.4067],[-133.2318,55.4443]]],[[[-147.2083,60.8917],[-147.2875,60.8708],[-147.1255,60.8547],[-147.2083,60.8917]]],[[[-165.3462,54.09],[-165.2897,54.0385],[-165.2644,54.0917],[-165.3462,54.09]]],[[[-134.9118,58.4854],[-134.8416,58.3712],[-134.8078,58.3757],[-134.9118,58.4854]]],[[[-150.4787,70.438],[-150.6057,70.4224],[-150.6062,70.3896],[-150.4787,70.438]]],[[[-164.4708,63.0687],[-164.4542,63.0438],[-164.375,63.0271],[-164.3776,63.0536],[-164.4708,63.0687]]],[[[-166.1489,53.9972],[-166.1933,53.9589],[-166.073,53.9698],[-166.1489,53.9972]]],[[[-154.0467,56.7281],[-154.1272,56.6945],[-154.0167,56.69],[-154.0467,56.7281]]],[[[-135.7039,57.7067],[-135.62,57.6381],[-135.5895,57.6601],[-135.7039,57.7067]]],[[[-150.3165,59.4616],[-150.4146,59.4386],[-150.3431,59.4156],[-150.3165,59.4616]]],[[[-147.4268,60.6846],[-147.4563,60.6167],[-147.3859,60.6526],[-147.4268,60.6846]]],[[[-145.1807,60.3401],[-145.2849,60.3307],[-145.213,60.3026],[-145.1807,60.3401]]],[[[-159.7064,54.8371],[-159.82,54.8136],[-159.7743,54.7922],[-159.7064,54.8371]]],[[[-133.0374,56.1183],[-133.0472,56.0647],[-132.9795,56.0813],[-133.0374,56.1183]]],[[[-131.6233,55.9036],[-131.6618,55.8603],[-131.5902,55.8535],[-131.6233,55.9036]]],[[[-156.6893,56.0569],[-156.7517,56.0408],[-156.6757,56.0093],[-156.6893,56.0569]]],[[[-150.5979,61.3604],[-150.6349,61.337],[-150.5943,61.2797],[-150.5979,61.3604]]],[[[-175.7928,51.9564],[-175.8626,51.9534],[-175.7833,51.9137],[-175.7928,51.9564]]],[[[-146.2941,59.4647],[-146.374,59.4184],[-146.3344,59.4042],[-146.2941,59.4647]]],[[[-159.3128,55.8117],[-159.3564,55.8065],[-159.3078,55.7455],[-159.3128,55.8117]]],[[[-131.2011,55.1078],[-131.2422,55.0664],[-131.195,55.0433],[-131.2011,55.1078]]],[[[-163.7849,60.8807],[-163.862,60.8755],[-163.8229,60.8417],[-163.7849,60.8807]]],[[[175.88,52.3728],[175.9025,52.3369],[175.9654,52.3596],[175.88,52.3728]]],[[[-133.4878,56.1686],[-133.5725,56.132],[-133.5033,56.1297],[-133.4878,56.1686]]],[[[-134.2661,57.9553],[-134.2466,57.9086],[-134.2017,57.9397],[-134.2661,57.9553]]],[[[-150.163,61.1578],[-150.2125,61.1708],[-150.2354,61.1229],[-150.163,61.1578]]],[[[-147.5542,60.5604],[-147.6224,60.5641],[-147.5995,60.5255],[-147.5542,60.5604]]],[[[-159.1316,55.8706],[-159.1683,55.8389],[-159.095,55.8328],[-159.1316,55.8706]]],[[[-167.663,65.7839],[-167.7182,65.7786],[-167.7042,65.7354],[-167.663,65.7839]]],[[[-151.5081,59.1459],[-151.4443,59.1046],[-151.4312,59.1345],[-151.5081,59.1459]]],[[[-132.8801,55.2266],[-132.9348,55.2143],[-132.9259,55.1716],[-132.8801,55.2266]]],[[[-173.0578,60.6578],[-173.087,60.6995],[-173.1161,60.6599],[-173.0578,60.6578]]],[[[-162.4601,54.4172],[-162.4328,54.3714],[-162.4017,54.4056],[-162.4601,54.4172]]],[[[-144.3979,60.1521],[-144.3297,60.1026],[-144.3297,60.137],[-144.3979,60.1521]]],[[[-160.2794,58.7153],[-160.3167,58.6817],[-160.2706,58.6611],[-160.2794,58.7153]]],[[[-154.4311,56.5908],[-154.4378,56.5375],[-154.3928,56.5533],[-154.4311,56.5908]]]]},"properties":{"id":"097d174e-70ae-4e79-b73a-142c4bb3ce6c","code":"AL","name":"Alaska","abbreviation":"R-AL","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.875,20.0919],[-155.8234,20.0276],[-155.9367,19.8497],[-155.96,19.8531],[-156.0503,19.7744],[-156.0328,19.6563],[-155.9753,19.6046],[-155.9508,19.4869],[-155.9203,19.4769],[-155.8847,19.3322],[-155.9189,19.115],[-155.8819,19.0364],[-155.7953,19.0042],[-155.6864,18.9372],[-155.6378,18.9347],[-155.5516,19.052],[-155.504,19.1357],[-155.4523,19.1474],[-155.3471,19.2135],[-155.2936,19.2634],[-155.2078,19.2562],[-155.1305,19.2728],[-155.0714,19.3111],[-154.9725,19.3489],[-154.8206,19.4769],[-154.8058,19.5161],[-154.9031,19.5689],[-154.98,19.6376],[-155.0022,19.7364],[-155.0903,19.7347],[-155.0811,19.8475],[-155.1572,19.9325],[-155.2746,20.0165],[-155.4383,20.0925],[-155.5561,20.1289],[-155.5878,20.1188],[-155.7303,20.2022],[-155.7539,20.2361],[-155.8369,20.2672],[-155.8825,20.2575],[-155.9042,20.1973],[-155.875,20.0919]]],[[[-156.5986,21.0305],[-156.6333,21.0267],[-156.6925,20.9472],[-156.6871,20.882],[-156.6283,20.8136],[-156.5366,20.7743],[-156.4631,20.7812],[-156.4414,20.605],[-156.3736,20.5739],[-156.2972,20.5822],[-156.1927,20.6283],[-156.1403,20.6178],[-156.0472,20.6508],[-155.9872,20.7083],[-156.0019,20.7947],[-156.1081,20.825],[-156.2825,20.9458],[-156.3294,20.9456],[-156.4739,20.8908],[-156.5265,20.9805],[-156.5986,21.0305]]],[[[-157.9803,21.7108],[-158.0633,21.655],[-158.1169,21.5847],[-158.283,21.5756],[-158.2303,21.5349],[-158.2317,21.4825],[-158.1417,21.3764],[-158.1031,21.295],[-157.9005,21.3259],[-157.8188,21.2576],[-157.6487,21.3044],[-157.7035,21.3464],[-157.7446,21.4211],[-157.7814,21.4114],[-157.8397,21.4562],[-157.8338,21.5265],[-157.9209,21.6268],[-157.9335,21.6743],[-157.9803,21.7108]]],[[[-159.4018,22.235],[-159.4768,22.2305],[-159.4983,22.2068],[-159.5865,22.2205],[-159.6598,22.1719],[-159.7223,22.1531],[-159.7858,22.0619],[-159.7564,21.9786],[-159.6664,21.9524],[-159.6284,21.9084],[-159.4441,21.868],[-159.3305,21.9595],[-159.3389,22.0175],[-159.2929,22.1221],[-159.3146,22.1859],[-159.4018,22.235]]],[[[-156.9134,21.1667],[-156.9706,21.2158],[-157,21.1789],[-157.0652,21.1952],[-157.2606,21.2175],[-157.2508,21.1775],[-157.3114,21.1014],[-157.2525,21.0877],[-157.0937,21.1026],[-156.8743,21.0465],[-156.7486,21.1028],[-156.7109,21.1479],[-156.7393,21.173],[-156.9134,21.1667]]],[[[-156.9791,20.9263],[-157.0579,20.909],[-157.0525,20.8728],[-156.9981,20.8408],[-156.9636,20.7308],[-156.8761,20.7425],[-156.8054,20.808],[-156.8284,20.8558],[-156.9005,20.9151],[-156.9791,20.9263]]],[[[-160.0855,22.0015],[-160.1285,21.9513],[-160.2294,21.8856],[-160.2472,21.8153],[-160.2027,21.7789],[-160.1611,21.8614],[-160.0672,21.8935],[-160.0855,22.0015]]],[[[-156.5683,20.6039],[-156.6778,20.5556],[-156.6786,20.5028],[-156.5518,20.5339],[-156.5683,20.6039]]]]},"properties":{"id":"5ee7f045-f63c-42e6-b623-98c5080c0d76","code":"HI","name":"Hawaii","abbreviation":"R-HI","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-76.013,36.5505],[-75.9825,36.5844],[-75.9928,36.6353],[-75.9434,36.7223],[-75.9172,36.6381],[-75.8842,36.6133],[-75.9525,36.7658],[-76.0015,36.9262],[-76.0906,36.9081],[-76.2271,36.9408],[-76.2775,36.9692],[-76.331,36.9606],[-76.3884,36.898],[-76.4831,36.897],[-76.4861,36.9561],[-76.5764,37.0197],[-76.6479,37.0368],[-76.6856,37.197],[-76.7146,37.1489],[-76.7474,37.1503],[-76.8042,37.2072],[-76.9,37.1992],[-76.9853,37.2447],[-77.0144,37.3031],[-77.0508,37.2653],[-77.0842,37.2725],[-77.0936,37.3081],[-77.1758,37.2878],[-77.2525,37.2956],[-77.2044,37.3253],[-77.1278,37.3094],[-77.0728,37.3275],[-77.0803,37.2808],[-77.0156,37.3125],[-76.9404,37.2369],[-76.8817,37.2567],[-76.7958,37.2328],[-76.7575,37.1914],[-76.6919,37.2231],[-76.6231,37.1979],[-76.6283,37.1261],[-76.4647,37.0277],[-76.4303,36.9656],[-76.3181,37.0126],[-76.2702,37.0878],[-76.3368,37.0911],[-76.2938,37.1264],[-76.4206,37.2233],[-76.4697,37.2136],[-76.5767,37.2719],[-76.6258,37.3131],[-76.7114,37.4444],[-76.5103,37.2722],[-76.5058,37.2461],[-76.3829,37.2657],[-76.3979,37.3136],[-76.4499,37.3811],[-76.4159,37.4086],[-76.3061,37.3278],[-76.2487,37.3758],[-76.2522,37.436],[-76.3596,37.5213],[-76.3125,37.5458],[-76.4306,37.6094],[-76.5331,37.6122],[-76.5906,37.6572],[-76.5998,37.7207],[-76.6803,37.7796],[-76.7234,37.7884],[-76.7945,37.8955],[-76.8527,37.9208],[-76.9286,37.9831],[-76.9164,38.0294],[-76.93,38.0732],[-77.06,38.106],[-77.0571,38.1408],[-77.1263,38.1367],[-77.1531,38.1758],[-77.0489,38.1579],[-77.0297,38.1031],[-76.9358,38.0805],[-76.9214,38.0683],[-76.9131,38.0516],[-76.8966,37.9895],[-76.7982,37.9245],[-76.7262,37.8362],[-76.5867,37.7714],[-76.5097,37.6425],[-76.4719,37.6661],[-76.4022,37.6273],[-76.2798,37.6195],[-76.3389,37.6533],[-76.3028,37.6897],[-76.3144,37.7356],[-76.3019,37.8258],[-76.2657,37.817],[-76.2372,37.8836],[-76.2683,37.9128],[-76.4136,37.9646],[-76.4733,38.015],[-76.5458,38.039],[-76.5363,38.0749],[-76.6314,38.1534],[-76.7016,38.1598],[-76.715,38.1025],[-76.7891,38.1697],[-76.8398,38.1638],[-76.9659,38.2121],[-76.9619,38.2573],[-77.0299,38.311],[-77.0135,38.3748],[-77.0726,38.3755],[-77.237,38.3312],[-77.3223,38.3371],[-77.297,38.3707],[-77.3266,38.4435],[-77.3036,38.5094],[-77.2574,38.5609],[-77.2392,38.6617],[-77.1581,38.6372],[-77.1504,38.6659],[-77.0423,38.7218],[-77.0523,38.7886],[-77.0134,38.7883],[-77.0442,38.6976],[-77.1009,38.6854],[-77.1095,38.6268],[-77.182,38.6018],[-77.235,38.5535],[-77.2736,38.4829],[-77.2495,38.3823],[-77.2067,38.3597],[-77.0915,38.4076],[-77.0419,38.4443],[-77.0015,38.4216],[-76.975,38.3539],[-76.9263,38.2945],[-76.85,38.2658],[-76.8711,38.3333],[-76.859,38.3828],[-76.8023,38.2806],[-76.7526,38.2222],[-76.7144,38.2669],[-76.6712,38.2344],[-76.5913,38.2149],[-76.5358,38.1465],[-76.5017,38.1383],[-76.4295,38.1939],[-76.4413,38.1508],[-76.3206,38.0486],[-76.3403,38.1148],[-76.32,38.1383],[-76.3864,38.2202],[-76.3733,38.2989],[-76.4619,38.296],[-76.5031,38.3603],[-76.6192,38.4178],[-76.6419,38.4761],[-76.5714,38.4225],[-76.5233,38.4124],[-76.4708,38.3492],[-76.4214,38.3192],[-76.3811,38.3856],[-76.4917,38.4817],[-76.5175,38.5347],[-76.5114,38.615],[-76.5286,38.7281],[-76.5547,38.7697],[-76.5106,38.8008],[-76.4894,38.8878],[-76.515,38.9114],[-76.4594,38.9406],[-76.4764,38.9817],[-76.3953,39.0108],[-76.4368,39.0526],[-76.5136,39.0681],[-76.4406,39.0956],[-76.4307,39.132],[-76.4969,39.1508],[-76.5764,39.2489],[-76.4621,39.2057],[-76.4212,39.2318],[-76.3892,39.3128],[-76.2822,39.2998],[-76.2279,39.35],[-76.1024,39.4348],[-76.1133,39.4871],[-76.0839,39.5467],[-75.97,39.5575],[-75.9851,39.4702],[-75.9156,39.5033],[-76.0374,39.386],[-76.1109,39.3722],[-76.1865,39.3186],[-76.2781,39.1479],[-76.2494,39.1319],[-76.2269,39.0531],[-76.1693,39.1271],[-76.1425,39.0864],[-76.1763,39.0574],[-76.1625,39.0069],[-76.2022,38.9722],[-76.1981,38.845],[-76.1839,38.7581],[-76.2656,38.8511],[-76.2981,38.8283],[-76.3428,38.75],[-76.2964,38.7728],[-76.2714,38.709],[-76.2381,38.7108],[-76.1083,38.6214],[-76.0258,38.5786],[-76.1133,38.5814],[-76.1763,38.6281],[-76.2067,38.6086],[-76.2722,38.6175],[-76.2608,38.5481],[-76.1978,38.5303],[-76.3277,38.4993],[-76.3319,38.4742],[-76.2333,38.345],[-76.1836,38.3601],[-76.1647,38.3156],[-76.0744,38.2686],[-75.9986,38.3741],[-75.9638,38.3246],[-76.0083,38.305],[-75.9489,38.2378],[-75.9404,38.3061],[-75.8634,38.3592],[-75.9188,38.2645],[-75.8998,38.2323],[-75.8186,38.2269],[-75.9368,38.1898],[-75.9347,38.1483],[-75.7948,38.1358],[-75.8664,38.0956],[-75.8547,38.0694],[-75.7748,38.0733],[-75.8365,38.0325],[-75.8922,37.9558],[-75.8647,37.9133],[-75.7786,37.9736],[-75.7378,37.9828],[-75.6358,37.9536],[-75.7142,37.9378],[-75.7378,37.9008],[-75.6928,37.8678],[-75.7431,37.7869],[-75.8133,37.7481],[-75.8869,37.6536],[-75.9825,37.4297],[-76.0168,37.324],[-76.0136,37.2088],[-75.9764,37.1547],[-75.98,37.0897],[-75.9419,37.0956],[-75.9281,37.2614],[-75.8956,37.3503],[-75.8306,37.3869],[-75.8058,37.4719],[-75.7575,37.4975],[-75.6847,37.4567],[-75.7278,37.5511],[-75.6581,37.4867],[-75.6139,37.5525],[-75.6689,37.5294],[-75.6961,37.5717],[-75.6492,37.6519],[-75.6053,37.62],[-75.58,37.7442],[-75.4164,37.8906],[-75.4364,37.9633],[-75.3767,38.0081],[-75.365,38.0736],[-75.3008,38.0989],[-75.2608,38.2045],[-75.2194,38.2464],[-75.19,38.2275],[-75.0956,38.3294],[-75.1272,38.3614],[-75.1169,38.4381],[-75.0503,38.4439],[-75.0583,38.5872],[-75.0972,38.5786],[-75.1553,38.6078],[-75.151071674,38.64310412],[-75.1347,38.6783],[-75.0794,38.6947],[-75.092,38.8017],[-75.1303,38.7814],[-75.1856,38.8033],[-75.3042,38.9136],[-75.3187,38.9887],[-75.3914,39.0525],[-75.4128,39.1508],[-75.3957,39.1896],[-75.4081,39.2642],[-75.4869,39.3569],[-75.4333,39.3939],[-75.3866,39.3565],[-75.3276,39.3405],[-75.288,39.2908],[-75.1709,39.2353],[-75.1372,39.1812],[-75.1087,39.2187],[-75.0489,39.2151],[-74.8865,39.1584],[-74.9019,39.0902],[-74.957,38.9983],[-74.9725,38.9387],[-74.9117,38.9308],[-74.8339,38.9908],[-74.8044,39.0333],[-74.7619,39.0603],[-74.7961,39.0928],[-74.711,39.1206],[-74.6625,39.1903],[-74.5594,39.2975],[-74.6269,39.2533],[-74.6359,39.3067],[-74.5864,39.3131],[-74.5181,39.3633],[-74.4078,39.3642],[-74.4878,39.395],[-74.4139,39.4772],[-74.4168,39.5436],[-74.2981,39.5381],[-74.3381,39.5686],[-74.307,39.6016],[-74.2202,39.6441],[-74.1686,39.7125],[-74.1969,39.7442],[-74.1054,39.9305],[-74.1094,39.9748],[-74.0728,40.0006],[-74.0923,39.831],[-74.0307,40.1244],[-73.9867,40.2573],[-73.9767,40.3636],[-74,40.4118],[-74.1349,40.4566],[-74.1928,40.4419],[-74.2614,40.4647],[-74.2533,40.5517],[-74.215,40.5642],[-74.19,40.6442],[-74.072,40.6615],[-74.0328,40.715],[-73.9769,40.7114],[-73.9717,40.7433],[-73.9358,40.7853],[-73.8971,40.8058],[-73.8044,40.8119],[-73.8003,40.8478],[-73.7159,40.9446],[-73.6606,40.9889],[-73.657,41.0119],[-73.7297,41.1009],[-73.4838,41.2136],[-73.5523,41.2933],[-73.4923,41.9865],[-73.4981,42.0496],[-73.5084,42.0858],[-73.4822,42.1648],[-73.2675,42.7452],[-73.2754,42.7456],[-73.2789,42.8337],[-73.2506,43.5108],[-73.2581,43.5617],[-73.2975,43.5793],[-73.3056,43.627],[-73.3751,43.6233],[-73.386,43.5812],[-73.4302,43.5834],[-73.4317,43.6439],[-73.356,43.7651],[-73.3933,43.8209],[-73.3783,43.8758],[-73.4101,43.9351],[-73.4107,44.0189],[-73.4434,44.0526],[-73.3927,44.1912],[-73.3163,44.2541],[-73.3374,44.3638],[-73.2947,44.4384],[-73.2998,44.4804],[-73.3812,44.5893],[-73.3889,44.6335],[-73.3645,44.7409],[-73.3369,44.7839],[-73.3813,44.837],[-73.3411,44.9199],[-73.3442,45.0103],[-73.8279,45.0031],[-74.1501,44.9912],[-74.3476,44.9908],[-74.6457,44.9992],[-74.7334,44.9905],[-74.8262,45.0158],[-74.9086,44.9867],[-74.9922,44.9777],[-75.0175,44.9549],[-75.1305,44.9165],[-75.3077,44.841],[-75.5457,44.687],[-75.7674,44.5205],[-75.824,44.431],[-75.9106,44.3715],[-75.9948,44.3475],[-76.1629,44.2816],[-76.1656,44.241],[-76.2437,44.2051],[-76.3157,44.1987],[-76.3543,44.1344],[-76.4411,44.0944],[-76.7983,43.6314],[-78.6812,43.6336],[-79.2028,43.451],[-79.0566,43.2488],[-79.044,43.1499],[-79.0748,43.0813],[-79.0017,43.0582],[-79.0072,42.9834],[-78.9219,42.9486],[-78.8598,42.8398],[-78.8557,42.7817],[-78.9186,42.7382],[-79.0491,42.6893],[-79.1469,42.556],[-79.2484,42.5327],[-79.3459,42.493],[-79.4352,42.4225],[-79.716,42.2837],[-79.7625,42.2686],[-79.7753,42.2604],[-79.8296,42.2353],[-79.8615,42.2243],[-79.9027,42.2149],[-79.9382,42.2047],[-80.0312,42.1557],[-80.1766,42.1046],[-80.311,42.0467],[-80.5181,41.9782],[-80.5177,40.8532],[-80.5191,40.6385],[-80.6235,40.6208],[-80.6626,40.5746],[-80.597,40.4644],[-80.6131,40.4066],[-80.6,40.3297],[-80.6172,40.2691],[-80.6564,40.2415],[-80.731,40.0867],[-80.7531,39.9193],[-80.8056,39.905],[-80.833,39.7934],[-80.8668,39.7689],[-80.8292,39.716],[-80.8614,39.6917],[-80.8711,39.6329],[-80.9312,39.6141],[-81.0866,39.4989],[-81.127,39.448],[-81.1691,39.4388],[-81.2201,39.3854],[-81.2498,39.3883],[-81.3835,39.3438],[-81.4329,39.4073],[-81.5531,39.3441],[-81.5642,39.2747],[-81.6504,39.2784],[-81.693,39.2538],[-81.752,39.1819],[-81.7397,39.1104],[-81.806,39.0841],[-81.7637,39.0209],[-81.7814,38.9249],[-81.8236,38.946],[-81.8543,38.8939],[-81.9224,38.8879],[-81.8995,38.9318],[-81.9315,38.9874],[-82.0361,39.0248],[-82.0891,38.9725],[-82.1428,38.887],[-82.1431,38.8407],[-82.2173,38.7882],[-82.1814,38.7112],[-82.1728,38.6394],[-82.1694,38.6214],[-82.1973,38.592],[-82.2667,38.5958],[-82.292,38.5731],[-82.3183,38.455],[-82.4911,38.4171],[-82.558,38.4025],[-82.5928,38.4186],[-82.5756,38.3302],[-82.578,38.2508],[-82.637,38.1407],[-82.5495,38.0718],[-82.5085,38.0021],[-82.4701,37.9863],[-82.4874,37.9182],[-82.4201,37.8853],[-82.4178,37.8481],[-82.3119,37.765],[-82.2901,37.6708],[-82.2231,37.6542],[-82.1352,37.5965],[-82.1293,37.5525],[-81.9908,37.5404],[-81.9642,37.544],[-81.9673,37.5372],[-82.3523,37.268],[-82.555,37.2033],[-82.7206,37.1205],[-82.7198,37.0484],[-82.8653,36.9786],[-82.8698,36.9005],[-82.9615,36.861],[-83.0676,36.8541],[-83.1331,36.7845],[-83.1374,36.7438],[-83.1958,36.7393],[-83.3354,36.7041],[-83.4221,36.67],[-83.4979,36.6711],[-83.6632,36.612],[-83.6748,36.6012],[-83.2538,36.5942],[-82.2374,36.5967],[-81.9352,36.595],[-81.9233,36.6166],[-81.6475,36.6125],[-81.6758,36.589],[-81.3698,36.5735],[-80.8632,36.5598],[-80.6523,36.5584],[-80.2775,36.5433],[-79.5112,36.5391],[-78.9763,36.5447],[-78.5095,36.5421],[-78.125,36.5463],[-76.9174,36.544],[-76.9162,36.5511],[-76.1527,36.5504],[-76.1509,36.5504],[-76.0358,36.5508],[-76.013,36.5505]]],[[[-73.4483,40.6536],[-73.2784,40.6839],[-73.2256,40.7181],[-73.1485,40.6984],[-73.0206,40.7486],[-72.9453,40.7408],[-72.8864,40.7653],[-72.8694,40.7392],[-72.7238,40.8089],[-72.6708,40.7848],[-72.4738,40.8389],[-71.9575,41.0283],[-71.8741,41.0517],[-71.8959,41.0772],[-71.9603,41.0702],[-72.0222,41.0214],[-72.1103,40.9947],[-72.1594,41.0539],[-72.2789,41.0003],[-72.3717,40.9956],[-72.4425,40.9456],[-72.4747,40.8994],[-72.6125,40.9083],[-72.5267,40.98],[-72.4564,41.0014],[-72.4022,41.0756],[-72.2783,41.1593],[-72.3536,41.1403],[-72.3967,41.0964],[-72.6369,40.9814],[-72.778,40.9652],[-73.02,40.9628],[-73.1187,40.9778],[-73.1711,40.9042],[-73.2939,40.9244],[-73.4383,40.9009],[-73.4853,40.9473],[-73.4886,40.8775],[-73.5414,40.8769],[-73.5657,40.9155],[-73.6764,40.8575],[-73.7297,40.8664],[-73.7658,40.8121],[-73.8697,40.7792],[-73.8883,40.7989],[-73.936,40.7775],[-73.9728,40.7025],[-73.9984,40.7014],[-74.0403,40.615],[-74,40.5711],[-73.8761,40.5847],[-73.897,40.6237],[-73.8234,40.6493],[-73.79,40.5994],[-73.7079,40.6124],[-73.6384,40.6],[-73.5952,40.6338],[-73.4483,40.6536]]],[[[-74.0791,40.6478],[-74.18,40.6453],[-74.1994,40.5735],[-74.2486,40.5439],[-74.2463,40.4963],[-74.1051,40.5538],[-74.0527,40.6014],[-74.0791,40.6478]]],[[[-76.3008,39.0306],[-76.3553,38.9561],[-76.3767,38.8492],[-76.3306,38.8636],[-76.3148,38.9342],[-76.2517,38.9431],[-76.3008,39.0306]]],[[[-75.8653,37.2892],[-75.8969,37.2789],[-75.9106,37.1758],[-75.8944,37.1189],[-75.8017,37.2006],[-75.8847,37.2044],[-75.8653,37.2892]]],[[[-75.2425,38.0286],[-75.2975,37.9917],[-75.3033,37.9628],[-75.3392,37.9228],[-75.3778,37.8936],[-75.3489,37.8806],[-75.2425,38.0286]]],[[[-74.1189,39.7706],[-74.1419,39.6958],[-74.1806,39.6622],[-74.2373,39.5583],[-74.0997,39.7564],[-74.1189,39.7706]]],[[[-75.2425,38.0286],[-75.1875,38.1094],[-75.1292,38.2542],[-75.1892,38.1533],[-75.1917,38.1172],[-75.2425,38.0286]]],[[[-72.3297,41.1058],[-72.384,41.0691],[-72.3106,41.0542],[-72.3297,41.1058]]],[[[-74.8025,39.0303],[-74.8647,38.9417],[-74.7869,39.0014],[-74.8025,39.0303]]],[[[-76.0314,38.0003],[-76.0453,37.9489],[-75.9894,37.9617],[-76.0314,38.0003]]],[[[-75.3142,37.9811],[-75.4044,37.8978],[-75.3822,37.9158],[-75.3531,37.9158],[-75.3439,37.9503],[-75.3142,37.9811]]]]},"properties":{"id":"3596a904-2af8-4c91-a48f-93f16d9acc81","code":"MA","name":"Mid-Atlantic","abbreviation":"R-MA","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-78.9219,42.9486],[-78.9061,42.9056],[-78.9369,42.831],[-79.7627,42.5105],[-80.0733,42.3926],[-80.5139,42.3244],[-81.2606,42.2055],[-81.6388,42.0214],[-82.4077,41.6769],[-82.6812,41.6773],[-83.0678,41.8626],[-83.1466,42.0332],[-83.1231,42.1205],[-83.1332,42.173],[-83.0954,42.2842],[-83.0503,42.3177],[-82.9358,42.3446],[-82.8683,42.3276],[-82.6412,42.5548],[-82.6002,42.5496],[-82.5213,42.6104],[-82.4669,42.7739],[-82.4782,42.8031],[-82.4532,42.9257],[-82.4113,42.9707],[-82.4243,42.9983],[-82.1229,43.5884],[-82.2077,43.9512],[-82.4175,44.9067],[-82.5254,45.3409],[-83.1983,45.644],[-83.5921,45.8187],[-83.4356,45.9965],[-83.5711,46.1026],[-83.6544,46.1194],[-83.7567,46.1015],[-83.8258,46.1165],[-83.9036,46.0585],[-83.9548,46.0562],[-84.005,46.1506],[-84.0726,46.1875],[-84.1046,46.2389],[-84.1432,46.4171],[-84.1099,46.5021],[-84.1293,46.5313],[-84.2223,46.5343],[-84.2505,46.5027],[-84.3711,46.5083],[-84.4429,46.4897],[-84.4764,46.4532],[-84.5561,46.4597],[-84.7638,46.6349],[-84.8434,46.8873],[-86.0434,47.3856],[-86.7729,47.6817],[-87.4059,47.9341],[-87.8649,48.1137],[-88.3709,48.3042],[-88.689,48.2415],[-89.3391,47.9699],[-89.4877,48.0109],[-89.7699,48.0229],[-89.8676,47.998],[-89.9743,48.0441],[-90.0335,48.0963],[-90.1358,48.1127],[-90.3466,48.0983],[-90.4664,48.1095],[-90.6375,48.1059],[-90.7422,48.1137],[-90.8139,48.1907],[-90.8399,48.2459],[-90.8861,48.2466],[-91.1333,48.1569],[-91.2544,48.0815],[-91.4013,48.0573],[-91.4773,48.0801],[-91.5562,48.0804],[-91.6911,48.1273],[-91.721,48.2007],[-91.8623,48.2112],[-91.9833,48.261],[-91.9998,48.321],[-92.0548,48.3591],[-92.2625,48.3548],[-92.3052,48.3194],[-92.2797,48.2427],[-92.3643,48.2338],[-92.4748,48.3733],[-92.4665,48.435],[-92.5068,48.4504],[-92.6527,48.4408],[-92.6962,48.492],[-92.6315,48.4987],[-92.6354,48.5426],[-92.7268,48.5391],[-92.9472,48.6214],[-93.1798,48.6228],[-93.2564,48.6425],[-93.4636,48.592],[-93.4679,48.5466],[-93.6129,48.5247],[-93.7518,48.5198],[-93.7955,48.5306],[-93.817,48.6146],[-93.8505,48.6316],[-94.0805,48.6538],[-94.2233,48.6602],[-94.257,48.7035],[-94.4165,48.7103],[-94.452,48.6928],[-94.5351,48.7023],[-94.6206,48.7374],[-94.6823,48.8088],[-94.6785,48.8808],[-94.748,49.0975],[-94.7719,49.1224],[-94.8247,49.3069],[-94.9561,49.3694],[-95.0534,49.3529],[-95.1497,49.3833],[-95.1514,49],[-97.2286,49],[-97.2348,48.9952],[-97.2128,48.9061],[-97.1788,48.8741],[-97.1533,48.7544],[-97.0935,48.684],[-97.115,48.6287],[-97.1712,48.5572],[-97.1571,48.4747],[-97.1268,48.4545],[-97.1606,48.3935],[-97.1286,48.3389],[-97.1206,48.2796],[-97.149,48.1833],[-97.1227,48.1056],[-97.0749,48.0504],[-97.0542,47.9454],[-96.8975,47.6783],[-96.8512,47.5881],[-96.8527,47.5384],[-96.8642,47.5402],[-96.8717,47.5257],[-96.868,47.5196],[-96.8448,47.5147],[-96.8533,47.5112],[-96.855,47.5047],[-96.8605,47.4371],[-96.8346,47.3394],[-96.8435,47.241],[-96.8175,47.1102],[-96.8206,46.9694],[-96.7667,46.8804],[-96.8008,46.8155],[-96.7855,46.7329],[-96.7872,46.7251],[-96.7821,46.7225],[-96.7856,46.7146],[-96.8026,46.6564],[-96.7563,46.5763],[-96.7376,46.4801],[-96.6682,46.3794],[-96.6022,46.3298],[-96.5977,46.2226],[-96.5785,46.1478],[-96.5688,46.1333],[-96.563,46.1155],[-96.5552,46.0731],[-96.5615,46.0537],[-96.5644,45.9607],[-96.5577,45.9425],[-96.5638,45.9051],[-96.5731,45.8515],[-96.6313,45.783],[-96.6674,45.735],[-96.8303,45.6567],[-96.8546,45.6075],[-96.7642,45.5189],[-96.7317,45.4593],[-96.6742,45.4115],[-96.6087,45.4094],[-96.5059,45.3698],[-96.4519,45.3022],[-96.4536,45.2695],[-96.4541,43.5026],[-95.6883,43.5039],[-95.113241361,43.503614375],[-93.6782,43.5047],[-93.2844,43.5032],[-91.22,43.5023],[-91.2227,43.4769],[-91.199,43.4015],[-91.2035,43.3527],[-91.1004,43.3118],[-91.0621,43.256],[-91.1755,43.1374],[-91.1765,43.0915],[-91.1756,43.0415],[-91.1444,42.9104],[-91.0999,42.875],[-91.0517,42.7397],[-90.9542,42.6872],[-90.706,42.6356],[-90.6858,42.5984],[-90.6635,42.5587],[-90.6347,42.5241],[-90.6363,42.5146],[-90.6513,42.4981],[-90.6533,42.48],[-90.6157,42.4555],[-90.4762,42.3823],[-90.4162,42.3282],[-90.4265,42.2895],[-90.4216,42.267],[-90.3849,42.2225],[-90.3641,42.2091],[-90.2081,42.1528],[-90.1984,42.1301],[-90.1638,42.1185],[-90.1671,42.0726],[-90.1606,42.0418],[-90.1482,41.9902],[-90.1525,41.9127],[-90.1904,41.8046],[-90.286,41.765],[-90.3165,41.7124],[-90.3184,41.6944],[-90.3444,41.6502],[-90.3427,41.5948],[-90.3932,41.5759],[-90.4524,41.5308],[-90.4934,41.5182],[-90.5726,41.5173],[-90.6077,41.4958],[-90.6613,41.4598],[-90.8494,41.4539],[-90.9263,41.424],[-91.0455,41.4164],[-91.0742,41.3107],[-91.1142,41.2443],[-91.0514,41.1684],[-90.9981,41.1626],[-90.9489,41.0718],[-90.9449,41.0481],[-90.9558,40.9699],[-90.9645,40.925],[-91.0043,40.9049],[-91.0894,40.8235],[-91.113,40.6883],[-91.1373,40.661],[-91.2032,40.6369],[-91.2591,40.6358],[-91.3384,40.611],[-91.4057,40.567],[-91.4131,40.5471],[-91.391,40.5345],[-91.3705,40.5151],[-91.3654,40.3993],[-91.4204,40.378],[-91.4658,40.3334],[-91.5049,40.2375],[-91.5115,40.1292],[-91.4929,40.0309],[-91.4271,39.939],[-91.4196,39.9177],[-91.4409,39.8965],[-91.4473,39.8743],[-91.4292,39.8392],[-91.3686,39.8015],[-91.3616,39.783],[-91.3662,39.7285],[-91.1801,39.5992],[-91.1636,39.5573],[-91.0944,39.5323],[-91.0578,39.468],[-90.9961,39.4248],[-90.7971,39.3118],[-90.725,39.2441],[-90.705,39.1423],[-90.6825,39.1095],[-90.7131,39.0513],[-90.6746,38.9587],[-90.6346,38.9037],[-90.5983,38.8768],[-90.5062,38.9053],[-90.4697,38.9614],[-90.3828,38.9595],[-90.2554,38.9224],[-90.1555,38.8722],[-90.1141,38.8508],[-90.116,38.8105],[-90.204,38.736],[-90.1814,38.6618],[-90.1984,38.595],[-90.2595,38.533],[-90.2984,38.4254],[-90.3565,38.367],[-90.3724,38.3224],[-90.373,38.278],[-90.3498,38.2141],[-90.2493,38.1239],[-90.1824,38.0773],[-90.0109,37.9714],[-89.995,37.9619],[-89.94,37.9703],[-89.9736,37.917],[-89.9177,37.8702],[-89.8418,37.9044],[-89.7961,37.8589],[-89.7397,37.8467],[-89.6626,37.7892],[-89.6707,37.7575],[-89.5152,37.6892],[-89.5159,37.6389],[-89.478,37.598],[-89.5204,37.5815],[-89.4926,37.4934],[-89.4355,37.4296],[-89.426,37.3655],[-89.5098,37.3131],[-89.518,37.2767],[-89.5095,37.2636],[-89.4654,37.2526],[-89.4579,37.1869],[-89.3772,37.0912],[-89.3865,37.0501],[-89.2909,36.9895],[-89.2598,37.0031],[-89.3063,37.0643],[-89.2504,37.0633],[-89.1953,36.983],[-89.1339,36.9839],[-89.1702,37.0105],[-89.1815,37.041],[-89.1771,37.059],[-89.0797,37.1717],[-89.0071,37.2232],[-88.9595,37.23],[-88.7954,37.1819],[-88.6965,37.1397],[-88.676688934,37.133297951],[-88.633978755,37.119495934],[-88.618958431,37.114642037],[-88.617254334,37.113873523],[-88.5528,37.0713],[-88.4659,37.0771],[-88.425,37.1543],[-88.4502,37.2062],[-88.5133,37.279],[-88.4742,37.3871],[-88.444,37.4156],[-88.4065,37.4263],[-88.3714,37.4074],[-88.2593,37.4575],[-88.085,37.4776],[-88.0736,37.5317],[-88.1335,37.5836],[-88.1567,37.6484],[-88.1478,37.6776],[-88.0531,37.7445],[-88.027,37.799],[-87.9627,37.7743],[-87.9464,37.7782],[-87.9317,37.7969],[-87.9053,37.8199],[-87.9364,37.892],[-87.9051,37.9243],[-87.898,37.9279],[-87.8824,37.9261],[-87.8608,37.9043],[-87.7909,37.8763],[-87.7545,37.8932],[-87.6679,37.8934],[-87.6642,37.8265],[-87.6379,37.8254],[-87.5934,37.8902],[-87.6279,37.9235],[-87.6011,37.9708],[-87.5114,37.9067],[-87.4732,37.9279],[-87.4166,37.9442],[-87.3434,37.9128],[-87.2414,37.8575],[-87.1673,37.8387],[-87.107,37.7833],[-87.0552,37.8288],[-87.046,37.8901],[-86.986,37.929],[-86.9126,37.9409],[-86.8599,37.9849],[-86.7963,37.9874],[-86.7311,37.8927],[-86.6673,37.9134],[-86.6673,37.8555],[-86.6015,37.8639],[-86.5816,37.921],[-86.5285,37.9178],[-86.5219,38.0289],[-86.4666,38.0457],[-86.3988,38.1049],[-86.3198,38.1465],[-86.2729,38.1341],[-86.2603,38.0514],[-86.1682,38.0093],[-86.0928,38.0077],[-86.0464,37.9586],[-86.0145,37.9958],[-85.9398,38.0089],[-85.9028,38.0926],[-85.9044,38.1676],[-85.8328,38.2662],[-85.7829,38.2887],[-85.7432,38.2689],[-85.6498,38.3307],[-85.5981,38.4442],[-85.5047,38.4645],[-85.4235,38.5313],[-85.437,38.6563],[-85.4536,38.6847],[-85.4168,38.7357],[-85.2505,38.7322],[-85.1747,38.6879],[-84.9923,38.7777],[-84.883,38.7931],[-84.8288,38.7837],[-84.83,38.8284],[-84.7877,38.8823],[-84.8738,38.91],[-84.8374,38.9887],[-84.8931,39.054],[-84.8884,39.065],[-84.8342,39.0983],[-84.803,39.11],[-84.7596,39.1414],[-84.6237,39.0736],[-84.4738,39.1184],[-84.4403,39.1096],[-84.4076,39.046],[-84.3284,39.0285],[-84.2383,38.8947],[-84.2295,38.8235],[-84.2185,38.8097],[-84.1762,38.7966],[-84.0775,38.7728],[-83.9597,38.7873],[-83.8686,38.7611],[-83.7946,38.7027],[-83.7547,38.6494],[-83.6573,38.6263],[-83.6217,38.6811],[-83.5393,38.7011],[-83.33,38.6386],[-83.287,38.5998],[-83.2468,38.6278],[-83.1519,38.6206],[-83.1109,38.6708],[-83.0137,38.7296],[-82.9665,38.728],[-82.9254,38.7474],[-82.884,38.7523],[-82.8699,38.735],[-82.8784,38.6911],[-82.8556,38.6128],[-82.823,38.5743],[-82.7806,38.559],[-82.7243,38.5581],[-82.6853,38.5305],[-82.6521,38.4912],[-82.6115,38.4718],[-82.5928,38.4186],[-82.558,38.4025],[-82.4911,38.4171],[-82.3183,38.455],[-82.292,38.5731],[-82.2667,38.5958],[-82.1973,38.592],[-82.1694,38.6214],[-82.1728,38.6394],[-82.1814,38.7112],[-82.2173,38.7882],[-82.1431,38.8407],[-82.1428,38.887],[-82.0891,38.9725],[-82.0361,39.0248],[-81.9315,38.9874],[-81.8995,38.9318],[-81.9224,38.8879],[-81.8543,38.8939],[-81.8236,38.946],[-81.7814,38.9249],[-81.7637,39.0209],[-81.806,39.0841],[-81.7397,39.1104],[-81.752,39.1819],[-81.693,39.2538],[-81.6504,39.2784],[-81.5642,39.2747],[-81.5531,39.3441],[-81.4329,39.4073],[-81.3835,39.3438],[-81.2498,39.3883],[-81.2201,39.3854],[-81.1691,39.4388],[-81.127,39.448],[-81.0866,39.4989],[-80.9312,39.6141],[-80.8711,39.6329],[-80.8614,39.6917],[-80.8292,39.716],[-80.8668,39.7689],[-80.833,39.7934],[-80.8056,39.905],[-80.7531,39.9193],[-80.731,40.0867],[-80.6564,40.2415],[-80.6172,40.2691],[-80.6,40.3297],[-80.6131,40.4066],[-80.597,40.4644],[-80.6626,40.5746],[-80.6235,40.6208],[-80.5191,40.6385],[-80.5177,40.8532],[-80.5181,41.9782],[-80.311,42.0467],[-80.1766,42.1046],[-80.0312,42.1557],[-79.9382,42.2047],[-79.9027,42.2149],[-79.8615,42.2243],[-79.8296,42.2353],[-79.7753,42.2604],[-79.7625,42.2686],[-79.716,42.2837],[-79.4352,42.4225],[-79.3459,42.493],[-79.2484,42.5327],[-79.1469,42.556],[-79.0491,42.6893],[-78.9186,42.7382],[-78.8557,42.7817],[-78.8598,42.8398],[-78.9219,42.9486]]]},"properties":{"id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de","code":"GL","name":"Midwest-East North Central and Great Lakes","abbreviation":"R-GL","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.2348,48.9952],[-97.2295,49],[-100.4701,49.0001],[-104.0495976,49],[-104.0496,49],[-104.0448,48.0005],[-104.0414,47.9112],[-104.0455,47.1872],[-104.044522817,46.122754864],[-104.0445,46.0979],[-104.0443,45.9438],[-104.0397,44.9986],[-104.0571,44.9987],[-104.057099843,44.998628693],[-104.0527,43.002797942],[-104.0528,41.0017],[-102.6538,41.0032],[-102.0504,41.0019],[-102.0485,40.0039],[-102.042300012,36.992205645],[-102.042300011,36.992205645],[-102.041933879,36.9922022],[-100.9441,36.9988],[-100.0902,36.9983],[-99.0005,37.0008],[-97.1468,36.9994],[-95.5236,37.0009],[-95.0336,36.9986],[-94.619,37],[-94.6196,36.7664],[-94.6182,36.4984],[-94.1651,36.4996],[-93.3653,36.4968],[-92.256,36.4965],[-91.758,36.4985],[-90.1536,36.4963],[-90.1441,36.4231],[-90.0669,36.3862],[-90.068,36.2978],[-90.1284,36.2305],[-90.2217,36.1811],[-90.2384,36.1382],[-90.2905,36.115],[-90.3773,35.9951],[-90.2574,35.9975],[-90.0008,35.9984],[-89.7169,36.0015],[-89.6564,36.1024],[-89.5896,36.1475],[-89.6985,36.2309],[-89.6946,36.2501],[-89.6733,36.2521],[-89.6083,36.2409],[-89.5456,36.2791],[-89.6167,36.3186],[-89.6042,36.3446],[-89.5264,36.3459],[-89.5192,36.3883],[-89.5515,36.4414],[-89.5249,36.4844],[-89.5624,36.5228],[-89.5482,36.5788],[-89.5352,36.5814],[-89.4989,36.578],[-89.4712,36.5308],[-89.4939,36.4835],[-89.4646,36.4571],[-89.4196,36.498],[-89.3777,36.6179],[-89.3562,36.6324],[-89.3248,36.6268],[-89.2749,36.5717],[-89.2289,36.5677],[-89.166,36.6636],[-89.2016,36.7251],[-89.1612,36.7912],[-89.1785,36.8388],[-89.1311,36.8588],[-89.1164,36.9168],[-89.1006,36.9541],[-89.1339,36.9839],[-89.1953,36.983],[-89.2504,37.0633],[-89.3063,37.0643],[-89.2598,37.0031],[-89.2909,36.9895],[-89.3865,37.0501],[-89.3772,37.0912],[-89.4579,37.1869],[-89.4654,37.2526],[-89.5095,37.2636],[-89.518,37.2767],[-89.5098,37.3131],[-89.426,37.3655],[-89.4355,37.4296],[-89.4926,37.4934],[-89.5204,37.5815],[-89.478,37.598],[-89.5159,37.6389],[-89.5152,37.6892],[-89.6707,37.7575],[-89.6626,37.7892],[-89.7397,37.8467],[-89.7961,37.8589],[-89.8418,37.9044],[-89.9177,37.8702],[-89.9736,37.917],[-89.94,37.9703],[-89.995,37.9619],[-90.0109,37.9714],[-90.1824,38.0773],[-90.2493,38.1239],[-90.3498,38.2141],[-90.373,38.278],[-90.3724,38.3224],[-90.3565,38.367],[-90.2984,38.4254],[-90.2595,38.533],[-90.1984,38.595],[-90.1814,38.6618],[-90.204,38.736],[-90.116,38.8105],[-90.1141,38.8508],[-90.1555,38.8722],[-90.2554,38.9224],[-90.3828,38.9595],[-90.4697,38.9614],[-90.5062,38.9053],[-90.5983,38.8768],[-90.6346,38.9037],[-90.6746,38.9587],[-90.7131,39.0513],[-90.6825,39.1095],[-90.705,39.1423],[-90.725,39.2441],[-90.7971,39.3118],[-90.9961,39.4248],[-91.0578,39.468],[-91.0944,39.5323],[-91.1636,39.5573],[-91.1801,39.5992],[-91.3662,39.7285],[-91.3616,39.783],[-91.3686,39.8015],[-91.4292,39.8392],[-91.4473,39.8743],[-91.4409,39.8965],[-91.4196,39.9177],[-91.4271,39.939],[-91.4929,40.0309],[-91.5115,40.1292],[-91.5049,40.2375],[-91.4658,40.3334],[-91.4204,40.378],[-91.3654,40.3993],[-91.3705,40.5151],[-91.391,40.5345],[-91.4131,40.5471],[-91.4057,40.567],[-91.3384,40.611],[-91.2591,40.6358],[-91.2032,40.6369],[-91.1373,40.661],[-91.113,40.6883],[-91.0894,40.8235],[-91.0043,40.9049],[-90.9645,40.925],[-90.9558,40.9699],[-90.9449,41.0481],[-90.9489,41.0718],[-90.9981,41.1626],[-91.0514,41.1684],[-91.1142,41.2443],[-91.0742,41.3107],[-91.0455,41.4164],[-90.9263,41.424],[-90.8494,41.4539],[-90.6613,41.4598],[-90.6077,41.4958],[-90.5726,41.5173],[-90.4934,41.5182],[-90.4524,41.5308],[-90.3932,41.5759],[-90.3427,41.5948],[-90.3444,41.6502],[-90.3184,41.6944],[-90.3165,41.7124],[-90.286,41.765],[-90.1904,41.8046],[-90.1525,41.9127],[-90.1482,41.9902],[-90.1606,42.0418],[-90.1671,42.0726],[-90.1638,42.1185],[-90.1984,42.1301],[-90.2081,42.1528],[-90.3641,42.2091],[-90.3849,42.2225],[-90.4216,42.267],[-90.4265,42.2895],[-90.4162,42.3282],[-90.4762,42.3823],[-90.6157,42.4555],[-90.6533,42.48],[-90.6513,42.4981],[-90.6363,42.5146],[-90.6347,42.5241],[-90.6635,42.5587],[-90.6858,42.5984],[-90.706,42.6356],[-90.9542,42.6872],[-91.0517,42.7397],[-91.0999,42.875],[-91.1444,42.9104],[-91.1756,43.0415],[-91.1765,43.0915],[-91.1755,43.1374],[-91.0621,43.256],[-91.1004,43.3118],[-91.2035,43.3527],[-91.199,43.4015],[-91.2227,43.4769],[-91.22,43.5023],[-93.2844,43.5032],[-93.6782,43.5047],[-95.113241361,43.503614375],[-95.6883,43.5039],[-96.4541,43.5026],[-96.4536,45.2695],[-96.4519,45.3022],[-96.5059,45.3698],[-96.6087,45.4094],[-96.6742,45.4115],[-96.7317,45.4593],[-96.7642,45.5189],[-96.8546,45.6075],[-96.8303,45.6567],[-96.6674,45.735],[-96.6313,45.783],[-96.5731,45.8515],[-96.5638,45.9051],[-96.5577,45.9425],[-96.5644,45.9607],[-96.5615,46.0537],[-96.5552,46.0731],[-96.563,46.1155],[-96.5688,46.1333],[-96.5785,46.1478],[-96.5977,46.2226],[-96.6022,46.3298],[-96.6682,46.3794],[-96.7376,46.4801],[-96.7563,46.5763],[-96.8026,46.6564],[-96.7856,46.7146],[-96.7821,46.7225],[-96.7872,46.7251],[-96.7855,46.7329],[-96.8008,46.8155],[-96.7667,46.8804],[-96.8206,46.9694],[-96.8175,47.1102],[-96.8435,47.241],[-96.8346,47.3394],[-96.8605,47.4371],[-96.855,47.5047],[-96.8533,47.5112],[-96.8448,47.5147],[-96.868,47.5196],[-96.8717,47.5257],[-96.8642,47.5402],[-96.8527,47.5384],[-96.8512,47.5881],[-96.8975,47.6783],[-97.0542,47.9454],[-97.0749,48.0504],[-97.1227,48.1056],[-97.149,48.1833],[-97.1206,48.2796],[-97.1286,48.3389],[-97.1606,48.3935],[-97.1268,48.4545],[-97.1571,48.4747],[-97.1712,48.5572],[-97.115,48.6287],[-97.0935,48.684],[-97.1533,48.7544],[-97.1788,48.8741],[-97.2128,48.9061],[-97.2348,48.9952]]]},"properties":{"id":"6e783926-0564-4643-a1d0-ee6990e40de2","code":"GP","name":"Midwest-West North Central and Great Plains","abbreviation":"R-GP","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.76177659,36.99698154],[-105.1011,36.9957],[-105.0326,36.9934],[-104.3313,36.993],[-104.1849,36.9958],[-103.65304205,36.997237454],[-103.000899764,36.998412581],[-103.0009,36.999],[-102.7859,36.9988],[-102.4775,36.9963],[-102.042300012,36.992205645],[-102.0485,40.0039],[-102.0504,41.0019],[-102.6538,41.0032],[-104.0528,41.0017],[-104.0527,43.002797942],[-104.057099843,44.998628693],[-104.0571,44.9987],[-104.0397,44.9986],[-104.0443,45.9438],[-104.0445,46.0979],[-104.044522817,46.122754864],[-104.0455,47.1872],[-104.0414,47.9112],[-104.0448,48.0005],[-104.0496,49],[-104.0495976,49],[-104.0496,49.0005],[-116.0507,49.0004],[-117.0294,48.9996],[-117.0391,48.5904],[-117.0426,48.0459],[-117.0422,47.3665],[-117.038,46.4288],[-117.0605,46.3629],[-116.987,46.2957],[-116.9631,46.2032],[-116.9218,46.1711],[-116.9569,46.0753],[-116.9383,46.0474],[-116.92,46.0146],[-116.9101,45.9902],[-116.866,45.9152],[-116.789,45.8586],[-116.7614,45.8166],[-116.6935,45.818],[-116.6623,45.7812],[-116.5924,45.7793],[-116.5345,45.7349],[-116.5341,45.6925],[-116.4616,45.6093],[-116.5203,45.5553],[-116.5849,45.4414],[-116.667,45.3271],[-116.7284,45.145],[-116.8413,45.0287],[-116.833,44.9386],[-116.8552,44.8816],[-116.9352,44.783],[-117.0285,44.7511],[-117.1414,44.57],[-117.1473,44.5352],[-117.224,44.4799],[-117.213,44.4282],[-117.2402,44.3893],[-117.1896,44.3309],[-117.2181,44.3018],[-117.181,44.2644],[-117.0924,44.2718],[-117.052,44.2329],[-116.971,44.2348],[-116.9664,44.1964],[-116.8935,44.1703],[-116.9196,44.1076],[-116.9689,44.0873],[-116.936,43.9916],[-116.9728,43.9678],[-116.962,43.9126],[-116.9826,43.8669],[-117.0203,43.8594],[-117.0271,43.8082],[-117.0293,42.0003],[-115.2264,41.9945],[-114.8546,42.0003],[-114.5984,41.9953],[-114.044298938,41.993413276],[-113.8526,41.9898],[-112.9579,41.999],[-112.164,42.0017],[-112.156,41.9981],[-111.5833,42.0042],[-111.4479,42.0012],[-111.046989374,42.000501202],[-111.0456,40.9978],[-110.2764,40.9963],[-110.0001,40.9992],[-109.049,41],[-109.0538,39.0135],[-109.0596,38.6727],[-109.0607,38.2768],[-109.0409,38.1603],[-109.0437,37.7536],[-109.0449,36.9986],[-107.965,36.9971],[-107.4147,36.9994],[-106.8787,36.999],[-106.8717,36.9923],[-105.76177659,36.99698154]]]},"properties":{"id":"1f30181c-ab24-4bfc-989c-162d4b17a83e","code":"MW","name":"Mountain West","abbreviation":"R-MW","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.6606,40.9889],[-73.6007,41.0183],[-73.5297,41.0171],[-73.3719,41.1089],[-73.262,41.118],[-73.1736,41.1686],[-73.1302,41.1471],[-73.0468,41.2122],[-73.014,41.2048],[-72.9156,41.2967],[-72.8936,41.2419],[-72.7861,41.265],[-72.5808,41.2719],[-72.5192,41.2578],[-72.4506,41.2794],[-72.3881,41.2608],[-72.3531,41.3106],[-72.3311,41.2806],[-72.2725,41.2853],[-72.1783,41.3231],[-72.0947,41.3094],[-71.9681,41.3516],[-71.8607,41.3225],[-71.8317,41.3445],[-71.8397,41.3613],[-71.8276,41.3388],[-71.852,41.3097],[-71.7147,41.3305],[-71.6159,41.3638],[-71.5295,41.3769],[-71.487,41.3616],[-71.4217,41.4711],[-71.4185,41.5287],[-71.4455,41.5723],[-71.4074,41.5882],[-71.4092,41.6631],[-71.3802,41.7271],[-71.393,41.8179],[-71.3377,41.7248],[-71.2799,41.7415],[-71.3071,41.673],[-71.2691,41.6507],[-71.227,41.7183],[-71.197,41.7046],[-71.2215,41.5607],[-71.176,41.4589],[-71.0942,41.5032],[-71.0547,41.5512],[-71.0361,41.483],[-70.9506,41.5168],[-70.9152,41.6219],[-70.8004,41.6302],[-70.7566,41.6532],[-70.7652,41.7109],[-70.7216,41.7359],[-70.6512,41.7143],[-70.6378,41.7367],[-70.5797,41.7533],[-70.5639,41.7711],[-70.5439,41.7772],[-70.5136,41.7736],[-70.5147,41.7886],[-70.5367,41.9208],[-70.5844,41.9515],[-70.6468,41.9503],[-70.7106,42.0014],[-70.6372,42.0836],[-70.6778,42.1233],[-70.7206,42.2072],[-70.7677,42.2511],[-70.8547,42.2678],[-70.9669,42.2453],[-71.0453,42.2944],[-71.0436,42.3231],[-70.9764,42.3708],[-70.9814,42.4259],[-70.8947,42.46],[-70.8407,42.5186],[-70.8692,42.5478],[-70.6983,42.5767],[-70.5951,42.6344],[-70.63,42.693],[-70.7272,42.6481],[-70.7942,42.75],[-70.8269,42.8875],[-70.7108,43.0425],[-70.8106,43.1178],[-70.8531,43.1172],[-70.8331,43.0603],[-70.9167,43.0558],[-70.8656,43.0892],[-70.8592,43.1333],[-70.8175,43.1236],[-70.7367,43.0744],[-70.6644,43.0764],[-70.5753,43.2219],[-70.5889,43.2631],[-70.5153,43.3454],[-70.451,43.3468],[-70.3639,43.4386],[-70.3856,43.4953],[-70.3419,43.54],[-70.2728,43.5625],[-70.1972,43.565],[-70.2514,43.6781],[-70.1647,43.7725],[-69.9844,43.8675],[-69.9537,43.849],[-69.9778,43.7867],[-69.8886,43.8834],[-69.8454,43.8048],[-69.8761,43.7936],[-69.8517,43.7031],[-69.8031,43.7442],[-69.7909,43.7904],[-69.8112,43.8358],[-69.8092,43.9256],[-69.737,43.9021],[-69.6765,43.9961],[-69.6292,44.017],[-69.6643,43.9651],[-69.6606,43.8836],[-69.6307,43.8373],[-69.5589,43.8922],[-69.5022,43.8389],[-69.4196,43.9798],[-69.3464,44.056],[-69.3708,43.9772],[-69.3028,43.978],[-69.2569,43.9228],[-69.2135,43.9361],[-69.1649,44.0027],[-69.0732,44.0462],[-69.0528,44.0848],[-69.1069,44.0907],[-69.0605,44.2071],[-68.9539,44.3239],[-68.9475,44.3536],[-68.9939,44.4214],[-68.9214,44.4572],[-68.8603,44.4461],[-68.7783,44.4922],[-68.8161,44.4281],[-68.8278,44.3119],[-68.7594,44.3317],[-68.6056,44.2758],[-68.5228,44.2283],[-68.5203,44.2664],[-68.5636,44.3081],[-68.545,44.3556],[-68.5678,44.3856],[-68.4975,44.4167],[-68.4675,44.4936],[-68.4375,44.4825],[-68.4281,44.3964],[-68.3225,44.4628],[-68.2833,44.4517],[-68.2689,44.5043],[-68.23,44.4631],[-68.2117,44.5197],[-68.1711,44.4697],[-68.12,44.4575],[-68.1144,44.4075],[-68.0764,44.3472],[-68.0456,44.3384],[-68.0126,44.4036],[-67.96,44.3978],[-67.9928,44.46],[-67.9022,44.3956],[-67.8542,44.4789],[-67.8525,44.5589],[-67.7992,44.5697],[-67.7807,44.5222],[-67.7533,44.6017],[-67.7428,44.4967],[-67.6434,44.5659],[-67.6355,44.5285],[-67.5715,44.5295],[-67.5514,44.6553],[-67.459,44.5959],[-67.396,44.6021],[-67.3619,44.6351],[-67.39,44.6957],[-67.3061,44.7087],[-67.3128,44.6597],[-67.2344,44.6367],[-67.189,44.6442],[-67.0735,44.7409],[-66.979,44.8056],[-67.0183,44.8861],[-67.0772,44.8767],[-67.1516,44.8217],[-67.1496,44.8623],[-67.2044,44.9067],[-67.0884,44.918],[-67.0319,44.9389],[-67.1086,45.0592],[-67.1147,45.0975],[-67.1633,45.1583],[-67.2808,45.1917],[-67.3022,45.1451],[-67.3816,45.1521],[-67.4663,45.2477],[-67.4776,45.2873],[-67.4215,45.3763],[-67.474,45.4237],[-67.4876,45.4897],[-67.4516,45.5111],[-67.4257,45.5785],[-67.4566,45.6053],[-67.5302,45.5983],[-67.6736,45.6278],[-67.7091,45.6793],[-67.7593,45.6712],[-67.8029,45.696],[-67.7825,45.7309],[-67.8034,45.7982],[-67.7651,45.8207],[-67.8027,45.8737],[-67.7549,45.9149],[-67.781,45.9457],[-67.7839,46.6017],[-67.7836,47.0632],[-67.8893,47.1106],[-67.958,47.2003],[-68.2438,47.3526],[-68.3698,47.3517],[-68.3805,47.2874],[-68.4752,47.297],[-68.5804,47.2869],[-68.6124,47.246],[-68.6893,47.2428],[-68.8158,47.2119],[-68.8975,47.1766],[-69.0405,47.2439],[-69.0547,47.3146],[-69.0443,47.4028],[-69.1786,47.4569],[-69.2218,47.4576],[-69.392,47.2984],[-69.9971,46.6958],[-70.0572,46.4147],[-70.0953,46.4081],[-70.1473,46.3589],[-70.1953,46.3434],[-70.292,46.1909],[-70.242,46.1502],[-70.283,46.0999],[-70.3142,46.0208],[-70.3144,45.9665],[-70.2602,45.9644],[-70.2663,45.8849],[-70.3455,45.8508],[-70.4162,45.7956],[-70.3902,45.7328],[-70.5613,45.6627],[-70.6459,45.6041],[-70.7184,45.5127],[-70.626,45.4018],[-70.6572,45.3772],[-70.7545,45.4277],[-70.8233,45.403],[-70.8066,45.3211],[-70.8445,45.2447],[-70.8929,45.2439],[-70.9234,45.3181],[-70.9566,45.3426],[-71.0997,45.3023],[-71.1623,45.2469],[-71.23,45.2503],[-71.2839,45.3023],[-71.3603,45.2686],[-71.4132,45.2202],[-71.4342,45.1202],[-71.4847,45.0809],[-71.511,45.0134],[-72.3084,45.0037],[-72.6318,45.014],[-73.0908,45.0153],[-73.3442,45.0103],[-73.3411,44.9199],[-73.3813,44.837],[-73.3369,44.7839],[-73.3645,44.7409],[-73.3889,44.6335],[-73.3812,44.5893],[-73.2998,44.4804],[-73.2947,44.4384],[-73.3374,44.3638],[-73.3163,44.2541],[-73.3927,44.1912],[-73.4434,44.0526],[-73.4107,44.0189],[-73.4101,43.9351],[-73.3783,43.8758],[-73.3933,43.8209],[-73.356,43.7651],[-73.4317,43.6439],[-73.4302,43.5834],[-73.386,43.5812],[-73.3751,43.6233],[-73.3056,43.627],[-73.2975,43.5793],[-73.2581,43.5617],[-73.2506,43.5108],[-73.2789,42.8337],[-73.2754,42.7456],[-73.2675,42.7452],[-73.4822,42.1648],[-73.5084,42.0858],[-73.4981,42.0496],[-73.4923,41.9865],[-73.5523,41.2933],[-73.4838,41.2136],[-73.7297,41.1009],[-73.657,41.0119],[-73.6606,40.9889]]],[[[-70.1936,42.0808],[-70.2331,42.0597],[-70.1958,42.0214],[-70.1683,42.06],[-70.1127,42.0461],[-70.0789,41.9928],[-70.0719,41.8981],[-70.0239,41.9303],[-70.0067,41.8056],[-70.0528,41.7761],[-70.2175,41.7433],[-70.2603,41.7123],[-70.2892,41.7347],[-70.4139,41.7444],[-70.4961,41.7753],[-70.5064,41.7714],[-70.5478,41.7756],[-70.5631,41.7689],[-70.5761,41.7536],[-70.5908,41.7458],[-70.6183,41.74],[-70.615,41.6575],[-70.6502,41.6456],[-70.6346,41.5382],[-70.5489,41.5506],[-70.5267,41.5792],[-70.4839,41.5546],[-70.4322,41.6206],[-70.3992,41.6064],[-70.3392,41.6372],[-70.1386,41.6504],[-70.0122,41.6731],[-69.9633,41.6531],[-69.9454,41.7036],[-69.9778,41.7216],[-69.9653,41.7742],[-69.9289,41.7547],[-69.9783,41.9364],[-70.0664,42.0453],[-70.1936,42.0808]]],[[[-68.3097,44.4431],[-68.3694,44.4208],[-68.4317,44.3097],[-68.4072,44.2581],[-68.3397,44.2222],[-68.2905,44.2495],[-68.2944,44.2867],[-68.2306,44.2875],[-68.1731,44.3281],[-68.1856,44.3706],[-68.3097,44.4431]]],[[[-70.5974,41.4797],[-70.6591,41.4605],[-70.7744,41.3497],[-70.8377,41.3455],[-70.7699,41.3024],[-70.7344,41.3372],[-70.6413,41.3494],[-70.4508,41.3487],[-70.4641,41.4019],[-70.4971,41.3841],[-70.568,41.4186],[-70.5974,41.4797]]],[[[-70.0458,41.3897],[-70.0039,41.3231],[-70.0797,41.2819],[-70.1972,41.2967],[-70.2122,41.2725],[-70.1017,41.2406],[-69.9719,41.2469],[-69.9722,41.2992],[-70.0458,41.3897]]],[[[-71.2438,41.4995],[-71.2397,41.617],[-71.2747,41.6207],[-71.3235,41.515],[-71.2966,41.4841],[-71.2438,41.4995]]],[[[-68.6578,44.2694],[-68.7086,44.2272],[-68.7119,44.1681],[-68.6464,44.1558],[-68.6589,44.2111],[-68.6078,44.2408],[-68.6578,44.2694]]],[[[-69.7508,43.8706],[-69.7831,43.7961],[-69.7575,43.7511],[-69.7074,43.828],[-69.7508,43.8706]]],[[[-68.8672,44.1204],[-68.8853,44.0856],[-68.8178,44.0317],[-68.7806,44.085],[-68.8297,44.0814],[-68.8672,44.1204]]],[[[-71.576,41.2305],[-71.6129,41.1569],[-71.5501,41.1519],[-71.576,41.2305]]],[[[-68.615,44.0875],[-68.6517,44.065],[-68.6611,44.0172],[-68.6042,44.0386],[-68.615,44.0875]]],[[[-70.7117,41.5142],[-70.802,41.4667],[-70.7908,41.4458],[-70.7063,41.4968],[-70.7117,41.5142]]],[[[-68.8214,44.1833],[-68.9175,44.1481],[-68.8597,44.1261],[-68.8214,44.1833]]],[[[-69.6693,43.9591],[-69.7314,43.8903],[-69.6994,43.8722],[-69.6693,43.9591]]],[[[-69.7958,43.9044],[-69.7889,43.8122],[-69.7619,43.8862],[-69.7958,43.9044]]],[[[-68.4083,44.1783],[-68.4611,44.1597],[-68.4203,44.1278],[-68.4083,44.1783]]],[[[-68.4969,44.365],[-68.5331,44.3306],[-68.48,44.3172],[-68.4969,44.365]]]]},"properties":{"id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5","code":"NE","name":"New England","abbreviation":"R-NE","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-170.680638631,-14.282476107],[-170.567497197,-14.269325997],[-170.672442928,-14.241035743],[-170.732063743,-14.282688197],[-170.82071228,-14.300050544],[-170.759218852,-14.373241822],[-170.702067693,-14.326775719],[-170.680638631,-14.282476107]]],[[[-169.420166016,-14.234145385],[-169.501431552,-14.216898051],[-169.491531372,-14.271703856],[-169.420166016,-14.234145385]]]]},"properties":{"id":"a53380c2-83da-4713-bc27-3e3310ebb65e","code":"PI","name":"Other Pacific Islands","abbreviation":"R-PI","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.022087096,17.977361679],[-65.914024352,17.975973129],[-65.830139159,18.019027711],[-65.761253,18.154585],[-65.725418,18.188194],[-65.604584,18.210417],[-65.62764,18.259306],[-65.619308,18.365973],[-65.666527,18.361805],[-65.814857483,18.409305572],[-65.904861,18.453194],[-66.005142212,18.44430542],[-66.185974001,18.46986],[-66.284584046,18.471248627],[-66.397636414,18.49319458],[-66.452919007,18.469305038],[-66.622642518,18.494026184],[-66.702079773,18.474027635],[-66.781806946,18.491804123],[-66.9118042,18.48374939],[-67.016807556,18.510971069],[-67.090698243,18.515972138],[-67.169303894,18.480138779],[-67.163749696,18.411804199],[-67.270416259,18.366527557],[-67.235137939,18.299304962],[-67.195419312,18.290138245],[-67.153198,18.204306],[-67.185417,18.165974],[-67.181808,18.112638],[-67.215416,17.982916],[-67.105698,17.945415],[-67.062363,17.973747],[-66.987915,17.970415],[-66.953751,17.932362],[-66.838470459,17.949306489],[-66.770141602,18.005973817],[-66.672363,17.965973],[-66.578476,17.961529],[-66.459305,17.989584],[-66.392082,17.946529],[-66.317085,17.977083],[-66.237083,17.926527],[-66.206802,17.962641],[-66.15486145,17.929304122],[-66.022087096,17.977361679]]],[[[-64.664306641,17.714860916],[-64.580696,17.747357999],[-64.655135999,17.763472],[-64.709587098,17.747083663],[-64.747642517,17.783750534],[-64.894584655,17.747358323],[-64.883193971,17.685693741],[-64.740417,17.695972],[-64.664306641,17.714860916]]],[[[-65.390976,18.161806],[-65.57708,18.119583],[-65.542641,18.080973],[-65.423195,18.095972],[-65.363747,18.130138],[-65.27597,18.131805],[-65.390976,18.161806]]],[[[-64.888191,18.35486],[-64.963752999,18.372084001],[-65.027359,18.362919],[-64.905975,18.310141],[-64.840698,18.317638],[-64.888191,18.35486]]],[[[-67.859863,18.121248001],[-67.912086,18.120419],[-67.945968999,18.084028001],[-67.897362001,18.052360999],[-67.845139,18.081246999],[-67.859863,18.121248001]]],[[[-65.337082,18.349028],[-65.282639,18.280416],[-65.272636,18.331249],[-65.337082,18.349028]]],[[[-64.762916565,18.321527481],[-64.699585,18.303749],[-64.744026,18.365973],[-64.762916565,18.321527481]]]]},"properties":{"id":"935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3","code":"PR","name":"Puerto Rico and US Virgin Islands","abbreviation":"R-PR","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-102.042300012,36.992205645],[-102.4775,36.9963],[-102.7859,36.9988],[-103.0009,36.999],[-103.000899764,36.998412581],[-103.0007,36.5013],[-103.0408,36.5005],[-103.0426,34.9535],[-103.0427,34.0007],[-103.0632,33.0017],[-103.0642,31.9996],[-104.7467,32.0032],[-105.2534,32.0017],[-106.6193,32.0012],[-106.6143,31.9535],[-106.636,31.8694],[-106.5706,31.8102],[-106.5508,31.8118],[-106.4904,31.7486],[-106.4507,31.7642],[-106.3816,31.7324],[-106.3032,31.6218],[-106.2811,31.5626],[-106.2471,31.5425],[-106.2196,31.4815],[-106.0802,31.3985],[-106.0048,31.3927],[-105.9541,31.3645],[-105.9325,31.3127],[-105.8749,31.2912],[-105.7726,31.1662],[-105.6485,31.1155],[-105.6041,31.0833],[-105.5576,30.99],[-105.4162,30.9003],[-105.3877,30.8537],[-105.2504,30.799],[-105.2155,30.8058],[-105.1617,30.7524],[-105.1188,30.7497],[-105.0546,30.6821],[-105.0069,30.6858],[-104.9717,30.61],[-104.927,30.6046],[-104.8736,30.5135],[-104.8592,30.3904],[-104.8166,30.3751],[-104.8113,30.3327],[-104.7605,30.2959],[-104.6873,30.1799],[-104.6862,30.0848],[-104.7066,30.0506],[-104.6769,29.9124],[-104.6157,29.8464],[-104.5506,29.7391],[-104.5159,29.641],[-104.3845,29.5422],[-104.2645,29.5127],[-104.2091,29.4814],[-104.1679,29.3955],[-104.1078,29.3736],[-104.0379,29.3199],[-103.9762,29.2967],[-103.7833,29.2655],[-103.7186,29.1809],[-103.5504,29.1545],[-103.4289,29.0421],[-103.3865,29.0214],[-103.154,28.9714],[-103.1139,28.9868],[-103.1007,29.0603],[-103.0338,29.1012],[-102.9786,29.1862],[-102.9504,29.1783],[-102.8674,29.2237],[-102.9059,29.2615],[-102.8775,29.3546],[-102.8392,29.3589],[-102.8083,29.5226],[-102.7402,29.5979],[-102.7362,29.6417],[-102.6933,29.6767],[-102.6741,29.7445],[-102.548,29.7446],[-102.5174,29.7838],[-102.4071,29.7642],[-102.3415,29.8694],[-102.3008,29.8777],[-102.116,29.7919],[-102.0727,29.7866],[-101.9817,29.815],[-101.9337,29.7855],[-101.8562,29.807],[-101.7101,29.7618],[-101.5749,29.7693],[-101.5395,29.7606],[-101.4534,29.7847],[-101.3477,29.662],[-101.3057,29.6542],[-101.3133,29.6038],[-101.2479,29.6195],[-101.2541,29.5208],[-101.1856,29.518],[-101.1476,29.4745],[-101.0601,29.4585],[-101.0047,29.3653],[-100.8862,29.3074],[-100.8803,29.2827],[-100.7943,29.2421],[-100.7761,29.1727],[-100.6644,29.0747],[-100.6454,28.9399],[-100.5476,28.8262],[-100.5074,28.7402],[-100.4973,28.6587],[-100.3985,28.5851],[-100.411,28.5498],[-100.3407,28.4488],[-100.3427,28.3864],[-100.2866,28.3122],[-100.2942,28.2836],[-100.2095,28.1913],[-100.0862,28.1462],[-100.0182,28.0657],[-99.9905,27.9936],[-99.9315,27.9803],[-99.9373,27.9409],[-99.8937,27.8998],[-99.8708,27.794],[-99.808,27.7653],[-99.7226,27.6674],[-99.6034,27.6419],[-99.5115,27.5641],[-99.5282,27.4982],[-99.4788,27.4795],[-99.5045,27.3388],[-99.4966,27.2729],[-99.4418,27.2508],[-99.4262,27.1761],[-99.4453,27.0218],[-99.3813,26.9793],[-99.3747,26.9324],[-99.3285,26.9195],[-99.3152,26.8674],[-99.282,26.8588],[-99.209,26.7247],[-99.1729,26.6166],[-99.1669,26.536],[-99.1284,26.5255],[-99.0916,26.4756],[-99.1132,26.4312],[-99.0868,26.4014],[-99.0411,26.4125],[-98.8803,26.3662],[-98.7996,26.3635],[-98.738,26.3253],[-98.7146,26.27],[-98.4426,26.1989],[-98.3216,26.1183],[-98.2821,26.1263],[-98.249,26.0721],[-98.1768,26.0753],[-98.1432,26.0541],[-98.0622,26.0463],[-97.8083,26.0609],[-97.7911,26.0336],[-97.7032,26.0321],[-97.6381,26.0021],[-97.5407,25.9313],[-97.523,25.8882],[-97.469,25.8889],[-97.4426,25.8484],[-97.3951,25.8385],[-97.3629,25.8675],[-97.3697,25.9165],[-97.2808,25.9353],[-97.2157,25.9701],[-97.196,26.0465],[-97.2071,26.0793],[-97.2729,26.0876],[-97.3001,26.1432],[-97.2979,26.2546],[-97.3443,26.2676],[-97.3579,26.3376],[-97.3276,26.3574],[-97.4074,26.4796],[-97.4679,26.7096],[-97.4782,26.8054],[-97.5529,26.8421],[-97.5504,26.8963],[-97.4693,26.8412],[-97.4565,26.9424],[-97.5076,26.9068],[-97.5549,26.9387],[-97.5385,26.9874],[-97.4518,26.984],[-97.4686,27.0697],[-97.4483,27.0914],[-97.4222,27.262],[-97.5432,27.229],[-97.6311,27.2425],[-97.6922,27.3348],[-97.5678,27.3178],[-97.4866,27.3845],[-97.4786,27.2994],[-97.4116,27.3226],[-97.3701,27.4077],[-97.3454,27.5079],[-97.2554,27.6921],[-97.333,27.7196],[-97.3882,27.7701],[-97.3781,27.8361],[-97.4786,27.8253],[-97.4795,27.8601],[-97.4008,27.8764],[-97.2468,27.8733],[-97.1919,27.8208],[-97.1297,27.9171],[-97.0253,28.0322],[-97.0609,28.088],[-97.135,28.0475],[-97.2033,28.0678],[-97.1719,28.1214],[-97.0324,28.1881],[-96.9842,28.1275],[-96.9122,28.1264],[-96.8314,28.1983],[-96.7873,28.2556],[-96.8097,28.29],[-96.7953,28.3646],[-96.8594,28.4142],[-96.8375,28.4325],[-96.7832,28.4004],[-96.7536,28.4351],[-96.7073,28.4056],[-96.7044,28.3473],[-96.6541,28.3262],[-96.433,28.4283],[-96.4053,28.4543],[-96.5674,28.5828],[-96.6129,28.5682],[-96.6112,28.6367],[-96.6648,28.6967],[-96.5861,28.725],[-96.5631,28.6378],[-96.509,28.6405],[-96.4841,28.6085],[-96.4196,28.6479],[-96.4356,28.7381],[-96.3978,28.7371],[-96.3955,28.6806],[-96.3611,28.6267],[-96.3042,28.6459],[-96.2872,28.6836],[-96.1817,28.7072],[-96.2313,28.644],[-96.2114,28.6144],[-96.1569,28.6117],[-96.0297,28.6529],[-95.9797,28.6367],[-96.0356,28.5844],[-96.1444,28.5444],[-96.3353,28.4381],[-96.3186,28.4231],[-96.2253,28.4881],[-96.0886,28.5536],[-95.8684,28.6394],[-95.6614,28.7445],[-95.7868,28.6959],[-95.8947,28.6408],[-95.9608,28.6253],[-95.9271,28.6997],[-95.7864,28.7486],[-95.6542,28.7503],[-95.4397,28.86],[-95.3853,28.8672],[-95.2183,29.0052],[-95.1495,29.1802],[-95.1003,29.1759],[-95.0358,29.2133],[-94.9397,29.3203],[-94.8692,29.28],[-94.9258,29.2528],[-95.0451,29.1376],[-94.8237,29.2668],[-94.7253,29.3331],[-94.8702,29.2904],[-94.9074,29.3399],[-94.8663,29.374],[-94.8913,29.4338],[-94.9536,29.4723],[-95.0167,29.5569],[-94.9822,29.6022],[-95.0155,29.6385],[-94.981,29.6765],[-95.0535,29.7067],[-95.0994,29.7841],[-95.0683,29.8136],[-95.0175,29.7172],[-94.9358,29.6928],[-94.9097,29.6549],[-94.871,29.6729],[-94.8475,29.7253],[-94.7974,29.7668],[-94.7306,29.7767],[-94.6951,29.7449],[-94.7,29.6429],[-94.7638,29.5243],[-94.5511,29.5743],[-94.5122,29.5164],[-94.6816,29.4538],[-94.7674,29.3865],[-94.7294,29.3699],[-94.6598,29.4381],[-94.5058,29.5054],[-94.1188,29.6527],[-93.9725,29.6829],[-93.8385,29.6778],[-93.8133,29.7091],[-93.6872,29.7459],[-93.4987,29.7686],[-93.3467,29.7617],[-93.276,29.7763],[-93.1717,29.7688],[-93.0427,29.7387],[-92.9242,29.6986],[-92.7361,29.6181],[-92.6236,29.585],[-92.4619,29.5608],[-92.3453,29.5342],[-92.2539,29.5397],[-92.1496,29.5846],[-92.0462,29.5845],[-92.1073,29.6127],[-92.1366,29.6672],[-92.2157,29.7485],[-92.1388,29.7843],[-92.1108,29.7422],[-92.0381,29.7811],[-91.8856,29.8358],[-91.8255,29.8239],[-91.8775,29.7475],[-91.8575,29.7053],[-91.7716,29.7464],[-91.6333,29.7431],[-91.6169,29.7103],[-91.6245,29.6285],[-91.5522,29.6335],[-91.5333,29.5278],[-91.4316,29.5416],[-91.4142,29.4967],[-91.3567,29.5158],[-91.3385,29.4903],[-91.2658,29.4786],[-91.2197,29.4367],[-91.1994,29.375],[-91.1336,29.3414],[-91.1192,29.3056],[-91.1361,29.2331],[-91.0625,29.1833],[-91.0342,29.2229],[-91.0109,29.1748],[-90.9713,29.1998],[-90.8783,29.1364],[-90.8079,29.187],[-90.7697,29.1808],[-90.7853,29.1325],[-90.7261,29.1461],[-90.6936,29.2211],[-90.6261,29.2592],[-90.585,29.3186],[-90.4792,29.2911],[-90.4301,29.348],[-90.3776,29.2914],[-90.3394,29.3264],[-90.2987,29.2575],[-90.2207,29.0865],[-90.0839,29.1672],[-90.1283,29.2953],[-90.1303,29.3739],[-90.0503,29.3172],[-90.03,29.3811],[-90.08,29.4481],[-90.1822,29.4664],[-90.2292,29.5075],[-90.2094,29.5631],[-90.1672,29.5792],[-89.9797,29.4578],[-89.9286,29.4619],[-89.9233,29.4975],[-89.8364,29.475],[-89.8369,29.4186],[-89.7761,29.4017],[-89.6916,29.467],[-89.6572,29.4056],[-89.5061,29.3306],[-89.4764,29.295],[-89.4878,29.2318],[-89.4475,29.1819],[-89.4225,29.2106],[-89.3581,29.2036],[-89.2997,29.2197],[-89.2711,29.1672],[-89.2844,29.0875],[-89.2536,29.1014],[-89.2117,29.0406],[-89.1639,29.0286],[-89.1125,29.0825],[-89.1208,29.1194],[-89.0567,29.1064],[-89.1144,29.1578],[-89.0975,29.1881],[-89.1544,29.2292],[-89.1389,29.2858],[-89.1744,29.3214],[-89.2442,29.3117],[-89.2664,29.2517],[-89.3244,29.2678],[-89.3217,29.3007],[-89.2542,29.3311],[-89.2922,29.3669],[-89.3475,29.3309],[-89.4703,29.4014],[-89.5617,29.3933],[-89.5364,29.4458],[-89.5922,29.4867],[-89.6308,29.4833],[-89.7622,29.6292],[-89.6928,29.6133],[-89.6219,29.6597],[-89.5569,29.6608],[-89.6494,29.7131],[-89.6408,29.7675],[-89.495,29.7278],[-89.3936,29.7906],[-89.445,29.8864],[-89.4464,29.9539],[-89.4731,29.9722],[-89.4414,30.0397],[-89.4878,30.0414],[-89.5564,30],[-89.5908,29.8853],[-89.6544,29.8611],[-89.7833,29.9342],[-89.8392,29.9431],[-89.86,30.0011],[-89.8192,30.0447],[-89.7269,30.0636],[-89.6228,30.1569],[-89.4919,30.1828],[-89.4194,30.2317],[-89.4206,30.2533],[-89.3392,30.2961],[-89.3619,30.3447],[-89.3131,30.3755],[-89.2688,30.3418],[-89.2919,30.3039],[-89.0044,30.3875],[-88.8419,30.4092],[-88.7479,30.3485],[-88.693,30.3473],[-88.57,30.4003],[-88.5653,30.3441],[-88.4794,30.3186],[-88.4092,30.3694],[-88.3971,30.3491],[-88.3994,30.395],[-88.4101,30.7033],[-88.4507,31.444],[-88.472,31.9],[-88.4262,32.262],[-88.2474,33.7499],[-88.2067,34.0458],[-88.1535,34.4881],[-88.098,34.8964],[-88.1525,34.9269],[-88.1883,34.9793],[-88.1996,34.9978],[-88.199696512,34.997799817],[-88.78657705,34.996688],[-89.069158116,34.996152664],[-90.3098,34.9966],[-90.3108,35.0015],[-90.2937,35.0371],[-90.2157,35.027],[-90.1792,35.1168],[-90.1604,35.132],[-90.0978,35.1196],[-90.1151,35.1977],[-90.0741,35.2189],[-90.1039,35.2554],[-90.1518,35.2558],[-90.1564,35.3012],[-90.1083,35.309],[-90.0751,35.3847],[-90.1261,35.4158],[-90.1383,35.3795],[-90.1504,35.3745],[-90.1709,35.4187],[-90.0991,35.4804],[-90.0716,35.4109],[-90.0541,35.3893],[-90.0191,35.469],[-90.0491,35.5113],[-90.0362,35.5515],[-89.988,35.5594],[-89.9101,35.5196],[-89.906,35.5331],[-89.9439,35.5624],[-89.9414,35.6023],[-89.8622,35.6322],[-89.9565,35.695],[-89.9527,35.738],[-89.8186,35.7568],[-89.7937,35.7948],[-89.7065,35.8172],[-89.7624,35.8569],[-89.7677,35.8896],[-89.7132,35.9061],[-89.6656,35.8834],[-89.6587,35.9271],[-89.7162,35.9625],[-89.7169,36.0015],[-90.0008,35.9984],[-90.2574,35.9975],[-90.3773,35.9951],[-90.2905,36.115],[-90.2384,36.1382],[-90.2217,36.1811],[-90.1284,36.2305],[-90.068,36.2978],[-90.0669,36.3862],[-90.1441,36.4231],[-90.1536,36.4963],[-91.758,36.4985],[-92.256,36.4965],[-93.3653,36.4968],[-94.1651,36.4996],[-94.6182,36.4984],[-94.6196,36.7664],[-94.619,37],[-95.0336,36.9986],[-95.5236,37.0009],[-97.1468,36.9994],[-99.0005,37.0008],[-100.0902,36.9983],[-100.9441,36.9988],[-102.041933879,36.9922022],[-102.042300011,36.992205645],[-102.042300012,36.992205645]]],[[[-97.2896,26.599],[-97.3613,26.8482],[-97.3793,26.9982],[-97.365,27.205],[-97.3358,27.3225],[-97.2814,27.4628],[-97.1575,27.6934],[-97.0475,27.8336],[-97.1003,27.8175],[-97.2314,27.6317],[-97.2672,27.5406],[-97.3606,27.3664],[-97.3556,27.3111],[-97.3831,27.2614],[-97.395,27.1219],[-97.3862,27.0853],[-97.3924,26.8874],[-97.3529,26.7321],[-97.2896,26.599]]],[[[-91.8983,29.6336],[-91.9825,29.6147],[-92.0263,29.5674],[-91.847,29.4799],[-91.7672,29.4894],[-91.7583,29.5578],[-91.7844,29.5944],[-91.8983,29.6336]]],[[[-96.4067,28.3969],[-96.4555,28.3358],[-96.5431,28.315],[-96.6342,28.2606],[-96.7035,28.1985],[-96.7919,28.1886],[-96.8488,28.0646],[-96.7028,28.1773],[-96.5895,28.2492],[-96.4439,28.3153],[-96.4077,28.3437],[-96.4067,28.3969]]],[[[-91.2389,29.3522],[-91.3342,29.2995],[-91.2792,29.2494],[-91.1367,29.2172],[-91.1364,29.25],[-91.2389,29.3522]]],[[[-97.0484,27.8415],[-96.9731,27.9444],[-96.8492,28.0703],[-96.8435,28.1087],[-96.9258,28.0878],[-96.9678,27.9869],[-97.0379,27.9038],[-97.0484,27.8415]]],[[[-97.2613,26.4287],[-97.319,26.5376],[-97.3362,26.5076],[-97.279,26.4343],[-97.1971,26.2499],[-97.1901,26.2729],[-97.2251,26.4065],[-97.2613,26.4287]]],[[[-89.7019,29.3817],[-89.8139,29.3136],[-89.6836,29.2938],[-89.6394,29.3483],[-89.7064,29.3411],[-89.7019,29.3817]]],[[[-89.3781,29.9089],[-89.4167,29.8689],[-89.3578,29.8511],[-89.3781,29.9089]]],[[[-89.7006,29.4431],[-89.7275,29.3892],[-89.6772,29.3997],[-89.7006,29.4431]]]]},"properties":{"id":"d6157b38-3f86-49ef-8acd-93287d33c0d0","code":"SC","name":"South Central","abbreviation":"R-SC","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-82.5928,38.4186],[-82.6115,38.4718],[-82.6521,38.4912],[-82.6853,38.5305],[-82.7243,38.5581],[-82.7806,38.559],[-82.823,38.5743],[-82.8556,38.6128],[-82.8784,38.6911],[-82.8699,38.735],[-82.884,38.7523],[-82.9254,38.7474],[-82.9665,38.728],[-83.0137,38.7296],[-83.1109,38.6708],[-83.1519,38.6206],[-83.2468,38.6278],[-83.287,38.5998],[-83.33,38.6386],[-83.5393,38.7011],[-83.6217,38.6811],[-83.6573,38.6263],[-83.7547,38.6494],[-83.7946,38.7027],[-83.8686,38.7611],[-83.9597,38.7873],[-84.0775,38.7728],[-84.1762,38.7966],[-84.2185,38.8097],[-84.2295,38.8235],[-84.2383,38.8947],[-84.3284,39.0285],[-84.4076,39.046],[-84.4403,39.1096],[-84.4738,39.1184],[-84.6237,39.0736],[-84.7596,39.1414],[-84.803,39.11],[-84.8342,39.0983],[-84.8884,39.065],[-84.8931,39.054],[-84.8374,38.9887],[-84.8738,38.91],[-84.7877,38.8823],[-84.83,38.8284],[-84.8288,38.7837],[-84.883,38.7931],[-84.9923,38.7777],[-85.1747,38.6879],[-85.2505,38.7322],[-85.4168,38.7357],[-85.4536,38.6847],[-85.437,38.6563],[-85.4235,38.5313],[-85.5047,38.4645],[-85.5981,38.4442],[-85.6498,38.3307],[-85.7432,38.2689],[-85.7829,38.2887],[-85.8328,38.2662],[-85.9044,38.1676],[-85.9028,38.0926],[-85.9398,38.0089],[-86.0145,37.9958],[-86.0464,37.9586],[-86.0928,38.0077],[-86.1682,38.0093],[-86.2603,38.0514],[-86.2729,38.1341],[-86.3198,38.1465],[-86.3988,38.1049],[-86.4666,38.0457],[-86.5219,38.0289],[-86.5285,37.9178],[-86.5816,37.921],[-86.6015,37.8639],[-86.6673,37.8555],[-86.6673,37.9134],[-86.7311,37.8927],[-86.7963,37.9874],[-86.8599,37.9849],[-86.9126,37.9409],[-86.986,37.929],[-87.046,37.8901],[-87.0552,37.8288],[-87.107,37.7833],[-87.1673,37.8387],[-87.2414,37.8575],[-87.3434,37.9128],[-87.4166,37.9442],[-87.4732,37.9279],[-87.5114,37.9067],[-87.6011,37.9708],[-87.6279,37.9235],[-87.5934,37.8902],[-87.6379,37.8254],[-87.6642,37.8265],[-87.6679,37.8934],[-87.7545,37.8932],[-87.7909,37.8763],[-87.8608,37.9043],[-87.8824,37.9261],[-87.898,37.9279],[-87.9051,37.9243],[-87.9364,37.892],[-87.9053,37.8199],[-87.9317,37.7969],[-87.9464,37.7782],[-87.9627,37.7743],[-88.027,37.799],[-88.0531,37.7445],[-88.1478,37.6776],[-88.1567,37.6484],[-88.1335,37.5836],[-88.0736,37.5317],[-88.085,37.4776],[-88.2593,37.4575],[-88.3714,37.4074],[-88.4065,37.4263],[-88.444,37.4156],[-88.4742,37.3871],[-88.5133,37.279],[-88.4502,37.2062],[-88.425,37.1543],[-88.4659,37.0771],[-88.5528,37.0713],[-88.617254334,37.113873523],[-88.618958431,37.114642037],[-88.633978755,37.119495934],[-88.676688934,37.133297951],[-88.6965,37.1397],[-88.7954,37.1819],[-88.9595,37.23],[-89.0071,37.2232],[-89.0797,37.1717],[-89.1771,37.059],[-89.1815,37.041],[-89.1702,37.0105],[-89.1339,36.9839],[-89.1006,36.9541],[-89.1164,36.9168],[-89.1311,36.8588],[-89.1785,36.8388],[-89.1612,36.7912],[-89.2016,36.7251],[-89.166,36.6636],[-89.2289,36.5677],[-89.2749,36.5717],[-89.3248,36.6268],[-89.3562,36.6324],[-89.3777,36.6179],[-89.4196,36.498],[-89.4646,36.4571],[-89.4939,36.4835],[-89.4712,36.5308],[-89.4989,36.578],[-89.5352,36.5814],[-89.5482,36.5788],[-89.5624,36.5228],[-89.5249,36.4844],[-89.5515,36.4414],[-89.5192,36.3883],[-89.5264,36.3459],[-89.6042,36.3446],[-89.6167,36.3186],[-89.5456,36.2791],[-89.6083,36.2409],[-89.6733,36.2521],[-89.6946,36.2501],[-89.6985,36.2309],[-89.5896,36.1475],[-89.6564,36.1024],[-89.7169,36.0015],[-89.7162,35.9625],[-89.6587,35.9271],[-89.6656,35.8834],[-89.7132,35.9061],[-89.7677,35.8896],[-89.7624,35.8569],[-89.7065,35.8172],[-89.7937,35.7948],[-89.8186,35.7568],[-89.9527,35.738],[-89.9565,35.695],[-89.8622,35.6322],[-89.9414,35.6023],[-89.9439,35.5624],[-89.906,35.5331],[-89.9101,35.5196],[-89.988,35.5594],[-90.0362,35.5515],[-90.0491,35.5113],[-90.0191,35.469],[-90.0541,35.3893],[-90.0716,35.4109],[-90.0991,35.4804],[-90.1709,35.4187],[-90.1504,35.3745],[-90.1383,35.3795],[-90.1261,35.4158],[-90.0751,35.3847],[-90.1083,35.309],[-90.1564,35.3012],[-90.1518,35.2558],[-90.1039,35.2554],[-90.0741,35.2189],[-90.1151,35.1977],[-90.0978,35.1196],[-90.1604,35.132],[-90.1792,35.1168],[-90.2157,35.027],[-90.2937,35.0371],[-90.3108,35.0015],[-90.3098,34.9966],[-89.069158116,34.996152664],[-88.78657705,34.996688],[-88.199696512,34.997799817],[-88.1996,34.9978],[-88.1883,34.9793],[-88.1525,34.9269],[-88.098,34.8964],[-88.1535,34.4881],[-88.2067,34.0458],[-88.2474,33.7499],[-88.4262,32.262],[-88.472,31.9],[-88.4507,31.444],[-88.4101,30.7033],[-88.3994,30.395],[-88.3577,30.4057],[-88.1881,30.3661],[-88.1909,30.3181],[-88.1294,30.3383],[-88.1073,30.3782],[-88.101,30.5101],[-88.0872,30.5669],[-88.0117,30.6872],[-87.9696,30.7098],[-87.9142,30.6508],[-87.9021,30.5477],[-87.9372,30.4829],[-87.9075,30.4103],[-87.8372,30.3656],[-87.7596,30.2949],[-87.7667,30.2639],[-87.9325,30.2311],[-87.8289,30.2269],[-87.5581,30.2714],[-87.5092,30.3422],[-87.4636,30.3611],[-87.4308,30.4172],[-87.3744,30.4589],[-87.3467,30.4231],[-87.4256,30.4025],[-87.4169,30.3425],[-87.4611,30.3097],[-87.2645,30.3444],[-87.2576,30.3884],[-87.1812,30.4213],[-87.1603,30.4683],[-87.1844,30.5266],[-87.1588,30.5805],[-87.1025,30.5225],[-87.1025,30.4454],[-87.0682,30.4473],[-87.0378,30.5391],[-87.013,30.4984],[-86.9356,30.4547],[-87.0147,30.4034],[-87.0865,30.3991],[-87.0963,30.3729],[-86.9497,30.3953],[-86.7233,30.4108],[-86.6047,30.4011],[-86.51,30.4553],[-86.4522,30.5084],[-86.4208,30.4514],[-86.3192,30.4775],[-86.2097,30.4875],[-86.1189,30.3794],[-86.1653,30.3825],[-86.2481,30.4286],[-86.2456,30.39],[-86.3287,30.3828],[-86.4882,30.418],[-86.5025,30.3819],[-86.3331,30.3703],[-86.1878,30.3342],[-85.9914,30.2686],[-85.7756,30.1567],[-85.7442,30.2128],[-85.7986,30.2531],[-85.8492,30.2325],[-85.845,30.2844],[-85.7631,30.3],[-85.6792,30.2497],[-85.73,30.1872],[-85.6469,30.1347],[-85.58,30.1156],[-85.5242,30.1233],[-85.4944,30.0908],[-85.4831,30.0219],[-85.5328,30.0789],[-85.6006,30.0917],[-85.6192,30.1217],[-85.6869,30.1228],[-85.5411,30.0244],[-85.4769,29.9672],[-85.4122,29.9431],[-85.3628,29.8972],[-85.3028,29.8083],[-85.3045,29.6838],[-85.1147,29.717],[-84.9906,29.715],[-84.9245,29.7611],[-84.9019,29.7344],[-84.757,29.788],[-84.5331,29.9114],[-84.4444,29.9297],[-84.3636,29.9097],[-84.3386,29.9472],[-84.441,29.9613],[-84.4372,29.9875],[-84.3547,29.9694],[-84.3775,30.0092],[-84.3489,30.0606],[-84.289,30.0571],[-84.2706,30.1058],[-84.2067,30.1153],[-84.16,30.072],[-84.1164,30.0942],[-83.9964,30.1041],[-83.9533,30.0612],[-83.8289,29.9822],[-83.7764,29.9761],[-83.6806,29.9226],[-83.5855,29.8178],[-83.5339,29.7214],[-83.4057,29.6533],[-83.3964,29.5244],[-83.2953,29.4368],[-83.2336,29.4323],[-83.1803,29.3619],[-83.167749077,29.306905535],[-83.167803475,29.306862645],[-83.0813,29.2666],[-83.0711,29.1917],[-83.0289,29.1617],[-82.9811,29.1747],[-82.8109,29.1637],[-82.7867,29.0786],[-82.74,29.0217],[-82.71,28.9361],[-82.6383,28.9053],[-82.6514,28.8578],[-82.733,28.8537],[-82.6856,28.7936],[-82.6878,28.7276],[-82.64,28.7008],[-82.6556,28.6303],[-82.6711,28.4341],[-82.7312,28.3255],[-82.7331,28.2828],[-82.8008,28.1708],[-82.7758,28.1097],[-82.8058,27.9547],[-82.8489,27.8736],[-82.6888,27.709],[-82.6381,27.7039],[-82.5983,27.8569],[-82.655,27.9108],[-82.7198,27.9363],[-82.6655,28.0285],[-82.5275,27.9356],[-82.555,27.8496],[-82.4733,27.8217],[-82.4863,27.9227],[-82.4012,27.8779],[-82.3958,27.8147],[-82.4783,27.7472],[-82.5671,27.6263],[-82.5699,27.5679],[-82.6411,27.4737],[-82.6914,27.4708],[-82.5739,27.4053],[-82.5415,27.3304],[-82.5411,27.27],[-82.5022,27.2272],[-82.4444,27.0575],[-82.3576,26.9165],[-82.3018,26.8474],[-82.1913,26.791],[-82.1501,26.7846],[-82.1568,26.8565],[-82.189,26.9674],[-82.1532,26.924],[-82.1174,26.9615],[-82.0088,26.9526],[-82.0971,26.9151],[-82.0601,26.8793],[-82.0546,26.7946],[-82.0879,26.6757],[-82.0468,26.609],[-82.064,26.5671],[-82.0165,26.529],[-82.0137,26.4882],[-81.8765,26.4562],[-81.8374,26.3476],[-81.8015,26.091],[-81.7423,26.0337],[-81.7349,25.9988],[-81.6349,25.9387],[-81.6368,25.9063],[-81.5301,25.8929],[-81.5193,25.8396],[-81.4579,25.8668],[-81.3996,25.8568],[-81.3349,25.7876],[-81.346,25.7215],[-81.2929,25.7057],[-81.2535,25.6415],[-81.1418,25.381],[-81.1007,25.3468],[-80.9799,25.3254],[-80.9038,25.2399],[-80.9638,25.2049],[-81.0024,25.2135],[-81.029,25.2263],[-81.0476,25.2365],[-81.0699,25.2551],[-81.0888,25.311],[-81.1457,25.3268],[-81.1718,25.2235],[-81.0888,25.1374],[-81.0021,25.124],[-80.9004,25.1396],[-80.8468,25.1774],[-80.7165,25.156],[-80.5821,25.2104],[-80.5062,25.2071],[-80.3954,25.2763],[-80.3426,25.3232],[-80.3087,25.3899],[-80.3407,25.4982],[-80.2296,25.7335],[-80.1888,25.7551],[-80.1849,25.8105],[-80.1184,25.8338],[-80.1704,25.8671],[-80.1212,25.8999],[-80.1093,26.0874],[-80.0799,26.2576],[-80.0579,26.4599],[-80.0365,26.5882],[-80.0515,26.7754],[-80.031,26.7949],[-80.0715,26.9437],[-80.0793,26.9088],[-80.0349,26.7982],[-80.0521,26.794],[-80.0807,26.9082],[-80.0799,26.9479],[-80.1201,27.0804],[-80.1575,27.1629],[-80.1917,27.1642],[-80.3216,27.4435],[-80.3747,27.6219],[-80.3754,27.653],[-80.4614,27.8059],[-80.6578,28.1953],[-80.7489,28.4089],[-80.7978,28.5589],[-80.8436,28.75],[-80.8447,28.8],[-80.7417,28.7158],[-80.7847,28.6903],[-80.7842,28.6219],[-80.7261,28.6042],[-80.7331,28.4897],[-80.7203,28.3914],[-80.6833,28.3397],[-80.635,28.5022],[-80.5872,28.5744],[-80.585,28.5158],[-80.6086,28.3758],[-80.6322,28.3225],[-80.6078,28.2639],[-80.6186,28.2122],[-80.5764,28.0775],[-80.5229,27.9929],[-80.4272,27.8139],[-80.4183,27.7665],[-80.3422,27.5958],[-80.3108,27.4708],[-80.2903,27.4728],[-80.3842,27.7424],[-80.5125,27.9764],[-80.5611,28.0792],[-80.5931,28.1906],[-80.6081,28.3103],[-80.5908,28.4078],[-80.525,28.4581],[-80.5747,28.5847],[-80.71,28.7564],[-80.9008,29.0475],[-80.9158,29.0236],[-80.8475,28.9575],[-80.775,28.8522],[-80.7764,28.8256],[-80.6442,28.6675],[-80.6856,28.6706],[-80.7669,28.7572],[-80.8203,28.8383],[-80.8689,28.9403],[-80.9781,29.1286],[-81.0566,29.3045],[-80.9961,29.2036],[-81.1708,29.57],[-81.2583,29.7869],[-81.2644,29.8567],[-81.3014,29.9414],[-81.3786,30.2458],[-81.3931,30.3953],[-81.436,30.5245],[-81.4435,30.5989],[-81.4256,30.7011],[-81.449,30.72],[-81.4522,30.7992],[-81.4064,30.9003],[-81.4027,30.9589],[-81.4633,30.9097],[-81.5131,30.9658],[-81.4611,30.9983],[-81.4841,31.0377],[-81.4256,31.0486],[-81.4606,31.0872],[-81.4353,31.1339],[-81.4631,31.1772],[-81.3883,31.2826],[-81.3717,31.3381],[-81.3347,31.3319],[-81.3333,31.3903],[-81.3758,31.4242],[-81.3261,31.4562],[-81.3319,31.4767],[-81.2919,31.4953],[-81.2314,31.5497],[-81.1659,31.5634],[-81.1301,31.63],[-81.1452,31.699],[-81.1872,31.6878],[-81.2528,31.7567],[-81.1609,31.7277],[-81.2018,31.7866],[-81.145,31.8614],[-81.0894,31.8603],[-81.0214,31.9078],[-80.9933,31.8578],[-80.9335,31.9074],[-80.985,31.9164],[-81.0086,32.0073],[-81.0463,32.0241],[-81.0494,32.0302],[-81.0422,32.0458],[-81.0315,32.0609],[-81.0114,32.0746],[-80.915,32.0842],[-80.9271,32.1258],[-80.8373,32.2144],[-80.7908,32.2028],[-80.7813,32.2602],[-80.7597,32.2767],[-80.8444,32.3831],[-80.8172,32.41],[-80.8275,32.4864],[-80.7883,32.4967],[-80.7836,32.5289],[-80.7642,32.5403],[-80.7486,32.5428],[-80.7361,32.5367],[-80.6731,32.5244],[-80.6519,32.5108],[-80.6303,32.5181],[-80.5849,32.5007],[-80.4651,32.5196],[-80.3928,32.5728],[-80.3892,32.6164],[-80.3378,32.6397],[-80.2882,32.6253],[-80.254,32.678],[-80.18,32.7175],[-80.1711,32.7387],[-80.1583,32.7508],[-80.1037,32.7882],[-80.0022,32.7672],[-79.9853,32.6939],[-79.9906,32.6347],[-79.9064,32.6683],[-79.87,32.7314],[-79.9339,32.755],[-79.935,32.8077],[-79.86,32.7664],[-79.7416,32.8708],[-79.6978,32.8508],[-79.5775,32.9085],[-79.6172,32.9381],[-79.579,33.0069],[-79.5283,33.0381],[-79.4839,33.0036],[-79.3756,33.0467],[-79.3644,33.0762],[-79.2467,33.125],[-79.1946,33.1704],[-79.2106,33.2439],[-79.2581,33.2589],[-79.275,33.3128],[-79.1958,33.2958],[-79.1789,33.2647],[-79.1455,33.3841],[-79.1158,33.4069],[-79,33.5456],[-78.9119,33.6111],[-78.9372,33.6397],[-78.8416,33.7225],[-78.7404,33.7878],[-78.5894,33.8425],[-78.5392,33.8769],[-78.32,33.9167],[-78.2275,33.9228],[-78.0761,33.9029],[-77.9936,33.9297],[-77.9539,33.975],[-77.9403,34.0781],[-77.9683,34.1625],[-77.9253,34.1272],[-77.925,34.0683],[-77.9178,34.0525],[-77.8914,34.0594],[-77.8592,34.1527],[-77.8133,34.2194],[-77.7017,34.344],[-77.5309,34.4584],[-77.4645,34.493],[-77.3741,34.5175],[-77.3615,34.5521],[-77.4366,34.5896],[-77.4441,34.6162],[-77.3729,34.6267],[-77.3778,34.7036],[-77.3376,34.6397],[-77.4003,34.5969],[-77.3172,34.5461],[-77.0898,34.7151],[-77.0878,34.673],[-76.8933,34.725],[-76.6931,34.7211],[-76.7375,34.7792],[-76.6589,34.7475],[-76.6908,34.7139],[-76.6172,34.7075],[-76.6094,34.8064],[-76.5797,34.7228],[-76.5067,34.7256],[-76.3981,34.8658],[-76.3314,34.885],[-76.3281,34.9369],[-76.2769,34.9603],[-76.3108,35.0064],[-76.3444,34.9711],[-76.4564,34.94],[-76.425,35.0012],[-76.4359,35.0584],[-76.4719,35.0724],[-76.4841,34.9853],[-76.518,35.0037],[-76.5902,34.9783],[-76.6302,34.9887],[-76.7608,34.9154],[-76.8532,34.937],[-76.9752,35.0016],[-76.9887,35.0433],[-77.047,35.1041],[-76.9252,35.0515],[-76.8039,34.9639],[-76.7131,35.0047],[-76.5701,35.0985],[-76.5439,35.1423],[-76.6525,35.1637],[-76.5989,35.1881],[-76.59,35.2417],[-76.4793,35.2471],[-76.4969,35.3108],[-76.7356,35.3554],[-76.844,35.4241],[-76.9262,35.4488],[-76.9674,35.4331],[-76.9786,35.4837],[-76.8333,35.4481],[-76.7583,35.4193],[-76.7108,35.4289],[-76.576,35.3881],[-76.5985,35.4819],[-76.6516,35.5455],[-76.537,35.5286],[-76.4539,35.5522],[-76.4721,35.511],[-76.5625,35.492],[-76.5401,35.4096],[-76.4821,35.3947],[-76.3891,35.4273],[-76.3019,35.3519],[-76.2603,35.3761],[-76.2043,35.3383],[-76.0961,35.3618],[-76.0839,35.391],[-75.9994,35.4553],[-75.9442,35.5358],[-75.8834,35.5832],[-75.8821,35.6344],[-75.8358,35.5706],[-75.7744,35.5814],[-75.7339,35.6308],[-75.7795,35.6875],[-75.7169,35.6938],[-75.7387,35.7507],[-75.7281,35.8244],[-75.7827,35.9332],[-75.9079,35.9324],[-75.9854,35.8891],[-75.9757,35.8391],[-75.9992,35.695],[-76.0219,35.6508],[-76.0611,35.7176],[-76.0642,35.8536],[-76.0133,35.9236],[-76.073,35.9229],[-76.0543,35.9874],[-76.1481,35.9956],[-76.2703,35.9726],[-76.3494,35.9419],[-76.4058,35.9822],[-76.525,35.9447],[-76.6639,35.9328],[-76.7247,35.9554],[-76.7036,36.0042],[-76.7263,36.0962],[-76.7555,36.1517],[-76.7505,36.2094],[-76.6807,36.3006],[-76.6755,36.2654],[-76.7152,36.2138],[-76.7224,36.1539],[-76.6919,36.0661],[-76.638,36.0359],[-76.6077,36.0561],[-76.5736,36.0092],[-76.4631,36.0231],[-76.4043,36.0788],[-76.3078,36.0922],[-76.4352,36.1628],[-76.3933,36.1694],[-76.215,36.0964],[-76.2465,36.1586],[-76.1668,36.1237],[-76.0615,36.146],[-76.077,36.1923],[-76.1951,36.2967],[-76.1363,36.2884],[-76.0181,36.187],[-75.925,36.1638],[-75.9542,36.2038],[-75.9762,36.3137],[-75.8763,36.1843],[-75.8632,36.1215],[-75.7958,36.0714],[-75.8971,36.3233],[-76.0006,36.4286],[-76.0405,36.5022],[-76.0804,36.4993],[-76.1527,36.5504],[-76.9162,36.5511],[-76.9174,36.544],[-78.125,36.5463],[-78.5095,36.5421],[-78.9763,36.5447],[-79.5112,36.5391],[-80.2775,36.5433],[-80.6523,36.5584],[-80.8632,36.5598],[-81.3698,36.5735],[-81.6758,36.589],[-81.6475,36.6125],[-81.9233,36.6166],[-81.9352,36.595],[-82.2374,36.5967],[-83.2538,36.5942],[-83.6748,36.6012],[-83.6632,36.612],[-83.4979,36.6711],[-83.4221,36.67],[-83.3354,36.7041],[-83.1958,36.7393],[-83.1374,36.7438],[-83.1331,36.7845],[-83.0676,36.8541],[-82.9615,36.861],[-82.8698,36.9005],[-82.8653,36.9786],[-82.7198,37.0484],[-82.7206,37.1205],[-82.555,37.2033],[-82.3523,37.268],[-81.9673,37.5372],[-81.9642,37.544],[-81.9908,37.5404],[-82.1293,37.5525],[-82.1352,37.5965],[-82.2231,37.6542],[-82.2901,37.6708],[-82.3119,37.765],[-82.4178,37.8481],[-82.4201,37.8853],[-82.4874,37.9182],[-82.4701,37.9863],[-82.5085,38.0021],[-82.5495,38.0718],[-82.637,38.1407],[-82.578,38.2508],[-82.5756,38.3302],[-82.5928,38.4186]]],[[[-80.6203,32.5022],[-80.6775,32.5019],[-80.6571,32.4388],[-80.6442,32.2603],[-80.6037,32.2705],[-80.5422,32.3328],[-80.55,32.3589],[-80.4557,32.4058],[-80.4789,32.4453],[-80.6035,32.4443],[-80.6203,32.5022]]],[[[-80.0983,32.7833],[-80.1705,32.7355],[-80.1628,32.7214],[-80.1706,32.7111],[-80.1647,32.7075],[-80.1616,32.7084],[-80.1589,32.7047],[-80.1392,32.7131],[-80.1272,32.7053],[-80.1014,32.7186],[-80.0819,32.7125],[-80.0744,32.7],[-80.0864,32.6872],[-80.1317,32.6664],[-80.1558,32.6108],[-80.1567,32.6064],[-80.1611,32.6039],[-80.1722,32.6019],[-80.1783,32.5937],[-80.2047,32.5839],[-80.1776,32.5593],[-80.1113,32.5941],[-80.0163,32.6113],[-79.9903,32.6939],[-80.0073,32.7658],[-80.0983,32.7833]]],[[[-80.745,32.5397],[-80.7794,32.5281],[-80.7833,32.4972],[-80.8103,32.4725],[-80.765,32.3725],[-80.7014,32.3128],[-80.6628,32.3344],[-80.6886,32.3697],[-80.6631,32.4329],[-80.6828,32.5],[-80.7094,32.525],[-80.745,32.5397]]],[[[-80.3311,32.6328],[-80.3853,32.615],[-80.3852,32.5738],[-80.4112,32.5475],[-80.3358,32.4775],[-80.1975,32.5683],[-80.2419,32.6036],[-80.2983,32.6022],[-80.3311,32.6328]]],[[[-75.7711,36.2267],[-75.8064,36.3128],[-75.8684,36.5505],[-75.8843,36.4732],[-75.8434,36.4222],[-75.8211,36.2914],[-75.774,36.2273],[-75.7448,36.1392],[-75.7375,36.0425],[-75.6864,36.0119],[-75.5708,35.8642],[-75.7275,36.1289],[-75.7711,36.2267]]],[[[-80.0964,32.7158],[-80.1275,32.704],[-80.1392,32.7108],[-80.155,32.7061],[-80.1583,32.7019],[-80.1622,32.7073],[-80.1658,32.7033],[-80.1707,32.7071],[-80.1833,32.7075],[-80.2391,32.6756],[-80.265,32.6221],[-80.2155,32.5871],[-80.1928,32.5996],[-80.1787,32.5959],[-80.1739,32.6031],[-80.1572,32.6078],[-80.135,32.6669],[-80.0864,32.6889],[-80.0964,32.7158]]],[[[-80.7253,32.2697],[-80.7836,32.2227],[-80.8121,32.1101],[-80.7391,32.1466],[-80.6675,32.2144],[-80.7253,32.2697]]],[[[-81.1942,31.5358],[-81.2392,31.5272],[-81.2597,31.4978],[-81.2944,31.4878],[-81.3078,31.4233],[-81.2794,31.3783],[-81.1778,31.5147],[-81.1942,31.5358]]],[[[-82.1588,26.7068],[-82.0943,26.489],[-82.0563,26.4976],[-82.0801,26.5462],[-82.0651,26.6107],[-82.1243,26.699],[-82.1588,26.7068]]],[[[-81.3374,31.2919],[-81.3739,31.2993],[-81.41,31.1367],[-81.3688,31.1452],[-81.3104,31.2141],[-81.3374,31.2919]]],[[[-81.1206,31.8497],[-81.1803,31.7939],[-81.1325,31.7222],[-81.0347,31.8173],[-81.1206,31.8497]]],[[[-81.0092,32.0711],[-81.0292,32.0622],[-81.0283,32.0497],[-81.0396,32.0447],[-81.0481,32.0278],[-81.0283,32.025],[-81.0031,32.0094],[-80.9856,31.9517],[-80.9292,31.9725],[-80.9325,31.9911],[-80.9245,32.0091],[-80.94,32.0154],[-80.9824,32.0597],[-81.0092,32.0711]]],[[[-80.6471,24.9132],[-80.566,24.9557],[-80.474,25.0607],[-80.3715,25.1365],[-80.3679,25.1699],[-80.2851,25.2874],[-80.3302,25.2579],[-80.3501,25.2107],[-80.5126,25.0179],[-80.5674,24.9646],[-80.6471,24.9132]]],[[[-82.1965,26.5515],[-82.1729,26.4688],[-82.0715,26.4215],[-82.014,26.4524],[-82.1599,26.4821],[-82.1965,26.5515]]],[[[-75.9623,36.5504],[-76.013,36.5505],[-75.9886,36.4975],[-75.9119,36.495],[-75.9218,36.5506],[-75.9623,36.5504]]],[[[-75.5186,35.2769],[-75.5967,35.2583],[-75.6372,35.2281],[-75.5294,35.2239],[-75.5186,35.2769]]],[[[-75.7044,35.9386],[-75.6617,35.8686],[-75.6619,35.8242],[-75.6158,35.8389],[-75.6461,35.91],[-75.7044,35.9386]]],[[[-81.7276,25.9735],[-81.7288,25.9079],[-81.6735,25.9007],[-81.6552,25.9426],[-81.7276,25.9735]]],[[[-81.5623,24.6926],[-81.5696,24.6338],[-81.6038,24.5857],[-81.5101,24.6257],[-81.5623,24.6926]]],[[[-80.9775,32.0661],[-80.9242,32.0125],[-80.9217,32.0072],[-80.9261,31.9958],[-80.8764,31.9927],[-80.8608,32.0011],[-80.8478,31.9892],[-80.8422,32.0242],[-80.8797,32.0167],[-80.9775,32.0661]]],[[[-76.1509,36.5504],[-76.0558,36.512],[-76.0358,36.5508],[-76.1509,36.5504]]],[[[-80.4769,32.3433],[-80.505,32.3425],[-80.5468,32.284],[-80.4536,32.3225],[-80.4769,32.3433]]],[[[-85.1122,29.6877],[-85.1828,29.6638],[-85.0972,29.6325],[-85.1122,29.6877]]],[[[-81.0057,25.2732],[-81.0462,25.2374],[-81.0207,25.2279],[-81.0054,25.2282],[-81.0007,25.2162],[-80.9676,25.2185],[-81.0057,25.2732]]],[[[-77.9503,33.9219],[-78.0088,33.8673],[-77.9614,33.8433],[-77.9503,33.9219]]],[[[-81.3653,31.3125],[-81.3181,31.2872],[-81.2954,31.2158],[-81.2827,31.2896],[-81.3653,31.3125]]],[[[-80.8578,31.9944],[-80.8772,31.9911],[-80.9089,31.9942],[-80.9212,31.943],[-80.875,31.9628],[-80.8578,31.9944]]],[[[-81.4132,25.8007],[-81.4246,25.8554],[-81.4799,25.8443],[-81.4132,25.8007]]],[[[-77.8769,34.0728],[-77.8892,34.0569],[-77.9188,34.0512],[-77.9139,33.9719],[-77.8769,34.0728]]],[[[-76.7483,34.7118],[-76.8392,34.6922],[-76.6789,34.6944],[-76.7483,34.7118]]],[[[-80.434,32.4118],[-80.4802,32.3783],[-80.4507,32.3418],[-80.434,32.4118]]],[[[-80.8378,32.1469],[-80.8881,32.1303],[-80.8735,32.0824],[-80.8378,32.1469]]],[[[-80.1958,27.2554],[-80.2644,27.3961],[-80.2592,27.3481],[-80.1958,27.2554]]],[[[-80.4022,32.5347],[-80.419,32.4885],[-80.3602,32.5],[-80.4022,32.5347]]]]},"properties":{"id":"3a101842-0ef2-4472-bf3f-a4400554fea3","code":"SE","name":"Southeast","abbreviation":"R-SE","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-117.0293,42.0003],[-118.0426,41.9974],[-118.7764,41.993],[-119.5064,41.9925],[-120.0003,41.9953],[-119.9984,41.6905],[-119.9999,40.9331],[-119.9955,40.3085],[-120.0053,39.2875],[-120.0009,39.0005],[-119.502818548,38.65661886],[-119.341981891,38.544214822],[-118.8591,38.2047],[-118.1091,37.6663],[-117.699558286,37.366348171],[-117.286724092,37.061653047],[-117.269365759,37.048759017],[-116.79135207,36.688950431],[-116.2954,36.3122],[-115.6513,35.8111],[-115.648,35.8111],[-115.193553028,35.452773599],[-115.065428477,35.350675077],[-114.888038436,35.208708962],[-114.6329,35.0021],[-114.6289,34.9937],[-114.629,34.9112],[-114.6347,34.8802],[-114.5803,34.8307],[-114.5585,34.7796],[-114.4708,34.7152],[-114.431,34.5925],[-114.3789,34.5304],[-114.3849,34.4639],[-114.3354,34.4544],[-114.1378,34.3081],[-114.1295,34.2672],[-114.1339,34.2638],[-114.1556,34.2638],[-114.2259,34.1929],[-114.2688,34.1755],[-114.2886,34.1727],[-114.3226,34.1415],[-114.41,34.1134],[-114.4373,34.0635],[-114.4644,33.9968],[-114.5178,33.96],[-114.5315,33.9407],[-114.5033,33.8671],[-114.5152,33.862],[-114.5284,33.8598],[-114.5185,33.8287],[-114.494,33.7004],[-114.5295,33.6742],[-114.5247,33.5579],[-114.5917,33.5004],[-114.6342,33.4235],[-114.7223,33.4095],[-114.7072,33.3866],[-114.6988,33.3642],[-114.7288,33.3023],[-114.6765,33.2737],[-114.6757,33.1634],[-114.6997,33.1197],[-114.6607,33.0333],[-114.5666,33.0389],[-114.5142,33.029],[-114.4985,33.0072],[-114.467,32.9515],[-114.466,32.8462],[-114.5141,32.8105],[-114.5289,32.7933],[-114.5265,32.758],[-114.6139,32.7291],[-114.681,32.7365],[-114.6985,32.745],[-114.7655,32.6435],[-114.807,32.6227],[-114.8136,32.4939],[-113.9713,32.2378],[-113.2108,32.0001],[-112.0007,31.6272],[-111.075,31.3324],[-109.5106,31.3343],[-109.05,31.3328],[-108.2085,31.3334],[-108.2084,31.7838],[-106.5291,31.7838],[-106.5706,31.8102],[-106.636,31.8694],[-106.6143,31.9535],[-106.6193,32.0012],[-105.2534,32.0017],[-104.7467,32.0032],[-103.0642,31.9996],[-103.0632,33.0017],[-103.0427,34.0007],[-103.0426,34.9535],[-103.0408,36.5005],[-103.0007,36.5013],[-103.000899764,36.998412581],[-103.65304205,36.997237454],[-104.1849,36.9958],[-104.3313,36.993],[-105.0326,36.9934],[-105.1011,36.9957],[-105.76177659,36.99698154],[-106.8717,36.9923],[-106.8787,36.999],[-107.4147,36.9994],[-107.965,36.9971],[-109.0449,36.9986],[-109.0437,37.7536],[-109.0409,38.1603],[-109.0607,38.2768],[-109.0596,38.6727],[-109.0538,39.0135],[-109.049,41],[-110.0001,40.9992],[-110.2764,40.9963],[-111.0456,40.9978],[-111.046989374,42.000501202],[-111.4479,42.0012],[-111.5833,42.0042],[-112.156,41.9981],[-112.164,42.0017],[-112.9579,41.999],[-113.8526,41.9898],[-114.044298938,41.993413276],[-114.5984,41.9953],[-114.8546,42.0003],[-115.2264,41.9945],[-117.0293,42.0003]]]},"properties":{"id":"9432f503-fcbe-4e87-8c25-56d19462434c","code":"SW","name":"Southwest","abbreviation":"R-SW","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-117.0391,48.5904],[-117.0294,48.9998],[-117.4335,49.0009],[-121.9554,49],[-122.7539,49.0033],[-122.7916,48.9798],[-122.7514,48.9111],[-122.7866,48.8855],[-122.7192,48.8494],[-122.7056,48.8003],[-122.6472,48.7847],[-122.6502,48.7156],[-122.6085,48.7628],[-122.5356,48.7754],[-122.4903,48.7425],[-122.5191,48.7168],[-122.5038,48.6568],[-122.4261,48.6],[-122.4886,48.5358],[-122.4709,48.469],[-122.585,48.4661],[-122.6147,48.5225],[-122.6658,48.4847],[-122.6575,48.4083],[-122.558,48.4281],[-122.5331,48.3747],[-122.4847,48.3714],[-122.3747,48.3008],[-122.3972,48.25],[-122.4678,48.2686],[-122.5311,48.2497],[-122.5372,48.1839],[-122.49,48.1206],[-122.4419,48.1307],[-122.4783,48.1878],[-122.4486,48.2325],[-122.3922,48.2303],[-122.3533,48.1879],[-122.362,48.1204],[-122.2378,48.0303],[-122.2309,47.9706],[-122.3066,47.9498],[-122.3373,47.8499],[-122.3954,47.8066],[-122.3736,47.7266],[-122.4358,47.6619],[-122.3369,47.6008],[-122.4209,47.5761],[-122.3682,47.4592],[-122.3259,47.3934],[-122.324,47.3504],[-122.429,47.3193],[-122.435,47.2622],[-122.5101,47.307],[-122.5631,47.2443],[-122.5916,47.1767],[-122.685,47.0978],[-122.7858,47.127],[-122.8149,47.1781],[-122.9077,47.1403],[-122.912,47.0556],[-122.9511,47.0974],[-123,47.0742],[-122.9421,47.1718],[-123.0259,47.1095],[-123.0195,47.1524],[-122.9628,47.1695],[-122.9353,47.2057],[-122.9276,47.2804],[-122.846,47.3114],[-122.8255,47.353],[-122.7877,47.2989],[-122.8308,47.244],[-122.7721,47.1685],[-122.7212,47.2214],[-122.7532,47.2894],[-122.731,47.3358],[-122.6805,47.3664],[-122.6733,47.2881],[-122.5765,47.2572],[-122.5482,47.2856],[-122.572,47.3269],[-122.5385,47.376],[-122.5319,47.4697],[-122.4957,47.5101],[-122.5467,47.5249],[-122.5698,47.5842],[-122.6077,47.5469],[-122.5909,47.6347],[-122.6142,47.6533],[-122.5539,47.7464],[-122.4728,47.7484],[-122.5133,47.8806],[-122.5478,47.9189],[-122.5967,47.9202],[-122.5735,47.8746],[-122.6846,47.7979],[-122.7487,47.7201],[-122.7532,47.6678],[-122.9155,47.6218],[-123.0311,47.5104],[-123.1194,47.39],[-123.0242,47.3613],[-122.901,47.4225],[-122.9116,47.3895],[-123.0192,47.3547],[-123.1187,47.3391],[-123.158,47.3703],[-123.1104,47.4551],[-123.0578,47.5014],[-122.982,47.615],[-122.8889,47.6903],[-122.8645,47.7699],[-122.7866,47.8038],[-122.8322,47.6918],[-122.7715,47.6934],[-122.7431,47.8092],[-122.6864,47.8325],[-122.693,47.8678],[-122.6304,47.8846],[-122.6809,47.9324],[-122.7347,48.0334],[-122.8008,48.0867],[-122.7637,48.1429],[-122.8308,48.1345],[-122.8835,48.0773],[-122.827,48.0442],[-122.8399,48.002],[-122.9153,48.0958],[-122.9752,48.097],[-123.0385,48.0547],[-123.0623,48.1182],[-123.1267,48.1542],[-123.1769,48.155],[-123.2408,48.1172],[-123.3956,48.1144],[-123.5553,48.1511],[-123.6275,48.1389],[-123.6725,48.1631],[-123.8633,48.1542],[-124.0495,48.1776],[-124.1292,48.2206],[-124.2491,48.2641],[-124.275,48.2545],[-124.3844,48.285],[-124.5646,48.3676],[-124.7178,48.3908],[-124.6595,48.327],[-124.7047,48.2369],[-124.7,48.1906],[-124.7342,48.1647],[-124.6872,48.0978],[-124.6614,47.9461],[-124.6229,47.8863],[-124.4969,47.8225],[-124.4728,47.7717],[-124.4314,47.7464],[-124.3667,47.5844],[-124.3203,47.3558],[-124.2794,47.3036],[-124.2339,47.2847],[-124.1861,47.1333],[-124.1723,46.9931],[-124.1778,46.9261],[-124.1272,46.9489],[-124.1492,47.0283],[-124.107,47.0424],[-124.0292,47.0299],[-124.0203,46.9911],[-123.9462,46.9679],[-123.8231,46.9572],[-123.9826,46.9231],[-124.0861,46.8617],[-124.1311,46.9],[-124.1011,46.8136],[-124.0969,46.7464],[-124.0201,46.7129],[-123.8939,46.75],[-123.8512,46.703],[-123.9222,46.6731],[-123.9586,46.6115],[-123.8947,46.5486],[-123.9439,46.4756],[-123.9054,46.4291],[-123.9664,46.3792],[-124.0147,46.3811],[-124.0311,46.4936],[-124.0236,46.5842],[-124.07,46.6364],[-124.0594,46.5386],[-124.0594,46.3956],[-124.0778,46.2842],[-124.0228,46.3142],[-123.8733,46.2406],[-123.8054,46.2836],[-123.7586,46.2755],[-123.6969,46.3067],[-123.6689,46.267],[-123.5642,46.2606],[-123.5377,46.2363],[-123.6126,46.1874],[-123.7325,46.1736],[-123.7679,46.205],[-123.8264,46.19],[-123.855,46.1572],[-123.9526,46.2078],[-123.9828,46.2039],[-123.9329,46.0674],[-123.9389,45.9766],[-123.9973,45.9454],[-123.9632,45.8976],[-123.9693,45.7808],[-123.933,45.6917],[-123.9575,45.5709],[-123.9072,45.5473],[-123.8746,45.4988],[-123.8988,45.4754],[-123.944,45.5072],[-123.9799,45.4866],[-123.9314,45.4037],[-123.9778,45.3385],[-123.9619,45.2797],[-123.9705,45.1583],[-124.0122,45.0772],[-124.0089,45.0122],[-124.0311,44.9033],[-124.0764,44.7719],[-124.0572,44.7367],[-124.0575,44.6596],[-124.0864,44.4856],[-124.0808,44.4256],[-124.0998,44.3342],[-124.1225,44.0927],[-124.1642,43.8289],[-124.2286,43.5689],[-124.2634,43.483],[-124.3336,43.3611],[-124.3858,43.3306],[-124.3814,43.2689],[-124.4753,42.9622],[-124.5558,42.8383],[-124.5214,42.7889],[-124.5138,42.7324],[-124.4739,42.7333],[-124.4136,42.6592],[-124.39,42.57],[-124.4344,42.4322],[-124.4325,42.3203],[-124.4144,42.2519],[-124.3614,42.1808],[-124.3523,42.1005],[-124.2047,41.9819],[-124.2106,41.8769],[-124.2572,41.7858],[-124.1475,41.7186],[-124.1339,41.6558],[-124.0683,41.5456],[-124.0822,41.5108],[-124.0633,41.4333],[-124.1078,41.2233],[-124.164,41.1015],[-124.1125,41.0287],[-124.1531,40.8675],[-124.0881,40.8529],[-124.0889,40.8236],[-124.1836,40.8008],[-124.2228,40.7222],[-124.2997,40.6668],[-124.409,40.4438],[-124.3752,40.3947],[-124.3496,40.3124],[-124.3637,40.2618],[-124.1873,40.1303],[-124.1105,40.1043],[-124.0808,40.0309],[-124.0368,40.0139],[-123.9304,39.9094],[-123.8991,39.8553],[-123.8528,39.8331],[-123.8327,39.7247],[-123.7864,39.6607],[-123.7736,39.5311],[-123.8197,39.4361],[-123.8271,39.3487],[-123.8008,39.3189],[-123.7713,39.1949],[-123.7353,39.1583],[-123.6897,39.0339],[-123.73,38.9542],[-123.6436,38.8414],[-123.4411,38.6989],[-123.3333,38.5644],[-123.2511,38.5095],[-123.1306,38.4523],[-123.0647,38.3536],[-123.0711,38.3269],[-123.0039,38.2966],[-122.9304,38.2135],[-122.8442,38.0908],[-122.9831,38.2347],[-122.9546,38.1767],[-122.9613,38.1114],[-123.01,38.0036],[-122.9325,38.0358],[-122.8306,38.0028],[-122.7756,37.9433],[-122.7019,37.8936],[-122.6747,37.9131],[-122.4999,37.8198],[-122.4378,37.8828],[-122.5014,37.9272],[-122.4617,38.0033],[-122.4969,38.02],[-122.4781,38.1147],[-122.3958,38.1433],[-122.3139,38.1092],[-122.2742,38.0661],[-122.2311,38.0652],[-122.1339,38.0419],[-122.0442,38.1369],[-121.9733,38.0736],[-121.9122,38.0835],[-121.9021,38.0495],[-121.8456,38.0737],[-121.7996,38.0628],[-121.8124,38.0178],[-121.9506,38.0514],[-122.0703,38.0533],[-122.1481,38.0217],[-122.1903,38.0531],[-122.2625,38.0506],[-122.3,38.0103],[-122.3964,37.9542],[-122.3892,37.9092],[-122.3339,37.9092],[-122.2958,37.8294],[-122.3325,37.7825],[-122.2464,37.7517],[-122.1572,37.6558],[-122.1123,37.5106],[-122.0581,37.4964],[-122.0397,37.4408],[-122.2108,37.4919],[-122.2012,37.5396],[-122.2622,37.5744],[-122.3591,37.5922],[-122.3858,37.6289],[-122.3932,37.7074],[-122.3803,37.7739],[-122.4089,37.8117],[-122.5128,37.7764],[-122.4936,37.6275],[-122.5194,37.5378],[-122.4642,37.4972],[-122.4009,37.3586],[-122.4192,37.2478],[-122.4058,37.1972],[-122.3375,37.1176],[-122.2878,37.1047],[-122.2231,37.0242],[-122.1528,36.9753],[-122.0701,36.9481],[-121.9722,36.9536],[-121.9393,36.9779],[-121.8892,36.9581],[-121.8286,36.8819],[-121.7881,36.805],[-121.8201,36.6662],[-121.8859,36.6008],[-121.9386,36.6403],[-121.9772,36.5797],[-121.9353,36.5625],[-121.9473,36.4903],[-121.9144,36.4253],[-121.8989,36.3083],[-121.8114,36.2325],[-121.7081,36.1878],[-121.6331,36.1189],[-121.573,36.0226],[-121.5028,36],[-121.4667,35.8881],[-121.4161,35.8575],[-121.3177,35.7557],[-121.2788,35.6673],[-121.1719,35.6382],[-121.0977,35.547],[-121.0059,35.4617],[-120.9087,35.4482],[-120.84,35.3453],[-120.9,35.2522],[-120.8564,35.2075],[-120.7564,35.1594],[-120.6992,35.1708],[-120.6388,35.1334],[-120.6358,35.0178],[-120.6683,34.9008],[-120.6097,34.8436],[-120.6386,34.7564],[-120.6006,34.7059],[-120.6464,34.5789],[-120.5147,34.5253],[-120.4725,34.4486],[-120.2967,34.4706],[-120.1417,34.4733],[-120.007,34.4603],[-119.8783,34.4064],[-119.7817,34.4156],[-119.7281,34.3956],[-119.6156,34.4211],[-119.4592,34.3739],[-119.3903,34.3181],[-119.2781,34.2669],[-119.2133,34.1453],[-119.1439,34.1083],[-118.9375,34.0431],[-118.8525,34.0336],[-118.8075,34.0005],[-118.7403,34.0331],[-118.5695,34.0417],[-118.5247,34.0297],[-118.4433,33.9464],[-118.3913,33.8379],[-118.4286,33.7742],[-118.297,33.7089],[-118.2528,33.7478],[-118.1811,33.7649],[-118.0947,33.7369],[-118.0056,33.6575],[-117.9281,33.6075],[-117.8828,33.6017],[-117.7822,33.5406],[-117.7142,33.4594],[-117.6767,33.4608],[-117.4719,33.2989],[-117.3262,33.1189],[-117.2789,33.0005],[-117.2514,32.8744],[-117.2811,32.8214],[-117.2389,32.7809],[-117.2558,32.6997],[-117.2154,32.7246],[-117.1253,32.6806],[-117.0914,32.5978],[-117.1231,32.5344],[-115.9952,32.6271],[-114.7192,32.718],[-114.6985,32.745],[-114.681,32.7365],[-114.6139,32.7291],[-114.5265,32.758],[-114.5289,32.7933],[-114.5141,32.8105],[-114.466,32.8462],[-114.467,32.9515],[-114.4985,33.0072],[-114.5142,33.029],[-114.5666,33.0389],[-114.6607,33.0333],[-114.6997,33.1197],[-114.6757,33.1634],[-114.6765,33.2737],[-114.7288,33.3023],[-114.6988,33.3642],[-114.7072,33.3866],[-114.7223,33.4095],[-114.6342,33.4235],[-114.5917,33.5004],[-114.5247,33.5579],[-114.5295,33.6742],[-114.494,33.7004],[-114.5185,33.8287],[-114.5284,33.8598],[-114.5152,33.862],[-114.5033,33.8671],[-114.5315,33.9407],[-114.5178,33.96],[-114.4644,33.9968],[-114.4373,34.0635],[-114.41,34.1134],[-114.3226,34.1415],[-114.2886,34.1727],[-114.2688,34.1755],[-114.2259,34.1929],[-114.1556,34.2638],[-114.1339,34.2638],[-114.1295,34.2672],[-114.1378,34.3081],[-114.3354,34.4544],[-114.3849,34.4639],[-114.3789,34.5304],[-114.431,34.5925],[-114.4708,34.7152],[-114.5585,34.7796],[-114.5803,34.8307],[-114.6347,34.8802],[-114.629,34.9112],[-114.6289,34.9937],[-114.6329,35.0021],[-114.888038436,35.208708962],[-115.065428477,35.350675077],[-115.193553028,35.452773599],[-115.648,35.8111],[-115.6513,35.8111],[-116.2954,36.3122],[-116.79135207,36.688950431],[-117.269365759,37.048759017],[-117.286724092,37.061653047],[-117.699558286,37.366348171],[-118.1091,37.6663],[-118.8591,38.2047],[-119.341981891,38.544214822],[-119.502818548,38.65661886],[-120.0009,39.0005],[-120.0053,39.2875],[-119.9955,40.3085],[-119.9999,40.9331],[-119.9984,41.6905],[-120.0003,41.9953],[-119.5064,41.9925],[-118.7764,41.993],[-118.0426,41.9974],[-117.0293,42.0003],[-117.0271,43.8082],[-117.0203,43.8594],[-116.9826,43.8669],[-116.962,43.9126],[-116.9728,43.9678],[-116.936,43.9916],[-116.9689,44.0873],[-116.9196,44.1076],[-116.8935,44.1703],[-116.9664,44.1964],[-116.971,44.2348],[-117.052,44.2329],[-117.0924,44.2718],[-117.181,44.2644],[-117.2181,44.3018],[-117.1896,44.3309],[-117.2402,44.3893],[-117.213,44.4282],[-117.224,44.4799],[-117.1473,44.5352],[-117.1414,44.57],[-117.0285,44.7511],[-116.9352,44.783],[-116.8552,44.8816],[-116.833,44.9386],[-116.8413,45.0287],[-116.7284,45.145],[-116.667,45.3271],[-116.5849,45.4414],[-116.5203,45.5553],[-116.4616,45.6093],[-116.5341,45.6925],[-116.5345,45.7349],[-116.5924,45.7793],[-116.6623,45.7812],[-116.6935,45.818],[-116.7614,45.8166],[-116.789,45.8586],[-116.866,45.9152],[-116.9101,45.9902],[-116.92,46.0146],[-116.9383,46.0474],[-116.9569,46.0753],[-116.9218,46.1711],[-116.9631,46.2032],[-116.987,46.2957],[-117.0605,46.3629],[-117.038,46.4288],[-117.0422,47.3665],[-117.0426,48.0459],[-117.0391,48.5904]]],[[[-122.602,48.4102],[-122.6647,48.4017],[-122.6705,48.3603],[-122.7539,48.258],[-122.7637,48.2155],[-122.6794,48.1544],[-122.6208,48.1604],[-122.5986,48.1098],[-122.5987,48.0269],[-122.5414,47.9936],[-122.4811,47.9919],[-122.4308,47.9139],[-122.3758,47.9246],[-122.3492,47.959],[-122.3767,48.0345],[-122.4462,48.0528],[-122.5214,48.0975],[-122.5264,48.0163],[-122.5717,48.1027],[-122.5672,48.1478],[-122.6579,48.2826],[-122.5064,48.3103],[-122.5606,48.3464],[-122.602,48.4102]]],[[[-119.9125,34.0767],[-119.8764,34.0322],[-119.8741,33.98],[-119.8187,33.9595],[-119.7208,33.9589],[-119.6637,33.9851],[-119.5603,33.9956],[-119.52,34.0342],[-119.5862,34.0539],[-119.6331,34.0128],[-119.6847,34.02],[-119.7572,34.0592],[-119.8098,34.0511],[-119.9125,34.0767]]],[[[-120.0513,34.0371],[-120.2386,34.0102],[-120.1693,33.917],[-120.1203,33.8942],[-119.971,33.9413],[-119.9814,33.9798],[-120.0466,34],[-120.0513,34.0371]]],[[[-118.6029,33.4786],[-118.5742,33.44],[-118.4886,33.4189],[-118.4656,33.3256],[-118.3784,33.3208],[-118.3261,33.2986],[-118.3106,33.3367],[-118.3664,33.4058],[-118.5364,33.4775],[-118.6029,33.4786]]],[[[-122.8847,48.7119],[-122.9394,48.7095],[-123.0302,48.6307],[-122.9578,48.6319],[-122.9482,48.5975],[-122.8625,48.6065],[-122.8842,48.6592],[-122.8145,48.6064],[-122.7513,48.665],[-122.8847,48.7119]]],[[[-123.1406,48.6236],[-123.1764,48.5619],[-123.133,48.4981],[-123.0368,48.458],[-123.0092,48.4739],[-123.0166,48.5619],[-123.1406,48.6236]]],[[[-118.5892,33.0294],[-118.5767,32.9741],[-118.4891,32.8436],[-118.4291,32.8038],[-118.3706,32.84],[-118.485,32.9233],[-118.5633,33.0236],[-118.5892,33.0294]]],[[[-122.4533,47.5013],[-122.5132,47.4529],[-122.5268,47.3421],[-122.4844,47.3803],[-122.4442,47.3611],[-122.4266,47.402],[-122.4533,47.5013]]],[[[-122.5339,47.7056],[-122.5652,47.7108],[-122.5778,47.5994],[-122.4982,47.597],[-122.5062,47.703],[-122.5339,47.7056]]],[[[-122.8825,48.5695],[-122.9222,48.5394],[-122.9457,48.4656],[-122.8599,48.4304],[-122.8825,48.5695]]],[[[-122.8472,47.3003],[-122.9194,47.2761],[-122.9253,47.2328],[-122.8747,47.1642],[-122.8406,47.2078],[-122.8711,47.2469],[-122.8472,47.3003]]],[[[-120.3654,34.0746],[-120.4395,34.0383],[-120.3604,34.0134],[-120.3069,34.0197],[-120.3654,34.0746]]],[[[-119.5224,33.2815],[-119.5737,33.2584],[-119.4704,33.2144],[-119.4598,33.2563],[-119.5224,33.2815]]],[[[-122.6895,48.1028],[-122.7419,48.0491],[-122.6881,48.0081],[-122.6895,48.1028]]],[[[-122.6417,48.5878],[-122.6522,48.5306],[-122.583,48.5511],[-122.6417,48.5878]]],[[[-123.9789,46.4947],[-124.0053,46.4633],[-123.9417,46.4108],[-123.9789,46.4947]]],[[[-122.7097,48.6067],[-122.7216,48.5403],[-122.6758,48.5661],[-122.7097,48.6067]]],[[[-122.6911,47.1841],[-122.7419,47.1531],[-122.7116,47.1278],[-122.6911,47.1841]]]]},"properties":{"id":"da91c585-dacb-46b4-998a-dabe27e6d774","code":"WC","name":"West Coast","abbreviation":"R-WC","parent_id":"076ec73e-f099-4239-b35d-5994f8d6c28e"}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-141.3146, 60.0542], + [-141.2693, 60.0078], + [-141.2954, 59.9363], + [-141.3678, 59.9307], + [-141.4631, 59.8853], + [-141.4331, 59.8675], + [-141.3135, 59.847], + [-140.9773, 59.7684], + [-140.9064, 59.7424], + [-140.6681, 59.7105], + [-140.3441, 59.6939], + [-140.2316, 59.704], + [-140.1488, 59.74], + [-139.9576, 59.7834], + [-140.1333, 59.8056], + [-140.1734, 59.7684], + [-140.2312, 59.7674], + [-140.248, 59.806], + [-140.1671, 59.8037], + [-140.0438, 59.8387], + [-139.9326, 59.7917], + [-139.8044, 59.8184], + [-139.7736, 59.8684], + [-139.7121, 59.9188], + [-139.6031, 59.9521], + [-139.6004, 59.9876], + [-139.5349, 60.0469], + [-139.4958, 60.0021], + [-139.4293, 60.0021], + [-139.3356, 59.9175], + [-139.2529, 59.8602], + [-139.1405, 59.8625], + [-139.0483, 59.8406], + [-139.1922, 59.8417], + [-139.3006, 59.8194], + [-139.2772, 59.7864], + [-139.3211, 59.755], + [-139.2711, 59.6925], + [-139.2283, 59.6061], + [-139.2989, 59.5611], + [-139.3567, 59.5897], + [-139.2928, 59.6403], + [-139.3497, 59.7461], + [-139.3345, 59.8216], + [-139.3, 59.8524], + [-139.4722, 59.9973], + [-139.5099, 59.9855], + [-139.5349, 59.9366], + [-139.6289, 59.9022], + [-139.637, 59.8731], + [-139.6006, 59.8047], + [-139.5422, 59.7367], + [-139.4717, 59.7031], + [-139.5878, 59.6458], + [-139.6017, 59.6117], + [-139.6653, 59.5663], + [-139.6967, 59.6197], + [-139.7328, 59.5475], + [-139.8378, 59.5581], + [-139.8567, 59.5353], + [-139.63, 59.4569], + [-139.4111, 59.4119], + [-139.4006, 59.3797], + [-139.2911, 59.3867], + [-139.1894, 59.3222], + [-138.8938, 59.2388], + [-138.6267, 59.1281], + [-138.4806, 59.11], + [-138.1858, 59.0168], + [-137.9506, 58.8861], + [-137.925, 58.8422], + [-137.9294, 58.7831], + [-137.7817, 58.7181], + [-137.6739, 58.6467], + [-137.515, 58.6636], + [-137.5122, 58.6428], + [-137.6428, 58.6025], + [-137.5761, 58.5917], + [-137.3978, 58.5064], + [-137.16, 58.4239], + [-137.095, 58.3814], + [-137.0128, 58.4106], + [-136.8919, 58.3849], + [-136.9039, 58.3417], + [-136.8406, 58.365], + [-136.8578, 58.3167], + [-136.7938, 58.2941], + [-136.7067, 58.2958], + [-136.7325, 58.2595], + [-136.665, 58.2086], + [-136.5828, 58.2272], + [-136.5647, 58.2624], + [-136.6067, 58.3003], + [-136.5967, 58.3322], + [-136.5422, 58.3322], + [-136.485, 58.2994], + [-136.4378, 58.315], + [-136.3755, 58.2986], + [-136.3706, 58.3704], + [-136.3125, 58.3783], + [-136.2828, 58.315], + [-136.2028, 58.3422], + [-136.1004, 58.3457], + [-136.0383, 58.3831], + [-136.0992, 58.513], + [-136.1867, 58.5097], + [-136.1767, 58.5614], + [-136.2045, 58.6133], + [-136.3155, 58.671], + [-136.3933, 58.6175], + [-136.5211, 58.5936], + [-136.3496, 58.6867], + [-136.3913, 58.7176], + [-136.5074, 58.7564], + [-136.5306, 58.7404], + [-136.6387, 58.7913], + [-136.6075, 58.8185], + [-136.5793, 58.7806], + [-136.4932, 58.7915], + [-136.5617, 58.8324], + [-136.6467, 58.8406], + [-136.7467, 58.8772], + [-137.0139, 58.9042], + [-136.9417, 58.9178], + [-136.9172, 58.9494], + [-137.0433, 59.0206], + [-137.0311, 59.0618], + [-136.8754, 58.9629], + [-136.7103, 58.918], + [-136.6236, 58.9032], + [-136.6918, 58.9976], + [-136.5769, 58.9139], + [-136.5328, 58.9214], + [-136.4883, 58.8369], + [-136.3964, 58.8168], + [-136.2517, 58.7525], + [-136.1774, 58.7545], + [-136.106, 58.8639], + [-136.1533, 59.0061], + [-136.1112, 59.0102], + [-136.1181, 58.9607], + [-136.0601, 58.9284], + [-136.0598, 58.8537], + [-135.9872, 58.8614], + [-135.92, 58.905], + [-135.8044, 58.9036], + [-135.7906, 58.8867], + [-135.9444, 58.8775], + [-136.0145, 58.844], + [-136.0806, 58.8281], + [-136.0828, 58.8076], + [-135.9633, 58.7036], + [-135.9106, 58.6165], + [-135.8344, 58.5992], + [-135.8905, 58.5753], + [-135.8522, 58.5386], + [-135.8977, 58.4488], + [-135.9082, 58.379], + [-135.7044, 58.3956], + [-135.62, 58.4269], + [-135.475, 58.3756], + [-135.4579, 58.4075], + [-135.5155, 58.4756], + [-135.4972, 58.5033], + [-135.4529, 58.4561], + [-135.3978, 58.3254], + [-135.314, 58.2459], + [-135.2222, 58.2361], + [-135.1627, 58.2088], + [-135.09, 58.24], + [-135.1071, 58.2658], + [-135.0535, 58.3464], + [-135.1308, 58.5102], + [-135.1651, 58.5634], + [-135.2389, 58.6192], + [-135.1394, 58.6172], + [-135.227, 58.7178], + [-135.2467, 58.7908], + [-135.2839, 58.8183], + [-135.4022, 58.9728], + [-135.3822, 59.1017], + [-135.4406, 59.1132], + [-135.4691, 59.1739], + [-135.5178, 59.2081], + [-135.4756, 59.2269], + [-135.3849, 59.1731], + [-135.37, 59.1127], + [-135.3083, 59.0817], + [-135.3597, 59.2004], + [-135.4306, 59.2258], + [-135.4431, 59.2766], + [-135.5426, 59.3079], + [-135.5317, 59.325], + [-135.4078, 59.2894], + [-135.3618, 59.4494], + [-135.3286, 59.4442], + [-135.3587, 59.3718], + [-135.3711, 59.2653], + [-135.2849, 59.1974], + [-135.2036, 59.0704], + [-135.1772, 58.9992], + [-135.1533, 58.8551], + [-135.0267, 58.7328], + [-135.0268, 58.7899], + [-134.9523, 58.7952], + [-134.9203, 58.6804], + [-134.9903, 58.6765], + [-134.8405, 58.5184], + [-134.7878, 58.495], + [-134.7781, 58.3954], + [-134.7267, 58.3717], + [-134.6467, 58.3867], + [-134.6367, 58.3409], + [-134.5389, 58.3478], + [-134.4985, 58.3432], + [-134.2134, 58.2045], + [-134.1494, 58.2006], + [-134.1037, 58.2492], + [-134.1405, 58.3061], + [-134.0578, 58.3325], + [-134.0528, 58.3764], + [-133.9704, 58.4465], + [-133.985, 58.4897], + [-133.9415, 58.5051], + [-133.9472, 58.4222], + [-134.0161, 58.4012], + [-133.9795, 58.3197], + [-134.0044, 58.295], + [-134.0816, 58.2794], + [-134.0539, 58.2308], + [-134.0846, 58.214], + [-134.0672, 58.0928], + [-134.05, 58.0617], + [-133.8888, 57.9741], + [-133.786, 58.009], + [-133.7761, 58.0639], + [-133.7117, 57.9953], + [-133.6939, 57.9372], + [-133.7619, 57.9954], + [-133.8306, 57.97], + [-133.8501, 57.934], + [-133.6967, 57.7914], + [-133.6322, 57.7914], + [-133.6276, 57.8454], + [-133.5744, 57.9178], + [-133.5798, 57.8311], + [-133.5607, 57.7761], + [-133.4247, 57.7225], + [-133.3297, 57.6634], + [-133.2794, 57.6611], + [-133.1511, 57.5884], + [-133.1756, 57.5818], + [-133.3898, 57.6593], + [-133.5276, 57.6876], + [-133.5704, 57.721], + [-133.6509, 57.7165], + [-133.6739, 57.6569], + [-133.6621, 57.6133], + [-133.5621, 57.5617], + [-133.4517, 57.5886], + [-133.5167, 57.5442], + [-133.5276, 57.4895], + [-133.4673, 57.4219], + [-133.4186, 57.4362], + [-133.3645, 57.4131], + [-133.473, 57.3873], + [-133.4521, 57.3547], + [-133.3563, 57.3329], + [-133.2345, 57.3213], + [-133.2564, 57.2845], + [-133.3401, 57.2988], + [-133.4268, 57.2862], + [-133.4744, 57.2978], + [-133.5336, 57.2605], + [-133.4995, 57.2272], + [-133.5342, 57.1819], + [-133.465, 57.1501], + [-133.3161, 57.1067], + [-133.1728, 57.1773], + [-133.1411, 57.1619], + [-133.1817, 57.0891], + [-133.0789, 57.0825], + [-133.0044, 57.0492], + [-132.8737, 57.03], + [-132.8349, 57.0658], + [-132.7829, 57.0021], + [-132.7889, 56.9717], + [-132.8721, 57.0014], + [-132.9528, 56.9942], + [-132.8861, 56.9222], + [-132.8096, 56.892], + [-132.79, 56.8433], + [-132.6439, 56.7817], + [-132.4917, 56.7456], + [-132.5572, 56.7148], + [-132.5322, 56.6881], + [-132.5656, 56.6286], + [-132.4982, 56.6035], + [-132.4239, 56.6092], + [-132.3511, 56.6367], + [-132.3679, 56.5928], + [-132.3592, 56.5277], + [-132.2893, 56.4844], + [-132.2113, 56.4607], + [-132.1977, 56.4157], + [-132.1209, 56.365], + [-132.0944, 56.3761], + [-132.0622, 56.377], + [-131.9944, 56.3603], + [-131.98, 56.3011], + [-131.9317, 56.2364], + [-131.8061, 56.2161], + [-131.7583, 56.2245], + [-131.6389, 56.1911], + [-131.7106, 56.1867], + [-131.7639, 56.2056], + [-131.9728, 56.1739], + [-131.9783, 56.0439], + [-131.9605, 56.0128], + [-131.9911, 55.9628], + [-132.0412, 55.9602], + [-132.0709, 55.9242], + [-132.0417, 55.8858], + [-132.0917, 55.8531], + [-132.0723, 55.8092], + [-132.1313, 55.8109], + [-132.1928, 55.7856], + [-132.1967, 55.7308], + [-132.287, 55.7617], + [-132.2281, 55.6993], + [-132.1851, 55.5879], + [-132.1208, 55.55], + [-132.0739, 55.545], + [-131.9695, 55.4978], + [-131.9389, 55.5677], + [-132.0111, 55.6731], + [-131.9278, 55.6117], + [-131.8811, 55.6228], + [-131.8294, 55.6833], + [-131.777, 55.7813], + [-131.7697, 55.8241], + [-131.9194, 55.8644], + [-131.8323, 55.8863], + [-131.7606, 55.8778], + [-131.6767, 55.9194], + [-131.4397, 56.0026], + [-131.4083, 55.9845], + [-131.3883, 55.9598], + [-131.2969, 55.9959], + [-131.2278, 56.0057], + [-131.0945, 56.0781], + [-131.096, 56.0431], + [-131.2155, 55.9864], + [-131.18, 55.9472], + [-131.0928, 55.8948], + [-130.9069, 55.7122], + [-130.8722, 55.5569], + [-130.7967, 55.5792], + [-130.7766, 55.5253], + [-130.8666, 55.5428], + [-130.9004, 55.4673], + [-130.8761, 55.3842], + [-130.8783, 55.3316], + [-130.8322, 55.2887], + [-130.9272, 55.301], + [-130.9917, 55.2433], + [-131.0915, 55.1946], + [-131.0663, 55.1225], + [-130.9939, 55.0853], + [-130.9025, 55.1025], + [-130.8211, 55.1445], + [-130.7951, 55.1025], + [-130.7199, 55.0938], + [-130.7952, 55.0669], + [-130.8528, 55.1191], + [-130.8715, 55.0984], + [-130.9893, 55.0669], + [-131.0051, 55.0028], + [-130.9532, 54.9642], + [-130.9342, 54.8017], + [-130.8561, 54.7675], + [-130.7361, 54.8214], + [-130.7611, 54.9408], + [-130.7372, 54.9536], + [-130.7204, 54.7649], + [-130.6567, 54.7745], + [-130.6322, 54.8167], + [-130.525, 54.8668], + [-130.4971, 54.8335], + [-130.3706, 54.9067], + [-130.2956, 54.9657], + [-130.2289, 55.0378], + [-130.1951, 55.1044], + [-130.0987, 55.2133], + [-129.9942, 55.2902], + [-130.03, 55.3228], + [-130.0539, 55.4425], + [-130.1069, 55.4957], + [-130.15, 55.5979], + [-130.1246, 55.6795], + [-130.1568, 55.7074], + [-130.1725, 55.7782], + [-130.0917, 55.8277], + [-130.016, 55.9235], + [-130.003, 56.0079], + [-130.1054, 56.1227], + [-130.2459, 56.0963], + [-130.4255, 56.1417], + [-130.4682, 56.2433], + [-130.623, 56.2669], + [-130.7818, 56.3671], + [-131.087, 56.4061], + [-131.1733, 56.4495], + [-131.4716, 56.5527], + [-131.5813, 56.6123], + [-131.8354, 56.5991], + [-131.8604, 56.7029], + [-131.9009, 56.7535], + [-131.8731, 56.8063], + [-132.1231, 56.8739], + [-132.0448, 57.0451], + [-132.3687, 57.0917], + [-132.2478, 57.2111], + [-132.3692, 57.3499], + [-132.5539, 57.4967], + [-132.6608, 57.6169], + [-132.7512, 57.6961], + [-132.869, 57.8397], + [-133.0696, 58.0001], + [-133.172, 58.1538], + [-133.3487, 58.2795], + [-133.4599, 58.3885], + [-133.38, 58.4318], + [-133.6995, 58.6091], + [-133.841, 58.7299], + [-133.9719, 58.7671], + [-134.258, 58.8609], + [-134.3363, 58.9236], + [-134.3134, 58.9621], + [-134.4074, 58.979], + [-134.382, 59.0388], + [-134.4827, 59.131], + [-134.5655, 59.1308], + [-134.6789, 59.1921], + [-134.7007, 59.2489], + [-134.9598, 59.281], + [-135.0335, 59.3502], + [-134.9924, 59.3878], + [-135.1006, 59.4278], + [-135.0279, 59.4746], + [-135.0289, 59.5636], + [-135.1175, 59.6231], + [-135.2198, 59.6629], + [-135.2337, 59.6961], + [-135.3644, 59.7396], + [-135.4796, 59.7981], + [-135.9476, 59.6634], + [-136.1953, 59.6388], + [-136.3535, 59.5999], + [-136.2414, 59.5591], + [-136.2363, 59.5267], + [-136.3014, 59.4658], + [-136.3963, 59.4474], + [-136.464, 59.463], + [-136.4578, 59.2814], + [-136.582, 59.1655], + [-136.8247, 59.1598], + [-136.9996, 59.0914], + [-137.2827, 59.0001], + [-137.4515, 58.9085], + [-137.526, 58.9066], + [-137.5, 58.9849], + [-137.5418, 59.1063], + [-137.6074, 59.2435], + [-138.1689, 59.5359], + [-138.6092, 59.76], + [-138.6563, 59.7992], + [-138.7058, 59.9062], + [-138.7908, 59.923], + [-139.0421, 59.9916], + [-139.177, 60.0829], + [-139.0485, 60.3259], + [-139.0521, 60.3537], + [-139.6801, 60.3357], + [-139.9741, 60.1845], + [-140.448, 60.308], + [-140.5203, 60.2191], + [-140.7683, 60.2583], + [-141.0016, 60.3051], + [-141.0018, 63.9326], + [-141.0032, 65.0001], + [-141.0022, 67.0133], + [-141.0069, 67.9999], + [-141.0023, 68.5045], + [-141.003, 69.6462], + [-141.1167, 69.6729], + [-141.2063, 69.6792], + [-141.2464, 69.6297], + [-141.3974, 69.638], + [-141.438, 69.6766], + [-141.5339, 69.7286], + [-141.662, 69.7589], + [-141.75, 69.7625], + [-141.7854, 69.7917], + [-141.9, 69.8042], + [-142.0104, 69.7958], + [-142.1687, 69.8458], + [-142.2396, 69.8458], + [-142.3391, 69.8859], + [-142.3797, 69.9287], + [-142.5188, 69.9604], + [-142.5807, 69.9589], + [-142.5818, 69.9974], + [-142.7271, 70.0375], + [-142.8667, 70.0563], + [-142.9937, 70.0583], + [-143.0042, 70.0771], + [-143.1062, 70.0771], + [-143.2203, 70.1099], + [-143.35, 70.0896], + [-143.5125, 70.0875], + [-143.6583, 70.0729], + [-143.7292, 70.0896], + [-143.8078, 70.0693], + [-143.875, 70.0771], + [-144.0896, 70.0375], + [-144.4125, 70.0271], + [-144.4875, 70.0167], + [-144.6375, 69.9646], + [-144.8292, 69.9833], + [-144.9625, 69.9583], + [-145.025, 69.9812], + [-145.2625, 69.9896], + [-145.3, 70.0104], + [-145.4187, 70.0292], + [-145.4833, 70.0583], + [-145.6042, 70.0333], + [-145.6521, 70.0583], + [-145.5792, 70.0708], + [-145.8542, 70.1625], + [-145.8708, 70.1167], + [-145.9104, 70.1146], + [-146.1687, 70.1646], + [-146.5083, 70.1854], + [-146.7187, 70.1687], + [-146.8542, 70.175], + [-146.9458, 70.15], + [-147.1828, 70.1547], + [-147.2417, 70.1771], + [-147.4167, 70.1854], + [-147.5125, 70.2021], + [-147.6771, 70.1979], + [-147.7812, 70.2167], + [-147.7958, 70.2813], + [-147.9542, 70.2729], + [-148.0672, 70.2859], + [-148.1271, 70.3271], + [-148.2229, 70.3146], + [-148.2609, 70.3255], + [-148.3453, 70.3016], + [-148.4516, 70.3068], + [-148.4724, 70.337], + [-148.5536, 70.3422], + [-148.5292, 70.3688], + [-148.5813, 70.3958], + [-148.7104, 70.4083], + [-148.8354, 70.3875], + [-148.9229, 70.3958], + [-148.8797, 70.4287], + [-148.963, 70.4266], + [-149.0562, 70.4625], + [-149.1625, 70.4854], + [-149.4214, 70.4922], + [-149.4646, 70.5146], + [-149.5396, 70.4896], + [-149.6667, 70.5062], + [-149.7661, 70.4797], + [-149.8479, 70.5021], + [-149.9021, 70.4958], + [-150.0646, 70.4417], + [-150.2104, 70.4313], + [-150.3875, 70.4063], + [-150.6563, 70.3458], + [-150.7229, 70.3229], + [-150.7922, 70.2693], + [-150.7797, 70.2338], + [-150.8359, 70.2172], + [-150.8422, 70.2693], + [-150.7693, 70.2963], + [-150.7297, 70.338], + [-150.7453, 70.3682], + [-150.6359, 70.3943], + [-150.6255, 70.4182], + [-150.7734, 70.4745], + [-150.7271, 70.4], + [-150.7891, 70.3755], + [-150.8328, 70.3901], + [-150.837, 70.4526], + [-150.9146, 70.4625], + [-150.9703, 70.438], + [-151.0417, 70.4396], + [-151.0891, 70.3859], + [-151.1479, 70.4271], + [-151.1807, 70.3818], + [-151.2896, 70.3458], + [-151.2672, 70.3891], + [-151.3875, 70.4167], + [-151.7646, 70.4354], + [-151.8875, 70.4313], + [-151.9, 70.475], + [-151.8, 70.4896], + [-151.7604, 70.5458], + [-152.0208, 70.5604], + [-152.0437, 70.5458], + [-152.1812, 70.55], + [-152.3646, 70.5375], + [-152.3792, 70.55], + [-152.5208, 70.5375], + [-152.5937, 70.5667], + [-152.5167, 70.5813], + [-152.2729, 70.575], + [-152.3042, 70.6042], + [-152.4146, 70.6062], + [-152.4646, 70.6333], + [-152.4708, 70.6937], + [-152.3818, 70.7151], + [-152.2974, 70.7849], + [-152.2229, 70.825], + [-152.5833, 70.8812], + [-152.6646, 70.8792], + [-152.6172, 70.8339], + [-152.6995, 70.7859], + [-152.6953, 70.7464], + [-152.7766, 70.8724], + [-152.8583, 70.8417], + [-152.913, 70.8891], + [-152.9937, 70.8875], + [-153.0479, 70.9042], + [-153.1313, 70.8938], + [-153.1292, 70.9208], + [-153.2953, 70.9099], + [-153.3813, 70.8875], + [-153.5542, 70.8833], + [-153.7104, 70.8896], + [-153.9333, 70.8771], + [-153.9984, 70.8172], + [-154.1562, 70.7688], + [-154.2125, 70.7708], + [-154.2521, 70.8104], + [-154.3417, 70.8125], + [-154.3562, 70.8313], + [-154.4667, 70.8208], + [-154.6141, 70.8214], + [-154.6338, 70.8599], + [-154.7625, 70.8688], + [-154.7766, 70.8891], + [-154.6109, 70.9068], + [-154.6172, 70.9411], + [-154.5734, 70.9953], + [-154.6505, 71.0328], + [-154.7063, 71.0021], + [-154.7708, 71.0729], + [-154.8125, 71.0854], + [-154.8943, 71.0703], + [-154.9661, 71.0339], + [-154.8641, 71.0443], + [-154.7437, 71.0417], + [-154.7276, 70.9568], + [-154.8505, 70.9516], + [-154.8208, 70.8854], + [-154.9391, 70.9422], + [-154.9568, 71.0089], + [-155.0188, 71.0313], + [-155.0667, 71.1292], + [-155.0667, 71.0625], + [-155.1458, 71.1042], + [-155.2521, 71.075], + [-155.1568, 71.0182], + [-155.2021, 70.9771], + [-155.2625, 71.0146], + [-155.3599, 70.9953], + [-155.5099, 70.9339], + [-155.4542, 70.8458], + [-155.2859, 70.8474], + [-155.313, 70.788], + [-155.4375, 70.8104], + [-155.5036, 70.8443], + [-155.5875, 70.8021], + [-155.6896, 70.8313], + [-155.875, 70.8271], + [-155.9141, 70.7922], + [-155.8875, 70.7562], + [-156, 70.7479], + [-155.9583, 70.7792], + [-155.9896, 70.825], + [-156.05, 70.8208], + [-156.1729, 70.8542], + [-155.9958, 70.8625], + [-156.0083, 70.8958], + [-156.0729, 70.8833], + [-156.1037, 70.9057], + [-156.1797, 70.8672], + [-156.2437, 70.9], + [-156.2563, 70.8667], + [-156.3245, 70.8724], + [-156.2349, 70.9182], + [-156.3313, 70.9167], + [-156.3729, 70.9042], + [-156.4187, 70.9083], + [-156.4375, 70.875], + [-156.4958, 70.9125], + [-156.3583, 70.9104], + [-156.2875, 70.9396], + [-156.1625, 70.9729], + [-156.1109, 70.9484], + [-156.15, 70.9187], + [-155.9854, 70.9187], + [-156, 70.9646], + [-155.7271, 70.9833], + [-155.6974, 71.0203], + [-155.6141, 71.0599], + [-155.5396, 71.0625], + [-155.5068, 71.0859], + [-155.5688, 71.1396], + [-155.6375, 71.1167], + [-155.6422, 71.1589], + [-155.7474, 71.1911], + [-155.8917, 71.1771], + [-155.9208, 71.2104], + [-156.0146, 71.1708], + [-156.1, 71.2417], + [-156.2542, 71.2625], + [-156.35, 71.2583], + [-156.5318, 71.2974], + [-156.5979, 71.3354], + [-156.8099, 71.287], + [-156.888, 71.2401], + [-157.0328, 71.1724], + [-157.0021, 71.1208], + [-157.0521, 71.1062], + [-157.0771, 71.1458], + [-157.2359, 71.0505], + [-157.4479, 70.9625], + [-157.8188, 70.8625], + [-158.025, 70.8292], + [-158.3542, 70.8125], + [-158.3917, 70.7979], + [-158.7187, 70.7854], + [-158.9646, 70.7917], + [-158.9812, 70.7646], + [-159.1849, 70.7578], + [-159.2563, 70.7708], + [-159.2578, 70.7089], + [-159.2984, 70.7578], + [-159.4141, 70.7651], + [-159.3438, 70.8063], + [-159.1193, 70.8203], + [-159.1917, 70.8458], + [-159.3708, 70.8438], + [-159.5458, 70.8167], + [-159.6854, 70.7771], + [-159.8109, 70.7234], + [-159.9474, 70.6787], + [-160.0167, 70.6333], + [-159.8901, 70.612], + [-159.8286, 70.5766], + [-159.8224, 70.5432], + [-159.737, 70.4901], + [-159.6229, 70.4875], + [-159.6, 70.5062], + [-159.5213, 70.4818], + [-159.6766, 70.4547], + [-159.7609, 70.487], + [-159.8484, 70.4234], + [-159.8766, 70.3797], + [-159.8255, 70.3557], + [-159.8411, 70.2568], + [-159.8984, 70.3276], + [-159.9536, 70.3672], + [-160.1432, 70.3078], + [-160.1417, 70.3396], + [-160.0833, 70.3458], + [-159.9828, 70.4099], + [-159.9104, 70.4833], + [-160.0458, 70.4604], + [-160.0292, 70.5021], + [-159.913, 70.5109], + [-159.9109, 70.5766], + [-160.025, 70.5792], + [-160.0896, 70.5646], + [-160.138, 70.5807], + [-160.2797, 70.5255], + [-160.7068, 70.3818], + [-160.8604, 70.3375], + [-161.0401, 70.313], + [-161.3062, 70.2479], + [-161.4083, 70.2396], + [-161.6104, 70.2438], + [-161.6151, 70.2245], + [-161.7932, 70.1807], + [-161.8375, 70.15], + [-162.0125, 70.1583], + [-162.0813, 70.1167], + [-162.0813, 70.1625], + [-161.9792, 70.1833], + [-161.9146, 70.1604], + [-161.8458, 70.1604], + [-161.862, 70.2099], + [-161.7667, 70.2125], + [-161.8646, 70.2479], + [-161.7146, 70.2354], + [-161.6833, 70.2625], + [-161.8432, 70.2714], + [-161.7354, 70.3083], + [-161.8792, 70.3271], + [-161.9266, 70.312], + [-161.9901, 70.2422], + [-162.0922, 70.2005], + [-162.1938, 70.1729], + [-162.2688, 70.125], + [-162.3953, 70.0922], + [-162.4682, 70.0578], + [-162.4568, 70.0005], + [-162.4922, 69.963], + [-162.8104, 69.8354], + [-162.8214, 69.8193], + [-162.9432, 69.7932], + [-163.0286, 69.7276], + [-162.9172, 69.6943], + [-162.9792, 69.6687], + [-163.0255, 69.6828], + [-163.0479, 69.6292], + [-163.088, 69.6464], + [-163.112, 69.5901], + [-163.0151, 69.5359], + [-163.0771, 69.4292], + [-163.1734, 69.313], + [-163.225, 69.2813], + [-163.3036, 69.2703], + [-163.4661, 69.1911], + [-163.5307, 69.1412], + [-163.6917, 69.0687], + [-163.8432, 69.0307], + [-163.9312, 68.9917], + [-164.1057, 68.9599], + [-164.1396, 68.9417], + [-164.2833, 68.925], + [-164.4937, 68.9104], + [-164.6396, 68.9125], + [-164.7979, 68.8938], + [-165.1125, 68.875], + [-165.3146, 68.8562], + [-165.5417, 68.8521], + [-165.65, 68.8438], + [-165.7437, 68.8562], + [-166.2125, 68.8792], + [-166.1922, 68.6943], + [-166.2287, 68.6495], + [-166.2245, 68.5703], + [-166.2995, 68.5141], + [-166.2984, 68.4672], + [-166.3708, 68.4021], + [-166.4417, 68.3938], + [-166.5208, 68.3396], + [-166.3708, 68.3229], + [-166.2479, 68.3187], + [-166.1714, 68.2849], + [-166.1328, 68.2422], + [-166.0958, 68.2438], + [-166.0151, 68.2016], + [-165.9807, 68.1464], + [-165.8813, 68.1104], + [-165.7063, 68.0938], + [-165.3667, 68.0396], + [-165.1146, 67.9542], + [-164.9266, 67.8734], + [-164.8193, 67.8516], + [-164.7812, 67.8229], + [-164.725, 67.8354], + [-164.6849, 67.8026], + [-164.6172, 67.7953], + [-164.4953, 67.7151], + [-164.4125, 67.6937], + [-164.3521, 67.7063], + [-164.138, 67.6391], + [-164.1078, 67.6047], + [-163.9667, 67.5062], + [-163.8807, 67.4213], + [-163.8167, 67.4187], + [-163.7708, 67.3875], + [-163.8203, 67.3526], + [-163.7625, 67.2646], + [-163.7328, 67.1932], + [-163.6417, 67.1854], + [-163.5891, 67.1568], + [-163.5083, 67.1458], + [-163.4172, 67.1036], + [-163.4193, 67.0839], + [-163.525, 67.1167], + [-163.7328, 67.1193], + [-163.6604, 67.0979], + [-163.3083, 67.0625], + [-163.2526, 67.0807], + [-163.1583, 67.0458], + [-162.9979, 67.0313], + [-162.7479, 67.0521], + [-162.5557, 66.9838], + [-162.5161, 67.0286], + [-162.4708, 66.9812], + [-162.3687, 66.9938], + [-162.2375, 66.9938], + [-162.1625, 67.0188], + [-161.9792, 67.0417], + [-161.8354, 67.05], + [-161.7229, 67.0083], + [-161.7083, 67.025], + [-161.6193, 67.0099], + [-161.5833, 66.9833], + [-161.5292, 66.9896], + [-161.4734, 66.9495], + [-161.525, 66.9375], + [-161.6083, 66.95], + [-161.7057, 66.9411], + [-161.6963, 66.9193], + [-161.7828, 66.8912], + [-161.8057, 66.8161], + [-161.8641, 66.7026], + [-161.6938, 66.625], + [-161.5854, 66.5875], + [-161.5234, 66.5807], + [-161.487, 66.5297], + [-161.2917, 66.5229], + [-161.2068, 66.5578], + [-161.2312, 66.5771], + [-161.1187, 66.6396], + [-160.9729, 66.6417], + [-160.8938, 66.6583], + [-160.8083, 66.6563], + [-160.6562, 66.5896], + [-160.5109, 66.5859], + [-160.5021, 66.6125], + [-160.3542, 66.6104], + [-160.275, 66.6521], + [-160.1854, 66.6312], + [-160.0979, 66.675], + [-160.0412, 66.6589], + [-159.9438, 66.6813], + [-159.8104, 66.6583], + [-159.8229, 66.6813], + [-159.7229, 66.6771], + [-159.6964, 66.6484], + [-159.7771, 66.6146], + [-159.8724, 66.637], + [-159.9125, 66.5729], + [-159.9599, 66.5755], + [-159.9839, 66.6214], + [-160.0354, 66.6062], + [-160.0953, 66.6193], + [-160.1187, 66.5917], + [-160.25, 66.6167], + [-160.3182, 66.5953], + [-160.2688, 66.5646], + [-160.2479, 66.5896], + [-160.1833, 66.525], + [-160.2016, 66.4797], + [-160.1208, 66.4688], + [-160.0333, 66.475], + [-160.05, 66.4146], + [-160.1938, 66.4521], + [-160.2276, 66.3859], + [-160.4833, 66.375], + [-160.5458, 66.3562], + [-160.6771, 66.3667], + [-160.7854, 66.3625], + [-160.8484, 66.3953], + [-160.962, 66.4172], + [-161.0651, 66.4849], + [-161.1682, 66.4984], + [-161.1771, 66.5333], + [-161.2661, 66.512], + [-161.3229, 66.4771], + [-161.5063, 66.4417], + [-161.5833, 66.4396], + [-161.6651, 66.4703], + [-161.8203, 66.5109], + [-161.9099, 66.5443], + [-161.9922, 66.6099], + [-162.0724, 66.6484], + [-162.0828, 66.6911], + [-162.0109, 66.7568], + [-162.0208, 66.7813], + [-162.0995, 66.788], + [-162.2391, 66.8734], + [-162.3188, 66.9417], + [-162.4, 66.9167], + [-162.4729, 66.9479], + [-162.5208, 66.9021], + [-162.6182, 66.8505], + [-162.5088, 66.7766], + [-162.5016, 66.7338], + [-162.2333, 66.7104], + [-162.1214, 66.6536], + [-162.0995, 66.6109], + [-161.9922, 66.5787], + [-161.8963, 66.5286], + [-161.8651, 66.4734], + [-161.8057, 66.438], + [-161.8724, 66.4245], + [-161.9391, 66.3234], + [-161.8792, 66.3604], + [-161.8354, 66.3604], + [-161.6917, 66.3979], + [-161.5354, 66.4021], + [-161.1047, 66.3287], + [-160.9859, 66.2255], + [-161.0047, 66.1891], + [-161.0724, 66.1787], + [-161.1042, 66.1208], + [-161.0937, 66.2292], + [-161.2104, 66.2063], + [-161.3021, 66.2167], + [-161.3516, 66.2547], + [-161.4979, 66.2583], + [-161.5568, 66.2276], + [-161.7214, 66.0589], + [-161.8245, 66.0036], + [-161.7854, 65.9688], + [-161.85, 65.9563], + [-161.8693, 66.0005], + [-161.9318, 66.0349], + [-162.0396, 66.0687], + [-162.1354, 66.075], + [-162.3354, 66.0271], + [-162.4036, 66.0297], + [-162.4521, 66.0563], + [-162.5396, 66.0333], + [-162.6432, 66.0266], + [-162.6745, 65.9943], + [-162.688, 66.0703], + [-162.7583, 66.0958], + [-162.8687, 66.0792], + [-162.9229, 66.0896], + [-163.1375, 66.0521], + [-163.3062, 66.0687], + [-163.3313, 66.0854], + [-163.4833, 66.0833], + [-163.6271, 66.0542], + [-163.7661, 66.0734], + [-163.8537, 66.1276], + [-163.8979, 66.1937], + [-163.9703, 66.1672], + [-164.1625, 66.1917], + [-163.9333, 66.2146], + [-163.8255, 66.2714], + [-163.8651, 66.3339], + [-163.8724, 66.387], + [-163.8474, 66.4182], + [-163.7713, 66.4484], + [-163.7255, 66.4964], + [-163.8146, 66.5563], + [-163.8042, 66.5771], + [-163.6521, 66.5542], + [-163.6792, 66.5771], + [-163.8271, 66.5917], + [-164.1062, 66.5917], + [-164.4396, 66.5771], + [-164.6896, 66.5437], + [-164.7276, 66.5109], + [-164.9286, 66.4495], + [-165.0146, 66.3792], + [-165.0422, 66.4287], + [-165.1458, 66.4333], + [-165.2479, 66.4146], + [-165.4396, 66.4021], + [-165.5979, 66.3542], + [-165.6583, 66.3479], + [-165.7557, 66.3141], + [-165.8464, 66.263], + [-165.8537, 66.213], + [-165.6958, 66.2042], + [-165.5312, 66.1458], + [-165.6896, 66.0958], + [-165.7792, 66.0958], + [-165.8729, 66.1125], + [-166.0583, 66.1062], + [-166.2187, 66.1708], + [-166.6042, 66.0896], + [-166.7708, 66.0313], + [-166.7958, 65.9729], + [-166.9187, 65.9875], + [-166.9438, 65.9583], + [-166.8682, 65.9276], + [-166.9974, 65.8953], + [-167.0354, 65.8688], + [-167.1849, 65.8401], + [-167.2807, 65.8901], + [-167.4833, 65.8354], + [-167.4563, 65.7979], + [-167.5312, 65.8021], + [-167.562, 65.7714], + [-167.4859, 65.7599], + [-167.4953, 65.7338], + [-167.5833, 65.7083], + [-167.7896, 65.7063], + [-167.9104, 65.6438], + [-168, 65.625], + [-168.0599, 65.6297], + [-168.0286, 65.6891], + [-167.925, 65.7125], + [-167.8354, 65.7521], + [-167.8125, 65.7396], + [-167.7396, 65.7771], + [-167.9458, 65.7354], + [-168.0807, 65.6932], + [-168.1245, 65.6453], + [-168.087, 65.5901], + [-168.0458, 65.5687], + [-167.8896, 65.5521], + [-167.8167, 65.5208], + [-167.6422, 65.4807], + [-167.6062, 65.4542], + [-167.4083, 65.4021], + [-167.0354, 65.3875], + [-166.9542, 65.3708], + [-166.825, 65.375], + [-166.7521, 65.3604], + [-166.6104, 65.3521], + [-166.3979, 65.3083], + [-166.387, 65.3182], + [-166.1479, 65.2875], + [-166.0359, 65.2474], + [-166.0188, 65.1896], + [-165.8338, 65.1339], + [-165.8703, 65.1807], + [-165.7521, 65.1896], + [-165.6687, 65.1583], + [-165.5792, 65.1771], + [-165.3854, 65.1687], + [-165.4526, 65.1214], + [-165.5682, 65.0974], + [-165.6562, 65.0479], + [-165.7312, 65.0729], + [-165.8188, 65.0771], + [-165.8745, 65.0964], + [-165.9672, 65.1682], + [-166.0349, 65.1859], + [-166.0422, 65.2307], + [-166.1292, 65.2292], + [-166.2479, 65.2583], + [-166.3771, 65.2542], + [-166.4724, 65.2203], + [-166.4651, 65.1713], + [-166.5359, 65.1172], + [-166.6568, 65.1036], + [-166.8401, 65.1214], + [-166.8208, 65.0771], + [-166.7063, 65.0563], + [-166.6807, 64.9818], + [-166.5599, 64.9464], + [-166.5005, 64.9474], + [-166.4245, 64.8922], + [-166.3776, 64.813], + [-166.4745, 64.7911], + [-166.4682, 64.7193], + [-166.3911, 64.6401], + [-166.2104, 64.5792], + [-165.8521, 64.5396], + [-165.7437, 64.5375], + [-165.2167, 64.4729], + [-165.0104, 64.4333], + [-164.9271, 64.4396], + [-164.8432, 64.4912], + [-164.7521, 64.5146], + [-164.6187, 64.5062], + [-164.5437, 64.5313], + [-164.325, 64.5667], + [-164.1042, 64.5687], + [-163.9937, 64.5521], + [-163.8833, 64.5729], + [-163.6438, 64.5687], + [-163.5125, 64.55], + [-163.3464, 64.5099], + [-163.2547, 64.4745], + [-163.1729, 64.3979], + [-163.1068, 64.4089], + [-163.0974, 64.462], + [-163.0318, 64.5026], + [-163.1479, 64.5062], + [-163.1755, 64.5349], + [-163.25, 64.5396], + [-163.3651, 64.5974], + [-163.2818, 64.6026], + [-163.2464, 64.6297], + [-163.1354, 64.6458], + [-163.1208, 64.6], + [-163.0339, 64.5849], + [-163.0188, 64.5417], + [-162.9453, 64.5443], + [-162.8422, 64.4953], + [-162.8537, 64.4443], + [-162.8005, 64.4078], + [-162.8037, 64.3359], + [-162.6318, 64.3839], + [-162.5922, 64.4838], + [-162.5453, 64.5307], + [-162.3333, 64.5979], + [-162.2359, 64.6193], + [-162.1708, 64.6813], + [-161.95, 64.6979], + [-161.8771, 64.7479], + [-161.6812, 64.7813], + [-161.7912, 64.8068], + [-161.6958, 64.8083], + [-161.6474, 64.7755], + [-161.5188, 64.7542], + [-161.413, 64.763], + [-161.3036, 64.8474], + [-161.2016, 64.8932], + [-161.1792, 64.9271], + [-161.112, 64.8839], + [-160.987, 64.8359], + [-160.8734, 64.8057], + [-160.862, 64.7776], + [-160.7776, 64.7182], + [-160.7839, 64.6255], + [-160.8974, 64.5807], + [-160.9297, 64.5505], + [-161.013, 64.5224], + [-161.0333, 64.4958], + [-161.1896, 64.4938], + [-161.3537, 64.5193], + [-161.3771, 64.5333], + [-161.4661, 64.5057], + [-161.4714, 64.4464], + [-161.5286, 64.4089], + [-161.3938, 64.4313], + [-161.3479, 64.4042], + [-161.2146, 64.4125], + [-161.1766, 64.3422], + [-161.0828, 64.2901], + [-161.0109, 64.2828], + [-160.9609, 64.2495], + [-160.9422, 64.0766], + [-160.8943, 63.9932], + [-160.813, 63.912], + [-160.7599, 63.8203], + [-160.7859, 63.7443], + [-160.963, 63.6172], + [-161.0083, 63.6208], + [-161.0359, 63.5755], + [-161.0974, 63.5484], + [-161.1359, 63.5005], + [-161.4292, 63.4542], + [-161.5, 63.4688], + [-161.5792, 63.4458], + [-161.6938, 63.4625], + [-161.8062, 63.4375], + [-161.8917, 63.4479], + [-161.9651, 63.4318], + [-162, 63.4458], + [-162.1042, 63.4271], + [-162.0417, 63.4854], + [-162.175, 63.5292], + [-162.3021, 63.5375], + [-162.2651, 63.4932], + [-162.3604, 63.4458], + [-162.4068, 63.4068], + [-162.4203, 63.3568], + [-162.5307, 63.3141], + [-162.5297, 63.2922], + [-162.6958, 63.2125], + [-162.7792, 63.2146], + [-162.8411, 63.1859], + [-162.838, 63.1589], + [-162.9766, 63.1057], + [-163.0359, 63.0609], + [-163.2, 63.0438], + [-163.3146, 63.0208], + [-163.3651, 63.0536], + [-163.5042, 63.1104], + [-163.6089, 63.0755], + [-163.6297, 63.1432], + [-163.6672, 63.1516], + [-163.7276, 63.2078], + [-163.8313, 63.2083], + [-164.0458, 63.2625], + [-164.2724, 63.2391], + [-164.3167, 63.2417], + [-164.4661, 63.1891], + [-164.5828, 63.1193], + [-164.5271, 63.0708], + [-164.4839, 63.0849], + [-164.3729, 63.0646], + [-164.35, 63.0187], + [-164.4787, 63.0286], + [-164.687, 63.0182], + [-164.7828, 62.9474], + [-164.862, 62.8224], + [-164.8167, 62.7958], + [-164.6922, 62.787], + [-164.6354, 62.7604], + [-164.5021, 62.7729], + [-164.45, 62.7438], + [-164.4984, 62.7245], + [-164.6193, 62.6464], + [-164.7047, 62.6057], + [-164.8349, 62.5766], + [-164.8458, 62.5438], + [-164.7776, 62.5349], + [-164.7651, 62.5005], + [-164.6521, 62.4521], + [-164.5755, 62.4557], + [-164.5578, 62.4255], + [-164.6417, 62.4188], + [-164.7479, 62.4646], + [-164.8557, 62.4672], + [-164.8583, 62.5333], + [-164.9521, 62.5271], + [-165.0229, 62.5396], + [-165.0974, 62.5203], + [-165.2349, 62.4578], + [-165.3297, 62.363], + [-165.6005, 62.188], + [-165.7057, 62.1411], + [-165.7599, 62.0807], + [-165.7703, 62.0026], + [-165.7391, 61.9193], + [-165.637, 61.8505], + [-165.8021, 61.825], + [-165.9187, 61.8271], + [-166.0995, 61.8099], + [-166.0099, 61.7214], + [-165.9208, 61.6979], + [-165.7375, 61.6875], + [-165.7271, 61.6646], + [-165.6479, 61.6854], + [-165.6229, 61.7167], + [-165.5229, 61.7062], + [-165.6141, 61.6641], + [-165.7396, 61.6583], + [-165.8125, 61.6833], + [-165.8828, 61.662], + [-166.0479, 61.6479], + [-166.0667, 61.6271], + [-166.1516, 61.6422], + [-166.1849, 61.5974], + [-166.1411, 61.5047], + [-166.0333, 61.5396], + [-165.9354, 61.5458], + [-165.7943, 61.5036], + [-165.7479, 61.425], + [-165.7026, 61.4411], + [-165.7063, 61.3875], + [-165.8021, 61.4479], + [-165.9287, 61.4453], + [-165.9578, 61.4172], + [-165.8682, 61.3193], + [-165.7318, 61.3047], + [-165.6641, 61.2755], + [-165.6391, 61.1318], + [-165.5396, 61.0896], + [-165.3958, 61.0771], + [-165.3391, 61.1516], + [-165.3932, 61.1984], + [-165.2896, 61.2646], + [-165.237, 61.2734], + [-165.213, 61.3068], + [-165.2912, 61.3151], + [-165.2828, 61.3516], + [-165.1797, 61.363], + [-165.2047, 61.3349], + [-165.2208, 61.2438], + [-165.2974, 61.2474], + [-165.362, 61.1901], + [-165.2713, 61.1703], + [-165.2417, 61.1437], + [-165.1771, 61.1375], + [-165.1786, 61.1089], + [-165.0083, 61.0479], + [-165, 61.0896], + [-164.9453, 61.1016], + [-164.9453, 60.9922], + [-164.9729, 61.0208], + [-165.0203, 61.0026], + [-165.1271, 61.0125], + [-165.1891, 60.9547], + [-165.1417, 60.925], + [-165.0437, 60.9083], + [-164.9703, 60.9453], + [-164.8422, 60.937], + [-164.7979, 60.8958], + [-164.7521, 60.9229], + [-164.6062, 60.9354], + [-164.5693, 60.9286], + [-164.587, 60.8651], + [-164.5396, 60.8479], + [-164.3687, 60.875], + [-164.2479, 60.8604], + [-164.15, 60.8833], + [-164.088, 60.8776], + [-164.15, 60.9396], + [-164.1099, 60.987], + [-163.9901, 61.0453], + [-163.9766, 60.9818], + [-163.9234, 60.9516], + [-163.9672, 60.8943], + [-164.0609, 60.8755], + [-163.9854, 60.8625], + [-163.9354, 60.8771], + [-163.8776, 60.9276], + [-163.9396, 60.9813], + [-163.9005, 61.0359], + [-163.95, 61.0958], + [-163.875, 61.0625], + [-163.8911, 61.0276], + [-163.8229, 61.0104], + [-163.8443, 61.0911], + [-163.9286, 61.1193], + [-163.9141, 61.1911], + [-163.7729, 61.2292], + [-163.7229, 61.1958], + [-163.5562, 61.2396], + [-163.513, 61.2109], + [-163.6729, 61.1833], + [-163.7042, 61.1479], + [-163.7547, 61.1453], + [-163.7464, 61.1005], + [-163.8057, 61.0547], + [-163.7401, 61.0411], + [-163.737, 60.988], + [-163.6526, 60.9891], + [-163.7088, 60.9516], + [-163.6771, 60.925], + [-163.5578, 60.913], + [-163.5771, 60.8812], + [-163.7187, 60.8646], + [-163.6521, 60.8292], + [-163.6458, 60.8604], + [-163.4479, 60.8917], + [-163.3734, 60.8578], + [-163.3479, 60.8125], + [-163.2776, 60.7964], + [-163.462, 60.7547], + [-163.4089, 60.7224], + [-163.4792, 60.6396], + [-163.5354, 60.6292], + [-163.6583, 60.5812], + [-163.7932, 60.5797], + [-163.8203, 60.6401], + [-163.7917, 60.7542], + [-163.8562, 60.7542], + [-163.9125, 60.7854], + [-164.0161, 60.7641], + [-164.1026, 60.6589], + [-164.2604, 60.6437], + [-164.3729, 60.5521], + [-164.3818, 60.5776], + [-164.2953, 60.6661], + [-164.2104, 60.6792], + [-164.2646, 60.7292], + [-164.2693, 60.7891], + [-164.3188, 60.7833], + [-164.4359, 60.8182], + [-164.6849, 60.8234], + [-164.6911, 60.862], + [-164.638, 60.9016], + [-164.725, 60.8979], + [-164.8479, 60.85], + [-164.9292, 60.9208], + [-164.9599, 60.8953], + [-164.8714, 60.8536], + [-164.8776, 60.812], + [-165.0021, 60.7854], + [-165.0161, 60.7484], + [-164.963, 60.7266], + [-164.9901, 60.6984], + [-165.0562, 60.6875], + [-165.1714, 60.6234], + [-165.2453, 60.6099], + [-165.275, 60.575], + [-165.3766, 60.5745], + [-165.4182, 60.5495], + [-165.3703, 60.5068], + [-165.2646, 60.4917], + [-165.1875, 60.4979], + [-165.0479, 60.5458], + [-164.9568, 60.5286], + [-165.0005, 60.4755], + [-165.1391, 60.4422], + [-165.0141, 60.3609], + [-164.8646, 60.3063], + [-164.7063, 60.2938], + [-164.6755, 60.3089], + [-164.6516, 60.2505], + [-164.4979, 60.175], + [-164.3828, 60.0776], + [-164.3432, 60.0568], + [-164.1938, 60.0271], + [-164.1257, 59.9727], + [-164.2005, 59.9588], + [-164.1983, 59.9151], + [-164.1408, 59.8498], + [-164.0052, 59.8144], + [-163.8726, 59.8009], + [-163.681, 59.7976], + [-163.4308, 59.812], + [-163.1472, 59.8478], + [-162.9984, 59.8869], + [-162.913, 59.9232], + [-162.7842, 59.9428], + [-162.7333, 59.9719], + [-162.8141, 60.0297], + [-162.7734, 60.0693], + [-162.7359, 60.0432], + [-162.738, 59.9999], + [-162.641, 59.974], + [-162.5154, 59.9893], + [-162.4797, 60.0318], + [-162.5036, 60.113], + [-162.4505, 60.1828], + [-162.5599, 60.2193], + [-162.5443, 60.2776], + [-162.4854, 60.3667], + [-162.413, 60.3755], + [-162.3755, 60.4651], + [-162.3234, 60.513], + [-162.2807, 60.5953], + [-162.2208, 60.6333], + [-162.034, 60.6646], + [-162.2141, 60.5786], + [-162.2172, 60.5089], + [-162.3016, 60.4474], + [-162.3026, 60.388], + [-162.3292, 60.3583], + [-162.4578, 60.2953], + [-162.3516, 60.238], + [-162.262, 60.1693], + [-162.3661, 60.1589], + [-162.2646, 60.0583], + [-162.2661, 60.1203], + [-162.1792, 60.1375], + [-162.2349, 60.088], + [-162.1889, 59.999], + [-162.0814, 59.9365], + [-162.088, 59.8868], + [-161.9655, 59.7998], + [-161.8784, 59.6948], + [-161.8681, 59.635], + [-161.7081, 59.5], + [-161.7365, 59.4698], + [-161.8001, 59.4715], + [-161.8403, 59.4158], + [-161.9588, 59.3722], + [-161.9604, 59.2433], + [-162.0188, 59.2287], + [-161.975, 59.1404], + [-161.8869, 59.0719], + [-161.7885, 58.9682], + [-161.7891, 58.8917], + [-161.7583, 58.7966], + [-161.8027, 58.7402], + [-161.8671, 58.7145], + [-161.8353, 58.6785], + [-161.9481, 58.6505], + [-161.995, 58.6822], + [-162.1709, 58.6513], + [-162.0841, 58.6257], + [-161.8223, 58.6291], + [-161.7745, 58.6], + [-161.7632, 58.55], + [-161.7123, 58.553], + [-161.6319, 58.5985], + [-161.5479, 58.6064], + [-161.5189, 58.6315], + [-161.3766, 58.667], + [-161.3659, 58.7191], + [-161.2903, 58.7719], + [-161.1792, 58.7844], + [-161.0017, 58.8486], + [-160.9632, 58.8768], + [-160.8651, 58.8799], + [-160.8252, 58.8447], + [-160.778, 58.8922], + [-160.6365, 58.963], + [-160.3585, 59.0738], + [-160.2808, 59.0225], + [-160.256, 58.9868], + [-160.33, 58.9536], + [-160.2647, 58.9443], + [-160.2487, 58.8906], + [-160.1598, 58.9266], + [-160.1602, 58.863], + [-160.0243, 58.8852], + [-159.9727, 58.8189], + [-159.9048, 58.7683], + [-159.802, 58.8027], + [-159.7961, 58.8523], + [-159.7439, 58.8939], + [-159.7362, 58.9305], + [-159.6228, 58.9366], + [-159.5906, 58.9041], + [-159.6473, 58.8414], + [-159.4973, 58.8189], + [-159.3875, 58.7578], + [-159.3176, 58.6961], + [-159.2084, 58.5731], + [-159.0589, 58.4212], + [-158.9013, 58.3908], + [-158.8118, 58.4047], + [-158.7018, 58.4868], + [-158.7513, 58.4954], + [-158.7757, 58.5561], + [-158.8369, 58.6251], + [-158.8805, 58.7284], + [-158.8039, 58.736], + [-158.7746, 58.7751], + [-158.7977, 58.8151], + [-158.7822, 58.8824], + [-158.7217, 58.8734], + [-158.6254, 58.9117], + [-158.5182, 59.0352], + [-158.407, 59.0646], + [-158.3197, 59.0476], + [-158.42, 59.023], + [-158.4436, 58.9703], + [-158.4928, 58.952], + [-158.4888, 58.9176], + [-158.5484, 58.7923], + [-158.4413, 58.775], + [-158.3695, 58.7454], + [-158.3141, 58.6461], + [-158.2212, 58.6146], + [-158.0872, 58.6202], + [-157.8141, 58.6888], + [-157.7142, 58.7265], + [-157.5443, 58.7592], + [-157.3156, 58.8351], + [-157.211, 58.8421], + [-157.0952, 58.8756], + [-157.0375, 58.9161], + [-157.0165, 58.9677], + [-156.9232, 58.9923], + [-157.0194, 58.8719], + [-157.0044, 58.8224], + [-157.0683, 58.769], + [-157.0935, 58.704], + [-157.2345, 58.6322], + [-157.3199, 58.5593], + [-157.3834, 58.522], + [-157.472, 58.4933], + [-157.5424, 58.3825], + [-157.5444, 58.2781], + [-157.4479, 58.2092], + [-157.3806, 58.2179], + [-157.437, 58.1662], + [-157.529, 58.1654], + [-157.5874, 58.1275], + [-157.6279, 57.9741], + [-157.6651, 57.7935], + [-157.7012, 57.7301], + [-157.7131, 57.6363], + [-157.6965, 57.6124], + [-157.6049, 57.6064], + [-157.5773, 57.5147], + [-157.6386, 57.4965], + [-157.6959, 57.5519], + [-157.7413, 57.5553], + [-157.9276, 57.474], + [-158.0017, 57.408], + [-158.0903, 57.3583], + [-158.2571, 57.3126], + [-158.3312, 57.2806], + [-158.5435, 57.1295], + [-158.6789, 57.0053], + [-158.6747, 56.8567], + [-158.6523, 56.8153], + [-158.7955, 56.7801], + [-158.9313, 56.8181], + [-158.9484, 56.8588], + [-159.0537, 56.8006], + [-159.2885, 56.7125], + [-159.3997, 56.6871], + [-159.5476, 56.6228], + [-159.818, 56.5391], + [-160.0419, 56.4245], + [-160.154, 56.3964], + [-160.255, 56.3237], + [-160.3845, 56.2548], + [-160.4559, 56.1404], + [-160.4528, 56.1209], + [-160.5223, 56.0391], + [-160.5411, 55.9922], + [-160.5229, 55.943], + [-160.4233, 55.9106], + [-160.3189, 55.8603], + [-160.256, 55.7716], + [-160.3727, 55.7784], + [-160.4102, 55.8041], + [-160.4552, 55.7832], + [-160.4582, 55.8367], + [-160.4905, 55.8603], + [-160.6318, 55.855], + [-160.7831, 55.8831], + [-160.7485, 55.8169], + [-160.757, 55.7882], + [-160.6516, 55.7345], + [-160.7529, 55.7499], + [-160.8015, 55.7329], + [-160.8927, 55.8045], + [-160.9439, 55.8145], + [-160.9463, 55.85], + [-161.0184, 55.9046], + [-160.9631, 55.9417], + [-160.8913, 55.9507], + [-160.8734, 56], + [-161.0517, 55.9416], + [-161.0977, 55.9592], + [-161.3246, 55.9567], + [-161.2636, 55.9835], + [-161.5459, 55.9389], + [-161.8046, 55.8879], + [-161.9665, 55.7999], + [-162.0389, 55.7883], + [-162.1221, 55.7396], + [-162.2556, 55.6891], + [-162.3725, 55.5891], + [-162.5114, 55.4925], + [-162.6259, 55.4361], + [-162.5049, 55.4597], + [-162.5197, 55.4205], + [-162.4862, 55.3767], + [-162.5803, 55.3473], + [-162.6432, 55.3687], + [-162.7104, 55.3187], + [-162.8093, 55.3015], + [-162.8651, 55.1811], + [-163.0439, 55.1682], + [-163.1652, 55.1712], + [-163.2982, 55.1087], + [-163.279, 55.0362], + [-163.2919, 54.9664], + [-163.2243, 54.9238], + [-163.3329, 54.9467], + [-163.3163, 54.8769], + [-163.3879, 54.8489], + [-163.3451, 54.8001], + [-163.2396, 54.8277], + [-163.1262, 54.9037], + [-163.0305, 54.9436], + [-163.0478, 54.9697], + [-163.2078, 55.0228], + [-163.2265, 55.0758], + [-163.1938, 55.1261], + [-163.1032, 55.1192], + [-162.9969, 55.0745], + [-162.9463, 55.0228], + [-162.9615, 54.9945], + [-162.9151, 54.9475], + [-162.832, 54.9204], + [-162.7062, 54.9567], + [-162.6528, 55.0163], + [-162.5593, 54.9513], + [-162.5812, 55.0345], + [-162.623, 55.0629], + [-162.646, 55.196], + [-162.6917, 55.1913], + [-162.7173, 55.2379], + [-162.6655, 55.2909], + [-162.5064, 55.2397], + [-162.4939, 55.1695], + [-162.4035, 55.1147], + [-162.5206, 55.1143], + [-162.5017, 55.0733], + [-162.4138, 55.0325], + [-162.3339, 55.0393], + [-162.2209, 55.0258], + [-162.1885, 55.0603], + [-162.229, 55.1037], + [-162.1747, 55.1507], + [-162.1006, 55.1552], + [-162.1227, 55.104], + [-162.0497, 55.0697], + [-161.9562, 55.1041], + [-161.9614, 55.1582], + [-162.0296, 55.1714], + [-162.001, 55.2409], + [-161.9015, 55.2437], + [-161.817, 55.2965], + [-161.6815, 55.4076], + [-161.7033, 55.5099], + [-161.6338, 55.5601], + [-161.5955, 55.6091], + [-161.4965, 55.6294], + [-161.3921, 55.6269], + [-161.3552, 55.5871], + [-161.4704, 55.4797], + [-161.4767, 55.423], + [-161.5081, 55.3791], + [-161.4763, 55.3573], + [-161.32, 55.3822], + [-161.318, 55.3591], + [-161.2391, 55.3547], + [-160.9878, 55.4447], + [-160.9445, 55.5085], + [-160.8428, 55.5225], + [-160.8329, 55.4708], + [-160.79, 55.4549], + [-160.663, 55.4618], + [-160.65, 55.5129], + [-160.7458, 55.5243], + [-160.7239, 55.5561], + [-160.6627, 55.5436], + [-160.5949, 55.5728], + [-160.5306, 55.4757], + [-160.4546, 55.5099], + [-160.4415, 55.5655], + [-160.3552, 55.6149], + [-160.4116, 55.6589], + [-160.2746, 55.6335], + [-160.2466, 55.6579], + [-160.1221, 55.6615], + [-160.135, 55.7061], + [-160.0495, 55.693], + [-160.0154, 55.7155], + [-160.0483, 55.763], + [-159.9486, 55.8158], + [-159.8943, 55.7839], + [-159.8408, 55.8003], + [-159.8326, 55.8482], + [-159.7058, 55.8449], + [-159.6225, 55.8199], + [-159.6602, 55.7543], + [-159.6551, 55.7148], + [-159.6857, 55.651], + [-159.6287, 55.618], + [-159.7016, 55.6054], + [-159.7085, 55.5674], + [-159.6272, 55.5794], + [-159.5322, 55.6465], + [-159.5368, 55.7191], + [-159.4893, 55.7627], + [-159.5238, 55.884], + [-159.4529, 55.8883], + [-159.4541, 55.8095], + [-159.404, 55.7873], + [-159.3941, 55.8549], + [-159.2602, 55.8909], + [-159.1688, 55.891], + [-159.065, 55.9181], + [-159.0038, 55.8871], + [-158.9884, 55.9263], + [-158.907, 55.9267], + [-158.8342, 56.0159], + [-158.7958, 55.9872], + [-158.7293, 56.0089], + [-158.7242, 55.9508], + [-158.6342, 55.9807], + [-158.6811, 56.1049], + [-158.6032, 56.125], + [-158.5791, 56.0419], + [-158.5049, 55.9787], + [-158.468, 56.0239], + [-158.4894, 56.0487], + [-158.4395, 56.106], + [-158.3948, 56.0883], + [-158.3372, 56.1548], + [-158.1904, 56.1923], + [-158.181, 56.2338], + [-158.2445, 56.1981], + [-158.3711, 56.2155], + [-158.2117, 56.2715], + [-158.3471, 56.3213], + [-158.4531, 56.2947], + [-158.4357, 56.3401], + [-158.5435, 56.3077], + [-158.5661, 56.2491], + [-158.6382, 56.2596], + [-158.6023, 56.3131], + [-158.5134, 56.3493], + [-158.5117, 56.3707], + [-158.4057, 56.4512], + [-158.3311, 56.4821], + [-158.1839, 56.4546], + [-158.1328, 56.4606], + [-158.1443, 56.5175], + [-158.0297, 56.5077], + [-157.8876, 56.4681], + [-157.8248, 56.4978], + [-157.8195, 56.5561], + [-157.909, 56.571], + [-158.1281, 56.5269], + [-158.1304, 56.5508], + [-158.0289, 56.6013], + [-157.9762, 56.5993], + [-157.9438, 56.6347], + [-157.7713, 56.6797], + [-157.7387, 56.6739], + [-157.6824, 56.6073], + [-157.5846, 56.6211], + [-157.4624, 56.6235], + [-157.4798, 56.6716], + [-157.555, 56.6782], + [-157.5674, 56.7055], + [-157.5113, 56.7622], + [-157.405, 56.7731], + [-157.4747, 56.8238], + [-157.4381, 56.8589], + [-157.386, 56.862], + [-157.2033, 56.7642], + [-157.1398, 56.8042], + [-157.1872, 56.8547], + [-157.0907, 56.8184], + [-157.0358, 56.8889], + [-156.936, 56.9156], + [-156.8929, 56.9638], + [-156.8343, 56.8954], + [-156.8089, 56.9025], + [-156.7866, 56.9709], + [-156.7279, 57.0382], + [-156.6754, 56.9938], + [-156.5838, 56.9871], + [-156.5887, 57.0365], + [-156.5169, 57.0491], + [-156.4661, 57.123], + [-156.4147, 57.1257], + [-156.3389, 57.1761], + [-156.39, 57.202], + [-156.3829, 57.2522], + [-156.3224, 57.2898], + [-156.3564, 57.3224], + [-156.5577, 57.288], + [-156.5415, 57.323], + [-156.4523, 57.3454], + [-156.3342, 57.4189], + [-156.2247, 57.4439], + [-156.1835, 57.4771], + [-156.1208, 57.4717], + [-156.1014, 57.433], + [-156.0255, 57.4335], + [-156.056, 57.5171], + [-156.0191, 57.5646], + [-155.9342, 57.5297], + [-155.8353, 57.5739], + [-155.7959, 57.5403], + [-155.735, 57.5398], + [-155.7431, 57.6292], + [-155.5962, 57.6584], + [-155.6395, 57.704], + [-155.6043, 57.7807], + [-155.5714, 57.7891], + [-155.4683, 57.7441], + [-155.4209, 57.7447], + [-155.3904, 57.7125], + [-155.3048, 57.7233], + [-155.3312, 57.8263], + [-155.236, 57.826], + [-155.2103, 57.8682], + [-155.1558, 57.8551], + [-155.091, 57.8727], + [-155.0688, 57.9042], + [-155.1116, 57.9442], + [-155.0558, 57.9503], + [-155.0391, 58.0201], + [-154.8747, 58.0278], + [-154.8114, 57.9999], + [-154.7332, 58.017], + [-154.7184, 58.0581], + [-154.6523, 58.062], + [-154.5883, 58.0204], + [-154.5417, 58.0602], + [-154.6018, 58.1207], + [-154.465, 58.0816], + [-154.4512, 58.1814], + [-154.4193, 58.1302], + [-154.3152, 58.0923], + [-154.3374, 58.1599], + [-154.2724, 58.1305], + [-154.2155, 58.1384], + [-154.2903, 58.1774], + [-154.2779, 58.2017], + [-154.178, 58.1917], + [-154.1517, 58.2339], + [-154.2079, 58.2542], + [-154.106, 58.2778], + [-154.1858, 58.3234], + [-154.2602, 58.2969], + [-154.261, 58.2736], + [-154.3542, 58.2501], + [-154.3365, 58.2845], + [-154.1803, 58.3594], + [-154.0999, 58.3432], + [-154.0074, 58.3752], + [-154.0671, 58.4271], + [-154.0794, 58.4789], + [-153.9629, 58.4862], + [-153.9278, 58.5205], + [-153.901, 58.6097], + [-153.7614, 58.6044], + [-153.5943, 58.6318], + [-153.5644, 58.6821], + [-153.4551, 58.7055], + [-153.3945, 58.7473], + [-153.3559, 58.8395], + [-153.3125, 58.8542], + [-153.3361, 58.9001], + [-153.4074, 58.9694], + [-153.4844, 58.9987], + [-153.5463, 58.9829], + [-153.6286, 59.0106], + [-153.6996, 59.0755], + [-153.8071, 59.074], + [-153.8644, 59.0553], + [-154.0682, 59.0741], + [-154.1401, 59.0217], + [-154.1806, 59.0229], + [-154.2005, 59.0735], + [-154.1794, 59.1219], + [-154.2488, 59.1166], + [-154.1853, 59.1924], + [-154.1292, 59.1993], + [-154.1425, 59.2687], + [-154.1131, 59.3052], + [-153.9724, 59.3568], + [-153.9102, 59.4206], + [-153.8102, 59.4228], + [-153.7293, 59.4409], + [-153.7072, 59.4677], + [-153.7636, 59.5456], + [-153.5925, 59.5537], + [-153.5542, 59.5972], + [-153.6333, 59.6449], + [-153.6114, 59.6765], + [-153.5658, 59.6249], + [-153.4798, 59.6447], + [-153.4462, 59.6982], + [-153.4526, 59.7863], + [-153.3843, 59.7309], + [-153.3938, 59.6651], + [-153.3453, 59.6217], + [-153.2865, 59.6709], + [-153.2179, 59.635], + [-153.1251, 59.678], + [-153.0592, 59.6904], + [-152.9938, 59.8083], + [-153.0038, 59.829], + [-153.0943, 59.8335], + [-153.1476, 59.8091], + [-153.2831, 59.8305], + [-153.2222, 59.8651], + [-153.1204, 59.8659], + [-153.0068, 59.8868], + [-152.8699, 59.8752], + [-152.7069, 59.9201], + [-152.6685, 59.983], + [-152.6089, 60.0068], + [-152.5755, 60.0828], + [-152.6734, 60.1641], + [-152.8125, 60.2125], + [-152.8313, 60.2333], + [-152.6687, 60.2], + [-152.5625, 60.2167], + [-152.4745, 60.2786], + [-152.4187, 60.2854], + [-152.3703, 60.3516], + [-152.3042, 60.3604], + [-152.238, 60.3953], + [-152.2995, 60.413], + [-152.3307, 60.4766], + [-152.25, 60.5354], + [-152.1792, 60.5687], + [-152.0922, 60.5797], + [-152.0557, 60.637], + [-151.9974, 60.6724], + [-151.8505, 60.7214], + [-151.7026, 60.7307], + [-151.7912, 60.8214], + [-151.7724, 60.8661], + [-151.7146, 60.8958], + [-151.4828, 60.9964], + [-151.3562, 61.0083], + [-151.2995, 61.0328], + [-151.163, 61.0464], + [-151.0495, 61.1599], + [-150.9354, 61.2], + [-150.8542, 61.2083], + [-150.6938, 61.2562], + [-150.6646, 61.325], + [-150.5979, 61.3604], + [-150.5453, 61.4078], + [-150.4896, 61.3979], + [-150.5005, 61.4661], + [-150.5849, 61.4964], + [-150.5724, 61.5307], + [-150.4901, 61.5568], + [-150.4859, 61.587], + [-150.5911, 61.6339], + [-150.6703, 61.7005], + [-150.7271, 61.8], + [-150.7578, 61.8089], + [-150.8276, 61.887], + [-151.0208, 61.9188], + [-151.1229, 61.975], + [-151.1687, 61.9896], + [-151.113, 61.9849], + [-150.9495, 61.9089], + [-150.8396, 61.8958], + [-150.7297, 61.8266], + [-150.7021, 61.7729], + [-150.6891, 61.7339], + [-150.5807, 61.6359], + [-150.5437, 61.6271], + [-150.4901, 61.5974], + [-150.4729, 61.5729], + [-150.4276, 61.5755], + [-150.3849, 61.6474], + [-150.313, 61.6693], + [-150.2932, 61.7411], + [-150.1984, 61.7964], + [-150.2078, 61.8453], + [-150.1151, 61.9193], + [-150.1333, 61.9396], + [-150.1578, 61.9786], + [-150.125, 62.0604], + [-150.0818, 62.0953], + [-150.1891, 62.1682], + [-150.1276, 62.2161], + [-150.1682, 62.2495], + [-150.1297, 62.2755], + [-150.1562, 62.3354], + [-150.1687, 62.3542], + [-150.1047, 62.3057], + [-150.137, 62.237], + [-150.1151, 62.2245], + [-150.1224, 62.1891], + [-150.1745, 62.1672], + [-150.1089, 62.1422], + [-150.0693, 62.1036], + [-150.1161, 62.0411], + [-150.0917, 61.9708], + [-150.1068, 61.8984], + [-150.1849, 61.8307], + [-150.1901, 61.7911], + [-150.25, 61.7625], + [-150.2688, 61.7167], + [-150.313, 61.663], + [-150.3745, 61.6172], + [-150.3651, 61.5943], + [-150.5437, 61.5271], + [-150.5562, 61.4875], + [-150.4859, 61.4703], + [-150.4547, 61.4099], + [-150.4937, 61.3708], + [-150.562, 61.3391], + [-150.5521, 61.2958], + [-150.4521, 61.25], + [-150.3062, 61.2583], + [-150.1167, 61.2562], + [-149.9812, 61.2375], + [-149.9193, 61.2651], + [-149.9182, 61.3245], + [-149.8771, 61.3875], + [-149.825, 61.3937], + [-149.762, 61.4453], + [-149.5984, 61.488], + [-149.4687, 61.4667], + [-149.4062, 61.4854], + [-149.2688, 61.4938], + [-149.2146, 61.4792], + [-149.1604, 61.5021], + [-149.0333, 61.5042], + [-148.9354, 61.5187], + [-148.8188, 61.4854], + [-148.7172, 61.4807], + [-148.7495, 61.4578], + [-148.8661, 61.4693], + [-148.9354, 61.5021], + [-148.9958, 61.5083], + [-149.0896, 61.4875], + [-149.1562, 61.4979], + [-149.1938, 61.475], + [-149.2354, 61.4792], + [-149.3813, 61.4667], + [-149.6375, 61.3854], + [-149.7016, 61.3807], + [-149.7146, 61.3292], + [-149.8161, 61.312], + [-149.8963, 61.2234], + [-149.975, 61.1979], + [-150.0188, 61.2021], + [-150.0682, 61.1526], + [-149.8359, 61.0724], + [-149.7328, 61.0151], + [-149.5917, 60.9813], + [-149.4917, 60.9833], + [-149.3609, 60.9307], + [-149.1766, 60.9359], + [-149.0776, 60.9057], + [-149.025, 60.85], + [-149.0896, 60.8958], + [-149.1734, 60.887], + [-149.3771, 60.8937], + [-149.5625, 60.9333], + [-149.6479, 60.9229], + [-149.7458, 60.9604], + [-149.8437, 60.9667], + [-149.9271, 60.9313], + [-150.0917, 60.9146], + [-150.262, 60.9443], + [-150.3708, 61.0375], + [-150.5078, 61.0036], + [-150.6943, 60.9422], + [-150.8922, 60.8526], + [-151.0542, 60.7875], + [-151.2146, 60.7792], + [-151.3021, 60.7396], + [-151.4083, 60.7167], + [-151.3505, 60.6432], + [-151.3266, 60.5776], + [-151.2542, 60.5458], + [-151.2807, 60.5016], + [-151.2953, 60.3859], + [-151.3766, 60.3661], + [-151.3792, 60.2938], + [-151.413, 60.2151], + [-151.4984, 60.1547], + [-151.6224, 60.0891], + [-151.6953, 60.0349], + [-151.7593, 59.9185], + [-151.8148, 59.8705], + [-151.8711, 59.7676], + [-151.8376, 59.7204], + [-151.6451, 59.6473], + [-151.4835, 59.6386], + [-151.4369, 59.6701], + [-151.3415, 59.6862], + [-151.0588, 59.7969], + [-150.9574, 59.7859], + [-151.1245, 59.6957], + [-151.206, 59.6359], + [-151.1974, 59.5941], + [-151.2816, 59.5991], + [-151.2712, 59.5578], + [-151.3654, 59.5599], + [-151.4544, 59.5409], + [-151.4901, 59.4817], + [-151.5611, 59.4699], + [-151.6361, 59.4861], + [-151.7088, 59.4739], + [-151.7067, 59.4022], + [-151.7469, 59.4569], + [-151.8925, 59.4288], + [-151.8951, 59.3845], + [-151.9941, 59.3147], + [-151.9818, 59.2579], + [-151.8719, 59.253], + [-151.884, 59.2139], + [-151.7651, 59.2242], + [-151.7402, 59.1573], + [-151.5934, 59.1629], + [-151.5779, 59.2077], + [-151.5262, 59.1955], + [-151.4539, 59.2373], + [-151.4462, 59.2743], + [-151.3123, 59.2117], + [-151.3058, 59.2469], + [-151.1862, 59.2048], + [-151.1179, 59.2199], + [-151.1077, 59.2468], + [-151.2594, 59.2932], + [-151.2151, 59.3106], + [-151.0945, 59.2694], + [-151.0542, 59.3042], + [-151.0182, 59.2115], + [-150.9883, 59.2399], + [-150.9149, 59.2512], + [-150.8565, 59.3581], + [-150.7751, 59.3747], + [-150.7471, 59.4243], + [-150.6057, 59.4293], + [-150.5845, 59.4952], + [-150.6296, 59.5414], + [-150.53, 59.6037], + [-150.5179, 59.5739], + [-150.5768, 59.5294], + [-150.4866, 59.4953], + [-150.4383, 59.5146], + [-150.3277, 59.6253], + [-150.2516, 59.7266], + [-150.2701, 59.6322], + [-150.3609, 59.528], + [-150.3243, 59.4713], + [-150.2222, 59.5438], + [-150.1266, 59.5896], + [-150.0906, 59.65], + [-150.039, 59.6128], + [-149.9222, 59.687], + [-149.9966, 59.7494], + [-150.0598, 59.7753], + [-150.0252, 59.7987], + [-149.978, 59.7698], + [-149.92, 59.7695], + [-149.8239, 59.699], + [-149.7965, 59.6575], + [-149.739, 59.7139], + [-149.8224, 59.8347], + [-149.7632, 59.8204], + [-149.7503, 59.9411], + [-149.6894, 59.9469], + [-149.661, 59.893], + [-149.6618, 59.7745], + [-149.5525, 59.7308], + [-149.548, 59.7824], + [-149.5957, 59.7662], + [-149.6202, 59.8365], + [-149.569, 59.9026], + [-149.5242, 59.928], + [-149.4702, 59.9182], + [-149.4418, 59.9779], + [-149.3963, 60.0016], + [-149.4474, 60.0339], + [-149.4432, 60.1161], + [-149.3589, 60.1141], + [-149.3125, 59.9819], + [-149.3792, 59.9031], + [-149.259, 59.9229], + [-149.2063, 60.0083], + [-149.1682, 60.037], + [-149.0339, 60.0432], + [-149.1312, 59.9643], + [-149.0787, 59.9533], + [-149.039, 59.9781], + [-149.009, 59.9462], + [-148.9628, 59.9721], + [-148.8835, 59.9252], + [-148.8458, 59.9242], + [-148.7708, 59.9768], + [-148.6833, 59.9219], + [-148.6081, 59.9285], + [-148.5533, 59.9697], + [-148.5208, 60.0229], + [-148.456, 59.9413], + [-148.4103, 59.981], + [-148.3734, 60.0911], + [-148.3932, 60.1057], + [-148.3271, 60.1625], + [-148.2833, 60.1667], + [-148.2896, 60.1104], + [-148.2417, 60.1146], + [-148.1214, 60.1651], + [-148.1057, 60.2036], + [-148.1453, 60.2349], + [-148.1797, 60.163], + [-148.2104, 60.2583], + [-148.3292, 60.2125], + [-148.3542, 60.2813], + [-148.3, 60.2604], + [-148.2088, 60.3005], + [-148.1161, 60.3776], + [-148.0068, 60.4005], + [-147.9672, 60.4484], + [-148.0521, 60.4604], + [-147.9714, 60.4818], + [-147.9734, 60.5141], + [-148.0672, 60.5609], + [-148.0818, 60.5932], + [-148.1516, 60.5745], + [-148.1682, 60.538], + [-148.2693, 60.487], + [-148.3328, 60.4724], + [-148.3479, 60.5042], + [-148.4349, 60.513], + [-148.4542, 60.5417], + [-148.5745, 60.4995], + [-148.6896, 60.4354], + [-148.7146, 60.4562], + [-148.5974, 60.5328], + [-148.5229, 60.5646], + [-148.4542, 60.5687], + [-148.325, 60.5292], + [-148.2682, 60.5849], + [-148.188, 60.6099], + [-148.2547, 60.7026], + [-148.2583, 60.7562], + [-148.3307, 60.7036], + [-148.3583, 60.6542], + [-148.4047, 60.6651], + [-148.3833, 60.7542], + [-148.512, 60.7661], + [-148.588, 60.6984], + [-148.6812, 60.6458], + [-148.6807, 60.7057], + [-148.6037, 60.7599], + [-148.5292, 60.7833], + [-148.5604, 60.8042], + [-148.6562, 60.775], + [-148.7104, 60.7875], + [-148.6021, 60.825], + [-148.4333, 60.8292], + [-148.4063, 60.8458], + [-148.3068, 60.8339], + [-148.2797, 60.8964], + [-148.312, 60.9568], + [-148.2563, 60.9354], + [-148.1859, 60.9901], + [-148.1651, 61.0661], + [-148.25, 61.0542], + [-148.3245, 61.0266], + [-148.3838, 60.9776], + [-148.3687, 61.0417], + [-148.2354, 61.0875], + [-148.1479, 61.0979], + [-148.0792, 61.0062], + [-148.0005, 61.063], + [-147.9807, 61.1078], + [-147.8505, 61.1839], + [-147.7224, 61.287], + [-147.6714, 61.2693], + [-147.7542, 61.2083], + [-147.7, 61.225], + [-147.6338, 61.2151], + [-147.7578, 61.1849], + [-147.9057, 61.0891], + [-147.9943, 60.9609], + [-148.0104, 60.9167], + [-147.9229, 60.8896], + [-147.9099, 60.8536], + [-147.7792, 60.8104], + [-147.7995, 60.8568], + [-147.7672, 60.8964], + [-147.7958, 60.9188], + [-147.7208, 60.9396], + [-147.6667, 60.8625], + [-147.6047, 60.8484], + [-147.5943, 60.9359], + [-147.6167, 61.0083], + [-147.5568, 61.0797], + [-147.5599, 61.1453], + [-147.5104, 61.0812], + [-147.5412, 60.987], + [-147.5099, 60.9099], + [-147.4755, 60.9911], + [-147.4458, 60.8937], + [-147.3667, 60.8833], + [-147.3062, 60.9229], + [-147.2505, 60.9276], + [-147.2912, 60.9849], + [-147.2276, 60.9922], + [-147.2104, 60.9437], + [-147.0922, 61.013], + [-147.0354, 60.9917], + [-147.0036, 61.0203], + [-146.9771, 60.9667], + [-147.0474, 60.9422], + [-146.9625, 60.9313], + [-146.863, 60.9734], + [-146.7667, 61.0438], + [-146.7021, 61.0542], + [-146.5979, 61.1437], + [-146.5708, 61.1208], + [-146.4646, 61.1333], + [-146.3042, 61.1292], + [-146.2354, 61.0896], + [-146.45, 61.0771], + [-146.6104, 61.0812], + [-146.7161, 60.9672], + [-146.6208, 60.9521], + [-146.6021, 60.9188], + [-146.7516, 60.9453], + [-146.6891, 60.8672], + [-146.6313, 60.8854], + [-146.6333, 60.8167], + [-146.5708, 60.8563], + [-146.5396, 60.8104], + [-146.3562, 60.8167], + [-146.2901, 60.838], + [-146.2453, 60.8786], + [-146.1708, 60.8458], + [-146.2432, 60.838], + [-146.2312, 60.8083], + [-146.3313, 60.7854], + [-146.5474, 60.7703], + [-146.6714, 60.7391], + [-146.6536, 60.6859], + [-146.5354, 60.6917], + [-146.4896, 60.6688], + [-146.4187, 60.6875], + [-146.3057, 60.7536], + [-146.2979, 60.7125], + [-146.2349, 60.7203], + [-146.1854, 60.7562], + [-146.1568, 60.7255], + [-146.0693, 60.7734], + [-146.0568, 60.7359], + [-146.2172, 60.663], + [-146.2521, 60.6229], + [-146.15, 60.6312], + [-146.025, 60.6646], + [-145.95, 60.6979], + [-145.9995, 60.6411], + [-145.938, 60.6255], + [-145.8995, 60.6745], + [-145.8437, 60.6104], + [-145.6651, 60.6547], + [-145.6943, 60.5922], + [-145.7922, 60.5193], + [-145.9141, 60.4891], + [-145.8792, 60.4458], + [-145.7583, 60.4646], + [-145.6, 60.45], + [-145.5495, 60.4359], + [-145.4792, 60.3812], + [-145.3687, 60.3563], + [-145.3333, 60.3417], + [-145.2958, 60.3375], + [-145.2088, 60.3672], + [-145.0901, 60.438], + [-145.0307, 60.5099], + [-144.9833, 60.5354], + [-144.8859, 60.5485], + [-144.8396, 60.6188], + [-144.7792, 60.6292], + [-144.7625, 60.6792], + [-144.7, 60.6958], + [-144.7042, 60.675], + [-144.6542, 60.6667], + [-144.6021, 60.7167], + [-144.5917, 60.7333], + [-144.6396, 60.6521], + [-144.7083, 60.6458], + [-144.7641, 60.6661], + [-144.7588, 60.6109], + [-144.8109, 60.563], + [-144.8229, 60.5146], + [-144.7797, 60.4953], + [-144.7943, 60.4547], + [-144.9141, 60.3578], + [-144.9536, 60.288], + [-144.7667, 60.2792], + [-144.6771, 60.2104], + [-144.5562, 60.1771], + [-144.3729, 60.1667], + [-144.2937, 60.1813], + [-144.2891, 60.1422], + [-144.1083, 60.0979], + [-144.0453, 60.0484], + [-144.2125, 60.0417], + [-144.2479, 60.0229], + [-144.0292, 60.0208], + [-143.8899, 59.9893], + [-143.6479, 60.0375], + [-143.4687, 60.0604], + [-143.4292, 60.0521], + [-143.1083, 60.0667], + [-143.0375, 60.1], + [-142.9896, 60.0833], + [-142.7583, 60.1104], + [-142.2125, 60.0479], + [-142.0896, 60.025], + [-142.0208, 60.025], + [-141.8854, 60.0021], + [-141.7502, 59.9515], + [-141.6046, 59.9636], + [-141.5308, 59.9897], + [-141.4297, 60], + [-141.3693, 60.0255], + [-141.4479, 60.0812], + [-141.4521, 60.1104], + [-141.4271, 60.125], + [-141.3458, 60.0854], + [-141.1938, 60.1208], + [-141.3146, 60.0542] + ] + ], + [ + [ + [-153.2523, 57.997], + [-153.3048, 57.9846], + [-153.0948, 57.8618], + [-153.2349, 57.8944], + [-153.1796, 57.7972], + [-153.2057, 57.7901], + [-153.3381, 57.8037], + [-153.4768, 57.8417], + [-153.4604, 57.7899], + [-153.3313, 57.7493], + [-153.3528, 57.7027], + [-153.3903, 57.7499], + [-153.4889, 57.7744], + [-153.5247, 57.6561], + [-153.5561, 57.7382], + [-153.5474, 57.7847], + [-153.5718, 57.8323], + [-153.6253, 57.8423], + [-153.6191, 57.8804], + [-153.7197, 57.8965], + [-153.9306, 57.8091], + [-153.9356, 57.7297], + [-153.9056, 57.7013], + [-153.8011, 57.6964], + [-153.6667, 57.665], + [-153.5945, 57.6292], + [-153.6078, 57.6008], + [-153.6593, 57.6401], + [-153.8682, 57.6502], + [-153.8798, 57.633], + [-153.6942, 57.5278], + [-153.8487, 57.562], + [-153.8196, 57.5379], + [-153.8122, 57.4136], + [-153.7398, 57.3174], + [-153.7589, 57.3075], + [-153.8326, 57.3861], + [-153.8943, 57.4205], + [-153.9267, 57.5334], + [-153.9894, 57.5386], + [-153.9801, 57.621], + [-154.0172, 57.6483], + [-154.2328, 57.6633], + [-154.2622, 57.6419], + [-154.3872, 57.6139], + [-154.4448, 57.5733], + [-154.5178, 57.5766], + [-154.5228, 57.5367], + [-154.63, 57.5078], + [-154.651, 57.4611], + [-154.7161, 57.4308], + [-154.6956, 57.3989], + [-154.7441, 57.3252], + [-154.7347, 57.2715], + [-154.6211, 57.2704], + [-154.5294, 57.1803], + [-154.5144, 57.0781], + [-154.5283, 56.9922], + [-154.3967, 56.9633], + [-154.3122, 56.9175], + [-154.3033, 56.8419], + [-154.2256, 56.8758], + [-154.205, 56.9292], + [-154.1533, 56.9489], + [-154.1511, 57.0019], + [-154.1105, 57.0447], + [-154.1128, 57.0728], + [-154.0917, 57.1006], + [-154.1157, 57.128], + [-154.2939, 57.1136], + [-154.3789, 57.0497], + [-154.4361, 57.0544], + [-154.4839, 57.0964], + [-154.4744, 57.1242], + [-154.3911, 57.1233], + [-154.3383, 57.1503], + [-154.2572, 57.1438], + [-154.2289, 57.1614], + [-154.1306, 57.1456], + [-154.0767, 57.122], + [-154.013, 57.1289], + [-153.9861, 57.1082], + [-154.055, 57.0908], + [-154.1078, 57.0569], + [-154.0972, 57.0336], + [-154.1417, 56.9972], + [-154.0744, 56.9703], + [-153.9764, 57.0566], + [-153.8818, 57.1171], + [-153.8033, 57.1125], + [-153.9209, 57.0629], + [-153.975, 56.958], + [-153.8595, 56.9833], + [-153.844, 56.945], + [-153.9799, 56.8977], + [-154.0089, 56.86], + [-154.0806, 56.8406], + [-154.1506, 56.7469], + [-154.0556, 56.7631], + [-153.9767, 56.7434], + [-153.8985, 56.7667], + [-153.8426, 56.8329], + [-153.7583, 56.8383], + [-153.6698, 56.9309], + [-153.6013, 56.933], + [-153.5406, 57.0009], + [-153.6388, 57.0157], + [-153.5943, 57.0563], + [-153.7026, 57.057], + [-153.6611, 57.0842], + [-153.573, 57.0927], + [-153.4994, 57.0651], + [-153.486, 57.14], + [-153.4498, 57.1119], + [-153.3419, 57.1898], + [-153.2185, 57.2175], + [-153.0797, 57.2123], + [-152.9507, 57.2491], + [-153.015, 57.3014], + [-153.0985, 57.287], + [-153.1928, 57.3019], + [-152.9974, 57.3446], + [-152.8593, 57.3044], + [-152.8187, 57.2645], + [-152.7432, 57.3129], + [-152.7069, 57.2759], + [-152.6267, 57.3286], + [-152.626, 57.4058], + [-152.7157, 57.4185], + [-152.7627, 57.4583], + [-152.8164, 57.4717], + [-152.9326, 57.4641], + [-152.8832, 57.5117], + [-152.8011, 57.4943], + [-152.7389, 57.5058], + [-152.6636, 57.4632], + [-152.6245, 57.4764], + [-152.5888, 57.444], + [-152.5173, 57.4336], + [-152.4891, 57.4683], + [-152.3504, 57.4213], + [-152.2889, 57.5211], + [-152.1668, 57.5868], + [-152.1544, 57.6205], + [-152.2689, 57.6283], + [-152.4695, 57.6014], + [-152.4004, 57.6876], + [-152.492, 57.6457], + [-152.4638, 57.7251], + [-152.5327, 57.6951], + [-152.5581, 57.719], + [-152.4801, 57.744], + [-152.4485, 57.7782], + [-152.4009, 57.7757], + [-152.3467, 57.835], + [-152.4212, 57.8138], + [-152.4004, 57.8557], + [-152.5269, 57.9104], + [-152.6172, 57.9208], + [-152.7102, 57.8644], + [-152.7285, 57.8189], + [-152.785, 57.8587], + [-152.8458, 57.829], + [-152.8438, 57.729], + [-152.908, 57.7557], + [-152.9123, 57.8195], + [-152.8612, 57.8791], + [-152.7971, 57.8995], + [-152.8497, 57.9291], + [-152.9995, 57.9471], + [-152.9976, 57.9188], + [-153.1989, 57.9682], + [-153.2523, 57.997] + ] + ], + [ + [ + [-133.6022, 56.3561], + [-133.6028, 56.3241], + [-133.6639, 56.3195], + [-133.6318, 56.2206], + [-133.6065, 56.1902], + [-133.4683, 56.1764], + [-133.4621, 56.1401], + [-133.526, 56.1179], + [-133.6245, 56.1424], + [-133.6361, 56.0859], + [-133.7022, 56.0669], + [-133.8092, 55.9668], + [-133.7939, 55.9164], + [-133.6961, 55.9128], + [-133.6272, 55.9678], + [-133.5385, 55.981], + [-133.3783, 56.0328], + [-133.365, 55.9886], + [-133.4311, 55.9559], + [-133.4422, 55.9133], + [-133.3844, 55.8947], + [-133.3861, 55.9539], + [-133.2878, 56.0156], + [-133.285, 55.9564], + [-133.2399, 55.8833], + [-133.1633, 55.8456], + [-133.1678, 55.8095], + [-133.223, 55.7888], + [-133.2583, 55.7464], + [-133.314, 55.7599], + [-133.3423, 55.7063], + [-133.3911, 55.7287], + [-133.4078, 55.6477], + [-133.3592, 55.6069], + [-133.2716, 55.5756], + [-133.1819, 55.5809], + [-133.1378, 55.613], + [-133.0855, 55.6109], + [-133.0817, 55.5603], + [-133.156, 55.4766], + [-133.0725, 55.4473], + [-133.0511, 55.4002], + [-132.9752, 55.3661], + [-133.0039, 55.3431], + [-133.1027, 55.3753], + [-133.2255, 55.3828], + [-133.2795, 55.3511], + [-133.235, 55.2842], + [-133.1411, 55.2852], + [-133.0897, 55.2696], + [-132.9585, 55.2767], + [-133.0395, 55.2342], + [-133.0161, 55.2031], + [-132.8806, 55.2314], + [-132.8353, 55.2693], + [-132.8267, 55.2019], + [-132.7094, 55.148], + [-132.6635, 55.1393], + [-132.629, 55.1723], + [-132.6577, 55.2349], + [-132.5822, 55.1719], + [-132.6292, 55.1109], + [-132.525, 55.1161], + [-132.5575, 55.0765], + [-132.5211, 55.0394], + [-132.6163, 54.9699], + [-132.5294, 54.9327], + [-132.4695, 54.98], + [-132.4927, 54.8952], + [-132.4478, 54.9039], + [-132.4111, 54.9678], + [-132.3605, 54.917], + [-132.3755, 54.8935], + [-132.3072, 54.8392], + [-132.3656, 54.8186], + [-132.3078, 54.7803], + [-132.31, 54.7217], + [-132.2308, 54.718], + [-132.165, 54.6908], + [-132.0896, 54.7012], + [-132.0178, 54.69], + [-131.9982, 54.7297], + [-132.0182, 54.7848], + [-131.9633, 54.7831], + [-131.9728, 54.8489], + [-132.054, 54.8928], + [-131.9789, 54.8983], + [-131.9656, 54.9528], + [-132.0305, 55.0332], + [-132.1306, 54.9964], + [-132.2056, 55.0033], + [-132.0928, 55.0406], + [-132.076, 55.0797], + [-131.9944, 55.1128], + [-132.0367, 55.1431], + [-131.9755, 55.1836], + [-131.9922, 55.2583], + [-132.0283, 55.2798], + [-132.1103, 55.1989], + [-132.2273, 55.2207], + [-132.0939, 55.2667], + [-132.1463, 55.3377], + [-132.205, 55.3628], + [-132.2595, 55.4171], + [-132.3626, 55.4077], + [-132.4111, 55.4203], + [-132.3189, 55.4703], + [-132.3972, 55.4742], + [-132.4122, 55.5155], + [-132.4883, 55.4964], + [-132.5854, 55.4986], + [-132.5356, 55.5603], + [-132.5387, 55.6084], + [-132.4217, 55.5395], + [-132.2305, 55.4843], + [-132.1761, 55.4506], + [-132.1822, 55.5059], + [-132.3043, 55.5599], + [-132.3472, 55.6009], + [-132.3737, 55.6609], + [-132.4958, 55.6594], + [-132.4444, 55.7201], + [-132.4911, 55.7545], + [-132.4861, 55.7967], + [-132.6164, 55.9083], + [-132.715, 55.9584], + [-132.7346, 55.9842], + [-132.8272, 56.0228], + [-132.9675, 56.0281], + [-133.0119, 56.0557], + [-133.0779, 56.0429], + [-133.1222, 56.0937], + [-133.0766, 56.1111], + [-133.0379, 56.1827], + [-133.0739, 56.2334], + [-133.1239, 56.2601], + [-133.1502, 56.3069], + [-133.2032, 56.3351], + [-133.3071, 56.3218], + [-133.3573, 56.3401], + [-133.4156, 56.3269], + [-133.6022, 56.3561] + ] + ], + [ + [ + [-135.8933, 57.9978], + [-135.7797, 57.9555], + [-135.7076, 57.9421], + [-135.5022, 57.8764], + [-135.4137, 57.8591], + [-135.3158, 57.807], + [-135.2025, 57.7765], + [-135.0202, 57.7798], + [-134.9578, 57.8167], + [-135.0741, 57.8783], + [-135.1572, 57.9], + [-135.141, 57.924], + [-134.9995, 57.8892], + [-134.9226, 57.9232], + [-134.9142, 57.9763], + [-134.9527, 58.04], + [-135.1087, 58.0607], + [-135.1161, 58.0914], + [-135.275, 58.0975], + [-135.4063, 58.1442], + [-135.4672, 58.1311], + [-135.4878, 58.0858], + [-135.5576, 58.0449], + [-135.5976, 57.9892], + [-135.6433, 57.9661], + [-135.7452, 57.992], + [-135.637, 57.9957], + [-135.7133, 58.0594], + [-135.626, 58.049], + [-135.5184, 58.1268], + [-135.5277, 58.1876], + [-135.6496, 58.2291], + [-135.7322, 58.2386], + [-135.7797, 58.2842], + [-135.825, 58.2827], + [-136.0056, 58.1881], + [-136.1404, 58.2256], + [-136.2027, 58.1773], + [-136.2029, 58.1453], + [-136.2957, 58.2232], + [-136.354, 58.2238], + [-136.3201, 58.1551], + [-136.4437, 58.1252], + [-136.4386, 58.0952], + [-136.2495, 57.9824], + [-136.1104, 57.8704], + [-136.272, 57.9688], + [-136.3539, 58.0028], + [-136.3611, 57.9339], + [-136.4322, 57.8431], + [-136.2951, 57.7629], + [-136.2589, 57.7773], + [-136.2144, 57.7411], + [-136.1096, 57.6911], + [-136.1621, 57.6423], + [-136.0756, 57.5995], + [-135.9686, 57.5291], + [-135.9228, 57.5245], + [-135.8178, 57.445], + [-136, 57.5295], + [-136.0317, 57.5219], + [-135.9683, 57.4633], + [-135.9144, 57.4475], + [-135.84, 57.3892], + [-135.713, 57.3664], + [-135.6755, 57.4069], + [-135.6201, 57.4119], + [-135.5556, 57.4527], + [-135.5811, 57.5177], + [-135.5705, 57.5955], + [-135.7056, 57.6589], + [-135.7283, 57.72], + [-135.6263, 57.7015], + [-135.5337, 57.6521], + [-135.2485, 57.5484], + [-135.1286, 57.4971], + [-135.0886, 57.4655], + [-134.9818, 57.4573], + [-134.8706, 57.4647], + [-134.8334, 57.4873], + [-134.8622, 57.5478], + [-134.85, 57.5805], + [-134.9229, 57.6779], + [-134.9288, 57.7571], + [-135.0216, 57.7439], + [-135.1106, 57.76], + [-135.2361, 57.7072], + [-135.2444, 57.7322], + [-135.3271, 57.7472], + [-135.3774, 57.8013], + [-135.5178, 57.8431], + [-135.5769, 57.8838], + [-135.7894, 57.9411], + [-135.8933, 57.9978] + ] + ], + [ + [ + [-171.6536, 63.7734], + [-171.7068, 63.7464], + [-171.8391, 63.5516], + [-171.8432, 63.4859], + [-171.8167, 63.4313], + [-171.7312, 63.3667], + [-171.6604, 63.3563], + [-171.5458, 63.3187], + [-171.4333, 63.3083], + [-171.2964, 63.3526], + [-171.2833, 63.3833], + [-171.1917, 63.3958], + [-171.0604, 63.4333], + [-170.9458, 63.4354], + [-170.8521, 63.4562], + [-170.7833, 63.4083], + [-170.6797, 63.4026], + [-170.6297, 63.3818], + [-170.5849, 63.3964], + [-170.3526, 63.3141], + [-170.3167, 63.2875], + [-170.2375, 63.2792], + [-170.2245, 63.188], + [-170.1021, 63.1896], + [-170.0042, 63.1437], + [-169.9104, 63.1458], + [-169.7583, 63.0812], + [-169.7109, 63.0109], + [-169.7708, 63.0083], + [-169.7542, 62.9583], + [-169.6375, 62.9375], + [-169.6172, 62.9672], + [-169.5318, 62.9776], + [-169.5771, 63.0521], + [-169.4891, 63.0974], + [-169.4563, 63.0958], + [-169.3745, 63.1557], + [-169.2125, 63.2], + [-169.0667, 63.1979], + [-168.9521, 63.1604], + [-168.8792, 63.1604], + [-168.7214, 63.2318], + [-168.737, 63.263], + [-168.7, 63.3], + [-168.8203, 63.3026], + [-168.8813, 63.3292], + [-169.0042, 63.3417], + [-169.2563, 63.3417], + [-169.3938, 63.3563], + [-169.475, 63.3438], + [-169.5578, 63.3609], + [-169.5693, 63.3995], + [-169.6521, 63.4292], + [-169.8229, 63.4292], + [-169.9375, 63.4688], + [-170.0021, 63.4667], + [-170.0641, 63.488], + [-170.1062, 63.6146], + [-170.1458, 63.6146], + [-170.2896, 63.6875], + [-170.4167, 63.6854], + [-170.4771, 63.6958], + [-170.5359, 63.6672], + [-170.6375, 63.6688], + [-170.7307, 63.6391], + [-170.8932, 63.5714], + [-170.9854, 63.5646], + [-171.1104, 63.5875], + [-171.175, 63.5875], + [-171.2271, 63.6125], + [-171.4995, 63.6005], + [-171.5172, 63.6578], + [-171.65, 63.7062], + [-171.6536, 63.7734] + ] + ], + [ + [ + [-134.1774, 58.156], + [-134.3336, 58.1428], + [-134.4486, 58.1739], + [-134.538, 58.1824], + [-134.6926, 58.1596], + [-134.7094, 58.2282], + [-134.8047, 58.3218], + [-134.8781, 58.3574], + [-134.887, 58.3218], + [-134.9527, 58.4091], + [-134.9704, 58.3698], + [-134.957, 58.31], + [-134.8959, 58.1916], + [-134.866, 58.1814], + [-134.7709, 58.0873], + [-134.8099, 58.0452], + [-134.7056, 57.8317], + [-134.7309, 57.7217], + [-134.6778, 57.6113], + [-134.6118, 57.5624], + [-134.5797, 57.4765], + [-134.4686, 57.3843], + [-134.4878, 57.3725], + [-134.5808, 57.401], + [-134.5807, 57.3444], + [-134.5098, 57.3175], + [-134.57, 57.305], + [-134.6539, 57.2233], + [-134.6067, 57.1528], + [-134.6378, 57.1076], + [-134.6004, 57.0335], + [-134.4926, 57.0278], + [-134.4804, 57.0497], + [-134.3745, 57.0919], + [-134.281, 57.1579], + [-134.1557, 57.2075], + [-134.1486, 57.2636], + [-134.0956, 57.2709], + [-134.1606, 57.3333], + [-134.1744, 57.3911], + [-134.1078, 57.3213], + [-134.0861, 57.3614], + [-133.9808, 57.3042], + [-133.8624, 57.3677], + [-133.9189, 57.4437], + [-133.9688, 57.4499], + [-134.0889, 57.495], + [-134, 57.4947], + [-133.9137, 57.4715], + [-133.9464, 57.5673], + [-133.9351, 57.6109], + [-134.0472, 57.6747], + [-134.1483, 57.7631], + [-134.2339, 57.8647], + [-134.3102, 57.8558], + [-134.2811, 57.9175], + [-134.3304, 58.0005], + [-134.2383, 57.9669], + [-134.3154, 58.0957], + [-134.2038, 58.0246], + [-134.1387, 57.9048], + [-134.0928, 57.8493], + [-134.0317, 57.8175], + [-133.9981, 57.7199], + [-133.8561, 57.6228], + [-133.809, 57.6276], + [-133.8941, 57.6847], + [-133.8748, 57.7321], + [-133.9006, 57.8064], + [-134.0064, 57.8933], + [-133.9922, 57.9122], + [-134.0987, 57.9826], + [-134.099, 58.0175], + [-134.1724, 58.0671], + [-134.2041, 58.1147], + [-134.1774, 58.156] + ] + ], + [ + [ + [-166.1057, 60.3651], + [-166.2729, 60.3833], + [-166.3755, 60.3443], + [-166.4375, 60.375], + [-166.5745, 60.3516], + [-166.5896, 60.3021], + [-166.6375, 60.325], + [-166.7583, 60.3042], + [-166.8286, 60.2693], + [-166.7964, 60.2391], + [-166.862, 60.2026], + [-166.9479, 60.2208], + [-167.0542, 60.2146], + [-167.1083, 60.2313], + [-167.3146, 60.2313], + [-167.3917, 60.2], + [-167.4401, 60.2016], + [-167.338, 60.1266], + [-167.3307, 60.0651], + [-167.2401, 60.0578], + [-167.1349, 60], + [-167.0226, 60], + [-167.0123, 59.9832], + [-166.8954, 59.9591], + [-166.7519, 59.8929], + [-166.675, 59.8844], + [-166.613, 59.8527], + [-166.4162, 59.8567], + [-166.3073, 59.8262], + [-166.2004, 59.7758], + [-166.1926, 59.7515], + [-166.1086, 59.7531], + [-166.0808, 59.7757], + [-166.1281, 59.8205], + [-166.0296, 59.867], + [-165.9553, 59.8817], + [-165.8922, 59.8717], + [-165.7468, 59.9084], + [-165.7165, 59.8943], + [-165.5799, 59.9127], + [-165.5885, 59.9502], + [-165.6536, 59.9961], + [-165.7109, 60.063], + [-165.6672, 60.0984], + [-165.6839, 60.2005], + [-165.7255, 60.2464], + [-165.6776, 60.2703], + [-165.7854, 60.3229], + [-165.8729, 60.3396], + [-165.9995, 60.3089], + [-166.0854, 60.3187], + [-166.1057, 60.3651] + ] + ], + [ + [ + [-135.4126, 57.5579], + [-135.4506, 57.5575], + [-135.551, 57.5093], + [-135.5329, 57.4511], + [-135.6008, 57.4035], + [-135.495, 57.3533], + [-135.685, 57.3725], + [-135.5498, 57.2378], + [-135.4995, 57.2561], + [-135.3456, 57.2473], + [-135.4242, 57.1687], + [-135.4038, 57.1011], + [-135.3389, 57.0472], + [-135.2724, 57.0319], + [-135.3039, 56.9847], + [-135.3761, 56.9891], + [-135.3406, 56.8772], + [-135.3967, 56.8801], + [-135.3779, 56.8164], + [-135.3283, 56.8283], + [-135.3092, 56.777], + [-135.2666, 56.7575], + [-135.2911, 56.7208], + [-135.1912, 56.7619], + [-135.2244, 56.6936], + [-135.18, 56.6659], + [-135.1183, 56.72], + [-135.0344, 56.7697], + [-135.0177, 56.7437], + [-135.0917, 56.7195], + [-135.1417, 56.6786], + [-135.1283, 56.6064], + [-135.0783, 56.6008], + [-135.0089, 56.6367], + [-135.0648, 56.5407], + [-134.9022, 56.3506], + [-134.8945, 56.3148], + [-134.8422, 56.3222], + [-134.8089, 56.2414], + [-134.7716, 56.2177], + [-134.7183, 56.2245], + [-134.6656, 56.1673], + [-134.6283, 56.2643], + [-134.6389, 56.4769], + [-134.6651, 56.5004], + [-134.6677, 56.5921], + [-134.6377, 56.5395], + [-134.6155, 56.6361], + [-134.6645, 56.8073], + [-134.7042, 56.8391], + [-134.6967, 56.9003], + [-134.7363, 56.9693], + [-134.7635, 57.0687], + [-134.7893, 57.0846], + [-134.7994, 57.1633], + [-134.8641, 57.212], + [-134.8628, 57.2717], + [-134.945, 57.2711], + [-134.9506, 57.3273], + [-134.9222, 57.3438], + [-134.8323, 57.2926], + [-134.8036, 57.3409], + [-134.8539, 57.4114], + [-134.8987, 57.4261], + [-135.0079, 57.411], + [-135.1642, 57.4454], + [-135.225, 57.4889], + [-135.2749, 57.4667], + [-135.3214, 57.5365], + [-135.4126, 57.5579] + ] + ], + [ + [ + [-163.7622, 55.0478], + [-163.8961, 55.0364], + [-164.0227, 54.9723], + [-164.1606, 54.9601], + [-164.2061, 54.9283], + [-164.3378, 54.8953], + [-164.4328, 54.9328], + [-164.5544, 54.8878], + [-164.5573, 54.8539], + [-164.6715, 54.7003], + [-164.7167, 54.6561], + [-164.8036, 54.6421], + [-164.9289, 54.5997], + [-164.94, 54.5364], + [-164.905, 54.5086], + [-164.8478, 54.42], + [-164.7394, 54.3931], + [-164.655, 54.3886], + [-164.4494, 54.4211], + [-164.335, 54.4821], + [-164.328, 54.5403], + [-164.2061, 54.5959], + [-164.0667, 54.624], + [-163.8189, 54.6361], + [-163.6774, 54.627], + [-163.5868, 54.6105], + [-163.4989, 54.6525], + [-163.4208, 54.6557], + [-163.4256, 54.72], + [-163.3261, 54.7459], + [-163.285, 54.6958], + [-163.1134, 54.6953], + [-163.1572, 54.6678], + [-163.0601, 54.6625], + [-163.1, 54.7295], + [-163.1866, 54.7769], + [-163.2244, 54.7553], + [-163.33, 54.7531], + [-163.4022, 54.8397], + [-163.395, 54.895], + [-163.467, 54.9851], + [-163.5317, 55.0147], + [-163.5396, 55.051], + [-163.6594, 55.04], + [-163.7622, 55.0478] + ] + ], + [ + [ + [-133.8678, 57.0963], + [-134.0083, 57.0728], + [-134.0411, 57.0227], + [-133.8922, 56.9484], + [-133.8328, 56.9014], + [-133.8983, 56.8864], + [-133.8729, 56.8591], + [-133.712, 56.7883], + [-133.7086, 56.6481], + [-133.6533, 56.5917], + [-133.6744, 56.52], + [-133.645, 56.4404], + [-133.5089, 56.4363], + [-133.4324, 56.4506], + [-133.3883, 56.4965], + [-133.3263, 56.4661], + [-133.3, 56.48], + [-133.2211, 56.4481], + [-133.1561, 56.4583], + [-133.0846, 56.5273], + [-133.0978, 56.6011], + [-133.1461, 56.6367], + [-133.2507, 56.6519], + [-133.2162, 56.6972], + [-133.2499, 56.7498], + [-133.3028, 56.73], + [-133.3427, 56.7647], + [-133.3011, 56.7961], + [-133.2462, 56.795], + [-133.2156, 56.7364], + [-133.0272, 56.6047], + [-132.956, 56.6278], + [-132.9323, 56.665], + [-132.9967, 56.8131], + [-132.9406, 56.8522], + [-132.9923, 56.9375], + [-133.0755, 56.9908], + [-133.2065, 57.0122], + [-133.3222, 57.0059], + [-133.2637, 56.938], + [-133.2886, 56.925], + [-133.3263, 56.9929], + [-133.5692, 57.0439], + [-133.5974, 57.059], + [-133.8678, 57.0963] + ] + ], + [ + [ + [-131.2521, 55.9681], + [-131.459, 55.9357], + [-131.5053, 55.9142], + [-131.6, 55.8996], + [-131.5246, 55.8383], + [-131.7121, 55.8336], + [-131.7009, 55.8023], + [-131.6308, 55.7837], + [-131.4989, 55.7937], + [-131.6166, 55.7628], + [-131.671, 55.7701], + [-131.7328, 55.7289], + [-131.6991, 55.6965], + [-131.7238, 55.6345], + [-131.6294, 55.6011], + [-131.7182, 55.5168], + [-131.8311, 55.4486], + [-131.7365, 55.3978], + [-131.6872, 55.3505], + [-131.5504, 55.2939], + [-131.4661, 55.3751], + [-131.54, 55.4756], + [-131.4928, 55.4781], + [-131.4661, 55.4092], + [-131.4119, 55.3713], + [-131.3253, 55.4299], + [-131.3312, 55.5104], + [-131.3691, 55.6309], + [-131.289, 55.4657], + [-131.33, 55.3797], + [-131.4838, 55.3], + [-131.4528, 55.2756], + [-131.3555, 55.2595], + [-131.2835, 55.2881], + [-131.2542, 55.3325], + [-131.2928, 55.3792], + [-131.2521, 55.3995], + [-131.1904, 55.3616], + [-131.2405, 55.2871], + [-131.327, 55.2452], + [-131.235, 55.1968], + [-131.185, 55.1908], + [-131.1477, 55.2297], + [-131.0643, 55.2602], + [-131.021, 55.3501], + [-131.0383, 55.4], + [-130.9706, 55.3928], + [-130.9943, 55.4738], + [-130.9894, 55.5373], + [-130.9397, 55.6198], + [-130.9738, 55.7058], + [-131.0419, 55.7668], + [-131.0711, 55.8278], + [-131.2521, 55.9681] + ] + ], + [ + [ + [-166.6476, 54.0133], + [-166.7023, 53.9989], + [-166.7472, 54.0143], + [-166.8534, 53.976], + [-166.8765, 53.9877], + [-167.0756, 53.925], + [-167.1529, 53.8282], + [-167.0095, 53.7547], + [-166.9611, 53.7772], + [-166.8317, 53.7406], + [-166.7122, 53.7278], + [-166.8332, 53.7077], + [-166.7889, 53.6258], + [-166.8961, 53.7164], + [-167, 53.7175], + [-167.0543, 53.7006], + [-167.0722, 53.6665], + [-167.0093, 53.6421], + [-167.045, 53.6078], + [-167.1061, 53.6344], + [-167.165, 53.6014], + [-167.1232, 53.5437], + [-167.0735, 53.5101], + [-167.161, 53.5097], + [-167.1618, 53.4673], + [-167.2845, 53.4777], + [-167.3281, 53.4058], + [-167.4718, 53.4479], + [-167.4985, 53.394], + [-167.5515, 53.4029], + [-167.7106, 53.3816], + [-167.7378, 53.3575], + [-167.8551, 53.3101], + [-167.6567, 53.2472], + [-167.6106, 53.2829], + [-167.4958, 53.279], + [-167.4555, 53.3211], + [-167.3049, 53.335], + [-167.2968, 53.369], + [-167.1714, 53.3972], + [-167.151, 53.4186], + [-167.0528, 53.4317], + [-167.0292, 53.4642], + [-166.9011, 53.4336], + [-166.8789, 53.4725], + [-166.8078, 53.4342], + [-166.7644, 53.4436], + [-166.7461, 53.4864], + [-166.7711, 53.5269], + [-166.6622, 53.4836], + [-166.5964, 53.5338], + [-166.5517, 53.6236], + [-166.425, 53.66], + [-166.2744, 53.6864], + [-166.2672, 53.7219], + [-166.3244, 53.7306], + [-166.3206, 53.7689], + [-166.4133, 53.7631], + [-166.5696, 53.7056], + [-166.5104, 53.7772], + [-166.4128, 53.8081], + [-166.3561, 53.8572], + [-166.2625, 53.8714], + [-166.2217, 53.9022], + [-166.275, 53.9831], + [-166.3367, 53.9461], + [-166.4428, 53.9514], + [-166.4439, 53.9033], + [-166.5234, 53.8733], + [-166.6182, 53.8684], + [-166.6461, 53.9286], + [-166.5905, 53.9638], + [-166.6476, 54.0133] + ] + ], + [ + [ + [-134.2456, 56.9358], + [-134.2195, 56.9025], + [-134.145, 56.8753], + [-134.1617, 56.8489], + [-134.2942, 56.9078], + [-134.3561, 56.8942], + [-134.3456, 56.8347], + [-134.4228, 56.8411], + [-134.3911, 56.7564], + [-134.4011, 56.7261], + [-134.2652, 56.603], + [-134.2672, 56.5606], + [-134.2028, 56.5414], + [-134.1389, 56.4775], + [-134.0956, 56.5439], + [-134.0444, 56.4869], + [-134.0744, 56.4458], + [-134.0567, 56.3839], + [-134.1172, 56.4131], + [-134.1533, 56.3978], + [-134.2378, 56.4323], + [-134.2336, 56.361], + [-134.2939, 56.3539], + [-134.2744, 56.3142], + [-134.1761, 56.3278], + [-134.231, 56.2758], + [-134.2768, 56.2656], + [-134.2461, 56.1756], + [-134.2606, 56.1333], + [-134.2122, 56.105], + [-134.2222, 56.0631], + [-134.1694, 56.0578], + [-134.1373, 56.0091], + [-134.0911, 56.0895], + [-134.1039, 56.1431], + [-134.0613, 56.2316], + [-134.0263, 56.1479], + [-134.045, 56.1179], + [-133.9942, 56.0803], + [-133.9577, 56.0947], + [-133.9339, 56.1687], + [-133.9561, 56.2051], + [-133.8817, 56.2205], + [-133.9189, 56.2779], + [-133.9812, 56.2659], + [-133.9522, 56.3454], + [-133.875, 56.275], + [-133.8311, 56.3233], + [-133.9077, 56.3688], + [-133.892, 56.4284], + [-133.8355, 56.4305], + [-133.9268, 56.5165], + [-133.8743, 56.5204], + [-133.8365, 56.6061], + [-133.7778, 56.5578], + [-133.7446, 56.5565], + [-133.6904, 56.6026], + [-133.7361, 56.6728], + [-133.7706, 56.6795], + [-133.735, 56.7783], + [-133.8745, 56.8109], + [-133.8642, 56.7518], + [-133.935, 56.6933], + [-133.9272, 56.76], + [-133.965, 56.8244], + [-133.9995, 56.8236], + [-134.0144, 56.8736], + [-134.1545, 56.9195], + [-134.2456, 56.9358] + ] + ], + [ + [ + [-152.6501, 58.4766], + [-152.6964, 58.4148], + [-152.7267, 58.4506], + [-152.8678, 58.3861], + [-152.778, 58.3671], + [-152.784, 58.2784], + [-152.9802, 58.2865], + [-153.0449, 58.3064], + [-153.1044, 58.2603], + [-153.0038, 58.2059], + [-152.9294, 58.1931], + [-152.9154, 58.1673], + [-153.0343, 58.2018], + [-153.063, 58.1932], + [-153.1732, 58.2161], + [-153.2222, 58.1595], + [-153.1668, 58.1263], + [-153.0739, 58.1006], + [-153.02, 58.0453], + [-152.9711, 58.0403], + [-152.8613, 57.9924], + [-152.7572, 58.0122], + [-152.7593, 58.0558], + [-152.7061, 58.0494], + [-152.6278, 58.0769], + [-152.6028, 58.1594], + [-152.56, 58.1883], + [-152.5694, 58.1044], + [-152.4367, 58.1394], + [-152.3967, 58.1181], + [-152.2714, 58.1252], + [-152.3572, 58.2011], + [-152.3199, 58.2478], + [-152.2683, 58.2573], + [-152.2203, 58.1916], + [-152.1394, 58.1567], + [-152.083, 58.1536], + [-151.9646, 58.2594], + [-151.9957, 58.3452], + [-152.0357, 58.2879], + [-152.0839, 58.3081], + [-152.1256, 58.2298], + [-152.1394, 58.2947], + [-152.0939, 58.3719], + [-152.1739, 58.3725], + [-152.2017, 58.3422], + [-152.2722, 58.3794], + [-152.2628, 58.4047], + [-152.3678, 58.3808], + [-152.3811, 58.3131], + [-152.4394, 58.3747], + [-152.4806, 58.3328], + [-152.5035, 58.4124], + [-152.4872, 58.4626], + [-152.5362, 58.458], + [-152.6501, 58.4766] + ] + ], + [ + [ + [-167.9944, 53.5642], + [-168.0867, 53.5592], + [-168.2345, 53.5292], + [-168.3454, 53.4703], + [-168.4078, 53.4219], + [-168.3844, 53.3806], + [-168.4294, 53.3236], + [-168.3745, 53.3181], + [-168.3445, 53.2614], + [-168.5094, 53.2514], + [-168.5872, 53.2717], + [-168.6944, 53.2272], + [-168.8039, 53.1408], + [-168.7617, 53.0803], + [-168.8072, 53.0258], + [-168.8589, 53.0183], + [-168.8583, 52.9508], + [-168.9595, 52.9319], + [-168.9567, 52.8664], + [-168.8167, 52.9244], + [-168.7861, 52.9486], + [-168.6272, 52.9914], + [-168.5922, 53.0256], + [-168.4978, 53.0325], + [-168.3944, 53.1247], + [-168.3617, 53.1325], + [-168.3339, 53.2042], + [-168.27, 53.2422], + [-168.1211, 53.2761], + [-168.0022, 53.3172], + [-167.8413, 53.3861], + [-167.8522, 53.4495], + [-167.7893, 53.4883], + [-167.7912, 53.5211], + [-167.937, 53.5263], + [-167.9944, 53.5642] + ] + ], + [ + [ + [-174.1405, 52.4133], + [-174.2672, 52.4022], + [-174.3172, 52.3808], + [-174.3589, 52.3133], + [-174.4428, 52.3272], + [-174.4075, 52.2886], + [-174.2406, 52.2756], + [-174.2389, 52.2419], + [-174.36, 52.2128], + [-174.4633, 52.2183], + [-174.4761, 52.1858], + [-174.5945, 52.1444], + [-174.6361, 52.1128], + [-174.7839, 52.0794], + [-174.9067, 52.1178], + [-174.9933, 52.0597], + [-175.1289, 52.0281], + [-175.1422, 52.0596], + [-175.2161, 52.0328], + [-175.2589, 52.0458], + [-175.3011, 52.0183], + [-175.2127, 52.0054], + [-175.0159, 52.007], + [-174.9672, 52.0375], + [-174.8932, 52.0471], + [-174.7078, 52.0089], + [-174.6789, 52.0556], + [-174.6483, 52.0231], + [-174.6067, 52.0467], + [-174.5567, 52.035], + [-174.5072, 52.0706], + [-174.4183, 52.0375], + [-174.3728, 52.1028], + [-174.3306, 52.1203], + [-174.2311, 52.0919], + [-174.2089, 52.115], + [-174.0783, 52.1292], + [-174.1978, 52.1969], + [-174.1783, 52.2344], + [-174.0607, 52.2244], + [-173.9928, 52.2906], + [-174.025, 52.3614], + [-174.1405, 52.4133] + ] + ], + [ + [ + [-132.42, 56.3478], + [-132.5348, 56.3362], + [-132.5965, 56.2449], + [-132.71, 56.2227], + [-132.7064, 56.1088], + [-132.6361, 56.0317], + [-132.5915, 56.0829], + [-132.4545, 56.0625], + [-132.4307, 56.0286], + [-132.4312, 55.9535], + [-132.352, 55.9124], + [-132.235, 55.925], + [-132.2, 55.9875], + [-132.2156, 56.0442], + [-132.168, 56.0457], + [-132.1082, 56.1127], + [-132.1877, 56.1683], + [-132.3131, 56.1898], + [-132.3818, 56.2249], + [-132.3781, 56.3085], + [-132.42, 56.3478] + ] + ], + [ + [ + [-147.0875, 60.3667], + [-147.1042, 60.3792], + [-147.212, 60.3453], + [-147.1651, 60.3068], + [-147.212, 60.2911], + [-147.1859, 60.2505], + [-147.2474, 60.2328], + [-147.3578, 60.162], + [-147.3984, 60.113], + [-147.6167, 60.0104], + [-147.7068, 59.9923], + [-147.8273, 59.9036], + [-147.7531, 59.8786], + [-147.8613, 59.8721], + [-147.9179, 59.8335], + [-147.8831, 59.7651], + [-147.7689, 59.8042], + [-147.6934, 59.8011], + [-147.6391, 59.8491], + [-147.525, 59.8411], + [-147.469, 59.8599], + [-147.4563, 59.9044], + [-147.5142, 59.9373], + [-147.4464, 59.9659], + [-147.3852, 59.9549], + [-147.3958, 60.0004], + [-147.3604, 60.0417], + [-147.2078, 60.1453], + [-147.0318, 60.2172], + [-146.9172, 60.288], + [-146.9521, 60.3063], + [-147.0604, 60.2667], + [-147.0891, 60.2891], + [-147.0104, 60.3438], + [-147.0875, 60.3354], + [-147.0875, 60.3667] + ] + ], + [ + [ + [172.7928, 53.0039], + [172.6533, 53.0036], + [172.5528, 52.9719], + [172.4672, 52.9308], + [172.5128, 52.9056], + [172.6372, 52.9247], + [172.6245, 52.8653], + [172.7456, 52.8758], + [172.7515, 52.8073], + [172.8928, 52.7864], + [172.9061, 52.7458], + [173.0567, 52.8325], + [173.1161, 52.7844], + [173.23, 52.8575], + [173.3044, 52.8258], + [173.4072, 52.8472], + [173.2874, 52.8591], + [173.3039, 52.9242], + [173.2117, 52.9375], + [173.1245, 52.9903], + [172.9983, 52.9922], + [172.9423, 52.972], + [172.9059, 52.994], + [172.7928, 53.0039] + ] + ], + [ + [ + [-133.1011, 55.2372], + [-133.1241, 55.2586], + [-133.2217, 55.2414], + [-133.1913, 55.1953], + [-133.2395, 55.1836], + [-133.2122, 55.1067], + [-133.2111, 55.0428], + [-133.1466, 54.9975], + [-133.1613, 54.9465], + [-133.0744, 54.9125], + [-133.0028, 54.8283], + [-132.9235, 54.8489], + [-132.9724, 54.7995], + [-132.8867, 54.7651], + [-132.8372, 54.6903], + [-132.8183, 54.7117], + [-132.75, 54.6693], + [-132.6817, 54.6819], + [-132.7306, 54.7428], + [-132.7491, 54.8193], + [-132.8551, 54.8963], + [-132.9076, 54.913], + [-132.9633, 54.9889], + [-132.9547, 55.0161], + [-133.0614, 55.0787], + [-133.0106, 55.0867], + [-133.0522, 55.1342], + [-133.1011, 55.2372] + ] + ], + [ + [ + [-176.5656, 51.9984], + [-176.5911, 52.0019], + [-176.6628, 51.9517], + [-176.7229, 51.9681], + [-176.7911, 51.9569], + [-176.7961, 51.9033], + [-176.7306, 51.8747], + [-176.7894, 51.8411], + [-176.7739, 51.8083], + [-176.705, 51.7881], + [-176.8078, 51.7792], + [-176.8661, 51.8267], + [-176.9044, 51.7708], + [-176.8311, 51.7458], + [-176.8994, 51.6967], + [-176.9811, 51.6653], + [-176.9889, 51.6064], + [-176.9344, 51.5914], + [-176.8672, 51.6828], + [-176.8389, 51.6814], + [-176.8061, 51.6086], + [-176.7233, 51.6247], + [-176.715, 51.6806], + [-176.5806, 51.6875], + [-176.5083, 51.7617], + [-176.4695, 51.7264], + [-176.4267, 51.7489], + [-176.4272, 51.8367], + [-176.519, 51.8354], + [-176.6291, 51.8627], + [-176.5811, 51.9136], + [-176.5656, 51.9984] + ] + ], + [ + [ + [-132.9322, 56.8217], + [-132.9794, 56.8058], + [-132.9396, 56.7403], + [-132.9344, 56.6725], + [-132.9011, 56.6333], + [-132.9455, 56.6318], + [-132.9751, 56.6023], + [-132.9583, 56.5636], + [-132.9521, 56.5097], + [-132.8149, 56.4938], + [-132.7243, 56.5111], + [-132.5425, 56.5838], + [-132.5932, 56.6115], + [-132.6183, 56.6636], + [-132.7368, 56.7125], + [-132.7653, 56.7556], + [-132.8293, 56.795], + [-132.9322, 56.8217] + ] + ], + [ + [ + [-132.3683, 56.4867], + [-132.38, 56.4445], + [-132.3427, 56.4117], + [-132.3417, 56.3428], + [-132.3653, 56.2844], + [-132.275, 56.2069], + [-132.1294, 56.1653], + [-132.0738, 56.1158], + [-132.024, 56.1355], + [-132.0161, 56.195], + [-131.9223, 56.2031], + [-132.0303, 56.3527], + [-132.0944, 56.3711], + [-132.1466, 56.3447], + [-132.237, 56.3971], + [-132.2447, 56.4408], + [-132.3683, 56.4867] + ] + ], + [ + [ + [-146.5328, 60.4734], + [-146.5979, 60.4833], + [-146.6453, 60.4599], + [-146.7245, 60.387], + [-146.7083, 60.3417], + [-146.6255, 60.3589], + [-146.5318, 60.3297], + [-146.6974, 60.2786], + [-146.6479, 60.2354], + [-146.6005, 60.2401], + [-146.3938, 60.3271], + [-146.1984, 60.3464], + [-146.1812, 60.3708], + [-146.1005, 60.3734], + [-146.0833, 60.4021], + [-146.1354, 60.4313], + [-146.3625, 60.4063], + [-146.3609, 60.4724], + [-146.4672, 60.4547], + [-146.5328, 60.4734] + ] + ], + [ + [ + [-135.7624, 57.3439], + [-135.84, 57.3406], + [-135.825, 57.3025], + [-135.8739, 57.2272], + [-135.823, 57.2207], + [-135.8366, 57.1761], + [-135.7456, 57.1649], + [-135.76, 57.1163], + [-135.843, 57.0907], + [-135.8501, 56.9933], + [-135.638, 57.0103], + [-135.5722, 57.0856], + [-135.5629, 57.1486], + [-135.6148, 57.1755], + [-135.6254, 57.2315], + [-135.5685, 57.2283], + [-135.6261, 57.3025], + [-135.7624, 57.3439] + ] + ], + [ + [ + [-132.8955, 56.4575], + [-133.0005, 56.4306], + [-133.0663, 56.3309], + [-132.9594, 56.2953], + [-132.8706, 56.2322], + [-132.6572, 56.2769], + [-132.6833, 56.3464], + [-132.6222, 56.3911], + [-132.6325, 56.4212], + [-132.718, 56.4565], + [-132.8128, 56.4406], + [-132.8955, 56.4575] + ] + ], + [ + [ + [-160.6967, 55.4005], + [-160.8022, 55.3809], + [-160.8417, 55.3406], + [-160.8611, 55.2697], + [-160.8555, 55.2059], + [-160.8083, 55.1669], + [-160.7547, 55.1951], + [-160.6833, 55.1927], + [-160.6144, 55.1475], + [-160.4969, 55.1573], + [-160.4932, 55.2201], + [-160.5699, 55.2755], + [-160.5786, 55.3137], + [-160.5281, 55.343], + [-160.5648, 55.3906], + [-160.6017, 55.3417], + [-160.6643, 55.3017], + [-160.6456, 55.3821], + [-160.6967, 55.4005] + ] + ], + [ + [ + [-178.0833, 51.915], + [-178.1992, 51.908], + [-178.2244, 51.8617], + [-178.095, 51.8158], + [-178.0372, 51.7789], + [-177.9611, 51.7742], + [-177.9517, 51.7306], + [-178.0496, 51.7023], + [-178.0998, 51.7084], + [-178.1144, 51.6719], + [-178.0461, 51.6714], + [-178.0007, 51.639], + [-177.9278, 51.6456], + [-177.8672, 51.6764], + [-177.8178, 51.7894], + [-177.7189, 51.815], + [-177.6515, 51.8166], + [-177.6589, 51.8489], + [-177.735, 51.8264], + [-177.791, 51.8453], + [-177.8489, 51.8247], + [-177.9256, 51.8578], + [-177.9544, 51.9025], + [-178.0833, 51.915] + ] + ], + [ + [ + [-173.5144, 52.1522], + [-173.6122, 52.1517], + [-173.7706, 52.1342], + [-173.8089, 52.0925], + [-173.8889, 52.1419], + [-173.9983, 52.1236], + [-173.9422, 52.0692], + [-173.8289, 52.0408], + [-173.6806, 52.0661], + [-173.5761, 52.0506], + [-173.545, 52.0272], + [-173.4506, 52.0469], + [-173.1528, 52.0592], + [-173.0956, 52.0794], + [-173.1228, 52.11], + [-173.2361, 52.0936], + [-173.2983, 52.1067], + [-173.3533, 52.0897], + [-173.4406, 52.1175], + [-173.5442, 52.1146], + [-173.5144, 52.1522] + ] + ], + [ + [ + [-153.2133, 57.2039], + [-153.2727, 57.1892], + [-153.3851, 57.114], + [-153.3926, 57.061], + [-153.3478, 57.0078], + [-153.3053, 56.9911], + [-153.2413, 57.0031], + [-153.1957, 57.0401], + [-153.1764, 57.0967], + [-153.1215, 57.0911], + [-153.0553, 57.1106], + [-152.9122, 57.1262], + [-152.8686, 57.1508], + [-152.9459, 57.1878], + [-153.0465, 57.1723], + [-153.0625, 57.1904], + [-153.1999, 57.1456], + [-153.1622, 57.1883], + [-153.2133, 57.2039] + ] + ], + [ + [ + [-177.1433, 51.9422], + [-177.1822, 51.9417], + [-177.2296, 51.8029], + [-177.4189, 51.7531], + [-177.445, 51.76], + [-177.5617, 51.7208], + [-177.64, 51.7411], + [-177.6928, 51.7164], + [-177.6737, 51.6608], + [-177.6167, 51.7042], + [-177.5883, 51.6944], + [-177.4678, 51.705], + [-177.3928, 51.7339], + [-177.2889, 51.6811], + [-177.2283, 51.7058], + [-177.1567, 51.7042], + [-177.1233, 51.7261], + [-177.1328, 51.83], + [-177.065, 51.8611], + [-177.0556, 51.9103], + [-177.1433, 51.9422] + ] + ], + [ + [ + [-131.553, 55.282], + [-131.5915, 55.2732], + [-131.605, 55.2142], + [-131.5319, 55.1495], + [-131.585, 55.1307], + [-131.5982, 55.0755], + [-131.6485, 55.0353], + [-131.6028, 54.9964], + [-131.5121, 55.057], + [-131.4923, 55.0121], + [-131.3892, 55.0119], + [-131.3563, 55.0403], + [-131.3757, 55.0909], + [-131.3515, 55.1233], + [-131.3978, 55.1969], + [-131.4663, 55.2248], + [-131.553, 55.282] + ] + ], + [ + [ + [-159.8689, 55.2844], + [-159.9216, 55.2488], + [-159.9472, 55.1693], + [-160.0259, 55.2033], + [-160.065, 55.2014], + [-159.9761, 55.1194], + [-160.0072, 55.1023], + [-160.1055, 55.1603], + [-160.1928, 55.1028], + [-160.176, 55.0508], + [-160.0957, 55.0519], + [-160.2574, 54.9167], + [-160.2264, 54.8637], + [-160.18, 54.9033], + [-160.1856, 54.9342], + [-160.1247, 54.9458], + [-160.1083, 54.9869], + [-160.013, 55.0281], + [-159.9356, 55.1289], + [-159.8696, 55.0944], + [-159.8111, 55.1728], + [-159.9031, 55.1744], + [-159.9006, 55.2287], + [-159.8417, 55.2445], + [-159.8689, 55.2844] + ] + ], + [ + [ + [-172.9208, 60.6042], + [-173.0354, 60.5625], + [-173.0562, 60.4938], + [-172.9438, 60.4813], + [-172.8974, 60.4484], + [-172.7526, 60.3849], + [-172.737, 60.3651], + [-172.5688, 60.3187], + [-172.4687, 60.3417], + [-172.3437, 60.3354], + [-172.2917, 60.2958], + [-172.2214, 60.3109], + [-172.3161, 60.3422], + [-172.3838, 60.3828], + [-172.6141, 60.3776], + [-172.6167, 60.4], + [-172.7682, 60.4464], + [-172.8766, 60.4984], + [-172.9328, 60.5589], + [-172.9208, 60.6042] + ] + ], + [ + [ + [-165.9283, 54.2125], + [-165.9822, 54.2206], + [-166.0861, 54.1739], + [-166.1171, 54.1226], + [-166.0522, 54.0758], + [-166.0422, 54.0428], + [-165.98, 54.0703], + [-165.8973, 54.0572], + [-165.847, 54.0809], + [-165.7669, 54.0645], + [-165.689, 54.0891], + [-165.6723, 54.1309], + [-165.7383, 54.1125], + [-165.7346, 54.1459], + [-165.8133, 54.1759], + [-165.88, 54.1825], + [-165.9283, 54.2125] + ] + ], + [ + [ + [-160.6878, 58.8139], + [-160.8475, 58.7495], + [-160.9939, 58.7243], + [-161.0536, 58.6897], + [-161.0797, 58.6383], + [-161.0733, 58.5456], + [-160.963, 58.5511], + [-160.8839, 58.5803], + [-160.855, 58.6258], + [-160.6878, 58.8139] + ] + ], + [ + [ + [-147.6875, 60.4917], + [-147.7203, 60.4995], + [-147.7088, 60.4276], + [-147.8167, 60.4417], + [-147.8479, 60.3833], + [-147.8047, 60.2995], + [-147.9016, 60.2849], + [-147.8917, 60.2229], + [-147.7964, 60.2391], + [-147.8208, 60.1792], + [-147.7547, 60.1609], + [-147.7172, 60.2026], + [-147.7172, 60.2651], + [-147.6193, 60.3786], + [-147.7292, 60.3896], + [-147.6089, 60.4255], + [-147.6729, 60.4604], + [-147.6875, 60.4917] + ] + ], + [ + [ + [177.6059, 52.1349], + [177.5451, 52.1035], + [177.4783, 51.9828], + [177.3753, 51.9765], + [177.2433, 51.9056], + [177.1989, 51.895], + [177.3097, 51.8257], + [177.3478, 51.9045], + [177.4067, 51.93], + [177.4732, 51.9084], + [177.5044, 51.9347], + [177.5483, 51.9122], + [177.6017, 51.9469], + [177.5359, 51.9595], + [177.6742, 52.0892], + [177.6059, 52.1349] + ] + ], + [ + [ + [-131.83, 55.4205], + [-131.8694, 55.3197], + [-131.8292, 55.1899], + [-131.7465, 55.129], + [-131.7194, 55.2024], + [-131.6856, 55.2257], + [-131.67, 55.3014], + [-131.6289, 55.3055], + [-131.83, 55.4205] + ] + ], + [ + [ + [178.6815, 51.6511], + [178.631, 51.6239], + [178.7839, 51.5692], + [178.8428, 51.5773], + [178.9321, 51.5462], + [179.0344, 51.4814], + [179.0572, 51.4528], + [179.228, 51.3815], + [179.2588, 51.3568], + [179.3705, 51.3749], + [179.4028, 51.4061], + [179.28, 51.3897], + [179.1567, 51.4656], + [179.0233, 51.5316], + [178.9667, 51.5886], + [178.8079, 51.6327], + [178.6815, 51.6511] + ] + ], + [ + [ + [-164.8083, 62.7896], + [-164.8724, 62.7828], + [-164.8703, 62.7276], + [-164.8401, 62.7036], + [-164.7958, 62.6104], + [-164.5328, 62.7286], + [-164.5146, 62.7708], + [-164.6792, 62.7562], + [-164.7109, 62.7849], + [-164.8083, 62.7896] + ] + ], + [ + [ + [-136.4802, 58.1015], + [-136.5572, 58.0792], + [-136.5578, 57.9756], + [-136.5734, 57.9188], + [-136.4907, 57.9017], + [-136.4533, 57.8419], + [-136.3772, 57.9295], + [-136.3878, 57.9675], + [-136.3566, 58.0268], + [-136.4802, 58.1015] + ] + ], + [ + [ + [-153.2591, 58.1436], + [-153.2972, 58.1457], + [-153.3359, 58.1018], + [-153.4178, 58.0578], + [-153.3663, 58.038], + [-153.2972, 58.0503], + [-153.1261, 58.0164], + [-153.0483, 57.9867], + [-152.9438, 57.9766], + [-152.9435, 58.0082], + [-153.0269, 58.0343], + [-153.0908, 58.089], + [-153.1628, 58.0884], + [-153.2591, 58.1436] + ] + ], + [ + [ + [-152.3335, 58.6281], + [-152.5311, 58.5844], + [-152.5639, 58.6217], + [-152.6472, 58.5572], + [-152.5906, 58.5508], + [-152.6389, 58.4997], + [-152.4784, 58.4689], + [-152.415, 58.4894], + [-152.3632, 58.5391], + [-152.3335, 58.6281] + ] + ], + [ + [ + [173.7561, 52.4958], + [173.7406, 52.5122], + [173.6239, 52.5056], + [173.5304, 52.4476], + [173.44, 52.4528], + [173.3583, 52.4019], + [173.4689, 52.3806], + [173.5611, 52.4011], + [173.6167, 52.3969], + [173.642, 52.356], + [173.7256, 52.3569], + [173.6922, 52.4619], + [173.7561, 52.4958] + ] + ], + [ + [ + [179.6443, 52.026], + [179.4846, 51.9839], + [179.4799, 51.9219], + [179.6124, 51.8708], + [179.7388, 51.9112], + [179.762, 51.9747], + [179.6443, 52.026] + ] + ], + [ + [ + [-134.5178, 58.3395], + [-134.5842, 58.3434], + [-134.6521, 58.3189], + [-134.6789, 58.2978], + [-134.6294, 58.2483], + [-134.5072, 58.2167], + [-134.46, 58.2294], + [-134.3378, 58.1972], + [-134.2692, 58.2082], + [-134.5178, 58.3395] + ] + ], + [ + [ + [-172.4055, 52.3836], + [-172.4378, 52.3928], + [-172.57, 52.3486], + [-172.6339, 52.2642], + [-172.5383, 52.2458], + [-172.3117, 52.3197], + [-172.3056, 52.3547], + [-172.4055, 52.3836] + ] + ], + [ + [ + [-132.8328, 55.1994], + [-132.8973, 55.1547], + [-132.878, 55.1004], + [-132.8244, 55.075], + [-132.8932, 55.0361], + [-132.8098, 55.0081], + [-132.695, 55.0197], + [-132.688, 55.1245], + [-132.7333, 55.1342], + [-132.8328, 55.1994] + ] + ], + [ + [ + [-145.7937, 60.5792], + [-145.9, 60.5875], + [-146.0229, 60.5479], + [-146.0833, 60.5417], + [-146.1187, 60.5125], + [-146.1708, 60.5271], + [-146.2833, 60.5167], + [-146.3208, 60.4542], + [-146.1854, 60.4562], + [-146.0896, 60.475], + [-146.025, 60.5042], + [-145.8214, 60.5526], + [-145.7937, 60.5792] + ] + ], + [ + [ + [-133.5583, 55.8333], + [-133.6633, 55.8186], + [-133.6863, 55.7749], + [-133.645, 55.7292], + [-133.532, 55.6927], + [-133.4872, 55.7324], + [-133.5211, 55.7689], + [-133.4161, 55.74], + [-133.3317, 55.7672], + [-133.4283, 55.7883], + [-133.5583, 55.8333] + ] + ], + [ + [ + [-154.085, 56.6147], + [-154.2211, 56.6147], + [-154.3144, 56.5853], + [-154.3644, 56.5428], + [-154.3433, 56.5092], + [-154.2311, 56.4925], + [-154.1533, 56.5117], + [-154.0778, 56.5908], + [-154.085, 56.6147] + ] + ], + [ + [ + [-153.4659, 57.9696], + [-153.535, 57.9282], + [-153.4588, 57.8807], + [-153.33, 57.8256], + [-153.2082, 57.7972], + [-153.2221, 57.8496], + [-153.2826, 57.9043], + [-153.4659, 57.9696] + ] + ], + [ + [ + [-162.3807, 63.6234], + [-162.4917, 63.6188], + [-162.5542, 63.6333], + [-162.6208, 63.6188], + [-162.6932, 63.5755], + [-162.6266, 63.5443], + [-162.3813, 63.5396], + [-162.3464, 63.5911], + [-162.3807, 63.6234] + ] + ], + [ + [ + [-154.4828, 56.6011], + [-154.55, 56.5897], + [-154.6917, 56.525], + [-154.7939, 56.4369], + [-154.7728, 56.4064], + [-154.7094, 56.4144], + [-154.6189, 56.4764], + [-154.4811, 56.5119], + [-154.5352, 56.5657], + [-154.4828, 56.6011] + ] + ], + [ + [ + [-170.6544, 52.6981], + [-170.7277, 52.682], + [-170.81, 52.6406], + [-170.8467, 52.5589], + [-170.7957, 52.5424], + [-170.6842, 52.6022], + [-170.6083, 52.6012], + [-170.558, 52.6668], + [-170.6544, 52.6981] + ] + ], + [ + [ + [-133.3325, 55.3453], + [-133.4616, 55.3208], + [-133.4544, 55.2172], + [-133.3888, 55.2291], + [-133.336, 55.2031], + [-133.2529, 55.2221], + [-133.23, 55.2687], + [-133.2983, 55.3047], + [-133.3325, 55.3453] + ] + ], + [ + [ + [-165.6244, 54.2983], + [-165.6879, 54.2421], + [-165.5844, 54.2236], + [-165.6362, 54.1977], + [-165.598, 54.1634], + [-165.6372, 54.1391], + [-165.5594, 54.1055], + [-165.4931, 54.1682], + [-165.4095, 54.1751], + [-165.4076, 54.2117], + [-165.5442, 54.2189], + [-165.5148, 54.2984], + [-165.5978, 54.264], + [-165.6244, 54.2983] + ] + ], + [ + [ + [-169.7548, 52.8925], + [-169.8683, 52.8789], + [-169.8667, 52.8536], + [-169.9845, 52.8586], + [-170.0133, 52.8311], + [-169.9595, 52.7871], + [-169.8717, 52.825], + [-169.7753, 52.8099], + [-169.72, 52.7719], + [-169.6772, 52.8244], + [-169.6767, 52.8714], + [-169.7548, 52.8925] + ] + ], + [ + [ + [-131.2469, 54.9996], + [-131.3433, 54.9592], + [-131.3617, 54.9753], + [-131.4922, 54.9461], + [-131.4667, 54.9133], + [-131.3889, 54.8928], + [-131.3472, 54.8558], + [-131.1967, 54.9144], + [-131.2539, 54.9683], + [-131.2469, 54.9996] + ] + ], + [ + [ + [-148.0151, 60.9141], + [-148.0745, 60.9224], + [-148.1474, 60.8245], + [-148.0292, 60.7813], + [-147.9151, 60.813], + [-147.9349, 60.8755], + [-148.0151, 60.9141] + ] + ], + [ + [ + [-162.2871, 54.9803], + [-162.3706, 54.9656], + [-162.4234, 54.9205], + [-162.4022, 54.8789], + [-162.3167, 54.8272], + [-162.2733, 54.8433], + [-162.2317, 54.8923], + [-162.2433, 54.9681], + [-162.2871, 54.9803] + ] + ], + [ + [ + [-176.1382, 52.1136], + [-176.2056, 52.0777], + [-176.1816, 52.0011], + [-176.105, 51.9972], + [-176.0661, 51.9667], + [-176.0211, 51.9831], + [-176.0501, 52.0193], + [-175.9822, 52.0289], + [-176.0551, 52.1073], + [-176.1382, 52.1136] + ] + ], + [ + [ + [-133.5678, 55.4206], + [-133.6144, 55.4192], + [-133.6656, 55.3742], + [-133.6316, 55.3611], + [-133.6914, 55.3175], + [-133.6689, 55.2769], + [-133.6106, 55.2536], + [-133.5709, 55.322], + [-133.4592, 55.3789], + [-133.5017, 55.4192], + [-133.5678, 55.4206] + ] + ], + [ + [ + [-170.1526, 57.1877], + [-170.1382, 57.2299], + [-170.2259, 57.2119], + [-170.3032, 57.2205], + [-170.4001, 57.2038], + [-170.4206, 57.1619], + [-170.2778, 57.1274], + [-170.1731, 57.1551], + [-170.1526, 57.1877] + ] + ], + [ + [ + [-162.7939, 54.4916], + [-162.8378, 54.4506], + [-162.7805, 54.4128], + [-162.6105, 54.3672], + [-162.5445, 54.4164], + [-162.6689, 54.4614], + [-162.7939, 54.4916] + ] + ], + [ + [ + [-176.2894, 51.8696], + [-176.4006, 51.8683], + [-176.4267, 51.8536], + [-176.3972, 51.7336], + [-176.32, 51.7347], + [-176.265, 51.7806], + [-176.2894, 51.8696] + ] + ], + [ + [ + [-155.5606, 55.8978], + [-155.6056, 55.9144], + [-155.6667, 55.8542], + [-155.755, 55.8222], + [-155.7278, 55.7747], + [-155.6133, 55.7567], + [-155.5639, 55.7897], + [-155.5867, 55.8458], + [-155.5606, 55.8978] + ] + ], + [ + [ + [-132.7194, 54.9368], + [-132.8183, 54.9242], + [-132.8061, 54.8711], + [-132.7046, 54.8147], + [-132.6355, 54.7489], + [-132.6239, 54.8039], + [-132.6856, 54.8353], + [-132.6321, 54.8908], + [-132.7194, 54.9368] + ] + ], + [ + [ + [-166.1095, 53.8478], + [-166.2167, 53.8294], + [-166.3011, 53.7986], + [-166.3006, 53.7517], + [-166.2078, 53.7072], + [-166.1144, 53.7747], + [-166.1389, 53.8031], + [-166.1095, 53.8478] + ] + ], + [ + [ + [-148.0474, 60.1786], + [-148.2812, 60.0854], + [-148.2146, 60.0771], + [-148.275, 60.0396], + [-148.2667, 60.0125], + [-148.1979, 60.0167], + [-148.0838, 60.1047], + [-148.0474, 60.1786] + ] + ], + [ + [ + [-161.81, 55.175], + [-161.8983, 55.1639], + [-161.8905, 55.1256], + [-161.8172, 55.0986], + [-161.7828, 55.1617], + [-161.7555, 55.1322], + [-161.8006, 55.0817], + [-161.7322, 55.0539], + [-161.6339, 55.1053], + [-161.6416, 55.1275], + [-161.7283, 55.1397], + [-161.81, 55.175] + ] + ], + [ + [ + [-159.5125, 55.2395], + [-159.5584, 55.2045], + [-159.5895, 55.1275], + [-159.6383, 55.1342], + [-159.6572, 55.0611], + [-159.5706, 55.0453], + [-159.5294, 55.0801], + [-159.4961, 55.1544], + [-159.5355, 55.1706], + [-159.5125, 55.2395] + ] + ], + [ + [ + [-169.6097, 56.6075], + [-169.7522, 56.6162], + [-169.7511, 56.5875], + [-169.6822, 56.5789], + [-169.6405, 56.5364], + [-169.5671, 56.5329], + [-169.4839, 56.5767], + [-169.5176, 56.6098], + [-169.6097, 56.6075] + ] + ], + [ + [ + [-164.98, 54.1329], + [-164.9717, 54.1183], + [-165.144, 54.1311], + [-165.21, 54.0869], + [-165.0822, 54.0691], + [-164.9557, 54.0727], + [-164.9217, 54.1079], + [-164.98, 54.1329] + ] + ], + [ + [ + [-133.3967, 55.5636], + [-133.4511, 55.555], + [-133.4406, 55.515], + [-133.3611, 55.4533], + [-133.3057, 55.4819], + [-133.2852, 55.5354], + [-133.3369, 55.5682], + [-133.3967, 55.5636] + ] + ], + [ + [ + [-153.4244, 59.4095], + [-153.5117, 59.3929], + [-153.5494, 59.3317], + [-153.5153, 59.32], + [-153.3627, 59.3378], + [-153.3472, 59.3776], + [-153.4244, 59.4095] + ] + ], + [ + [ + [-147.9641, 60.1255], + [-147.9755, 60.1484], + [-148.1182, 60.0474], + [-148.1396, 59.9853], + [-148.0943, 60.0026], + [-148.0495, 60.0599], + [-147.9812, 60.0604], + [-147.8963, 60.0964], + [-147.9641, 60.1255] + ] + ], + [ + [ + [-133.725, 55.5525], + [-133.7111, 55.5186], + [-133.7811, 55.4702], + [-133.6706, 55.4381], + [-133.6317, 55.4908], + [-133.5865, 55.5052], + [-133.6633, 55.5578], + [-133.725, 55.5525] + ] + ], + [ + [ + [-133.2956, 55.9153], + [-133.3622, 55.845], + [-133.26, 55.7721], + [-133.2163, 55.8229], + [-133.2244, 55.8652], + [-133.2956, 55.9153] + ] + ], + [ + [ + [-160.3632, 55.3603], + [-160.4339, 55.3394], + [-160.4922, 55.3583], + [-160.5173, 55.3081], + [-160.3911, 55.2869], + [-160.3315, 55.26], + [-160.308, 55.3041], + [-160.3632, 55.3603] + ] + ], + [ + [ + [-157.2422, 56.5823], + [-157.3294, 56.5272], + [-157.1516, 56.5273], + [-157.1155, 56.5525], + [-156.9956, 56.5514], + [-157.0883, 56.5837], + [-157.2422, 56.5823] + ] + ], + [ + [ + [-134.2639, 55.9281], + [-134.3675, 55.905], + [-134.3194, 55.8781], + [-134.3446, 55.8402], + [-134.2711, 55.8286], + [-134.2283, 55.864], + [-134.133, 55.8968], + [-134.1734, 55.9215], + [-134.2649, 55.897], + [-134.2639, 55.9281] + ] + ], + [ + [ + [-148.1849, 60.7432], + [-148.2391, 60.7245], + [-148.1786, 60.6401], + [-148.1234, 60.6401], + [-148.0875, 60.6729], + [-148.1068, 60.7391], + [-148.1849, 60.7432] + ] + ], + [ + [ + [-144.1963, 60.0016], + [-144.2697, 60.0001], + [-144.3707, 59.9627], + [-144.5696, 59.8518], + [-144.5859, 59.8113], + [-144.4332, 59.8981], + [-144.1963, 60.0016] + ] + ], + [ + [ + [-147.8276, 60.0661], + [-147.8542, 60.0771], + [-147.913, 60.0359], + [-148.0378, 59.9733], + [-148.0468, 59.9385], + [-147.9179, 59.9706], + [-147.8193, 60.0464], + [-147.8276, 60.0661] + ] + ], + [ + [ + [-150.5349, 70.4943], + [-150.7479, 70.4938], + [-150.7375, 70.4625], + [-150.6313, 70.4354], + [-150.4839, 70.4714], + [-150.5349, 70.4943] + ] + ], + [ + [ + [-133.4623, 55.5072], + [-133.527, 55.5294], + [-133.545, 55.4864], + [-133.6192, 55.4482], + [-133.5484, 55.4291], + [-133.4283, 55.4503], + [-133.4623, 55.5072] + ] + ], + [ + [ + [-153.87, 56.5583], + [-154.0317, 56.5553], + [-154.1328, 56.5108], + [-154.0494, 56.4958], + [-153.9513, 56.5049], + [-153.87, 56.5583] + ] + ], + [ + [ + [-147.9917, 60.3708], + [-148.0583, 60.3688], + [-148.137, 60.3266], + [-148.1083, 60.2792], + [-148.0213, 60.2859], + [-147.9917, 60.3708] + ] + ], + [ + [ + [-176.1722, 51.8817], + [-176.235, 51.8219], + [-176.17, 51.7978], + [-176.0894, 51.7986], + [-176.03, 51.8444], + [-176.1317, 51.8506], + [-176.1722, 51.8817] + ] + ], + [ + [ + [-150.6888, 59.4156], + [-150.708, 59.3587], + [-150.7688, 59.3298], + [-150.7052, 59.2947], + [-150.6104, 59.3659], + [-150.6362, 59.4065], + [-150.6888, 59.4156] + ] + ], + [ + [ + [-160.239, 55.4582], + [-160.3227, 55.4458], + [-160.3261, 55.3953], + [-160.2333, 55.4123], + [-160.1433, 55.3861], + [-160.1358, 55.4495], + [-160.2038, 55.4389], + [-160.239, 55.4582] + ] + ], + [ + [ + [-132.479, 56.4382], + [-132.5376, 56.4209], + [-132.5583, 56.3556], + [-132.5014, 56.3524], + [-132.4052, 56.4078], + [-132.479, 56.4382] + ] + ], + [ + [ + [-144.9021, 60.5313], + [-144.975, 60.5125], + [-144.9818, 60.4818], + [-145.0536, 60.4432], + [-144.9667, 60.4208], + [-144.913, 60.4484], + [-144.9255, 60.5016], + [-144.9021, 60.5313] + ] + ], + [ + [ + [178.5011, 51.9883], + [178.4573, 51.984], + [178.4526, 51.9393], + [178.515, 51.8981], + [178.5906, 51.9525], + [178.5011, 51.9883] + ] + ], + [ + [ + [-178.8014, 51.8339], + [-178.86, 51.8197], + [-178.8733, 51.7817], + [-178.8139, 51.746], + [-178.7332, 51.7807], + [-178.8014, 51.8339] + ] + ], + [ + [ + [-170.1178, 52.7898], + [-170.1688, 52.7863], + [-170.168, 52.7172], + [-170.085, 52.7181], + [-170.0525, 52.7726], + [-170.1178, 52.7898] + ] + ], + [ + [ + [-131.4224, 55.991], + [-131.4605, 55.9903], + [-131.5967, 55.9331], + [-131.5044, 55.9211], + [-131.4083, 55.9589], + [-131.4224, 55.991] + ] + ], + [ + [ + [-135.622, 58.3795], + [-135.733, 58.368], + [-135.6803, 58.3309], + [-135.5765, 58.3254], + [-135.5377, 58.3446], + [-135.622, 58.3795] + ] + ], + [ + [ + [-159.4433, 55.0614], + [-159.405, 54.9767], + [-159.4256, 54.9417], + [-159.3289, 54.9769], + [-159.3783, 55.0247], + [-159.38, 55.0642], + [-159.4433, 55.0614] + ] + ], + [ + [ + [-133.8694, 55.9373], + [-133.9442, 55.9171], + [-133.9189, 55.8567], + [-133.8716, 55.8448], + [-133.8392, 55.8897], + [-133.8694, 55.9373] + ] + ], + [ + [ + [-132.9817, 56.5914], + [-133.074, 56.5798], + [-133.0441, 56.5204], + [-132.9845, 56.5114], + [-132.9635, 56.5559], + [-132.9817, 56.5914] + ] + ], + [ + [ + [-171.2417, 52.5269], + [-171.3113, 52.5011], + [-171.3038, 52.4495], + [-171.2417, 52.4528], + [-171.1937, 52.4936], + [-171.2417, 52.5269] + ] + ], + [ + [ + [-161.5349, 55.2567], + [-161.6617, 55.2456], + [-161.6967, 55.2056], + [-161.5628, 55.2033], + [-161.5349, 55.2567] + ] + ], + [ + [ + [-152.4123, 57.968], + [-152.5156, 57.9217], + [-152.369, 57.8838], + [-152.3222, 57.9155], + [-152.4237, 57.9284], + [-152.4123, 57.968] + ] + ], + [ + [ + [-151.8218, 58.2651], + [-151.894, 58.2155], + [-151.8673, 58.1655], + [-151.8086, 58.1864], + [-151.7953, 58.2568], + [-151.8218, 58.2651] + ] + ], + [ + [ + [-159.2726, 54.9457], + [-159.3261, 54.8923], + [-159.2761, 54.8628], + [-159.2233, 54.8839], + [-159.2083, 54.9281], + [-159.2726, 54.9457] + ] + ], + [ + [ + [-169.6767, 53.0314], + [-169.739, 53.0286], + [-169.7636, 52.9825], + [-169.6967, 52.9572], + [-169.6611, 53.0022], + [-169.6767, 53.0314] + ] + ], + [ + [ + [-151.9057, 60.5068], + [-151.9687, 60.4896], + [-151.9563, 60.4188], + [-151.8547, 60.4932], + [-151.9057, 60.5068] + ] + ], + [ + [ + [-169.0417, 65.8146], + [-169.0813, 65.8167], + [-169.1182, 65.7589], + [-169.0443, 65.7526], + [-168.9964, 65.8026], + [-169.0417, 65.8146] + ] + ], + [ + [ + [-164.9021, 66.4958], + [-164.9104, 66.5083], + [-165.1542, 66.4688], + [-165.3328, 66.4287], + [-165.1875, 66.4417], + [-165.1354, 66.4625], + [-164.9021, 66.4958] + ] + ], + [ + [ + [-147.938, 60.7182], + [-147.9568, 60.7474], + [-147.9964, 60.6901], + [-147.8505, 60.6797], + [-147.8984, 60.7307], + [-147.938, 60.7182] + ] + ], + [ + [ + [-136.1906, 57.7161], + [-136.2561, 57.677], + [-136.1811, 57.64], + [-136.1394, 57.6978], + [-136.1906, 57.7161] + ] + ], + [ + [ + [-148.2522, 59.9381], + [-148.1643, 59.9356], + [-148.1023, 59.953], + [-148.0234, 60.0026], + [-148.0021, 60.0375], + [-148.1252, 59.9657], + [-148.2522, 59.9381] + ] + ], + [ + [ + [-152.7238, 57.9755], + [-152.8503, 57.9701], + [-152.8512, 57.9412], + [-152.7601, 57.9251], + [-152.7238, 57.9755] + ] + ], + [ + [ + [-175.9878, 51.9094], + [-176.1144, 51.8842], + [-175.9633, 51.8461], + [-175.9878, 51.9094] + ] + ], + [ + [ + [-170.0411, 52.9228], + [-170.1255, 52.8972], + [-170.0517, 52.8564], + [-169.995, 52.9033], + [-170.0411, 52.9228] + ] + ], + [ + [ + [-135.5208, 57.2199], + [-135.5578, 57.1572], + [-135.5059, 57.1425], + [-135.4518, 57.1775], + [-135.5208, 57.2199] + ] + ], + [ + [ + [-178.9567, 51.3969], + [-178.9944, 51.3739], + [-178.9883, 51.3064], + [-178.9055, 51.3614], + [-178.9567, 51.3969] + ] + ], + [ + [ + [-153.8335, 57.5326], + [-153.8728, 57.5531], + [-153.8738, 57.4483], + [-153.8322, 57.4289], + [-153.8335, 57.5326] + ] + ], + [ + [ + [-135.4688, 57.2505], + [-135.5155, 57.2291], + [-135.4556, 57.1853], + [-135.3916, 57.2453], + [-135.4688, 57.2505] + ] + ], + [ + [ + [-132.0288, 56.0889], + [-132.07, 56.03], + [-132.0256, 55.9967], + [-131.9822, 56.0249], + [-132.0288, 56.0889] + ] + ], + [ + [ + [-161.3386, 55.2198], + [-161.4281, 55.2163], + [-161.4145, 55.1808], + [-161.3394, 55.1587], + [-161.3386, 55.2198] + ] + ], + [ + [ + [-132.1918, 56.0399], + [-132.2028, 55.9564], + [-132.1804, 55.9263], + [-132.1333, 55.9422], + [-132.1918, 56.0399] + ] + ], + [ + [ + [-146.7375, 60.8708], + [-146.8141, 60.8432], + [-146.7896, 60.8042], + [-146.725, 60.8104], + [-146.7375, 60.8708] + ] + ], + [ + [ + [-147.3729, 60.2625], + [-147.3464, 60.2995], + [-147.4495, 60.2703], + [-147.4812, 60.225], + [-147.3729, 60.2625] + ] + ], + [ + [ + [178.2289, 51.8322], + [178.3073, 51.7763], + [178.3805, 51.7702], + [178.3356, 51.8083], + [178.2289, 51.8322] + ] + ], + [ + [ + [178.1615, 52.0412], + [178.089, 52.0364], + [178.0981, 51.9978], + [178.1732, 51.9912], + [178.1615, 52.0412] + ] + ], + [ + [ + [-164.8984, 62.662], + [-164.8807, 62.5984], + [-164.8151, 62.6078], + [-164.8589, 62.662], + [-164.8984, 62.662] + ] + ], + [ + [ + [-164.9859, 60.8693], + [-165.0203, 60.8339], + [-164.9583, 60.8208], + [-164.8901, 60.838], + [-164.9859, 60.8693] + ] + ], + [ + [ + [-136.035, 58.2953], + [-136.0369, 58.3174], + [-136.1577, 58.2792], + [-136.0903, 58.2582], + [-136.035, 58.2953] + ] + ], + [ + [ + [-152.8822, 58.3383], + [-152.9217, 58.3136], + [-152.7839, 58.2872], + [-152.8461, 58.3378], + [-152.8822, 58.3383] + ] + ], + [ + [ + [-179.0874, 51.2956], + [-179.147, 51.2793], + [-179.1405, 51.2325], + [-179.0944, 51.2271], + [-179.0874, 51.2956] + ] + ], + [ + [ + [-152.5884, 60.175], + [-152.6438, 60.1646], + [-152.5911, 60.113], + [-152.5484, 60.1141], + [-152.5884, 60.175] + ] + ], + [ + [ + [-130.5194, 54.8587], + [-130.5944, 54.8309], + [-130.6156, 54.7928], + [-130.5262, 54.8155], + [-130.5194, 54.8587] + ] + ], + [ + [ + [-134.2017, 57.8917], + [-134.1894, 57.8342], + [-134.1334, 57.7905], + [-134.1142, 57.8073], + [-134.2017, 57.8917] + ] + ], + [ + [ + [-133.4422, 55.9969], + [-133.4948, 55.9667], + [-133.4494, 55.9333], + [-133.4349, 55.9562], + [-133.3944, 55.9756], + [-133.4422, 55.9969] + ] + ], + [ + [ + [-159.5744, 54.8245], + [-159.5828, 54.7736], + [-159.52, 54.7581], + [-159.5106, 54.7891], + [-159.5744, 54.8245] + ] + ], + [ + [ + [-152.3067, 58.9608], + [-152.3377, 58.9042], + [-152.2367, 58.9144], + [-152.3067, 58.9608] + ] + ], + [ + [ + [-150.3542, 70.4771], + [-150.4661, 70.4599], + [-150.4526, 70.4318], + [-150.3687, 70.45], + [-150.3542, 70.4771] + ] + ], + [ + [ + [-158.7982, 55.8911], + [-158.8489, 55.8543], + [-158.7292, 55.841], + [-158.7982, 55.8911] + ] + ], + [ + [ + [-157.8306, 56.3706], + [-157.9072, 56.3442], + [-157.8233, 56.3069], + [-157.8306, 56.3706] + ] + ], + [ + [ + [-133.2318, 55.4443], + [-133.2978, 55.4456], + [-133.3094, 55.4011], + [-133.2522, 55.4067], + [-133.2318, 55.4443] + ] + ], + [ + [ + [-147.2083, 60.8917], + [-147.2875, 60.8708], + [-147.1255, 60.8547], + [-147.2083, 60.8917] + ] + ], + [ + [ + [-165.3462, 54.09], + [-165.2897, 54.0385], + [-165.2644, 54.0917], + [-165.3462, 54.09] + ] + ], + [ + [ + [-134.9118, 58.4854], + [-134.8416, 58.3712], + [-134.8078, 58.3757], + [-134.9118, 58.4854] + ] + ], + [ + [ + [-150.4787, 70.438], + [-150.6057, 70.4224], + [-150.6062, 70.3896], + [-150.4787, 70.438] + ] + ], + [ + [ + [-164.4708, 63.0687], + [-164.4542, 63.0438], + [-164.375, 63.0271], + [-164.3776, 63.0536], + [-164.4708, 63.0687] + ] + ], + [ + [ + [-166.1489, 53.9972], + [-166.1933, 53.9589], + [-166.073, 53.9698], + [-166.1489, 53.9972] + ] + ], + [ + [ + [-154.0467, 56.7281], + [-154.1272, 56.6945], + [-154.0167, 56.69], + [-154.0467, 56.7281] + ] + ], + [ + [ + [-135.7039, 57.7067], + [-135.62, 57.6381], + [-135.5895, 57.6601], + [-135.7039, 57.7067] + ] + ], + [ + [ + [-150.3165, 59.4616], + [-150.4146, 59.4386], + [-150.3431, 59.4156], + [-150.3165, 59.4616] + ] + ], + [ + [ + [-147.4268, 60.6846], + [-147.4563, 60.6167], + [-147.3859, 60.6526], + [-147.4268, 60.6846] + ] + ], + [ + [ + [-145.1807, 60.3401], + [-145.2849, 60.3307], + [-145.213, 60.3026], + [-145.1807, 60.3401] + ] + ], + [ + [ + [-159.7064, 54.8371], + [-159.82, 54.8136], + [-159.7743, 54.7922], + [-159.7064, 54.8371] + ] + ], + [ + [ + [-133.0374, 56.1183], + [-133.0472, 56.0647], + [-132.9795, 56.0813], + [-133.0374, 56.1183] + ] + ], + [ + [ + [-131.6233, 55.9036], + [-131.6618, 55.8603], + [-131.5902, 55.8535], + [-131.6233, 55.9036] + ] + ], + [ + [ + [-156.6893, 56.0569], + [-156.7517, 56.0408], + [-156.6757, 56.0093], + [-156.6893, 56.0569] + ] + ], + [ + [ + [-150.5979, 61.3604], + [-150.6349, 61.337], + [-150.5943, 61.2797], + [-150.5979, 61.3604] + ] + ], + [ + [ + [-175.7928, 51.9564], + [-175.8626, 51.9534], + [-175.7833, 51.9137], + [-175.7928, 51.9564] + ] + ], + [ + [ + [-146.2941, 59.4647], + [-146.374, 59.4184], + [-146.3344, 59.4042], + [-146.2941, 59.4647] + ] + ], + [ + [ + [-159.3128, 55.8117], + [-159.3564, 55.8065], + [-159.3078, 55.7455], + [-159.3128, 55.8117] + ] + ], + [ + [ + [-131.2011, 55.1078], + [-131.2422, 55.0664], + [-131.195, 55.0433], + [-131.2011, 55.1078] + ] + ], + [ + [ + [-163.7849, 60.8807], + [-163.862, 60.8755], + [-163.8229, 60.8417], + [-163.7849, 60.8807] + ] + ], + [ + [ + [175.88, 52.3728], + [175.9025, 52.3369], + [175.9654, 52.3596], + [175.88, 52.3728] + ] + ], + [ + [ + [-133.4878, 56.1686], + [-133.5725, 56.132], + [-133.5033, 56.1297], + [-133.4878, 56.1686] + ] + ], + [ + [ + [-134.2661, 57.9553], + [-134.2466, 57.9086], + [-134.2017, 57.9397], + [-134.2661, 57.9553] + ] + ], + [ + [ + [-150.163, 61.1578], + [-150.2125, 61.1708], + [-150.2354, 61.1229], + [-150.163, 61.1578] + ] + ], + [ + [ + [-147.5542, 60.5604], + [-147.6224, 60.5641], + [-147.5995, 60.5255], + [-147.5542, 60.5604] + ] + ], + [ + [ + [-159.1316, 55.8706], + [-159.1683, 55.8389], + [-159.095, 55.8328], + [-159.1316, 55.8706] + ] + ], + [ + [ + [-167.663, 65.7839], + [-167.7182, 65.7786], + [-167.7042, 65.7354], + [-167.663, 65.7839] + ] + ], + [ + [ + [-151.5081, 59.1459], + [-151.4443, 59.1046], + [-151.4312, 59.1345], + [-151.5081, 59.1459] + ] + ], + [ + [ + [-132.8801, 55.2266], + [-132.9348, 55.2143], + [-132.9259, 55.1716], + [-132.8801, 55.2266] + ] + ], + [ + [ + [-173.0578, 60.6578], + [-173.087, 60.6995], + [-173.1161, 60.6599], + [-173.0578, 60.6578] + ] + ], + [ + [ + [-162.4601, 54.4172], + [-162.4328, 54.3714], + [-162.4017, 54.4056], + [-162.4601, 54.4172] + ] + ], + [ + [ + [-144.3979, 60.1521], + [-144.3297, 60.1026], + [-144.3297, 60.137], + [-144.3979, 60.1521] + ] + ], + [ + [ + [-160.2794, 58.7153], + [-160.3167, 58.6817], + [-160.2706, 58.6611], + [-160.2794, 58.7153] + ] + ], + [ + [ + [-154.4311, 56.5908], + [-154.4378, 56.5375], + [-154.3928, 56.5533], + [-154.4311, 56.5908] + ] + ] + ] + }, + "properties": { + "id": "097d174e-70ae-4e79-b73a-142c4bb3ce6c", + "code": "AL", + "name": "Alaska", + "abbreviation": "R-AL", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-155.875, 20.0919], + [-155.8234, 20.0276], + [-155.9367, 19.8497], + [-155.96, 19.8531], + [-156.0503, 19.7744], + [-156.0328, 19.6563], + [-155.9753, 19.6046], + [-155.9508, 19.4869], + [-155.9203, 19.4769], + [-155.8847, 19.3322], + [-155.9189, 19.115], + [-155.8819, 19.0364], + [-155.7953, 19.0042], + [-155.6864, 18.9372], + [-155.6378, 18.9347], + [-155.5516, 19.052], + [-155.504, 19.1357], + [-155.4523, 19.1474], + [-155.3471, 19.2135], + [-155.2936, 19.2634], + [-155.2078, 19.2562], + [-155.1305, 19.2728], + [-155.0714, 19.3111], + [-154.9725, 19.3489], + [-154.8206, 19.4769], + [-154.8058, 19.5161], + [-154.9031, 19.5689], + [-154.98, 19.6376], + [-155.0022, 19.7364], + [-155.0903, 19.7347], + [-155.0811, 19.8475], + [-155.1572, 19.9325], + [-155.2746, 20.0165], + [-155.4383, 20.0925], + [-155.5561, 20.1289], + [-155.5878, 20.1188], + [-155.7303, 20.2022], + [-155.7539, 20.2361], + [-155.8369, 20.2672], + [-155.8825, 20.2575], + [-155.9042, 20.1973], + [-155.875, 20.0919] + ] + ], + [ + [ + [-156.5986, 21.0305], + [-156.6333, 21.0267], + [-156.6925, 20.9472], + [-156.6871, 20.882], + [-156.6283, 20.8136], + [-156.5366, 20.7743], + [-156.4631, 20.7812], + [-156.4414, 20.605], + [-156.3736, 20.5739], + [-156.2972, 20.5822], + [-156.1927, 20.6283], + [-156.1403, 20.6178], + [-156.0472, 20.6508], + [-155.9872, 20.7083], + [-156.0019, 20.7947], + [-156.1081, 20.825], + [-156.2825, 20.9458], + [-156.3294, 20.9456], + [-156.4739, 20.8908], + [-156.5265, 20.9805], + [-156.5986, 21.0305] + ] + ], + [ + [ + [-157.9803, 21.7108], + [-158.0633, 21.655], + [-158.1169, 21.5847], + [-158.283, 21.5756], + [-158.2303, 21.5349], + [-158.2317, 21.4825], + [-158.1417, 21.3764], + [-158.1031, 21.295], + [-157.9005, 21.3259], + [-157.8188, 21.2576], + [-157.6487, 21.3044], + [-157.7035, 21.3464], + [-157.7446, 21.4211], + [-157.7814, 21.4114], + [-157.8397, 21.4562], + [-157.8338, 21.5265], + [-157.9209, 21.6268], + [-157.9335, 21.6743], + [-157.9803, 21.7108] + ] + ], + [ + [ + [-159.4018, 22.235], + [-159.4768, 22.2305], + [-159.4983, 22.2068], + [-159.5865, 22.2205], + [-159.6598, 22.1719], + [-159.7223, 22.1531], + [-159.7858, 22.0619], + [-159.7564, 21.9786], + [-159.6664, 21.9524], + [-159.6284, 21.9084], + [-159.4441, 21.868], + [-159.3305, 21.9595], + [-159.3389, 22.0175], + [-159.2929, 22.1221], + [-159.3146, 22.1859], + [-159.4018, 22.235] + ] + ], + [ + [ + [-156.9134, 21.1667], + [-156.9706, 21.2158], + [-157, 21.1789], + [-157.0652, 21.1952], + [-157.2606, 21.2175], + [-157.2508, 21.1775], + [-157.3114, 21.1014], + [-157.2525, 21.0877], + [-157.0937, 21.1026], + [-156.8743, 21.0465], + [-156.7486, 21.1028], + [-156.7109, 21.1479], + [-156.7393, 21.173], + [-156.9134, 21.1667] + ] + ], + [ + [ + [-156.9791, 20.9263], + [-157.0579, 20.909], + [-157.0525, 20.8728], + [-156.9981, 20.8408], + [-156.9636, 20.7308], + [-156.8761, 20.7425], + [-156.8054, 20.808], + [-156.8284, 20.8558], + [-156.9005, 20.9151], + [-156.9791, 20.9263] + ] + ], + [ + [ + [-160.0855, 22.0015], + [-160.1285, 21.9513], + [-160.2294, 21.8856], + [-160.2472, 21.8153], + [-160.2027, 21.7789], + [-160.1611, 21.8614], + [-160.0672, 21.8935], + [-160.0855, 22.0015] + ] + ], + [ + [ + [-156.5683, 20.6039], + [-156.6778, 20.5556], + [-156.6786, 20.5028], + [-156.5518, 20.5339], + [-156.5683, 20.6039] + ] + ] + ] + }, + "properties": { + "id": "5ee7f045-f63c-42e6-b623-98c5080c0d76", + "code": "HI", + "name": "Hawaii", + "abbreviation": "R-HI", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-76.013, 36.5505], + [-75.9825, 36.5844], + [-75.9928, 36.6353], + [-75.9434, 36.7223], + [-75.9172, 36.6381], + [-75.8842, 36.6133], + [-75.9525, 36.7658], + [-76.0015, 36.9262], + [-76.0906, 36.9081], + [-76.2271, 36.9408], + [-76.2775, 36.9692], + [-76.331, 36.9606], + [-76.3884, 36.898], + [-76.4831, 36.897], + [-76.4861, 36.9561], + [-76.5764, 37.0197], + [-76.6479, 37.0368], + [-76.6856, 37.197], + [-76.7146, 37.1489], + [-76.7474, 37.1503], + [-76.8042, 37.2072], + [-76.9, 37.1992], + [-76.9853, 37.2447], + [-77.0144, 37.3031], + [-77.0508, 37.2653], + [-77.0842, 37.2725], + [-77.0936, 37.3081], + [-77.1758, 37.2878], + [-77.2525, 37.2956], + [-77.2044, 37.3253], + [-77.1278, 37.3094], + [-77.0728, 37.3275], + [-77.0803, 37.2808], + [-77.0156, 37.3125], + [-76.9404, 37.2369], + [-76.8817, 37.2567], + [-76.7958, 37.2328], + [-76.7575, 37.1914], + [-76.6919, 37.2231], + [-76.6231, 37.1979], + [-76.6283, 37.1261], + [-76.4647, 37.0277], + [-76.4303, 36.9656], + [-76.3181, 37.0126], + [-76.2702, 37.0878], + [-76.3368, 37.0911], + [-76.2938, 37.1264], + [-76.4206, 37.2233], + [-76.4697, 37.2136], + [-76.5767, 37.2719], + [-76.6258, 37.3131], + [-76.7114, 37.4444], + [-76.5103, 37.2722], + [-76.5058, 37.2461], + [-76.3829, 37.2657], + [-76.3979, 37.3136], + [-76.4499, 37.3811], + [-76.4159, 37.4086], + [-76.3061, 37.3278], + [-76.2487, 37.3758], + [-76.2522, 37.436], + [-76.3596, 37.5213], + [-76.3125, 37.5458], + [-76.4306, 37.6094], + [-76.5331, 37.6122], + [-76.5906, 37.6572], + [-76.5998, 37.7207], + [-76.6803, 37.7796], + [-76.7234, 37.7884], + [-76.7945, 37.8955], + [-76.8527, 37.9208], + [-76.9286, 37.9831], + [-76.9164, 38.0294], + [-76.93, 38.0732], + [-77.06, 38.106], + [-77.0571, 38.1408], + [-77.1263, 38.1367], + [-77.1531, 38.1758], + [-77.0489, 38.1579], + [-77.0297, 38.1031], + [-76.9358, 38.0805], + [-76.9214, 38.0683], + [-76.9131, 38.0516], + [-76.8966, 37.9895], + [-76.7982, 37.9245], + [-76.7262, 37.8362], + [-76.5867, 37.7714], + [-76.5097, 37.6425], + [-76.4719, 37.6661], + [-76.4022, 37.6273], + [-76.2798, 37.6195], + [-76.3389, 37.6533], + [-76.3028, 37.6897], + [-76.3144, 37.7356], + [-76.3019, 37.8258], + [-76.2657, 37.817], + [-76.2372, 37.8836], + [-76.2683, 37.9128], + [-76.4136, 37.9646], + [-76.4733, 38.015], + [-76.5458, 38.039], + [-76.5363, 38.0749], + [-76.6314, 38.1534], + [-76.7016, 38.1598], + [-76.715, 38.1025], + [-76.7891, 38.1697], + [-76.8398, 38.1638], + [-76.9659, 38.2121], + [-76.9619, 38.2573], + [-77.0299, 38.311], + [-77.0135, 38.3748], + [-77.0726, 38.3755], + [-77.237, 38.3312], + [-77.3223, 38.3371], + [-77.297, 38.3707], + [-77.3266, 38.4435], + [-77.3036, 38.5094], + [-77.2574, 38.5609], + [-77.2392, 38.6617], + [-77.1581, 38.6372], + [-77.1504, 38.6659], + [-77.0423, 38.7218], + [-77.0523, 38.7886], + [-77.0134, 38.7883], + [-77.0442, 38.6976], + [-77.1009, 38.6854], + [-77.1095, 38.6268], + [-77.182, 38.6018], + [-77.235, 38.5535], + [-77.2736, 38.4829], + [-77.2495, 38.3823], + [-77.2067, 38.3597], + [-77.0915, 38.4076], + [-77.0419, 38.4443], + [-77.0015, 38.4216], + [-76.975, 38.3539], + [-76.9263, 38.2945], + [-76.85, 38.2658], + [-76.8711, 38.3333], + [-76.859, 38.3828], + [-76.8023, 38.2806], + [-76.7526, 38.2222], + [-76.7144, 38.2669], + [-76.6712, 38.2344], + [-76.5913, 38.2149], + [-76.5358, 38.1465], + [-76.5017, 38.1383], + [-76.4295, 38.1939], + [-76.4413, 38.1508], + [-76.3206, 38.0486], + [-76.3403, 38.1148], + [-76.32, 38.1383], + [-76.3864, 38.2202], + [-76.3733, 38.2989], + [-76.4619, 38.296], + [-76.5031, 38.3603], + [-76.6192, 38.4178], + [-76.6419, 38.4761], + [-76.5714, 38.4225], + [-76.5233, 38.4124], + [-76.4708, 38.3492], + [-76.4214, 38.3192], + [-76.3811, 38.3856], + [-76.4917, 38.4817], + [-76.5175, 38.5347], + [-76.5114, 38.615], + [-76.5286, 38.7281], + [-76.5547, 38.7697], + [-76.5106, 38.8008], + [-76.4894, 38.8878], + [-76.515, 38.9114], + [-76.4594, 38.9406], + [-76.4764, 38.9817], + [-76.3953, 39.0108], + [-76.4368, 39.0526], + [-76.5136, 39.0681], + [-76.4406, 39.0956], + [-76.4307, 39.132], + [-76.4969, 39.1508], + [-76.5764, 39.2489], + [-76.4621, 39.2057], + [-76.4212, 39.2318], + [-76.3892, 39.3128], + [-76.2822, 39.2998], + [-76.2279, 39.35], + [-76.1024, 39.4348], + [-76.1133, 39.4871], + [-76.0839, 39.5467], + [-75.97, 39.5575], + [-75.9851, 39.4702], + [-75.9156, 39.5033], + [-76.0374, 39.386], + [-76.1109, 39.3722], + [-76.1865, 39.3186], + [-76.2781, 39.1479], + [-76.2494, 39.1319], + [-76.2269, 39.0531], + [-76.1693, 39.1271], + [-76.1425, 39.0864], + [-76.1763, 39.0574], + [-76.1625, 39.0069], + [-76.2022, 38.9722], + [-76.1981, 38.845], + [-76.1839, 38.7581], + [-76.2656, 38.8511], + [-76.2981, 38.8283], + [-76.3428, 38.75], + [-76.2964, 38.7728], + [-76.2714, 38.709], + [-76.2381, 38.7108], + [-76.1083, 38.6214], + [-76.0258, 38.5786], + [-76.1133, 38.5814], + [-76.1763, 38.6281], + [-76.2067, 38.6086], + [-76.2722, 38.6175], + [-76.2608, 38.5481], + [-76.1978, 38.5303], + [-76.3277, 38.4993], + [-76.3319, 38.4742], + [-76.2333, 38.345], + [-76.1836, 38.3601], + [-76.1647, 38.3156], + [-76.0744, 38.2686], + [-75.9986, 38.3741], + [-75.9638, 38.3246], + [-76.0083, 38.305], + [-75.9489, 38.2378], + [-75.9404, 38.3061], + [-75.8634, 38.3592], + [-75.9188, 38.2645], + [-75.8998, 38.2323], + [-75.8186, 38.2269], + [-75.9368, 38.1898], + [-75.9347, 38.1483], + [-75.7948, 38.1358], + [-75.8664, 38.0956], + [-75.8547, 38.0694], + [-75.7748, 38.0733], + [-75.8365, 38.0325], + [-75.8922, 37.9558], + [-75.8647, 37.9133], + [-75.7786, 37.9736], + [-75.7378, 37.9828], + [-75.6358, 37.9536], + [-75.7142, 37.9378], + [-75.7378, 37.9008], + [-75.6928, 37.8678], + [-75.7431, 37.7869], + [-75.8133, 37.7481], + [-75.8869, 37.6536], + [-75.9825, 37.4297], + [-76.0168, 37.324], + [-76.0136, 37.2088], + [-75.9764, 37.1547], + [-75.98, 37.0897], + [-75.9419, 37.0956], + [-75.9281, 37.2614], + [-75.8956, 37.3503], + [-75.8306, 37.3869], + [-75.8058, 37.4719], + [-75.7575, 37.4975], + [-75.6847, 37.4567], + [-75.7278, 37.5511], + [-75.6581, 37.4867], + [-75.6139, 37.5525], + [-75.6689, 37.5294], + [-75.6961, 37.5717], + [-75.6492, 37.6519], + [-75.6053, 37.62], + [-75.58, 37.7442], + [-75.4164, 37.8906], + [-75.4364, 37.9633], + [-75.3767, 38.0081], + [-75.365, 38.0736], + [-75.3008, 38.0989], + [-75.2608, 38.2045], + [-75.2194, 38.2464], + [-75.19, 38.2275], + [-75.0956, 38.3294], + [-75.1272, 38.3614], + [-75.1169, 38.4381], + [-75.0503, 38.4439], + [-75.0583, 38.5872], + [-75.0972, 38.5786], + [-75.1553, 38.6078], + [-75.151071674, 38.64310412], + [-75.1347, 38.6783], + [-75.0794, 38.6947], + [-75.092, 38.8017], + [-75.1303, 38.7814], + [-75.1856, 38.8033], + [-75.3042, 38.9136], + [-75.3187, 38.9887], + [-75.3914, 39.0525], + [-75.4128, 39.1508], + [-75.3957, 39.1896], + [-75.4081, 39.2642], + [-75.4869, 39.3569], + [-75.4333, 39.3939], + [-75.3866, 39.3565], + [-75.3276, 39.3405], + [-75.288, 39.2908], + [-75.1709, 39.2353], + [-75.1372, 39.1812], + [-75.1087, 39.2187], + [-75.0489, 39.2151], + [-74.8865, 39.1584], + [-74.9019, 39.0902], + [-74.957, 38.9983], + [-74.9725, 38.9387], + [-74.9117, 38.9308], + [-74.8339, 38.9908], + [-74.8044, 39.0333], + [-74.7619, 39.0603], + [-74.7961, 39.0928], + [-74.711, 39.1206], + [-74.6625, 39.1903], + [-74.5594, 39.2975], + [-74.6269, 39.2533], + [-74.6359, 39.3067], + [-74.5864, 39.3131], + [-74.5181, 39.3633], + [-74.4078, 39.3642], + [-74.4878, 39.395], + [-74.4139, 39.4772], + [-74.4168, 39.5436], + [-74.2981, 39.5381], + [-74.3381, 39.5686], + [-74.307, 39.6016], + [-74.2202, 39.6441], + [-74.1686, 39.7125], + [-74.1969, 39.7442], + [-74.1054, 39.9305], + [-74.1094, 39.9748], + [-74.0728, 40.0006], + [-74.0923, 39.831], + [-74.0307, 40.1244], + [-73.9867, 40.2573], + [-73.9767, 40.3636], + [-74, 40.4118], + [-74.1349, 40.4566], + [-74.1928, 40.4419], + [-74.2614, 40.4647], + [-74.2533, 40.5517], + [-74.215, 40.5642], + [-74.19, 40.6442], + [-74.072, 40.6615], + [-74.0328, 40.715], + [-73.9769, 40.7114], + [-73.9717, 40.7433], + [-73.9358, 40.7853], + [-73.8971, 40.8058], + [-73.8044, 40.8119], + [-73.8003, 40.8478], + [-73.7159, 40.9446], + [-73.6606, 40.9889], + [-73.657, 41.0119], + [-73.7297, 41.1009], + [-73.4838, 41.2136], + [-73.5523, 41.2933], + [-73.4923, 41.9865], + [-73.4981, 42.0496], + [-73.5084, 42.0858], + [-73.4822, 42.1648], + [-73.2675, 42.7452], + [-73.2754, 42.7456], + [-73.2789, 42.8337], + [-73.2506, 43.5108], + [-73.2581, 43.5617], + [-73.2975, 43.5793], + [-73.3056, 43.627], + [-73.3751, 43.6233], + [-73.386, 43.5812], + [-73.4302, 43.5834], + [-73.4317, 43.6439], + [-73.356, 43.7651], + [-73.3933, 43.8209], + [-73.3783, 43.8758], + [-73.4101, 43.9351], + [-73.4107, 44.0189], + [-73.4434, 44.0526], + [-73.3927, 44.1912], + [-73.3163, 44.2541], + [-73.3374, 44.3638], + [-73.2947, 44.4384], + [-73.2998, 44.4804], + [-73.3812, 44.5893], + [-73.3889, 44.6335], + [-73.3645, 44.7409], + [-73.3369, 44.7839], + [-73.3813, 44.837], + [-73.3411, 44.9199], + [-73.3442, 45.0103], + [-73.8279, 45.0031], + [-74.1501, 44.9912], + [-74.3476, 44.9908], + [-74.6457, 44.9992], + [-74.7334, 44.9905], + [-74.8262, 45.0158], + [-74.9086, 44.9867], + [-74.9922, 44.9777], + [-75.0175, 44.9549], + [-75.1305, 44.9165], + [-75.3077, 44.841], + [-75.5457, 44.687], + [-75.7674, 44.5205], + [-75.824, 44.431], + [-75.9106, 44.3715], + [-75.9948, 44.3475], + [-76.1629, 44.2816], + [-76.1656, 44.241], + [-76.2437, 44.2051], + [-76.3157, 44.1987], + [-76.3543, 44.1344], + [-76.4411, 44.0944], + [-76.7983, 43.6314], + [-78.6812, 43.6336], + [-79.2028, 43.451], + [-79.0566, 43.2488], + [-79.044, 43.1499], + [-79.0748, 43.0813], + [-79.0017, 43.0582], + [-79.0072, 42.9834], + [-78.9219, 42.9486], + [-78.8598, 42.8398], + [-78.8557, 42.7817], + [-78.9186, 42.7382], + [-79.0491, 42.6893], + [-79.1469, 42.556], + [-79.2484, 42.5327], + [-79.3459, 42.493], + [-79.4352, 42.4225], + [-79.716, 42.2837], + [-79.7625, 42.2686], + [-79.7753, 42.2604], + [-79.8296, 42.2353], + [-79.8615, 42.2243], + [-79.9027, 42.2149], + [-79.9382, 42.2047], + [-80.0312, 42.1557], + [-80.1766, 42.1046], + [-80.311, 42.0467], + [-80.5181, 41.9782], + [-80.5177, 40.8532], + [-80.5191, 40.6385], + [-80.6235, 40.6208], + [-80.6626, 40.5746], + [-80.597, 40.4644], + [-80.6131, 40.4066], + [-80.6, 40.3297], + [-80.6172, 40.2691], + [-80.6564, 40.2415], + [-80.731, 40.0867], + [-80.7531, 39.9193], + [-80.8056, 39.905], + [-80.833, 39.7934], + [-80.8668, 39.7689], + [-80.8292, 39.716], + [-80.8614, 39.6917], + [-80.8711, 39.6329], + [-80.9312, 39.6141], + [-81.0866, 39.4989], + [-81.127, 39.448], + [-81.1691, 39.4388], + [-81.2201, 39.3854], + [-81.2498, 39.3883], + [-81.3835, 39.3438], + [-81.4329, 39.4073], + [-81.5531, 39.3441], + [-81.5642, 39.2747], + [-81.6504, 39.2784], + [-81.693, 39.2538], + [-81.752, 39.1819], + [-81.7397, 39.1104], + [-81.806, 39.0841], + [-81.7637, 39.0209], + [-81.7814, 38.9249], + [-81.8236, 38.946], + [-81.8543, 38.8939], + [-81.9224, 38.8879], + [-81.8995, 38.9318], + [-81.9315, 38.9874], + [-82.0361, 39.0248], + [-82.0891, 38.9725], + [-82.1428, 38.887], + [-82.1431, 38.8407], + [-82.2173, 38.7882], + [-82.1814, 38.7112], + [-82.1728, 38.6394], + [-82.1694, 38.6214], + [-82.1973, 38.592], + [-82.2667, 38.5958], + [-82.292, 38.5731], + [-82.3183, 38.455], + [-82.4911, 38.4171], + [-82.558, 38.4025], + [-82.5928, 38.4186], + [-82.5756, 38.3302], + [-82.578, 38.2508], + [-82.637, 38.1407], + [-82.5495, 38.0718], + [-82.5085, 38.0021], + [-82.4701, 37.9863], + [-82.4874, 37.9182], + [-82.4201, 37.8853], + [-82.4178, 37.8481], + [-82.3119, 37.765], + [-82.2901, 37.6708], + [-82.2231, 37.6542], + [-82.1352, 37.5965], + [-82.1293, 37.5525], + [-81.9908, 37.5404], + [-81.9642, 37.544], + [-81.9673, 37.5372], + [-82.3523, 37.268], + [-82.555, 37.2033], + [-82.7206, 37.1205], + [-82.7198, 37.0484], + [-82.8653, 36.9786], + [-82.8698, 36.9005], + [-82.9615, 36.861], + [-83.0676, 36.8541], + [-83.1331, 36.7845], + [-83.1374, 36.7438], + [-83.1958, 36.7393], + [-83.3354, 36.7041], + [-83.4221, 36.67], + [-83.4979, 36.6711], + [-83.6632, 36.612], + [-83.6748, 36.6012], + [-83.2538, 36.5942], + [-82.2374, 36.5967], + [-81.9352, 36.595], + [-81.9233, 36.6166], + [-81.6475, 36.6125], + [-81.6758, 36.589], + [-81.3698, 36.5735], + [-80.8632, 36.5598], + [-80.6523, 36.5584], + [-80.2775, 36.5433], + [-79.5112, 36.5391], + [-78.9763, 36.5447], + [-78.5095, 36.5421], + [-78.125, 36.5463], + [-76.9174, 36.544], + [-76.9162, 36.5511], + [-76.1527, 36.5504], + [-76.1509, 36.5504], + [-76.0358, 36.5508], + [-76.013, 36.5505] + ] + ], + [ + [ + [-73.4483, 40.6536], + [-73.2784, 40.6839], + [-73.2256, 40.7181], + [-73.1485, 40.6984], + [-73.0206, 40.7486], + [-72.9453, 40.7408], + [-72.8864, 40.7653], + [-72.8694, 40.7392], + [-72.7238, 40.8089], + [-72.6708, 40.7848], + [-72.4738, 40.8389], + [-71.9575, 41.0283], + [-71.8741, 41.0517], + [-71.8959, 41.0772], + [-71.9603, 41.0702], + [-72.0222, 41.0214], + [-72.1103, 40.9947], + [-72.1594, 41.0539], + [-72.2789, 41.0003], + [-72.3717, 40.9956], + [-72.4425, 40.9456], + [-72.4747, 40.8994], + [-72.6125, 40.9083], + [-72.5267, 40.98], + [-72.4564, 41.0014], + [-72.4022, 41.0756], + [-72.2783, 41.1593], + [-72.3536, 41.1403], + [-72.3967, 41.0964], + [-72.6369, 40.9814], + [-72.778, 40.9652], + [-73.02, 40.9628], + [-73.1187, 40.9778], + [-73.1711, 40.9042], + [-73.2939, 40.9244], + [-73.4383, 40.9009], + [-73.4853, 40.9473], + [-73.4886, 40.8775], + [-73.5414, 40.8769], + [-73.5657, 40.9155], + [-73.6764, 40.8575], + [-73.7297, 40.8664], + [-73.7658, 40.8121], + [-73.8697, 40.7792], + [-73.8883, 40.7989], + [-73.936, 40.7775], + [-73.9728, 40.7025], + [-73.9984, 40.7014], + [-74.0403, 40.615], + [-74, 40.5711], + [-73.8761, 40.5847], + [-73.897, 40.6237], + [-73.8234, 40.6493], + [-73.79, 40.5994], + [-73.7079, 40.6124], + [-73.6384, 40.6], + [-73.5952, 40.6338], + [-73.4483, 40.6536] + ] + ], + [ + [ + [-74.0791, 40.6478], + [-74.18, 40.6453], + [-74.1994, 40.5735], + [-74.2486, 40.5439], + [-74.2463, 40.4963], + [-74.1051, 40.5538], + [-74.0527, 40.6014], + [-74.0791, 40.6478] + ] + ], + [ + [ + [-76.3008, 39.0306], + [-76.3553, 38.9561], + [-76.3767, 38.8492], + [-76.3306, 38.8636], + [-76.3148, 38.9342], + [-76.2517, 38.9431], + [-76.3008, 39.0306] + ] + ], + [ + [ + [-75.8653, 37.2892], + [-75.8969, 37.2789], + [-75.9106, 37.1758], + [-75.8944, 37.1189], + [-75.8017, 37.2006], + [-75.8847, 37.2044], + [-75.8653, 37.2892] + ] + ], + [ + [ + [-75.2425, 38.0286], + [-75.2975, 37.9917], + [-75.3033, 37.9628], + [-75.3392, 37.9228], + [-75.3778, 37.8936], + [-75.3489, 37.8806], + [-75.2425, 38.0286] + ] + ], + [ + [ + [-74.1189, 39.7706], + [-74.1419, 39.6958], + [-74.1806, 39.6622], + [-74.2373, 39.5583], + [-74.0997, 39.7564], + [-74.1189, 39.7706] + ] + ], + [ + [ + [-75.2425, 38.0286], + [-75.1875, 38.1094], + [-75.1292, 38.2542], + [-75.1892, 38.1533], + [-75.1917, 38.1172], + [-75.2425, 38.0286] + ] + ], + [ + [ + [-72.3297, 41.1058], + [-72.384, 41.0691], + [-72.3106, 41.0542], + [-72.3297, 41.1058] + ] + ], + [ + [ + [-74.8025, 39.0303], + [-74.8647, 38.9417], + [-74.7869, 39.0014], + [-74.8025, 39.0303] + ] + ], + [ + [ + [-76.0314, 38.0003], + [-76.0453, 37.9489], + [-75.9894, 37.9617], + [-76.0314, 38.0003] + ] + ], + [ + [ + [-75.3142, 37.9811], + [-75.4044, 37.8978], + [-75.3822, 37.9158], + [-75.3531, 37.9158], + [-75.3439, 37.9503], + [-75.3142, 37.9811] + ] + ] + ] + }, + "properties": { + "id": "3596a904-2af8-4c91-a48f-93f16d9acc81", + "code": "MA", + "name": "Mid-Atlantic", + "abbreviation": "R-MA", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-78.9219, 42.9486], + [-78.9061, 42.9056], + [-78.9369, 42.831], + [-79.7627, 42.5105], + [-80.0733, 42.3926], + [-80.5139, 42.3244], + [-81.2606, 42.2055], + [-81.6388, 42.0214], + [-82.4077, 41.6769], + [-82.6812, 41.6773], + [-83.0678, 41.8626], + [-83.1466, 42.0332], + [-83.1231, 42.1205], + [-83.1332, 42.173], + [-83.0954, 42.2842], + [-83.0503, 42.3177], + [-82.9358, 42.3446], + [-82.8683, 42.3276], + [-82.6412, 42.5548], + [-82.6002, 42.5496], + [-82.5213, 42.6104], + [-82.4669, 42.7739], + [-82.4782, 42.8031], + [-82.4532, 42.9257], + [-82.4113, 42.9707], + [-82.4243, 42.9983], + [-82.1229, 43.5884], + [-82.2077, 43.9512], + [-82.4175, 44.9067], + [-82.5254, 45.3409], + [-83.1983, 45.644], + [-83.5921, 45.8187], + [-83.4356, 45.9965], + [-83.5711, 46.1026], + [-83.6544, 46.1194], + [-83.7567, 46.1015], + [-83.8258, 46.1165], + [-83.9036, 46.0585], + [-83.9548, 46.0562], + [-84.005, 46.1506], + [-84.0726, 46.1875], + [-84.1046, 46.2389], + [-84.1432, 46.4171], + [-84.1099, 46.5021], + [-84.1293, 46.5313], + [-84.2223, 46.5343], + [-84.2505, 46.5027], + [-84.3711, 46.5083], + [-84.4429, 46.4897], + [-84.4764, 46.4532], + [-84.5561, 46.4597], + [-84.7638, 46.6349], + [-84.8434, 46.8873], + [-86.0434, 47.3856], + [-86.7729, 47.6817], + [-87.4059, 47.9341], + [-87.8649, 48.1137], + [-88.3709, 48.3042], + [-88.689, 48.2415], + [-89.3391, 47.9699], + [-89.4877, 48.0109], + [-89.7699, 48.0229], + [-89.8676, 47.998], + [-89.9743, 48.0441], + [-90.0335, 48.0963], + [-90.1358, 48.1127], + [-90.3466, 48.0983], + [-90.4664, 48.1095], + [-90.6375, 48.1059], + [-90.7422, 48.1137], + [-90.8139, 48.1907], + [-90.8399, 48.2459], + [-90.8861, 48.2466], + [-91.1333, 48.1569], + [-91.2544, 48.0815], + [-91.4013, 48.0573], + [-91.4773, 48.0801], + [-91.5562, 48.0804], + [-91.6911, 48.1273], + [-91.721, 48.2007], + [-91.8623, 48.2112], + [-91.9833, 48.261], + [-91.9998, 48.321], + [-92.0548, 48.3591], + [-92.2625, 48.3548], + [-92.3052, 48.3194], + [-92.2797, 48.2427], + [-92.3643, 48.2338], + [-92.4748, 48.3733], + [-92.4665, 48.435], + [-92.5068, 48.4504], + [-92.6527, 48.4408], + [-92.6962, 48.492], + [-92.6315, 48.4987], + [-92.6354, 48.5426], + [-92.7268, 48.5391], + [-92.9472, 48.6214], + [-93.1798, 48.6228], + [-93.2564, 48.6425], + [-93.4636, 48.592], + [-93.4679, 48.5466], + [-93.6129, 48.5247], + [-93.7518, 48.5198], + [-93.7955, 48.5306], + [-93.817, 48.6146], + [-93.8505, 48.6316], + [-94.0805, 48.6538], + [-94.2233, 48.6602], + [-94.257, 48.7035], + [-94.4165, 48.7103], + [-94.452, 48.6928], + [-94.5351, 48.7023], + [-94.6206, 48.7374], + [-94.6823, 48.8088], + [-94.6785, 48.8808], + [-94.748, 49.0975], + [-94.7719, 49.1224], + [-94.8247, 49.3069], + [-94.9561, 49.3694], + [-95.0534, 49.3529], + [-95.1497, 49.3833], + [-95.1514, 49], + [-97.2286, 49], + [-97.2348, 48.9952], + [-97.2128, 48.9061], + [-97.1788, 48.8741], + [-97.1533, 48.7544], + [-97.0935, 48.684], + [-97.115, 48.6287], + [-97.1712, 48.5572], + [-97.1571, 48.4747], + [-97.1268, 48.4545], + [-97.1606, 48.3935], + [-97.1286, 48.3389], + [-97.1206, 48.2796], + [-97.149, 48.1833], + [-97.1227, 48.1056], + [-97.0749, 48.0504], + [-97.0542, 47.9454], + [-96.8975, 47.6783], + [-96.8512, 47.5881], + [-96.8527, 47.5384], + [-96.8642, 47.5402], + [-96.8717, 47.5257], + [-96.868, 47.5196], + [-96.8448, 47.5147], + [-96.8533, 47.5112], + [-96.855, 47.5047], + [-96.8605, 47.4371], + [-96.8346, 47.3394], + [-96.8435, 47.241], + [-96.8175, 47.1102], + [-96.8206, 46.9694], + [-96.7667, 46.8804], + [-96.8008, 46.8155], + [-96.7855, 46.7329], + [-96.7872, 46.7251], + [-96.7821, 46.7225], + [-96.7856, 46.7146], + [-96.8026, 46.6564], + [-96.7563, 46.5763], + [-96.7376, 46.4801], + [-96.6682, 46.3794], + [-96.6022, 46.3298], + [-96.5977, 46.2226], + [-96.5785, 46.1478], + [-96.5688, 46.1333], + [-96.563, 46.1155], + [-96.5552, 46.0731], + [-96.5615, 46.0537], + [-96.5644, 45.9607], + [-96.5577, 45.9425], + [-96.5638, 45.9051], + [-96.5731, 45.8515], + [-96.6313, 45.783], + [-96.6674, 45.735], + [-96.8303, 45.6567], + [-96.8546, 45.6075], + [-96.7642, 45.5189], + [-96.7317, 45.4593], + [-96.6742, 45.4115], + [-96.6087, 45.4094], + [-96.5059, 45.3698], + [-96.4519, 45.3022], + [-96.4536, 45.2695], + [-96.4541, 43.5026], + [-95.6883, 43.5039], + [-95.113241361, 43.503614375], + [-93.6782, 43.5047], + [-93.2844, 43.5032], + [-91.22, 43.5023], + [-91.2227, 43.4769], + [-91.199, 43.4015], + [-91.2035, 43.3527], + [-91.1004, 43.3118], + [-91.0621, 43.256], + [-91.1755, 43.1374], + [-91.1765, 43.0915], + [-91.1756, 43.0415], + [-91.1444, 42.9104], + [-91.0999, 42.875], + [-91.0517, 42.7397], + [-90.9542, 42.6872], + [-90.706, 42.6356], + [-90.6858, 42.5984], + [-90.6635, 42.5587], + [-90.6347, 42.5241], + [-90.6363, 42.5146], + [-90.6513, 42.4981], + [-90.6533, 42.48], + [-90.6157, 42.4555], + [-90.4762, 42.3823], + [-90.4162, 42.3282], + [-90.4265, 42.2895], + [-90.4216, 42.267], + [-90.3849, 42.2225], + [-90.3641, 42.2091], + [-90.2081, 42.1528], + [-90.1984, 42.1301], + [-90.1638, 42.1185], + [-90.1671, 42.0726], + [-90.1606, 42.0418], + [-90.1482, 41.9902], + [-90.1525, 41.9127], + [-90.1904, 41.8046], + [-90.286, 41.765], + [-90.3165, 41.7124], + [-90.3184, 41.6944], + [-90.3444, 41.6502], + [-90.3427, 41.5948], + [-90.3932, 41.5759], + [-90.4524, 41.5308], + [-90.4934, 41.5182], + [-90.5726, 41.5173], + [-90.6077, 41.4958], + [-90.6613, 41.4598], + [-90.8494, 41.4539], + [-90.9263, 41.424], + [-91.0455, 41.4164], + [-91.0742, 41.3107], + [-91.1142, 41.2443], + [-91.0514, 41.1684], + [-90.9981, 41.1626], + [-90.9489, 41.0718], + [-90.9449, 41.0481], + [-90.9558, 40.9699], + [-90.9645, 40.925], + [-91.0043, 40.9049], + [-91.0894, 40.8235], + [-91.113, 40.6883], + [-91.1373, 40.661], + [-91.2032, 40.6369], + [-91.2591, 40.6358], + [-91.3384, 40.611], + [-91.4057, 40.567], + [-91.4131, 40.5471], + [-91.391, 40.5345], + [-91.3705, 40.5151], + [-91.3654, 40.3993], + [-91.4204, 40.378], + [-91.4658, 40.3334], + [-91.5049, 40.2375], + [-91.5115, 40.1292], + [-91.4929, 40.0309], + [-91.4271, 39.939], + [-91.4196, 39.9177], + [-91.4409, 39.8965], + [-91.4473, 39.8743], + [-91.4292, 39.8392], + [-91.3686, 39.8015], + [-91.3616, 39.783], + [-91.3662, 39.7285], + [-91.1801, 39.5992], + [-91.1636, 39.5573], + [-91.0944, 39.5323], + [-91.0578, 39.468], + [-90.9961, 39.4248], + [-90.7971, 39.3118], + [-90.725, 39.2441], + [-90.705, 39.1423], + [-90.6825, 39.1095], + [-90.7131, 39.0513], + [-90.6746, 38.9587], + [-90.6346, 38.9037], + [-90.5983, 38.8768], + [-90.5062, 38.9053], + [-90.4697, 38.9614], + [-90.3828, 38.9595], + [-90.2554, 38.9224], + [-90.1555, 38.8722], + [-90.1141, 38.8508], + [-90.116, 38.8105], + [-90.204, 38.736], + [-90.1814, 38.6618], + [-90.1984, 38.595], + [-90.2595, 38.533], + [-90.2984, 38.4254], + [-90.3565, 38.367], + [-90.3724, 38.3224], + [-90.373, 38.278], + [-90.3498, 38.2141], + [-90.2493, 38.1239], + [-90.1824, 38.0773], + [-90.0109, 37.9714], + [-89.995, 37.9619], + [-89.94, 37.9703], + [-89.9736, 37.917], + [-89.9177, 37.8702], + [-89.8418, 37.9044], + [-89.7961, 37.8589], + [-89.7397, 37.8467], + [-89.6626, 37.7892], + [-89.6707, 37.7575], + [-89.5152, 37.6892], + [-89.5159, 37.6389], + [-89.478, 37.598], + [-89.5204, 37.5815], + [-89.4926, 37.4934], + [-89.4355, 37.4296], + [-89.426, 37.3655], + [-89.5098, 37.3131], + [-89.518, 37.2767], + [-89.5095, 37.2636], + [-89.4654, 37.2526], + [-89.4579, 37.1869], + [-89.3772, 37.0912], + [-89.3865, 37.0501], + [-89.2909, 36.9895], + [-89.2598, 37.0031], + [-89.3063, 37.0643], + [-89.2504, 37.0633], + [-89.1953, 36.983], + [-89.1339, 36.9839], + [-89.1702, 37.0105], + [-89.1815, 37.041], + [-89.1771, 37.059], + [-89.0797, 37.1717], + [-89.0071, 37.2232], + [-88.9595, 37.23], + [-88.7954, 37.1819], + [-88.6965, 37.1397], + [-88.676688934, 37.133297951], + [-88.633978755, 37.119495934], + [-88.618958431, 37.114642037], + [-88.617254334, 37.113873523], + [-88.5528, 37.0713], + [-88.4659, 37.0771], + [-88.425, 37.1543], + [-88.4502, 37.2062], + [-88.5133, 37.279], + [-88.4742, 37.3871], + [-88.444, 37.4156], + [-88.4065, 37.4263], + [-88.3714, 37.4074], + [-88.2593, 37.4575], + [-88.085, 37.4776], + [-88.0736, 37.5317], + [-88.1335, 37.5836], + [-88.1567, 37.6484], + [-88.1478, 37.6776], + [-88.0531, 37.7445], + [-88.027, 37.799], + [-87.9627, 37.7743], + [-87.9464, 37.7782], + [-87.9317, 37.7969], + [-87.9053, 37.8199], + [-87.9364, 37.892], + [-87.9051, 37.9243], + [-87.898, 37.9279], + [-87.8824, 37.9261], + [-87.8608, 37.9043], + [-87.7909, 37.8763], + [-87.7545, 37.8932], + [-87.6679, 37.8934], + [-87.6642, 37.8265], + [-87.6379, 37.8254], + [-87.5934, 37.8902], + [-87.6279, 37.9235], + [-87.6011, 37.9708], + [-87.5114, 37.9067], + [-87.4732, 37.9279], + [-87.4166, 37.9442], + [-87.3434, 37.9128], + [-87.2414, 37.8575], + [-87.1673, 37.8387], + [-87.107, 37.7833], + [-87.0552, 37.8288], + [-87.046, 37.8901], + [-86.986, 37.929], + [-86.9126, 37.9409], + [-86.8599, 37.9849], + [-86.7963, 37.9874], + [-86.7311, 37.8927], + [-86.6673, 37.9134], + [-86.6673, 37.8555], + [-86.6015, 37.8639], + [-86.5816, 37.921], + [-86.5285, 37.9178], + [-86.5219, 38.0289], + [-86.4666, 38.0457], + [-86.3988, 38.1049], + [-86.3198, 38.1465], + [-86.2729, 38.1341], + [-86.2603, 38.0514], + [-86.1682, 38.0093], + [-86.0928, 38.0077], + [-86.0464, 37.9586], + [-86.0145, 37.9958], + [-85.9398, 38.0089], + [-85.9028, 38.0926], + [-85.9044, 38.1676], + [-85.8328, 38.2662], + [-85.7829, 38.2887], + [-85.7432, 38.2689], + [-85.6498, 38.3307], + [-85.5981, 38.4442], + [-85.5047, 38.4645], + [-85.4235, 38.5313], + [-85.437, 38.6563], + [-85.4536, 38.6847], + [-85.4168, 38.7357], + [-85.2505, 38.7322], + [-85.1747, 38.6879], + [-84.9923, 38.7777], + [-84.883, 38.7931], + [-84.8288, 38.7837], + [-84.83, 38.8284], + [-84.7877, 38.8823], + [-84.8738, 38.91], + [-84.8374, 38.9887], + [-84.8931, 39.054], + [-84.8884, 39.065], + [-84.8342, 39.0983], + [-84.803, 39.11], + [-84.7596, 39.1414], + [-84.6237, 39.0736], + [-84.4738, 39.1184], + [-84.4403, 39.1096], + [-84.4076, 39.046], + [-84.3284, 39.0285], + [-84.2383, 38.8947], + [-84.2295, 38.8235], + [-84.2185, 38.8097], + [-84.1762, 38.7966], + [-84.0775, 38.7728], + [-83.9597, 38.7873], + [-83.8686, 38.7611], + [-83.7946, 38.7027], + [-83.7547, 38.6494], + [-83.6573, 38.6263], + [-83.6217, 38.6811], + [-83.5393, 38.7011], + [-83.33, 38.6386], + [-83.287, 38.5998], + [-83.2468, 38.6278], + [-83.1519, 38.6206], + [-83.1109, 38.6708], + [-83.0137, 38.7296], + [-82.9665, 38.728], + [-82.9254, 38.7474], + [-82.884, 38.7523], + [-82.8699, 38.735], + [-82.8784, 38.6911], + [-82.8556, 38.6128], + [-82.823, 38.5743], + [-82.7806, 38.559], + [-82.7243, 38.5581], + [-82.6853, 38.5305], + [-82.6521, 38.4912], + [-82.6115, 38.4718], + [-82.5928, 38.4186], + [-82.558, 38.4025], + [-82.4911, 38.4171], + [-82.3183, 38.455], + [-82.292, 38.5731], + [-82.2667, 38.5958], + [-82.1973, 38.592], + [-82.1694, 38.6214], + [-82.1728, 38.6394], + [-82.1814, 38.7112], + [-82.2173, 38.7882], + [-82.1431, 38.8407], + [-82.1428, 38.887], + [-82.0891, 38.9725], + [-82.0361, 39.0248], + [-81.9315, 38.9874], + [-81.8995, 38.9318], + [-81.9224, 38.8879], + [-81.8543, 38.8939], + [-81.8236, 38.946], + [-81.7814, 38.9249], + [-81.7637, 39.0209], + [-81.806, 39.0841], + [-81.7397, 39.1104], + [-81.752, 39.1819], + [-81.693, 39.2538], + [-81.6504, 39.2784], + [-81.5642, 39.2747], + [-81.5531, 39.3441], + [-81.4329, 39.4073], + [-81.3835, 39.3438], + [-81.2498, 39.3883], + [-81.2201, 39.3854], + [-81.1691, 39.4388], + [-81.127, 39.448], + [-81.0866, 39.4989], + [-80.9312, 39.6141], + [-80.8711, 39.6329], + [-80.8614, 39.6917], + [-80.8292, 39.716], + [-80.8668, 39.7689], + [-80.833, 39.7934], + [-80.8056, 39.905], + [-80.7531, 39.9193], + [-80.731, 40.0867], + [-80.6564, 40.2415], + [-80.6172, 40.2691], + [-80.6, 40.3297], + [-80.6131, 40.4066], + [-80.597, 40.4644], + [-80.6626, 40.5746], + [-80.6235, 40.6208], + [-80.5191, 40.6385], + [-80.5177, 40.8532], + [-80.5181, 41.9782], + [-80.311, 42.0467], + [-80.1766, 42.1046], + [-80.0312, 42.1557], + [-79.9382, 42.2047], + [-79.9027, 42.2149], + [-79.8615, 42.2243], + [-79.8296, 42.2353], + [-79.7753, 42.2604], + [-79.7625, 42.2686], + [-79.716, 42.2837], + [-79.4352, 42.4225], + [-79.3459, 42.493], + [-79.2484, 42.5327], + [-79.1469, 42.556], + [-79.0491, 42.6893], + [-78.9186, 42.7382], + [-78.8557, 42.7817], + [-78.8598, 42.8398], + [-78.9219, 42.9486] + ] + ] + }, + "properties": { + "id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de", + "code": "GL", + "name": "Midwest-East North Central and Great Lakes", + "abbreviation": "R-GL", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-97.2348, 48.9952], + [-97.2295, 49], + [-100.4701, 49.0001], + [-104.0495976, 49], + [-104.0496, 49], + [-104.0448, 48.0005], + [-104.0414, 47.9112], + [-104.0455, 47.1872], + [-104.044522817, 46.122754864], + [-104.0445, 46.0979], + [-104.0443, 45.9438], + [-104.0397, 44.9986], + [-104.0571, 44.9987], + [-104.057099843, 44.998628693], + [-104.0527, 43.002797942], + [-104.0528, 41.0017], + [-102.6538, 41.0032], + [-102.0504, 41.0019], + [-102.0485, 40.0039], + [-102.042300012, 36.992205645], + [-102.042300011, 36.992205645], + [-102.041933879, 36.9922022], + [-100.9441, 36.9988], + [-100.0902, 36.9983], + [-99.0005, 37.0008], + [-97.1468, 36.9994], + [-95.5236, 37.0009], + [-95.0336, 36.9986], + [-94.619, 37], + [-94.6196, 36.7664], + [-94.6182, 36.4984], + [-94.1651, 36.4996], + [-93.3653, 36.4968], + [-92.256, 36.4965], + [-91.758, 36.4985], + [-90.1536, 36.4963], + [-90.1441, 36.4231], + [-90.0669, 36.3862], + [-90.068, 36.2978], + [-90.1284, 36.2305], + [-90.2217, 36.1811], + [-90.2384, 36.1382], + [-90.2905, 36.115], + [-90.3773, 35.9951], + [-90.2574, 35.9975], + [-90.0008, 35.9984], + [-89.7169, 36.0015], + [-89.6564, 36.1024], + [-89.5896, 36.1475], + [-89.6985, 36.2309], + [-89.6946, 36.2501], + [-89.6733, 36.2521], + [-89.6083, 36.2409], + [-89.5456, 36.2791], + [-89.6167, 36.3186], + [-89.6042, 36.3446], + [-89.5264, 36.3459], + [-89.5192, 36.3883], + [-89.5515, 36.4414], + [-89.5249, 36.4844], + [-89.5624, 36.5228], + [-89.5482, 36.5788], + [-89.5352, 36.5814], + [-89.4989, 36.578], + [-89.4712, 36.5308], + [-89.4939, 36.4835], + [-89.4646, 36.4571], + [-89.4196, 36.498], + [-89.3777, 36.6179], + [-89.3562, 36.6324], + [-89.3248, 36.6268], + [-89.2749, 36.5717], + [-89.2289, 36.5677], + [-89.166, 36.6636], + [-89.2016, 36.7251], + [-89.1612, 36.7912], + [-89.1785, 36.8388], + [-89.1311, 36.8588], + [-89.1164, 36.9168], + [-89.1006, 36.9541], + [-89.1339, 36.9839], + [-89.1953, 36.983], + [-89.2504, 37.0633], + [-89.3063, 37.0643], + [-89.2598, 37.0031], + [-89.2909, 36.9895], + [-89.3865, 37.0501], + [-89.3772, 37.0912], + [-89.4579, 37.1869], + [-89.4654, 37.2526], + [-89.5095, 37.2636], + [-89.518, 37.2767], + [-89.5098, 37.3131], + [-89.426, 37.3655], + [-89.4355, 37.4296], + [-89.4926, 37.4934], + [-89.5204, 37.5815], + [-89.478, 37.598], + [-89.5159, 37.6389], + [-89.5152, 37.6892], + [-89.6707, 37.7575], + [-89.6626, 37.7892], + [-89.7397, 37.8467], + [-89.7961, 37.8589], + [-89.8418, 37.9044], + [-89.9177, 37.8702], + [-89.9736, 37.917], + [-89.94, 37.9703], + [-89.995, 37.9619], + [-90.0109, 37.9714], + [-90.1824, 38.0773], + [-90.2493, 38.1239], + [-90.3498, 38.2141], + [-90.373, 38.278], + [-90.3724, 38.3224], + [-90.3565, 38.367], + [-90.2984, 38.4254], + [-90.2595, 38.533], + [-90.1984, 38.595], + [-90.1814, 38.6618], + [-90.204, 38.736], + [-90.116, 38.8105], + [-90.1141, 38.8508], + [-90.1555, 38.8722], + [-90.2554, 38.9224], + [-90.3828, 38.9595], + [-90.4697, 38.9614], + [-90.5062, 38.9053], + [-90.5983, 38.8768], + [-90.6346, 38.9037], + [-90.6746, 38.9587], + [-90.7131, 39.0513], + [-90.6825, 39.1095], + [-90.705, 39.1423], + [-90.725, 39.2441], + [-90.7971, 39.3118], + [-90.9961, 39.4248], + [-91.0578, 39.468], + [-91.0944, 39.5323], + [-91.1636, 39.5573], + [-91.1801, 39.5992], + [-91.3662, 39.7285], + [-91.3616, 39.783], + [-91.3686, 39.8015], + [-91.4292, 39.8392], + [-91.4473, 39.8743], + [-91.4409, 39.8965], + [-91.4196, 39.9177], + [-91.4271, 39.939], + [-91.4929, 40.0309], + [-91.5115, 40.1292], + [-91.5049, 40.2375], + [-91.4658, 40.3334], + [-91.4204, 40.378], + [-91.3654, 40.3993], + [-91.3705, 40.5151], + [-91.391, 40.5345], + [-91.4131, 40.5471], + [-91.4057, 40.567], + [-91.3384, 40.611], + [-91.2591, 40.6358], + [-91.2032, 40.6369], + [-91.1373, 40.661], + [-91.113, 40.6883], + [-91.0894, 40.8235], + [-91.0043, 40.9049], + [-90.9645, 40.925], + [-90.9558, 40.9699], + [-90.9449, 41.0481], + [-90.9489, 41.0718], + [-90.9981, 41.1626], + [-91.0514, 41.1684], + [-91.1142, 41.2443], + [-91.0742, 41.3107], + [-91.0455, 41.4164], + [-90.9263, 41.424], + [-90.8494, 41.4539], + [-90.6613, 41.4598], + [-90.6077, 41.4958], + [-90.5726, 41.5173], + [-90.4934, 41.5182], + [-90.4524, 41.5308], + [-90.3932, 41.5759], + [-90.3427, 41.5948], + [-90.3444, 41.6502], + [-90.3184, 41.6944], + [-90.3165, 41.7124], + [-90.286, 41.765], + [-90.1904, 41.8046], + [-90.1525, 41.9127], + [-90.1482, 41.9902], + [-90.1606, 42.0418], + [-90.1671, 42.0726], + [-90.1638, 42.1185], + [-90.1984, 42.1301], + [-90.2081, 42.1528], + [-90.3641, 42.2091], + [-90.3849, 42.2225], + [-90.4216, 42.267], + [-90.4265, 42.2895], + [-90.4162, 42.3282], + [-90.4762, 42.3823], + [-90.6157, 42.4555], + [-90.6533, 42.48], + [-90.6513, 42.4981], + [-90.6363, 42.5146], + [-90.6347, 42.5241], + [-90.6635, 42.5587], + [-90.6858, 42.5984], + [-90.706, 42.6356], + [-90.9542, 42.6872], + [-91.0517, 42.7397], + [-91.0999, 42.875], + [-91.1444, 42.9104], + [-91.1756, 43.0415], + [-91.1765, 43.0915], + [-91.1755, 43.1374], + [-91.0621, 43.256], + [-91.1004, 43.3118], + [-91.2035, 43.3527], + [-91.199, 43.4015], + [-91.2227, 43.4769], + [-91.22, 43.5023], + [-93.2844, 43.5032], + [-93.6782, 43.5047], + [-95.113241361, 43.503614375], + [-95.6883, 43.5039], + [-96.4541, 43.5026], + [-96.4536, 45.2695], + [-96.4519, 45.3022], + [-96.5059, 45.3698], + [-96.6087, 45.4094], + [-96.6742, 45.4115], + [-96.7317, 45.4593], + [-96.7642, 45.5189], + [-96.8546, 45.6075], + [-96.8303, 45.6567], + [-96.6674, 45.735], + [-96.6313, 45.783], + [-96.5731, 45.8515], + [-96.5638, 45.9051], + [-96.5577, 45.9425], + [-96.5644, 45.9607], + [-96.5615, 46.0537], + [-96.5552, 46.0731], + [-96.563, 46.1155], + [-96.5688, 46.1333], + [-96.5785, 46.1478], + [-96.5977, 46.2226], + [-96.6022, 46.3298], + [-96.6682, 46.3794], + [-96.7376, 46.4801], + [-96.7563, 46.5763], + [-96.8026, 46.6564], + [-96.7856, 46.7146], + [-96.7821, 46.7225], + [-96.7872, 46.7251], + [-96.7855, 46.7329], + [-96.8008, 46.8155], + [-96.7667, 46.8804], + [-96.8206, 46.9694], + [-96.8175, 47.1102], + [-96.8435, 47.241], + [-96.8346, 47.3394], + [-96.8605, 47.4371], + [-96.855, 47.5047], + [-96.8533, 47.5112], + [-96.8448, 47.5147], + [-96.868, 47.5196], + [-96.8717, 47.5257], + [-96.8642, 47.5402], + [-96.8527, 47.5384], + [-96.8512, 47.5881], + [-96.8975, 47.6783], + [-97.0542, 47.9454], + [-97.0749, 48.0504], + [-97.1227, 48.1056], + [-97.149, 48.1833], + [-97.1206, 48.2796], + [-97.1286, 48.3389], + [-97.1606, 48.3935], + [-97.1268, 48.4545], + [-97.1571, 48.4747], + [-97.1712, 48.5572], + [-97.115, 48.6287], + [-97.0935, 48.684], + [-97.1533, 48.7544], + [-97.1788, 48.8741], + [-97.2128, 48.9061], + [-97.2348, 48.9952] + ] + ] + }, + "properties": { + "id": "6e783926-0564-4643-a1d0-ee6990e40de2", + "code": "GP", + "name": "Midwest-West North Central and Great Plains", + "abbreviation": "R-GP", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-105.76177659, 36.99698154], + [-105.1011, 36.9957], + [-105.0326, 36.9934], + [-104.3313, 36.993], + [-104.1849, 36.9958], + [-103.65304205, 36.997237454], + [-103.000899764, 36.998412581], + [-103.0009, 36.999], + [-102.7859, 36.9988], + [-102.4775, 36.9963], + [-102.042300012, 36.992205645], + [-102.0485, 40.0039], + [-102.0504, 41.0019], + [-102.6538, 41.0032], + [-104.0528, 41.0017], + [-104.0527, 43.002797942], + [-104.057099843, 44.998628693], + [-104.0571, 44.9987], + [-104.0397, 44.9986], + [-104.0443, 45.9438], + [-104.0445, 46.0979], + [-104.044522817, 46.122754864], + [-104.0455, 47.1872], + [-104.0414, 47.9112], + [-104.0448, 48.0005], + [-104.0496, 49], + [-104.0495976, 49], + [-104.0496, 49.0005], + [-116.0507, 49.0004], + [-117.0294, 48.9996], + [-117.0391, 48.5904], + [-117.0426, 48.0459], + [-117.0422, 47.3665], + [-117.038, 46.4288], + [-117.0605, 46.3629], + [-116.987, 46.2957], + [-116.9631, 46.2032], + [-116.9218, 46.1711], + [-116.9569, 46.0753], + [-116.9383, 46.0474], + [-116.92, 46.0146], + [-116.9101, 45.9902], + [-116.866, 45.9152], + [-116.789, 45.8586], + [-116.7614, 45.8166], + [-116.6935, 45.818], + [-116.6623, 45.7812], + [-116.5924, 45.7793], + [-116.5345, 45.7349], + [-116.5341, 45.6925], + [-116.4616, 45.6093], + [-116.5203, 45.5553], + [-116.5849, 45.4414], + [-116.667, 45.3271], + [-116.7284, 45.145], + [-116.8413, 45.0287], + [-116.833, 44.9386], + [-116.8552, 44.8816], + [-116.9352, 44.783], + [-117.0285, 44.7511], + [-117.1414, 44.57], + [-117.1473, 44.5352], + [-117.224, 44.4799], + [-117.213, 44.4282], + [-117.2402, 44.3893], + [-117.1896, 44.3309], + [-117.2181, 44.3018], + [-117.181, 44.2644], + [-117.0924, 44.2718], + [-117.052, 44.2329], + [-116.971, 44.2348], + [-116.9664, 44.1964], + [-116.8935, 44.1703], + [-116.9196, 44.1076], + [-116.9689, 44.0873], + [-116.936, 43.9916], + [-116.9728, 43.9678], + [-116.962, 43.9126], + [-116.9826, 43.8669], + [-117.0203, 43.8594], + [-117.0271, 43.8082], + [-117.0293, 42.0003], + [-115.2264, 41.9945], + [-114.8546, 42.0003], + [-114.5984, 41.9953], + [-114.044298938, 41.993413276], + [-113.8526, 41.9898], + [-112.9579, 41.999], + [-112.164, 42.0017], + [-112.156, 41.9981], + [-111.5833, 42.0042], + [-111.4479, 42.0012], + [-111.046989374, 42.000501202], + [-111.0456, 40.9978], + [-110.2764, 40.9963], + [-110.0001, 40.9992], + [-109.049, 41], + [-109.0538, 39.0135], + [-109.0596, 38.6727], + [-109.0607, 38.2768], + [-109.0409, 38.1603], + [-109.0437, 37.7536], + [-109.0449, 36.9986], + [-107.965, 36.9971], + [-107.4147, 36.9994], + [-106.8787, 36.999], + [-106.8717, 36.9923], + [-105.76177659, 36.99698154] + ] + ] + }, + "properties": { + "id": "1f30181c-ab24-4bfc-989c-162d4b17a83e", + "code": "MW", + "name": "Mountain West", + "abbreviation": "R-MW", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-73.6606, 40.9889], + [-73.6007, 41.0183], + [-73.5297, 41.0171], + [-73.3719, 41.1089], + [-73.262, 41.118], + [-73.1736, 41.1686], + [-73.1302, 41.1471], + [-73.0468, 41.2122], + [-73.014, 41.2048], + [-72.9156, 41.2967], + [-72.8936, 41.2419], + [-72.7861, 41.265], + [-72.5808, 41.2719], + [-72.5192, 41.2578], + [-72.4506, 41.2794], + [-72.3881, 41.2608], + [-72.3531, 41.3106], + [-72.3311, 41.2806], + [-72.2725, 41.2853], + [-72.1783, 41.3231], + [-72.0947, 41.3094], + [-71.9681, 41.3516], + [-71.8607, 41.3225], + [-71.8317, 41.3445], + [-71.8397, 41.3613], + [-71.8276, 41.3388], + [-71.852, 41.3097], + [-71.7147, 41.3305], + [-71.6159, 41.3638], + [-71.5295, 41.3769], + [-71.487, 41.3616], + [-71.4217, 41.4711], + [-71.4185, 41.5287], + [-71.4455, 41.5723], + [-71.4074, 41.5882], + [-71.4092, 41.6631], + [-71.3802, 41.7271], + [-71.393, 41.8179], + [-71.3377, 41.7248], + [-71.2799, 41.7415], + [-71.3071, 41.673], + [-71.2691, 41.6507], + [-71.227, 41.7183], + [-71.197, 41.7046], + [-71.2215, 41.5607], + [-71.176, 41.4589], + [-71.0942, 41.5032], + [-71.0547, 41.5512], + [-71.0361, 41.483], + [-70.9506, 41.5168], + [-70.9152, 41.6219], + [-70.8004, 41.6302], + [-70.7566, 41.6532], + [-70.7652, 41.7109], + [-70.7216, 41.7359], + [-70.6512, 41.7143], + [-70.6378, 41.7367], + [-70.5797, 41.7533], + [-70.5639, 41.7711], + [-70.5439, 41.7772], + [-70.5136, 41.7736], + [-70.5147, 41.7886], + [-70.5367, 41.9208], + [-70.5844, 41.9515], + [-70.6468, 41.9503], + [-70.7106, 42.0014], + [-70.6372, 42.0836], + [-70.6778, 42.1233], + [-70.7206, 42.2072], + [-70.7677, 42.2511], + [-70.8547, 42.2678], + [-70.9669, 42.2453], + [-71.0453, 42.2944], + [-71.0436, 42.3231], + [-70.9764, 42.3708], + [-70.9814, 42.4259], + [-70.8947, 42.46], + [-70.8407, 42.5186], + [-70.8692, 42.5478], + [-70.6983, 42.5767], + [-70.5951, 42.6344], + [-70.63, 42.693], + [-70.7272, 42.6481], + [-70.7942, 42.75], + [-70.8269, 42.8875], + [-70.7108, 43.0425], + [-70.8106, 43.1178], + [-70.8531, 43.1172], + [-70.8331, 43.0603], + [-70.9167, 43.0558], + [-70.8656, 43.0892], + [-70.8592, 43.1333], + [-70.8175, 43.1236], + [-70.7367, 43.0744], + [-70.6644, 43.0764], + [-70.5753, 43.2219], + [-70.5889, 43.2631], + [-70.5153, 43.3454], + [-70.451, 43.3468], + [-70.3639, 43.4386], + [-70.3856, 43.4953], + [-70.3419, 43.54], + [-70.2728, 43.5625], + [-70.1972, 43.565], + [-70.2514, 43.6781], + [-70.1647, 43.7725], + [-69.9844, 43.8675], + [-69.9537, 43.849], + [-69.9778, 43.7867], + [-69.8886, 43.8834], + [-69.8454, 43.8048], + [-69.8761, 43.7936], + [-69.8517, 43.7031], + [-69.8031, 43.7442], + [-69.7909, 43.7904], + [-69.8112, 43.8358], + [-69.8092, 43.9256], + [-69.737, 43.9021], + [-69.6765, 43.9961], + [-69.6292, 44.017], + [-69.6643, 43.9651], + [-69.6606, 43.8836], + [-69.6307, 43.8373], + [-69.5589, 43.8922], + [-69.5022, 43.8389], + [-69.4196, 43.9798], + [-69.3464, 44.056], + [-69.3708, 43.9772], + [-69.3028, 43.978], + [-69.2569, 43.9228], + [-69.2135, 43.9361], + [-69.1649, 44.0027], + [-69.0732, 44.0462], + [-69.0528, 44.0848], + [-69.1069, 44.0907], + [-69.0605, 44.2071], + [-68.9539, 44.3239], + [-68.9475, 44.3536], + [-68.9939, 44.4214], + [-68.9214, 44.4572], + [-68.8603, 44.4461], + [-68.7783, 44.4922], + [-68.8161, 44.4281], + [-68.8278, 44.3119], + [-68.7594, 44.3317], + [-68.6056, 44.2758], + [-68.5228, 44.2283], + [-68.5203, 44.2664], + [-68.5636, 44.3081], + [-68.545, 44.3556], + [-68.5678, 44.3856], + [-68.4975, 44.4167], + [-68.4675, 44.4936], + [-68.4375, 44.4825], + [-68.4281, 44.3964], + [-68.3225, 44.4628], + [-68.2833, 44.4517], + [-68.2689, 44.5043], + [-68.23, 44.4631], + [-68.2117, 44.5197], + [-68.1711, 44.4697], + [-68.12, 44.4575], + [-68.1144, 44.4075], + [-68.0764, 44.3472], + [-68.0456, 44.3384], + [-68.0126, 44.4036], + [-67.96, 44.3978], + [-67.9928, 44.46], + [-67.9022, 44.3956], + [-67.8542, 44.4789], + [-67.8525, 44.5589], + [-67.7992, 44.5697], + [-67.7807, 44.5222], + [-67.7533, 44.6017], + [-67.7428, 44.4967], + [-67.6434, 44.5659], + [-67.6355, 44.5285], + [-67.5715, 44.5295], + [-67.5514, 44.6553], + [-67.459, 44.5959], + [-67.396, 44.6021], + [-67.3619, 44.6351], + [-67.39, 44.6957], + [-67.3061, 44.7087], + [-67.3128, 44.6597], + [-67.2344, 44.6367], + [-67.189, 44.6442], + [-67.0735, 44.7409], + [-66.979, 44.8056], + [-67.0183, 44.8861], + [-67.0772, 44.8767], + [-67.1516, 44.8217], + [-67.1496, 44.8623], + [-67.2044, 44.9067], + [-67.0884, 44.918], + [-67.0319, 44.9389], + [-67.1086, 45.0592], + [-67.1147, 45.0975], + [-67.1633, 45.1583], + [-67.2808, 45.1917], + [-67.3022, 45.1451], + [-67.3816, 45.1521], + [-67.4663, 45.2477], + [-67.4776, 45.2873], + [-67.4215, 45.3763], + [-67.474, 45.4237], + [-67.4876, 45.4897], + [-67.4516, 45.5111], + [-67.4257, 45.5785], + [-67.4566, 45.6053], + [-67.5302, 45.5983], + [-67.6736, 45.6278], + [-67.7091, 45.6793], + [-67.7593, 45.6712], + [-67.8029, 45.696], + [-67.7825, 45.7309], + [-67.8034, 45.7982], + [-67.7651, 45.8207], + [-67.8027, 45.8737], + [-67.7549, 45.9149], + [-67.781, 45.9457], + [-67.7839, 46.6017], + [-67.7836, 47.0632], + [-67.8893, 47.1106], + [-67.958, 47.2003], + [-68.2438, 47.3526], + [-68.3698, 47.3517], + [-68.3805, 47.2874], + [-68.4752, 47.297], + [-68.5804, 47.2869], + [-68.6124, 47.246], + [-68.6893, 47.2428], + [-68.8158, 47.2119], + [-68.8975, 47.1766], + [-69.0405, 47.2439], + [-69.0547, 47.3146], + [-69.0443, 47.4028], + [-69.1786, 47.4569], + [-69.2218, 47.4576], + [-69.392, 47.2984], + [-69.9971, 46.6958], + [-70.0572, 46.4147], + [-70.0953, 46.4081], + [-70.1473, 46.3589], + [-70.1953, 46.3434], + [-70.292, 46.1909], + [-70.242, 46.1502], + [-70.283, 46.0999], + [-70.3142, 46.0208], + [-70.3144, 45.9665], + [-70.2602, 45.9644], + [-70.2663, 45.8849], + [-70.3455, 45.8508], + [-70.4162, 45.7956], + [-70.3902, 45.7328], + [-70.5613, 45.6627], + [-70.6459, 45.6041], + [-70.7184, 45.5127], + [-70.626, 45.4018], + [-70.6572, 45.3772], + [-70.7545, 45.4277], + [-70.8233, 45.403], + [-70.8066, 45.3211], + [-70.8445, 45.2447], + [-70.8929, 45.2439], + [-70.9234, 45.3181], + [-70.9566, 45.3426], + [-71.0997, 45.3023], + [-71.1623, 45.2469], + [-71.23, 45.2503], + [-71.2839, 45.3023], + [-71.3603, 45.2686], + [-71.4132, 45.2202], + [-71.4342, 45.1202], + [-71.4847, 45.0809], + [-71.511, 45.0134], + [-72.3084, 45.0037], + [-72.6318, 45.014], + [-73.0908, 45.0153], + [-73.3442, 45.0103], + [-73.3411, 44.9199], + [-73.3813, 44.837], + [-73.3369, 44.7839], + [-73.3645, 44.7409], + [-73.3889, 44.6335], + [-73.3812, 44.5893], + [-73.2998, 44.4804], + [-73.2947, 44.4384], + [-73.3374, 44.3638], + [-73.3163, 44.2541], + [-73.3927, 44.1912], + [-73.4434, 44.0526], + [-73.4107, 44.0189], + [-73.4101, 43.9351], + [-73.3783, 43.8758], + [-73.3933, 43.8209], + [-73.356, 43.7651], + [-73.4317, 43.6439], + [-73.4302, 43.5834], + [-73.386, 43.5812], + [-73.3751, 43.6233], + [-73.3056, 43.627], + [-73.2975, 43.5793], + [-73.2581, 43.5617], + [-73.2506, 43.5108], + [-73.2789, 42.8337], + [-73.2754, 42.7456], + [-73.2675, 42.7452], + [-73.4822, 42.1648], + [-73.5084, 42.0858], + [-73.4981, 42.0496], + [-73.4923, 41.9865], + [-73.5523, 41.2933], + [-73.4838, 41.2136], + [-73.7297, 41.1009], + [-73.657, 41.0119], + [-73.6606, 40.9889] + ] + ], + [ + [ + [-70.1936, 42.0808], + [-70.2331, 42.0597], + [-70.1958, 42.0214], + [-70.1683, 42.06], + [-70.1127, 42.0461], + [-70.0789, 41.9928], + [-70.0719, 41.8981], + [-70.0239, 41.9303], + [-70.0067, 41.8056], + [-70.0528, 41.7761], + [-70.2175, 41.7433], + [-70.2603, 41.7123], + [-70.2892, 41.7347], + [-70.4139, 41.7444], + [-70.4961, 41.7753], + [-70.5064, 41.7714], + [-70.5478, 41.7756], + [-70.5631, 41.7689], + [-70.5761, 41.7536], + [-70.5908, 41.7458], + [-70.6183, 41.74], + [-70.615, 41.6575], + [-70.6502, 41.6456], + [-70.6346, 41.5382], + [-70.5489, 41.5506], + [-70.5267, 41.5792], + [-70.4839, 41.5546], + [-70.4322, 41.6206], + [-70.3992, 41.6064], + [-70.3392, 41.6372], + [-70.1386, 41.6504], + [-70.0122, 41.6731], + [-69.9633, 41.6531], + [-69.9454, 41.7036], + [-69.9778, 41.7216], + [-69.9653, 41.7742], + [-69.9289, 41.7547], + [-69.9783, 41.9364], + [-70.0664, 42.0453], + [-70.1936, 42.0808] + ] + ], + [ + [ + [-68.3097, 44.4431], + [-68.3694, 44.4208], + [-68.4317, 44.3097], + [-68.4072, 44.2581], + [-68.3397, 44.2222], + [-68.2905, 44.2495], + [-68.2944, 44.2867], + [-68.2306, 44.2875], + [-68.1731, 44.3281], + [-68.1856, 44.3706], + [-68.3097, 44.4431] + ] + ], + [ + [ + [-70.5974, 41.4797], + [-70.6591, 41.4605], + [-70.7744, 41.3497], + [-70.8377, 41.3455], + [-70.7699, 41.3024], + [-70.7344, 41.3372], + [-70.6413, 41.3494], + [-70.4508, 41.3487], + [-70.4641, 41.4019], + [-70.4971, 41.3841], + [-70.568, 41.4186], + [-70.5974, 41.4797] + ] + ], + [ + [ + [-70.0458, 41.3897], + [-70.0039, 41.3231], + [-70.0797, 41.2819], + [-70.1972, 41.2967], + [-70.2122, 41.2725], + [-70.1017, 41.2406], + [-69.9719, 41.2469], + [-69.9722, 41.2992], + [-70.0458, 41.3897] + ] + ], + [ + [ + [-71.2438, 41.4995], + [-71.2397, 41.617], + [-71.2747, 41.6207], + [-71.3235, 41.515], + [-71.2966, 41.4841], + [-71.2438, 41.4995] + ] + ], + [ + [ + [-68.6578, 44.2694], + [-68.7086, 44.2272], + [-68.7119, 44.1681], + [-68.6464, 44.1558], + [-68.6589, 44.2111], + [-68.6078, 44.2408], + [-68.6578, 44.2694] + ] + ], + [ + [ + [-69.7508, 43.8706], + [-69.7831, 43.7961], + [-69.7575, 43.7511], + [-69.7074, 43.828], + [-69.7508, 43.8706] + ] + ], + [ + [ + [-68.8672, 44.1204], + [-68.8853, 44.0856], + [-68.8178, 44.0317], + [-68.7806, 44.085], + [-68.8297, 44.0814], + [-68.8672, 44.1204] + ] + ], + [ + [ + [-71.576, 41.2305], + [-71.6129, 41.1569], + [-71.5501, 41.1519], + [-71.576, 41.2305] + ] + ], + [ + [ + [-68.615, 44.0875], + [-68.6517, 44.065], + [-68.6611, 44.0172], + [-68.6042, 44.0386], + [-68.615, 44.0875] + ] + ], + [ + [ + [-70.7117, 41.5142], + [-70.802, 41.4667], + [-70.7908, 41.4458], + [-70.7063, 41.4968], + [-70.7117, 41.5142] + ] + ], + [ + [ + [-68.8214, 44.1833], + [-68.9175, 44.1481], + [-68.8597, 44.1261], + [-68.8214, 44.1833] + ] + ], + [ + [ + [-69.6693, 43.9591], + [-69.7314, 43.8903], + [-69.6994, 43.8722], + [-69.6693, 43.9591] + ] + ], + [ + [ + [-69.7958, 43.9044], + [-69.7889, 43.8122], + [-69.7619, 43.8862], + [-69.7958, 43.9044] + ] + ], + [ + [ + [-68.4083, 44.1783], + [-68.4611, 44.1597], + [-68.4203, 44.1278], + [-68.4083, 44.1783] + ] + ], + [ + [ + [-68.4969, 44.365], + [-68.5331, 44.3306], + [-68.48, 44.3172], + [-68.4969, 44.365] + ] + ] + ] + }, + "properties": { + "id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5", + "code": "NE", + "name": "New England", + "abbreviation": "R-NE", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-170.680638631, -14.282476107], + [-170.567497197, -14.269325997], + [-170.672442928, -14.241035743], + [-170.732063743, -14.282688197], + [-170.82071228, -14.300050544], + [-170.759218852, -14.373241822], + [-170.702067693, -14.326775719], + [-170.680638631, -14.282476107] + ] + ], + [ + [ + [-169.420166016, -14.234145385], + [-169.501431552, -14.216898051], + [-169.491531372, -14.271703856], + [-169.420166016, -14.234145385] + ] + ] + ] + }, + "properties": { + "id": "a53380c2-83da-4713-bc27-3e3310ebb65e", + "code": "PI", + "name": "Other Pacific Islands", + "abbreviation": "R-PI", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-66.022087096, 17.977361679], + [-65.914024352, 17.975973129], + [-65.830139159, 18.019027711], + [-65.761253, 18.154585], + [-65.725418, 18.188194], + [-65.604584, 18.210417], + [-65.62764, 18.259306], + [-65.619308, 18.365973], + [-65.666527, 18.361805], + [-65.814857483, 18.409305572], + [-65.904861, 18.453194], + [-66.005142212, 18.44430542], + [-66.185974001, 18.46986], + [-66.284584046, 18.471248627], + [-66.397636414, 18.49319458], + [-66.452919007, 18.469305038], + [-66.622642518, 18.494026184], + [-66.702079773, 18.474027635], + [-66.781806946, 18.491804123], + [-66.9118042, 18.48374939], + [-67.016807556, 18.510971069], + [-67.090698243, 18.515972138], + [-67.169303894, 18.480138779], + [-67.163749696, 18.411804199], + [-67.270416259, 18.366527557], + [-67.235137939, 18.299304962], + [-67.195419312, 18.290138245], + [-67.153198, 18.204306], + [-67.185417, 18.165974], + [-67.181808, 18.112638], + [-67.215416, 17.982916], + [-67.105698, 17.945415], + [-67.062363, 17.973747], + [-66.987915, 17.970415], + [-66.953751, 17.932362], + [-66.838470459, 17.949306489], + [-66.770141602, 18.005973817], + [-66.672363, 17.965973], + [-66.578476, 17.961529], + [-66.459305, 17.989584], + [-66.392082, 17.946529], + [-66.317085, 17.977083], + [-66.237083, 17.926527], + [-66.206802, 17.962641], + [-66.15486145, 17.929304122], + [-66.022087096, 17.977361679] + ] + ], + [ + [ + [-64.664306641, 17.714860916], + [-64.580696, 17.747357999], + [-64.655135999, 17.763472], + [-64.709587098, 17.747083663], + [-64.747642517, 17.783750534], + [-64.894584655, 17.747358323], + [-64.883193971, 17.685693741], + [-64.740417, 17.695972], + [-64.664306641, 17.714860916] + ] + ], + [ + [ + [-65.390976, 18.161806], + [-65.57708, 18.119583], + [-65.542641, 18.080973], + [-65.423195, 18.095972], + [-65.363747, 18.130138], + [-65.27597, 18.131805], + [-65.390976, 18.161806] + ] + ], + [ + [ + [-64.888191, 18.35486], + [-64.963752999, 18.372084001], + [-65.027359, 18.362919], + [-64.905975, 18.310141], + [-64.840698, 18.317638], + [-64.888191, 18.35486] + ] + ], + [ + [ + [-67.859863, 18.121248001], + [-67.912086, 18.120419], + [-67.945968999, 18.084028001], + [-67.897362001, 18.052360999], + [-67.845139, 18.081246999], + [-67.859863, 18.121248001] + ] + ], + [ + [ + [-65.337082, 18.349028], + [-65.282639, 18.280416], + [-65.272636, 18.331249], + [-65.337082, 18.349028] + ] + ], + [ + [ + [-64.762916565, 18.321527481], + [-64.699585, 18.303749], + [-64.744026, 18.365973], + [-64.762916565, 18.321527481] + ] + ] + ] + }, + "properties": { + "id": "935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3", + "code": "PR", + "name": "Puerto Rico and US Virgin Islands", + "abbreviation": "R-PR", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-102.042300012, 36.992205645], + [-102.4775, 36.9963], + [-102.7859, 36.9988], + [-103.0009, 36.999], + [-103.000899764, 36.998412581], + [-103.0007, 36.5013], + [-103.0408, 36.5005], + [-103.0426, 34.9535], + [-103.0427, 34.0007], + [-103.0632, 33.0017], + [-103.0642, 31.9996], + [-104.7467, 32.0032], + [-105.2534, 32.0017], + [-106.6193, 32.0012], + [-106.6143, 31.9535], + [-106.636, 31.8694], + [-106.5706, 31.8102], + [-106.5508, 31.8118], + [-106.4904, 31.7486], + [-106.4507, 31.7642], + [-106.3816, 31.7324], + [-106.3032, 31.6218], + [-106.2811, 31.5626], + [-106.2471, 31.5425], + [-106.2196, 31.4815], + [-106.0802, 31.3985], + [-106.0048, 31.3927], + [-105.9541, 31.3645], + [-105.9325, 31.3127], + [-105.8749, 31.2912], + [-105.7726, 31.1662], + [-105.6485, 31.1155], + [-105.6041, 31.0833], + [-105.5576, 30.99], + [-105.4162, 30.9003], + [-105.3877, 30.8537], + [-105.2504, 30.799], + [-105.2155, 30.8058], + [-105.1617, 30.7524], + [-105.1188, 30.7497], + [-105.0546, 30.6821], + [-105.0069, 30.6858], + [-104.9717, 30.61], + [-104.927, 30.6046], + [-104.8736, 30.5135], + [-104.8592, 30.3904], + [-104.8166, 30.3751], + [-104.8113, 30.3327], + [-104.7605, 30.2959], + [-104.6873, 30.1799], + [-104.6862, 30.0848], + [-104.7066, 30.0506], + [-104.6769, 29.9124], + [-104.6157, 29.8464], + [-104.5506, 29.7391], + [-104.5159, 29.641], + [-104.3845, 29.5422], + [-104.2645, 29.5127], + [-104.2091, 29.4814], + [-104.1679, 29.3955], + [-104.1078, 29.3736], + [-104.0379, 29.3199], + [-103.9762, 29.2967], + [-103.7833, 29.2655], + [-103.7186, 29.1809], + [-103.5504, 29.1545], + [-103.4289, 29.0421], + [-103.3865, 29.0214], + [-103.154, 28.9714], + [-103.1139, 28.9868], + [-103.1007, 29.0603], + [-103.0338, 29.1012], + [-102.9786, 29.1862], + [-102.9504, 29.1783], + [-102.8674, 29.2237], + [-102.9059, 29.2615], + [-102.8775, 29.3546], + [-102.8392, 29.3589], + [-102.8083, 29.5226], + [-102.7402, 29.5979], + [-102.7362, 29.6417], + [-102.6933, 29.6767], + [-102.6741, 29.7445], + [-102.548, 29.7446], + [-102.5174, 29.7838], + [-102.4071, 29.7642], + [-102.3415, 29.8694], + [-102.3008, 29.8777], + [-102.116, 29.7919], + [-102.0727, 29.7866], + [-101.9817, 29.815], + [-101.9337, 29.7855], + [-101.8562, 29.807], + [-101.7101, 29.7618], + [-101.5749, 29.7693], + [-101.5395, 29.7606], + [-101.4534, 29.7847], + [-101.3477, 29.662], + [-101.3057, 29.6542], + [-101.3133, 29.6038], + [-101.2479, 29.6195], + [-101.2541, 29.5208], + [-101.1856, 29.518], + [-101.1476, 29.4745], + [-101.0601, 29.4585], + [-101.0047, 29.3653], + [-100.8862, 29.3074], + [-100.8803, 29.2827], + [-100.7943, 29.2421], + [-100.7761, 29.1727], + [-100.6644, 29.0747], + [-100.6454, 28.9399], + [-100.5476, 28.8262], + [-100.5074, 28.7402], + [-100.4973, 28.6587], + [-100.3985, 28.5851], + [-100.411, 28.5498], + [-100.3407, 28.4488], + [-100.3427, 28.3864], + [-100.2866, 28.3122], + [-100.2942, 28.2836], + [-100.2095, 28.1913], + [-100.0862, 28.1462], + [-100.0182, 28.0657], + [-99.9905, 27.9936], + [-99.9315, 27.9803], + [-99.9373, 27.9409], + [-99.8937, 27.8998], + [-99.8708, 27.794], + [-99.808, 27.7653], + [-99.7226, 27.6674], + [-99.6034, 27.6419], + [-99.5115, 27.5641], + [-99.5282, 27.4982], + [-99.4788, 27.4795], + [-99.5045, 27.3388], + [-99.4966, 27.2729], + [-99.4418, 27.2508], + [-99.4262, 27.1761], + [-99.4453, 27.0218], + [-99.3813, 26.9793], + [-99.3747, 26.9324], + [-99.3285, 26.9195], + [-99.3152, 26.8674], + [-99.282, 26.8588], + [-99.209, 26.7247], + [-99.1729, 26.6166], + [-99.1669, 26.536], + [-99.1284, 26.5255], + [-99.0916, 26.4756], + [-99.1132, 26.4312], + [-99.0868, 26.4014], + [-99.0411, 26.4125], + [-98.8803, 26.3662], + [-98.7996, 26.3635], + [-98.738, 26.3253], + [-98.7146, 26.27], + [-98.4426, 26.1989], + [-98.3216, 26.1183], + [-98.2821, 26.1263], + [-98.249, 26.0721], + [-98.1768, 26.0753], + [-98.1432, 26.0541], + [-98.0622, 26.0463], + [-97.8083, 26.0609], + [-97.7911, 26.0336], + [-97.7032, 26.0321], + [-97.6381, 26.0021], + [-97.5407, 25.9313], + [-97.523, 25.8882], + [-97.469, 25.8889], + [-97.4426, 25.8484], + [-97.3951, 25.8385], + [-97.3629, 25.8675], + [-97.3697, 25.9165], + [-97.2808, 25.9353], + [-97.2157, 25.9701], + [-97.196, 26.0465], + [-97.2071, 26.0793], + [-97.2729, 26.0876], + [-97.3001, 26.1432], + [-97.2979, 26.2546], + [-97.3443, 26.2676], + [-97.3579, 26.3376], + [-97.3276, 26.3574], + [-97.4074, 26.4796], + [-97.4679, 26.7096], + [-97.4782, 26.8054], + [-97.5529, 26.8421], + [-97.5504, 26.8963], + [-97.4693, 26.8412], + [-97.4565, 26.9424], + [-97.5076, 26.9068], + [-97.5549, 26.9387], + [-97.5385, 26.9874], + [-97.4518, 26.984], + [-97.4686, 27.0697], + [-97.4483, 27.0914], + [-97.4222, 27.262], + [-97.5432, 27.229], + [-97.6311, 27.2425], + [-97.6922, 27.3348], + [-97.5678, 27.3178], + [-97.4866, 27.3845], + [-97.4786, 27.2994], + [-97.4116, 27.3226], + [-97.3701, 27.4077], + [-97.3454, 27.5079], + [-97.2554, 27.6921], + [-97.333, 27.7196], + [-97.3882, 27.7701], + [-97.3781, 27.8361], + [-97.4786, 27.8253], + [-97.4795, 27.8601], + [-97.4008, 27.8764], + [-97.2468, 27.8733], + [-97.1919, 27.8208], + [-97.1297, 27.9171], + [-97.0253, 28.0322], + [-97.0609, 28.088], + [-97.135, 28.0475], + [-97.2033, 28.0678], + [-97.1719, 28.1214], + [-97.0324, 28.1881], + [-96.9842, 28.1275], + [-96.9122, 28.1264], + [-96.8314, 28.1983], + [-96.7873, 28.2556], + [-96.8097, 28.29], + [-96.7953, 28.3646], + [-96.8594, 28.4142], + [-96.8375, 28.4325], + [-96.7832, 28.4004], + [-96.7536, 28.4351], + [-96.7073, 28.4056], + [-96.7044, 28.3473], + [-96.6541, 28.3262], + [-96.433, 28.4283], + [-96.4053, 28.4543], + [-96.5674, 28.5828], + [-96.6129, 28.5682], + [-96.6112, 28.6367], + [-96.6648, 28.6967], + [-96.5861, 28.725], + [-96.5631, 28.6378], + [-96.509, 28.6405], + [-96.4841, 28.6085], + [-96.4196, 28.6479], + [-96.4356, 28.7381], + [-96.3978, 28.7371], + [-96.3955, 28.6806], + [-96.3611, 28.6267], + [-96.3042, 28.6459], + [-96.2872, 28.6836], + [-96.1817, 28.7072], + [-96.2313, 28.644], + [-96.2114, 28.6144], + [-96.1569, 28.6117], + [-96.0297, 28.6529], + [-95.9797, 28.6367], + [-96.0356, 28.5844], + [-96.1444, 28.5444], + [-96.3353, 28.4381], + [-96.3186, 28.4231], + [-96.2253, 28.4881], + [-96.0886, 28.5536], + [-95.8684, 28.6394], + [-95.6614, 28.7445], + [-95.7868, 28.6959], + [-95.8947, 28.6408], + [-95.9608, 28.6253], + [-95.9271, 28.6997], + [-95.7864, 28.7486], + [-95.6542, 28.7503], + [-95.4397, 28.86], + [-95.3853, 28.8672], + [-95.2183, 29.0052], + [-95.1495, 29.1802], + [-95.1003, 29.1759], + [-95.0358, 29.2133], + [-94.9397, 29.3203], + [-94.8692, 29.28], + [-94.9258, 29.2528], + [-95.0451, 29.1376], + [-94.8237, 29.2668], + [-94.7253, 29.3331], + [-94.8702, 29.2904], + [-94.9074, 29.3399], + [-94.8663, 29.374], + [-94.8913, 29.4338], + [-94.9536, 29.4723], + [-95.0167, 29.5569], + [-94.9822, 29.6022], + [-95.0155, 29.6385], + [-94.981, 29.6765], + [-95.0535, 29.7067], + [-95.0994, 29.7841], + [-95.0683, 29.8136], + [-95.0175, 29.7172], + [-94.9358, 29.6928], + [-94.9097, 29.6549], + [-94.871, 29.6729], + [-94.8475, 29.7253], + [-94.7974, 29.7668], + [-94.7306, 29.7767], + [-94.6951, 29.7449], + [-94.7, 29.6429], + [-94.7638, 29.5243], + [-94.5511, 29.5743], + [-94.5122, 29.5164], + [-94.6816, 29.4538], + [-94.7674, 29.3865], + [-94.7294, 29.3699], + [-94.6598, 29.4381], + [-94.5058, 29.5054], + [-94.1188, 29.6527], + [-93.9725, 29.6829], + [-93.8385, 29.6778], + [-93.8133, 29.7091], + [-93.6872, 29.7459], + [-93.4987, 29.7686], + [-93.3467, 29.7617], + [-93.276, 29.7763], + [-93.1717, 29.7688], + [-93.0427, 29.7387], + [-92.9242, 29.6986], + [-92.7361, 29.6181], + [-92.6236, 29.585], + [-92.4619, 29.5608], + [-92.3453, 29.5342], + [-92.2539, 29.5397], + [-92.1496, 29.5846], + [-92.0462, 29.5845], + [-92.1073, 29.6127], + [-92.1366, 29.6672], + [-92.2157, 29.7485], + [-92.1388, 29.7843], + [-92.1108, 29.7422], + [-92.0381, 29.7811], + [-91.8856, 29.8358], + [-91.8255, 29.8239], + [-91.8775, 29.7475], + [-91.8575, 29.7053], + [-91.7716, 29.7464], + [-91.6333, 29.7431], + [-91.6169, 29.7103], + [-91.6245, 29.6285], + [-91.5522, 29.6335], + [-91.5333, 29.5278], + [-91.4316, 29.5416], + [-91.4142, 29.4967], + [-91.3567, 29.5158], + [-91.3385, 29.4903], + [-91.2658, 29.4786], + [-91.2197, 29.4367], + [-91.1994, 29.375], + [-91.1336, 29.3414], + [-91.1192, 29.3056], + [-91.1361, 29.2331], + [-91.0625, 29.1833], + [-91.0342, 29.2229], + [-91.0109, 29.1748], + [-90.9713, 29.1998], + [-90.8783, 29.1364], + [-90.8079, 29.187], + [-90.7697, 29.1808], + [-90.7853, 29.1325], + [-90.7261, 29.1461], + [-90.6936, 29.2211], + [-90.6261, 29.2592], + [-90.585, 29.3186], + [-90.4792, 29.2911], + [-90.4301, 29.348], + [-90.3776, 29.2914], + [-90.3394, 29.3264], + [-90.2987, 29.2575], + [-90.2207, 29.0865], + [-90.0839, 29.1672], + [-90.1283, 29.2953], + [-90.1303, 29.3739], + [-90.0503, 29.3172], + [-90.03, 29.3811], + [-90.08, 29.4481], + [-90.1822, 29.4664], + [-90.2292, 29.5075], + [-90.2094, 29.5631], + [-90.1672, 29.5792], + [-89.9797, 29.4578], + [-89.9286, 29.4619], + [-89.9233, 29.4975], + [-89.8364, 29.475], + [-89.8369, 29.4186], + [-89.7761, 29.4017], + [-89.6916, 29.467], + [-89.6572, 29.4056], + [-89.5061, 29.3306], + [-89.4764, 29.295], + [-89.4878, 29.2318], + [-89.4475, 29.1819], + [-89.4225, 29.2106], + [-89.3581, 29.2036], + [-89.2997, 29.2197], + [-89.2711, 29.1672], + [-89.2844, 29.0875], + [-89.2536, 29.1014], + [-89.2117, 29.0406], + [-89.1639, 29.0286], + [-89.1125, 29.0825], + [-89.1208, 29.1194], + [-89.0567, 29.1064], + [-89.1144, 29.1578], + [-89.0975, 29.1881], + [-89.1544, 29.2292], + [-89.1389, 29.2858], + [-89.1744, 29.3214], + [-89.2442, 29.3117], + [-89.2664, 29.2517], + [-89.3244, 29.2678], + [-89.3217, 29.3007], + [-89.2542, 29.3311], + [-89.2922, 29.3669], + [-89.3475, 29.3309], + [-89.4703, 29.4014], + [-89.5617, 29.3933], + [-89.5364, 29.4458], + [-89.5922, 29.4867], + [-89.6308, 29.4833], + [-89.7622, 29.6292], + [-89.6928, 29.6133], + [-89.6219, 29.6597], + [-89.5569, 29.6608], + [-89.6494, 29.7131], + [-89.6408, 29.7675], + [-89.495, 29.7278], + [-89.3936, 29.7906], + [-89.445, 29.8864], + [-89.4464, 29.9539], + [-89.4731, 29.9722], + [-89.4414, 30.0397], + [-89.4878, 30.0414], + [-89.5564, 30], + [-89.5908, 29.8853], + [-89.6544, 29.8611], + [-89.7833, 29.9342], + [-89.8392, 29.9431], + [-89.86, 30.0011], + [-89.8192, 30.0447], + [-89.7269, 30.0636], + [-89.6228, 30.1569], + [-89.4919, 30.1828], + [-89.4194, 30.2317], + [-89.4206, 30.2533], + [-89.3392, 30.2961], + [-89.3619, 30.3447], + [-89.3131, 30.3755], + [-89.2688, 30.3418], + [-89.2919, 30.3039], + [-89.0044, 30.3875], + [-88.8419, 30.4092], + [-88.7479, 30.3485], + [-88.693, 30.3473], + [-88.57, 30.4003], + [-88.5653, 30.3441], + [-88.4794, 30.3186], + [-88.4092, 30.3694], + [-88.3971, 30.3491], + [-88.3994, 30.395], + [-88.4101, 30.7033], + [-88.4507, 31.444], + [-88.472, 31.9], + [-88.4262, 32.262], + [-88.2474, 33.7499], + [-88.2067, 34.0458], + [-88.1535, 34.4881], + [-88.098, 34.8964], + [-88.1525, 34.9269], + [-88.1883, 34.9793], + [-88.1996, 34.9978], + [-88.199696512, 34.997799817], + [-88.78657705, 34.996688], + [-89.069158116, 34.996152664], + [-90.3098, 34.9966], + [-90.3108, 35.0015], + [-90.2937, 35.0371], + [-90.2157, 35.027], + [-90.1792, 35.1168], + [-90.1604, 35.132], + [-90.0978, 35.1196], + [-90.1151, 35.1977], + [-90.0741, 35.2189], + [-90.1039, 35.2554], + [-90.1518, 35.2558], + [-90.1564, 35.3012], + [-90.1083, 35.309], + [-90.0751, 35.3847], + [-90.1261, 35.4158], + [-90.1383, 35.3795], + [-90.1504, 35.3745], + [-90.1709, 35.4187], + [-90.0991, 35.4804], + [-90.0716, 35.4109], + [-90.0541, 35.3893], + [-90.0191, 35.469], + [-90.0491, 35.5113], + [-90.0362, 35.5515], + [-89.988, 35.5594], + [-89.9101, 35.5196], + [-89.906, 35.5331], + [-89.9439, 35.5624], + [-89.9414, 35.6023], + [-89.8622, 35.6322], + [-89.9565, 35.695], + [-89.9527, 35.738], + [-89.8186, 35.7568], + [-89.7937, 35.7948], + [-89.7065, 35.8172], + [-89.7624, 35.8569], + [-89.7677, 35.8896], + [-89.7132, 35.9061], + [-89.6656, 35.8834], + [-89.6587, 35.9271], + [-89.7162, 35.9625], + [-89.7169, 36.0015], + [-90.0008, 35.9984], + [-90.2574, 35.9975], + [-90.3773, 35.9951], + [-90.2905, 36.115], + [-90.2384, 36.1382], + [-90.2217, 36.1811], + [-90.1284, 36.2305], + [-90.068, 36.2978], + [-90.0669, 36.3862], + [-90.1441, 36.4231], + [-90.1536, 36.4963], + [-91.758, 36.4985], + [-92.256, 36.4965], + [-93.3653, 36.4968], + [-94.1651, 36.4996], + [-94.6182, 36.4984], + [-94.6196, 36.7664], + [-94.619, 37], + [-95.0336, 36.9986], + [-95.5236, 37.0009], + [-97.1468, 36.9994], + [-99.0005, 37.0008], + [-100.0902, 36.9983], + [-100.9441, 36.9988], + [-102.041933879, 36.9922022], + [-102.042300011, 36.992205645], + [-102.042300012, 36.992205645] + ] + ], + [ + [ + [-97.2896, 26.599], + [-97.3613, 26.8482], + [-97.3793, 26.9982], + [-97.365, 27.205], + [-97.3358, 27.3225], + [-97.2814, 27.4628], + [-97.1575, 27.6934], + [-97.0475, 27.8336], + [-97.1003, 27.8175], + [-97.2314, 27.6317], + [-97.2672, 27.5406], + [-97.3606, 27.3664], + [-97.3556, 27.3111], + [-97.3831, 27.2614], + [-97.395, 27.1219], + [-97.3862, 27.0853], + [-97.3924, 26.8874], + [-97.3529, 26.7321], + [-97.2896, 26.599] + ] + ], + [ + [ + [-91.8983, 29.6336], + [-91.9825, 29.6147], + [-92.0263, 29.5674], + [-91.847, 29.4799], + [-91.7672, 29.4894], + [-91.7583, 29.5578], + [-91.7844, 29.5944], + [-91.8983, 29.6336] + ] + ], + [ + [ + [-96.4067, 28.3969], + [-96.4555, 28.3358], + [-96.5431, 28.315], + [-96.6342, 28.2606], + [-96.7035, 28.1985], + [-96.7919, 28.1886], + [-96.8488, 28.0646], + [-96.7028, 28.1773], + [-96.5895, 28.2492], + [-96.4439, 28.3153], + [-96.4077, 28.3437], + [-96.4067, 28.3969] + ] + ], + [ + [ + [-91.2389, 29.3522], + [-91.3342, 29.2995], + [-91.2792, 29.2494], + [-91.1367, 29.2172], + [-91.1364, 29.25], + [-91.2389, 29.3522] + ] + ], + [ + [ + [-97.0484, 27.8415], + [-96.9731, 27.9444], + [-96.8492, 28.0703], + [-96.8435, 28.1087], + [-96.9258, 28.0878], + [-96.9678, 27.9869], + [-97.0379, 27.9038], + [-97.0484, 27.8415] + ] + ], + [ + [ + [-97.2613, 26.4287], + [-97.319, 26.5376], + [-97.3362, 26.5076], + [-97.279, 26.4343], + [-97.1971, 26.2499], + [-97.1901, 26.2729], + [-97.2251, 26.4065], + [-97.2613, 26.4287] + ] + ], + [ + [ + [-89.7019, 29.3817], + [-89.8139, 29.3136], + [-89.6836, 29.2938], + [-89.6394, 29.3483], + [-89.7064, 29.3411], + [-89.7019, 29.3817] + ] + ], + [ + [ + [-89.3781, 29.9089], + [-89.4167, 29.8689], + [-89.3578, 29.8511], + [-89.3781, 29.9089] + ] + ], + [ + [ + [-89.7006, 29.4431], + [-89.7275, 29.3892], + [-89.6772, 29.3997], + [-89.7006, 29.4431] + ] + ] + ] + }, + "properties": { + "id": "d6157b38-3f86-49ef-8acd-93287d33c0d0", + "code": "SC", + "name": "South Central", + "abbreviation": "R-SC", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-82.5928, 38.4186], + [-82.6115, 38.4718], + [-82.6521, 38.4912], + [-82.6853, 38.5305], + [-82.7243, 38.5581], + [-82.7806, 38.559], + [-82.823, 38.5743], + [-82.8556, 38.6128], + [-82.8784, 38.6911], + [-82.8699, 38.735], + [-82.884, 38.7523], + [-82.9254, 38.7474], + [-82.9665, 38.728], + [-83.0137, 38.7296], + [-83.1109, 38.6708], + [-83.1519, 38.6206], + [-83.2468, 38.6278], + [-83.287, 38.5998], + [-83.33, 38.6386], + [-83.5393, 38.7011], + [-83.6217, 38.6811], + [-83.6573, 38.6263], + [-83.7547, 38.6494], + [-83.7946, 38.7027], + [-83.8686, 38.7611], + [-83.9597, 38.7873], + [-84.0775, 38.7728], + [-84.1762, 38.7966], + [-84.2185, 38.8097], + [-84.2295, 38.8235], + [-84.2383, 38.8947], + [-84.3284, 39.0285], + [-84.4076, 39.046], + [-84.4403, 39.1096], + [-84.4738, 39.1184], + [-84.6237, 39.0736], + [-84.7596, 39.1414], + [-84.803, 39.11], + [-84.8342, 39.0983], + [-84.8884, 39.065], + [-84.8931, 39.054], + [-84.8374, 38.9887], + [-84.8738, 38.91], + [-84.7877, 38.8823], + [-84.83, 38.8284], + [-84.8288, 38.7837], + [-84.883, 38.7931], + [-84.9923, 38.7777], + [-85.1747, 38.6879], + [-85.2505, 38.7322], + [-85.4168, 38.7357], + [-85.4536, 38.6847], + [-85.437, 38.6563], + [-85.4235, 38.5313], + [-85.5047, 38.4645], + [-85.5981, 38.4442], + [-85.6498, 38.3307], + [-85.7432, 38.2689], + [-85.7829, 38.2887], + [-85.8328, 38.2662], + [-85.9044, 38.1676], + [-85.9028, 38.0926], + [-85.9398, 38.0089], + [-86.0145, 37.9958], + [-86.0464, 37.9586], + [-86.0928, 38.0077], + [-86.1682, 38.0093], + [-86.2603, 38.0514], + [-86.2729, 38.1341], + [-86.3198, 38.1465], + [-86.3988, 38.1049], + [-86.4666, 38.0457], + [-86.5219, 38.0289], + [-86.5285, 37.9178], + [-86.5816, 37.921], + [-86.6015, 37.8639], + [-86.6673, 37.8555], + [-86.6673, 37.9134], + [-86.7311, 37.8927], + [-86.7963, 37.9874], + [-86.8599, 37.9849], + [-86.9126, 37.9409], + [-86.986, 37.929], + [-87.046, 37.8901], + [-87.0552, 37.8288], + [-87.107, 37.7833], + [-87.1673, 37.8387], + [-87.2414, 37.8575], + [-87.3434, 37.9128], + [-87.4166, 37.9442], + [-87.4732, 37.9279], + [-87.5114, 37.9067], + [-87.6011, 37.9708], + [-87.6279, 37.9235], + [-87.5934, 37.8902], + [-87.6379, 37.8254], + [-87.6642, 37.8265], + [-87.6679, 37.8934], + [-87.7545, 37.8932], + [-87.7909, 37.8763], + [-87.8608, 37.9043], + [-87.8824, 37.9261], + [-87.898, 37.9279], + [-87.9051, 37.9243], + [-87.9364, 37.892], + [-87.9053, 37.8199], + [-87.9317, 37.7969], + [-87.9464, 37.7782], + [-87.9627, 37.7743], + [-88.027, 37.799], + [-88.0531, 37.7445], + [-88.1478, 37.6776], + [-88.1567, 37.6484], + [-88.1335, 37.5836], + [-88.0736, 37.5317], + [-88.085, 37.4776], + [-88.2593, 37.4575], + [-88.3714, 37.4074], + [-88.4065, 37.4263], + [-88.444, 37.4156], + [-88.4742, 37.3871], + [-88.5133, 37.279], + [-88.4502, 37.2062], + [-88.425, 37.1543], + [-88.4659, 37.0771], + [-88.5528, 37.0713], + [-88.617254334, 37.113873523], + [-88.618958431, 37.114642037], + [-88.633978755, 37.119495934], + [-88.676688934, 37.133297951], + [-88.6965, 37.1397], + [-88.7954, 37.1819], + [-88.9595, 37.23], + [-89.0071, 37.2232], + [-89.0797, 37.1717], + [-89.1771, 37.059], + [-89.1815, 37.041], + [-89.1702, 37.0105], + [-89.1339, 36.9839], + [-89.1006, 36.9541], + [-89.1164, 36.9168], + [-89.1311, 36.8588], + [-89.1785, 36.8388], + [-89.1612, 36.7912], + [-89.2016, 36.7251], + [-89.166, 36.6636], + [-89.2289, 36.5677], + [-89.2749, 36.5717], + [-89.3248, 36.6268], + [-89.3562, 36.6324], + [-89.3777, 36.6179], + [-89.4196, 36.498], + [-89.4646, 36.4571], + [-89.4939, 36.4835], + [-89.4712, 36.5308], + [-89.4989, 36.578], + [-89.5352, 36.5814], + [-89.5482, 36.5788], + [-89.5624, 36.5228], + [-89.5249, 36.4844], + [-89.5515, 36.4414], + [-89.5192, 36.3883], + [-89.5264, 36.3459], + [-89.6042, 36.3446], + [-89.6167, 36.3186], + [-89.5456, 36.2791], + [-89.6083, 36.2409], + [-89.6733, 36.2521], + [-89.6946, 36.2501], + [-89.6985, 36.2309], + [-89.5896, 36.1475], + [-89.6564, 36.1024], + [-89.7169, 36.0015], + [-89.7162, 35.9625], + [-89.6587, 35.9271], + [-89.6656, 35.8834], + [-89.7132, 35.9061], + [-89.7677, 35.8896], + [-89.7624, 35.8569], + [-89.7065, 35.8172], + [-89.7937, 35.7948], + [-89.8186, 35.7568], + [-89.9527, 35.738], + [-89.9565, 35.695], + [-89.8622, 35.6322], + [-89.9414, 35.6023], + [-89.9439, 35.5624], + [-89.906, 35.5331], + [-89.9101, 35.5196], + [-89.988, 35.5594], + [-90.0362, 35.5515], + [-90.0491, 35.5113], + [-90.0191, 35.469], + [-90.0541, 35.3893], + [-90.0716, 35.4109], + [-90.0991, 35.4804], + [-90.1709, 35.4187], + [-90.1504, 35.3745], + [-90.1383, 35.3795], + [-90.1261, 35.4158], + [-90.0751, 35.3847], + [-90.1083, 35.309], + [-90.1564, 35.3012], + [-90.1518, 35.2558], + [-90.1039, 35.2554], + [-90.0741, 35.2189], + [-90.1151, 35.1977], + [-90.0978, 35.1196], + [-90.1604, 35.132], + [-90.1792, 35.1168], + [-90.2157, 35.027], + [-90.2937, 35.0371], + [-90.3108, 35.0015], + [-90.3098, 34.9966], + [-89.069158116, 34.996152664], + [-88.78657705, 34.996688], + [-88.199696512, 34.997799817], + [-88.1996, 34.9978], + [-88.1883, 34.9793], + [-88.1525, 34.9269], + [-88.098, 34.8964], + [-88.1535, 34.4881], + [-88.2067, 34.0458], + [-88.2474, 33.7499], + [-88.4262, 32.262], + [-88.472, 31.9], + [-88.4507, 31.444], + [-88.4101, 30.7033], + [-88.3994, 30.395], + [-88.3577, 30.4057], + [-88.1881, 30.3661], + [-88.1909, 30.3181], + [-88.1294, 30.3383], + [-88.1073, 30.3782], + [-88.101, 30.5101], + [-88.0872, 30.5669], + [-88.0117, 30.6872], + [-87.9696, 30.7098], + [-87.9142, 30.6508], + [-87.9021, 30.5477], + [-87.9372, 30.4829], + [-87.9075, 30.4103], + [-87.8372, 30.3656], + [-87.7596, 30.2949], + [-87.7667, 30.2639], + [-87.9325, 30.2311], + [-87.8289, 30.2269], + [-87.5581, 30.2714], + [-87.5092, 30.3422], + [-87.4636, 30.3611], + [-87.4308, 30.4172], + [-87.3744, 30.4589], + [-87.3467, 30.4231], + [-87.4256, 30.4025], + [-87.4169, 30.3425], + [-87.4611, 30.3097], + [-87.2645, 30.3444], + [-87.2576, 30.3884], + [-87.1812, 30.4213], + [-87.1603, 30.4683], + [-87.1844, 30.5266], + [-87.1588, 30.5805], + [-87.1025, 30.5225], + [-87.1025, 30.4454], + [-87.0682, 30.4473], + [-87.0378, 30.5391], + [-87.013, 30.4984], + [-86.9356, 30.4547], + [-87.0147, 30.4034], + [-87.0865, 30.3991], + [-87.0963, 30.3729], + [-86.9497, 30.3953], + [-86.7233, 30.4108], + [-86.6047, 30.4011], + [-86.51, 30.4553], + [-86.4522, 30.5084], + [-86.4208, 30.4514], + [-86.3192, 30.4775], + [-86.2097, 30.4875], + [-86.1189, 30.3794], + [-86.1653, 30.3825], + [-86.2481, 30.4286], + [-86.2456, 30.39], + [-86.3287, 30.3828], + [-86.4882, 30.418], + [-86.5025, 30.3819], + [-86.3331, 30.3703], + [-86.1878, 30.3342], + [-85.9914, 30.2686], + [-85.7756, 30.1567], + [-85.7442, 30.2128], + [-85.7986, 30.2531], + [-85.8492, 30.2325], + [-85.845, 30.2844], + [-85.7631, 30.3], + [-85.6792, 30.2497], + [-85.73, 30.1872], + [-85.6469, 30.1347], + [-85.58, 30.1156], + [-85.5242, 30.1233], + [-85.4944, 30.0908], + [-85.4831, 30.0219], + [-85.5328, 30.0789], + [-85.6006, 30.0917], + [-85.6192, 30.1217], + [-85.6869, 30.1228], + [-85.5411, 30.0244], + [-85.4769, 29.9672], + [-85.4122, 29.9431], + [-85.3628, 29.8972], + [-85.3028, 29.8083], + [-85.3045, 29.6838], + [-85.1147, 29.717], + [-84.9906, 29.715], + [-84.9245, 29.7611], + [-84.9019, 29.7344], + [-84.757, 29.788], + [-84.5331, 29.9114], + [-84.4444, 29.9297], + [-84.3636, 29.9097], + [-84.3386, 29.9472], + [-84.441, 29.9613], + [-84.4372, 29.9875], + [-84.3547, 29.9694], + [-84.3775, 30.0092], + [-84.3489, 30.0606], + [-84.289, 30.0571], + [-84.2706, 30.1058], + [-84.2067, 30.1153], + [-84.16, 30.072], + [-84.1164, 30.0942], + [-83.9964, 30.1041], + [-83.9533, 30.0612], + [-83.8289, 29.9822], + [-83.7764, 29.9761], + [-83.6806, 29.9226], + [-83.5855, 29.8178], + [-83.5339, 29.7214], + [-83.4057, 29.6533], + [-83.3964, 29.5244], + [-83.2953, 29.4368], + [-83.2336, 29.4323], + [-83.1803, 29.3619], + [-83.167749077, 29.306905535], + [-83.167803475, 29.306862645], + [-83.0813, 29.2666], + [-83.0711, 29.1917], + [-83.0289, 29.1617], + [-82.9811, 29.1747], + [-82.8109, 29.1637], + [-82.7867, 29.0786], + [-82.74, 29.0217], + [-82.71, 28.9361], + [-82.6383, 28.9053], + [-82.6514, 28.8578], + [-82.733, 28.8537], + [-82.6856, 28.7936], + [-82.6878, 28.7276], + [-82.64, 28.7008], + [-82.6556, 28.6303], + [-82.6711, 28.4341], + [-82.7312, 28.3255], + [-82.7331, 28.2828], + [-82.8008, 28.1708], + [-82.7758, 28.1097], + [-82.8058, 27.9547], + [-82.8489, 27.8736], + [-82.6888, 27.709], + [-82.6381, 27.7039], + [-82.5983, 27.8569], + [-82.655, 27.9108], + [-82.7198, 27.9363], + [-82.6655, 28.0285], + [-82.5275, 27.9356], + [-82.555, 27.8496], + [-82.4733, 27.8217], + [-82.4863, 27.9227], + [-82.4012, 27.8779], + [-82.3958, 27.8147], + [-82.4783, 27.7472], + [-82.5671, 27.6263], + [-82.5699, 27.5679], + [-82.6411, 27.4737], + [-82.6914, 27.4708], + [-82.5739, 27.4053], + [-82.5415, 27.3304], + [-82.5411, 27.27], + [-82.5022, 27.2272], + [-82.4444, 27.0575], + [-82.3576, 26.9165], + [-82.3018, 26.8474], + [-82.1913, 26.791], + [-82.1501, 26.7846], + [-82.1568, 26.8565], + [-82.189, 26.9674], + [-82.1532, 26.924], + [-82.1174, 26.9615], + [-82.0088, 26.9526], + [-82.0971, 26.9151], + [-82.0601, 26.8793], + [-82.0546, 26.7946], + [-82.0879, 26.6757], + [-82.0468, 26.609], + [-82.064, 26.5671], + [-82.0165, 26.529], + [-82.0137, 26.4882], + [-81.8765, 26.4562], + [-81.8374, 26.3476], + [-81.8015, 26.091], + [-81.7423, 26.0337], + [-81.7349, 25.9988], + [-81.6349, 25.9387], + [-81.6368, 25.9063], + [-81.5301, 25.8929], + [-81.5193, 25.8396], + [-81.4579, 25.8668], + [-81.3996, 25.8568], + [-81.3349, 25.7876], + [-81.346, 25.7215], + [-81.2929, 25.7057], + [-81.2535, 25.6415], + [-81.1418, 25.381], + [-81.1007, 25.3468], + [-80.9799, 25.3254], + [-80.9038, 25.2399], + [-80.9638, 25.2049], + [-81.0024, 25.2135], + [-81.029, 25.2263], + [-81.0476, 25.2365], + [-81.0699, 25.2551], + [-81.0888, 25.311], + [-81.1457, 25.3268], + [-81.1718, 25.2235], + [-81.0888, 25.1374], + [-81.0021, 25.124], + [-80.9004, 25.1396], + [-80.8468, 25.1774], + [-80.7165, 25.156], + [-80.5821, 25.2104], + [-80.5062, 25.2071], + [-80.3954, 25.2763], + [-80.3426, 25.3232], + [-80.3087, 25.3899], + [-80.3407, 25.4982], + [-80.2296, 25.7335], + [-80.1888, 25.7551], + [-80.1849, 25.8105], + [-80.1184, 25.8338], + [-80.1704, 25.8671], + [-80.1212, 25.8999], + [-80.1093, 26.0874], + [-80.0799, 26.2576], + [-80.0579, 26.4599], + [-80.0365, 26.5882], + [-80.0515, 26.7754], + [-80.031, 26.7949], + [-80.0715, 26.9437], + [-80.0793, 26.9088], + [-80.0349, 26.7982], + [-80.0521, 26.794], + [-80.0807, 26.9082], + [-80.0799, 26.9479], + [-80.1201, 27.0804], + [-80.1575, 27.1629], + [-80.1917, 27.1642], + [-80.3216, 27.4435], + [-80.3747, 27.6219], + [-80.3754, 27.653], + [-80.4614, 27.8059], + [-80.6578, 28.1953], + [-80.7489, 28.4089], + [-80.7978, 28.5589], + [-80.8436, 28.75], + [-80.8447, 28.8], + [-80.7417, 28.7158], + [-80.7847, 28.6903], + [-80.7842, 28.6219], + [-80.7261, 28.6042], + [-80.7331, 28.4897], + [-80.7203, 28.3914], + [-80.6833, 28.3397], + [-80.635, 28.5022], + [-80.5872, 28.5744], + [-80.585, 28.5158], + [-80.6086, 28.3758], + [-80.6322, 28.3225], + [-80.6078, 28.2639], + [-80.6186, 28.2122], + [-80.5764, 28.0775], + [-80.5229, 27.9929], + [-80.4272, 27.8139], + [-80.4183, 27.7665], + [-80.3422, 27.5958], + [-80.3108, 27.4708], + [-80.2903, 27.4728], + [-80.3842, 27.7424], + [-80.5125, 27.9764], + [-80.5611, 28.0792], + [-80.5931, 28.1906], + [-80.6081, 28.3103], + [-80.5908, 28.4078], + [-80.525, 28.4581], + [-80.5747, 28.5847], + [-80.71, 28.7564], + [-80.9008, 29.0475], + [-80.9158, 29.0236], + [-80.8475, 28.9575], + [-80.775, 28.8522], + [-80.7764, 28.8256], + [-80.6442, 28.6675], + [-80.6856, 28.6706], + [-80.7669, 28.7572], + [-80.8203, 28.8383], + [-80.8689, 28.9403], + [-80.9781, 29.1286], + [-81.0566, 29.3045], + [-80.9961, 29.2036], + [-81.1708, 29.57], + [-81.2583, 29.7869], + [-81.2644, 29.8567], + [-81.3014, 29.9414], + [-81.3786, 30.2458], + [-81.3931, 30.3953], + [-81.436, 30.5245], + [-81.4435, 30.5989], + [-81.4256, 30.7011], + [-81.449, 30.72], + [-81.4522, 30.7992], + [-81.4064, 30.9003], + [-81.4027, 30.9589], + [-81.4633, 30.9097], + [-81.5131, 30.9658], + [-81.4611, 30.9983], + [-81.4841, 31.0377], + [-81.4256, 31.0486], + [-81.4606, 31.0872], + [-81.4353, 31.1339], + [-81.4631, 31.1772], + [-81.3883, 31.2826], + [-81.3717, 31.3381], + [-81.3347, 31.3319], + [-81.3333, 31.3903], + [-81.3758, 31.4242], + [-81.3261, 31.4562], + [-81.3319, 31.4767], + [-81.2919, 31.4953], + [-81.2314, 31.5497], + [-81.1659, 31.5634], + [-81.1301, 31.63], + [-81.1452, 31.699], + [-81.1872, 31.6878], + [-81.2528, 31.7567], + [-81.1609, 31.7277], + [-81.2018, 31.7866], + [-81.145, 31.8614], + [-81.0894, 31.8603], + [-81.0214, 31.9078], + [-80.9933, 31.8578], + [-80.9335, 31.9074], + [-80.985, 31.9164], + [-81.0086, 32.0073], + [-81.0463, 32.0241], + [-81.0494, 32.0302], + [-81.0422, 32.0458], + [-81.0315, 32.0609], + [-81.0114, 32.0746], + [-80.915, 32.0842], + [-80.9271, 32.1258], + [-80.8373, 32.2144], + [-80.7908, 32.2028], + [-80.7813, 32.2602], + [-80.7597, 32.2767], + [-80.8444, 32.3831], + [-80.8172, 32.41], + [-80.8275, 32.4864], + [-80.7883, 32.4967], + [-80.7836, 32.5289], + [-80.7642, 32.5403], + [-80.7486, 32.5428], + [-80.7361, 32.5367], + [-80.6731, 32.5244], + [-80.6519, 32.5108], + [-80.6303, 32.5181], + [-80.5849, 32.5007], + [-80.4651, 32.5196], + [-80.3928, 32.5728], + [-80.3892, 32.6164], + [-80.3378, 32.6397], + [-80.2882, 32.6253], + [-80.254, 32.678], + [-80.18, 32.7175], + [-80.1711, 32.7387], + [-80.1583, 32.7508], + [-80.1037, 32.7882], + [-80.0022, 32.7672], + [-79.9853, 32.6939], + [-79.9906, 32.6347], + [-79.9064, 32.6683], + [-79.87, 32.7314], + [-79.9339, 32.755], + [-79.935, 32.8077], + [-79.86, 32.7664], + [-79.7416, 32.8708], + [-79.6978, 32.8508], + [-79.5775, 32.9085], + [-79.6172, 32.9381], + [-79.579, 33.0069], + [-79.5283, 33.0381], + [-79.4839, 33.0036], + [-79.3756, 33.0467], + [-79.3644, 33.0762], + [-79.2467, 33.125], + [-79.1946, 33.1704], + [-79.2106, 33.2439], + [-79.2581, 33.2589], + [-79.275, 33.3128], + [-79.1958, 33.2958], + [-79.1789, 33.2647], + [-79.1455, 33.3841], + [-79.1158, 33.4069], + [-79, 33.5456], + [-78.9119, 33.6111], + [-78.9372, 33.6397], + [-78.8416, 33.7225], + [-78.7404, 33.7878], + [-78.5894, 33.8425], + [-78.5392, 33.8769], + [-78.32, 33.9167], + [-78.2275, 33.9228], + [-78.0761, 33.9029], + [-77.9936, 33.9297], + [-77.9539, 33.975], + [-77.9403, 34.0781], + [-77.9683, 34.1625], + [-77.9253, 34.1272], + [-77.925, 34.0683], + [-77.9178, 34.0525], + [-77.8914, 34.0594], + [-77.8592, 34.1527], + [-77.8133, 34.2194], + [-77.7017, 34.344], + [-77.5309, 34.4584], + [-77.4645, 34.493], + [-77.3741, 34.5175], + [-77.3615, 34.5521], + [-77.4366, 34.5896], + [-77.4441, 34.6162], + [-77.3729, 34.6267], + [-77.3778, 34.7036], + [-77.3376, 34.6397], + [-77.4003, 34.5969], + [-77.3172, 34.5461], + [-77.0898, 34.7151], + [-77.0878, 34.673], + [-76.8933, 34.725], + [-76.6931, 34.7211], + [-76.7375, 34.7792], + [-76.6589, 34.7475], + [-76.6908, 34.7139], + [-76.6172, 34.7075], + [-76.6094, 34.8064], + [-76.5797, 34.7228], + [-76.5067, 34.7256], + [-76.3981, 34.8658], + [-76.3314, 34.885], + [-76.3281, 34.9369], + [-76.2769, 34.9603], + [-76.3108, 35.0064], + [-76.3444, 34.9711], + [-76.4564, 34.94], + [-76.425, 35.0012], + [-76.4359, 35.0584], + [-76.4719, 35.0724], + [-76.4841, 34.9853], + [-76.518, 35.0037], + [-76.5902, 34.9783], + [-76.6302, 34.9887], + [-76.7608, 34.9154], + [-76.8532, 34.937], + [-76.9752, 35.0016], + [-76.9887, 35.0433], + [-77.047, 35.1041], + [-76.9252, 35.0515], + [-76.8039, 34.9639], + [-76.7131, 35.0047], + [-76.5701, 35.0985], + [-76.5439, 35.1423], + [-76.6525, 35.1637], + [-76.5989, 35.1881], + [-76.59, 35.2417], + [-76.4793, 35.2471], + [-76.4969, 35.3108], + [-76.7356, 35.3554], + [-76.844, 35.4241], + [-76.9262, 35.4488], + [-76.9674, 35.4331], + [-76.9786, 35.4837], + [-76.8333, 35.4481], + [-76.7583, 35.4193], + [-76.7108, 35.4289], + [-76.576, 35.3881], + [-76.5985, 35.4819], + [-76.6516, 35.5455], + [-76.537, 35.5286], + [-76.4539, 35.5522], + [-76.4721, 35.511], + [-76.5625, 35.492], + [-76.5401, 35.4096], + [-76.4821, 35.3947], + [-76.3891, 35.4273], + [-76.3019, 35.3519], + [-76.2603, 35.3761], + [-76.2043, 35.3383], + [-76.0961, 35.3618], + [-76.0839, 35.391], + [-75.9994, 35.4553], + [-75.9442, 35.5358], + [-75.8834, 35.5832], + [-75.8821, 35.6344], + [-75.8358, 35.5706], + [-75.7744, 35.5814], + [-75.7339, 35.6308], + [-75.7795, 35.6875], + [-75.7169, 35.6938], + [-75.7387, 35.7507], + [-75.7281, 35.8244], + [-75.7827, 35.9332], + [-75.9079, 35.9324], + [-75.9854, 35.8891], + [-75.9757, 35.8391], + [-75.9992, 35.695], + [-76.0219, 35.6508], + [-76.0611, 35.7176], + [-76.0642, 35.8536], + [-76.0133, 35.9236], + [-76.073, 35.9229], + [-76.0543, 35.9874], + [-76.1481, 35.9956], + [-76.2703, 35.9726], + [-76.3494, 35.9419], + [-76.4058, 35.9822], + [-76.525, 35.9447], + [-76.6639, 35.9328], + [-76.7247, 35.9554], + [-76.7036, 36.0042], + [-76.7263, 36.0962], + [-76.7555, 36.1517], + [-76.7505, 36.2094], + [-76.6807, 36.3006], + [-76.6755, 36.2654], + [-76.7152, 36.2138], + [-76.7224, 36.1539], + [-76.6919, 36.0661], + [-76.638, 36.0359], + [-76.6077, 36.0561], + [-76.5736, 36.0092], + [-76.4631, 36.0231], + [-76.4043, 36.0788], + [-76.3078, 36.0922], + [-76.4352, 36.1628], + [-76.3933, 36.1694], + [-76.215, 36.0964], + [-76.2465, 36.1586], + [-76.1668, 36.1237], + [-76.0615, 36.146], + [-76.077, 36.1923], + [-76.1951, 36.2967], + [-76.1363, 36.2884], + [-76.0181, 36.187], + [-75.925, 36.1638], + [-75.9542, 36.2038], + [-75.9762, 36.3137], + [-75.8763, 36.1843], + [-75.8632, 36.1215], + [-75.7958, 36.0714], + [-75.8971, 36.3233], + [-76.0006, 36.4286], + [-76.0405, 36.5022], + [-76.0804, 36.4993], + [-76.1527, 36.5504], + [-76.9162, 36.5511], + [-76.9174, 36.544], + [-78.125, 36.5463], + [-78.5095, 36.5421], + [-78.9763, 36.5447], + [-79.5112, 36.5391], + [-80.2775, 36.5433], + [-80.6523, 36.5584], + [-80.8632, 36.5598], + [-81.3698, 36.5735], + [-81.6758, 36.589], + [-81.6475, 36.6125], + [-81.9233, 36.6166], + [-81.9352, 36.595], + [-82.2374, 36.5967], + [-83.2538, 36.5942], + [-83.6748, 36.6012], + [-83.6632, 36.612], + [-83.4979, 36.6711], + [-83.4221, 36.67], + [-83.3354, 36.7041], + [-83.1958, 36.7393], + [-83.1374, 36.7438], + [-83.1331, 36.7845], + [-83.0676, 36.8541], + [-82.9615, 36.861], + [-82.8698, 36.9005], + [-82.8653, 36.9786], + [-82.7198, 37.0484], + [-82.7206, 37.1205], + [-82.555, 37.2033], + [-82.3523, 37.268], + [-81.9673, 37.5372], + [-81.9642, 37.544], + [-81.9908, 37.5404], + [-82.1293, 37.5525], + [-82.1352, 37.5965], + [-82.2231, 37.6542], + [-82.2901, 37.6708], + [-82.3119, 37.765], + [-82.4178, 37.8481], + [-82.4201, 37.8853], + [-82.4874, 37.9182], + [-82.4701, 37.9863], + [-82.5085, 38.0021], + [-82.5495, 38.0718], + [-82.637, 38.1407], + [-82.578, 38.2508], + [-82.5756, 38.3302], + [-82.5928, 38.4186] + ] + ], + [ + [ + [-80.6203, 32.5022], + [-80.6775, 32.5019], + [-80.6571, 32.4388], + [-80.6442, 32.2603], + [-80.6037, 32.2705], + [-80.5422, 32.3328], + [-80.55, 32.3589], + [-80.4557, 32.4058], + [-80.4789, 32.4453], + [-80.6035, 32.4443], + [-80.6203, 32.5022] + ] + ], + [ + [ + [-80.0983, 32.7833], + [-80.1705, 32.7355], + [-80.1628, 32.7214], + [-80.1706, 32.7111], + [-80.1647, 32.7075], + [-80.1616, 32.7084], + [-80.1589, 32.7047], + [-80.1392, 32.7131], + [-80.1272, 32.7053], + [-80.1014, 32.7186], + [-80.0819, 32.7125], + [-80.0744, 32.7], + [-80.0864, 32.6872], + [-80.1317, 32.6664], + [-80.1558, 32.6108], + [-80.1567, 32.6064], + [-80.1611, 32.6039], + [-80.1722, 32.6019], + [-80.1783, 32.5937], + [-80.2047, 32.5839], + [-80.1776, 32.5593], + [-80.1113, 32.5941], + [-80.0163, 32.6113], + [-79.9903, 32.6939], + [-80.0073, 32.7658], + [-80.0983, 32.7833] + ] + ], + [ + [ + [-80.745, 32.5397], + [-80.7794, 32.5281], + [-80.7833, 32.4972], + [-80.8103, 32.4725], + [-80.765, 32.3725], + [-80.7014, 32.3128], + [-80.6628, 32.3344], + [-80.6886, 32.3697], + [-80.6631, 32.4329], + [-80.6828, 32.5], + [-80.7094, 32.525], + [-80.745, 32.5397] + ] + ], + [ + [ + [-80.3311, 32.6328], + [-80.3853, 32.615], + [-80.3852, 32.5738], + [-80.4112, 32.5475], + [-80.3358, 32.4775], + [-80.1975, 32.5683], + [-80.2419, 32.6036], + [-80.2983, 32.6022], + [-80.3311, 32.6328] + ] + ], + [ + [ + [-75.7711, 36.2267], + [-75.8064, 36.3128], + [-75.8684, 36.5505], + [-75.8843, 36.4732], + [-75.8434, 36.4222], + [-75.8211, 36.2914], + [-75.774, 36.2273], + [-75.7448, 36.1392], + [-75.7375, 36.0425], + [-75.6864, 36.0119], + [-75.5708, 35.8642], + [-75.7275, 36.1289], + [-75.7711, 36.2267] + ] + ], + [ + [ + [-80.0964, 32.7158], + [-80.1275, 32.704], + [-80.1392, 32.7108], + [-80.155, 32.7061], + [-80.1583, 32.7019], + [-80.1622, 32.7073], + [-80.1658, 32.7033], + [-80.1707, 32.7071], + [-80.1833, 32.7075], + [-80.2391, 32.6756], + [-80.265, 32.6221], + [-80.2155, 32.5871], + [-80.1928, 32.5996], + [-80.1787, 32.5959], + [-80.1739, 32.6031], + [-80.1572, 32.6078], + [-80.135, 32.6669], + [-80.0864, 32.6889], + [-80.0964, 32.7158] + ] + ], + [ + [ + [-80.7253, 32.2697], + [-80.7836, 32.2227], + [-80.8121, 32.1101], + [-80.7391, 32.1466], + [-80.6675, 32.2144], + [-80.7253, 32.2697] + ] + ], + [ + [ + [-81.1942, 31.5358], + [-81.2392, 31.5272], + [-81.2597, 31.4978], + [-81.2944, 31.4878], + [-81.3078, 31.4233], + [-81.2794, 31.3783], + [-81.1778, 31.5147], + [-81.1942, 31.5358] + ] + ], + [ + [ + [-82.1588, 26.7068], + [-82.0943, 26.489], + [-82.0563, 26.4976], + [-82.0801, 26.5462], + [-82.0651, 26.6107], + [-82.1243, 26.699], + [-82.1588, 26.7068] + ] + ], + [ + [ + [-81.3374, 31.2919], + [-81.3739, 31.2993], + [-81.41, 31.1367], + [-81.3688, 31.1452], + [-81.3104, 31.2141], + [-81.3374, 31.2919] + ] + ], + [ + [ + [-81.1206, 31.8497], + [-81.1803, 31.7939], + [-81.1325, 31.7222], + [-81.0347, 31.8173], + [-81.1206, 31.8497] + ] + ], + [ + [ + [-81.0092, 32.0711], + [-81.0292, 32.0622], + [-81.0283, 32.0497], + [-81.0396, 32.0447], + [-81.0481, 32.0278], + [-81.0283, 32.025], + [-81.0031, 32.0094], + [-80.9856, 31.9517], + [-80.9292, 31.9725], + [-80.9325, 31.9911], + [-80.9245, 32.0091], + [-80.94, 32.0154], + [-80.9824, 32.0597], + [-81.0092, 32.0711] + ] + ], + [ + [ + [-80.6471, 24.9132], + [-80.566, 24.9557], + [-80.474, 25.0607], + [-80.3715, 25.1365], + [-80.3679, 25.1699], + [-80.2851, 25.2874], + [-80.3302, 25.2579], + [-80.3501, 25.2107], + [-80.5126, 25.0179], + [-80.5674, 24.9646], + [-80.6471, 24.9132] + ] + ], + [ + [ + [-82.1965, 26.5515], + [-82.1729, 26.4688], + [-82.0715, 26.4215], + [-82.014, 26.4524], + [-82.1599, 26.4821], + [-82.1965, 26.5515] + ] + ], + [ + [ + [-75.9623, 36.5504], + [-76.013, 36.5505], + [-75.9886, 36.4975], + [-75.9119, 36.495], + [-75.9218, 36.5506], + [-75.9623, 36.5504] + ] + ], + [ + [ + [-75.5186, 35.2769], + [-75.5967, 35.2583], + [-75.6372, 35.2281], + [-75.5294, 35.2239], + [-75.5186, 35.2769] + ] + ], + [ + [ + [-75.7044, 35.9386], + [-75.6617, 35.8686], + [-75.6619, 35.8242], + [-75.6158, 35.8389], + [-75.6461, 35.91], + [-75.7044, 35.9386] + ] + ], + [ + [ + [-81.7276, 25.9735], + [-81.7288, 25.9079], + [-81.6735, 25.9007], + [-81.6552, 25.9426], + [-81.7276, 25.9735] + ] + ], + [ + [ + [-81.5623, 24.6926], + [-81.5696, 24.6338], + [-81.6038, 24.5857], + [-81.5101, 24.6257], + [-81.5623, 24.6926] + ] + ], + [ + [ + [-80.9775, 32.0661], + [-80.9242, 32.0125], + [-80.9217, 32.0072], + [-80.9261, 31.9958], + [-80.8764, 31.9927], + [-80.8608, 32.0011], + [-80.8478, 31.9892], + [-80.8422, 32.0242], + [-80.8797, 32.0167], + [-80.9775, 32.0661] + ] + ], + [ + [ + [-76.1509, 36.5504], + [-76.0558, 36.512], + [-76.0358, 36.5508], + [-76.1509, 36.5504] + ] + ], + [ + [ + [-80.4769, 32.3433], + [-80.505, 32.3425], + [-80.5468, 32.284], + [-80.4536, 32.3225], + [-80.4769, 32.3433] + ] + ], + [ + [ + [-85.1122, 29.6877], + [-85.1828, 29.6638], + [-85.0972, 29.6325], + [-85.1122, 29.6877] + ] + ], + [ + [ + [-81.0057, 25.2732], + [-81.0462, 25.2374], + [-81.0207, 25.2279], + [-81.0054, 25.2282], + [-81.0007, 25.2162], + [-80.9676, 25.2185], + [-81.0057, 25.2732] + ] + ], + [ + [ + [-77.9503, 33.9219], + [-78.0088, 33.8673], + [-77.9614, 33.8433], + [-77.9503, 33.9219] + ] + ], + [ + [ + [-81.3653, 31.3125], + [-81.3181, 31.2872], + [-81.2954, 31.2158], + [-81.2827, 31.2896], + [-81.3653, 31.3125] + ] + ], + [ + [ + [-80.8578, 31.9944], + [-80.8772, 31.9911], + [-80.9089, 31.9942], + [-80.9212, 31.943], + [-80.875, 31.9628], + [-80.8578, 31.9944] + ] + ], + [ + [ + [-81.4132, 25.8007], + [-81.4246, 25.8554], + [-81.4799, 25.8443], + [-81.4132, 25.8007] + ] + ], + [ + [ + [-77.8769, 34.0728], + [-77.8892, 34.0569], + [-77.9188, 34.0512], + [-77.9139, 33.9719], + [-77.8769, 34.0728] + ] + ], + [ + [ + [-76.7483, 34.7118], + [-76.8392, 34.6922], + [-76.6789, 34.6944], + [-76.7483, 34.7118] + ] + ], + [ + [ + [-80.434, 32.4118], + [-80.4802, 32.3783], + [-80.4507, 32.3418], + [-80.434, 32.4118] + ] + ], + [ + [ + [-80.8378, 32.1469], + [-80.8881, 32.1303], + [-80.8735, 32.0824], + [-80.8378, 32.1469] + ] + ], + [ + [ + [-80.1958, 27.2554], + [-80.2644, 27.3961], + [-80.2592, 27.3481], + [-80.1958, 27.2554] + ] + ], + [ + [ + [-80.4022, 32.5347], + [-80.419, 32.4885], + [-80.3602, 32.5], + [-80.4022, 32.5347] + ] + ] + ] + }, + "properties": { + "id": "3a101842-0ef2-4472-bf3f-a4400554fea3", + "code": "SE", + "name": "Southeast", + "abbreviation": "R-SE", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-117.0293, 42.0003], + [-118.0426, 41.9974], + [-118.7764, 41.993], + [-119.5064, 41.9925], + [-120.0003, 41.9953], + [-119.9984, 41.6905], + [-119.9999, 40.9331], + [-119.9955, 40.3085], + [-120.0053, 39.2875], + [-120.0009, 39.0005], + [-119.502818548, 38.65661886], + [-119.341981891, 38.544214822], + [-118.8591, 38.2047], + [-118.1091, 37.6663], + [-117.699558286, 37.366348171], + [-117.286724092, 37.061653047], + [-117.269365759, 37.048759017], + [-116.79135207, 36.688950431], + [-116.2954, 36.3122], + [-115.6513, 35.8111], + [-115.648, 35.8111], + [-115.193553028, 35.452773599], + [-115.065428477, 35.350675077], + [-114.888038436, 35.208708962], + [-114.6329, 35.0021], + [-114.6289, 34.9937], + [-114.629, 34.9112], + [-114.6347, 34.8802], + [-114.5803, 34.8307], + [-114.5585, 34.7796], + [-114.4708, 34.7152], + [-114.431, 34.5925], + [-114.3789, 34.5304], + [-114.3849, 34.4639], + [-114.3354, 34.4544], + [-114.1378, 34.3081], + [-114.1295, 34.2672], + [-114.1339, 34.2638], + [-114.1556, 34.2638], + [-114.2259, 34.1929], + [-114.2688, 34.1755], + [-114.2886, 34.1727], + [-114.3226, 34.1415], + [-114.41, 34.1134], + [-114.4373, 34.0635], + [-114.4644, 33.9968], + [-114.5178, 33.96], + [-114.5315, 33.9407], + [-114.5033, 33.8671], + [-114.5152, 33.862], + [-114.5284, 33.8598], + [-114.5185, 33.8287], + [-114.494, 33.7004], + [-114.5295, 33.6742], + [-114.5247, 33.5579], + [-114.5917, 33.5004], + [-114.6342, 33.4235], + [-114.7223, 33.4095], + [-114.7072, 33.3866], + [-114.6988, 33.3642], + [-114.7288, 33.3023], + [-114.6765, 33.2737], + [-114.6757, 33.1634], + [-114.6997, 33.1197], + [-114.6607, 33.0333], + [-114.5666, 33.0389], + [-114.5142, 33.029], + [-114.4985, 33.0072], + [-114.467, 32.9515], + [-114.466, 32.8462], + [-114.5141, 32.8105], + [-114.5289, 32.7933], + [-114.5265, 32.758], + [-114.6139, 32.7291], + [-114.681, 32.7365], + [-114.6985, 32.745], + [-114.7655, 32.6435], + [-114.807, 32.6227], + [-114.8136, 32.4939], + [-113.9713, 32.2378], + [-113.2108, 32.0001], + [-112.0007, 31.6272], + [-111.075, 31.3324], + [-109.5106, 31.3343], + [-109.05, 31.3328], + [-108.2085, 31.3334], + [-108.2084, 31.7838], + [-106.5291, 31.7838], + [-106.5706, 31.8102], + [-106.636, 31.8694], + [-106.6143, 31.9535], + [-106.6193, 32.0012], + [-105.2534, 32.0017], + [-104.7467, 32.0032], + [-103.0642, 31.9996], + [-103.0632, 33.0017], + [-103.0427, 34.0007], + [-103.0426, 34.9535], + [-103.0408, 36.5005], + [-103.0007, 36.5013], + [-103.000899764, 36.998412581], + [-103.65304205, 36.997237454], + [-104.1849, 36.9958], + [-104.3313, 36.993], + [-105.0326, 36.9934], + [-105.1011, 36.9957], + [-105.76177659, 36.99698154], + [-106.8717, 36.9923], + [-106.8787, 36.999], + [-107.4147, 36.9994], + [-107.965, 36.9971], + [-109.0449, 36.9986], + [-109.0437, 37.7536], + [-109.0409, 38.1603], + [-109.0607, 38.2768], + [-109.0596, 38.6727], + [-109.0538, 39.0135], + [-109.049, 41], + [-110.0001, 40.9992], + [-110.2764, 40.9963], + [-111.0456, 40.9978], + [-111.046989374, 42.000501202], + [-111.4479, 42.0012], + [-111.5833, 42.0042], + [-112.156, 41.9981], + [-112.164, 42.0017], + [-112.9579, 41.999], + [-113.8526, 41.9898], + [-114.044298938, 41.993413276], + [-114.5984, 41.9953], + [-114.8546, 42.0003], + [-115.2264, 41.9945], + [-117.0293, 42.0003] + ] + ] + }, + "properties": { + "id": "9432f503-fcbe-4e87-8c25-56d19462434c", + "code": "SW", + "name": "Southwest", + "abbreviation": "R-SW", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-117.0391, 48.5904], + [-117.0294, 48.9998], + [-117.4335, 49.0009], + [-121.9554, 49], + [-122.7539, 49.0033], + [-122.7916, 48.9798], + [-122.7514, 48.9111], + [-122.7866, 48.8855], + [-122.7192, 48.8494], + [-122.7056, 48.8003], + [-122.6472, 48.7847], + [-122.6502, 48.7156], + [-122.6085, 48.7628], + [-122.5356, 48.7754], + [-122.4903, 48.7425], + [-122.5191, 48.7168], + [-122.5038, 48.6568], + [-122.4261, 48.6], + [-122.4886, 48.5358], + [-122.4709, 48.469], + [-122.585, 48.4661], + [-122.6147, 48.5225], + [-122.6658, 48.4847], + [-122.6575, 48.4083], + [-122.558, 48.4281], + [-122.5331, 48.3747], + [-122.4847, 48.3714], + [-122.3747, 48.3008], + [-122.3972, 48.25], + [-122.4678, 48.2686], + [-122.5311, 48.2497], + [-122.5372, 48.1839], + [-122.49, 48.1206], + [-122.4419, 48.1307], + [-122.4783, 48.1878], + [-122.4486, 48.2325], + [-122.3922, 48.2303], + [-122.3533, 48.1879], + [-122.362, 48.1204], + [-122.2378, 48.0303], + [-122.2309, 47.9706], + [-122.3066, 47.9498], + [-122.3373, 47.8499], + [-122.3954, 47.8066], + [-122.3736, 47.7266], + [-122.4358, 47.6619], + [-122.3369, 47.6008], + [-122.4209, 47.5761], + [-122.3682, 47.4592], + [-122.3259, 47.3934], + [-122.324, 47.3504], + [-122.429, 47.3193], + [-122.435, 47.2622], + [-122.5101, 47.307], + [-122.5631, 47.2443], + [-122.5916, 47.1767], + [-122.685, 47.0978], + [-122.7858, 47.127], + [-122.8149, 47.1781], + [-122.9077, 47.1403], + [-122.912, 47.0556], + [-122.9511, 47.0974], + [-123, 47.0742], + [-122.9421, 47.1718], + [-123.0259, 47.1095], + [-123.0195, 47.1524], + [-122.9628, 47.1695], + [-122.9353, 47.2057], + [-122.9276, 47.2804], + [-122.846, 47.3114], + [-122.8255, 47.353], + [-122.7877, 47.2989], + [-122.8308, 47.244], + [-122.7721, 47.1685], + [-122.7212, 47.2214], + [-122.7532, 47.2894], + [-122.731, 47.3358], + [-122.6805, 47.3664], + [-122.6733, 47.2881], + [-122.5765, 47.2572], + [-122.5482, 47.2856], + [-122.572, 47.3269], + [-122.5385, 47.376], + [-122.5319, 47.4697], + [-122.4957, 47.5101], + [-122.5467, 47.5249], + [-122.5698, 47.5842], + [-122.6077, 47.5469], + [-122.5909, 47.6347], + [-122.6142, 47.6533], + [-122.5539, 47.7464], + [-122.4728, 47.7484], + [-122.5133, 47.8806], + [-122.5478, 47.9189], + [-122.5967, 47.9202], + [-122.5735, 47.8746], + [-122.6846, 47.7979], + [-122.7487, 47.7201], + [-122.7532, 47.6678], + [-122.9155, 47.6218], + [-123.0311, 47.5104], + [-123.1194, 47.39], + [-123.0242, 47.3613], + [-122.901, 47.4225], + [-122.9116, 47.3895], + [-123.0192, 47.3547], + [-123.1187, 47.3391], + [-123.158, 47.3703], + [-123.1104, 47.4551], + [-123.0578, 47.5014], + [-122.982, 47.615], + [-122.8889, 47.6903], + [-122.8645, 47.7699], + [-122.7866, 47.8038], + [-122.8322, 47.6918], + [-122.7715, 47.6934], + [-122.7431, 47.8092], + [-122.6864, 47.8325], + [-122.693, 47.8678], + [-122.6304, 47.8846], + [-122.6809, 47.9324], + [-122.7347, 48.0334], + [-122.8008, 48.0867], + [-122.7637, 48.1429], + [-122.8308, 48.1345], + [-122.8835, 48.0773], + [-122.827, 48.0442], + [-122.8399, 48.002], + [-122.9153, 48.0958], + [-122.9752, 48.097], + [-123.0385, 48.0547], + [-123.0623, 48.1182], + [-123.1267, 48.1542], + [-123.1769, 48.155], + [-123.2408, 48.1172], + [-123.3956, 48.1144], + [-123.5553, 48.1511], + [-123.6275, 48.1389], + [-123.6725, 48.1631], + [-123.8633, 48.1542], + [-124.0495, 48.1776], + [-124.1292, 48.2206], + [-124.2491, 48.2641], + [-124.275, 48.2545], + [-124.3844, 48.285], + [-124.5646, 48.3676], + [-124.7178, 48.3908], + [-124.6595, 48.327], + [-124.7047, 48.2369], + [-124.7, 48.1906], + [-124.7342, 48.1647], + [-124.6872, 48.0978], + [-124.6614, 47.9461], + [-124.6229, 47.8863], + [-124.4969, 47.8225], + [-124.4728, 47.7717], + [-124.4314, 47.7464], + [-124.3667, 47.5844], + [-124.3203, 47.3558], + [-124.2794, 47.3036], + [-124.2339, 47.2847], + [-124.1861, 47.1333], + [-124.1723, 46.9931], + [-124.1778, 46.9261], + [-124.1272, 46.9489], + [-124.1492, 47.0283], + [-124.107, 47.0424], + [-124.0292, 47.0299], + [-124.0203, 46.9911], + [-123.9462, 46.9679], + [-123.8231, 46.9572], + [-123.9826, 46.9231], + [-124.0861, 46.8617], + [-124.1311, 46.9], + [-124.1011, 46.8136], + [-124.0969, 46.7464], + [-124.0201, 46.7129], + [-123.8939, 46.75], + [-123.8512, 46.703], + [-123.9222, 46.6731], + [-123.9586, 46.6115], + [-123.8947, 46.5486], + [-123.9439, 46.4756], + [-123.9054, 46.4291], + [-123.9664, 46.3792], + [-124.0147, 46.3811], + [-124.0311, 46.4936], + [-124.0236, 46.5842], + [-124.07, 46.6364], + [-124.0594, 46.5386], + [-124.0594, 46.3956], + [-124.0778, 46.2842], + [-124.0228, 46.3142], + [-123.8733, 46.2406], + [-123.8054, 46.2836], + [-123.7586, 46.2755], + [-123.6969, 46.3067], + [-123.6689, 46.267], + [-123.5642, 46.2606], + [-123.5377, 46.2363], + [-123.6126, 46.1874], + [-123.7325, 46.1736], + [-123.7679, 46.205], + [-123.8264, 46.19], + [-123.855, 46.1572], + [-123.9526, 46.2078], + [-123.9828, 46.2039], + [-123.9329, 46.0674], + [-123.9389, 45.9766], + [-123.9973, 45.9454], + [-123.9632, 45.8976], + [-123.9693, 45.7808], + [-123.933, 45.6917], + [-123.9575, 45.5709], + [-123.9072, 45.5473], + [-123.8746, 45.4988], + [-123.8988, 45.4754], + [-123.944, 45.5072], + [-123.9799, 45.4866], + [-123.9314, 45.4037], + [-123.9778, 45.3385], + [-123.9619, 45.2797], + [-123.9705, 45.1583], + [-124.0122, 45.0772], + [-124.0089, 45.0122], + [-124.0311, 44.9033], + [-124.0764, 44.7719], + [-124.0572, 44.7367], + [-124.0575, 44.6596], + [-124.0864, 44.4856], + [-124.0808, 44.4256], + [-124.0998, 44.3342], + [-124.1225, 44.0927], + [-124.1642, 43.8289], + [-124.2286, 43.5689], + [-124.2634, 43.483], + [-124.3336, 43.3611], + [-124.3858, 43.3306], + [-124.3814, 43.2689], + [-124.4753, 42.9622], + [-124.5558, 42.8383], + [-124.5214, 42.7889], + [-124.5138, 42.7324], + [-124.4739, 42.7333], + [-124.4136, 42.6592], + [-124.39, 42.57], + [-124.4344, 42.4322], + [-124.4325, 42.3203], + [-124.4144, 42.2519], + [-124.3614, 42.1808], + [-124.3523, 42.1005], + [-124.2047, 41.9819], + [-124.2106, 41.8769], + [-124.2572, 41.7858], + [-124.1475, 41.7186], + [-124.1339, 41.6558], + [-124.0683, 41.5456], + [-124.0822, 41.5108], + [-124.0633, 41.4333], + [-124.1078, 41.2233], + [-124.164, 41.1015], + [-124.1125, 41.0287], + [-124.1531, 40.8675], + [-124.0881, 40.8529], + [-124.0889, 40.8236], + [-124.1836, 40.8008], + [-124.2228, 40.7222], + [-124.2997, 40.6668], + [-124.409, 40.4438], + [-124.3752, 40.3947], + [-124.3496, 40.3124], + [-124.3637, 40.2618], + [-124.1873, 40.1303], + [-124.1105, 40.1043], + [-124.0808, 40.0309], + [-124.0368, 40.0139], + [-123.9304, 39.9094], + [-123.8991, 39.8553], + [-123.8528, 39.8331], + [-123.8327, 39.7247], + [-123.7864, 39.6607], + [-123.7736, 39.5311], + [-123.8197, 39.4361], + [-123.8271, 39.3487], + [-123.8008, 39.3189], + [-123.7713, 39.1949], + [-123.7353, 39.1583], + [-123.6897, 39.0339], + [-123.73, 38.9542], + [-123.6436, 38.8414], + [-123.4411, 38.6989], + [-123.3333, 38.5644], + [-123.2511, 38.5095], + [-123.1306, 38.4523], + [-123.0647, 38.3536], + [-123.0711, 38.3269], + [-123.0039, 38.2966], + [-122.9304, 38.2135], + [-122.8442, 38.0908], + [-122.9831, 38.2347], + [-122.9546, 38.1767], + [-122.9613, 38.1114], + [-123.01, 38.0036], + [-122.9325, 38.0358], + [-122.8306, 38.0028], + [-122.7756, 37.9433], + [-122.7019, 37.8936], + [-122.6747, 37.9131], + [-122.4999, 37.8198], + [-122.4378, 37.8828], + [-122.5014, 37.9272], + [-122.4617, 38.0033], + [-122.4969, 38.02], + [-122.4781, 38.1147], + [-122.3958, 38.1433], + [-122.3139, 38.1092], + [-122.2742, 38.0661], + [-122.2311, 38.0652], + [-122.1339, 38.0419], + [-122.0442, 38.1369], + [-121.9733, 38.0736], + [-121.9122, 38.0835], + [-121.9021, 38.0495], + [-121.8456, 38.0737], + [-121.7996, 38.0628], + [-121.8124, 38.0178], + [-121.9506, 38.0514], + [-122.0703, 38.0533], + [-122.1481, 38.0217], + [-122.1903, 38.0531], + [-122.2625, 38.0506], + [-122.3, 38.0103], + [-122.3964, 37.9542], + [-122.3892, 37.9092], + [-122.3339, 37.9092], + [-122.2958, 37.8294], + [-122.3325, 37.7825], + [-122.2464, 37.7517], + [-122.1572, 37.6558], + [-122.1123, 37.5106], + [-122.0581, 37.4964], + [-122.0397, 37.4408], + [-122.2108, 37.4919], + [-122.2012, 37.5396], + [-122.2622, 37.5744], + [-122.3591, 37.5922], + [-122.3858, 37.6289], + [-122.3932, 37.7074], + [-122.3803, 37.7739], + [-122.4089, 37.8117], + [-122.5128, 37.7764], + [-122.4936, 37.6275], + [-122.5194, 37.5378], + [-122.4642, 37.4972], + [-122.4009, 37.3586], + [-122.4192, 37.2478], + [-122.4058, 37.1972], + [-122.3375, 37.1176], + [-122.2878, 37.1047], + [-122.2231, 37.0242], + [-122.1528, 36.9753], + [-122.0701, 36.9481], + [-121.9722, 36.9536], + [-121.9393, 36.9779], + [-121.8892, 36.9581], + [-121.8286, 36.8819], + [-121.7881, 36.805], + [-121.8201, 36.6662], + [-121.8859, 36.6008], + [-121.9386, 36.6403], + [-121.9772, 36.5797], + [-121.9353, 36.5625], + [-121.9473, 36.4903], + [-121.9144, 36.4253], + [-121.8989, 36.3083], + [-121.8114, 36.2325], + [-121.7081, 36.1878], + [-121.6331, 36.1189], + [-121.573, 36.0226], + [-121.5028, 36], + [-121.4667, 35.8881], + [-121.4161, 35.8575], + [-121.3177, 35.7557], + [-121.2788, 35.6673], + [-121.1719, 35.6382], + [-121.0977, 35.547], + [-121.0059, 35.4617], + [-120.9087, 35.4482], + [-120.84, 35.3453], + [-120.9, 35.2522], + [-120.8564, 35.2075], + [-120.7564, 35.1594], + [-120.6992, 35.1708], + [-120.6388, 35.1334], + [-120.6358, 35.0178], + [-120.6683, 34.9008], + [-120.6097, 34.8436], + [-120.6386, 34.7564], + [-120.6006, 34.7059], + [-120.6464, 34.5789], + [-120.5147, 34.5253], + [-120.4725, 34.4486], + [-120.2967, 34.4706], + [-120.1417, 34.4733], + [-120.007, 34.4603], + [-119.8783, 34.4064], + [-119.7817, 34.4156], + [-119.7281, 34.3956], + [-119.6156, 34.4211], + [-119.4592, 34.3739], + [-119.3903, 34.3181], + [-119.2781, 34.2669], + [-119.2133, 34.1453], + [-119.1439, 34.1083], + [-118.9375, 34.0431], + [-118.8525, 34.0336], + [-118.8075, 34.0005], + [-118.7403, 34.0331], + [-118.5695, 34.0417], + [-118.5247, 34.0297], + [-118.4433, 33.9464], + [-118.3913, 33.8379], + [-118.4286, 33.7742], + [-118.297, 33.7089], + [-118.2528, 33.7478], + [-118.1811, 33.7649], + [-118.0947, 33.7369], + [-118.0056, 33.6575], + [-117.9281, 33.6075], + [-117.8828, 33.6017], + [-117.7822, 33.5406], + [-117.7142, 33.4594], + [-117.6767, 33.4608], + [-117.4719, 33.2989], + [-117.3262, 33.1189], + [-117.2789, 33.0005], + [-117.2514, 32.8744], + [-117.2811, 32.8214], + [-117.2389, 32.7809], + [-117.2558, 32.6997], + [-117.2154, 32.7246], + [-117.1253, 32.6806], + [-117.0914, 32.5978], + [-117.1231, 32.5344], + [-115.9952, 32.6271], + [-114.7192, 32.718], + [-114.6985, 32.745], + [-114.681, 32.7365], + [-114.6139, 32.7291], + [-114.5265, 32.758], + [-114.5289, 32.7933], + [-114.5141, 32.8105], + [-114.466, 32.8462], + [-114.467, 32.9515], + [-114.4985, 33.0072], + [-114.5142, 33.029], + [-114.5666, 33.0389], + [-114.6607, 33.0333], + [-114.6997, 33.1197], + [-114.6757, 33.1634], + [-114.6765, 33.2737], + [-114.7288, 33.3023], + [-114.6988, 33.3642], + [-114.7072, 33.3866], + [-114.7223, 33.4095], + [-114.6342, 33.4235], + [-114.5917, 33.5004], + [-114.5247, 33.5579], + [-114.5295, 33.6742], + [-114.494, 33.7004], + [-114.5185, 33.8287], + [-114.5284, 33.8598], + [-114.5152, 33.862], + [-114.5033, 33.8671], + [-114.5315, 33.9407], + [-114.5178, 33.96], + [-114.4644, 33.9968], + [-114.4373, 34.0635], + [-114.41, 34.1134], + [-114.3226, 34.1415], + [-114.2886, 34.1727], + [-114.2688, 34.1755], + [-114.2259, 34.1929], + [-114.1556, 34.2638], + [-114.1339, 34.2638], + [-114.1295, 34.2672], + [-114.1378, 34.3081], + [-114.3354, 34.4544], + [-114.3849, 34.4639], + [-114.3789, 34.5304], + [-114.431, 34.5925], + [-114.4708, 34.7152], + [-114.5585, 34.7796], + [-114.5803, 34.8307], + [-114.6347, 34.8802], + [-114.629, 34.9112], + [-114.6289, 34.9937], + [-114.6329, 35.0021], + [-114.888038436, 35.208708962], + [-115.065428477, 35.350675077], + [-115.193553028, 35.452773599], + [-115.648, 35.8111], + [-115.6513, 35.8111], + [-116.2954, 36.3122], + [-116.79135207, 36.688950431], + [-117.269365759, 37.048759017], + [-117.286724092, 37.061653047], + [-117.699558286, 37.366348171], + [-118.1091, 37.6663], + [-118.8591, 38.2047], + [-119.341981891, 38.544214822], + [-119.502818548, 38.65661886], + [-120.0009, 39.0005], + [-120.0053, 39.2875], + [-119.9955, 40.3085], + [-119.9999, 40.9331], + [-119.9984, 41.6905], + [-120.0003, 41.9953], + [-119.5064, 41.9925], + [-118.7764, 41.993], + [-118.0426, 41.9974], + [-117.0293, 42.0003], + [-117.0271, 43.8082], + [-117.0203, 43.8594], + [-116.9826, 43.8669], + [-116.962, 43.9126], + [-116.9728, 43.9678], + [-116.936, 43.9916], + [-116.9689, 44.0873], + [-116.9196, 44.1076], + [-116.8935, 44.1703], + [-116.9664, 44.1964], + [-116.971, 44.2348], + [-117.052, 44.2329], + [-117.0924, 44.2718], + [-117.181, 44.2644], + [-117.2181, 44.3018], + [-117.1896, 44.3309], + [-117.2402, 44.3893], + [-117.213, 44.4282], + [-117.224, 44.4799], + [-117.1473, 44.5352], + [-117.1414, 44.57], + [-117.0285, 44.7511], + [-116.9352, 44.783], + [-116.8552, 44.8816], + [-116.833, 44.9386], + [-116.8413, 45.0287], + [-116.7284, 45.145], + [-116.667, 45.3271], + [-116.5849, 45.4414], + [-116.5203, 45.5553], + [-116.4616, 45.6093], + [-116.5341, 45.6925], + [-116.5345, 45.7349], + [-116.5924, 45.7793], + [-116.6623, 45.7812], + [-116.6935, 45.818], + [-116.7614, 45.8166], + [-116.789, 45.8586], + [-116.866, 45.9152], + [-116.9101, 45.9902], + [-116.92, 46.0146], + [-116.9383, 46.0474], + [-116.9569, 46.0753], + [-116.9218, 46.1711], + [-116.9631, 46.2032], + [-116.987, 46.2957], + [-117.0605, 46.3629], + [-117.038, 46.4288], + [-117.0422, 47.3665], + [-117.0426, 48.0459], + [-117.0391, 48.5904] + ] + ], + [ + [ + [-122.602, 48.4102], + [-122.6647, 48.4017], + [-122.6705, 48.3603], + [-122.7539, 48.258], + [-122.7637, 48.2155], + [-122.6794, 48.1544], + [-122.6208, 48.1604], + [-122.5986, 48.1098], + [-122.5987, 48.0269], + [-122.5414, 47.9936], + [-122.4811, 47.9919], + [-122.4308, 47.9139], + [-122.3758, 47.9246], + [-122.3492, 47.959], + [-122.3767, 48.0345], + [-122.4462, 48.0528], + [-122.5214, 48.0975], + [-122.5264, 48.0163], + [-122.5717, 48.1027], + [-122.5672, 48.1478], + [-122.6579, 48.2826], + [-122.5064, 48.3103], + [-122.5606, 48.3464], + [-122.602, 48.4102] + ] + ], + [ + [ + [-119.9125, 34.0767], + [-119.8764, 34.0322], + [-119.8741, 33.98], + [-119.8187, 33.9595], + [-119.7208, 33.9589], + [-119.6637, 33.9851], + [-119.5603, 33.9956], + [-119.52, 34.0342], + [-119.5862, 34.0539], + [-119.6331, 34.0128], + [-119.6847, 34.02], + [-119.7572, 34.0592], + [-119.8098, 34.0511], + [-119.9125, 34.0767] + ] + ], + [ + [ + [-120.0513, 34.0371], + [-120.2386, 34.0102], + [-120.1693, 33.917], + [-120.1203, 33.8942], + [-119.971, 33.9413], + [-119.9814, 33.9798], + [-120.0466, 34], + [-120.0513, 34.0371] + ] + ], + [ + [ + [-118.6029, 33.4786], + [-118.5742, 33.44], + [-118.4886, 33.4189], + [-118.4656, 33.3256], + [-118.3784, 33.3208], + [-118.3261, 33.2986], + [-118.3106, 33.3367], + [-118.3664, 33.4058], + [-118.5364, 33.4775], + [-118.6029, 33.4786] + ] + ], + [ + [ + [-122.8847, 48.7119], + [-122.9394, 48.7095], + [-123.0302, 48.6307], + [-122.9578, 48.6319], + [-122.9482, 48.5975], + [-122.8625, 48.6065], + [-122.8842, 48.6592], + [-122.8145, 48.6064], + [-122.7513, 48.665], + [-122.8847, 48.7119] + ] + ], + [ + [ + [-123.1406, 48.6236], + [-123.1764, 48.5619], + [-123.133, 48.4981], + [-123.0368, 48.458], + [-123.0092, 48.4739], + [-123.0166, 48.5619], + [-123.1406, 48.6236] + ] + ], + [ + [ + [-118.5892, 33.0294], + [-118.5767, 32.9741], + [-118.4891, 32.8436], + [-118.4291, 32.8038], + [-118.3706, 32.84], + [-118.485, 32.9233], + [-118.5633, 33.0236], + [-118.5892, 33.0294] + ] + ], + [ + [ + [-122.4533, 47.5013], + [-122.5132, 47.4529], + [-122.5268, 47.3421], + [-122.4844, 47.3803], + [-122.4442, 47.3611], + [-122.4266, 47.402], + [-122.4533, 47.5013] + ] + ], + [ + [ + [-122.5339, 47.7056], + [-122.5652, 47.7108], + [-122.5778, 47.5994], + [-122.4982, 47.597], + [-122.5062, 47.703], + [-122.5339, 47.7056] + ] + ], + [ + [ + [-122.8825, 48.5695], + [-122.9222, 48.5394], + [-122.9457, 48.4656], + [-122.8599, 48.4304], + [-122.8825, 48.5695] + ] + ], + [ + [ + [-122.8472, 47.3003], + [-122.9194, 47.2761], + [-122.9253, 47.2328], + [-122.8747, 47.1642], + [-122.8406, 47.2078], + [-122.8711, 47.2469], + [-122.8472, 47.3003] + ] + ], + [ + [ + [-120.3654, 34.0746], + [-120.4395, 34.0383], + [-120.3604, 34.0134], + [-120.3069, 34.0197], + [-120.3654, 34.0746] + ] + ], + [ + [ + [-119.5224, 33.2815], + [-119.5737, 33.2584], + [-119.4704, 33.2144], + [-119.4598, 33.2563], + [-119.5224, 33.2815] + ] + ], + [ + [ + [-122.6895, 48.1028], + [-122.7419, 48.0491], + [-122.6881, 48.0081], + [-122.6895, 48.1028] + ] + ], + [ + [ + [-122.6417, 48.5878], + [-122.6522, 48.5306], + [-122.583, 48.5511], + [-122.6417, 48.5878] + ] + ], + [ + [ + [-123.9789, 46.4947], + [-124.0053, 46.4633], + [-123.9417, 46.4108], + [-123.9789, 46.4947] + ] + ], + [ + [ + [-122.7097, 48.6067], + [-122.7216, 48.5403], + [-122.6758, 48.5661], + [-122.7097, 48.6067] + ] + ], + [ + [ + [-122.6911, 47.1841], + [-122.7419, 47.1531], + [-122.7116, 47.1278], + [-122.6911, 47.1841] + ] + ] + ] + }, + "properties": { + "id": "da91c585-dacb-46b4-998a-dabe27e6d774", + "code": "WC", + "name": "West Coast", + "abbreviation": "R-WC", + "parent_id": "076ec73e-f099-4239-b35d-5994f8d6c28e" + } + } + ] +} diff --git a/client/src/containers/action-map/map/views/states/data.json b/client/src/containers/action-map/map/views/states/data.json index 947819a7..4d3e9f1d 100644 --- a/client/src/containers/action-map/map/views/states/data.json +++ b/client/src/containers/action-map/map/views/states/data.json @@ -1 +1,14199 @@ -{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.3994,30.395],[-88.3577,30.4057],[-88.1881,30.3661],[-88.1909,30.3181],[-88.1294,30.3383],[-88.1073,30.3782],[-88.0872,30.5669],[-88.0117,30.6872],[-87.9696,30.7098],[-87.9142,30.6508],[-87.9021,30.5477],[-87.9372,30.4829],[-87.9075,30.4103],[-87.7596,30.2949],[-87.7667,30.2639],[-87.9325,30.2311],[-87.8289,30.2269],[-87.5581,30.2714],[-87.5092,30.3422],[-87.3997,30.4236],[-87.4353,30.4873],[-87.445,30.5068],[-87.4468,30.5228],[-87.4421,30.5365],[-87.429,30.5525],[-87.4265,30.5605],[-87.4015,30.6059],[-87.3939,30.6286],[-87.3958,30.6354],[-87.4016,30.6595],[-87.4328,30.6889],[-87.5353,30.7484],[-87.6372,30.867],[-87.5921,30.9539],[-87.5913,30.9713],[-87.6012,31.0004],[-86.772,31],[-86.7016,30.9956],[-86.0354,30.9943],[-85.4918,30.9967],[-85.0035,31.0021],[-85.0049,31.0149],[-85.0106,31.028],[-85.0293,31.0761],[-85.1093,31.1911],[-85.1171,31.2776],[-85.0454,31.5443],[-85.0674,31.627],[-85.1257,31.6948],[-85.1445,31.7818],[-85.1383,31.8274],[-85.1175,31.9124],[-85.0862,31.9407],[-85.0522,32.089],[-85.0645,32.1315],[-85.0489,32.1441],[-84.9775,32.1928],[-84.8935,32.2646],[-84.9997,32.3223],[-84.9824,32.4057],[-85.0048,32.5172],[-85.075,32.5885],[-85.1149,32.6962],[-85.1253,32.7789],[-85.1693,32.8117],[-85.2245,33.0693],[-85.4115,34.0299],[-85.4899,34.4162],[-85.573,34.8029],[-85.6055,34.9855],[-85.8477,34.9889],[-86.3187,34.9921],[-86.8844,34.9924],[-87.225499309,35.000224287],[-87.2288,35.0003],[-87.478331452,35.003295652],[-87.612903911,35.004911209],[-87.6203,35.005],[-88.0795,35.007],[-88.2029,35.003],[-88.199696765,34.997800227],[-88.199696512,34.997799817],[-88.1883,34.9793],[-88.1525,34.9269],[-88.098,34.8964],[-88.1535,34.4881],[-88.2067,34.0458],[-88.2474,33.7499],[-88.4262,32.262],[-88.472,31.9],[-88.4507,31.444],[-88.4101,30.7033],[-88.3994,30.395]]]},"properties":{"id":"4ebfdac2-f0db-480a-988c-435205270b3f","code":"AL","name":"Alabama","abbreviation":"S-AL","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-141.3146,60.0542],[-141.2693,60.0078],[-141.2954,59.9363],[-141.3678,59.9307],[-141.4631,59.8853],[-140.9773,59.7684],[-140.9064,59.7424],[-140.6681,59.7105],[-140.3441,59.6939],[-140.2316,59.704],[-140.1488,59.74],[-139.9576,59.7834],[-140.1333,59.8056],[-140.1734,59.7684],[-140.2312,59.7674],[-140.248,59.806],[-140.1671,59.8037],[-140.0438,59.8387],[-139.9326,59.7917],[-139.8044,59.8184],[-139.7121,59.9188],[-139.6031,59.9521],[-139.6004,59.9876],[-139.5349,60.0469],[-139.4958,60.0021],[-139.4293,60.0021],[-139.2529,59.8602],[-139.1405,59.8625],[-139.0483,59.8406],[-139.1922,59.8417],[-139.3006,59.8194],[-139.2772,59.7864],[-139.3211,59.755],[-139.2711,59.6925],[-139.2283,59.6061],[-139.2989,59.5611],[-139.3567,59.5897],[-139.2928,59.6403],[-139.3497,59.7461],[-139.3345,59.8216],[-139.3,59.8524],[-139.4722,59.9973],[-139.5349,59.9366],[-139.6289,59.9022],[-139.6006,59.8047],[-139.5422,59.7367],[-139.4717,59.7031],[-139.5878,59.6458],[-139.6653,59.5663],[-139.6967,59.6197],[-139.7328,59.5475],[-139.8378,59.5581],[-139.8567,59.5353],[-139.63,59.4569],[-139.4111,59.4119],[-139.4006,59.3797],[-139.2911,59.3867],[-139.1894,59.3222],[-138.8938,59.2388],[-138.6267,59.1281],[-138.4806,59.11],[-138.1858,59.0168],[-137.9506,58.8861],[-137.925,58.8422],[-137.9294,58.7831],[-137.7817,58.7181],[-137.6739,58.6467],[-137.515,58.6636],[-137.5122,58.6428],[-137.6428,58.6025],[-137.5761,58.5917],[-137.3978,58.5064],[-137.16,58.4239],[-137.095,58.3814],[-137.0128,58.4106],[-136.8406,58.365],[-136.8578,58.3167],[-136.7938,58.2941],[-136.7067,58.2958],[-136.7325,58.2595],[-136.665,58.2086],[-136.5828,58.2272],[-136.5647,58.2624],[-136.6067,58.3003],[-136.5422,58.3322],[-136.485,58.2994],[-136.4378,58.315],[-136.3755,58.2986],[-136.3706,58.3704],[-136.3125,58.3783],[-136.2828,58.315],[-136.2028,58.3422],[-136.1004,58.3457],[-136.0383,58.3831],[-136.0992,58.513],[-136.1867,58.5097],[-136.1767,58.5614],[-136.2045,58.6133],[-136.3155,58.671],[-136.3933,58.6175],[-136.5211,58.5936],[-136.3496,58.6867],[-136.3913,58.7176],[-136.5793,58.7806],[-136.4932,58.7915],[-136.5617,58.8324],[-136.6467,58.8406],[-136.7467,58.8772],[-137.0139,58.9042],[-136.9417,58.9178],[-136.9172,58.9494],[-137.0433,59.0206],[-137.0311,59.0618],[-136.8754,58.9629],[-136.6236,58.9032],[-136.6918,58.9976],[-136.5769,58.9139],[-136.5328,58.9214],[-136.4883,58.8369],[-136.3964,58.8168],[-136.2517,58.7525],[-136.1774,58.7545],[-136.106,58.8639],[-136.1533,59.0061],[-136.0601,58.9284],[-136.0598,58.8537],[-135.9872,58.8614],[-135.92,58.905],[-135.8044,58.9036],[-135.7906,58.8867],[-135.9444,58.8775],[-136.0145,58.844],[-136.0806,58.8281],[-136.0828,58.8076],[-135.9633,58.7036],[-135.8905,58.5753],[-135.8522,58.5386],[-135.8977,58.4488],[-135.9082,58.379],[-135.7044,58.3956],[-135.62,58.4269],[-135.475,58.3756],[-135.4579,58.4075],[-135.5155,58.4756],[-135.4529,58.4561],[-135.3978,58.3254],[-135.314,58.2459],[-135.2222,58.2361],[-135.1627,58.2088],[-135.09,58.24],[-135.1071,58.2658],[-135.0535,58.3464],[-135.1651,58.5634],[-135.2389,58.6192],[-135.1394,58.6172],[-135.227,58.7178],[-135.2467,58.7908],[-135.2839,58.8183],[-135.4022,58.9728],[-135.3822,59.1017],[-135.4406,59.1132],[-135.4756,59.2269],[-135.3849,59.1731],[-135.37,59.1127],[-135.3083,59.0817],[-135.3597,59.2004],[-135.4306,59.2258],[-135.3618,59.4494],[-135.3286,59.4442],[-135.3587,59.3718],[-135.3711,59.2653],[-135.2849,59.1974],[-135.2036,59.0704],[-135.1772,58.9992],[-135.1533,58.8551],[-135.0267,58.7328],[-135.0268,58.7899],[-134.9523,58.7952],[-134.9203,58.6804],[-134.9903,58.6765],[-134.8405,58.5184],[-134.7878,58.495],[-134.7781,58.3954],[-134.7267,58.3717],[-134.6467,58.3867],[-134.6367,58.3409],[-134.5389,58.3478],[-134.4985,58.3432],[-134.2134,58.2045],[-134.1494,58.2006],[-134.1037,58.2492],[-134.1405,58.3061],[-134.0578,58.3325],[-134.0161,58.4012],[-133.9795,58.3197],[-134.0816,58.2794],[-134.0672,58.0928],[-134.05,58.0617],[-133.8888,57.9741],[-133.786,58.009],[-133.7761,58.0639],[-133.7117,57.9953],[-133.6939,57.9372],[-133.7619,57.9954],[-133.8306,57.97],[-133.8501,57.934],[-133.6967,57.7914],[-133.6322,57.7914],[-133.6276,57.8454],[-133.5744,57.9178],[-133.5798,57.8311],[-133.5607,57.7761],[-133.4247,57.7225],[-133.3297,57.6634],[-133.2794,57.6611],[-133.1756,57.5818],[-133.3898,57.6593],[-133.5276,57.6876],[-133.5704,57.721],[-133.6509,57.7165],[-133.6621,57.6133],[-133.5621,57.5617],[-133.4517,57.5886],[-133.5167,57.5442],[-133.5276,57.4895],[-133.4673,57.4219],[-133.4186,57.4362],[-133.3645,57.4131],[-133.473,57.3873],[-133.4521,57.3547],[-133.2345,57.3213],[-133.2564,57.2845],[-133.3401,57.2988],[-133.4744,57.2978],[-133.5336,57.2605],[-133.4995,57.2272],[-133.5342,57.1819],[-133.465,57.1501],[-133.3161,57.1067],[-133.1728,57.1773],[-133.1411,57.1619],[-133.1817,57.0891],[-133.0789,57.0825],[-133.0044,57.0492],[-132.8737,57.03],[-132.8349,57.0658],[-132.7829,57.0021],[-132.7889,56.9717],[-132.8721,57.0014],[-132.9528,56.9942],[-132.8861,56.9222],[-132.8096,56.892],[-132.79,56.8433],[-132.6439,56.7817],[-132.4917,56.7456],[-132.5572,56.7148],[-132.5322,56.6881],[-132.5656,56.6286],[-132.4982,56.6035],[-132.3511,56.6367],[-132.3592,56.5277],[-132.2893,56.4844],[-132.2113,56.4607],[-132.1977,56.4157],[-132.1209,56.365],[-132.0944,56.3761],[-132.0622,56.377],[-131.9944,56.3603],[-131.98,56.3011],[-131.9317,56.2364],[-131.7639,56.2056],[-131.9728,56.1739],[-131.9783,56.0439],[-131.9605,56.0128],[-131.9911,55.9628],[-132.0709,55.9242],[-132.0417,55.8858],[-132.0917,55.8531],[-132.0723,55.8092],[-132.1928,55.7856],[-132.1967,55.7308],[-132.287,55.7617],[-132.2281,55.6993],[-132.1851,55.5879],[-131.9695,55.4978],[-131.9389,55.5677],[-132.0111,55.6731],[-131.9278,55.6117],[-131.8811,55.6228],[-131.8294,55.6833],[-131.7697,55.8241],[-131.9194,55.8644],[-131.8323,55.8863],[-131.7606,55.8778],[-131.6767,55.9194],[-131.4397,56.0026],[-131.4083,55.9845],[-131.3883,55.9598],[-131.2278,56.0057],[-131.0945,56.0781],[-131.096,56.0431],[-131.2155,55.9864],[-131.0928,55.8948],[-130.9069,55.7122],[-130.8722,55.5569],[-130.7967,55.5792],[-130.7766,55.5253],[-130.8666,55.5428],[-130.9004,55.4673],[-130.8783,55.3316],[-130.8322,55.2887],[-130.9272,55.301],[-130.9917,55.2433],[-131.0915,55.1946],[-131.0663,55.1225],[-130.9939,55.0853],[-130.9025,55.1025],[-130.8211,55.1445],[-130.7952,55.0669],[-130.8528,55.1191],[-130.8715,55.0984],[-130.9893,55.0669],[-131.0051,55.0028],[-130.9532,54.9642],[-130.9342,54.8017],[-130.8561,54.7675],[-130.7361,54.8214],[-130.7611,54.9408],[-130.7372,54.9536],[-130.7204,54.7649],[-130.6567,54.7745],[-130.6322,54.8167],[-130.525,54.8668],[-130.4971,54.8335],[-130.3706,54.9067],[-130.2289,55.0378],[-130.1951,55.1044],[-130.0987,55.2133],[-129.9942,55.2902],[-130.03,55.3228],[-130.0539,55.4425],[-130.1069,55.4957],[-130.15,55.5979],[-130.1246,55.6795],[-130.1568,55.7074],[-130.1725,55.7782],[-130.0917,55.8277],[-130.016,55.9235],[-130.003,56.0079],[-130.1054,56.1227],[-130.2459,56.0963],[-130.4255,56.1417],[-130.4682,56.2433],[-130.623,56.2669],[-130.7818,56.3671],[-131.087,56.4061],[-131.1733,56.4495],[-131.4716,56.5527],[-131.5813,56.6123],[-131.8354,56.5991],[-131.8604,56.7029],[-131.9009,56.7535],[-131.8731,56.8063],[-132.1231,56.8739],[-132.0448,57.0451],[-132.3687,57.0917],[-132.2478,57.2111],[-132.3692,57.3499],[-132.5539,57.4967],[-132.6608,57.6169],[-132.7512,57.6961],[-132.869,57.8397],[-133.0696,58.0001],[-133.172,58.1538],[-133.3487,58.2795],[-133.4599,58.3885],[-133.38,58.4318],[-133.6995,58.6091],[-133.841,58.7299],[-133.9719,58.7671],[-134.258,58.8609],[-134.3363,58.9236],[-134.3134,58.9621],[-134.4074,58.979],[-134.382,59.0388],[-134.4827,59.131],[-134.5655,59.1308],[-134.6789,59.1921],[-134.7007,59.2489],[-134.9598,59.281],[-135.0335,59.3502],[-134.9924,59.3878],[-135.1006,59.4278],[-135.0279,59.4746],[-135.0289,59.5636],[-135.1175,59.6231],[-135.2198,59.6629],[-135.2337,59.6961],[-135.3644,59.7396],[-135.4796,59.7981],[-135.9476,59.6634],[-136.1953,59.6388],[-136.3535,59.5999],[-136.2414,59.5591],[-136.2363,59.5267],[-136.3014,59.4658],[-136.3963,59.4474],[-136.464,59.463],[-136.4578,59.2814],[-136.582,59.1655],[-136.8247,59.1598],[-136.9996,59.0914],[-137.2827,59.0001],[-137.4515,58.9085],[-137.526,58.9066],[-137.5,58.9849],[-137.5418,59.1063],[-137.6074,59.2435],[-138.1689,59.5359],[-138.6092,59.76],[-138.6563,59.7992],[-138.7058,59.9062],[-139.0421,59.9916],[-139.177,60.0829],[-139.0485,60.3259],[-139.0521,60.3537],[-139.6801,60.3357],[-139.9741,60.1845],[-140.448,60.308],[-140.5203,60.2191],[-140.7683,60.2583],[-141.0016,60.3051],[-141.0018,63.9326],[-141.0032,65.0001],[-141.0022,67.0133],[-141.0069,67.9999],[-141.0023,68.5045],[-141.003,69.6462],[-141.1167,69.6729],[-141.2063,69.6792],[-141.2464,69.6297],[-141.3974,69.638],[-141.5339,69.7286],[-141.662,69.7589],[-141.75,69.7625],[-141.7854,69.7917],[-141.9,69.8042],[-142.0104,69.7958],[-142.1687,69.8458],[-142.2396,69.8458],[-142.3391,69.8859],[-142.3797,69.9287],[-142.5188,69.9604],[-142.5807,69.9589],[-142.5818,69.9974],[-142.7271,70.0375],[-142.8667,70.0563],[-142.9937,70.0583],[-143.0042,70.0771],[-143.1062,70.0771],[-143.2203,70.1099],[-143.35,70.0896],[-143.5125,70.0875],[-143.6583,70.0729],[-143.7292,70.0896],[-143.8078,70.0693],[-143.875,70.0771],[-144.0896,70.0375],[-144.4125,70.0271],[-144.4875,70.0167],[-144.6375,69.9646],[-144.8292,69.9833],[-144.9625,69.9583],[-145.025,69.9812],[-145.2625,69.9896],[-145.3,70.0104],[-145.4187,70.0292],[-145.4833,70.0583],[-145.6042,70.0333],[-145.5792,70.0708],[-145.8542,70.1625],[-145.9104,70.1146],[-146.1687,70.1646],[-146.5083,70.1854],[-146.7187,70.1687],[-146.8542,70.175],[-146.9458,70.15],[-147.1828,70.1547],[-147.2417,70.1771],[-147.4167,70.1854],[-147.5125,70.2021],[-147.6771,70.1979],[-147.7812,70.2167],[-147.7958,70.2813],[-147.9542,70.2729],[-148.0672,70.2859],[-148.1271,70.3271],[-148.2609,70.3255],[-148.3453,70.3016],[-148.4516,70.3068],[-148.4724,70.337],[-148.5813,70.3958],[-148.7104,70.4083],[-148.8354,70.3875],[-148.9229,70.3958],[-149.0562,70.4625],[-149.1625,70.4854],[-149.4214,70.4922],[-149.4646,70.5146],[-149.5396,70.4896],[-149.6667,70.5062],[-149.7661,70.4797],[-149.8479,70.5021],[-149.9021,70.4958],[-150.0646,70.4417],[-150.2104,70.4313],[-150.3875,70.4063],[-150.6563,70.3458],[-150.7229,70.3229],[-150.7922,70.2693],[-150.7797,70.2338],[-150.8359,70.2172],[-150.8422,70.2693],[-150.7693,70.2963],[-150.7453,70.3682],[-150.6359,70.3943],[-150.6255,70.4182],[-150.7734,70.4745],[-150.7271,70.4],[-150.7891,70.3755],[-150.8328,70.3901],[-150.837,70.4526],[-150.9146,70.4625],[-150.9703,70.438],[-151.0417,70.4396],[-151.0891,70.3859],[-151.1479,70.4271],[-151.1807,70.3818],[-151.2896,70.3458],[-151.2672,70.3891],[-151.3875,70.4167],[-151.7646,70.4354],[-151.8875,70.4313],[-151.9,70.475],[-151.8,70.4896],[-151.7604,70.5458],[-152.0208,70.5604],[-152.0437,70.5458],[-152.1812,70.55],[-152.3646,70.5375],[-152.3792,70.55],[-152.5208,70.5375],[-152.5937,70.5667],[-152.5167,70.5813],[-152.2729,70.575],[-152.3042,70.6042],[-152.4146,70.6062],[-152.4646,70.6333],[-152.4708,70.6937],[-152.3818,70.7151],[-152.2974,70.7849],[-152.2229,70.825],[-152.5833,70.8812],[-152.6646,70.8792],[-152.6172,70.8339],[-152.6995,70.7859],[-152.7766,70.8724],[-152.8583,70.8417],[-152.913,70.8891],[-153.1292,70.9208],[-153.2953,70.9099],[-153.3813,70.8875],[-153.5542,70.8833],[-153.7104,70.8896],[-153.9333,70.8771],[-153.9984,70.8172],[-154.1562,70.7688],[-154.2125,70.7708],[-154.2521,70.8104],[-154.3562,70.8313],[-154.6141,70.8214],[-154.6338,70.8599],[-154.7625,70.8688],[-154.7766,70.8891],[-154.6109,70.9068],[-154.6172,70.9411],[-154.5734,70.9953],[-154.6505,71.0328],[-154.7063,71.0021],[-154.7708,71.0729],[-154.8943,71.0703],[-154.9661,71.0339],[-154.7437,71.0417],[-154.7276,70.9568],[-154.8505,70.9516],[-154.8208,70.8854],[-154.9391,70.9422],[-154.9568,71.0089],[-155.0188,71.0313],[-155.0667,71.1292],[-155.0667,71.0625],[-155.1458,71.1042],[-155.2521,71.075],[-155.1568,71.0182],[-155.2021,70.9771],[-155.2625,71.0146],[-155.3599,70.9953],[-155.5099,70.9339],[-155.4542,70.8458],[-155.2859,70.8474],[-155.313,70.788],[-155.4375,70.8104],[-155.5036,70.8443],[-155.5875,70.8021],[-155.6896,70.8313],[-155.875,70.8271],[-155.9141,70.7922],[-155.8875,70.7562],[-156,70.7479],[-155.9583,70.7792],[-155.9896,70.825],[-156.05,70.8208],[-156.1729,70.8542],[-155.9958,70.8625],[-156.0083,70.8958],[-156.0729,70.8833],[-156.1037,70.9057],[-156.1797,70.8672],[-156.2437,70.9],[-156.2563,70.8667],[-156.3245,70.8724],[-156.2349,70.9182],[-156.3313,70.9167],[-156.3729,70.9042],[-156.4187,70.9083],[-156.4375,70.875],[-156.4958,70.9125],[-156.3583,70.9104],[-156.2875,70.9396],[-156.1625,70.9729],[-156.1109,70.9484],[-156.15,70.9187],[-155.9854,70.9187],[-156,70.9646],[-155.7271,70.9833],[-155.6974,71.0203],[-155.6141,71.0599],[-155.5068,71.0859],[-155.5688,71.1396],[-155.6375,71.1167],[-155.6422,71.1589],[-155.7474,71.1911],[-155.8917,71.1771],[-155.9208,71.2104],[-156.0146,71.1708],[-156.1,71.2417],[-156.2542,71.2625],[-156.35,71.2583],[-156.5318,71.2974],[-156.5979,71.3354],[-156.8099,71.287],[-157.0328,71.1724],[-157.0021,71.1208],[-157.0521,71.1062],[-157.0771,71.1458],[-157.2359,71.0505],[-157.4479,70.9625],[-157.8188,70.8625],[-158.025,70.8292],[-158.3542,70.8125],[-158.3917,70.7979],[-158.7187,70.7854],[-158.9646,70.7917],[-158.9812,70.7646],[-159.2984,70.7578],[-159.4141,70.7651],[-159.3438,70.8063],[-159.1193,70.8203],[-159.1917,70.8458],[-159.3708,70.8438],[-159.5458,70.8167],[-159.6854,70.7771],[-159.8109,70.7234],[-159.9474,70.6787],[-160.0167,70.6333],[-159.8901,70.612],[-159.8286,70.5766],[-159.8224,70.5432],[-159.737,70.4901],[-159.6229,70.4875],[-159.6,70.5062],[-159.5213,70.4818],[-159.6766,70.4547],[-159.7609,70.487],[-159.8484,70.4234],[-159.8766,70.3797],[-159.8255,70.3557],[-159.8411,70.2568],[-159.9536,70.3672],[-160.1432,70.3078],[-159.9828,70.4099],[-159.9104,70.4833],[-160.0458,70.4604],[-160.0292,70.5021],[-159.913,70.5109],[-159.9109,70.5766],[-160.025,70.5792],[-160.0896,70.5646],[-160.138,70.5807],[-160.2797,70.5255],[-160.7068,70.3818],[-160.8604,70.3375],[-161.0401,70.313],[-161.3062,70.2479],[-161.4083,70.2396],[-161.6104,70.2438],[-161.6151,70.2245],[-161.7932,70.1807],[-161.8375,70.15],[-162.0125,70.1583],[-162.0813,70.1167],[-162.0813,70.1625],[-161.9792,70.1833],[-161.8458,70.1604],[-161.862,70.2099],[-161.7667,70.2125],[-161.8646,70.2479],[-161.7146,70.2354],[-161.6833,70.2625],[-161.8432,70.2714],[-161.7354,70.3083],[-161.8792,70.3271],[-161.9266,70.312],[-161.9901,70.2422],[-162.1938,70.1729],[-162.2688,70.125],[-162.3953,70.0922],[-162.4682,70.0578],[-162.4568,70.0005],[-162.4922,69.963],[-162.8104,69.8354],[-162.9432,69.7932],[-163.0286,69.7276],[-162.9172,69.6943],[-162.9792,69.6687],[-163.0255,69.6828],[-163.0479,69.6292],[-163.088,69.6464],[-163.112,69.5901],[-163.0151,69.5359],[-163.0771,69.4292],[-163.1734,69.313],[-163.225,69.2813],[-163.3036,69.2703],[-163.4661,69.1911],[-163.5307,69.1412],[-163.6917,69.0687],[-163.8432,69.0307],[-163.9312,68.9917],[-164.1057,68.9599],[-164.1396,68.9417],[-164.4937,68.9104],[-164.6396,68.9125],[-164.7979,68.8938],[-165.1125,68.875],[-165.3146,68.8562],[-165.65,68.8438],[-165.7437,68.8562],[-166.2125,68.8792],[-166.1922,68.6943],[-166.2287,68.6495],[-166.2245,68.5703],[-166.2995,68.5141],[-166.2984,68.4672],[-166.3708,68.4021],[-166.4417,68.3938],[-166.5208,68.3396],[-166.2479,68.3187],[-166.0151,68.2016],[-165.9807,68.1464],[-165.8813,68.1104],[-165.7063,68.0938],[-165.3667,68.0396],[-165.1146,67.9542],[-164.9266,67.8734],[-164.8193,67.8516],[-164.7812,67.8229],[-164.725,67.8354],[-164.6849,67.8026],[-164.6172,67.7953],[-164.4953,67.7151],[-164.4125,67.6937],[-164.3521,67.7063],[-164.138,67.6391],[-164.1078,67.6047],[-163.9667,67.5062],[-163.8807,67.4213],[-163.8167,67.4187],[-163.7708,67.3875],[-163.8203,67.3526],[-163.7328,67.1932],[-163.6417,67.1854],[-163.5891,67.1568],[-163.5083,67.1458],[-163.4172,67.1036],[-163.525,67.1167],[-163.7328,67.1193],[-163.6604,67.0979],[-163.3083,67.0625],[-163.2526,67.0807],[-163.1583,67.0458],[-162.9979,67.0313],[-162.7479,67.0521],[-162.5557,66.9838],[-162.5161,67.0286],[-162.4708,66.9812],[-162.3687,66.9938],[-162.2375,66.9938],[-162.1625,67.0188],[-161.9792,67.0417],[-161.8354,67.05],[-161.7229,67.0083],[-161.6193,67.0099],[-161.5292,66.9896],[-161.4734,66.9495],[-161.6083,66.95],[-161.7828,66.8912],[-161.8057,66.8161],[-161.8641,66.7026],[-161.6938,66.625],[-161.5234,66.5807],[-161.487,66.5297],[-161.2917,66.5229],[-161.2068,66.5578],[-161.2312,66.5771],[-161.1187,66.6396],[-160.9729,66.6417],[-160.8083,66.6563],[-160.6562,66.5896],[-160.5109,66.5859],[-160.5021,66.6125],[-160.3542,66.6104],[-160.275,66.6521],[-160.1854,66.6312],[-160.0979,66.675],[-160.0412,66.6589],[-159.9438,66.6813],[-159.8104,66.6583],[-159.7229,66.6771],[-159.6964,66.6484],[-159.7771,66.6146],[-159.8724,66.637],[-159.9125,66.5729],[-159.9599,66.5755],[-159.9839,66.6214],[-160.0953,66.6193],[-160.1187,66.5917],[-160.25,66.6167],[-160.1833,66.525],[-160.2016,66.4797],[-160.0333,66.475],[-160.05,66.4146],[-160.1938,66.4521],[-160.2276,66.3859],[-160.4833,66.375],[-160.5458,66.3562],[-160.6771,66.3667],[-160.7854,66.3625],[-160.8484,66.3953],[-160.962,66.4172],[-161.0651,66.4849],[-161.1682,66.4984],[-161.1771,66.5333],[-161.2661,66.512],[-161.3229,66.4771],[-161.5063,66.4417],[-161.5833,66.4396],[-161.9099,66.5443],[-161.9922,66.6099],[-162.0724,66.6484],[-162.0828,66.6911],[-162.0109,66.7568],[-162.0995,66.788],[-162.2391,66.8734],[-162.3188,66.9417],[-162.4,66.9167],[-162.4729,66.9479],[-162.5208,66.9021],[-162.6182,66.8505],[-162.5088,66.7766],[-162.5016,66.7338],[-162.2333,66.7104],[-162.1214,66.6536],[-162.0995,66.6109],[-161.9922,66.5787],[-161.8963,66.5286],[-161.8651,66.4734],[-161.8057,66.438],[-161.8724,66.4245],[-161.9391,66.3234],[-161.6917,66.3979],[-161.5354,66.4021],[-161.1047,66.3287],[-160.9859,66.2255],[-161.0047,66.1891],[-161.0724,66.1787],[-161.0937,66.2292],[-161.2104,66.2063],[-161.3021,66.2167],[-161.3516,66.2547],[-161.4979,66.2583],[-161.5568,66.2276],[-161.7214,66.0589],[-161.8245,66.0036],[-161.7854,65.9688],[-161.85,65.9563],[-161.8693,66.0005],[-162.0396,66.0687],[-162.1354,66.075],[-162.3354,66.0271],[-162.4036,66.0297],[-162.4521,66.0563],[-162.5396,66.0333],[-162.6432,66.0266],[-162.6745,65.9943],[-162.688,66.0703],[-162.7583,66.0958],[-162.8687,66.0792],[-162.9229,66.0896],[-163.1375,66.0521],[-163.3062,66.0687],[-163.3313,66.0854],[-163.4833,66.0833],[-163.6271,66.0542],[-163.7661,66.0734],[-163.8537,66.1276],[-163.8979,66.1937],[-163.9703,66.1672],[-164.1625,66.1917],[-163.9333,66.2146],[-163.8255,66.2714],[-163.8651,66.3339],[-163.8474,66.4182],[-163.7713,66.4484],[-163.7255,66.4964],[-163.8146,66.5563],[-163.8042,66.5771],[-163.6521,66.5542],[-163.6792,66.5771],[-163.8271,66.5917],[-164.1062,66.5917],[-164.4396,66.5771],[-164.6896,66.5437],[-164.7276,66.5109],[-164.9286,66.4495],[-165.0146,66.3792],[-165.0422,66.4287],[-165.1458,66.4333],[-165.2479,66.4146],[-165.4396,66.4021],[-165.7557,66.3141],[-165.8464,66.263],[-165.8537,66.213],[-165.6958,66.2042],[-165.5312,66.1458],[-165.6896,66.0958],[-165.8729,66.1125],[-166.0583,66.1062],[-166.2187,66.1708],[-166.6042,66.0896],[-166.7708,66.0313],[-166.7958,65.9729],[-166.9187,65.9875],[-166.9438,65.9583],[-166.8682,65.9276],[-166.9974,65.8953],[-167.0354,65.8688],[-167.1849,65.8401],[-167.2807,65.8901],[-167.4833,65.8354],[-167.4563,65.7979],[-167.5312,65.8021],[-167.562,65.7714],[-167.4953,65.7338],[-167.5833,65.7083],[-167.7896,65.7063],[-167.9104,65.6438],[-168.0599,65.6297],[-168.0286,65.6891],[-167.925,65.7125],[-167.9458,65.7354],[-168.0807,65.6932],[-168.1245,65.6453],[-168.0458,65.5687],[-167.8896,65.5521],[-167.8167,65.5208],[-167.6422,65.4807],[-167.6062,65.4542],[-167.4083,65.4021],[-167.0354,65.3875],[-166.9542,65.3708],[-166.825,65.375],[-166.6104,65.3521],[-166.3979,65.3083],[-166.387,65.3182],[-166.1479,65.2875],[-166.0359,65.2474],[-166.0188,65.1896],[-165.8338,65.1339],[-165.8703,65.1807],[-165.7521,65.1896],[-165.6687,65.1583],[-165.5792,65.1771],[-165.3854,65.1687],[-165.4526,65.1214],[-165.5682,65.0974],[-165.6562,65.0479],[-165.7312,65.0729],[-165.8745,65.0964],[-165.9672,65.1682],[-166.0349,65.1859],[-166.0422,65.2307],[-166.1292,65.2292],[-166.2479,65.2583],[-166.3771,65.2542],[-166.4724,65.2203],[-166.4651,65.1713],[-166.5359,65.1172],[-166.6568,65.1036],[-166.8401,65.1214],[-166.8208,65.0771],[-166.7063,65.0563],[-166.6807,64.9818],[-166.5599,64.9464],[-166.5005,64.9474],[-166.4245,64.8922],[-166.3776,64.813],[-166.4745,64.7911],[-166.4682,64.7193],[-166.3911,64.6401],[-166.2104,64.5792],[-165.8521,64.5396],[-165.7437,64.5375],[-165.2167,64.4729],[-165.0104,64.4333],[-164.9271,64.4396],[-164.8432,64.4912],[-164.7521,64.5146],[-164.6187,64.5062],[-164.5437,64.5313],[-164.325,64.5667],[-164.1042,64.5687],[-163.9937,64.5521],[-163.8833,64.5729],[-163.6438,64.5687],[-163.5125,64.55],[-163.3464,64.5099],[-163.2547,64.4745],[-163.1729,64.3979],[-163.1068,64.4089],[-163.0974,64.462],[-163.0318,64.5026],[-163.1479,64.5062],[-163.1755,64.5349],[-163.25,64.5396],[-163.3651,64.5974],[-163.2818,64.6026],[-163.2464,64.6297],[-163.1354,64.6458],[-163.1208,64.6],[-163.0339,64.5849],[-163.0188,64.5417],[-162.9453,64.5443],[-162.8422,64.4953],[-162.8537,64.4443],[-162.8005,64.4078],[-162.8037,64.3359],[-162.6318,64.3839],[-162.5922,64.4838],[-162.5453,64.5307],[-162.3333,64.5979],[-162.2359,64.6193],[-162.1708,64.6813],[-161.95,64.6979],[-161.8771,64.7479],[-161.6812,64.7813],[-161.5188,64.7542],[-161.413,64.763],[-161.3036,64.8474],[-161.2016,64.8932],[-161.1792,64.9271],[-161.112,64.8839],[-160.987,64.8359],[-160.8734,64.8057],[-160.7776,64.7182],[-160.7839,64.6255],[-161.013,64.5224],[-161.0333,64.4958],[-161.1896,64.4938],[-161.3537,64.5193],[-161.3771,64.5333],[-161.4661,64.5057],[-161.4714,64.4464],[-161.5286,64.4089],[-161.3938,64.4313],[-161.3479,64.4042],[-161.2146,64.4125],[-161.1766,64.3422],[-161.0828,64.2901],[-161.0109,64.2828],[-160.9609,64.2495],[-160.9422,64.0766],[-160.8943,63.9932],[-160.813,63.912],[-160.7599,63.8203],[-160.7859,63.7443],[-160.963,63.6172],[-161.0083,63.6208],[-161.0359,63.5755],[-161.0974,63.5484],[-161.1359,63.5005],[-161.4292,63.4542],[-161.5,63.4688],[-161.5792,63.4458],[-161.6938,63.4625],[-161.8062,63.4375],[-162,63.4458],[-162.1042,63.4271],[-162.0417,63.4854],[-162.175,63.5292],[-162.3021,63.5375],[-162.2651,63.4932],[-162.4068,63.4068],[-162.4203,63.3568],[-162.5307,63.3141],[-162.5297,63.2922],[-162.6958,63.2125],[-162.7792,63.2146],[-162.838,63.1589],[-162.9766,63.1057],[-163.0359,63.0609],[-163.2,63.0438],[-163.3146,63.0208],[-163.3651,63.0536],[-163.5042,63.1104],[-163.6089,63.0755],[-163.6297,63.1432],[-163.7276,63.2078],[-163.8313,63.2083],[-164.0458,63.2625],[-164.3167,63.2417],[-164.4661,63.1891],[-164.5828,63.1193],[-164.5271,63.0708],[-164.4839,63.0849],[-164.3729,63.0646],[-164.35,63.0187],[-164.4787,63.0286],[-164.687,63.0182],[-164.7828,62.9474],[-164.862,62.8224],[-164.8167,62.7958],[-164.6922,62.787],[-164.6354,62.7604],[-164.5021,62.7729],[-164.45,62.7438],[-164.7047,62.6057],[-164.8349,62.5766],[-164.8458,62.5438],[-164.7776,62.5349],[-164.7651,62.5005],[-164.6521,62.4521],[-164.5755,62.4557],[-164.5578,62.4255],[-164.6417,62.4188],[-164.7479,62.4646],[-164.8557,62.4672],[-164.8583,62.5333],[-165.0229,62.5396],[-165.0974,62.5203],[-165.2349,62.4578],[-165.3297,62.363],[-165.6005,62.188],[-165.7057,62.1411],[-165.7599,62.0807],[-165.7703,62.0026],[-165.7391,61.9193],[-165.637,61.8505],[-165.8021,61.825],[-165.9187,61.8271],[-166.0995,61.8099],[-166.0099,61.7214],[-165.9208,61.6979],[-165.7375,61.6875],[-165.7271,61.6646],[-165.6479,61.6854],[-165.6229,61.7167],[-165.5229,61.7062],[-165.6141,61.6641],[-165.7396,61.6583],[-165.8125,61.6833],[-165.8828,61.662],[-166.0479,61.6479],[-166.0667,61.6271],[-166.1516,61.6422],[-166.1849,61.5974],[-166.1411,61.5047],[-166.0333,61.5396],[-165.9354,61.5458],[-165.7943,61.5036],[-165.7479,61.425],[-165.8021,61.4479],[-165.9287,61.4453],[-165.9578,61.4172],[-165.8682,61.3193],[-165.7318,61.3047],[-165.6641,61.2755],[-165.6391,61.1318],[-165.5396,61.0896],[-165.3958,61.0771],[-165.3391,61.1516],[-165.3932,61.1984],[-165.213,61.3068],[-165.2912,61.3151],[-165.2828,61.3516],[-165.2047,61.3349],[-165.2208,61.2438],[-165.2974,61.2474],[-165.362,61.1901],[-165.2713,61.1703],[-165.1786,61.1089],[-165.0083,61.0479],[-165,61.0896],[-164.9453,61.1016],[-164.9453,60.9922],[-165.1271,61.0125],[-165.1891,60.9547],[-165.1417,60.925],[-165.0437,60.9083],[-164.9703,60.9453],[-164.8422,60.937],[-164.7979,60.8958],[-164.7521,60.9229],[-164.5693,60.9286],[-164.587,60.8651],[-164.5396,60.8479],[-164.3687,60.875],[-164.2479,60.8604],[-164.15,60.8833],[-164.088,60.8776],[-164.15,60.9396],[-164.1099,60.987],[-163.9901,61.0453],[-163.9766,60.9818],[-163.9234,60.9516],[-163.9854,60.8625],[-163.9354,60.8771],[-163.8776,60.9276],[-163.9396,60.9813],[-163.9005,61.0359],[-163.8229,61.0104],[-163.8443,61.0911],[-163.9286,61.1193],[-163.9141,61.1911],[-163.7729,61.2292],[-163.7229,61.1958],[-163.5562,61.2396],[-163.513,61.2109],[-163.6729,61.1833],[-163.7547,61.1453],[-163.7464,61.1005],[-163.8057,61.0547],[-163.7401,61.0411],[-163.737,60.988],[-163.6526,60.9891],[-163.7088,60.9516],[-163.6771,60.925],[-163.5578,60.913],[-163.5771,60.8812],[-163.4479,60.8917],[-163.3734,60.8578],[-163.3479,60.8125],[-163.2776,60.7964],[-163.462,60.7547],[-163.4089,60.7224],[-163.4792,60.6396],[-163.6583,60.5812],[-163.7932,60.5797],[-163.8203,60.6401],[-163.7917,60.7542],[-163.8562,60.7542],[-163.9125,60.7854],[-164.0161,60.7641],[-164.1026,60.6589],[-164.2604,60.6437],[-164.3729,60.5521],[-164.3818,60.5776],[-164.2953,60.6661],[-164.2104,60.6792],[-164.2646,60.7292],[-164.2693,60.7891],[-164.3188,60.7833],[-164.4359,60.8182],[-164.6849,60.8234],[-164.6911,60.862],[-164.638,60.9016],[-164.725,60.8979],[-164.8479,60.85],[-164.9292,60.9208],[-164.9599,60.8953],[-164.8714,60.8536],[-164.8776,60.812],[-165.0021,60.7854],[-164.9901,60.6984],[-165.0562,60.6875],[-165.1714,60.6234],[-165.2453,60.6099],[-165.275,60.575],[-165.3766,60.5745],[-165.4182,60.5495],[-165.3703,60.5068],[-165.2646,60.4917],[-165.1875,60.4979],[-165.0479,60.5458],[-164.9568,60.5286],[-165.0005,60.4755],[-165.1391,60.4422],[-165.0141,60.3609],[-164.8646,60.3063],[-164.7063,60.2938],[-164.6516,60.2505],[-164.4979,60.175],[-164.3432,60.0568],[-164.1938,60.0271],[-164.1257,59.9727],[-164.2005,59.9588],[-164.1983,59.9151],[-164.1408,59.8498],[-164.0052,59.8144],[-163.8726,59.8009],[-163.681,59.7976],[-163.4308,59.812],[-163.1472,59.8478],[-162.9984,59.8869],[-162.913,59.9232],[-162.7842,59.9428],[-162.7333,59.9719],[-162.8141,60.0297],[-162.7734,60.0693],[-162.738,59.9999],[-162.641,59.974],[-162.5154,59.9893],[-162.4797,60.0318],[-162.5036,60.113],[-162.4505,60.1828],[-162.5599,60.2193],[-162.5443,60.2776],[-162.4854,60.3667],[-162.413,60.3755],[-162.3755,60.4651],[-162.3234,60.513],[-162.2807,60.5953],[-162.2208,60.6333],[-162.034,60.6646],[-162.2141,60.5786],[-162.2172,60.5089],[-162.3016,60.4474],[-162.3292,60.3583],[-162.4578,60.2953],[-162.3516,60.238],[-162.262,60.1693],[-162.3661,60.1589],[-162.2646,60.0583],[-162.2661,60.1203],[-162.1792,60.1375],[-162.2349,60.088],[-162.1889,59.999],[-162.0814,59.9365],[-162.088,59.8868],[-161.9655,59.7998],[-161.8784,59.6948],[-161.8681,59.635],[-161.7081,59.5],[-161.7365,59.4698],[-161.8001,59.4715],[-161.8403,59.4158],[-161.9588,59.3722],[-161.9604,59.2433],[-162.0188,59.2287],[-161.975,59.1404],[-161.8869,59.0719],[-161.7885,58.9682],[-161.7891,58.8917],[-161.7583,58.7966],[-161.8027,58.7402],[-161.8671,58.7145],[-161.8353,58.6785],[-161.9481,58.6505],[-161.995,58.6822],[-162.1709,58.6513],[-162.0841,58.6257],[-161.8223,58.6291],[-161.7745,58.6],[-161.7632,58.55],[-161.7123,58.553],[-161.6319,58.5985],[-161.5479,58.6064],[-161.5189,58.6315],[-161.3766,58.667],[-161.3659,58.7191],[-161.2903,58.7719],[-161.1792,58.7844],[-161.0017,58.8486],[-160.9632,58.8768],[-160.8651,58.8799],[-160.8252,58.8447],[-160.778,58.8922],[-160.6365,58.963],[-160.3585,59.0738],[-160.256,58.9868],[-160.33,58.9536],[-160.2647,58.9443],[-160.2487,58.8906],[-160.1598,58.9266],[-160.1602,58.863],[-160.0243,58.8852],[-159.9727,58.8189],[-159.9048,58.7683],[-159.802,58.8027],[-159.7961,58.8523],[-159.7362,58.9305],[-159.6228,58.9366],[-159.5906,58.9041],[-159.6473,58.8414],[-159.4973,58.8189],[-159.3875,58.7578],[-159.3176,58.6961],[-159.2084,58.5731],[-159.0589,58.4212],[-158.9013,58.3908],[-158.8118,58.4047],[-158.7018,58.4868],[-158.7513,58.4954],[-158.7757,58.5561],[-158.8369,58.6251],[-158.8805,58.7284],[-158.8039,58.736],[-158.7746,58.7751],[-158.7977,58.8151],[-158.7822,58.8824],[-158.7217,58.8734],[-158.6254,58.9117],[-158.5182,59.0352],[-158.407,59.0646],[-158.3197,59.0476],[-158.42,59.023],[-158.4888,58.9176],[-158.5484,58.7923],[-158.4413,58.775],[-158.3695,58.7454],[-158.3141,58.6461],[-158.2212,58.6146],[-158.0872,58.6202],[-157.8141,58.6888],[-157.7142,58.7265],[-157.5443,58.7592],[-157.3156,58.8351],[-157.211,58.8421],[-157.0952,58.8756],[-157.0375,58.9161],[-157.0165,58.9677],[-156.9232,58.9923],[-157.0194,58.8719],[-157.0044,58.8224],[-157.0683,58.769],[-157.0935,58.704],[-157.2345,58.6322],[-157.3834,58.522],[-157.472,58.4933],[-157.5424,58.3825],[-157.5444,58.2781],[-157.4479,58.2092],[-157.3806,58.2179],[-157.437,58.1662],[-157.529,58.1654],[-157.5874,58.1275],[-157.6651,57.7935],[-157.7012,57.7301],[-157.7131,57.6363],[-157.6965,57.6124],[-157.6049,57.6064],[-157.5773,57.5147],[-157.6386,57.4965],[-157.6959,57.5519],[-157.7413,57.5553],[-157.9276,57.474],[-158.0017,57.408],[-158.0903,57.3583],[-158.2571,57.3126],[-158.3312,57.2806],[-158.5435,57.1295],[-158.6789,57.0053],[-158.6747,56.8567],[-158.6523,56.8153],[-158.7955,56.7801],[-158.9313,56.8181],[-158.9484,56.8588],[-159.0537,56.8006],[-159.2885,56.7125],[-159.3997,56.6871],[-159.5476,56.6228],[-159.818,56.5391],[-160.0419,56.4245],[-160.154,56.3964],[-160.255,56.3237],[-160.3845,56.2548],[-160.5223,56.0391],[-160.5411,55.9922],[-160.5229,55.943],[-160.3189,55.8603],[-160.256,55.7716],[-160.3727,55.7784],[-160.4102,55.8041],[-160.4552,55.7832],[-160.4905,55.8603],[-160.6318,55.855],[-160.7831,55.8831],[-160.757,55.7882],[-160.6516,55.7345],[-160.7529,55.7499],[-160.8015,55.7329],[-161.0184,55.9046],[-160.9631,55.9417],[-160.8913,55.9507],[-160.8734,56],[-161.0517,55.9416],[-161.0977,55.9592],[-161.3246,55.9567],[-161.2636,55.9835],[-161.5459,55.9389],[-161.8046,55.8879],[-161.9665,55.7999],[-162.0389,55.7883],[-162.1221,55.7396],[-162.2556,55.6891],[-162.3725,55.5891],[-162.5114,55.4925],[-162.6259,55.4361],[-162.5049,55.4597],[-162.5197,55.4205],[-162.4862,55.3767],[-162.5803,55.3473],[-162.6432,55.3687],[-162.7104,55.3187],[-162.8093,55.3015],[-162.8651,55.1811],[-163.0439,55.1682],[-163.1652,55.1712],[-163.2982,55.1087],[-163.279,55.0362],[-163.2919,54.9664],[-163.2243,54.9238],[-163.3329,54.9467],[-163.3163,54.8769],[-163.3879,54.8489],[-163.3451,54.8001],[-163.2396,54.8277],[-163.1262,54.9037],[-163.0305,54.9436],[-163.0478,54.9697],[-163.2078,55.0228],[-163.2265,55.0758],[-163.1938,55.1261],[-163.1032,55.1192],[-162.9969,55.0745],[-162.9463,55.0228],[-162.9615,54.9945],[-162.9151,54.9475],[-162.832,54.9204],[-162.7062,54.9567],[-162.6528,55.0163],[-162.5593,54.9513],[-162.5812,55.0345],[-162.623,55.0629],[-162.646,55.196],[-162.6917,55.1913],[-162.7173,55.2379],[-162.6655,55.2909],[-162.5064,55.2397],[-162.4939,55.1695],[-162.4035,55.1147],[-162.5206,55.1143],[-162.5017,55.0733],[-162.4138,55.0325],[-162.3339,55.0393],[-162.2209,55.0258],[-162.1885,55.0603],[-162.229,55.1037],[-162.1747,55.1507],[-162.1006,55.1552],[-162.1227,55.104],[-162.0497,55.0697],[-161.9562,55.1041],[-161.9614,55.1582],[-162.0296,55.1714],[-162.001,55.2409],[-161.9015,55.2437],[-161.817,55.2965],[-161.6815,55.4076],[-161.7033,55.5099],[-161.5955,55.6091],[-161.4965,55.6294],[-161.3921,55.6269],[-161.3552,55.5871],[-161.4704,55.4797],[-161.5081,55.3791],[-161.4763,55.3573],[-161.32,55.3822],[-161.2391,55.3547],[-160.9878,55.4447],[-160.9445,55.5085],[-160.8428,55.5225],[-160.8329,55.4708],[-160.79,55.4549],[-160.663,55.4618],[-160.65,55.5129],[-160.7458,55.5243],[-160.7239,55.5561],[-160.6627,55.5436],[-160.5949,55.5728],[-160.5306,55.4757],[-160.4546,55.5099],[-160.4415,55.5655],[-160.3552,55.6149],[-160.4116,55.6589],[-160.2746,55.6335],[-160.2466,55.6579],[-160.1221,55.6615],[-160.135,55.7061],[-160.0495,55.693],[-160.0154,55.7155],[-160.0483,55.763],[-159.9486,55.8158],[-159.8943,55.7839],[-159.8408,55.8003],[-159.8326,55.8482],[-159.7058,55.8449],[-159.6225,55.8199],[-159.6602,55.7543],[-159.6857,55.651],[-159.6287,55.618],[-159.7016,55.6054],[-159.7085,55.5674],[-159.6272,55.5794],[-159.5322,55.6465],[-159.5368,55.7191],[-159.4893,55.7627],[-159.5238,55.884],[-159.4529,55.8883],[-159.4541,55.8095],[-159.404,55.7873],[-159.3941,55.8549],[-159.2602,55.8909],[-159.1688,55.891],[-159.065,55.9181],[-159.0038,55.8871],[-158.9884,55.9263],[-158.907,55.9267],[-158.8342,56.0159],[-158.7958,55.9872],[-158.7293,56.0089],[-158.7242,55.9508],[-158.6342,55.9807],[-158.6811,56.1049],[-158.6032,56.125],[-158.5791,56.0419],[-158.5049,55.9787],[-158.4894,56.0487],[-158.4395,56.106],[-158.3948,56.0883],[-158.3372,56.1548],[-158.1904,56.1923],[-158.3711,56.2155],[-158.2117,56.2715],[-158.3471,56.3213],[-158.4531,56.2947],[-158.4357,56.3401],[-158.5435,56.3077],[-158.5661,56.2491],[-158.6382,56.2596],[-158.6023,56.3131],[-158.4057,56.4512],[-158.3311,56.4821],[-158.1839,56.4546],[-158.1328,56.4606],[-158.1443,56.5175],[-158.0297,56.5077],[-157.8876,56.4681],[-157.8248,56.4978],[-157.8195,56.5561],[-157.909,56.571],[-158.1281,56.5269],[-158.1304,56.5508],[-158.0289,56.6013],[-157.9762,56.5993],[-157.9438,56.6347],[-157.7713,56.6797],[-157.7387,56.6739],[-157.6824,56.6073],[-157.4624,56.6235],[-157.4798,56.6716],[-157.555,56.6782],[-157.5674,56.7055],[-157.5113,56.7622],[-157.405,56.7731],[-157.4747,56.8238],[-157.386,56.862],[-157.2033,56.7642],[-157.1398,56.8042],[-157.1872,56.8547],[-157.0907,56.8184],[-157.0358,56.8889],[-156.936,56.9156],[-156.8929,56.9638],[-156.8343,56.8954],[-156.7279,57.0382],[-156.6754,56.9938],[-156.5838,56.9871],[-156.5887,57.0365],[-156.5169,57.0491],[-156.4661,57.123],[-156.4147,57.1257],[-156.3389,57.1761],[-156.39,57.202],[-156.3829,57.2522],[-156.3224,57.2898],[-156.3564,57.3224],[-156.5577,57.288],[-156.5415,57.323],[-156.4523,57.3454],[-156.3342,57.4189],[-156.2247,57.4439],[-156.1835,57.4771],[-156.1208,57.4717],[-156.1014,57.433],[-156.0255,57.4335],[-156.056,57.5171],[-156.0191,57.5646],[-155.9342,57.5297],[-155.8353,57.5739],[-155.7959,57.5403],[-155.735,57.5398],[-155.7431,57.6292],[-155.5962,57.6584],[-155.6395,57.704],[-155.6043,57.7807],[-155.5714,57.7891],[-155.3904,57.7125],[-155.3048,57.7233],[-155.3312,57.8263],[-155.236,57.826],[-155.2103,57.8682],[-155.1558,57.8551],[-155.0688,57.9042],[-155.0391,58.0201],[-154.8747,58.0278],[-154.8114,57.9999],[-154.7332,58.017],[-154.7184,58.0581],[-154.6523,58.062],[-154.5883,58.0204],[-154.5417,58.0602],[-154.6018,58.1207],[-154.465,58.0816],[-154.4512,58.1814],[-154.4193,58.1302],[-154.3152,58.0923],[-154.3374,58.1599],[-154.2724,58.1305],[-154.2155,58.1384],[-154.2903,58.1774],[-154.2779,58.2017],[-154.178,58.1917],[-154.1517,58.2339],[-154.2079,58.2542],[-154.106,58.2778],[-154.1858,58.3234],[-154.261,58.2736],[-154.3542,58.2501],[-154.3365,58.2845],[-154.1803,58.3594],[-154.0999,58.3432],[-154.0074,58.3752],[-154.0671,58.4271],[-154.0794,58.4789],[-153.9629,58.4862],[-153.9278,58.5205],[-153.901,58.6097],[-153.7614,58.6044],[-153.5943,58.6318],[-153.5644,58.6821],[-153.4551,58.7055],[-153.3945,58.7473],[-153.3559,58.8395],[-153.3125,58.8542],[-153.4074,58.9694],[-153.4844,58.9987],[-153.5463,58.9829],[-153.6286,59.0106],[-153.6996,59.0755],[-153.8071,59.074],[-153.8644,59.0553],[-154.0682,59.0741],[-154.1401,59.0217],[-154.1806,59.0229],[-154.2005,59.0735],[-154.1794,59.1219],[-154.2488,59.1166],[-154.1853,59.1924],[-154.1292,59.1993],[-154.1425,59.2687],[-154.1131,59.3052],[-153.9724,59.3568],[-153.9102,59.4206],[-153.7293,59.4409],[-153.7072,59.4677],[-153.7636,59.5456],[-153.5925,59.5537],[-153.5542,59.5972],[-153.6333,59.6449],[-153.6114,59.6765],[-153.5658,59.6249],[-153.4798,59.6447],[-153.4462,59.6982],[-153.4526,59.7863],[-153.3843,59.7309],[-153.3938,59.6651],[-153.3453,59.6217],[-153.2865,59.6709],[-153.2179,59.635],[-153.1251,59.678],[-153.0592,59.6904],[-152.9938,59.8083],[-153.0943,59.8335],[-153.1476,59.8091],[-153.2831,59.8305],[-153.2222,59.8651],[-153.1204,59.8659],[-153.0068,59.8868],[-152.8699,59.8752],[-152.7069,59.9201],[-152.6685,59.983],[-152.6089,60.0068],[-152.5755,60.0828],[-152.6734,60.1641],[-152.8125,60.2125],[-152.6687,60.2],[-152.5625,60.2167],[-152.4745,60.2786],[-152.4187,60.2854],[-152.3703,60.3516],[-152.3042,60.3604],[-152.238,60.3953],[-152.2995,60.413],[-152.3307,60.4766],[-152.25,60.5354],[-152.1792,60.5687],[-152.0922,60.5797],[-152.0557,60.637],[-151.9974,60.6724],[-151.8505,60.7214],[-151.7026,60.7307],[-151.7912,60.8214],[-151.7724,60.8661],[-151.7146,60.8958],[-151.4828,60.9964],[-151.3562,61.0083],[-151.2995,61.0328],[-151.163,61.0464],[-151.0495,61.1599],[-150.9354,61.2],[-150.8542,61.2083],[-150.6938,61.2562],[-150.6646,61.325],[-150.5979,61.3604],[-150.5453,61.4078],[-150.4896,61.3979],[-150.5005,61.4661],[-150.5849,61.4964],[-150.5724,61.5307],[-150.4901,61.5568],[-150.4859,61.587],[-150.5911,61.6339],[-150.6703,61.7005],[-150.7271,61.8],[-150.7578,61.8089],[-150.8276,61.887],[-151.0208,61.9188],[-151.1229,61.975],[-151.1687,61.9896],[-151.113,61.9849],[-150.9495,61.9089],[-150.8396,61.8958],[-150.7297,61.8266],[-150.7021,61.7729],[-150.6891,61.7339],[-150.5807,61.6359],[-150.5437,61.6271],[-150.4901,61.5974],[-150.4729,61.5729],[-150.4276,61.5755],[-150.3849,61.6474],[-150.313,61.6693],[-150.2932,61.7411],[-150.1984,61.7964],[-150.2078,61.8453],[-150.1151,61.9193],[-150.1333,61.9396],[-150.1578,61.9786],[-150.125,62.0604],[-150.0818,62.0953],[-150.1891,62.1682],[-150.1276,62.2161],[-150.1682,62.2495],[-150.1297,62.2755],[-150.1562,62.3354],[-150.1687,62.3542],[-150.1047,62.3057],[-150.137,62.237],[-150.1151,62.2245],[-150.1224,62.1891],[-150.1745,62.1672],[-150.0693,62.1036],[-150.1161,62.0411],[-150.0917,61.9708],[-150.1068,61.8984],[-150.1849,61.8307],[-150.1901,61.7911],[-150.25,61.7625],[-150.2688,61.7167],[-150.313,61.663],[-150.3745,61.6172],[-150.3651,61.5943],[-150.5437,61.5271],[-150.5562,61.4875],[-150.4859,61.4703],[-150.4547,61.4099],[-150.562,61.3391],[-150.5521,61.2958],[-150.4521,61.25],[-150.3062,61.2583],[-150.1167,61.2562],[-149.9812,61.2375],[-149.9193,61.2651],[-149.9182,61.3245],[-149.8771,61.3875],[-149.825,61.3937],[-149.762,61.4453],[-149.5984,61.488],[-149.4687,61.4667],[-149.4062,61.4854],[-149.2688,61.4938],[-149.2146,61.4792],[-149.1604,61.5021],[-149.0333,61.5042],[-148.9354,61.5187],[-148.7495,61.4578],[-148.8661,61.4693],[-148.9958,61.5083],[-149.0896,61.4875],[-149.1562,61.4979],[-149.1938,61.475],[-149.2354,61.4792],[-149.3813,61.4667],[-149.6375,61.3854],[-149.7016,61.3807],[-149.7146,61.3292],[-149.8161,61.312],[-149.8963,61.2234],[-150.0188,61.2021],[-150.0682,61.1526],[-149.8359,61.0724],[-149.7328,61.0151],[-149.5917,60.9813],[-149.4917,60.9833],[-149.3609,60.9307],[-149.1766,60.9359],[-149.0776,60.9057],[-149.025,60.85],[-149.0896,60.8958],[-149.1734,60.887],[-149.3771,60.8937],[-149.5625,60.9333],[-149.6479,60.9229],[-149.7458,60.9604],[-149.8437,60.9667],[-149.9271,60.9313],[-150.0917,60.9146],[-150.262,60.9443],[-150.3708,61.0375],[-150.5078,61.0036],[-150.6943,60.9422],[-151.0542,60.7875],[-151.2146,60.7792],[-151.3021,60.7396],[-151.4083,60.7167],[-151.3505,60.6432],[-151.3266,60.5776],[-151.2542,60.5458],[-151.2807,60.5016],[-151.2953,60.3859],[-151.3766,60.3661],[-151.3792,60.2938],[-151.413,60.2151],[-151.4984,60.1547],[-151.6224,60.0891],[-151.6953,60.0349],[-151.7593,59.9185],[-151.8148,59.8705],[-151.8711,59.7676],[-151.8376,59.7204],[-151.6451,59.6473],[-151.4835,59.6386],[-151.4369,59.6701],[-151.3415,59.6862],[-151.0588,59.7969],[-150.9574,59.7859],[-151.1245,59.6957],[-151.206,59.6359],[-151.1974,59.5941],[-151.2816,59.5991],[-151.2712,59.5578],[-151.3654,59.5599],[-151.4544,59.5409],[-151.4901,59.4817],[-151.5611,59.4699],[-151.6361,59.4861],[-151.8925,59.4288],[-151.8951,59.3845],[-151.9941,59.3147],[-151.9818,59.2579],[-151.8719,59.253],[-151.884,59.2139],[-151.7651,59.2242],[-151.7402,59.1573],[-151.5934,59.1629],[-151.5779,59.2077],[-151.5262,59.1955],[-151.4539,59.2373],[-151.4462,59.2743],[-151.3123,59.2117],[-151.3058,59.2469],[-151.1862,59.2048],[-151.1077,59.2468],[-151.2594,59.2932],[-151.2151,59.3106],[-151.0945,59.2694],[-151.0542,59.3042],[-151.0182,59.2115],[-150.9883,59.2399],[-150.9149,59.2512],[-150.8565,59.3581],[-150.7751,59.3747],[-150.7471,59.4243],[-150.6057,59.4293],[-150.5845,59.4952],[-150.6296,59.5414],[-150.53,59.6037],[-150.5179,59.5739],[-150.5768,59.5294],[-150.4866,59.4953],[-150.4383,59.5146],[-150.3277,59.6253],[-150.2516,59.7266],[-150.2701,59.6322],[-150.3609,59.528],[-150.3243,59.4713],[-150.2222,59.5438],[-150.1266,59.5896],[-150.0906,59.65],[-150.039,59.6128],[-149.9222,59.687],[-149.9966,59.7494],[-149.92,59.7695],[-149.8239,59.699],[-149.7965,59.6575],[-149.739,59.7139],[-149.8224,59.8347],[-149.7632,59.8204],[-149.7503,59.9411],[-149.6894,59.9469],[-149.661,59.893],[-149.6618,59.7745],[-149.5957,59.7662],[-149.6202,59.8365],[-149.5242,59.928],[-149.4702,59.9182],[-149.4418,59.9779],[-149.3963,60.0016],[-149.4474,60.0339],[-149.4432,60.1161],[-149.3589,60.1141],[-149.3125,59.9819],[-149.3792,59.9031],[-149.259,59.9229],[-149.2063,60.0083],[-149.1682,60.037],[-149.0339,60.0432],[-149.1312,59.9643],[-149.039,59.9781],[-149.009,59.9462],[-148.9628,59.9721],[-148.8835,59.9252],[-148.8458,59.9242],[-148.7708,59.9768],[-148.6833,59.9219],[-148.6081,59.9285],[-148.5208,60.0229],[-148.456,59.9413],[-148.4103,59.981],[-148.3734,60.0911],[-148.3271,60.1625],[-148.2833,60.1667],[-148.2896,60.1104],[-148.2417,60.1146],[-148.1214,60.1651],[-148.1057,60.2036],[-148.1453,60.2349],[-148.1797,60.163],[-148.2104,60.2583],[-148.3292,60.2125],[-148.3542,60.2813],[-148.3,60.2604],[-148.2088,60.3005],[-148.1161,60.3776],[-148.0068,60.4005],[-147.9672,60.4484],[-147.9734,60.5141],[-148.0672,60.5609],[-148.0818,60.5932],[-148.1516,60.5745],[-148.1682,60.538],[-148.2693,60.487],[-148.3328,60.4724],[-148.3479,60.5042],[-148.4349,60.513],[-148.4542,60.5417],[-148.5745,60.4995],[-148.6896,60.4354],[-148.7146,60.4562],[-148.5974,60.5328],[-148.5229,60.5646],[-148.4542,60.5687],[-148.325,60.5292],[-148.2682,60.5849],[-148.188,60.6099],[-148.2547,60.7026],[-148.2583,60.7562],[-148.3307,60.7036],[-148.3583,60.6542],[-148.4047,60.6651],[-148.3833,60.7542],[-148.512,60.7661],[-148.588,60.6984],[-148.6812,60.6458],[-148.6807,60.7057],[-148.5604,60.8042],[-148.6562,60.775],[-148.7104,60.7875],[-148.6021,60.825],[-148.4333,60.8292],[-148.4063,60.8458],[-148.3068,60.8339],[-148.2563,60.9354],[-148.1859,60.9901],[-148.1651,61.0661],[-148.3245,61.0266],[-148.3838,60.9776],[-148.3687,61.0417],[-148.2354,61.0875],[-148.1479,61.0979],[-148.0792,61.0062],[-148.0005,61.063],[-147.9807,61.1078],[-147.8505,61.1839],[-147.7224,61.287],[-147.6714,61.2693],[-147.7542,61.2083],[-147.7578,61.1849],[-147.9057,61.0891],[-147.9943,60.9609],[-148.0104,60.9167],[-147.9229,60.8896],[-147.9099,60.8536],[-147.7792,60.8104],[-147.7958,60.9188],[-147.7208,60.9396],[-147.6667,60.8625],[-147.6047,60.8484],[-147.5943,60.9359],[-147.6167,61.0083],[-147.5568,61.0797],[-147.5599,61.1453],[-147.5104,61.0812],[-147.5412,60.987],[-147.5099,60.9099],[-147.4755,60.9911],[-147.4458,60.8937],[-147.3667,60.8833],[-147.3062,60.9229],[-147.2505,60.9276],[-147.2912,60.9849],[-147.2276,60.9922],[-147.2104,60.9437],[-147.0922,61.013],[-147.0354,60.9917],[-147.0036,61.0203],[-146.9625,60.9313],[-146.863,60.9734],[-146.7667,61.0438],[-146.7021,61.0542],[-146.5979,61.1437],[-146.5708,61.1208],[-146.4646,61.1333],[-146.3042,61.1292],[-146.2354,61.0896],[-146.45,61.0771],[-146.6104,61.0812],[-146.7161,60.9672],[-146.6208,60.9521],[-146.6021,60.9188],[-146.7516,60.9453],[-146.6891,60.8672],[-146.6313,60.8854],[-146.6333,60.8167],[-146.5708,60.8563],[-146.5396,60.8104],[-146.3562,60.8167],[-146.2901,60.838],[-146.2453,60.8786],[-146.1708,60.8458],[-146.2312,60.8083],[-146.3313,60.7854],[-146.5474,60.7703],[-146.6714,60.7391],[-146.6536,60.6859],[-146.5354,60.6917],[-146.4896,60.6688],[-146.4187,60.6875],[-146.3057,60.7536],[-146.2979,60.7125],[-146.2349,60.7203],[-146.1854,60.7562],[-146.1568,60.7255],[-146.0693,60.7734],[-146.0568,60.7359],[-146.2172,60.663],[-146.2521,60.6229],[-146.15,60.6312],[-146.025,60.6646],[-145.938,60.6255],[-145.8995,60.6745],[-145.8437,60.6104],[-145.6651,60.6547],[-145.6943,60.5922],[-145.7922,60.5193],[-145.9141,60.4891],[-145.8792,60.4458],[-145.7583,60.4646],[-145.5495,60.4359],[-145.4792,60.3812],[-145.3687,60.3563],[-145.3333,60.3417],[-145.2088,60.3672],[-145.0901,60.438],[-145.0307,60.5099],[-144.9833,60.5354],[-144.8859,60.5485],[-144.8396,60.6188],[-144.7792,60.6292],[-144.7625,60.6792],[-144.7,60.6958],[-144.7042,60.675],[-144.6542,60.6667],[-144.6021,60.7167],[-144.5917,60.7333],[-144.6396,60.6521],[-144.7083,60.6458],[-144.7641,60.6661],[-144.7588,60.6109],[-144.8109,60.563],[-144.8229,60.5146],[-144.7943,60.4547],[-144.9141,60.3578],[-144.9536,60.288],[-144.7667,60.2792],[-144.6771,60.2104],[-144.5562,60.1771],[-144.3729,60.1667],[-144.2937,60.1813],[-144.2891,60.1422],[-144.1083,60.0979],[-144.0453,60.0484],[-144.2125,60.0417],[-144.2479,60.0229],[-144.0292,60.0208],[-143.8899,59.9893],[-143.6479,60.0375],[-143.4687,60.0604],[-143.4292,60.0521],[-143.1083,60.0667],[-143.0375,60.1],[-142.9896,60.0833],[-142.7583,60.1104],[-142.0208,60.025],[-141.8854,60.0021],[-141.7502,59.9515],[-141.6046,59.9636],[-141.5308,59.9897],[-141.4297,60],[-141.3693,60.0255],[-141.4479,60.0812],[-141.4521,60.1104],[-141.4271,60.125],[-141.3458,60.0854],[-141.1938,60.1208],[-141.3146,60.0542]]],[[[-153.2523,57.997],[-153.3048,57.9846],[-153.0948,57.8618],[-153.2349,57.8944],[-153.1796,57.7972],[-153.2057,57.7901],[-153.3381,57.8037],[-153.4768,57.8417],[-153.4604,57.7899],[-153.3313,57.7493],[-153.3528,57.7027],[-153.3903,57.7499],[-153.4889,57.7744],[-153.5247,57.6561],[-153.5561,57.7382],[-153.5718,57.8323],[-153.6191,57.8804],[-153.7197,57.8965],[-153.9306,57.8091],[-153.9356,57.7297],[-153.9056,57.7013],[-153.8011,57.6964],[-153.6667,57.665],[-153.6593,57.6401],[-153.8682,57.6502],[-153.8798,57.633],[-153.6942,57.5278],[-153.8196,57.5379],[-153.8122,57.4136],[-153.7398,57.3174],[-153.7589,57.3075],[-153.8326,57.3861],[-153.8943,57.4205],[-153.9267,57.5334],[-153.9894,57.5386],[-153.9801,57.621],[-154.0172,57.6483],[-154.2328,57.6633],[-154.2622,57.6419],[-154.3872,57.6139],[-154.4448,57.5733],[-154.5178,57.5766],[-154.5228,57.5367],[-154.63,57.5078],[-154.651,57.4611],[-154.7161,57.4308],[-154.6956,57.3989],[-154.7441,57.3252],[-154.7347,57.2715],[-154.6211,57.2704],[-154.5294,57.1803],[-154.5144,57.0781],[-154.5283,56.9922],[-154.3967,56.9633],[-154.3122,56.9175],[-154.3033,56.8419],[-154.2256,56.8758],[-154.205,56.9292],[-154.1533,56.9489],[-154.1511,57.0019],[-154.0917,57.1006],[-154.1157,57.128],[-154.2939,57.1136],[-154.3789,57.0497],[-154.4361,57.0544],[-154.4744,57.1242],[-154.3911,57.1233],[-154.3383,57.1503],[-154.2289,57.1614],[-154.0767,57.122],[-154.013,57.1289],[-154.1078,57.0569],[-154.1417,56.9972],[-154.0744,56.9703],[-153.9764,57.0566],[-153.8818,57.1171],[-153.8033,57.1125],[-153.9209,57.0629],[-153.975,56.958],[-153.8595,56.9833],[-153.844,56.945],[-153.9799,56.8977],[-154.0089,56.86],[-154.0806,56.8406],[-154.1506,56.7469],[-154.0556,56.7631],[-153.9767,56.7434],[-153.8985,56.7667],[-153.8426,56.8329],[-153.7583,56.8383],[-153.6698,56.9309],[-153.6013,56.933],[-153.5406,57.0009],[-153.6388,57.0157],[-153.5943,57.0563],[-153.7026,57.057],[-153.6611,57.0842],[-153.573,57.0927],[-153.4994,57.0651],[-153.486,57.14],[-153.4498,57.1119],[-153.3419,57.1898],[-153.2185,57.2175],[-153.0797,57.2123],[-152.9507,57.2491],[-153.015,57.3014],[-153.0985,57.287],[-153.1928,57.3019],[-152.9974,57.3446],[-152.8593,57.3044],[-152.8187,57.2645],[-152.7432,57.3129],[-152.7069,57.2759],[-152.6267,57.3286],[-152.626,57.4058],[-152.7157,57.4185],[-152.8164,57.4717],[-152.9326,57.4641],[-152.8832,57.5117],[-152.8011,57.4943],[-152.7389,57.5058],[-152.6636,57.4632],[-152.5173,57.4336],[-152.4891,57.4683],[-152.3504,57.4213],[-152.2889,57.5211],[-152.1668,57.5868],[-152.1544,57.6205],[-152.2689,57.6283],[-152.4695,57.6014],[-152.4004,57.6876],[-152.492,57.6457],[-152.4638,57.7251],[-152.5327,57.6951],[-152.5581,57.719],[-152.4009,57.7757],[-152.3467,57.835],[-152.4212,57.8138],[-152.4004,57.8557],[-152.5269,57.9104],[-152.6172,57.9208],[-152.7102,57.8644],[-152.7285,57.8189],[-152.785,57.8587],[-152.8458,57.829],[-152.8438,57.729],[-152.908,57.7557],[-152.9123,57.8195],[-152.8612,57.8791],[-152.7971,57.8995],[-152.8497,57.9291],[-152.9995,57.9471],[-152.9976,57.9188],[-153.1989,57.9682],[-153.2523,57.997]]],[[[-133.6022,56.3561],[-133.6639,56.3195],[-133.6065,56.1902],[-133.4683,56.1764],[-133.4621,56.1401],[-133.526,56.1179],[-133.6245,56.1424],[-133.6361,56.0859],[-133.7022,56.0669],[-133.8092,55.9668],[-133.7939,55.9164],[-133.6961,55.9128],[-133.6272,55.9678],[-133.5385,55.981],[-133.3783,56.0328],[-133.365,55.9886],[-133.4311,55.9559],[-133.4422,55.9133],[-133.3844,55.8947],[-133.3861,55.9539],[-133.2878,56.0156],[-133.285,55.9564],[-133.2399,55.8833],[-133.1633,55.8456],[-133.1678,55.8095],[-133.2583,55.7464],[-133.314,55.7599],[-133.3423,55.7063],[-133.3911,55.7287],[-133.4078,55.6477],[-133.3592,55.6069],[-133.2716,55.5756],[-133.1819,55.5809],[-133.1378,55.613],[-133.0855,55.6109],[-133.0817,55.5603],[-133.156,55.4766],[-133.0725,55.4473],[-133.0511,55.4002],[-132.9752,55.3661],[-133.0039,55.3431],[-133.1027,55.3753],[-133.2255,55.3828],[-133.2795,55.3511],[-133.235,55.2842],[-133.0897,55.2696],[-132.9585,55.2767],[-133.0395,55.2342],[-133.0161,55.2031],[-132.8806,55.2314],[-132.8353,55.2693],[-132.8267,55.2019],[-132.6635,55.1393],[-132.629,55.1723],[-132.6577,55.2349],[-132.5822,55.1719],[-132.6292,55.1109],[-132.525,55.1161],[-132.5575,55.0765],[-132.5211,55.0394],[-132.6163,54.9699],[-132.5294,54.9327],[-132.4695,54.98],[-132.4927,54.8952],[-132.4478,54.9039],[-132.4111,54.9678],[-132.3755,54.8935],[-132.3072,54.8392],[-132.3656,54.8186],[-132.3078,54.7803],[-132.31,54.7217],[-132.2308,54.718],[-132.165,54.6908],[-132.0178,54.69],[-131.9982,54.7297],[-132.0182,54.7848],[-131.9633,54.7831],[-131.9728,54.8489],[-132.054,54.8928],[-131.9789,54.8983],[-131.9656,54.9528],[-132.0305,55.0332],[-132.1306,54.9964],[-132.2056,55.0033],[-132.0928,55.0406],[-132.076,55.0797],[-131.9944,55.1128],[-132.0367,55.1431],[-131.9755,55.1836],[-131.9922,55.2583],[-132.0283,55.2798],[-132.1103,55.1989],[-132.2273,55.2207],[-132.0939,55.2667],[-132.1463,55.3377],[-132.205,55.3628],[-132.2595,55.4171],[-132.3626,55.4077],[-132.4111,55.4203],[-132.3189,55.4703],[-132.3972,55.4742],[-132.4122,55.5155],[-132.4883,55.4964],[-132.5854,55.4986],[-132.5356,55.5603],[-132.5387,55.6084],[-132.4217,55.5395],[-132.2305,55.4843],[-132.1761,55.4506],[-132.1822,55.5059],[-132.3043,55.5599],[-132.3737,55.6609],[-132.4958,55.6594],[-132.4444,55.7201],[-132.4911,55.7545],[-132.4861,55.7967],[-132.6164,55.9083],[-132.7346,55.9842],[-132.8272,56.0228],[-132.9675,56.0281],[-133.0119,56.0557],[-133.0779,56.0429],[-133.1222,56.0937],[-133.0766,56.1111],[-133.0379,56.1827],[-133.1239,56.2601],[-133.1502,56.3069],[-133.2032,56.3351],[-133.3071,56.3218],[-133.3573,56.3401],[-133.4156,56.3269],[-133.6022,56.3561]]],[[[-135.8933,57.9978],[-135.5022,57.8764],[-135.4137,57.8591],[-135.3158,57.807],[-135.2025,57.7765],[-135.0202,57.7798],[-134.9578,57.8167],[-135.141,57.924],[-134.9995,57.8892],[-134.9226,57.9232],[-134.9142,57.9763],[-134.9527,58.04],[-135.1087,58.0607],[-135.1161,58.0914],[-135.275,58.0975],[-135.4063,58.1442],[-135.4672,58.1311],[-135.4878,58.0858],[-135.5576,58.0449],[-135.6433,57.9661],[-135.7452,57.992],[-135.637,57.9957],[-135.7133,58.0594],[-135.626,58.049],[-135.5184,58.1268],[-135.5277,58.1876],[-135.6496,58.2291],[-135.7322,58.2386],[-135.7797,58.2842],[-135.825,58.2827],[-136.0056,58.1881],[-136.1404,58.2256],[-136.2027,58.1773],[-136.2029,58.1453],[-136.2957,58.2232],[-136.354,58.2238],[-136.3201,58.1551],[-136.4437,58.1252],[-136.4386,58.0952],[-136.2495,57.9824],[-136.1104,57.8704],[-136.272,57.9688],[-136.3539,58.0028],[-136.3611,57.9339],[-136.4322,57.8431],[-136.2951,57.7629],[-136.2589,57.7773],[-136.1096,57.6911],[-136.1621,57.6423],[-135.9686,57.5291],[-135.9228,57.5245],[-135.8178,57.445],[-136,57.5295],[-135.9683,57.4633],[-135.9144,57.4475],[-135.84,57.3892],[-135.713,57.3664],[-135.6755,57.4069],[-135.6201,57.4119],[-135.5556,57.4527],[-135.5811,57.5177],[-135.5705,57.5955],[-135.7056,57.6589],[-135.7283,57.72],[-135.6263,57.7015],[-135.5337,57.6521],[-135.2485,57.5484],[-135.1286,57.4971],[-135.0886,57.4655],[-134.9818,57.4573],[-134.8706,57.4647],[-134.8334,57.4873],[-134.85,57.5805],[-134.9229,57.6779],[-134.9288,57.7571],[-135.0216,57.7439],[-135.1106,57.76],[-135.2361,57.7072],[-135.2444,57.7322],[-135.3271,57.7472],[-135.3774,57.8013],[-135.5178,57.8431],[-135.5769,57.8838],[-135.7894,57.9411],[-135.8933,57.9978]]],[[[-171.6536,63.7734],[-171.7068,63.7464],[-171.8391,63.5516],[-171.8432,63.4859],[-171.8167,63.4313],[-171.7312,63.3667],[-171.5458,63.3187],[-171.4333,63.3083],[-171.2964,63.3526],[-171.2833,63.3833],[-171.1917,63.3958],[-171.0604,63.4333],[-170.9458,63.4354],[-170.8521,63.4562],[-170.7833,63.4083],[-170.5849,63.3964],[-170.3526,63.3141],[-170.3167,63.2875],[-170.2375,63.2792],[-170.2245,63.188],[-170.1021,63.1896],[-170.0042,63.1437],[-169.9104,63.1458],[-169.7583,63.0812],[-169.7109,63.0109],[-169.7708,63.0083],[-169.7542,62.9583],[-169.6375,62.9375],[-169.6172,62.9672],[-169.5318,62.9776],[-169.5771,63.0521],[-169.4563,63.0958],[-169.3745,63.1557],[-169.2125,63.2],[-169.0667,63.1979],[-168.9521,63.1604],[-168.8792,63.1604],[-168.7214,63.2318],[-168.7,63.3],[-168.8203,63.3026],[-168.8813,63.3292],[-169.0042,63.3417],[-169.2563,63.3417],[-169.3938,63.3563],[-169.475,63.3438],[-169.5578,63.3609],[-169.5693,63.3995],[-169.6521,63.4292],[-169.8229,63.4292],[-169.9375,63.4688],[-170.0641,63.488],[-170.1062,63.6146],[-170.1458,63.6146],[-170.2896,63.6875],[-170.4771,63.6958],[-170.5359,63.6672],[-170.6375,63.6688],[-170.8932,63.5714],[-170.9854,63.5646],[-171.175,63.5875],[-171.2271,63.6125],[-171.4995,63.6005],[-171.5172,63.6578],[-171.65,63.7062],[-171.6536,63.7734]]],[[[-134.1774,58.156],[-134.3336,58.1428],[-134.4486,58.1739],[-134.538,58.1824],[-134.6926,58.1596],[-134.7094,58.2282],[-134.8047,58.3218],[-134.8781,58.3574],[-134.887,58.3218],[-134.9527,58.4091],[-134.957,58.31],[-134.8959,58.1916],[-134.866,58.1814],[-134.7709,58.0873],[-134.8099,58.0452],[-134.7056,57.8317],[-134.7309,57.7217],[-134.6778,57.6113],[-134.6118,57.5624],[-134.5797,57.4765],[-134.4686,57.3843],[-134.5808,57.401],[-134.57,57.305],[-134.6539,57.2233],[-134.6067,57.1528],[-134.6378,57.1076],[-134.6004,57.0335],[-134.4926,57.0278],[-134.4804,57.0497],[-134.3745,57.0919],[-134.281,57.1579],[-134.1557,57.2075],[-134.1486,57.2636],[-134.0956,57.2709],[-134.1606,57.3333],[-134.1744,57.3911],[-134.1078,57.3213],[-134.0861,57.3614],[-133.9808,57.3042],[-133.8624,57.3677],[-133.9189,57.4437],[-134.0889,57.495],[-134,57.4947],[-133.9137,57.4715],[-133.9464,57.5673],[-133.9351,57.6109],[-134.0472,57.6747],[-134.1483,57.7631],[-134.2339,57.8647],[-134.3102,57.8558],[-134.2811,57.9175],[-134.3304,58.0005],[-134.2383,57.9669],[-134.3154,58.0957],[-134.2038,58.0246],[-134.1387,57.9048],[-134.0928,57.8493],[-134.0317,57.8175],[-133.9981,57.7199],[-133.8561,57.6228],[-133.809,57.6276],[-133.8941,57.6847],[-133.8748,57.7321],[-133.9006,57.8064],[-134.0064,57.8933],[-133.9922,57.9122],[-134.0987,57.9826],[-134.099,58.0175],[-134.1724,58.0671],[-134.2041,58.1147],[-134.1774,58.156]]],[[[-166.1057,60.3651],[-166.2729,60.3833],[-166.3755,60.3443],[-166.4375,60.375],[-166.5745,60.3516],[-166.5896,60.3021],[-166.6375,60.325],[-166.7583,60.3042],[-166.8286,60.2693],[-166.7964,60.2391],[-166.862,60.2026],[-166.9479,60.2208],[-167.0542,60.2146],[-167.1083,60.2313],[-167.3146,60.2313],[-167.4401,60.2016],[-167.338,60.1266],[-167.3307,60.0651],[-167.2401,60.0578],[-167.1349,60],[-167.0226,60],[-166.8954,59.9591],[-166.7519,59.8929],[-166.675,59.8844],[-166.613,59.8527],[-166.4162,59.8567],[-166.3073,59.8262],[-166.2004,59.7758],[-166.1926,59.7515],[-166.1086,59.7531],[-166.0808,59.7757],[-166.1281,59.8205],[-166.0296,59.867],[-165.9553,59.8817],[-165.8922,59.8717],[-165.7468,59.9084],[-165.7165,59.8943],[-165.5799,59.9127],[-165.5885,59.9502],[-165.6536,59.9961],[-165.7109,60.063],[-165.6672,60.0984],[-165.6839,60.2005],[-165.7255,60.2464],[-165.6776,60.2703],[-165.7854,60.3229],[-165.8729,60.3396],[-165.9995,60.3089],[-166.0854,60.3187],[-166.1057,60.3651]]],[[[-135.4126,57.5579],[-135.4506,57.5575],[-135.551,57.5093],[-135.5329,57.4511],[-135.6008,57.4035],[-135.495,57.3533],[-135.685,57.3725],[-135.5498,57.2378],[-135.4995,57.2561],[-135.3456,57.2473],[-135.4242,57.1687],[-135.4038,57.1011],[-135.3389,57.0472],[-135.2724,57.0319],[-135.3039,56.9847],[-135.3761,56.9891],[-135.3406,56.8772],[-135.3967,56.8801],[-135.3779,56.8164],[-135.3283,56.8283],[-135.2911,56.7208],[-135.1912,56.7619],[-135.2244,56.6936],[-135.18,56.6659],[-135.0344,56.7697],[-135.0177,56.7437],[-135.0917,56.7195],[-135.1417,56.6786],[-135.1283,56.6064],[-135.0783,56.6008],[-135.0089,56.6367],[-135.0648,56.5407],[-134.9022,56.3506],[-134.8422,56.3222],[-134.8089,56.2414],[-134.7183,56.2245],[-134.6656,56.1673],[-134.6283,56.2643],[-134.6377,56.5395],[-134.6155,56.6361],[-134.6645,56.8073],[-134.7042,56.8391],[-134.6967,56.9003],[-134.7363,56.9693],[-134.7635,57.0687],[-134.7893,57.0846],[-134.7994,57.1633],[-134.8641,57.212],[-134.8628,57.2717],[-134.945,57.2711],[-134.9222,57.3438],[-134.8323,57.2926],[-134.8036,57.3409],[-134.8539,57.4114],[-134.8987,57.4261],[-135.0079,57.411],[-135.1642,57.4454],[-135.225,57.4889],[-135.2749,57.4667],[-135.3214,57.5365],[-135.4126,57.5579]]],[[[-163.7622,55.0478],[-163.8961,55.0364],[-164.0227,54.9723],[-164.1606,54.9601],[-164.2061,54.9283],[-164.3378,54.8953],[-164.4328,54.9328],[-164.5544,54.8878],[-164.5573,54.8539],[-164.6715,54.7003],[-164.7167,54.6561],[-164.8036,54.6421],[-164.9289,54.5997],[-164.94,54.5364],[-164.8478,54.42],[-164.7394,54.3931],[-164.655,54.3886],[-164.4494,54.4211],[-164.335,54.4821],[-164.328,54.5403],[-164.2061,54.5959],[-164.0667,54.624],[-163.8189,54.6361],[-163.5868,54.6105],[-163.4989,54.6525],[-163.4208,54.6557],[-163.4256,54.72],[-163.3261,54.7459],[-163.285,54.6958],[-163.1134,54.6953],[-163.1572,54.6678],[-163.0601,54.6625],[-163.1,54.7295],[-163.1866,54.7769],[-163.2244,54.7553],[-163.33,54.7531],[-163.4022,54.8397],[-163.395,54.895],[-163.467,54.9851],[-163.5317,55.0147],[-163.5396,55.051],[-163.6594,55.04],[-163.7622,55.0478]]],[[[-133.8678,57.0963],[-134.0083,57.0728],[-134.0411,57.0227],[-133.8922,56.9484],[-133.8328,56.9014],[-133.8729,56.8591],[-133.712,56.7883],[-133.7086,56.6481],[-133.6533,56.5917],[-133.6744,56.52],[-133.645,56.4404],[-133.5089,56.4363],[-133.4324,56.4506],[-133.3883,56.4965],[-133.2211,56.4481],[-133.1561,56.4583],[-133.0846,56.5273],[-133.0978,56.6011],[-133.1461,56.6367],[-133.2507,56.6519],[-133.2162,56.6972],[-133.2499,56.7498],[-133.3028,56.73],[-133.3427,56.7647],[-133.3011,56.7961],[-133.2462,56.795],[-133.2156,56.7364],[-133.0272,56.6047],[-132.956,56.6278],[-132.9323,56.665],[-132.9967,56.8131],[-132.9406,56.8522],[-132.9923,56.9375],[-133.0755,56.9908],[-133.2065,57.0122],[-133.3222,57.0059],[-133.2637,56.938],[-133.2886,56.925],[-133.3263,56.9929],[-133.5692,57.0439],[-133.5974,57.059],[-133.8678,57.0963]]],[[[-131.2521,55.9681],[-131.459,55.9357],[-131.5053,55.9142],[-131.6,55.8996],[-131.5246,55.8383],[-131.7121,55.8336],[-131.7009,55.8023],[-131.6308,55.7837],[-131.7328,55.7289],[-131.6991,55.6965],[-131.7238,55.6345],[-131.6294,55.6011],[-131.7182,55.5168],[-131.8311,55.4486],[-131.7365,55.3978],[-131.6872,55.3505],[-131.5504,55.2939],[-131.4661,55.3751],[-131.54,55.4756],[-131.4928,55.4781],[-131.4661,55.4092],[-131.4119,55.3713],[-131.3253,55.4299],[-131.3312,55.5104],[-131.3691,55.6309],[-131.289,55.4657],[-131.33,55.3797],[-131.4838,55.3],[-131.4528,55.2756],[-131.3555,55.2595],[-131.2835,55.2881],[-131.2542,55.3325],[-131.2928,55.3792],[-131.2521,55.3995],[-131.1904,55.3616],[-131.2405,55.2871],[-131.327,55.2452],[-131.235,55.1968],[-131.185,55.1908],[-131.1477,55.2297],[-131.0643,55.2602],[-131.021,55.3501],[-131.0383,55.4],[-130.9706,55.3928],[-130.9943,55.4738],[-130.9894,55.5373],[-130.9397,55.6198],[-130.9738,55.7058],[-131.0419,55.7668],[-131.0711,55.8278],[-131.2521,55.9681]]],[[[-166.6476,54.0133],[-166.7472,54.0143],[-166.8534,53.976],[-166.8765,53.9877],[-167.0756,53.925],[-167.1529,53.8282],[-167.0095,53.7547],[-166.9611,53.7772],[-166.8317,53.7406],[-166.7122,53.7278],[-166.8332,53.7077],[-166.7889,53.6258],[-166.8961,53.7164],[-167,53.7175],[-167.0722,53.6665],[-167.0093,53.6421],[-167.045,53.6078],[-167.1061,53.6344],[-167.165,53.6014],[-167.0735,53.5101],[-167.161,53.5097],[-167.1618,53.4673],[-167.2845,53.4777],[-167.3281,53.4058],[-167.4718,53.4479],[-167.4985,53.394],[-167.5515,53.4029],[-167.7106,53.3816],[-167.8551,53.3101],[-167.6567,53.2472],[-167.6106,53.2829],[-167.4958,53.279],[-167.4555,53.3211],[-167.3049,53.335],[-167.2968,53.369],[-167.1714,53.3972],[-167.151,53.4186],[-167.0528,53.4317],[-167.0292,53.4642],[-166.9011,53.4336],[-166.8789,53.4725],[-166.8078,53.4342],[-166.7461,53.4864],[-166.7711,53.5269],[-166.6622,53.4836],[-166.5964,53.5338],[-166.5517,53.6236],[-166.425,53.66],[-166.2744,53.6864],[-166.3244,53.7306],[-166.3206,53.7689],[-166.4133,53.7631],[-166.5696,53.7056],[-166.5104,53.7772],[-166.4128,53.8081],[-166.3561,53.8572],[-166.2625,53.8714],[-166.2217,53.9022],[-166.275,53.9831],[-166.3367,53.9461],[-166.4428,53.9514],[-166.4439,53.9033],[-166.5234,53.8733],[-166.6182,53.8684],[-166.6461,53.9286],[-166.5905,53.9638],[-166.6476,54.0133]]],[[[-134.2456,56.9358],[-134.2195,56.9025],[-134.145,56.8753],[-134.1617,56.8489],[-134.2942,56.9078],[-134.3561,56.8942],[-134.3456,56.8347],[-134.4228,56.8411],[-134.3911,56.7564],[-134.4011,56.7261],[-134.2652,56.603],[-134.2672,56.5606],[-134.2028,56.5414],[-134.1389,56.4775],[-134.0956,56.5439],[-134.0444,56.4869],[-134.0744,56.4458],[-134.0567,56.3839],[-134.1172,56.4131],[-134.1533,56.3978],[-134.2378,56.4323],[-134.2336,56.361],[-134.2939,56.3539],[-134.2744,56.3142],[-134.1761,56.3278],[-134.231,56.2758],[-134.2768,56.2656],[-134.2461,56.1756],[-134.2606,56.1333],[-134.2122,56.105],[-134.2222,56.0631],[-134.1694,56.0578],[-134.1373,56.0091],[-134.0911,56.0895],[-134.1039,56.1431],[-134.0613,56.2316],[-134.0263,56.1479],[-134.045,56.1179],[-133.9942,56.0803],[-133.9577,56.0947],[-133.9339,56.1687],[-133.9561,56.2051],[-133.8817,56.2205],[-133.9189,56.2779],[-133.9812,56.2659],[-133.9522,56.3454],[-133.875,56.275],[-133.8311,56.3233],[-133.9077,56.3688],[-133.892,56.4284],[-133.8355,56.4305],[-133.9268,56.5165],[-133.8743,56.5204],[-133.8365,56.6061],[-133.7446,56.5565],[-133.6904,56.6026],[-133.7361,56.6728],[-133.7706,56.6795],[-133.735,56.7783],[-133.8745,56.8109],[-133.8642,56.7518],[-133.935,56.6933],[-133.9272,56.76],[-134.0144,56.8736],[-134.1545,56.9195],[-134.2456,56.9358]]],[[[-152.6501,58.4766],[-152.6964,58.4148],[-152.7267,58.4506],[-152.8678,58.3861],[-152.778,58.3671],[-152.784,58.2784],[-152.9802,58.2865],[-153.0449,58.3064],[-153.1044,58.2603],[-153.0038,58.2059],[-153.1732,58.2161],[-153.2222,58.1595],[-153.1668,58.1263],[-153.0739,58.1006],[-153.02,58.0453],[-152.9711,58.0403],[-152.8613,57.9924],[-152.7572,58.0122],[-152.7593,58.0558],[-152.7061,58.0494],[-152.6278,58.0769],[-152.6028,58.1594],[-152.56,58.1883],[-152.5694,58.1044],[-152.4367,58.1394],[-152.3967,58.1181],[-152.2714,58.1252],[-152.3572,58.2011],[-152.3199,58.2478],[-152.2683,58.2573],[-152.2203,58.1916],[-152.1394,58.1567],[-152.083,58.1536],[-151.9646,58.2594],[-151.9957,58.3452],[-152.0357,58.2879],[-152.0839,58.3081],[-152.1256,58.2298],[-152.1394,58.2947],[-152.0939,58.3719],[-152.1739,58.3725],[-152.2017,58.3422],[-152.2722,58.3794],[-152.3678,58.3808],[-152.3811,58.3131],[-152.4394,58.3747],[-152.4806,58.3328],[-152.5035,58.4124],[-152.4872,58.4626],[-152.6501,58.4766]]],[[[-167.9944,53.5642],[-168.0867,53.5592],[-168.2345,53.5292],[-168.3454,53.4703],[-168.4078,53.4219],[-168.3844,53.3806],[-168.4294,53.3236],[-168.3745,53.3181],[-168.3445,53.2614],[-168.5094,53.2514],[-168.5872,53.2717],[-168.6944,53.2272],[-168.8039,53.1408],[-168.7617,53.0803],[-168.8072,53.0258],[-168.8589,53.0183],[-168.8583,52.9508],[-168.9595,52.9319],[-168.9567,52.8664],[-168.7861,52.9486],[-168.6272,52.9914],[-168.5922,53.0256],[-168.4978,53.0325],[-168.3944,53.1247],[-168.3617,53.1325],[-168.3339,53.2042],[-168.27,53.2422],[-168.1211,53.2761],[-167.8413,53.3861],[-167.8522,53.4495],[-167.7893,53.4883],[-167.7912,53.5211],[-167.937,53.5263],[-167.9944,53.5642]]],[[[-174.1405,52.4133],[-174.2672,52.4022],[-174.3172,52.3808],[-174.3589,52.3133],[-174.4075,52.2886],[-174.2406,52.2756],[-174.2389,52.2419],[-174.36,52.2128],[-174.4633,52.2183],[-174.4761,52.1858],[-174.5945,52.1444],[-174.6361,52.1128],[-174.7839,52.0794],[-174.9067,52.1178],[-174.9933,52.0597],[-175.1289,52.0281],[-175.1422,52.0596],[-175.3011,52.0183],[-175.2127,52.0054],[-175.0159,52.007],[-174.9672,52.0375],[-174.8932,52.0471],[-174.7078,52.0089],[-174.6789,52.0556],[-174.6483,52.0231],[-174.5567,52.035],[-174.5072,52.0706],[-174.4183,52.0375],[-174.3728,52.1028],[-174.3306,52.1203],[-174.2311,52.0919],[-174.2089,52.115],[-174.0783,52.1292],[-174.1978,52.1969],[-174.1783,52.2344],[-174.0607,52.2244],[-173.9928,52.2906],[-174.025,52.3614],[-174.1405,52.4133]]],[[[-132.42,56.3478],[-132.5348,56.3362],[-132.5965,56.2449],[-132.71,56.2227],[-132.7064,56.1088],[-132.6361,56.0317],[-132.5915,56.0829],[-132.4545,56.0625],[-132.4307,56.0286],[-132.4312,55.9535],[-132.352,55.9124],[-132.235,55.925],[-132.2,55.9875],[-132.2156,56.0442],[-132.168,56.0457],[-132.1082,56.1127],[-132.1877,56.1683],[-132.3131,56.1898],[-132.3818,56.2249],[-132.3781,56.3085],[-132.42,56.3478]]],[[[-147.0875,60.3667],[-147.1042,60.3792],[-147.212,60.3453],[-147.1651,60.3068],[-147.212,60.2911],[-147.1859,60.2505],[-147.2474,60.2328],[-147.3578,60.162],[-147.3984,60.113],[-147.6167,60.0104],[-147.7068,59.9923],[-147.8273,59.9036],[-147.7531,59.8786],[-147.8613,59.8721],[-147.9179,59.8335],[-147.8831,59.7651],[-147.7689,59.8042],[-147.6934,59.8011],[-147.6391,59.8491],[-147.525,59.8411],[-147.469,59.8599],[-147.4563,59.9044],[-147.5142,59.9373],[-147.4464,59.9659],[-147.3852,59.9549],[-147.3958,60.0004],[-147.3604,60.0417],[-147.2078,60.1453],[-147.0318,60.2172],[-146.9172,60.288],[-146.9521,60.3063],[-147.0604,60.2667],[-147.0891,60.2891],[-147.0104,60.3438],[-147.0875,60.3354],[-147.0875,60.3667]]],[[[172.7928,53.0039],[172.6533,53.0036],[172.4672,52.9308],[172.5128,52.9056],[172.6372,52.9247],[172.6245,52.8653],[172.7456,52.8758],[172.7515,52.8073],[172.8928,52.7864],[172.9061,52.7458],[173.0567,52.8325],[173.1161,52.7844],[173.23,52.8575],[173.3044,52.8258],[173.4072,52.8472],[173.2874,52.8591],[173.3039,52.9242],[173.2117,52.9375],[173.1245,52.9903],[172.9983,52.9922],[172.9423,52.972],[172.9059,52.994],[172.7928,53.0039]]],[[[-133.1011,55.2372],[-133.1241,55.2586],[-133.2217,55.2414],[-133.1913,55.1953],[-133.2395,55.1836],[-133.2122,55.1067],[-133.2111,55.0428],[-133.1466,54.9975],[-133.1613,54.9465],[-133.0744,54.9125],[-133.0028,54.8283],[-132.9235,54.8489],[-132.9724,54.7995],[-132.8867,54.7651],[-132.8372,54.6903],[-132.8183,54.7117],[-132.75,54.6693],[-132.6817,54.6819],[-132.7306,54.7428],[-132.7491,54.8193],[-132.8551,54.8963],[-132.9076,54.913],[-132.9633,54.9889],[-132.9547,55.0161],[-133.0614,55.0787],[-133.0106,55.0867],[-133.0522,55.1342],[-133.1011,55.2372]]],[[[-176.5656,51.9984],[-176.6628,51.9517],[-176.7229,51.9681],[-176.7911,51.9569],[-176.7961,51.9033],[-176.7306,51.8747],[-176.7894,51.8411],[-176.8078,51.7792],[-176.8661,51.8267],[-176.9044,51.7708],[-176.8311,51.7458],[-176.8994,51.6967],[-176.9811,51.6653],[-176.9889,51.6064],[-176.9344,51.5914],[-176.8672,51.6828],[-176.8389,51.6814],[-176.8061,51.6086],[-176.7233,51.6247],[-176.715,51.6806],[-176.5806,51.6875],[-176.5083,51.7617],[-176.4695,51.7264],[-176.4267,51.7489],[-176.4272,51.8367],[-176.519,51.8354],[-176.6291,51.8627],[-176.5811,51.9136],[-176.5656,51.9984]]],[[[-132.9322,56.8217],[-132.9794,56.8058],[-132.9396,56.7403],[-132.9344,56.6725],[-132.9011,56.6333],[-132.9455,56.6318],[-132.9751,56.6023],[-132.9521,56.5097],[-132.8149,56.4938],[-132.7243,56.5111],[-132.5425,56.5838],[-132.5932,56.6115],[-132.6183,56.6636],[-132.7368,56.7125],[-132.8293,56.795],[-132.9322,56.8217]]],[[[-132.3683,56.4867],[-132.38,56.4445],[-132.3427,56.4117],[-132.3417,56.3428],[-132.3653,56.2844],[-132.275,56.2069],[-132.1294,56.1653],[-132.0738,56.1158],[-132.024,56.1355],[-132.0161,56.195],[-131.9223,56.2031],[-132.0303,56.3527],[-132.0944,56.3711],[-132.1466,56.3447],[-132.237,56.3971],[-132.2447,56.4408],[-132.3683,56.4867]]],[[[-135.7624,57.3439],[-135.84,57.3406],[-135.825,57.3025],[-135.8739,57.2272],[-135.823,57.2207],[-135.8366,57.1761],[-135.7456,57.1649],[-135.76,57.1163],[-135.843,57.0907],[-135.8501,56.9933],[-135.638,57.0103],[-135.5722,57.0856],[-135.5629,57.1486],[-135.6148,57.1755],[-135.6254,57.2315],[-135.5685,57.2283],[-135.6261,57.3025],[-135.7624,57.3439]]],[[[-146.5328,60.4734],[-146.5979,60.4833],[-146.7245,60.387],[-146.7083,60.3417],[-146.6255,60.3589],[-146.5318,60.3297],[-146.6974,60.2786],[-146.6479,60.2354],[-146.6005,60.2401],[-146.3938,60.3271],[-146.1984,60.3464],[-146.1812,60.3708],[-146.1005,60.3734],[-146.1354,60.4313],[-146.3625,60.4063],[-146.3609,60.4724],[-146.4672,60.4547],[-146.5328,60.4734]]],[[[-132.8955,56.4575],[-133.0005,56.4306],[-133.0663,56.3309],[-132.9594,56.2953],[-132.8706,56.2322],[-132.6572,56.2769],[-132.6833,56.3464],[-132.6222,56.3911],[-132.6325,56.4212],[-132.718,56.4565],[-132.8128,56.4406],[-132.8955,56.4575]]],[[[-160.6967,55.4005],[-160.8022,55.3809],[-160.8417,55.3406],[-160.8555,55.2059],[-160.8083,55.1669],[-160.7547,55.1951],[-160.6833,55.1927],[-160.6144,55.1475],[-160.4969,55.1573],[-160.4932,55.2201],[-160.5699,55.2755],[-160.5786,55.3137],[-160.5281,55.343],[-160.5648,55.3906],[-160.6643,55.3017],[-160.6456,55.3821],[-160.6967,55.4005]]],[[[-178.0833,51.915],[-178.1992,51.908],[-178.2244,51.8617],[-178.095,51.8158],[-178.0372,51.7789],[-177.9611,51.7742],[-177.9517,51.7306],[-178.1144,51.6719],[-178.0461,51.6714],[-178.0007,51.639],[-177.9278,51.6456],[-177.8672,51.6764],[-177.8178,51.7894],[-177.6515,51.8166],[-177.6589,51.8489],[-177.735,51.8264],[-177.791,51.8453],[-177.8489,51.8247],[-177.9256,51.8578],[-177.9544,51.9025],[-178.0833,51.915]]],[[[-173.5144,52.1522],[-173.7706,52.1342],[-173.8089,52.0925],[-173.8889,52.1419],[-173.9983,52.1236],[-173.9422,52.0692],[-173.8289,52.0408],[-173.6806,52.0661],[-173.5761,52.0506],[-173.545,52.0272],[-173.4506,52.0469],[-173.1528,52.0592],[-173.1228,52.11],[-173.2361,52.0936],[-173.2983,52.1067],[-173.3533,52.0897],[-173.4406,52.1175],[-173.5442,52.1146],[-173.5144,52.1522]]],[[[-153.2133,57.2039],[-153.2727,57.1892],[-153.3851,57.114],[-153.3926,57.061],[-153.3053,56.9911],[-153.2413,57.0031],[-153.1957,57.0401],[-153.1764,57.0967],[-152.9122,57.1262],[-152.8686,57.1508],[-152.9459,57.1878],[-153.0465,57.1723],[-153.0625,57.1904],[-153.1999,57.1456],[-153.1622,57.1883],[-153.2133,57.2039]]],[[[-131.553,55.282],[-131.5915,55.2732],[-131.605,55.2142],[-131.5319,55.1495],[-131.585,55.1307],[-131.5982,55.0755],[-131.6485,55.0353],[-131.6028,54.9964],[-131.5121,55.057],[-131.4923,55.0121],[-131.3892,55.0119],[-131.3563,55.0403],[-131.3757,55.0909],[-131.3515,55.1233],[-131.3978,55.1969],[-131.553,55.282]]],[[[-177.1433,51.9422],[-177.1822,51.9417],[-177.2296,51.8029],[-177.4189,51.7531],[-177.445,51.76],[-177.5617,51.7208],[-177.64,51.7411],[-177.6928,51.7164],[-177.6737,51.6608],[-177.6167,51.7042],[-177.4678,51.705],[-177.3928,51.7339],[-177.2889,51.6811],[-177.1233,51.7261],[-177.1328,51.83],[-177.065,51.8611],[-177.0556,51.9103],[-177.1433,51.9422]]],[[[-165.9283,54.2125],[-165.9822,54.2206],[-166.0861,54.1739],[-166.1171,54.1226],[-166.0422,54.0428],[-165.98,54.0703],[-165.8973,54.0572],[-165.847,54.0809],[-165.7669,54.0645],[-165.689,54.0891],[-165.6723,54.1309],[-165.8133,54.1759],[-165.88,54.1825],[-165.9283,54.2125]]],[[[-172.9208,60.6042],[-173.0354,60.5625],[-173.0562,60.4938],[-172.9438,60.4813],[-172.8974,60.4484],[-172.7526,60.3849],[-172.737,60.3651],[-172.5688,60.3187],[-172.4687,60.3417],[-172.3437,60.3354],[-172.2917,60.2958],[-172.2214,60.3109],[-172.3161,60.3422],[-172.3838,60.3828],[-172.6141,60.3776],[-172.6167,60.4],[-172.7682,60.4464],[-172.8766,60.4984],[-172.9328,60.5589],[-172.9208,60.6042]]],[[[-160.6878,58.8139],[-160.8475,58.7495],[-160.9939,58.7243],[-161.0536,58.6897],[-161.0797,58.6383],[-161.0733,58.5456],[-160.963,58.5511],[-160.8839,58.5803],[-160.855,58.6258],[-160.6878,58.8139]]],[[[-159.8689,55.2844],[-159.9216,55.2488],[-159.9472,55.1693],[-160.065,55.2014],[-159.9761,55.1194],[-160.0072,55.1023],[-160.1055,55.1603],[-160.1928,55.1028],[-160.176,55.0508],[-160.0957,55.0519],[-160.2574,54.9167],[-160.2264,54.8637],[-160.1856,54.9342],[-160.1247,54.9458],[-160.1083,54.9869],[-160.013,55.0281],[-159.9356,55.1289],[-159.8696,55.0944],[-159.8111,55.1728],[-159.9031,55.1744],[-159.9006,55.2287],[-159.8417,55.2445],[-159.8689,55.2844]]],[[[-147.6875,60.4917],[-147.7088,60.4276],[-147.8167,60.4417],[-147.8479,60.3833],[-147.8047,60.2995],[-147.9016,60.2849],[-147.8917,60.2229],[-147.7964,60.2391],[-147.8208,60.1792],[-147.7547,60.1609],[-147.7172,60.2026],[-147.7172,60.2651],[-147.6193,60.3786],[-147.7292,60.3896],[-147.6089,60.4255],[-147.6875,60.4917]]],[[[177.6059,52.1349],[177.5451,52.1035],[177.4783,51.9828],[177.3753,51.9765],[177.2433,51.9056],[177.1989,51.895],[177.3097,51.8257],[177.3478,51.9045],[177.4067,51.93],[177.4732,51.9084],[177.5483,51.9122],[177.6017,51.9469],[177.5359,51.9595],[177.6742,52.0892],[177.6059,52.1349]]],[[[178.6815,51.6511],[178.631,51.6239],[178.7839,51.5692],[178.8428,51.5773],[178.9321,51.5462],[179.0572,51.4528],[179.228,51.3815],[179.2588,51.3568],[179.3705,51.3749],[179.4028,51.4061],[179.28,51.3897],[179.1567,51.4656],[179.0233,51.5316],[178.9667,51.5886],[178.8079,51.6327],[178.6815,51.6511]]],[[[-131.83,55.4205],[-131.8694,55.3197],[-131.8292,55.1899],[-131.7465,55.129],[-131.7194,55.2024],[-131.6856,55.2257],[-131.67,55.3014],[-131.6289,55.3055],[-131.83,55.4205]]],[[[-136.4802,58.1015],[-136.5572,58.0792],[-136.5734,57.9188],[-136.4907,57.9017],[-136.4533,57.8419],[-136.3772,57.9295],[-136.3878,57.9675],[-136.3566,58.0268],[-136.4802,58.1015]]],[[[-164.8083,62.7896],[-164.8724,62.7828],[-164.7958,62.6104],[-164.5328,62.7286],[-164.5146,62.7708],[-164.6792,62.7562],[-164.7109,62.7849],[-164.8083,62.7896]]],[[[-152.3335,58.6281],[-152.5311,58.5844],[-152.5639,58.6217],[-152.6472,58.5572],[-152.5906,58.5508],[-152.6389,58.4997],[-152.4784,58.4689],[-152.415,58.4894],[-152.3632,58.5391],[-152.3335,58.6281]]],[[[173.7561,52.4958],[173.7406,52.5122],[173.6239,52.5056],[173.5304,52.4476],[173.44,52.4528],[173.3583,52.4019],[173.4689,52.3806],[173.6167,52.3969],[173.642,52.356],[173.7256,52.3569],[173.6922,52.4619],[173.7561,52.4958]]],[[[-153.2591,58.1436],[-153.4178,58.0578],[-153.3663,58.038],[-153.2972,58.0503],[-153.1261,58.0164],[-153.0483,57.9867],[-152.9438,57.9766],[-152.9435,58.0082],[-153.0269,58.0343],[-153.0908,58.089],[-153.1628,58.0884],[-153.2591,58.1436]]],[[[179.6443,52.026],[179.4846,51.9839],[179.4799,51.9219],[179.6124,51.8708],[179.7388,51.9112],[179.762,51.9747],[179.6443,52.026]]],[[[-134.5178,58.3395],[-134.5842,58.3434],[-134.6521,58.3189],[-134.6789,58.2978],[-134.6294,58.2483],[-134.5072,58.2167],[-134.46,58.2294],[-134.3378,58.1972],[-134.2692,58.2082],[-134.5178,58.3395]]],[[[-172.4055,52.3836],[-172.4378,52.3928],[-172.57,52.3486],[-172.6339,52.2642],[-172.5383,52.2458],[-172.3117,52.3197],[-172.3056,52.3547],[-172.4055,52.3836]]],[[[-132.8328,55.1994],[-132.8973,55.1547],[-132.878,55.1004],[-132.8244,55.075],[-132.8932,55.0361],[-132.8098,55.0081],[-132.695,55.0197],[-132.688,55.1245],[-132.7333,55.1342],[-132.8328,55.1994]]],[[[-133.5583,55.8333],[-133.6633,55.8186],[-133.6863,55.7749],[-133.645,55.7292],[-133.532,55.6927],[-133.4872,55.7324],[-133.5211,55.7689],[-133.4161,55.74],[-133.3317,55.7672],[-133.5583,55.8333]]],[[[-145.7937,60.5792],[-145.9,60.5875],[-146.1187,60.5125],[-146.1708,60.5271],[-146.2833,60.5167],[-146.3208,60.4542],[-146.1854,60.4562],[-146.025,60.5042],[-145.8214,60.5526],[-145.7937,60.5792]]],[[[-154.085,56.6147],[-154.2211,56.6147],[-154.3144,56.5853],[-154.3644,56.5428],[-154.3433,56.5092],[-154.2311,56.4925],[-154.1533,56.5117],[-154.0778,56.5908],[-154.085,56.6147]]],[[[-153.4659,57.9696],[-153.535,57.9282],[-153.4588,57.8807],[-153.33,57.8256],[-153.2082,57.7972],[-153.2221,57.8496],[-153.2826,57.9043],[-153.4659,57.9696]]],[[[-162.3807,63.6234],[-162.4917,63.6188],[-162.5542,63.6333],[-162.6208,63.6188],[-162.6932,63.5755],[-162.6266,63.5443],[-162.3813,63.5396],[-162.3464,63.5911],[-162.3807,63.6234]]],[[[-165.6244,54.2983],[-165.6879,54.2421],[-165.5844,54.2236],[-165.6362,54.1977],[-165.6372,54.1391],[-165.5594,54.1055],[-165.4931,54.1682],[-165.4095,54.1751],[-165.4076,54.2117],[-165.5442,54.2189],[-165.5148,54.2984],[-165.5978,54.264],[-165.6244,54.2983]]],[[[-154.4828,56.6011],[-154.55,56.5897],[-154.6917,56.525],[-154.7939,56.4369],[-154.7728,56.4064],[-154.7094,56.4144],[-154.6189,56.4764],[-154.4811,56.5119],[-154.5352,56.5657],[-154.4828,56.6011]]],[[[-170.6544,52.6981],[-170.7277,52.682],[-170.81,52.6406],[-170.8467,52.5589],[-170.7957,52.5424],[-170.6842,52.6022],[-170.6083,52.6012],[-170.558,52.6668],[-170.6544,52.6981]]],[[[-133.3325,55.3453],[-133.4616,55.3208],[-133.4544,55.2172],[-133.3888,55.2291],[-133.336,55.2031],[-133.2529,55.2221],[-133.23,55.2687],[-133.3325,55.3453]]],[[[-169.7548,52.8925],[-169.8683,52.8789],[-169.8667,52.8536],[-169.9845,52.8586],[-170.0133,52.8311],[-169.9595,52.7871],[-169.8717,52.825],[-169.7753,52.8099],[-169.72,52.7719],[-169.6772,52.8244],[-169.6767,52.8714],[-169.7548,52.8925]]],[[[-131.2469,54.9996],[-131.3433,54.9592],[-131.3617,54.9753],[-131.4922,54.9461],[-131.4667,54.9133],[-131.3889,54.8928],[-131.3472,54.8558],[-131.1967,54.9144],[-131.2539,54.9683],[-131.2469,54.9996]]],[[[-148.0151,60.9141],[-148.0745,60.9224],[-148.1474,60.8245],[-148.0292,60.7813],[-147.9151,60.813],[-147.9349,60.8755],[-148.0151,60.9141]]],[[[-162.2871,54.9803],[-162.3706,54.9656],[-162.4234,54.9205],[-162.4022,54.8789],[-162.3167,54.8272],[-162.2317,54.8923],[-162.2433,54.9681],[-162.2871,54.9803]]],[[[-176.1382,52.1136],[-176.2056,52.0777],[-176.1816,52.0011],[-176.105,51.9972],[-176.0661,51.9667],[-176.0501,52.0193],[-175.9822,52.0289],[-176.0551,52.1073],[-176.1382,52.1136]]],[[[-133.5678,55.4206],[-133.6144,55.4192],[-133.6316,55.3611],[-133.6914,55.3175],[-133.6689,55.2769],[-133.6106,55.2536],[-133.5709,55.322],[-133.4592,55.3789],[-133.5017,55.4192],[-133.5678,55.4206]]],[[[-170.1526,57.1877],[-170.1382,57.2299],[-170.2259,57.2119],[-170.3032,57.2205],[-170.4001,57.2038],[-170.4206,57.1619],[-170.2778,57.1274],[-170.1731,57.1551],[-170.1526,57.1877]]],[[[-162.7939,54.4916],[-162.8378,54.4506],[-162.7805,54.4128],[-162.6105,54.3672],[-162.5445,54.4164],[-162.6689,54.4614],[-162.7939,54.4916]]],[[[-166.1095,53.8478],[-166.2167,53.8294],[-166.3011,53.7986],[-166.3006,53.7517],[-166.2078,53.7072],[-166.1144,53.7747],[-166.1095,53.8478]]],[[[-155.5606,55.8978],[-155.6056,55.9144],[-155.6667,55.8542],[-155.755,55.8222],[-155.7278,55.7747],[-155.6133,55.7567],[-155.5639,55.7897],[-155.5867,55.8458],[-155.5606,55.8978]]],[[[-176.2894,51.8696],[-176.4267,51.8536],[-176.3972,51.7336],[-176.32,51.7347],[-176.265,51.7806],[-176.2894,51.8696]]],[[[-132.7194,54.9368],[-132.8183,54.9242],[-132.8061,54.8711],[-132.7046,54.8147],[-132.6355,54.7489],[-132.6239,54.8039],[-132.6856,54.8353],[-132.6321,54.8908],[-132.7194,54.9368]]],[[[-148.0474,60.1786],[-148.2812,60.0854],[-148.2146,60.0771],[-148.275,60.0396],[-148.1979,60.0167],[-148.0838,60.1047],[-148.0474,60.1786]]],[[[-159.5125,55.2395],[-159.5584,55.2045],[-159.5895,55.1275],[-159.6383,55.1342],[-159.6572,55.0611],[-159.5706,55.0453],[-159.5294,55.0801],[-159.4961,55.1544],[-159.5355,55.1706],[-159.5125,55.2395]]],[[[-161.81,55.175],[-161.8983,55.1639],[-161.8905,55.1256],[-161.8172,55.0986],[-161.7828,55.1617],[-161.7555,55.1322],[-161.8006,55.0817],[-161.7322,55.0539],[-161.6339,55.1053],[-161.81,55.175]]],[[[-164.98,54.1329],[-165.144,54.1311],[-165.21,54.0869],[-165.0822,54.0691],[-164.9557,54.0727],[-164.9217,54.1079],[-164.98,54.1329]]],[[[-169.6097,56.6075],[-169.7522,56.6162],[-169.6405,56.5364],[-169.5671,56.5329],[-169.4839,56.5767],[-169.5176,56.6098],[-169.6097,56.6075]]],[[[-133.3967,55.5636],[-133.4511,55.555],[-133.4406,55.515],[-133.3611,55.4533],[-133.3057,55.4819],[-133.2852,55.5354],[-133.3369,55.5682],[-133.3967,55.5636]]],[[[-153.4244,59.4095],[-153.5117,59.3929],[-153.5494,59.3317],[-153.5153,59.32],[-153.3627,59.3378],[-153.3472,59.3776],[-153.4244,59.4095]]],[[[-147.8276,60.0661],[-147.8542,60.0771],[-148.0378,59.9733],[-148.0468,59.9385],[-147.9179,59.9706],[-147.8193,60.0464],[-147.8276,60.0661]]],[[[-133.725,55.5525],[-133.7111,55.5186],[-133.7811,55.4702],[-133.6706,55.4381],[-133.6317,55.4908],[-133.5865,55.5052],[-133.6633,55.5578],[-133.725,55.5525]]],[[[-133.2956,55.9153],[-133.3622,55.845],[-133.26,55.7721],[-133.2163,55.8229],[-133.2244,55.8652],[-133.2956,55.9153]]],[[[-160.3632,55.3603],[-160.4339,55.3394],[-160.4922,55.3583],[-160.5173,55.3081],[-160.3911,55.2869],[-160.3315,55.26],[-160.308,55.3041],[-160.3632,55.3603]]],[[[-157.2422,56.5823],[-157.3294,56.5272],[-157.1516,56.5273],[-157.1155,56.5525],[-156.9956,56.5514],[-157.0883,56.5837],[-157.2422,56.5823]]],[[[-134.2639,55.9281],[-134.3675,55.905],[-134.3194,55.8781],[-134.3446,55.8402],[-134.2711,55.8286],[-134.2283,55.864],[-134.133,55.8968],[-134.1734,55.9215],[-134.2649,55.897],[-134.2639,55.9281]]],[[[-148.1849,60.7432],[-148.2391,60.7245],[-148.1786,60.6401],[-148.1234,60.6401],[-148.0875,60.6729],[-148.1068,60.7391],[-148.1849,60.7432]]],[[[-144.1963,60.0016],[-144.2697,60.0001],[-144.3707,59.9627],[-144.5696,59.8518],[-144.5859,59.8113],[-144.4332,59.8981],[-144.1963,60.0016]]],[[[-150.5349,70.4943],[-150.7479,70.4938],[-150.7375,70.4625],[-150.6313,70.4354],[-150.4839,70.4714],[-150.5349,70.4943]]],[[[-147.9641,60.1255],[-147.9755,60.1484],[-148.1182,60.0474],[-148.0943,60.0026],[-148.0495,60.0599],[-147.9812,60.0604],[-147.8963,60.0964],[-147.9641,60.1255]]],[[[-133.4623,55.5072],[-133.527,55.5294],[-133.545,55.4864],[-133.6192,55.4482],[-133.5484,55.4291],[-133.4283,55.4503],[-133.4623,55.5072]]],[[[-153.87,56.5583],[-154.0317,56.5553],[-154.1328,56.5108],[-154.0494,56.4958],[-153.9513,56.5049],[-153.87,56.5583]]],[[[-160.239,55.4582],[-160.3227,55.4458],[-160.3261,55.3953],[-160.2333,55.4123],[-160.1433,55.3861],[-160.1358,55.4495],[-160.239,55.4582]]],[[[-147.9917,60.3708],[-148.0583,60.3688],[-148.137,60.3266],[-148.1083,60.2792],[-148.0213,60.2859],[-147.9917,60.3708]]],[[[-176.1722,51.8817],[-176.235,51.8219],[-176.17,51.7978],[-176.0894,51.7986],[-176.03,51.8444],[-176.1317,51.8506],[-176.1722,51.8817]]],[[[-150.6888,59.4156],[-150.708,59.3587],[-150.7688,59.3298],[-150.7052,59.2947],[-150.6104,59.3659],[-150.6362,59.4065],[-150.6888,59.4156]]],[[[-144.9021,60.5313],[-144.975,60.5125],[-144.9818,60.4818],[-145.0536,60.4432],[-144.9667,60.4208],[-144.913,60.4484],[-144.9021,60.5313]]],[[[-132.479,56.4382],[-132.5376,56.4209],[-132.5583,56.3556],[-132.5014,56.3524],[-132.4052,56.4078],[-132.479,56.4382]]],[[[-178.8014,51.8339],[-178.86,51.8197],[-178.8733,51.7817],[-178.8139,51.746],[-178.7332,51.7807],[-178.8014,51.8339]]],[[[-170.1178,52.7898],[-170.1688,52.7863],[-170.168,52.7172],[-170.085,52.7181],[-170.0525,52.7726],[-170.1178,52.7898]]],[[[-131.4224,55.991],[-131.4605,55.9903],[-131.5967,55.9331],[-131.5044,55.9211],[-131.4083,55.9589],[-131.4224,55.991]]],[[[-135.622,58.3795],[-135.733,58.368],[-135.6803,58.3309],[-135.5765,58.3254],[-135.5377,58.3446],[-135.622,58.3795]]],[[[178.5011,51.9883],[178.4526,51.9393],[178.515,51.8981],[178.5906,51.9525],[178.5011,51.9883]]],[[[-133.8694,55.9373],[-133.9442,55.9171],[-133.9189,55.8567],[-133.8716,55.8448],[-133.8392,55.8897],[-133.8694,55.9373]]],[[[-171.2417,52.5269],[-171.3113,52.5011],[-171.3038,52.4495],[-171.2417,52.4528],[-171.1937,52.4936],[-171.2417,52.5269]]],[[[-161.5349,55.2567],[-161.6617,55.2456],[-161.6967,55.2056],[-161.5628,55.2033],[-161.5349,55.2567]]],[[[-152.4123,57.968],[-152.5156,57.9217],[-152.369,57.8838],[-152.3222,57.9155],[-152.4237,57.9284],[-152.4123,57.968]]],[[[-159.2726,54.9457],[-159.3261,54.8923],[-159.2761,54.8628],[-159.2233,54.8839],[-159.2083,54.9281],[-159.2726,54.9457]]],[[[-132.9817,56.5914],[-133.074,56.5798],[-133.0441,56.5204],[-132.9845,56.5114],[-132.9817,56.5914]]],[[[-159.4433,55.0614],[-159.405,54.9767],[-159.3289,54.9769],[-159.3783,55.0247],[-159.38,55.0642],[-159.4433,55.0614]]],[[[-151.9057,60.5068],[-151.9687,60.4896],[-151.9563,60.4188],[-151.8547,60.4932],[-151.9057,60.5068]]],[[[-151.8218,58.2651],[-151.894,58.2155],[-151.8673,58.1655],[-151.8086,58.1864],[-151.8218,58.2651]]],[[[-169.0417,65.8146],[-169.0813,65.8167],[-169.1182,65.7589],[-169.0443,65.7526],[-168.9964,65.8026],[-169.0417,65.8146]]],[[[-164.9021,66.4958],[-164.9104,66.5083],[-165.1542,66.4688],[-165.3328,66.4287],[-165.1875,66.4417],[-165.1354,66.4625],[-164.9021,66.4958]]],[[[-136.1906,57.7161],[-136.2561,57.677],[-136.1811,57.64],[-136.1394,57.6978],[-136.1906,57.7161]]],[[[-152.7238,57.9755],[-152.8503,57.9701],[-152.8512,57.9412],[-152.7601,57.9251],[-152.7238,57.9755]]],[[[-175.9878,51.9094],[-176.1144,51.8842],[-175.9633,51.8461],[-175.9878,51.9094]]],[[[-170.0411,52.9228],[-170.1255,52.8972],[-170.0517,52.8564],[-169.995,52.9033],[-170.0411,52.9228]]],[[[-135.5208,57.2199],[-135.5578,57.1572],[-135.5059,57.1425],[-135.4518,57.1775],[-135.5208,57.2199]]],[[[-178.9567,51.3969],[-178.9944,51.3739],[-178.9883,51.3064],[-178.9055,51.3614],[-178.9567,51.3969]]],[[[-153.8335,57.5326],[-153.8728,57.5531],[-153.8738,57.4483],[-153.8322,57.4289],[-153.8335,57.5326]]],[[[-135.4688,57.2505],[-135.5155,57.2291],[-135.4556,57.1853],[-135.3916,57.2453],[-135.4688,57.2505]]],[[[-169.6767,53.0314],[-169.739,53.0286],[-169.7636,52.9825],[-169.6967,52.9572],[-169.6767,53.0314]]],[[[-132.0288,56.0889],[-132.07,56.03],[-132.0256,55.9967],[-131.9822,56.0249],[-132.0288,56.0889]]],[[[-161.3386,55.2198],[-161.4281,55.2163],[-161.4145,55.1808],[-161.3394,55.1587],[-161.3386,55.2198]]],[[[-146.7375,60.8708],[-146.8141,60.8432],[-146.7896,60.8042],[-146.725,60.8104],[-146.7375,60.8708]]],[[[-147.938,60.7182],[-147.9964,60.6901],[-147.8505,60.6797],[-147.8984,60.7307],[-147.938,60.7182]]],[[[-147.3729,60.2625],[-147.3464,60.2995],[-147.4495,60.2703],[-147.4812,60.225],[-147.3729,60.2625]]],[[[178.1615,52.0412],[178.089,52.0364],[178.0981,51.9978],[178.1732,51.9912],[178.1615,52.0412]]],[[[-164.8984,62.662],[-164.8807,62.5984],[-164.8151,62.6078],[-164.8589,62.662],[-164.8984,62.662]]],[[[-164.9859,60.8693],[-165.0203,60.8339],[-164.9583,60.8208],[-164.8901,60.838],[-164.9859,60.8693]]],[[[-136.035,58.2953],[-136.0369,58.3174],[-136.1577,58.2792],[-136.0903,58.2582],[-136.035,58.2953]]],[[[-152.8822,58.3383],[-152.9217,58.3136],[-152.7839,58.2872],[-152.8461,58.3378],[-152.8822,58.3383]]],[[[-179.0874,51.2956],[-179.147,51.2793],[-179.1405,51.2325],[-179.0944,51.2271],[-179.0874,51.2956]]],[[[-152.5884,60.175],[-152.6438,60.1646],[-152.5911,60.113],[-152.5484,60.1141],[-152.5884,60.175]]],[[[-130.5194,54.8587],[-130.5944,54.8309],[-130.6156,54.7928],[-130.5262,54.8155],[-130.5194,54.8587]]],[[[-132.1918,56.0399],[-132.2028,55.9564],[-132.1333,55.9422],[-132.1918,56.0399]]],[[[-133.4422,55.9969],[-133.4948,55.9667],[-133.4494,55.9333],[-133.4349,55.9562],[-133.3944,55.9756],[-133.4422,55.9969]]],[[[-159.5744,54.8245],[-159.5828,54.7736],[-159.52,54.7581],[-159.5106,54.7891],[-159.5744,54.8245]]],[[[-152.3067,58.9608],[-152.3377,58.9042],[-152.2367,58.9144],[-152.3067,58.9608]]],[[[-150.3542,70.4771],[-150.4661,70.4599],[-150.4526,70.4318],[-150.3687,70.45],[-150.3542,70.4771]]],[[[-158.7982,55.8911],[-158.8489,55.8543],[-158.7292,55.841],[-158.7982,55.8911]]],[[[-157.8306,56.3706],[-157.9072,56.3442],[-157.8233,56.3069],[-157.8306,56.3706]]],[[[-133.2318,55.4443],[-133.2978,55.4456],[-133.3094,55.4011],[-133.2522,55.4067],[-133.2318,55.4443]]],[[[-147.2083,60.8917],[-147.2875,60.8708],[-147.1255,60.8547],[-147.2083,60.8917]]],[[[-165.3462,54.09],[-165.2897,54.0385],[-165.2644,54.0917],[-165.3462,54.09]]],[[[-134.9118,58.4854],[-134.8416,58.3712],[-134.8078,58.3757],[-134.9118,58.4854]]],[[[-150.4787,70.438],[-150.6057,70.4224],[-150.6062,70.3896],[-150.4787,70.438]]],[[[-166.1489,53.9972],[-166.1933,53.9589],[-166.073,53.9698],[-166.1489,53.9972]]],[[[178.2289,51.8322],[178.3073,51.7763],[178.3356,51.8083],[178.2289,51.8322]]],[[[-154.0467,56.7281],[-154.1272,56.6945],[-154.0167,56.69],[-154.0467,56.7281]]],[[[-134.2017,57.8917],[-134.1894,57.8342],[-134.1142,57.8073],[-134.2017,57.8917]]],[[[-135.7039,57.7067],[-135.62,57.6381],[-135.5895,57.6601],[-135.7039,57.7067]]],[[[-150.3165,59.4616],[-150.4146,59.4386],[-150.3431,59.4156],[-150.3165,59.4616]]],[[[-147.4268,60.6846],[-147.4563,60.6167],[-147.3859,60.6526],[-147.4268,60.6846]]],[[[-145.1807,60.3401],[-145.2849,60.3307],[-145.213,60.3026],[-145.1807,60.3401]]],[[[-159.7064,54.8371],[-159.82,54.8136],[-159.7743,54.7922],[-159.7064,54.8371]]],[[[-133.0374,56.1183],[-133.0472,56.0647],[-132.9795,56.0813],[-133.0374,56.1183]]],[[[-131.6233,55.9036],[-131.6618,55.8603],[-131.5902,55.8535],[-131.6233,55.9036]]],[[[-156.6893,56.0569],[-156.7517,56.0408],[-156.6757,56.0093],[-156.6893,56.0569]]],[[[-150.5979,61.3604],[-150.6349,61.337],[-150.5943,61.2797],[-150.5979,61.3604]]],[[[-175.7928,51.9564],[-175.8626,51.9534],[-175.7833,51.9137],[-175.7928,51.9564]]],[[[-146.2941,59.4647],[-146.374,59.4184],[-146.3344,59.4042],[-146.2941,59.4647]]],[[[-159.3128,55.8117],[-159.3564,55.8065],[-159.3078,55.7455],[-159.3128,55.8117]]],[[[-131.2011,55.1078],[-131.2422,55.0664],[-131.195,55.0433],[-131.2011,55.1078]]],[[[-163.7849,60.8807],[-163.862,60.8755],[-163.8229,60.8417],[-163.7849,60.8807]]],[[[-134.2661,57.9553],[-134.2466,57.9086],[-134.2017,57.9397],[-134.2661,57.9553]]],[[[-147.5542,60.5604],[-147.6224,60.5641],[-147.5995,60.5255],[-147.5542,60.5604]]],[[[-151.5081,59.1459],[-151.4443,59.1046],[-151.4312,59.1345],[-151.5081,59.1459]]]]},"properties":{"id":"6eb40943-47b5-41ac-8b71-f4ca8bdc7b63","code":"AK","name":"Alaska","abbreviation":"S-AK","parent_id":"097d174e-70ae-4e79-b73a-142c4bb3ce6c"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.6985,32.745],[-114.7655,32.6435],[-114.807,32.6227],[-114.8136,32.4939],[-113.9713,32.2378],[-113.2108,32.0001],[-112.0007,31.6272],[-111.075,31.3324],[-109.5106,31.3343],[-109.05,31.3328],[-109.0467,33.2382],[-109.0449,36.9986],[-110.4719,36.9996],[-110.6102,37.0046],[-112.0013,37.0024],[-112.7447,37.0033],[-114.050505283,37.00000125],[-114.051,37],[-114.0487,36.1951],[-114.0694,36.182],[-114.1474,36.0305],[-114.2241,36.0145],[-114.3156,36.0668],[-114.3738,36.1438],[-114.44,36.1273],[-114.5039,36.1501],[-114.5108,36.1528],[-114.6298,36.1421],[-114.6643,36.1197],[-114.6907,36.114],[-114.7005,36.1101],[-114.743,36.1007],[-114.7421,36.07],[-114.735,36.0542],[-114.7453,35.9846],[-114.7047,35.9047],[-114.7022,35.7006],[-114.6587,35.6162],[-114.6703,35.4697],[-114.5956,35.3246],[-114.5718,35.1623],[-114.5794,35.1307],[-114.6463,35.0992],[-114.6067,35.0769],[-114.6359,35.0132],[-114.6329,35.0021],[-114.6289,34.9937],[-114.629,34.9112],[-114.6347,34.8802],[-114.5803,34.8307],[-114.5585,34.7796],[-114.4708,34.7152],[-114.431,34.5925],[-114.3789,34.5304],[-114.3849,34.4639],[-114.3354,34.4544],[-114.1378,34.3081],[-114.1295,34.2672],[-114.1339,34.2638],[-114.2259,34.1929],[-114.2688,34.1755],[-114.2886,34.1727],[-114.3226,34.1415],[-114.41,34.1134],[-114.4373,34.0635],[-114.4644,33.9968],[-114.5178,33.96],[-114.5315,33.9407],[-114.5033,33.8671],[-114.5152,33.862],[-114.5284,33.8598],[-114.5185,33.8287],[-114.494,33.7004],[-114.5295,33.6742],[-114.5247,33.5579],[-114.5917,33.5004],[-114.6342,33.4235],[-114.7072,33.3866],[-114.6988,33.3642],[-114.7288,33.3023],[-114.6765,33.2737],[-114.6757,33.1634],[-114.6997,33.1197],[-114.6607,33.0333],[-114.5666,33.0389],[-114.5142,33.029],[-114.4985,33.0072],[-114.467,32.9515],[-114.466,32.8462],[-114.5141,32.8105],[-114.5289,32.7933],[-114.5265,32.758],[-114.6139,32.7291],[-114.681,32.7365],[-114.6985,32.745]]]},"properties":{"id":"07072c12-d5fc-4c81-a74a-11cda090eb5e","code":"AZ","name":"Arizona","abbreviation":"S-AZ","parent_id":"9432f503-fcbe-4e87-8c25-56d19462434c"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-92.8619,33.0163],[-91.942405155,33.008306905],[-91.9071,33.008],[-91.1631,33.0045],[-91.1232,33.0449],[-91.1334,33.0699],[-91.1991,33.1056],[-91.1924,33.139],[-91.0923,33.137],[-91.0925,33.2171],[-91.0509,33.284],[-91.0767,33.2847],[-91.0988,33.2382],[-91.1444,33.335],[-91.0745,33.409],[-91.0572,33.4273],[-91.0619,33.4505],[-91.078,33.4571],[-91.0919,33.4558],[-91.0994,33.4154],[-91.1051,33.4],[-91.1692,33.3803],[-91.1984,33.4171],[-91.1317,33.4292],[-91.1261,33.4744],[-91.1766,33.4964],[-91.183,33.4385],[-91.2349,33.4377],[-91.1869,33.5166],[-91.2244,33.5678],[-91.1359,33.5923],[-91.1363,33.6228],[-91.2188,33.6605],[-91.2085,33.7007],[-91.144,33.6867],[-91.1067,33.662],[-91.0928,33.6572],[-91.0757,33.6587],[-91.0654,33.7162],[-91.1458,33.7301],[-91.143,33.773],[-91.0551,33.7777],[-91.0705,33.867],[-91.0073,33.9283],[-91.0865,33.9585],[-90.9867,34.0191],[-90.8878,34.0268],[-90.8701,34.091],[-90.9407,34.101],[-90.9103,34.1653],[-90.8228,34.1478],[-90.8359,34.1908],[-90.9132,34.1965],[-90.9364,34.2332],[-90.8479,34.2148],[-90.831,34.2726],[-90.7686,34.2772],[-90.7566,34.3731],[-90.6792,34.3682],[-90.5758,34.4156],[-90.5882,34.5051],[-90.5401,34.5507],[-90.5801,34.6081],[-90.5878,34.6785],[-90.516,34.635],[-90.4646,34.694],[-90.566,34.7162],[-90.5049,34.7819],[-90.5219,34.7359],[-90.4879,34.7278],[-90.457,34.736],[-90.4726,34.7952],[-90.461,34.8289],[-90.4699,34.8443],[-90.4867,34.8713],[-90.4852,34.8811],[-90.4775,34.8883],[-90.4647,34.8929],[-90.4338,34.8748],[-90.4055,34.8304],[-90.3894,34.8446],[-90.2445,34.909],[-90.2486,34.9494],[-90.3093,34.9915],[-90.3098,34.9966],[-90.3108,35.0015],[-90.2937,35.0371],[-90.2157,35.027],[-90.1792,35.1168],[-90.1604,35.132],[-90.0978,35.1196],[-90.1151,35.1977],[-90.1039,35.2554],[-90.1518,35.2558],[-90.1564,35.3012],[-90.1083,35.309],[-90.0751,35.3847],[-90.1383,35.3795],[-90.1504,35.3745],[-90.1709,35.4187],[-90.0991,35.4804],[-90.0716,35.4109],[-90.0541,35.3893],[-90.0191,35.469],[-90.0362,35.5515],[-89.988,35.5594],[-89.9101,35.5196],[-89.906,35.5331],[-89.9414,35.6023],[-89.8622,35.6322],[-89.9565,35.695],[-89.9527,35.738],[-89.8186,35.7568],[-89.7937,35.7948],[-89.7065,35.8172],[-89.7624,35.8569],[-89.6587,35.9271],[-89.7162,35.9625],[-89.7169,36.0015],[-90.0008,35.9984],[-90.2574,35.9975],[-90.3773,35.9951],[-90.2905,36.115],[-90.2384,36.1382],[-90.2217,36.1811],[-90.1284,36.2305],[-90.068,36.2978],[-90.0669,36.3862],[-90.1441,36.4231],[-90.1536,36.4963],[-91.758,36.4985],[-92.256,36.4965],[-93.3653,36.4968],[-94.1651,36.4996],[-94.6182,36.4984],[-94.5338,36.0093],[-94.4947,35.7594],[-94.4307,35.4],[-94.4638,34.5065],[-94.4863,33.6411],[-94.4588,33.6466],[-94.4492,33.643],[-94.4629,33.6287],[-94.4728,33.6054],[-94.468,33.5981],[-94.4018,33.555],[-94.3255,33.5504],[-94.2873,33.5827],[-94.2346,33.5519],[-94.1673,33.5901],[-94.0445,33.5505],[-94.0456,33.0206],[-92.8619,33.0163]]]},"properties":{"id":"be75ddc5-7a2a-48bf-8939-d0bfadfc1eea","code":"AR","name":"Arkansas","abbreviation":"S-AR","parent_id":"d6157b38-3f86-49ef-8acd-93287d33c0d0"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-114.6329,35.0021],[-114.888038436,35.208708962],[-114.9352,35.2469],[-115.065428477,35.350675077],[-115.193553028,35.452773599],[-115.2099,35.4658],[-115.648,35.8111],[-116.2954,36.3122],[-116.79135207,36.688950431],[-116.8912,36.7648],[-117.2394,37.0265],[-117.269365759,37.048759017],[-117.286724092,37.061653047],[-117.5108,37.2281],[-117.699558286,37.366348171],[-118.1091,37.6663],[-118.8591,38.2047],[-119.341981891,38.544214822],[-119.4492,38.6196],[-119.502818548,38.65661886],[-120.0009,39.0005],[-120.0053,39.2875],[-119.9955,40.3085],[-119.9999,40.9331],[-119.9984,41.6905],[-120.0003,41.9953],[-121.0015,41.9933],[-122.3503,42.0098],[-123.0508,42.0028],[-123.1379,42.0084],[-123.3361,41.9987],[-123.6563,41.9959],[-124.2117,41.9997],[-124.2106,41.8769],[-124.2572,41.7858],[-124.1475,41.7186],[-124.1339,41.6558],[-124.0683,41.5456],[-124.0822,41.5108],[-124.0633,41.4333],[-124.1078,41.2233],[-124.164,41.1015],[-124.1125,41.0287],[-124.1531,40.8675],[-124.0889,40.8236],[-124.1836,40.8008],[-124.2228,40.7222],[-124.2997,40.6668],[-124.409,40.4438],[-124.3496,40.3124],[-124.3637,40.2618],[-124.1873,40.1303],[-124.1105,40.1043],[-124.0808,40.0309],[-124.0368,40.0139],[-123.9304,39.9094],[-123.8991,39.8553],[-123.8528,39.8331],[-123.8327,39.7247],[-123.7864,39.6607],[-123.7736,39.5311],[-123.8197,39.4361],[-123.8271,39.3487],[-123.8008,39.3189],[-123.7713,39.1949],[-123.7353,39.1583],[-123.6897,39.0339],[-123.73,38.9542],[-123.6436,38.8414],[-123.4411,38.6989],[-123.3333,38.5644],[-123.2511,38.5095],[-123.1306,38.4523],[-123.0647,38.3536],[-122.9304,38.2135],[-122.8442,38.0908],[-122.9831,38.2347],[-122.9546,38.1767],[-122.9613,38.1114],[-123.01,38.0036],[-122.9325,38.0358],[-122.8306,38.0028],[-122.7756,37.9433],[-122.7019,37.8936],[-122.6747,37.9131],[-122.4999,37.8198],[-122.4378,37.8828],[-122.5014,37.9272],[-122.4617,38.0033],[-122.4969,38.02],[-122.4781,38.1147],[-122.3958,38.1433],[-122.3139,38.1092],[-122.2742,38.0661],[-122.2311,38.0652],[-122.1339,38.0419],[-122.0442,38.1369],[-121.9733,38.0736],[-121.9122,38.0835],[-121.7996,38.0628],[-121.8124,38.0178],[-121.9506,38.0514],[-122.0703,38.0533],[-122.1481,38.0217],[-122.1903,38.0531],[-122.2625,38.0506],[-122.3,38.0103],[-122.3964,37.9542],[-122.3892,37.9092],[-122.3339,37.9092],[-122.2958,37.8294],[-122.3325,37.7825],[-122.2464,37.7517],[-122.1572,37.6558],[-122.1123,37.5106],[-122.0581,37.4964],[-122.0397,37.4408],[-122.2108,37.4919],[-122.2012,37.5396],[-122.2622,37.5744],[-122.3591,37.5922],[-122.3858,37.6289],[-122.3803,37.7739],[-122.4089,37.8117],[-122.5128,37.7764],[-122.4936,37.6275],[-122.5194,37.5378],[-122.4642,37.4972],[-122.4009,37.3586],[-122.4192,37.2478],[-122.4058,37.1972],[-122.3375,37.1176],[-122.2878,37.1047],[-122.2231,37.0242],[-122.1528,36.9753],[-122.0701,36.9481],[-121.9722,36.9536],[-121.9393,36.9779],[-121.8892,36.9581],[-121.7881,36.805],[-121.8201,36.6662],[-121.8859,36.6008],[-121.9386,36.6403],[-121.9772,36.5797],[-121.9353,36.5625],[-121.9473,36.4903],[-121.9144,36.4253],[-121.8989,36.3083],[-121.8114,36.2325],[-121.7081,36.1878],[-121.6331,36.1189],[-121.573,36.0226],[-121.5028,36],[-121.4667,35.8881],[-121.4161,35.8575],[-121.3177,35.7557],[-121.2788,35.6673],[-121.1719,35.6382],[-121.0977,35.547],[-121.0059,35.4617],[-120.9087,35.4482],[-120.84,35.3453],[-120.9,35.2522],[-120.8564,35.2075],[-120.7564,35.1594],[-120.6992,35.1708],[-120.6388,35.1334],[-120.6358,35.0178],[-120.6683,34.9008],[-120.6097,34.8436],[-120.6386,34.7564],[-120.6006,34.7059],[-120.6464,34.5789],[-120.5147,34.5253],[-120.4725,34.4486],[-120.2967,34.4706],[-120.1417,34.4733],[-120.007,34.4603],[-119.8783,34.4064],[-119.7817,34.4156],[-119.7281,34.3956],[-119.6156,34.4211],[-119.4592,34.3739],[-119.3903,34.3181],[-119.2781,34.2669],[-119.2133,34.1453],[-119.1439,34.1083],[-118.9375,34.0431],[-118.8525,34.0336],[-118.8075,34.0005],[-118.7403,34.0331],[-118.5695,34.0417],[-118.5247,34.0297],[-118.4433,33.9464],[-118.3913,33.8379],[-118.4286,33.7742],[-118.297,33.7089],[-118.2528,33.7478],[-118.1811,33.7649],[-118.0947,33.7369],[-118.0056,33.6575],[-117.9281,33.6075],[-117.8828,33.6017],[-117.7822,33.5406],[-117.7142,33.4594],[-117.6767,33.4608],[-117.4719,33.2989],[-117.3262,33.1189],[-117.2789,33.0005],[-117.2514,32.8744],[-117.2811,32.8214],[-117.2389,32.7809],[-117.2558,32.6997],[-117.2154,32.7246],[-117.1253,32.6806],[-117.0914,32.5978],[-117.1231,32.5344],[-115.9952,32.6271],[-114.7192,32.718],[-114.6985,32.745],[-114.681,32.7365],[-114.6139,32.7291],[-114.5265,32.758],[-114.5289,32.7933],[-114.5141,32.8105],[-114.466,32.8462],[-114.467,32.9515],[-114.4985,33.0072],[-114.5142,33.029],[-114.5666,33.0389],[-114.6607,33.0333],[-114.6997,33.1197],[-114.6757,33.1634],[-114.6765,33.2737],[-114.7288,33.3023],[-114.6988,33.3642],[-114.7072,33.3866],[-114.6342,33.4235],[-114.5917,33.5004],[-114.5247,33.5579],[-114.5295,33.6742],[-114.494,33.7004],[-114.5185,33.8287],[-114.5284,33.8598],[-114.5152,33.862],[-114.5033,33.8671],[-114.5315,33.9407],[-114.5178,33.96],[-114.4644,33.9968],[-114.4373,34.0635],[-114.41,34.1134],[-114.3226,34.1415],[-114.2886,34.1727],[-114.2688,34.1755],[-114.2259,34.1929],[-114.1339,34.2638],[-114.1295,34.2672],[-114.1378,34.3081],[-114.3354,34.4544],[-114.3849,34.4639],[-114.3789,34.5304],[-114.431,34.5925],[-114.4708,34.7152],[-114.5585,34.7796],[-114.5803,34.8307],[-114.6347,34.8802],[-114.629,34.9112],[-114.6289,34.9937],[-114.6329,35.0021]]],[[[-119.9125,34.0767],[-119.8764,34.0322],[-119.8741,33.98],[-119.8187,33.9595],[-119.7208,33.9589],[-119.6637,33.9851],[-119.5603,33.9956],[-119.52,34.0342],[-119.5862,34.0539],[-119.6331,34.0128],[-119.7572,34.0592],[-119.8098,34.0511],[-119.9125,34.0767]]],[[[-120.0513,34.0371],[-120.2386,34.0102],[-120.1693,33.917],[-120.1203,33.8942],[-119.971,33.9413],[-119.9814,33.9798],[-120.0466,34],[-120.0513,34.0371]]],[[[-118.6029,33.4786],[-118.5742,33.44],[-118.4886,33.4189],[-118.4656,33.3256],[-118.3784,33.3208],[-118.3261,33.2986],[-118.3106,33.3367],[-118.3664,33.4058],[-118.5364,33.4775],[-118.6029,33.4786]]],[[[-118.5892,33.0294],[-118.5767,32.9741],[-118.4891,32.8436],[-118.4291,32.8038],[-118.3706,32.84],[-118.485,32.9233],[-118.5633,33.0236],[-118.5892,33.0294]]],[[[-120.3654,34.0746],[-120.4395,34.0383],[-120.3604,34.0134],[-120.3069,34.0197],[-120.3654,34.0746]]],[[[-119.5224,33.2815],[-119.5737,33.2584],[-119.4704,33.2144],[-119.4598,33.2563],[-119.5224,33.2815]]]]},"properties":{"id":"633635a7-f0c9-4a6c-b5db-30c7a9b07e96","code":"CA","name":"California","abbreviation":"S-CA","parent_id":"da91c585-dacb-46b4-998a-dabe27e6d774"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-106.8717,36.9923],[-105.8744,36.9972],[-105.76177659,36.99698154],[-105.1011,36.9957],[-104.3313,36.993],[-104.1849,36.9958],[-103.65304205,36.997237454],[-103.0009,36.999],[-103.000899764,36.998412581],[-102.7859,36.9988],[-102.4775,36.9963],[-102.0423,36.9922],[-102.042300011,36.992205645],[-102.048383939,40.003899931],[-102.0504,41.0019],[-102.6538,41.0032],[-104.0528,41.0017],[-104.5679,41.0029],[-104.83,40.9996],[-106.3171,40.9994],[-106.4481,41.0035],[-107.0021,41.0044],[-107.9154,41.0029],[-108.3781,40.9997],[-109.049,41],[-109.0538,39.0135],[-109.0596,38.6727],[-109.0607,38.2768],[-109.0409,38.1603],[-109.0449,36.9986],[-107.965,36.9971],[-106.8787,36.999],[-106.8717,36.9923]]]},"properties":{"id":"53e7b08f-3db0-4c4d-8068-56b09fd7991c","code":"CO","name":"Colorado","abbreviation":"S-CO","parent_id":"1f30181c-ab24-4bfc-989c-162d4b17a83e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-73.6606,40.9889],[-73.6007,41.0183],[-73.5297,41.0171],[-73.3719,41.1089],[-73.262,41.118],[-73.1736,41.1686],[-73.1302,41.1471],[-73.0468,41.2122],[-73.014,41.2048],[-72.9156,41.2967],[-72.8936,41.2419],[-72.7861,41.265],[-72.5808,41.2719],[-72.5192,41.2578],[-72.4506,41.2794],[-72.3881,41.2608],[-72.2725,41.2853],[-72.1783,41.3231],[-72.0947,41.3094],[-71.9681,41.3516],[-71.8607,41.3225],[-71.8317,41.3445],[-71.8397,41.3613],[-71.8349,41.3817],[-71.8406,41.4094],[-71.818,41.4199],[-71.7977,41.4187],[-71.7882,41.6387],[-71.7979,42.0089],[-71.7991,42.0238],[-72.003,42.0291],[-72.7574,42.0362],[-73.3658,42.0497],[-73.490103271,42.049606044],[-73.4923,41.9865],[-73.5038,41.8662],[-73.5333,41.4977],[-73.5523,41.2933],[-73.4838,41.2136],[-73.7297,41.1009],[-73.657,41.0119],[-73.6606,40.9889]]]},"properties":{"id":"378ec965-57bd-45b3-ad76-eab6fd48163c","code":"CT","name":"Connecticut","abbreviation":"S-CT","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.151071674,38.64310412],[-75.0794,38.6947],[-75.092,38.8017],[-75.1303,38.7814],[-75.1856,38.8033],[-75.3042,38.9136],[-75.3187,38.9887],[-75.3914,39.0525],[-75.4128,39.1508],[-75.3957,39.1896],[-75.4081,39.2642],[-75.4389,39.3133],[-75.4988,39.3413],[-75.4672,39.3722],[-75.5622,39.4706],[-75.5322,39.4983],[-75.5154,39.5814],[-75.5603,39.6255],[-75.5119,39.673],[-75.4617,39.7627],[-75.4144,39.8033],[-75.5307,39.8401],[-75.6464,39.827],[-75.7177,39.7912],[-75.7723,39.7231],[-75.787500343,39.723058306],[-75.7881,39.6501],[-75.7224,38.8295],[-75.7069,38.5976],[-75.702,38.5622],[-75.702103612,38.562165463],[-75.702,38.5614],[-75.6933,38.5581],[-75.6711,38.5756],[-75.6742,38.57],[-75.6917,38.5561],[-75.7019,38.5597],[-75.6942,38.4593],[-75.1285,38.4471],[-75.0699,38.4518],[-75.0502,38.4494],[-75.0583,38.5872],[-75.1553,38.6078],[-75.151071674,38.64310412]]]},"properties":{"id":"37538399-060c-4530-9083-604642e105cf","code":"DE","name":"Delaware","abbreviation":"S-DE","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.0164,38.8093],[-76.9097,38.8925],[-77.0415,38.9951],[-77.1205,38.9337],[-77.1105,38.9224],[-77.0318,38.8533],[-77.0164,38.8093]]]},"properties":{"id":"0cfdc295-0404-42f3-a3dc-1cd593dfc655","code":"DC","name":"District of Columbia","abbreviation":"S-DC","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.4353,30.4873],[-87.3467,30.4231],[-87.4256,30.4025],[-87.4169,30.3425],[-87.4611,30.3097],[-87.2645,30.3444],[-87.2576,30.3884],[-87.1812,30.4213],[-87.1603,30.4683],[-87.1844,30.5266],[-87.1588,30.5805],[-87.1025,30.5225],[-87.1025,30.4454],[-87.0682,30.4473],[-87.0378,30.5391],[-87.013,30.4984],[-86.9356,30.4547],[-87.0147,30.4034],[-86.9497,30.3953],[-86.7233,30.4108],[-86.6047,30.4011],[-86.51,30.4553],[-86.4522,30.5084],[-86.4208,30.4514],[-86.3192,30.4775],[-86.2097,30.4875],[-86.1189,30.3794],[-86.1653,30.3825],[-86.2481,30.4286],[-86.2456,30.39],[-86.3287,30.3828],[-86.4882,30.418],[-86.5025,30.3819],[-86.3331,30.3703],[-86.1878,30.3342],[-85.9914,30.2686],[-85.7756,30.1567],[-85.7442,30.2128],[-85.7986,30.2531],[-85.8492,30.2325],[-85.845,30.2844],[-85.7631,30.3],[-85.6792,30.2497],[-85.73,30.1872],[-85.6469,30.1347],[-85.5242,30.1233],[-85.5328,30.0789],[-85.6006,30.0917],[-85.6192,30.1217],[-85.6869,30.1228],[-85.5411,30.0244],[-85.4769,29.9672],[-85.4122,29.9431],[-85.3028,29.8083],[-85.3045,29.6838],[-85.1147,29.717],[-84.9906,29.715],[-84.9245,29.7611],[-84.9019,29.7344],[-84.757,29.788],[-84.5331,29.9114],[-84.4444,29.9297],[-84.3636,29.9097],[-84.3386,29.9472],[-84.441,29.9613],[-84.4372,29.9875],[-84.3547,29.9694],[-84.3775,30.0092],[-84.3489,30.0606],[-84.289,30.0571],[-84.2706,30.1058],[-84.2067,30.1153],[-84.16,30.072],[-84.1164,30.0942],[-83.9964,30.1041],[-83.9533,30.0612],[-83.8289,29.9822],[-83.7764,29.9761],[-83.6806,29.9226],[-83.5855,29.8178],[-83.5339,29.7214],[-83.4057,29.6533],[-83.3964,29.5244],[-83.2953,29.4368],[-83.2336,29.4323],[-83.1803,29.3619],[-83.167749077,29.306905535],[-83.167803475,29.306862645],[-83.0813,29.2666],[-83.0711,29.1917],[-83.0289,29.1617],[-82.9811,29.1747],[-82.8109,29.1637],[-82.7867,29.0786],[-82.74,29.0217],[-82.71,28.9361],[-82.6383,28.9053],[-82.6514,28.8578],[-82.733,28.8537],[-82.6856,28.7936],[-82.6878,28.7276],[-82.64,28.7008],[-82.6556,28.6303],[-82.6711,28.4341],[-82.7312,28.3255],[-82.7331,28.2828],[-82.8008,28.1708],[-82.7758,28.1097],[-82.8058,27.9547],[-82.8489,27.8736],[-82.6888,27.709],[-82.6381,27.7039],[-82.5983,27.8569],[-82.655,27.9108],[-82.7198,27.9363],[-82.6655,28.0285],[-82.5275,27.9356],[-82.555,27.8496],[-82.4733,27.8217],[-82.4863,27.9227],[-82.4012,27.8779],[-82.3958,27.8147],[-82.4783,27.7472],[-82.5671,27.6263],[-82.5699,27.5679],[-82.6411,27.4737],[-82.6914,27.4708],[-82.5739,27.4053],[-82.5415,27.3304],[-82.5411,27.27],[-82.5022,27.2272],[-82.4444,27.0575],[-82.3576,26.9165],[-82.3018,26.8474],[-82.1501,26.7846],[-82.1532,26.924],[-82.1174,26.9615],[-82.0088,26.9526],[-82.0971,26.9151],[-82.0601,26.8793],[-82.0546,26.7946],[-82.0879,26.6757],[-82.0468,26.609],[-82.064,26.5671],[-82.0165,26.529],[-82.0137,26.4882],[-81.8765,26.4562],[-81.8374,26.3476],[-81.8015,26.091],[-81.7349,25.9988],[-81.6349,25.9387],[-81.6368,25.9063],[-81.5301,25.8929],[-81.5193,25.8396],[-81.4579,25.8668],[-81.3996,25.8568],[-81.3349,25.7876],[-81.346,25.7215],[-81.2929,25.7057],[-81.2535,25.6415],[-81.1418,25.381],[-81.1007,25.3468],[-80.9799,25.3254],[-80.9038,25.2399],[-80.9638,25.2049],[-81.0024,25.2135],[-81.029,25.2263],[-81.0476,25.2365],[-81.0699,25.2551],[-81.0888,25.311],[-81.1457,25.3268],[-81.1718,25.2235],[-81.0888,25.1374],[-81.0021,25.124],[-80.9004,25.1396],[-80.8468,25.1774],[-80.7165,25.156],[-80.5821,25.2104],[-80.5062,25.2071],[-80.3426,25.3232],[-80.3087,25.3899],[-80.3407,25.4982],[-80.2296,25.7335],[-80.1888,25.7551],[-80.1849,25.8105],[-80.1184,25.8338],[-80.1704,25.8671],[-80.1212,25.8999],[-80.1093,26.0874],[-80.0799,26.2576],[-80.0365,26.5882],[-80.0521,26.794],[-80.0799,26.9479],[-80.1201,27.0804],[-80.1575,27.1629],[-80.1917,27.1642],[-80.3216,27.4435],[-80.3754,27.653],[-80.4614,27.8059],[-80.6578,28.1953],[-80.7489,28.4089],[-80.7978,28.5589],[-80.8436,28.75],[-80.8447,28.8],[-80.7417,28.7158],[-80.7847,28.6903],[-80.7842,28.6219],[-80.7261,28.6042],[-80.7331,28.4897],[-80.7203,28.3914],[-80.6833,28.3397],[-80.635,28.5022],[-80.5872,28.5744],[-80.585,28.5158],[-80.6086,28.3758],[-80.6322,28.3225],[-80.6078,28.2639],[-80.6186,28.2122],[-80.5764,28.0775],[-80.4272,27.8139],[-80.4183,27.7665],[-80.3422,27.5958],[-80.3108,27.4708],[-80.2903,27.4728],[-80.3842,27.7424],[-80.5125,27.9764],[-80.5611,28.0792],[-80.5931,28.1906],[-80.6081,28.3103],[-80.5908,28.4078],[-80.525,28.4581],[-80.5747,28.5847],[-80.71,28.7564],[-80.9008,29.0475],[-80.9158,29.0236],[-80.8475,28.9575],[-80.775,28.8522],[-80.7764,28.8256],[-80.6442,28.6675],[-80.6856,28.6706],[-80.7669,28.7572],[-80.9781,29.1286],[-80.9961,29.2036],[-81.1708,29.57],[-81.2583,29.7869],[-81.2644,29.8567],[-81.3014,29.9414],[-81.3786,30.2458],[-81.3931,30.3953],[-81.436,30.5245],[-81.4435,30.5989],[-81.4256,30.7011],[-81.5015,30.7286],[-81.5415,30.7127],[-81.6237,30.7279],[-81.631,30.7331],[-81.6604,30.7521],[-81.6827,30.7493],[-81.875,30.8007],[-81.8859,30.8137],[-81.9377,30.8284],[-81.9628,30.8162],[-81.9658,30.7943],[-81.9884,30.7795],[-82.0015,30.7905],[-82.0196,30.7897],[-82.0245,30.7829],[-82.0243,30.7537],[-82.0515,30.6577],[-82.0412,30.6424],[-82.0104,30.583],[-82.009,30.5634],[-82.0363,30.3825],[-82.0671,30.3571],[-82.0702,30.3608],[-82.1618,30.3591],[-82.1777,30.3644],[-82.2079,30.4163],[-82.2016,30.475],[-82.2071,30.4941],[-82.2213,30.5687],[-82.6896,30.5976],[-83.9521,30.6709],[-84.8665,30.7116],[-84.8885,30.7358],[-84.9143,30.751],[-84.9208,30.7679],[-84.9367,30.8872],[-84.979,30.9579],[-84.9807,30.9648],[-85.0011,30.9921],[-85.0035,31.0021],[-85.4918,30.9967],[-86.0354,30.9943],[-86.7016,30.9956],[-86.772,31],[-87.6012,31.0004],[-87.5913,30.9713],[-87.5921,30.9539],[-87.6372,30.867],[-87.5353,30.7484],[-87.4328,30.6889],[-87.4016,30.6595],[-87.3958,30.6354],[-87.3939,30.6286],[-87.4015,30.6059],[-87.4265,30.5605],[-87.429,30.5525],[-87.4421,30.5365],[-87.4468,30.5228],[-87.445,30.5068],[-87.4353,30.4873]]],[[[-82.1588,26.7068],[-82.0943,26.489],[-82.0651,26.6107],[-82.1243,26.699],[-82.1588,26.7068]]],[[[-80.6471,24.9132],[-80.566,24.9557],[-80.474,25.0607],[-80.3715,25.1365],[-80.3679,25.1699],[-80.2851,25.2874],[-80.5126,25.0179],[-80.6471,24.9132]]],[[[-82.1965,26.5515],[-82.1729,26.4688],[-82.0715,26.4215],[-82.014,26.4524],[-82.1599,26.4821],[-82.1965,26.5515]]],[[[-81.5623,24.6926],[-81.6038,24.5857],[-81.5101,24.6257],[-81.5623,24.6926]]],[[[-81.7276,25.9735],[-81.7288,25.9079],[-81.6735,25.9007],[-81.6552,25.9426],[-81.7276,25.9735]]],[[[-85.1122,29.6877],[-85.1828,29.6638],[-85.0972,29.6325],[-85.1122,29.6877]]],[[[-81.0057,25.2732],[-81.0462,25.2374],[-81.0207,25.2279],[-81.0054,25.2282],[-81.0007,25.2162],[-80.9676,25.2185],[-81.0057,25.2732]]],[[[-81.4132,25.8007],[-81.4246,25.8554],[-81.4799,25.8443],[-81.4132,25.8007]]]]},"properties":{"id":"eeb4289a-9597-4d1c-b459-de727c28a516","code":"FL","name":"Florida","abbreviation":"S-FL","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.0035,31.0021],[-85.0011,30.9921],[-84.9807,30.9648],[-84.979,30.9579],[-84.9367,30.8872],[-84.9208,30.7679],[-84.9143,30.751],[-84.8885,30.7358],[-84.8665,30.7116],[-83.9521,30.6709],[-82.6896,30.5976],[-82.2213,30.5687],[-82.2071,30.4941],[-82.2016,30.475],[-82.2079,30.4163],[-82.1777,30.3644],[-82.1618,30.3591],[-82.0702,30.3608],[-82.0671,30.3571],[-82.0363,30.3825],[-82.009,30.5634],[-82.0104,30.583],[-82.0412,30.6424],[-82.0515,30.6577],[-82.0243,30.7537],[-82.0245,30.7829],[-82.0196,30.7897],[-82.0015,30.7905],[-81.9884,30.7795],[-81.9658,30.7943],[-81.9628,30.8162],[-81.9377,30.8284],[-81.8859,30.8137],[-81.875,30.8007],[-81.6827,30.7493],[-81.6604,30.7521],[-81.631,30.7331],[-81.6237,30.7279],[-81.5415,30.7127],[-81.5015,30.7286],[-81.449,30.72],[-81.4522,30.7992],[-81.4064,30.9003],[-81.4027,30.9589],[-81.4633,30.9097],[-81.5131,30.9658],[-81.4611,30.9983],[-81.4841,31.0377],[-81.4256,31.0486],[-81.4606,31.0872],[-81.4353,31.1339],[-81.4631,31.1772],[-81.3883,31.2826],[-81.3333,31.3903],[-81.3758,31.4242],[-81.2314,31.5497],[-81.1659,31.5634],[-81.1301,31.63],[-81.1452,31.699],[-81.1872,31.6878],[-81.2528,31.7567],[-81.1609,31.7277],[-81.2018,31.7866],[-81.145,31.8614],[-81.0894,31.8603],[-81.0214,31.9078],[-80.9933,31.8578],[-80.9335,31.9074],[-80.985,31.9164],[-81.0086,32.0073],[-81.0463,32.0241],[-81.0494,32.0302],[-81.0422,32.0458],[-81.0315,32.0609],[-81.0114,32.0746],[-80.9716,32.0741],[-80.9839,32.0796],[-81.0236,32.0999],[-81.1183,32.1175],[-81.1104,32.1734],[-81.1554,32.2403],[-81.1202,32.2875],[-81.2033,32.4265],[-81.1959,32.4697],[-81.291,32.5645],[-81.3393,32.5673],[-81.4175,32.6317],[-81.3942,32.6526],[-81.4258,32.7738],[-81.4275,32.8422],[-81.4578,32.851],[-81.5016,32.9369],[-81.4912,32.9936],[-81.6142,33.0953],[-81.6466,33.0937],[-81.7545,33.1517],[-81.7573,33.1972],[-81.846,33.243],[-81.836,33.2735],[-81.9338,33.3438],[-81.9443,33.4024],[-81.914,33.4436],[-81.9862,33.4875],[-82.0511,33.5662],[-82.1953,33.6318],[-82.2552,33.7569],[-82.3091,33.8072],[-82.4281,33.8693],[-82.5143,33.9395],[-82.5624,33.9551],[-82.5975,34.0313],[-82.6792,34.1307],[-82.7173,34.1521],[-82.7519,34.2726],[-82.8329,34.3661],[-82.8612,34.4538],[-82.9055,34.4867],[-83.0022,34.4733],[-83.0819,34.5155],[-83.1938,34.6067],[-83.2366,34.6167],[-83.3403,34.6812],[-83.3534,34.728],[-83.2993,34.8066],[-83.2928,34.8186],[-83.2501,34.8678],[-83.1272,34.9401],[-83.1052,35.002],[-83.6213,34.9916],[-83.6216,34.9871],[-84.321,34.989],[-84.477,34.9885],[-84.6374,34.9906],[-85.3418,34.9839],[-85.6055,34.9855],[-85.573,34.8029],[-85.4899,34.4162],[-85.4115,34.0299],[-85.2245,33.0693],[-85.1693,32.8117],[-85.1253,32.7789],[-85.1149,32.6962],[-85.075,32.5885],[-85.0048,32.5172],[-84.9824,32.4057],[-84.9997,32.3223],[-84.8935,32.2646],[-84.9775,32.1928],[-85.0489,32.1441],[-85.0645,32.1315],[-85.0522,32.089],[-85.0862,31.9407],[-85.1175,31.9124],[-85.1383,31.8274],[-85.1445,31.7818],[-85.1257,31.6948],[-85.0674,31.627],[-85.0454,31.5443],[-85.1171,31.2776],[-85.1093,31.1911],[-85.0293,31.0761],[-85.0106,31.028],[-85.0049,31.0149],[-85.0035,31.0021]]],[[[-81.1942,31.5358],[-81.2944,31.4878],[-81.3078,31.4233],[-81.2794,31.3783],[-81.1778,31.5147],[-81.1942,31.5358]]],[[[-81.3374,31.2919],[-81.3739,31.2993],[-81.41,31.1367],[-81.3688,31.1452],[-81.3104,31.2141],[-81.3374,31.2919]]],[[[-81.1206,31.8497],[-81.1803,31.7939],[-81.1325,31.7222],[-81.0347,31.8173],[-81.1206,31.8497]]],[[[-81.0092,32.0711],[-81.0292,32.0622],[-81.0283,32.0497],[-81.0396,32.0447],[-81.0481,32.0278],[-81.0283,32.025],[-81.0031,32.0094],[-80.9856,31.9517],[-80.9292,31.9725],[-80.9325,31.9911],[-80.9245,32.0091],[-80.94,32.0154],[-80.9824,32.0597],[-81.0092,32.0711]]],[[[-80.9775,32.0661],[-80.9242,32.0125],[-80.9217,32.0072],[-80.9261,31.9958],[-80.8478,31.9892],[-80.9775,32.0661]]]]},"properties":{"id":"22b393fd-f331-4bc3-8211-104489b19510","code":"GA","name":"Georgia","abbreviation":"S-GA","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-155.875,20.0919],[-155.8234,20.0276],[-155.9367,19.8497],[-155.96,19.8531],[-156.0503,19.7744],[-156.0328,19.6563],[-155.9753,19.6046],[-155.9508,19.4869],[-155.9203,19.4769],[-155.8847,19.3322],[-155.9189,19.115],[-155.8819,19.0364],[-155.7953,19.0042],[-155.6864,18.9372],[-155.6378,18.9347],[-155.504,19.1357],[-155.4523,19.1474],[-155.3471,19.2135],[-155.2936,19.2634],[-155.2078,19.2562],[-155.1305,19.2728],[-154.9725,19.3489],[-154.8206,19.4769],[-154.8058,19.5161],[-154.9031,19.5689],[-154.98,19.6376],[-155.0022,19.7364],[-155.0903,19.7347],[-155.0811,19.8475],[-155.1572,19.9325],[-155.2746,20.0165],[-155.4383,20.0925],[-155.5561,20.1289],[-155.5878,20.1188],[-155.7303,20.2022],[-155.7539,20.2361],[-155.8369,20.2672],[-155.8825,20.2575],[-155.9042,20.1973],[-155.875,20.0919]]],[[[-156.5986,21.0305],[-156.6333,21.0267],[-156.6925,20.9472],[-156.6871,20.882],[-156.6283,20.8136],[-156.5366,20.7743],[-156.4631,20.7812],[-156.4414,20.605],[-156.3736,20.5739],[-156.2972,20.5822],[-156.1927,20.6283],[-156.1403,20.6178],[-156.0472,20.6508],[-155.9872,20.7083],[-156.0019,20.7947],[-156.1081,20.825],[-156.2825,20.9458],[-156.3294,20.9456],[-156.4739,20.8908],[-156.5265,20.9805],[-156.5986,21.0305]]],[[[-157.9803,21.7108],[-158.0633,21.655],[-158.1169,21.5847],[-158.283,21.5756],[-158.2303,21.5349],[-158.2317,21.4825],[-158.1417,21.3764],[-158.1031,21.295],[-157.9005,21.3259],[-157.8188,21.2576],[-157.6487,21.3044],[-157.7035,21.3464],[-157.7446,21.4211],[-157.7814,21.4114],[-157.8397,21.4562],[-157.8338,21.5265],[-157.9209,21.6268],[-157.9335,21.6743],[-157.9803,21.7108]]],[[[-159.4018,22.235],[-159.4983,22.2068],[-159.5865,22.2205],[-159.6598,22.1719],[-159.7223,22.1531],[-159.7858,22.0619],[-159.7564,21.9786],[-159.6664,21.9524],[-159.6284,21.9084],[-159.4441,21.868],[-159.3305,21.9595],[-159.3389,22.0175],[-159.2929,22.1221],[-159.3146,22.1859],[-159.4018,22.235]]],[[[-156.9134,21.1667],[-156.9706,21.2158],[-157,21.1789],[-157.0652,21.1952],[-157.2606,21.2175],[-157.2508,21.1775],[-157.3114,21.1014],[-157.2525,21.0877],[-157.0937,21.1026],[-156.8743,21.0465],[-156.7486,21.1028],[-156.7109,21.1479],[-156.7393,21.173],[-156.9134,21.1667]]],[[[-156.9791,20.9263],[-157.0579,20.909],[-157.0525,20.8728],[-156.9981,20.8408],[-156.9636,20.7308],[-156.8761,20.7425],[-156.8054,20.808],[-156.8284,20.8558],[-156.9005,20.9151],[-156.9791,20.9263]]],[[[-160.0855,22.0015],[-160.1285,21.9513],[-160.2294,21.8856],[-160.2472,21.8153],[-160.2027,21.7789],[-160.1611,21.8614],[-160.0672,21.8935],[-160.0855,22.0015]]],[[[-156.5683,20.6039],[-156.6778,20.5556],[-156.6786,20.5028],[-156.5518,20.5339],[-156.5683,20.6039]]]]},"properties":{"id":"eaa2828e-1d16-4aa4-bc05-50ebcb3d7974","code":"HI","name":"Hawaii","abbreviation":"S-HI","parent_id":"5ee7f045-f63c-42e6-b623-98c5080c0d76"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-112.164,42.0017],[-112.156,41.9981],[-111.5833,42.0042],[-111.4479,42.0012],[-111.046989374,42.000501202],[-111.0477,42.4469],[-111.0446,42.7889],[-111.045,43.5061],[-111.0487,44.4772],[-111.1119,44.4909],[-111.1331,44.5339],[-111.2285,44.5803],[-111.2963,44.7017],[-111.3212,44.7179],[-111.3244,44.7271],[-111.3496,44.7281],[-111.3775,44.7537],[-111.388,44.753],[-111.411,44.7129],[-111.4876,44.7031],[-111.4717,44.668],[-111.5461,44.5559],[-111.6167,44.5491],[-111.648,44.5542],[-111.7012,44.5587],[-111.8223,44.5111],[-111.8693,44.5662],[-111.9759,44.5391],[-112.1144,44.5254],[-112.2862,44.5691],[-112.3558,44.533],[-112.3834,44.4493],[-112.3923,44.45],[-112.4599,44.477],[-112.6651,44.4881],[-112.6911,44.4995],[-112.7352,44.5],[-112.7637,44.4896],[-112.7827,44.483],[-112.803,44.4602],[-112.8284,44.444],[-112.8186,44.3725],[-112.8508,44.3581],[-112.9786,44.4322],[-113.0242,44.4937],[-113.0094,44.527],[-113.0858,44.6042],[-113.0558,44.6259],[-113.1347,44.7754],[-113.2475,44.8229],[-113.3286,44.7888],[-113.4233,44.8405],[-113.4917,44.926],[-113.4462,44.9586],[-113.4548,45.0599],[-113.5482,45.1113],[-113.5906,45.1806],[-113.6874,45.2579],[-113.7385,45.3308],[-113.7336,45.3901],[-113.7748,45.4161],[-113.7714,45.5192],[-113.8309,45.518],[-113.8186,45.6101],[-113.9025,45.6192],[-113.895,45.6461],[-113.9856,45.7047],[-114.0147,45.6588],[-114.1356,45.5586],[-114.2018,45.5354],[-114.2473,45.5467],[-114.2715,45.484],[-114.3406,45.4595],[-114.4268,45.5135],[-114.4677,45.5647],[-114.5523,45.5583],[-114.5465,45.6423],[-114.5049,45.6611],[-114.5011,45.7186],[-114.5655,45.7773],[-114.4943,45.8521],[-114.4097,45.8522],[-114.386,45.8863],[-114.4317,45.9398],[-114.4128,45.9773],[-114.4875,46.0033],[-114.5062,46.0359],[-114.4603,46.0945],[-114.5177,46.1246],[-114.5073,46.1688],[-114.4469,46.1739],[-114.4509,46.2359],[-114.4154,46.3385],[-114.4203,46.3914],[-114.382,46.462],[-114.4033,46.4989],[-114.3446,46.5173],[-114.3476,46.5533],[-114.3347,46.578],[-114.3225,46.6339],[-114.3309,46.6586],[-114.4322,46.6601],[-114.4679,46.633],[-114.5347,46.6507],[-114.591,46.6365],[-114.6418,46.6673],[-114.6266,46.7099],[-114.6941,46.7391],[-114.7533,46.6996],[-114.7679,46.7603],[-114.9225,46.8283],[-114.9233,46.9152],[-115.0187,46.9755],[-115.0499,46.9707],[-115.0835,47.0439],[-115.1406,47.1019],[-115.2963,47.1886],[-115.3201,47.2581],[-115.5029,47.2873],[-115.6043,47.3787],[-115.752,47.4367],[-115.6454,47.4591],[-115.7055,47.534],[-115.7525,47.5535],[-115.6898,47.5926],[-115.7279,47.6425],[-115.7254,47.7],[-115.8314,47.7523],[-115.8483,47.8154],[-115.9003,47.8425],[-116.0215,47.9645],[-116.0471,47.973],[-116.0507,49.0004],[-117.0294,48.9996],[-117.0391,48.5904],[-117.0426,48.0459],[-117.0422,47.3665],[-117.038,46.4288],[-117.0605,46.3629],[-116.987,46.2957],[-116.9631,46.2032],[-116.9218,46.1711],[-116.9569,46.0753],[-116.9383,46.0474],[-116.92,46.0146],[-116.912940083,45.9971998],[-116.9125,45.9972],[-116.9101,45.9902],[-116.866,45.9152],[-116.789,45.8586],[-116.7614,45.8166],[-116.6935,45.818],[-116.6623,45.7812],[-116.5924,45.7793],[-116.5345,45.7349],[-116.5341,45.6925],[-116.4616,45.6093],[-116.5203,45.5553],[-116.5849,45.4414],[-116.667,45.3271],[-116.7284,45.145],[-116.8413,45.0287],[-116.833,44.9386],[-116.8552,44.8816],[-116.9352,44.783],[-117.0285,44.7511],[-117.1414,44.57],[-117.1473,44.5352],[-117.224,44.4799],[-117.213,44.4282],[-117.2402,44.3893],[-117.1896,44.3309],[-117.2181,44.3018],[-117.181,44.2644],[-117.0924,44.2718],[-117.052,44.2329],[-116.971,44.2348],[-116.9664,44.1964],[-116.8935,44.1703],[-116.9196,44.1076],[-116.9689,44.0873],[-116.936,43.9916],[-116.9728,43.9678],[-116.962,43.9126],[-117.0203,43.8594],[-117.0271,43.8082],[-117.0293,42.0003],[-115.2264,41.9945],[-114.8546,42.0003],[-114.5984,41.9953],[-114.044298938,41.993413276],[-114.0404,41.9934],[-113.8526,41.9898],[-112.9579,41.999],[-112.164,42.0017]]]},"properties":{"id":"cbcd9de9-cf65-4c1e-9d2f-c693db0974b5","code":"ID","name":"Idaho","abbreviation":"S-ID","parent_id":"1f30181c-ab24-4bfc-989c-162d4b17a83e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.1702,37.0105],[-89.1815,37.041],[-89.1771,37.059],[-89.0797,37.1717],[-89.0071,37.2232],[-88.9595,37.23],[-88.7954,37.1819],[-88.6965,37.1397],[-88.676688934,37.133297951],[-88.633978755,37.119495934],[-88.618958431,37.114642037],[-88.617254334,37.113873523],[-88.5528,37.0713],[-88.4659,37.0771],[-88.425,37.1543],[-88.5133,37.279],[-88.4742,37.3871],[-88.444,37.4156],[-88.4065,37.4263],[-88.3714,37.4074],[-88.2593,37.4575],[-88.085,37.4776],[-88.0736,37.5317],[-88.1335,37.5836],[-88.1567,37.6484],[-88.1478,37.6776],[-88.0531,37.7445],[-88.027,37.799],[-88.0612,37.8053],[-88.0763,37.8106],[-88.0836,37.8251],[-88.0252,37.8317],[-88.0251,37.8417],[-88.0499,37.8531],[-88.0897,37.8995],[-88.0129,37.8973],[-88.0344,38.0341],[-87.9613,38.0716],[-87.9591,38.0958],[-87.915,38.1603],[-87.9828,38.2154],[-87.9344,38.2952],[-87.8279,38.3375],[-87.7445,38.4109],[-87.7347,38.4536],[-87.6475,38.5175],[-87.6695,38.5458],[-87.5994,38.6641],[-87.5369,38.683],[-87.4971,38.7431],[-87.4992,38.7884],[-87.5505,38.8595],[-87.5132,38.9554],[-87.5774,38.989],[-87.5713,39.0589],[-87.6538,39.1426],[-87.5748,39.2162],[-87.616,39.3044],[-87.5304,39.3516],[-87.5327,40.1309],[-87.5254,40.5505],[-87.527,41.4086],[-87.524,41.7603],[-87.2071,41.7607],[-87.069,42.3391],[-87.0181,42.4947],[-88.6288,42.4985],[-88.7719,42.4957],[-89.6811,42.5074],[-90.4244,42.5079],[-90.641120407,42.509297552],[-90.6415,42.5093],[-90.6513,42.4981],[-90.6533,42.48],[-90.6157,42.4555],[-90.4762,42.3823],[-90.4162,42.3282],[-90.4265,42.2895],[-90.4216,42.267],[-90.3849,42.2225],[-90.3641,42.2091],[-90.2081,42.1528],[-90.1984,42.1301],[-90.1638,42.1185],[-90.1671,42.0726],[-90.1606,42.0418],[-90.1482,41.9902],[-90.1525,41.9127],[-90.1904,41.8046],[-90.286,41.765],[-90.3165,41.7124],[-90.3184,41.6944],[-90.3444,41.6502],[-90.3427,41.5948],[-90.3932,41.5759],[-90.4524,41.5308],[-90.4934,41.5182],[-90.5726,41.5173],[-90.6077,41.4958],[-90.6613,41.4598],[-90.8494,41.4539],[-90.9263,41.424],[-91.0455,41.4164],[-91.0742,41.3107],[-91.1142,41.2443],[-91.0514,41.1684],[-90.9981,41.1626],[-90.9489,41.0718],[-90.9449,41.0481],[-90.9558,40.9699],[-90.9645,40.925],[-91.0043,40.9049],[-91.0894,40.8235],[-91.113,40.6883],[-91.1373,40.661],[-91.2032,40.6369],[-91.2591,40.6358],[-91.3384,40.611],[-91.4057,40.567],[-91.4131,40.5471],[-91.391,40.5345],[-91.3705,40.5151],[-91.3654,40.3993],[-91.4204,40.378],[-91.4658,40.3334],[-91.5049,40.2375],[-91.5115,40.1292],[-91.4929,40.0309],[-91.4271,39.939],[-91.4196,39.9177],[-91.4409,39.8965],[-91.4473,39.8743],[-91.4292,39.8392],[-91.3686,39.8015],[-91.3616,39.783],[-91.3662,39.7285],[-91.1801,39.5992],[-91.1636,39.5573],[-91.0944,39.5323],[-91.0578,39.468],[-90.7971,39.3118],[-90.725,39.2441],[-90.6825,39.1095],[-90.7131,39.0513],[-90.6346,38.9037],[-90.5983,38.8768],[-90.5062,38.9053],[-90.4697,38.9614],[-90.3828,38.9595],[-90.2554,38.9224],[-90.1555,38.8722],[-90.1141,38.8508],[-90.116,38.8105],[-90.204,38.736],[-90.1814,38.6618],[-90.1984,38.595],[-90.2595,38.533],[-90.2984,38.4254],[-90.3565,38.367],[-90.3724,38.3224],[-90.373,38.278],[-90.3498,38.2141],[-90.2493,38.1239],[-90.1824,38.0773],[-90.0109,37.9714],[-89.995,37.9619],[-89.94,37.9703],[-89.9736,37.917],[-89.9177,37.8702],[-89.8418,37.9044],[-89.7961,37.8589],[-89.7397,37.8467],[-89.6626,37.7892],[-89.6707,37.7575],[-89.5152,37.6892],[-89.5204,37.5815],[-89.4926,37.4934],[-89.4355,37.4296],[-89.426,37.3655],[-89.5098,37.3131],[-89.518,37.2767],[-89.5095,37.2636],[-89.4654,37.2526],[-89.4579,37.1869],[-89.3772,37.0912],[-89.3865,37.0501],[-89.2909,36.9895],[-89.2598,37.0031],[-89.3063,37.0643],[-89.2504,37.0633],[-89.1953,36.983],[-89.1339,36.9839],[-89.1702,37.0105]]]},"properties":{"id":"8566cfa8-4bf0-4abb-95e8-0164457a8dfc","code":"IL","name":"Illinois","abbreviation":"S-IL","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.027,37.799],[-87.9627,37.7743],[-87.9464,37.7782],[-87.9317,37.7969],[-87.9053,37.8199],[-87.9364,37.892],[-87.9051,37.9243],[-87.898,37.9279],[-87.8824,37.9261],[-87.8608,37.9043],[-87.7909,37.8763],[-87.6679,37.8934],[-87.6642,37.8265],[-87.6379,37.8254],[-87.5934,37.8902],[-87.6279,37.9235],[-87.6011,37.9708],[-87.5114,37.9067],[-87.4732,37.9279],[-87.4166,37.9442],[-87.3434,37.9128],[-87.2414,37.8575],[-87.1673,37.8387],[-87.107,37.7833],[-87.0552,37.8288],[-87.046,37.8901],[-86.986,37.929],[-86.9126,37.9409],[-86.8599,37.9849],[-86.7963,37.9874],[-86.7311,37.8927],[-86.6673,37.9134],[-86.6673,37.8555],[-86.6015,37.8639],[-86.5816,37.921],[-86.5285,37.9178],[-86.5219,38.0289],[-86.4666,38.0457],[-86.3988,38.1049],[-86.3198,38.1465],[-86.2729,38.1341],[-86.2603,38.0514],[-86.1682,38.0093],[-86.0928,38.0077],[-86.0464,37.9586],[-86.0145,37.9958],[-85.9398,38.0089],[-85.9028,38.0926],[-85.9044,38.1676],[-85.8328,38.2662],[-85.7829,38.2887],[-85.7432,38.2689],[-85.6498,38.3307],[-85.5981,38.4442],[-85.5047,38.4645],[-85.4235,38.5313],[-85.437,38.6563],[-85.4168,38.7357],[-85.2505,38.7322],[-85.1747,38.6879],[-84.9923,38.7777],[-84.883,38.7931],[-84.8288,38.7837],[-84.83,38.8284],[-84.7877,38.8823],[-84.8738,38.91],[-84.8374,38.9887],[-84.8931,39.054],[-84.8884,39.065],[-84.8342,39.0983],[-84.8191,39.1069],[-84.8131,40.006],[-84.8079,40.1741],[-84.8023,40.7281],[-84.8067,41.6958],[-84.8076,41.7605],[-85.932,41.7623],[-86.4526,41.7599],[-87.2071,41.7607],[-87.524,41.7603],[-87.527,41.4086],[-87.5254,40.5505],[-87.5327,40.1309],[-87.5304,39.3516],[-87.616,39.3044],[-87.5748,39.2162],[-87.6538,39.1426],[-87.5713,39.0589],[-87.5774,38.989],[-87.5132,38.9554],[-87.5505,38.8595],[-87.4992,38.7884],[-87.4971,38.7431],[-87.5369,38.683],[-87.5994,38.6641],[-87.6695,38.5458],[-87.6475,38.5175],[-87.7347,38.4536],[-87.7445,38.4109],[-87.8279,38.3375],[-87.9344,38.2952],[-87.9828,38.2154],[-87.915,38.1603],[-87.9591,38.0958],[-87.9613,38.0716],[-88.0344,38.0341],[-88.0129,37.8973],[-88.0897,37.8995],[-88.0499,37.8531],[-88.0251,37.8417],[-88.0252,37.8317],[-88.0836,37.8251],[-88.0763,37.8106],[-88.0612,37.8053],[-88.027,37.799]]]},"properties":{"id":"eeb2648b-7215-430d-8490-91b69ce67866","code":"IN","name":"Indiana","abbreviation":"S-IN","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.6415,42.5093],[-90.6363,42.5146],[-90.6347,42.5241],[-90.6635,42.5587],[-90.6858,42.5984],[-90.706,42.6356],[-90.9542,42.6872],[-91.0517,42.7397],[-91.0999,42.875],[-91.1444,42.9104],[-91.1765,43.0915],[-91.1755,43.1374],[-91.0621,43.256],[-91.1004,43.3118],[-91.2035,43.3527],[-91.2227,43.4769],[-91.22,43.5023],[-93.2844,43.5032],[-93.6782,43.5047],[-95.113241361,43.503614375],[-96.277333059,43.502733726],[-96.4541,43.5026],[-96.5974,43.5021],[-96.5965,43.4422],[-96.5199,43.3916],[-96.5585,43.2257],[-96.483,43.2257],[-96.4378,43.1173],[-96.4617,43.0655],[-96.5167,43.046],[-96.4985,42.9596],[-96.5372,42.9187],[-96.552,42.8373],[-96.6326,42.7681],[-96.628,42.7077],[-96.5167,42.6312],[-96.4792,42.557],[-96.4754,42.4962],[-96.45,42.4895],[-96.4192,42.4916],[-96.3915,42.484],[-96.4186,42.352],[-96.3715,42.3142],[-96.3224,42.2324],[-96.3576,42.2154],[-96.3403,42.1595],[-96.2766,42.1221],[-96.2698,42.0429],[-96.1335,41.97],[-96.1579,41.9098],[-96.0679,41.7857],[-96.1012,41.7445],[-96.0726,41.7033],[-96.1199,41.6837],[-96.0955,41.5449],[-95.9873,41.5152],[-96.0138,41.4801],[-95.9481,41.4651],[-95.9242,41.4609],[-95.9277,41.4097],[-95.9369,41.3904],[-95.9504,41.337],[-95.9106,41.3205],[-95.8725,41.2953],[-95.8782,41.2843],[-95.9093,41.2738],[-95.9053,41.3],[-95.9187,41.3018],[-95.9113,41.1857],[-95.8603,41.0869],[-95.8693,41.0087],[-95.8276,40.9735],[-95.8106,40.9002],[-95.843,40.8697],[-95.8441,40.8125],[-95.8371,40.7762],[-95.8825,40.7173],[-95.7952,40.6624],[-95.7651,40.5856],[-94.7673,40.5726],[-94.2285,40.5706],[-93.6866,40.5783],[-93.2896,40.5804],[-92.0611,40.6033],[-91.7284,40.614],[-91.6833,40.5553],[-91.5661,40.462],[-91.5263,40.4146],[-91.4938,40.3993],[-91.4673,40.3855],[-91.4633,40.3769],[-91.4506,40.3767],[-91.4204,40.378],[-91.3654,40.3993],[-91.3705,40.5151],[-91.391,40.5345],[-91.4131,40.5471],[-91.4057,40.567],[-91.3384,40.611],[-91.2591,40.6358],[-91.2032,40.6369],[-91.1373,40.661],[-91.113,40.6883],[-91.0894,40.8235],[-91.0043,40.9049],[-90.9645,40.925],[-90.9558,40.9699],[-90.9449,41.0481],[-90.9489,41.0718],[-90.9981,41.1626],[-91.0514,41.1684],[-91.1142,41.2443],[-91.0742,41.3107],[-91.0455,41.4164],[-90.9263,41.424],[-90.8494,41.4539],[-90.6613,41.4598],[-90.6077,41.4958],[-90.5726,41.5173],[-90.4934,41.5182],[-90.4524,41.5308],[-90.3932,41.5759],[-90.3427,41.5948],[-90.3444,41.6502],[-90.3184,41.6944],[-90.3165,41.7124],[-90.286,41.765],[-90.1904,41.8046],[-90.1525,41.9127],[-90.1482,41.9902],[-90.1606,42.0418],[-90.1671,42.0726],[-90.1638,42.1185],[-90.1984,42.1301],[-90.2081,42.1528],[-90.3641,42.2091],[-90.3849,42.2225],[-90.4216,42.267],[-90.4265,42.2895],[-90.4162,42.3282],[-90.4762,42.3823],[-90.6157,42.4555],[-90.6533,42.48],[-90.6513,42.4981],[-90.6415,42.5093]]]},"properties":{"id":"c4face4f-9755-45b8-8dce-7d916270ad48","code":"IA","name":"Iowa","abbreviation":"S-IA","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.0423,36.9922],[-102.041933879,36.9922022],[-100.9441,36.9988],[-100.0902,36.9983],[-99.0005,37.0008],[-97.1468,36.9994],[-95.5236,37.0009],[-95.0336,36.9986],[-94.619,37],[-94.6134,38.3892],[-94.6083,39.1204],[-94.5984,39.1579],[-94.6628,39.1779],[-94.7486,39.1723],[-94.8877,39.2907],[-94.9307,39.3849],[-94.9913,39.4479],[-95.0346,39.4617],[-95.1046,39.5359],[-95.1037,39.5812],[-95.0575,39.5836],[-95.0495,39.6391],[-94.9697,39.695],[-94.9519,39.7473],[-94.8931,39.7257],[-94.8673,39.7678],[-94.9352,39.7834],[-94.9273,39.79],[-94.8907,39.7952],[-94.8786,39.8112],[-94.8809,39.8253],[-94.9412,39.8602],[-94.9286,39.8839],[-94.9364,39.895],[-95.0111,39.9012],[-95.0416,39.8667],[-95.1277,39.8757],[-95.2359,39.944],[-95.253,39.9519],[-95.308,39.9999],[-97.3687,40.0035],[-98.5045,40.0036],[-98.9996,40.0021],[-102.048383939,40.003899931],[-102.042300011,36.992205645],[-102.0423,36.9922]]]},"properties":{"id":"693b24ae-e833-4e9d-b3b7-bb5dc1124432","code":"KS","name":"Kansas","abbreviation":"S-KS","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-89.1339,36.9839],[-89.1006,36.9541],[-89.1164,36.9168],[-89.1311,36.8588],[-89.1785,36.8388],[-89.1612,36.7912],[-89.2016,36.7251],[-89.166,36.6636],[-89.2289,36.5677],[-89.2749,36.5717],[-89.3248,36.6268],[-89.3562,36.6324],[-89.3777,36.6179],[-89.4196,36.498],[-89.2992,36.5078],[-88.1793,36.5],[-88.0571,36.4967],[-88.0326,36.5367],[-88.0707,36.6792],[-87.8505,36.6651],[-87.8534,36.6353],[-87.0605,36.6444],[-86.5913,36.6544],[-86.3401,36.65],[-85.8526,36.6245],[-85.5074,36.6151],[-85.2626,36.6283],[-84.83,36.6071],[-84.5136,36.5989],[-84.0301,36.5931],[-83.8297,36.5855],[-83.6902,36.5838],[-83.6843,36.5933],[-83.6748,36.6012],[-83.6632,36.612],[-83.4979,36.6711],[-83.4221,36.67],[-83.3354,36.7041],[-83.1374,36.7438],[-83.1331,36.7845],[-83.0676,36.8541],[-82.9615,36.861],[-82.8698,36.9005],[-82.8653,36.9786],[-82.7198,37.0484],[-82.7206,37.1205],[-82.555,37.2033],[-82.3523,37.268],[-81.9673,37.5372],[-81.9642,37.544],[-81.9908,37.5404],[-82.1293,37.5525],[-82.1352,37.5965],[-82.2231,37.6542],[-82.2901,37.6708],[-82.3119,37.765],[-82.4178,37.8481],[-82.4201,37.8853],[-82.4874,37.9182],[-82.4701,37.9863],[-82.5085,38.0021],[-82.5495,38.0718],[-82.637,38.1407],[-82.578,38.2508],[-82.5928,38.4186],[-82.6115,38.4718],[-82.6521,38.4912],[-82.6853,38.5305],[-82.7243,38.5581],[-82.7806,38.559],[-82.823,38.5743],[-82.8556,38.6128],[-82.8699,38.735],[-82.884,38.7523],[-82.9254,38.7474],[-82.9665,38.728],[-83.0137,38.7296],[-83.1109,38.6708],[-83.1519,38.6206],[-83.2468,38.6278],[-83.287,38.5998],[-83.33,38.6386],[-83.5393,38.7011],[-83.6217,38.6811],[-83.6573,38.6263],[-83.7547,38.6494],[-83.8686,38.7611],[-83.9597,38.7873],[-84.0775,38.7728],[-84.1762,38.7966],[-84.2185,38.8097],[-84.2295,38.8235],[-84.2383,38.8947],[-84.3284,39.0285],[-84.4076,39.046],[-84.4403,39.1096],[-84.4738,39.1184],[-84.6237,39.0736],[-84.7596,39.1414],[-84.803,39.11],[-84.8191,39.1069],[-84.8342,39.0983],[-84.8884,39.065],[-84.8931,39.054],[-84.8374,38.9887],[-84.8738,38.91],[-84.7877,38.8823],[-84.83,38.8284],[-84.8288,38.7837],[-84.883,38.7931],[-84.9923,38.7777],[-85.1747,38.6879],[-85.2505,38.7322],[-85.4168,38.7357],[-85.437,38.6563],[-85.4235,38.5313],[-85.5047,38.4645],[-85.5981,38.4442],[-85.6498,38.3307],[-85.7432,38.2689],[-85.7829,38.2887],[-85.8328,38.2662],[-85.9044,38.1676],[-85.9028,38.0926],[-85.9398,38.0089],[-86.0145,37.9958],[-86.0464,37.9586],[-86.0928,38.0077],[-86.1682,38.0093],[-86.2603,38.0514],[-86.2729,38.1341],[-86.3198,38.1465],[-86.3988,38.1049],[-86.4666,38.0457],[-86.5219,38.0289],[-86.5285,37.9178],[-86.5816,37.921],[-86.6015,37.8639],[-86.6673,37.8555],[-86.6673,37.9134],[-86.7311,37.8927],[-86.7963,37.9874],[-86.8599,37.9849],[-86.9126,37.9409],[-86.986,37.929],[-87.046,37.8901],[-87.0552,37.8288],[-87.107,37.7833],[-87.1673,37.8387],[-87.2414,37.8575],[-87.3434,37.9128],[-87.4166,37.9442],[-87.4732,37.9279],[-87.5114,37.9067],[-87.6011,37.9708],[-87.6279,37.9235],[-87.5934,37.8902],[-87.6379,37.8254],[-87.6642,37.8265],[-87.6679,37.8934],[-87.7909,37.8763],[-87.8608,37.9043],[-87.8824,37.9261],[-87.898,37.9279],[-87.9051,37.9243],[-87.9364,37.892],[-87.9053,37.8199],[-87.9317,37.7969],[-87.9464,37.7782],[-87.9627,37.7743],[-88.027,37.799],[-88.0531,37.7445],[-88.1478,37.6776],[-88.1567,37.6484],[-88.1335,37.5836],[-88.0736,37.5317],[-88.085,37.4776],[-88.2593,37.4575],[-88.3714,37.4074],[-88.4065,37.4263],[-88.444,37.4156],[-88.4742,37.3871],[-88.5133,37.279],[-88.425,37.1543],[-88.4659,37.0771],[-88.5528,37.0713],[-88.617254334,37.113873523],[-88.618958431,37.114642037],[-88.633978755,37.119495934],[-88.676688934,37.133297951],[-88.6965,37.1397],[-88.7954,37.1819],[-88.9595,37.23],[-89.0071,37.2232],[-89.0797,37.1717],[-89.1771,37.059],[-89.1815,37.041],[-89.1702,37.0105],[-89.1339,36.9839]]],[[[-89.5624,36.5228],[-89.540418139,36.500290575],[-89.4873,36.4999],[-89.4989,36.578],[-89.5352,36.5814],[-89.5482,36.5788],[-89.5624,36.5228]]]]},"properties":{"id":"526be3a0-759a-48c8-9d45-d04ef48eb856","code":"KY","name":"Kentucky","abbreviation":"S-KY","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-94.0456,33.0206],[-94.0419,31.9939],[-93.9015,31.8762],[-93.837,31.7503],[-93.7952,31.7023],[-93.8382,31.6021],[-93.7841,31.5287],[-93.7178,31.5026],[-93.7494,31.4686],[-93.6946,31.4405],[-93.665,31.3657],[-93.6895,31.3066],[-93.6155,31.2566],[-93.6012,31.1784],[-93.5339,31.1846],[-93.5642,31.0944],[-93.5106,31.0281],[-93.569,31.0127],[-93.5592,30.9146],[-93.5956,30.7642],[-93.6309,30.6797],[-93.6844,30.6347],[-93.739,30.5415],[-93.7057,30.5117],[-93.7039,30.4299],[-93.7573,30.3899],[-93.764,30.3436],[-93.7096,30.2893],[-93.7204,30.209],[-93.6964,30.1518],[-93.7326,30.0836],[-93.7036,30.0661],[-93.7901,29.9873],[-93.8345,29.888],[-93.9263,29.8165],[-93.8906,29.7456],[-93.8619,29.7241],[-93.8403,29.6914],[-93.7455,29.7341],[-93.4987,29.7686],[-93.3467,29.7617],[-93.276,29.7763],[-93.1717,29.7688],[-92.9242,29.6986],[-92.7361,29.6181],[-92.6236,29.585],[-92.3453,29.5342],[-92.2539,29.5397],[-92.1073,29.6127],[-92.1366,29.6672],[-92.2157,29.7485],[-92.1388,29.7843],[-92.1108,29.7422],[-92.0381,29.7811],[-91.8856,29.8358],[-91.8255,29.8239],[-91.8775,29.7475],[-91.8575,29.7053],[-91.7716,29.7464],[-91.6333,29.7431],[-91.6245,29.6285],[-91.5522,29.6335],[-91.5333,29.5278],[-91.4316,29.5416],[-91.4142,29.4967],[-91.2658,29.4786],[-91.2197,29.4367],[-91.1994,29.375],[-91.1336,29.3414],[-91.1361,29.2331],[-91.0625,29.1833],[-90.9713,29.1998],[-90.8783,29.1364],[-90.8079,29.187],[-90.7853,29.1325],[-90.7261,29.1461],[-90.6936,29.2211],[-90.6261,29.2592],[-90.585,29.3186],[-90.4792,29.2911],[-90.4301,29.348],[-90.3776,29.2914],[-90.3394,29.3264],[-90.2207,29.0865],[-90.0839,29.1672],[-90.1283,29.2953],[-90.1303,29.3739],[-90.0503,29.3172],[-90.03,29.3811],[-90.08,29.4481],[-90.1822,29.4664],[-90.2292,29.5075],[-90.2094,29.5631],[-90.1672,29.5792],[-89.9797,29.4578],[-89.9233,29.4975],[-89.8364,29.475],[-89.8369,29.4186],[-89.7761,29.4017],[-89.6916,29.467],[-89.6572,29.4056],[-89.5061,29.3306],[-89.4764,29.295],[-89.4878,29.2318],[-89.4475,29.1819],[-89.4225,29.2106],[-89.2997,29.2197],[-89.2536,29.1014],[-89.2117,29.0406],[-89.1639,29.0286],[-89.1125,29.0825],[-89.0975,29.1881],[-89.1544,29.2292],[-89.1389,29.2858],[-89.1744,29.3214],[-89.2442,29.3117],[-89.2664,29.2517],[-89.3217,29.3007],[-89.2542,29.3311],[-89.2922,29.3669],[-89.3475,29.3309],[-89.4703,29.4014],[-89.5617,29.3933],[-89.5364,29.4458],[-89.5922,29.4867],[-89.6308,29.4833],[-89.7622,29.6292],[-89.6928,29.6133],[-89.6219,29.6597],[-89.5569,29.6608],[-89.6494,29.7131],[-89.6408,29.7675],[-89.495,29.7278],[-89.3936,29.7906],[-89.445,29.8864],[-89.4731,29.9722],[-89.4414,30.0397],[-89.4878,30.0414],[-89.5564,30],[-89.5908,29.8853],[-89.6544,29.8611],[-89.7833,29.9342],[-89.8392,29.9431],[-89.86,30.0011],[-89.8192,30.0447],[-89.7269,30.0636],[-89.6228,30.1569],[-89.5247,30.1847],[-89.5284,30.1918],[-89.5431,30.1944],[-89.5948,30.2093],[-89.6158,30.2281],[-89.6348,30.3465],[-89.6842,30.41],[-89.6897,30.459],[-89.772,30.5189],[-89.8422,30.6695],[-89.8303,30.7824],[-89.7848,30.8181],[-89.7344,31.0034],[-90.8124,30.9992],[-91.6397,30.9998],[-91.562,31.0561],[-91.6256,31.122],[-91.6023,31.2036],[-91.6463,31.2661],[-91.5536,31.2653],[-91.5138,31.3181],[-91.5709,31.3776],[-91.5479,31.4319],[-91.5167,31.3712],[-91.4712,31.4045],[-91.5125,31.447],[-91.513,31.5314],[-91.4445,31.5464],[-91.4211,31.5971],[-91.4861,31.586],[-91.5081,31.6413],[-91.4388,31.6131],[-91.3987,31.6323],[-91.397,31.7167],[-91.3393,31.8415],[-91.2668,31.8619],[-91.1819,31.9208],[-91.164,31.9812],[-91.0966,31.9919],[-91.091,32.0379],[-91.1248,32.0769],[-91.0431,32.097],[-91.0021,32.1617],[-91.0583,32.1807],[-91.053,32.1237],[-91.1696,32.1422],[-91.1675,32.1918],[-91.0376,32.2391],[-90.9823,32.2125],[-90.9818,32.2868],[-90.9051,32.317],[-91.0015,32.3566],[-90.9663,32.4261],[-90.9844,32.4492],[-91.0018,32.4499],[-91.0751,32.4483],[-91.0981,32.4636],[-91.1091,32.5324],[-91.0786,32.5403],[-91.0197,32.4848],[-90.9952,32.4846],[-90.9876,32.4932],[-90.9956,32.5096],[-91.0749,32.5627],[-91.0052,32.6304],[-91.0162,32.642],[-91.0298,32.6433],[-91.0555,32.6075],[-91.1333,32.5935],[-91.1543,32.6396],[-91.0542,32.7136],[-91.155,32.7459],[-91.1455,32.8427],[-91.064,32.9052],[-91.0916,32.9778],[-91.1366,32.956],[-91.1323,32.9169],[-91.1388,32.9095],[-91.1554,32.9014],[-91.1906,32.9049],[-91.1944,32.9736],[-91.1631,33.0045],[-91.9071,33.008],[-91.942405155,33.008306905],[-92.8619,33.0163],[-94.0456,33.0206]]],[[[-91.8983,29.6336],[-91.9825,29.6147],[-92.0263,29.5674],[-91.847,29.4799],[-91.7672,29.4894],[-91.7583,29.5578],[-91.7844,29.5944],[-91.8983,29.6336]]],[[[-91.2389,29.3522],[-91.3342,29.2995],[-91.2792,29.2494],[-91.1367,29.2172],[-91.1364,29.25],[-91.2389,29.3522]]],[[[-89.7019,29.3817],[-89.8139,29.3136],[-89.6836,29.2938],[-89.6394,29.3483],[-89.7064,29.3411],[-89.7019,29.3817]]],[[[-89.3781,29.9089],[-89.4167,29.8689],[-89.3578,29.8511],[-89.3781,29.9089]]]]},"properties":{"id":"a6ccb18b-8b5f-40ee-96a5-c87c51317700","code":"LA","name":"Louisiana","abbreviation":"S-LA","parent_id":"d6157b38-3f86-49ef-8acd-93287d33c0d0"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-70.823818314,43.238425014],[-70.822675342,43.237669178],[-70.816033333,43.229366667],[-70.812230579,43.223103306],[-70.812136585,43.220941463],[-70.8121,43.2201],[-70.8194,43.2022],[-70.8166,43.1958],[-70.8256,43.1886],[-70.8322,43.1458],[-70.8175,43.1236],[-70.7367,43.0744],[-70.6644,43.0764],[-70.5753,43.2219],[-70.5889,43.2631],[-70.5153,43.3454],[-70.451,43.3468],[-70.3639,43.4386],[-70.3856,43.4953],[-70.3419,43.54],[-70.1972,43.565],[-70.2514,43.6781],[-70.1647,43.7725],[-69.9844,43.8675],[-69.9537,43.849],[-69.9778,43.7867],[-69.8886,43.8834],[-69.8454,43.8048],[-69.8761,43.7936],[-69.8517,43.7031],[-69.8031,43.7442],[-69.8092,43.9256],[-69.737,43.9021],[-69.6765,43.9961],[-69.6292,44.017],[-69.6643,43.9651],[-69.6606,43.8836],[-69.6307,43.8373],[-69.5589,43.8922],[-69.5022,43.8389],[-69.4196,43.9798],[-69.3464,44.056],[-69.3708,43.9772],[-69.3028,43.978],[-69.2569,43.9228],[-69.2135,43.9361],[-69.1649,44.0027],[-69.0732,44.0462],[-69.1069,44.0907],[-69.0605,44.2071],[-68.9539,44.3239],[-68.9475,44.3536],[-68.9939,44.4214],[-68.9214,44.4572],[-68.8603,44.4461],[-68.7783,44.4922],[-68.8161,44.4281],[-68.8278,44.3119],[-68.7594,44.3317],[-68.6056,44.2758],[-68.5228,44.2283],[-68.5636,44.3081],[-68.5678,44.3856],[-68.4975,44.4167],[-68.4675,44.4936],[-68.4375,44.4825],[-68.4281,44.3964],[-68.3225,44.4628],[-68.2833,44.4517],[-68.2689,44.5043],[-68.23,44.4631],[-68.2117,44.5197],[-68.1711,44.4697],[-68.12,44.4575],[-68.1144,44.4075],[-68.0456,44.3384],[-68.0126,44.4036],[-67.96,44.3978],[-67.9928,44.46],[-67.9022,44.3956],[-67.8542,44.4789],[-67.8525,44.5589],[-67.7992,44.5697],[-67.7807,44.5222],[-67.7533,44.6017],[-67.7428,44.4967],[-67.6434,44.5659],[-67.6355,44.5285],[-67.5715,44.5295],[-67.5514,44.6553],[-67.459,44.5959],[-67.396,44.6021],[-67.3619,44.6351],[-67.39,44.6957],[-67.3061,44.7087],[-67.3128,44.6597],[-67.189,44.6442],[-67.0735,44.7409],[-66.979,44.8056],[-67.0183,44.8861],[-67.0772,44.8767],[-67.1516,44.8217],[-67.1496,44.8623],[-67.2044,44.9067],[-67.0884,44.918],[-67.0319,44.9389],[-67.1633,45.1583],[-67.2808,45.1917],[-67.3022,45.1451],[-67.3816,45.1521],[-67.4663,45.2477],[-67.4776,45.2873],[-67.4215,45.3763],[-67.474,45.4237],[-67.4876,45.4897],[-67.4516,45.5111],[-67.4257,45.5785],[-67.4566,45.6053],[-67.5302,45.5983],[-67.6736,45.6278],[-67.7091,45.6793],[-67.8029,45.696],[-67.7825,45.7309],[-67.8034,45.7982],[-67.7651,45.8207],[-67.8027,45.8737],[-67.7549,45.9149],[-67.781,45.9457],[-67.7836,47.0632],[-67.8893,47.1106],[-67.958,47.2003],[-68.2438,47.3526],[-68.3698,47.3517],[-68.3805,47.2874],[-68.4752,47.297],[-68.5804,47.2869],[-68.6124,47.246],[-68.6893,47.2428],[-68.8158,47.2119],[-68.8975,47.1766],[-69.0405,47.2439],[-69.0547,47.3146],[-69.0443,47.4028],[-69.1786,47.4569],[-69.2218,47.4576],[-69.392,47.2984],[-69.9971,46.6958],[-70.0572,46.4147],[-70.1953,46.3434],[-70.292,46.1909],[-70.242,46.1502],[-70.283,46.0999],[-70.3142,46.0208],[-70.3144,45.9665],[-70.2602,45.9644],[-70.2663,45.8849],[-70.3455,45.8508],[-70.4162,45.7956],[-70.3902,45.7328],[-70.5613,45.6627],[-70.6459,45.6041],[-70.7184,45.5127],[-70.626,45.4018],[-70.6572,45.3772],[-70.7545,45.4277],[-70.8233,45.403],[-70.8066,45.3211],[-70.8445,45.2447],[-70.8929,45.2439],[-70.9234,45.3181],[-70.9566,45.3426],[-71.0246,45.3174],[-71.0598,45.3151],[-71.0686,45.3104],[-71.081792777,45.306402189],[-71.0818,45.3064],[-71.0741,45.2211],[-71.031,44.6575],[-71.0079,44.2451],[-70.9743,43.5724],[-70.9559,43.5223],[-70.9694,43.429],[-70.986,43.4087],[-70.9744,43.3521],[-70.9335,43.3358],[-70.8608,43.2572],[-70.8397,43.2434],[-70.823818314,43.238425014]]],[[[-68.3097,44.4431],[-68.3694,44.4208],[-68.4317,44.3097],[-68.4072,44.2581],[-68.3397,44.2222],[-68.2905,44.2495],[-68.2944,44.2867],[-68.2306,44.2875],[-68.1731,44.3281],[-68.1856,44.3706],[-68.3097,44.4431]]],[[[-68.6578,44.2694],[-68.7086,44.2272],[-68.7119,44.1681],[-68.6464,44.1558],[-68.6589,44.2111],[-68.6078,44.2408],[-68.6578,44.2694]]],[[[-69.7508,43.8706],[-69.7831,43.7961],[-69.7575,43.7511],[-69.7074,43.828],[-69.7508,43.8706]]],[[[-68.8214,44.1833],[-68.9175,44.1481],[-68.8597,44.1261],[-68.8214,44.1833]]],[[[-69.6693,43.9591],[-69.7314,43.8903],[-69.6994,43.8722],[-69.6693,43.9591]]],[[[-68.8672,44.1204],[-68.8853,44.0856],[-68.8178,44.0317],[-68.8672,44.1204]]],[[[-68.615,44.0875],[-68.6611,44.0172],[-68.6042,44.0386],[-68.615,44.0875]]],[[[-69.7958,43.9044],[-69.7889,43.8122],[-69.7619,43.8862],[-69.7958,43.9044]]]]},"properties":{"id":"2b8e058a-b640-4f3e-aaf4-ec46453643ff","code":"ME","name":"Maine","abbreviation":"S-ME","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.702103612,38.562165463],[-75.702,38.5622],[-75.7069,38.5976],[-75.7224,38.8295],[-75.7881,39.6501],[-75.787500343,39.723058306],[-77.1212,39.7194],[-77.938,39.724],[-79.136094902,39.722699288],[-79.4774,39.7216],[-79.4872,39.2067],[-79.4499,39.2125],[-79.4212,39.235],[-79.4045,39.2467],[-79.3754,39.2727],[-79.3597,39.2765],[-79.3427,39.2964],[-79.2929,39.3005],[-79.2544,39.3548],[-79.2135,39.364],[-79.1564,39.4177],[-79.1091,39.432],[-79.1029,39.4743],[-79.013,39.4646],[-78.9645,39.4397],[-78.9358,39.4842],[-78.8376,39.5673],[-78.7982,39.6328],[-78.7646,39.5871],[-78.744,39.5818],[-78.7333,39.579],[-78.6803,39.5442],[-78.5767,39.5283],[-78.5213,39.5266],[-78.4992,39.5191],[-78.4664,39.5202],[-78.4206,39.6253],[-78.3551,39.6416],[-78.2727,39.6186],[-78.2013,39.6799],[-78.1794,39.6976],[-78.1021,39.6807],[-78.0036,39.6014],[-77.939,39.588],[-77.8822,39.6183],[-77.8394,39.6069],[-77.8298,39.5847],[-77.8443,39.5664],[-77.8648,39.5384],[-77.8659,39.5198],[-77.8628,39.5168],[-77.8357,39.5327],[-77.8259,39.5226],[-77.8294,39.517],[-77.8454,39.5047],[-77.8445,39.5002],[-77.819,39.4956],[-77.7923,39.4331],[-77.7516,39.424],[-77.7395,39.404],[-77.7371,39.3873],[-77.7503,39.3838],[-77.7483,39.3516],[-77.7579,39.3442],[-77.7483,39.3334],[-77.7197,39.3253],[-77.6746,39.3266],[-77.624,39.3063],[-77.5699,39.3082],[-77.4909,39.2511],[-77.4564,39.2284],[-77.5044,39.1799],[-77.5246,39.1428],[-77.4606,39.0794],[-77.3823,39.0644],[-77.297,39.0517],[-77.2706,39.0348],[-77.2433,39.0233],[-77.2482,38.9918],[-77.2114,38.9748],[-77.1323,38.9455],[-77.1205,38.9337],[-77.0415,38.9951],[-76.9097,38.8925],[-77.0164,38.8093],[-77.0442,38.6976],[-77.1009,38.6854],[-77.1095,38.6268],[-77.182,38.6018],[-77.235,38.5535],[-77.2736,38.4829],[-77.2495,38.3823],[-77.2067,38.3597],[-77.0915,38.4076],[-77.0419,38.4443],[-77.0015,38.4216],[-76.975,38.3539],[-76.9263,38.2945],[-76.85,38.2658],[-76.8711,38.3333],[-76.859,38.3828],[-76.8023,38.2806],[-76.7526,38.2222],[-76.7144,38.2669],[-76.6712,38.2344],[-76.5913,38.2149],[-76.5358,38.1465],[-76.4413,38.1508],[-76.3206,38.0486],[-76.32,38.1383],[-76.3864,38.2202],[-76.3733,38.2989],[-76.4619,38.296],[-76.5031,38.3603],[-76.6192,38.4178],[-76.6419,38.4761],[-76.5714,38.4225],[-76.5233,38.4124],[-76.4214,38.3192],[-76.3811,38.3856],[-76.4917,38.4817],[-76.5175,38.5347],[-76.5114,38.615],[-76.5286,38.7281],[-76.5547,38.7697],[-76.5106,38.8008],[-76.4594,38.9406],[-76.4764,38.9817],[-76.3953,39.0108],[-76.4368,39.0526],[-76.5136,39.0681],[-76.4406,39.0956],[-76.4307,39.132],[-76.4969,39.1508],[-76.5764,39.2489],[-76.4621,39.2057],[-76.4212,39.2318],[-76.3892,39.3128],[-76.2822,39.2998],[-76.2279,39.35],[-76.1024,39.4348],[-76.1133,39.4871],[-76.0839,39.5467],[-75.97,39.5575],[-75.9851,39.4702],[-75.9156,39.5033],[-76.0374,39.386],[-76.1109,39.3722],[-76.1865,39.3186],[-76.2781,39.1479],[-76.2494,39.1319],[-76.2269,39.0531],[-76.1693,39.1271],[-76.1425,39.0864],[-76.1763,39.0574],[-76.1625,39.0069],[-76.2022,38.9722],[-76.1839,38.7581],[-76.2656,38.8511],[-76.3428,38.75],[-76.2964,38.7728],[-76.2714,38.709],[-76.2381,38.7108],[-76.1083,38.6214],[-76.0258,38.5786],[-76.1133,38.5814],[-76.1763,38.6281],[-76.2722,38.6175],[-76.2608,38.5481],[-76.1978,38.5303],[-76.3277,38.4993],[-76.3319,38.4742],[-76.2333,38.345],[-76.1836,38.3601],[-76.1647,38.3156],[-76.0744,38.2686],[-75.9986,38.3741],[-75.9638,38.3246],[-76.0083,38.305],[-75.9489,38.2378],[-75.9404,38.3061],[-75.8634,38.3592],[-75.8369,38.4558],[-75.8181,38.4683],[-75.8261,38.4794],[-75.8156,38.4897],[-75.7581,38.5131],[-75.7567,38.5297],[-75.7258,38.5408],[-75.7136,38.5508],[-75.7078,38.5603],[-75.7053,38.5611],[-75.702103612,38.562165463]]],[[[-75.7019,38.5597],[-75.7619,38.5056],[-75.8225,38.4806],[-75.8094,38.4689],[-75.8308,38.4567],[-75.82,38.4275],[-75.8322,38.39],[-75.9188,38.2645],[-75.8998,38.2323],[-75.8186,38.2269],[-75.9368,38.1898],[-75.9347,38.1483],[-75.7948,38.1358],[-75.8664,38.0956],[-75.8547,38.0694],[-75.7748,38.0733],[-75.8365,38.0325],[-75.8922,37.9558],[-75.8647,37.9133],[-75.7786,37.9736],[-75.6458,37.9708],[-75.6472,37.9735],[-75.64,37.9783],[-75.6237,37.9955],[-75.3775,38.0175],[-75.3269,38.1053],[-75.3008,38.0989],[-75.2608,38.2045],[-75.2194,38.2464],[-75.19,38.2275],[-75.0956,38.3294],[-75.1294,38.3917],[-75.1285,38.4471],[-75.6942,38.4593],[-75.7019,38.5597]]],[[[-76.3008,39.0306],[-76.3553,38.9561],[-76.3767,38.8492],[-76.3306,38.8636],[-76.3148,38.9342],[-76.2517,38.9431],[-76.3008,39.0306]]],[[[-76.0314,38.0003],[-76.0453,37.9489],[-75.9894,37.9617],[-76.0314,38.0003]]]]},"properties":{"id":"52260f7c-2dc8-4826-ad20-f026e79e61a6","code":"MD","name":"Maryland","abbreviation":"S-MD","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.4901,42.0497],[-73.490103271,42.049606044],[-73.3658,42.0497],[-72.7574,42.0362],[-72.003,42.0291],[-71.7991,42.0238],[-71.7979,42.0089],[-71.3797,42.0191],[-71.3824,41.8915],[-71.3386,41.8983],[-71.3406,41.8093],[-71.3314,41.7897],[-71.2277,41.7151],[-71.1989,41.6783],[-71.1332,41.6595],[-71.1206,41.4956],[-71.0702,41.5217],[-71.0361,41.483],[-70.9506,41.5168],[-70.9152,41.6219],[-70.8004,41.6302],[-70.7566,41.6532],[-70.7652,41.7109],[-70.7216,41.7359],[-70.6378,41.7367],[-70.5797,41.7533],[-70.5639,41.7711],[-70.5439,41.7772],[-70.5136,41.7736],[-70.5147,41.7886],[-70.5367,41.9208],[-70.5844,41.9515],[-70.6468,41.9503],[-70.7106,42.0014],[-70.6372,42.0836],[-70.6778,42.1233],[-70.7206,42.2072],[-70.7677,42.2511],[-70.8547,42.2678],[-70.9669,42.2453],[-71.0453,42.2944],[-71.0436,42.3231],[-70.9764,42.3708],[-70.9814,42.4259],[-70.8947,42.46],[-70.8407,42.5186],[-70.8692,42.5478],[-70.6983,42.5767],[-70.5951,42.6344],[-70.63,42.693],[-70.7272,42.6481],[-70.7942,42.75],[-70.8153,42.8628],[-70.8167,42.8716],[-70.8481,42.8609],[-70.886,42.8806],[-70.9718,42.8678],[-71.0482,42.8467],[-71.066,42.8063],[-71.1333,42.8215],[-71.1891,42.7907],[-71.1843,42.7375],[-71.2599,42.7349],[-71.2968,42.6978],[-71.6293,42.7042],[-72.4566,42.7276],[-73.2675,42.7452],[-73.4822,42.1648],[-73.5084,42.0858],[-73.4981,42.0496],[-73.4901,42.0497]]],[[[-70.1936,42.0808],[-70.1127,42.0461],[-70.0789,41.9928],[-70.0719,41.8981],[-70.0239,41.9303],[-70.0067,41.8056],[-70.0528,41.7761],[-70.2892,41.7347],[-70.4139,41.7444],[-70.4961,41.7753],[-70.5064,41.7714],[-70.5478,41.7756],[-70.5631,41.7689],[-70.5761,41.7536],[-70.5908,41.7458],[-70.6183,41.74],[-70.615,41.6575],[-70.6502,41.6456],[-70.6346,41.5382],[-70.4839,41.5546],[-70.4322,41.6206],[-70.3992,41.6064],[-70.3392,41.6372],[-70.1386,41.6504],[-70.0122,41.6731],[-69.9633,41.6531],[-69.9289,41.7547],[-69.9783,41.9364],[-70.0664,42.0453],[-70.1936,42.0808]]],[[[-70.5974,41.4797],[-70.6591,41.4605],[-70.7744,41.3497],[-70.8377,41.3455],[-70.7699,41.3024],[-70.7344,41.3372],[-70.6413,41.3494],[-70.4508,41.3487],[-70.568,41.4186],[-70.5974,41.4797]]],[[[-70.0458,41.3897],[-70.0039,41.3231],[-70.0797,41.2819],[-70.1972,41.2967],[-70.2122,41.2725],[-70.1017,41.2406],[-69.9719,41.2469],[-69.9722,41.2992],[-70.0458,41.3897]]],[[[-70.7117,41.5142],[-70.802,41.4667],[-70.7908,41.4458],[-70.7117,41.5142]]]]},"properties":{"id":"12dc3369-9ca9-48a0-b543-6b9fc24b43a5","code":"MA","name":"Massachusetts","abbreviation":"S-MA","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.2071,41.7607],[-86.4526,41.7599],[-85.932,41.7623],[-84.8076,41.7605],[-84.8067,41.6958],[-83.9997,41.7157],[-83.484,41.7328],[-83.4304,41.7633],[-83.4416,41.8027],[-83.2927,41.9453],[-83.2068,41.9995],[-83.1658,42.1739],[-83.13,42.247],[-83.1123,42.2675],[-83.0662,42.3208],[-83.018,42.3295],[-82.9358,42.3446],[-82.8683,42.3276],[-82.6412,42.5548],[-82.6002,42.5496],[-82.5213,42.6104],[-82.4669,42.7739],[-82.4782,42.8031],[-82.4532,42.9257],[-82.4243,42.9983],[-82.1229,43.5884],[-82.2077,43.9512],[-82.4175,44.9067],[-82.5254,45.3409],[-83.1983,45.644],[-83.5921,45.8187],[-83.4356,45.9965],[-83.5711,46.1026],[-83.6544,46.1194],[-83.7567,46.1015],[-83.8258,46.1165],[-83.9036,46.0585],[-83.9548,46.0562],[-84.005,46.1506],[-84.0726,46.1875],[-84.1046,46.2389],[-84.1432,46.4171],[-84.1099,46.5021],[-84.1293,46.5313],[-84.2223,46.5343],[-84.2505,46.5027],[-84.3711,46.5083],[-84.4429,46.4897],[-84.4764,46.4532],[-84.5561,46.4597],[-84.7638,46.6349],[-84.8434,46.8873],[-86.0434,47.3856],[-86.7729,47.6817],[-87.4059,47.9341],[-87.8649,48.1137],[-88.3709,48.3042],[-88.689,48.2415],[-89.3391,47.9699],[-89.4877,48.0109],[-89.958,47.2912],[-90.4187,46.567],[-90.4149,46.5602],[-90.3895,46.5375],[-90.3313,46.5555],[-90.308,46.5187],[-90.2168,46.5055],[-90.1592,46.4302],[-90.1178,46.3366],[-89.3759,46.1949],[-89.0854,46.1365],[-88.8103,46.0238],[-88.6762,46.0111],[-88.6195,45.9884],[-88.6016,46.0189],[-88.5099,46.0174],[-88.4173,45.9795],[-88.3761,45.9911],[-88.3262,45.9592],[-88.1985,45.9539],[-88.0954,45.9141],[-88.0728,45.8721],[-88.1349,45.8225],[-88.0641,45.7809],[-87.9971,45.7967],[-87.9641,45.7601],[-87.8775,45.7536],[-87.7842,45.6753],[-87.826,45.6626],[-87.7827,45.6095],[-87.81,45.5444],[-87.7856,45.4929],[-87.8598,45.4398],[-87.8775,45.38],[-87.8354,45.3517],[-87.7601,45.3493],[-87.6955,45.3887],[-87.6512,45.3461],[-87.7118,45.2647],[-87.7408,45.1755],[-87.6604,45.1078],[-87.4373,45.0778],[-87.4035,45.2045],[-87.3075,45.243],[-87.1797,45.3424],[-87.0963,45.442],[-86.7605,45.444],[-86.2496,45.2338],[-86.4284,45.1272],[-86.5085,45.0665],[-86.6438,44.934],[-86.7029,44.8527],[-86.7916,44.6901],[-86.8627,44.5335],[-86.9652,44.2582],[-87.0814,43.8869],[-87.1248,43.7105],[-87.1482,43.571],[-87.1552,43.4436],[-87.1233,43.1971],[-87.0181,42.4947],[-87.069,42.3391],[-87.2071,41.7607]]],[[[-83.1692,42.0899],[-83.1616,42.0929],[-83.1457,42.1016],[-83.141,42.1228],[-83.1735,42.1277],[-83.1756,42.0982],[-83.1692,42.0899]]],[[[-83.1683,42.0812],[-83.1763,42.0823],[-83.1766,42.0769],[-83.1711,42.0754],[-83.1683,42.0812]]]]},"properties":{"id":"cd243023-ec05-449d-b883-f2320c71e771","code":"MI","name":"Michigan","abbreviation":"S-MI","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-91.22,43.5023],[-91.2176,43.5132],[-91.2318,43.5844],[-91.2547,43.6069],[-91.2672,43.6233],[-91.2554,43.7344],[-91.2639,43.7949],[-91.2791,43.8407],[-91.429,43.9924],[-91.4641,44.0089],[-91.5708,44.0278],[-91.7829,44.1478],[-91.8119,44.1605],[-91.8402,44.1847],[-91.8643,44.197],[-91.8736,44.2057],[-91.8916,44.2384],[-91.9152,44.3083],[-91.9151,44.3147],[-91.9451,44.3428],[-92.0862,44.4113],[-92.2308,44.4463],[-92.2847,44.4821],[-92.3154,44.5407],[-92.3664,44.5582],[-92.5448,44.5686],[-92.5721,44.6031],[-92.737,44.7173],[-92.7901,44.7381],[-92.8073,44.7524],[-92.766,44.8308],[-92.7527,44.9527],[-92.7982,45.0746],[-92.7467,45.1076],[-92.7583,45.2904],[-92.7036,45.3262],[-92.644,45.4376],[-92.7722,45.5679],[-92.8808,45.5744],[-92.8719,45.6918],[-92.8685,45.7064],[-92.7849,45.762],[-92.732,45.8681],[-92.6714,45.9152],[-92.4738,45.9732],[-92.422,46.0211],[-92.3581,46.0097],[-92.2899,46.0706],[-92.2883,46.6679],[-92.2124,46.6507],[-92.1403,46.738],[-92.0868,46.7485],[-92.021,46.7059],[-91.4743,46.9336],[-90.6631,47.3025],[-89.958,47.2912],[-89.4877,48.0109],[-89.7699,48.0229],[-89.8676,47.998],[-89.9743,48.0441],[-90.0335,48.0963],[-90.1358,48.1127],[-90.3466,48.0983],[-90.4664,48.1095],[-90.6375,48.1059],[-90.7422,48.1137],[-90.8139,48.1907],[-90.8399,48.2459],[-90.8861,48.2466],[-91.1333,48.1569],[-91.2544,48.0815],[-91.4013,48.0573],[-91.4773,48.0801],[-91.5562,48.0804],[-91.6911,48.1273],[-91.721,48.2007],[-91.8623,48.2112],[-91.9833,48.261],[-91.9998,48.321],[-92.0548,48.3591],[-92.2625,48.3548],[-92.3052,48.3194],[-92.2797,48.2427],[-92.3643,48.2338],[-92.4748,48.3733],[-92.4665,48.435],[-92.5068,48.4504],[-92.6527,48.4408],[-92.6962,48.492],[-92.6315,48.4987],[-92.6354,48.5426],[-92.7268,48.5391],[-92.9472,48.6214],[-93.1798,48.6228],[-93.2564,48.6425],[-93.4636,48.592],[-93.4679,48.5466],[-93.6129,48.5247],[-93.7518,48.5198],[-93.7955,48.5306],[-93.817,48.6146],[-93.8505,48.6316],[-94.0805,48.6538],[-94.2233,48.6602],[-94.257,48.7035],[-94.4165,48.7103],[-94.452,48.6928],[-94.5351,48.7023],[-94.6206,48.7374],[-94.6823,48.8088],[-94.6785,48.8808],[-94.748,49.0975],[-94.7719,49.1224],[-94.8247,49.3069],[-94.9561,49.3694],[-95.0534,49.3529],[-95.1497,49.3833],[-95.1514,49],[-97.2286,49],[-97.2348,48.9952],[-97.2128,48.9061],[-97.1788,48.8741],[-97.1533,48.7544],[-97.0935,48.684],[-97.1712,48.5572],[-97.1571,48.4747],[-97.1268,48.4545],[-97.1606,48.3935],[-97.1206,48.2796],[-97.149,48.1833],[-97.1227,48.1056],[-97.0749,48.0504],[-97.0542,47.9454],[-96.8975,47.6783],[-96.8512,47.5881],[-96.8527,47.5384],[-96.8642,47.5402],[-96.8717,47.5257],[-96.868,47.5196],[-96.8448,47.5147],[-96.8533,47.5112],[-96.855,47.5047],[-96.8605,47.4371],[-96.8346,47.3394],[-96.8435,47.241],[-96.8175,47.1102],[-96.8206,46.9694],[-96.7667,46.8804],[-96.8008,46.8155],[-96.7855,46.7329],[-96.7872,46.7251],[-96.7821,46.7225],[-96.7856,46.7146],[-96.8026,46.6564],[-96.7563,46.5763],[-96.7376,46.4801],[-96.6682,46.3794],[-96.6022,46.3298],[-96.5977,46.2226],[-96.5785,46.1478],[-96.5688,46.1333],[-96.563,46.1155],[-96.5552,46.0731],[-96.5615,46.0537],[-96.5644,45.9607],[-96.5577,45.9425],[-96.5613,45.9356],[-96.5638,45.9051],[-96.5731,45.8515],[-96.6313,45.783],[-96.6674,45.735],[-96.8303,45.6567],[-96.8546,45.6075],[-96.7642,45.5189],[-96.7317,45.4593],[-96.6742,45.4115],[-96.6087,45.4094],[-96.5059,45.3698],[-96.4519,45.3022],[-96.4536,45.2695],[-96.4541,43.5026],[-96.277333059,43.502733726],[-95.113241361,43.503614375],[-93.6782,43.5047],[-93.2844,43.5032],[-91.22,43.5023]]]},"properties":{"id":"01106167-8733-4279-b03d-27673682391c","code":"MN","name":"Minnesota","abbreviation":"S-MN","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.199696512,34.997799817],[-88.78657705,34.996688],[-89.069158116,34.996152664],[-90.3098,34.9966],[-90.3093,34.9915],[-90.2486,34.9494],[-90.2445,34.909],[-90.3894,34.8446],[-90.4055,34.8304],[-90.4338,34.8748],[-90.4647,34.8929],[-90.4775,34.8883],[-90.4852,34.8811],[-90.4867,34.8713],[-90.4699,34.8443],[-90.461,34.8289],[-90.4726,34.7952],[-90.457,34.736],[-90.4879,34.7278],[-90.5219,34.7359],[-90.5049,34.7819],[-90.566,34.7162],[-90.4646,34.694],[-90.516,34.635],[-90.5878,34.6785],[-90.5801,34.6081],[-90.5401,34.5507],[-90.5882,34.5051],[-90.5758,34.4156],[-90.6792,34.3682],[-90.7566,34.3731],[-90.7686,34.2772],[-90.831,34.2726],[-90.8479,34.2148],[-90.9364,34.2332],[-90.9132,34.1965],[-90.8359,34.1908],[-90.8228,34.1478],[-90.9103,34.1653],[-90.9407,34.101],[-90.8701,34.091],[-90.8878,34.0268],[-90.9867,34.0191],[-91.0865,33.9585],[-91.0073,33.9283],[-91.0705,33.867],[-91.0551,33.7777],[-91.143,33.773],[-91.1458,33.7301],[-91.0654,33.7162],[-91.0757,33.6587],[-91.0928,33.6572],[-91.1067,33.662],[-91.144,33.6867],[-91.2085,33.7007],[-91.2188,33.6605],[-91.1363,33.6228],[-91.1359,33.5923],[-91.2244,33.5678],[-91.1869,33.5166],[-91.2349,33.4377],[-91.183,33.4385],[-91.1766,33.4964],[-91.1261,33.4744],[-91.1317,33.4292],[-91.1984,33.4171],[-91.1692,33.3803],[-91.1051,33.4],[-91.0994,33.4154],[-91.0919,33.4558],[-91.078,33.4571],[-91.0619,33.4505],[-91.0572,33.4273],[-91.0745,33.409],[-91.1444,33.335],[-91.0988,33.2382],[-91.0767,33.2847],[-91.0509,33.284],[-91.0925,33.2171],[-91.0923,33.137],[-91.1924,33.139],[-91.1991,33.1056],[-91.1334,33.0699],[-91.1232,33.0449],[-91.1631,33.0045],[-91.1944,32.9736],[-91.1906,32.9049],[-91.1554,32.9014],[-91.1388,32.9095],[-91.1323,32.9169],[-91.1366,32.956],[-91.0916,32.9778],[-91.064,32.9052],[-91.1455,32.8427],[-91.155,32.7459],[-91.0542,32.7136],[-91.1543,32.6396],[-91.1333,32.5935],[-91.0555,32.6075],[-91.0298,32.6433],[-91.0162,32.642],[-91.0052,32.6304],[-91.0749,32.5627],[-90.9956,32.5096],[-90.9876,32.4932],[-90.9952,32.4846],[-91.0197,32.4848],[-91.0786,32.5403],[-91.1091,32.5324],[-91.0981,32.4636],[-91.0751,32.4483],[-91.0018,32.4499],[-90.9844,32.4492],[-90.9663,32.4261],[-91.0015,32.3566],[-90.9051,32.317],[-90.9818,32.2868],[-90.9823,32.2125],[-91.0376,32.2391],[-91.1675,32.1918],[-91.1696,32.1422],[-91.053,32.1237],[-91.0583,32.1807],[-91.0021,32.1617],[-91.0431,32.097],[-91.1248,32.0769],[-91.091,32.0379],[-91.0966,31.9919],[-91.164,31.9812],[-91.1819,31.9208],[-91.2668,31.8619],[-91.3393,31.8415],[-91.397,31.7167],[-91.3987,31.6323],[-91.4388,31.6131],[-91.5081,31.6413],[-91.4861,31.586],[-91.4211,31.5971],[-91.4445,31.5464],[-91.513,31.5314],[-91.5125,31.447],[-91.4712,31.4045],[-91.5167,31.3712],[-91.5479,31.4319],[-91.5709,31.3776],[-91.5138,31.3181],[-91.5536,31.2653],[-91.6463,31.2661],[-91.6023,31.2036],[-91.6256,31.122],[-91.562,31.0561],[-91.6397,30.9998],[-90.8124,30.9992],[-89.7344,31.0034],[-89.7848,30.8181],[-89.8303,30.7824],[-89.8422,30.6695],[-89.772,30.5189],[-89.6897,30.459],[-89.6842,30.41],[-89.6348,30.3465],[-89.6158,30.2281],[-89.5948,30.2093],[-89.5431,30.1944],[-89.5284,30.1918],[-89.5247,30.1847],[-89.4481,30.2042],[-89.4206,30.2533],[-89.3392,30.2961],[-89.3619,30.3447],[-89.3131,30.3755],[-89.2688,30.3418],[-89.2919,30.3039],[-89.0044,30.3875],[-88.8419,30.4092],[-88.7479,30.3485],[-88.693,30.3473],[-88.57,30.4003],[-88.5653,30.3441],[-88.4794,30.3186],[-88.3971,30.3491],[-88.3994,30.395],[-88.4101,30.7033],[-88.4507,31.444],[-88.472,31.9],[-88.4262,32.262],[-88.2474,33.7499],[-88.2067,34.0458],[-88.1535,34.4881],[-88.098,34.8964],[-88.1525,34.9269],[-88.1883,34.9793],[-88.199696512,34.997799817]]]},"properties":{"id":"a81b2462-e6ca-4296-85fb-357b901ceec7","code":"MS","name":"Mississippi","abbreviation":"S-MS","parent_id":"d6157b38-3f86-49ef-8acd-93287d33c0d0"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.7169,36.0015],[-89.6564,36.1024],[-89.5896,36.1475],[-89.6985,36.2309],[-89.6946,36.2501],[-89.6733,36.2521],[-89.6083,36.2409],[-89.5456,36.2791],[-89.6167,36.3186],[-89.6042,36.3446],[-89.5264,36.3459],[-89.5192,36.3883],[-89.5515,36.4414],[-89.5249,36.4844],[-89.540418139,36.500290575],[-89.5624,36.5228],[-89.5482,36.5788],[-89.5352,36.5814],[-89.4989,36.578],[-89.4873,36.4999],[-89.4646,36.4571],[-89.4196,36.498],[-89.3777,36.6179],[-89.3562,36.6324],[-89.3248,36.6268],[-89.2749,36.5717],[-89.2289,36.5677],[-89.166,36.6636],[-89.2016,36.7251],[-89.1612,36.7912],[-89.1785,36.8388],[-89.1311,36.8588],[-89.1164,36.9168],[-89.1006,36.9541],[-89.1339,36.9839],[-89.1953,36.983],[-89.2504,37.0633],[-89.3063,37.0643],[-89.2598,37.0031],[-89.2909,36.9895],[-89.3865,37.0501],[-89.3772,37.0912],[-89.4579,37.1869],[-89.4654,37.2526],[-89.5095,37.2636],[-89.518,37.2767],[-89.5098,37.3131],[-89.426,37.3655],[-89.4355,37.4296],[-89.4926,37.4934],[-89.5204,37.5815],[-89.5152,37.6892],[-89.6707,37.7575],[-89.6626,37.7892],[-89.7397,37.8467],[-89.7961,37.8589],[-89.8418,37.9044],[-89.9177,37.8702],[-89.9736,37.917],[-89.94,37.9703],[-89.995,37.9619],[-90.0109,37.9714],[-90.1824,38.0773],[-90.2493,38.1239],[-90.3498,38.2141],[-90.373,38.278],[-90.3724,38.3224],[-90.3565,38.367],[-90.2984,38.4254],[-90.2595,38.533],[-90.1984,38.595],[-90.1814,38.6618],[-90.204,38.736],[-90.116,38.8105],[-90.1141,38.8508],[-90.1555,38.8722],[-90.2554,38.9224],[-90.3828,38.9595],[-90.4697,38.9614],[-90.5062,38.9053],[-90.5983,38.8768],[-90.6346,38.9037],[-90.7131,39.0513],[-90.6825,39.1095],[-90.725,39.2441],[-90.7971,39.3118],[-91.0578,39.468],[-91.0944,39.5323],[-91.1636,39.5573],[-91.1801,39.5992],[-91.3662,39.7285],[-91.3616,39.783],[-91.3686,39.8015],[-91.4292,39.8392],[-91.4473,39.8743],[-91.4409,39.8965],[-91.4196,39.9177],[-91.4271,39.939],[-91.4929,40.0309],[-91.5115,40.1292],[-91.5049,40.2375],[-91.4658,40.3334],[-91.4204,40.378],[-91.4506,40.3767],[-91.4633,40.3769],[-91.4673,40.3855],[-91.4938,40.3993],[-91.5263,40.4146],[-91.5661,40.462],[-91.6833,40.5553],[-91.7284,40.614],[-92.0611,40.6033],[-93.2896,40.5804],[-93.6866,40.5783],[-94.2285,40.5706],[-94.7673,40.5726],[-95.7651,40.5856],[-95.7666,40.5314],[-95.6969,40.5285],[-95.6928,40.4693],[-95.6223,40.3408],[-95.6534,40.3226],[-95.5507,40.2861],[-95.5526,40.2617],[-95.4709,40.2348],[-95.4789,40.1857],[-95.3933,40.1216],[-95.4212,40.0591],[-95.4113,40.0357],[-95.403,40.0301],[-95.3813,40.0266],[-95.308,39.9999],[-95.253,39.9519],[-95.2359,39.944],[-95.1277,39.8757],[-95.0416,39.8667],[-95.0111,39.9012],[-94.9364,39.895],[-94.9286,39.8839],[-94.9412,39.8602],[-94.8809,39.8253],[-94.8786,39.8112],[-94.8907,39.7952],[-94.9273,39.79],[-94.9352,39.7834],[-94.8673,39.7678],[-94.8931,39.7257],[-94.9519,39.7473],[-94.9697,39.695],[-95.0495,39.6391],[-95.0575,39.5836],[-95.1037,39.5812],[-95.1046,39.5359],[-95.0346,39.4617],[-94.9913,39.4479],[-94.9307,39.3849],[-94.8877,39.2907],[-94.7486,39.1723],[-94.6628,39.1779],[-94.5984,39.1579],[-94.6083,39.1204],[-94.6134,38.3892],[-94.619,37],[-94.6196,36.7664],[-94.6182,36.4984],[-94.1651,36.4996],[-93.3653,36.4968],[-92.256,36.4965],[-91.758,36.4985],[-90.1536,36.4963],[-90.1441,36.4231],[-90.0669,36.3862],[-90.068,36.2978],[-90.1284,36.2305],[-90.2217,36.1811],[-90.2384,36.1382],[-90.2905,36.115],[-90.3773,35.9951],[-90.2574,35.9975],[-90.0008,35.9984],[-89.7169,36.0015]]]},"properties":{"id":"700c342e-8ec4-4a14-83f8-468a3c02b7d6","code":"MO","name":"Missouri","abbreviation":"S-MO","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.0487,44.4772],[-111.0551,44.6669],[-111.053,44.9999],[-110.7756,45.0019],[-110.7072,44.9929],[-110.2006,44.9942],[-110.1325,45.0022],[-109.1756,45.0042],[-109.0827,45.001],[-108.2889,45.0018],[-107.2305,45.0007],[-107.0009,44.9972],[-106.0007,44.9967],[-105.9196,45.0017],[-104.057099868,44.998628693],[-104.057099843,44.998628693],[-104.0397,44.9986],[-104.04375507,45.943800015],[-104.044522817,46.122754864],[-104.0455,47.1872],[-104.0414,47.9112],[-104.0448,48.0005],[-104.0495976,49],[-104.0496,49.0005],[-116.0507,49.0004],[-116.0471,47.973],[-116.0215,47.9645],[-115.9003,47.8425],[-115.8483,47.8154],[-115.8314,47.7523],[-115.7254,47.7],[-115.7279,47.6425],[-115.6898,47.5926],[-115.7525,47.5535],[-115.7055,47.534],[-115.6454,47.4591],[-115.752,47.4367],[-115.6043,47.3787],[-115.5029,47.2873],[-115.3201,47.2581],[-115.2963,47.1886],[-115.1406,47.1019],[-115.0835,47.0439],[-115.0499,46.9707],[-115.0187,46.9755],[-114.9233,46.9152],[-114.9225,46.8283],[-114.7679,46.7603],[-114.7533,46.6996],[-114.6941,46.7391],[-114.6266,46.7099],[-114.6418,46.6673],[-114.591,46.6365],[-114.5347,46.6507],[-114.4679,46.633],[-114.4322,46.6601],[-114.3309,46.6586],[-114.3225,46.6339],[-114.3347,46.578],[-114.3476,46.5533],[-114.3446,46.5173],[-114.4033,46.4989],[-114.382,46.462],[-114.4203,46.3914],[-114.4154,46.3385],[-114.4509,46.2359],[-114.4469,46.1739],[-114.5073,46.1688],[-114.5177,46.1246],[-114.4603,46.0945],[-114.5062,46.0359],[-114.4875,46.0033],[-114.4128,45.9773],[-114.4317,45.9398],[-114.386,45.8863],[-114.4097,45.8522],[-114.4943,45.8521],[-114.5655,45.7773],[-114.5011,45.7186],[-114.5049,45.6611],[-114.5465,45.6423],[-114.5523,45.5583],[-114.4677,45.5647],[-114.4268,45.5135],[-114.3406,45.4595],[-114.2715,45.484],[-114.2473,45.5467],[-114.2018,45.5354],[-114.1356,45.5586],[-114.0147,45.6588],[-113.9856,45.7047],[-113.895,45.6461],[-113.9025,45.6192],[-113.8186,45.6101],[-113.8309,45.518],[-113.7714,45.5192],[-113.7748,45.4161],[-113.7336,45.3901],[-113.7385,45.3308],[-113.6874,45.2579],[-113.5906,45.1806],[-113.5482,45.1113],[-113.4548,45.0599],[-113.4462,44.9586],[-113.4917,44.926],[-113.4233,44.8405],[-113.3286,44.7888],[-113.2475,44.8229],[-113.1347,44.7754],[-113.0558,44.6259],[-113.0858,44.6042],[-113.0094,44.527],[-113.0242,44.4937],[-112.9786,44.4322],[-112.8508,44.3581],[-112.8186,44.3725],[-112.8284,44.444],[-112.803,44.4602],[-112.7827,44.483],[-112.7637,44.4896],[-112.7352,44.5],[-112.6911,44.4995],[-112.6651,44.4881],[-112.4599,44.477],[-112.3923,44.45],[-112.3834,44.4493],[-112.3558,44.533],[-112.2862,44.5691],[-112.1144,44.5254],[-111.9759,44.5391],[-111.8693,44.5662],[-111.8223,44.5111],[-111.7012,44.5587],[-111.648,44.5542],[-111.6167,44.5491],[-111.5461,44.5559],[-111.4717,44.668],[-111.4876,44.7031],[-111.411,44.7129],[-111.388,44.753],[-111.3775,44.7537],[-111.3496,44.7281],[-111.3244,44.7271],[-111.3212,44.7179],[-111.2963,44.7017],[-111.2285,44.5803],[-111.1331,44.5339],[-111.1119,44.4909],[-111.0487,44.4772]]]},"properties":{"id":"4c9babd2-c024-43bf-9274-c8f22246a719","code":"MT","name":"Montana","abbreviation":"S-MT","parent_id":"1f30181c-ab24-4bfc-989c-162d4b17a83e"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.048383939,40.003899931],[-98.9996,40.0021],[-98.5045,40.0036],[-97.3687,40.0035],[-95.308,39.9999],[-95.3813,40.0266],[-95.403,40.0301],[-95.4113,40.0357],[-95.4212,40.0591],[-95.3933,40.1216],[-95.4789,40.1857],[-95.4709,40.2348],[-95.5526,40.2617],[-95.5507,40.2861],[-95.6534,40.3226],[-95.6223,40.3408],[-95.6928,40.4693],[-95.6969,40.5285],[-95.7666,40.5314],[-95.7651,40.5856],[-95.7952,40.6624],[-95.8825,40.7173],[-95.8371,40.7762],[-95.8441,40.8125],[-95.843,40.8697],[-95.8106,40.9002],[-95.8276,40.9735],[-95.8693,41.0087],[-95.8603,41.0869],[-95.9113,41.1857],[-95.9187,41.3018],[-95.9053,41.3],[-95.9093,41.2738],[-95.8782,41.2843],[-95.8725,41.2953],[-95.9106,41.3205],[-95.9504,41.337],[-95.9369,41.3904],[-95.9277,41.4097],[-95.9242,41.4609],[-95.9481,41.4651],[-96.0138,41.4801],[-95.9873,41.5152],[-96.0955,41.5449],[-96.1199,41.6837],[-96.0726,41.7033],[-96.1012,41.7445],[-96.0679,41.7857],[-96.1579,41.9098],[-96.1335,41.97],[-96.2698,42.0429],[-96.2766,42.1221],[-96.3403,42.1595],[-96.3576,42.2154],[-96.3224,42.2324],[-96.3715,42.3142],[-96.4186,42.352],[-96.3915,42.484],[-96.4192,42.4916],[-96.45,42.4895],[-96.4818,42.4811],[-96.551,42.5218],[-96.6062,42.5045],[-96.628,42.5502],[-96.7007,42.5966],[-96.6838,42.6496],[-96.8052,42.674],[-96.8594,42.7227],[-96.9451,42.72],[-96.9953,42.7625],[-97.1347,42.7739],[-97.2098,42.8093],[-97.2193,42.8465],[-97.3559,42.8736],[-97.4414,42.8465],[-97.4578,42.8477],[-97.4808,42.8683],[-97.5898,42.8424],[-97.6341,42.86],[-97.6578,42.8348],[-97.6956,42.8508],[-97.721,42.8625],[-97.7313,42.8617],[-97.7591,42.8391],[-97.8269,42.8685],[-97.8757,42.8573],[-97.9128,42.7944],[-98.012,42.7622],[-98.2418,42.8656],[-98.4382,42.9301],[-98.5001,42.9977],[-100.1984,42.9979],[-100.7509,42.9947],[-101.6775,42.9953],[-102.999,42.9997],[-104.0527,43.0028],[-104.0527,43.002797942],[-104.0528,41.0017],[-102.6538,41.0032],[-102.0504,41.0019],[-102.048383939,40.003899931]]]},"properties":{"id":"281f6f92-6cf7-40ea-adb3-2f674970e5ee","code":"NE","name":"Nebraska","abbreviation":"S-NE","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-114.050505283,37.00000125],[-114.0541,37.6447],[-114.0494,38.0329],[-114.0491,38.8371],[-114.052,38.9994],[-114.0463,39.6464],[-114.0487,40.2161],[-114.0406,40.7968],[-114.0399,40.9647],[-114.040399971,41.993339785],[-114.0404,41.9934],[-114.044298938,41.993413276],[-114.5984,41.9953],[-114.8546,42.0003],[-115.2264,41.9945],[-117.0293,42.0003],[-118.0426,41.9974],[-118.7764,41.993],[-119.5064,41.9925],[-120.0003,41.9953],[-119.9984,41.6905],[-119.9999,40.9331],[-119.9955,40.3085],[-120.0053,39.2875],[-120.0009,39.0005],[-119.502818548,38.65661886],[-119.4492,38.6196],[-119.341981891,38.544214822],[-118.8591,38.2047],[-118.1091,37.6663],[-117.699558286,37.366348171],[-117.5108,37.2281],[-117.286724092,37.061653047],[-117.269365759,37.048759017],[-117.2394,37.0265],[-116.8912,36.7648],[-116.79135207,36.688950431],[-116.2954,36.3122],[-115.648,35.8111],[-115.2099,35.4658],[-115.193553028,35.452773599],[-115.065428477,35.350675077],[-114.9352,35.2469],[-114.888038436,35.208708962],[-114.6329,35.0021],[-114.6359,35.0132],[-114.6067,35.0769],[-114.6463,35.0992],[-114.5794,35.1307],[-114.5718,35.1623],[-114.5956,35.3246],[-114.6703,35.4697],[-114.6587,35.6162],[-114.7022,35.7006],[-114.7047,35.9047],[-114.7453,35.9846],[-114.735,36.0542],[-114.7421,36.07],[-114.743,36.1007],[-114.7005,36.1101],[-114.6907,36.114],[-114.6643,36.1197],[-114.6298,36.1421],[-114.5108,36.1528],[-114.5039,36.1501],[-114.44,36.1273],[-114.3738,36.1438],[-114.3156,36.0668],[-114.2241,36.0145],[-114.1474,36.0305],[-114.0694,36.182],[-114.0487,36.1951],[-114.051,37],[-114.050505283,37.00000125]]]},"properties":{"id":"365df1eb-3279-470c-920f-61007bba30a8","code":"NV","name":"Nevada","abbreviation":"S-NV","parent_id":"9432f503-fcbe-4e87-8c25-56d19462434c"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.081792777,45.306402189],[-71.082,45.3087],[-71.1623,45.2469],[-71.23,45.2503],[-71.2839,45.3023],[-71.3603,45.2686],[-71.4132,45.2202],[-71.4342,45.1202],[-71.4847,45.0809],[-71.5101,45.0156],[-71.5047,45.0079],[-71.5286,45.0026],[-71.5428,44.9837],[-71.4969,44.9075],[-71.5497,44.8627],[-71.578,44.7893],[-71.6339,44.75],[-71.5386,44.5829],[-71.5957,44.5189],[-71.5819,44.5006],[-71.7033,44.4138],[-71.7956,44.3949],[-71.8196,44.352],[-72.0282,44.3178],[-72.0564,44.2896],[-72.0656,44.2728],[-72.0693,44.1921],[-72.0428,44.1553],[-72.0373,44.0815],[-72.0519,44.0769],[-72.1154,43.9919],[-72.0986,43.955],[-72.1728,43.8813],[-72.2043,43.7703],[-72.297,43.7071],[-72.3378,43.5929],[-72.3738,43.5775],[-72.3816,43.4814],[-72.4127,43.3641],[-72.3951,43.3137],[-72.4341,43.2563],[-72.4531,43.1432],[-72.4349,43.1134],[-72.4657,43.0585],[-72.4689,42.9748],[-72.53,42.9552],[-72.5294,42.9111],[-72.5377,42.892],[-72.5563,42.8615],[-72.5483,42.8292],[-72.5321,42.7992],[-72.4566,42.7276],[-71.6293,42.7042],[-71.2968,42.6978],[-71.2599,42.7349],[-71.1843,42.7375],[-71.1891,42.7907],[-71.1333,42.8215],[-71.066,42.8063],[-71.0482,42.8467],[-70.9718,42.8678],[-70.886,42.8806],[-70.8481,42.8609],[-70.8167,42.8716],[-70.8153,42.8628],[-70.8145,42.887],[-70.8269,42.8875],[-70.7108,43.0425],[-70.8106,43.1178],[-70.8531,43.1172],[-70.8331,43.0603],[-70.9167,43.0558],[-70.8656,43.0892],[-70.8689,43.1244],[-70.8306,43.119],[-70.835,43.1489],[-70.8314,43.1819],[-70.8202,43.2088],[-70.812136585,43.220941463],[-70.812230579,43.223103306],[-70.816033333,43.229366667],[-70.822675342,43.237669178],[-70.823818314,43.238425014],[-70.8397,43.2434],[-70.8608,43.2572],[-70.9335,43.3358],[-70.9744,43.3521],[-70.986,43.4087],[-70.9694,43.429],[-70.9559,43.5223],[-70.9743,43.5724],[-71.0079,44.2451],[-71.031,44.6575],[-71.0741,45.2211],[-71.0818,45.3064],[-71.081792777,45.306402189]]]},"properties":{"id":"18a76d57-0c14-4536-a688-87d746899075","code":"NH","name":"New Hampshire","abbreviation":"S-NH","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.4672,39.3722],[-75.4333,39.3939],[-75.3276,39.3405],[-75.288,39.2908],[-75.1709,39.2353],[-75.1372,39.1812],[-75.1087,39.2187],[-75.0489,39.2151],[-74.8865,39.1584],[-74.9019,39.0902],[-74.957,38.9983],[-74.9725,38.9387],[-74.9117,38.9308],[-74.8339,38.9908],[-74.8044,39.0333],[-74.7619,39.0603],[-74.7961,39.0928],[-74.711,39.1206],[-74.6269,39.2533],[-74.6359,39.3067],[-74.5864,39.3131],[-74.5181,39.3633],[-74.4078,39.3642],[-74.4878,39.395],[-74.4139,39.4772],[-74.4168,39.5436],[-74.2981,39.5381],[-74.3381,39.5686],[-74.2202,39.6441],[-74.1686,39.7125],[-74.1969,39.7442],[-74.0728,40.0006],[-74.0923,39.831],[-74.0307,40.1244],[-73.9867,40.2573],[-73.9767,40.3636],[-74,40.4118],[-74.1349,40.4566],[-74.1928,40.4419],[-74.2614,40.4647],[-74.2533,40.5517],[-74.215,40.5642],[-74.19,40.6442],[-74.072,40.6615],[-74.0243,40.7144],[-73.97,40.8164],[-73.9214,40.9083],[-73.9057,40.9994],[-74.3259,41.1823],[-74.6955,41.3576],[-74.7506,41.3455],[-74.828,41.29],[-74.8598,41.2193],[-74.9196,41.1416],[-74.9771,41.1114],[-75.0265,41.0416],[-75.1326,40.9903],[-75.0537,40.8656],[-75.1339,40.7754],[-75.1721,40.7761],[-75.2039,40.6927],[-75.193,40.5791],[-75.0968,40.5664],[-75.0662,40.5402],[-75.0606,40.4205],[-74.9688,40.401],[-74.9411,40.3419],[-74.8836,40.3092],[-74.8374,40.2478],[-74.7759,40.2183],[-74.7277,40.148],[-74.8153,40.1287],[-74.8662,40.0855],[-74.9335,40.0706],[-75.0455,40.013],[-75.1384,39.9444],[-75.1402,39.8901],[-75.2202,39.8624],[-75.3544,39.841],[-75.4144,39.8033],[-75.4617,39.7627],[-75.5119,39.673],[-75.5603,39.6255],[-75.5154,39.5814],[-75.5322,39.4983],[-75.5622,39.4706],[-75.4672,39.3722]]],[[[-74.1189,39.7706],[-74.1419,39.6958],[-74.1806,39.6622],[-74.2373,39.5583],[-74.0997,39.7564],[-74.1189,39.7706]]],[[[-74.8025,39.0303],[-74.8647,38.9417],[-74.7869,39.0014],[-74.8025,39.0303]]]]},"properties":{"id":"00d3ea82-29a2-4a67-96f6-2864ee3c1616","code":"NJ","name":"New Jersey","abbreviation":"S-NJ","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.05,31.3328],[-108.2085,31.3334],[-108.2084,31.7838],[-106.5291,31.7838],[-106.5706,31.8102],[-106.636,31.8694],[-106.6193,32.0012],[-105.2534,32.0017],[-104.7467,32.0032],[-103.0642,31.9996],[-103.0632,33.0017],[-103.0427,34.0007],[-103.0408,36.5005],[-103.0007,36.5013],[-103.000899764,36.998412581],[-103.0009,36.999],[-103.65304205,36.997237454],[-104.1849,36.9958],[-104.3313,36.993],[-105.1011,36.9957],[-105.76177659,36.99698154],[-105.8744,36.9972],[-106.8717,36.9923],[-106.8787,36.999],[-107.965,36.9971],[-109.0449,36.9986],[-109.0467,33.2382],[-109.05,31.3328]]]},"properties":{"id":"f36f87b6-a76f-4b87-93cc-f5a4ccc57690","code":"NM","name":"New Mexico","abbreviation":"S-NM","parent_id":"9432f503-fcbe-4e87-8c25-56d19462434c"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-73.490103271,42.049606044],[-73.4901,42.0497],[-73.4981,42.0496],[-73.5084,42.0858],[-73.4822,42.1648],[-73.2675,42.7452],[-73.2754,42.7456],[-73.2789,42.8337],[-73.2506,43.5108],[-73.2581,43.5617],[-73.3056,43.627],[-73.3751,43.6233],[-73.4302,43.5834],[-73.4317,43.6439],[-73.356,43.7651],[-73.3933,43.8209],[-73.3783,43.8758],[-73.4101,43.9351],[-73.4107,44.0189],[-73.4434,44.0526],[-73.3927,44.1912],[-73.3163,44.2541],[-73.3374,44.3638],[-73.2947,44.4384],[-73.2998,44.4804],[-73.3812,44.5893],[-73.3889,44.6335],[-73.3645,44.7409],[-73.3369,44.7839],[-73.3813,44.837],[-73.3411,44.9199],[-73.3442,45.0103],[-73.8279,45.0031],[-74.1501,44.9912],[-74.3476,44.9908],[-74.6457,44.9992],[-74.7334,44.9905],[-74.8262,45.0158],[-74.9086,44.9867],[-74.9922,44.9777],[-75.3077,44.841],[-75.5457,44.687],[-75.7674,44.5205],[-75.824,44.431],[-75.9106,44.3715],[-76.1629,44.2816],[-76.1656,44.241],[-76.2437,44.2051],[-76.3157,44.1987],[-76.3543,44.1344],[-76.4411,44.0944],[-76.7983,43.6314],[-78.6812,43.6336],[-79.2028,43.451],[-79.0566,43.2488],[-79.044,43.1499],[-79.0748,43.0813],[-79.0017,43.0582],[-79.0072,42.9834],[-78.9219,42.9486],[-78.8598,42.8398],[-78.8557,42.7817],[-78.9186,42.7382],[-79.0491,42.6893],[-79.1469,42.556],[-79.2484,42.5327],[-79.3459,42.493],[-79.4352,42.4225],[-79.716,42.2837],[-79.7625,42.2686],[-79.7624,41.9985],[-78.306,42.0001],[-77.7031,41.9991],[-76.8966,42.0026],[-76.3826,41.9989],[-75.3545,41.9992],[-75.3403,41.9901],[-75.3422,41.9769],[-75.3385,41.9715],[-75.3249,41.9648],[-75.3077,41.9492],[-75.2787,41.9391],[-75.2591,41.8653],[-75.2032,41.8695],[-75.1158,41.8443],[-75.0561,41.7583],[-75.0446,41.6189],[-75.0729,41.6054],[-74.9844,41.5055],[-74.9859,41.483],[-74.9799,41.4788],[-74.9149,41.474],[-74.8866,41.4391],[-74.8062,41.4394],[-74.7421,41.4094],[-74.7154,41.3917],[-74.7105,41.3842],[-74.6955,41.3576],[-74.3259,41.1823],[-73.9057,40.9994],[-73.9214,40.9083],[-73.97,40.8164],[-74.0243,40.7144],[-73.8971,40.8058],[-73.8044,40.8119],[-73.8003,40.8478],[-73.6606,40.9889],[-73.657,41.0119],[-73.7297,41.1009],[-73.4838,41.2136],[-73.5523,41.2933],[-73.5333,41.4977],[-73.5038,41.8662],[-73.4923,41.9865],[-73.490103271,42.049606044]]],[[[-73.4483,40.6536],[-73.2784,40.6839],[-73.2256,40.7181],[-73.1485,40.6984],[-73.0206,40.7486],[-72.8694,40.7392],[-72.7238,40.8089],[-72.6708,40.7848],[-72.4738,40.8389],[-71.9575,41.0283],[-71.8741,41.0517],[-71.9603,41.0702],[-72.0222,41.0214],[-72.1103,40.9947],[-72.1594,41.0539],[-72.2789,41.0003],[-72.3717,40.9956],[-72.4425,40.9456],[-72.4747,40.8994],[-72.6125,40.9083],[-72.5267,40.98],[-72.4564,41.0014],[-72.4022,41.0756],[-72.2783,41.1593],[-72.3536,41.1403],[-72.3967,41.0964],[-72.6369,40.9814],[-72.778,40.9652],[-73.02,40.9628],[-73.1187,40.9778],[-73.1711,40.9042],[-73.2939,40.9244],[-73.4383,40.9009],[-73.4853,40.9473],[-73.4886,40.8775],[-73.5414,40.8769],[-73.5657,40.9155],[-73.6764,40.8575],[-73.7297,40.8664],[-73.7658,40.8121],[-73.8697,40.7792],[-73.936,40.7775],[-73.9728,40.7025],[-73.9984,40.7014],[-74.0403,40.615],[-74,40.5711],[-73.8761,40.5847],[-73.897,40.6237],[-73.8234,40.6493],[-73.79,40.5994],[-73.7079,40.6124],[-73.6384,40.6],[-73.5952,40.6338],[-73.4483,40.6536]]],[[[-74.0791,40.6478],[-74.18,40.6453],[-74.1994,40.5735],[-74.2486,40.5439],[-74.2463,40.4963],[-74.1051,40.5538],[-74.0527,40.6014],[-74.0791,40.6478]]],[[[-72.3297,41.1058],[-72.384,41.0691],[-72.3106,41.0542],[-72.3297,41.1058]]]]},"properties":{"id":"7a95c4d4-76a6-4239-9570-4382c62f1c59","code":"NY","name":"New York","abbreviation":"S-NY","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-83.1052,35.002],[-82.7808,35.0865],[-82.7547,35.0687],[-82.6923,35.1186],[-82.6332,35.1258],[-82.455,35.1796],[-82.3905,35.2161],[-82.3714,35.1814],[-82.2861,35.198],[-81.4514,35.169],[-81.0448,35.1494],[-81.0419,35.0432],[-80.9312,35.1049],[-80.7828,34.9349],[-80.796,34.8175],[-80.32,34.8137],[-79.6753,34.8046],[-79.1384,34.3616],[-78.5782,33.8825],[-78.5938,33.8736],[-78.32,33.9167],[-78.2275,33.9228],[-78.0761,33.9029],[-77.9936,33.9297],[-77.9539,33.975],[-77.9403,34.0781],[-77.9683,34.1625],[-77.9253,34.1272],[-77.925,34.0683],[-77.9178,34.0525],[-77.8914,34.0594],[-77.8592,34.1527],[-77.8133,34.2194],[-77.7017,34.344],[-77.5309,34.4584],[-77.3172,34.5461],[-77.0898,34.7151],[-77.0878,34.673],[-76.8933,34.725],[-76.6931,34.7211],[-76.7375,34.7792],[-76.6589,34.7475],[-76.6908,34.7139],[-76.6172,34.7075],[-76.6094,34.8064],[-76.5797,34.7228],[-76.5067,34.7256],[-76.3981,34.8658],[-76.3314,34.885],[-76.3281,34.9369],[-76.2769,34.9603],[-76.3108,35.0064],[-76.3444,34.9711],[-76.4564,34.94],[-76.425,35.0012],[-76.4359,35.0584],[-76.4719,35.0724],[-76.4841,34.9853],[-76.518,35.0037],[-76.5902,34.9783],[-76.6302,34.9887],[-76.7608,34.9154],[-76.8532,34.937],[-76.9752,35.0016],[-77.047,35.1041],[-76.9252,35.0515],[-76.8039,34.9639],[-76.7131,35.0047],[-76.5701,35.0985],[-76.5439,35.1423],[-76.6525,35.1637],[-76.5989,35.1881],[-76.59,35.2417],[-76.4793,35.2471],[-76.4969,35.3108],[-76.7356,35.3554],[-76.844,35.4241],[-76.9262,35.4488],[-76.9674,35.4331],[-76.9786,35.4837],[-76.7583,35.4193],[-76.7108,35.4289],[-76.576,35.3881],[-76.5985,35.4819],[-76.6516,35.5455],[-76.537,35.5286],[-76.4539,35.5522],[-76.4721,35.511],[-76.5625,35.492],[-76.5401,35.4096],[-76.4821,35.3947],[-76.3891,35.4273],[-76.3019,35.3519],[-76.2603,35.3761],[-76.2043,35.3383],[-76.0961,35.3618],[-75.9994,35.4553],[-75.9442,35.5358],[-75.8834,35.5832],[-75.7744,35.5814],[-75.7339,35.6308],[-75.7795,35.6875],[-75.7169,35.6938],[-75.7387,35.7507],[-75.7281,35.8244],[-75.7827,35.9332],[-75.9079,35.9324],[-75.9854,35.8891],[-75.9757,35.8391],[-75.9992,35.695],[-76.0219,35.6508],[-76.0611,35.7176],[-76.0642,35.8536],[-76.0133,35.9236],[-76.073,35.9229],[-76.0543,35.9874],[-76.1481,35.9956],[-76.2703,35.9726],[-76.3494,35.9419],[-76.4058,35.9822],[-76.525,35.9447],[-76.6639,35.9328],[-76.7247,35.9554],[-76.7036,36.0042],[-76.7555,36.1517],[-76.7505,36.2094],[-76.6807,36.3006],[-76.7224,36.1539],[-76.6919,36.0661],[-76.638,36.0359],[-76.6077,36.0561],[-76.5736,36.0092],[-76.4631,36.0231],[-76.4043,36.0788],[-76.3078,36.0922],[-76.4352,36.1628],[-76.3933,36.1694],[-76.215,36.0964],[-76.2465,36.1586],[-76.1668,36.1237],[-76.0615,36.146],[-76.077,36.1923],[-76.1951,36.2967],[-76.1363,36.2884],[-76.0181,36.187],[-75.925,36.1638],[-75.9542,36.2038],[-75.9762,36.3137],[-75.8763,36.1843],[-75.8632,36.1215],[-75.7958,36.0714],[-75.8971,36.3233],[-76.0006,36.4286],[-76.0405,36.5022],[-76.0804,36.4993],[-76.1527,36.5504],[-76.9162,36.5511],[-76.9174,36.544],[-78.125,36.5463],[-78.5095,36.5421],[-78.9763,36.5447],[-79.5112,36.5391],[-80.2775,36.5433],[-80.6523,36.5584],[-80.8632,36.5598],[-81.3698,36.5735],[-81.6758,36.589],[-81.7081,36.5348],[-81.6969,36.4686],[-81.739,36.4072],[-81.7463,36.3359],[-81.7962,36.3596],[-81.9131,36.2949],[-82.032,36.1211],[-82.1319,36.1069],[-82.1498,36.1467],[-82.2212,36.1567],[-82.2449,36.1334],[-82.3526,36.1172],[-82.407,36.0871],[-82.4603,36.0071],[-82.5541,35.9575],[-82.6081,35.9718],[-82.5899,36.0319],[-82.6336,36.0659],[-82.7772,35.9946],[-82.821,35.9254],[-82.8648,35.9517],[-82.9174,35.9286],[-82.9177,35.8413],[-82.9896,35.7746],[-83.0743,35.7894],[-83.2312,35.7292],[-83.296,35.6594],[-83.3444,35.6627],[-83.4489,35.6078],[-83.5047,35.5627],[-83.5976,35.5781],[-83.7626,35.5647],[-83.8787,35.5197],[-84.0205,35.4095],[-84.024,35.2952],[-84.0876,35.2544],[-84.1859,35.2428],[-84.2279,35.2678],[-84.2893,35.2257],[-84.321,34.989],[-83.6216,34.9871],[-83.6213,34.9916],[-83.1052,35.002]]],[[[-75.7711,36.2267],[-75.8064,36.3128],[-75.8684,36.5505],[-75.8843,36.4732],[-75.8434,36.4222],[-75.8211,36.2914],[-75.774,36.2273],[-75.7448,36.1392],[-75.7375,36.0425],[-75.6864,36.0119],[-75.5708,35.8642],[-75.7275,36.1289],[-75.7711,36.2267]]],[[[-75.9623,36.5504],[-76.013,36.5505],[-75.9886,36.4975],[-75.9119,36.495],[-75.9218,36.5506],[-75.9623,36.5504]]],[[[-75.5186,35.2769],[-75.6372,35.2281],[-75.5294,35.2239],[-75.5186,35.2769]]],[[[-76.1509,36.5504],[-76.0558,36.512],[-76.0358,36.5508],[-76.1509,36.5504]]],[[[-77.9503,33.9219],[-78.0088,33.8673],[-77.9614,33.8433],[-77.9503,33.9219]]],[[[-77.8769,34.0728],[-77.8892,34.0569],[-77.9188,34.0512],[-77.9139,33.9719],[-77.8769,34.0728]]],[[[-75.7044,35.9386],[-75.6617,35.8686],[-75.6461,35.91],[-75.7044,35.9386]]]]},"properties":{"id":"815863cc-0f43-4662-9680-cc78b5ea67d1","code":"NC","name":"North Carolina","abbreviation":"S-NC","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.2348,48.9952],[-97.2295,49],[-100.4701,49.0001],[-104.0495976,49],[-104.0448,48.0005],[-104.0414,47.9112],[-104.0455,47.1872],[-104.044522817,46.122754864],[-104.04375507,45.943800015],[-100.5122,45.9439],[-99.7212,45.9421],[-98.3537,45.9355],[-96.5613,45.9356],[-96.5577,45.9425],[-96.5644,45.9607],[-96.5615,46.0537],[-96.5552,46.0731],[-96.563,46.1155],[-96.5688,46.1333],[-96.5785,46.1478],[-96.5977,46.2226],[-96.6022,46.3298],[-96.6682,46.3794],[-96.7376,46.4801],[-96.7563,46.5763],[-96.8026,46.6564],[-96.7856,46.7146],[-96.7821,46.7225],[-96.7872,46.7251],[-96.7855,46.7329],[-96.8008,46.8155],[-96.7667,46.8804],[-96.8206,46.9694],[-96.8175,47.1102],[-96.8435,47.241],[-96.8346,47.3394],[-96.8605,47.4371],[-96.855,47.5047],[-96.8533,47.5112],[-96.8448,47.5147],[-96.868,47.5196],[-96.8717,47.5257],[-96.8642,47.5402],[-96.8527,47.5384],[-96.8512,47.5881],[-96.8975,47.6783],[-97.0542,47.9454],[-97.0749,48.0504],[-97.1227,48.1056],[-97.149,48.1833],[-97.1206,48.2796],[-97.1606,48.3935],[-97.1268,48.4545],[-97.1571,48.4747],[-97.1712,48.5572],[-97.0935,48.684],[-97.1533,48.7544],[-97.1788,48.8741],[-97.2128,48.9061],[-97.2348,48.9952]]]},"properties":{"id":"7175a692-4a93-4da2-aa68-7653f3f2e417","code":"ND","name":"North Dakota","abbreviation":"S-ND","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-84.8191,39.1069],[-84.803,39.11],[-84.7596,39.1414],[-84.6237,39.0736],[-84.4738,39.1184],[-84.4403,39.1096],[-84.4076,39.046],[-84.3284,39.0285],[-84.2383,38.8947],[-84.2295,38.8235],[-84.2185,38.8097],[-84.1762,38.7966],[-84.0775,38.7728],[-83.9597,38.7873],[-83.8686,38.7611],[-83.7547,38.6494],[-83.6573,38.6263],[-83.6217,38.6811],[-83.5393,38.7011],[-83.33,38.6386],[-83.287,38.5998],[-83.2468,38.6278],[-83.1519,38.6206],[-83.1109,38.6708],[-83.0137,38.7296],[-82.9665,38.728],[-82.9254,38.7474],[-82.884,38.7523],[-82.8699,38.735],[-82.8556,38.6128],[-82.823,38.5743],[-82.7806,38.559],[-82.7243,38.5581],[-82.6853,38.5305],[-82.6521,38.4912],[-82.6115,38.4718],[-82.5928,38.4186],[-82.558,38.4025],[-82.4911,38.4171],[-82.3183,38.455],[-82.292,38.5731],[-82.1973,38.592],[-82.1694,38.6214],[-82.1728,38.6394],[-82.1814,38.7112],[-82.2173,38.7882],[-82.1431,38.8407],[-82.1428,38.887],[-82.0891,38.9725],[-82.0361,39.0248],[-81.9315,38.9874],[-81.8995,38.9318],[-81.9224,38.8879],[-81.8543,38.8939],[-81.8236,38.946],[-81.7814,38.9249],[-81.7637,39.0209],[-81.806,39.0841],[-81.7397,39.1104],[-81.752,39.1819],[-81.6504,39.2784],[-81.5642,39.2747],[-81.5531,39.3441],[-81.4329,39.4073],[-81.3835,39.3438],[-81.2498,39.3883],[-81.127,39.448],[-81.0866,39.4989],[-80.9312,39.6141],[-80.8711,39.6329],[-80.8292,39.716],[-80.8668,39.7689],[-80.833,39.7934],[-80.8056,39.905],[-80.7531,39.9193],[-80.731,40.0867],[-80.6564,40.2415],[-80.6172,40.2691],[-80.6,40.3297],[-80.6131,40.4066],[-80.597,40.4644],[-80.6626,40.5746],[-80.6235,40.6208],[-80.5191,40.6385],[-80.5177,40.8532],[-80.5181,41.9782],[-80.311,42.0467],[-80.0312,42.1557],[-79.9382,42.2047],[-79.9027,42.2149],[-79.8615,42.2243],[-79.8296,42.2353],[-79.7753,42.2604],[-79.7625,42.2686],[-79.716,42.2837],[-79.4352,42.4225],[-79.3459,42.493],[-79.2484,42.5327],[-79.1469,42.556],[-79.0491,42.6893],[-78.9186,42.7382],[-78.8557,42.7817],[-78.8598,42.8398],[-78.9219,42.9486],[-78.9061,42.9056],[-78.9369,42.831],[-79.7627,42.5105],[-80.0733,42.3926],[-81.2606,42.2055],[-81.6388,42.0214],[-82.4077,41.6769],[-82.6812,41.6773],[-83.0678,41.8626],[-83.1466,42.0332],[-83.1231,42.1205],[-83.1228,42.2301],[-83.0694,42.3093],[-83.018,42.3295],[-83.0662,42.3208],[-83.1123,42.2675],[-83.13,42.247],[-83.1658,42.1739],[-83.2068,41.9995],[-83.2927,41.9453],[-83.4416,41.8027],[-83.4304,41.7633],[-83.484,41.7328],[-83.9997,41.7157],[-84.8067,41.6958],[-84.8023,40.7281],[-84.8079,40.1741],[-84.8131,40.006],[-84.8191,39.1069]],[[-83.1683,42.0812],[-83.1711,42.0754],[-83.1766,42.0769],[-83.1763,42.0823],[-83.1683,42.0812]],[[-83.1692,42.0899],[-83.1756,42.0982],[-83.1735,42.1277],[-83.141,42.1228],[-83.1457,42.1016],[-83.1616,42.0929],[-83.1692,42.0899]]]},"properties":{"id":"b02369d3-7f37-4159-b942-3f0dff366cca","code":"OH","name":"Ohio","abbreviation":"S-OH","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-94.6182,36.4984],[-94.6196,36.7664],[-94.619,37],[-95.0336,36.9986],[-95.5236,37.0009],[-97.1468,36.9994],[-99.0005,37.0008],[-100.0902,36.9983],[-100.9441,36.9988],[-102.041933879,36.9922022],[-102.0423,36.9922],[-102.4775,36.9963],[-102.7859,36.9988],[-103.000899764,36.998412581],[-103.0007,36.5013],[-102.1618,36.5004],[-101.87,36.5034],[-100.9524,36.4998],[-100.0038,36.4998],[-100.001,35.64],[-100.0014,34.5583],[-99.9487,34.5803],[-99.8671,34.5364],[-99.8011,34.4588],[-99.7146,34.394],[-99.7054,34.384],[-99.6074,34.3717],[-99.5793,34.4149],[-99.3973,34.3813],[-99.3704,34.4578],[-99.2125,34.3366],[-99.1897,34.2156],[-99.0424,34.1991],[-98.9523,34.2135],[-98.8729,34.1565],[-98.8298,34.162],[-98.739,34.1268],[-98.6481,34.1644],[-98.5498,34.1332],[-98.486,34.0615],[-98.3998,34.0993],[-98.3673,34.1558],[-98.1693,34.1139],[-98.1274,34.1516],[-98.093,34.1342],[-98.1215,34.0773],[-98.0871,34.0047],[-97.9487,33.9869],[-97.9846,33.9007],[-97.8729,33.8525],[-97.7805,33.8975],[-97.6752,33.9901],[-97.5897,33.9538],[-97.5849,33.9003],[-97.4974,33.9178],[-97.4538,33.8986],[-97.4573,33.8354],[-97.4183,33.8173],[-97.3539,33.8354],[-97.3412,33.872],[-97.2528,33.8685],[-97.2249,33.9121],[-97.1837,33.896],[-97.1939,33.768],[-97.1234,33.7163],[-97.0915,33.734],[-97.0938,33.7982],[-97.0511,33.8167],[-96.9813,33.8936],[-96.9954,33.944],[-96.9894,33.9552],[-96.981,33.9442],[-96.9155,33.9552],[-96.8796,33.8699],[-96.7852,33.8627],[-96.7175,33.8323],[-96.6758,33.9114],[-96.6353,33.8975],[-96.59,33.8961],[-96.6164,33.8634],[-96.6227,33.8523],[-96.5322,33.8214],[-96.502,33.7741],[-96.4241,33.7772],[-96.3605,33.6903],[-96.3196,33.6957],[-96.292,33.7679],[-96.1857,33.7549],[-96.1455,33.8391],[-96.049,33.8367],[-95.9507,33.8579],[-95.9353,33.8873],[-95.8308,33.8354],[-95.7721,33.8436],[-95.7464,33.8962],[-95.6985,33.8848],[-95.5971,33.9415],[-95.5406,33.8795],[-95.4136,33.8667],[-95.299,33.8724],[-95.2257,33.9605],[-95.1912,33.9522],[-95.0257,33.8589],[-94.9673,33.8586],[-94.9516,33.8113],[-94.8667,33.7441],[-94.7474,33.7243],[-94.6648,33.6619],[-94.639,33.6646],[-94.5537,33.6273],[-94.534,33.6409],[-94.4995,33.6217],[-94.4885,33.6279],[-94.4863,33.6411],[-94.4638,34.5065],[-94.4307,35.4],[-94.4947,35.7594],[-94.5338,36.0093],[-94.6182,36.4984]]]},"properties":{"id":"92b58324-4da5-414f-a302-72a126541b1b","code":"OK","name":"Oklahoma","abbreviation":"S-OK","parent_id":"d6157b38-3f86-49ef-8acd-93287d33c0d0"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-120.0003,41.9953],[-119.5064,41.9925],[-118.7764,41.993],[-118.0426,41.9974],[-117.0293,42.0003],[-117.0271,43.8082],[-117.0203,43.8594],[-116.962,43.9126],[-116.9728,43.9678],[-116.936,43.9916],[-116.9689,44.0873],[-116.9196,44.1076],[-116.8935,44.1703],[-116.9664,44.1964],[-116.971,44.2348],[-117.052,44.2329],[-117.0924,44.2718],[-117.181,44.2644],[-117.2181,44.3018],[-117.1896,44.3309],[-117.2402,44.3893],[-117.213,44.4282],[-117.224,44.4799],[-117.1473,44.5352],[-117.1414,44.57],[-117.0285,44.7511],[-116.9352,44.783],[-116.8552,44.8816],[-116.833,44.9386],[-116.8413,45.0287],[-116.7284,45.145],[-116.667,45.3271],[-116.5849,45.4414],[-116.5203,45.5553],[-116.4616,45.6093],[-116.5341,45.6925],[-116.5345,45.7349],[-116.5924,45.7793],[-116.6623,45.7812],[-116.6935,45.818],[-116.7614,45.8166],[-116.789,45.8586],[-116.866,45.9152],[-116.9101,45.9902],[-116.9125,45.9972],[-116.912940083,45.9971998],[-117.3534,45.997],[-117.7882,46.0018],[-118.9857,46.0036],[-119.0284,45.9679],[-119.185,45.9265],[-119.26,45.9394],[-119.5059,45.9054],[-119.6103,45.9167],[-119.6765,45.8572],[-119.8301,45.848],[-119.978,45.8253],[-120.1769,45.7587],[-120.2005,45.7308],[-120.492,45.6971],[-120.554,45.7401],[-120.631,45.7478],[-120.6896,45.7173],[-120.8492,45.6744],[-120.9011,45.6453],[-121.079,45.6538],[-121.1763,45.6064],[-121.2167,45.6719],[-121.3455,45.7066],[-121.4183,45.6928],[-121.5342,45.7267],[-121.7104,45.6958],[-121.8091,45.7091],[-121.8991,45.6784],[-121.909,45.6552],[-122.2668,45.5598],[-122.2903,45.5627],[-122.367,45.5822],[-122.4062,45.5858],[-122.4386,45.5799],[-122.6181,45.6174],[-122.745,45.6533],[-122.7618,45.67],[-122.7587,45.7688],[-122.7883,45.815],[-122.7779,45.8719],[-122.8111,45.9629],[-122.8753,46.0383],[-122.8723,46.0809],[-122.9392,46.1003],[-123.0448,46.1662],[-123.0641,46.1741],[-123.0912,46.1772],[-123.1246,46.1912],[-123.1595,46.1938],[-123.2832,46.1519],[-123.4074,46.2135],[-123.4572,46.2687],[-123.4976,46.2738],[-123.6126,46.1874],[-123.7325,46.1736],[-123.7679,46.205],[-123.855,46.1572],[-123.9526,46.2078],[-123.9828,46.2039],[-123.9329,46.0674],[-123.9389,45.9766],[-123.9973,45.9454],[-123.9632,45.8976],[-123.9693,45.7808],[-123.933,45.6917],[-123.9575,45.5709],[-123.8746,45.4988],[-123.944,45.5072],[-123.9799,45.4866],[-123.9314,45.4037],[-123.9778,45.3385],[-123.9619,45.2797],[-123.9705,45.1583],[-124.0122,45.0772],[-124.0089,45.0122],[-124.0311,44.9033],[-124.0764,44.7719],[-124.0575,44.6596],[-124.0864,44.4856],[-124.0808,44.4256],[-124.0998,44.3342],[-124.1225,44.0927],[-124.1642,43.8289],[-124.2286,43.5689],[-124.2634,43.483],[-124.3336,43.3611],[-124.3858,43.3306],[-124.3814,43.2689],[-124.4753,42.9622],[-124.5558,42.8383],[-124.5138,42.7324],[-124.4739,42.7333],[-124.4136,42.6592],[-124.39,42.57],[-124.4344,42.4322],[-124.4325,42.3203],[-124.4144,42.2519],[-124.3614,42.1808],[-124.3523,42.1005],[-124.3003,42.0514],[-124.2117,41.9997],[-123.6563,41.9959],[-123.3361,41.9987],[-123.1379,42.0084],[-123.0508,42.0028],[-122.3503,42.0098],[-121.0015,41.9933],[-120.0003,41.9953]],[[-122.8784,46.0694],[-122.8742,46.0616],[-122.876,46.057],[-122.8786,46.057],[-122.8851,46.0734],[-122.8784,46.0694]],[[-122.4385,45.5776],[-122.4041,45.5826],[-122.3982,45.5782],[-122.4104,45.5743],[-122.4385,45.5776]],[[-122.2849,45.5532],[-122.3273,45.5576],[-122.33,45.5608],[-122.2902,45.5581],[-122.2849,45.5532]]]},"properties":{"id":"707fc3c6-fe74-4c41-89ae-6ab274acb5e3","code":"OR","name":"Oregon","abbreviation":"S-OR","parent_id":"da91c585-dacb-46b4-998a-dabe27e6d774"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.787500343,39.723058306],[-75.7723,39.7231],[-75.7177,39.7912],[-75.6464,39.827],[-75.5307,39.8401],[-75.4144,39.8033],[-75.3544,39.841],[-75.2202,39.8624],[-75.1402,39.8901],[-75.1384,39.9444],[-75.0455,40.013],[-74.9335,40.0706],[-74.8662,40.0855],[-74.8153,40.1287],[-74.7277,40.148],[-74.7759,40.2183],[-74.8374,40.2478],[-74.8836,40.3092],[-74.9411,40.3419],[-74.9688,40.401],[-75.0606,40.4205],[-75.0662,40.5402],[-75.0968,40.5664],[-75.193,40.5791],[-75.2039,40.6927],[-75.1721,40.7761],[-75.1339,40.7754],[-75.0537,40.8656],[-75.1326,40.9903],[-75.0265,41.0416],[-74.9771,41.1114],[-74.9196,41.1416],[-74.8598,41.2193],[-74.828,41.29],[-74.7506,41.3455],[-74.6955,41.3576],[-74.7105,41.3842],[-74.7154,41.3917],[-74.7421,41.4094],[-74.8062,41.4394],[-74.8866,41.4391],[-74.9149,41.474],[-74.9799,41.4788],[-74.9859,41.483],[-74.9844,41.5055],[-75.0729,41.6054],[-75.0446,41.6189],[-75.0561,41.7583],[-75.1158,41.8443],[-75.2032,41.8695],[-75.2591,41.8653],[-75.2787,41.9391],[-75.3077,41.9492],[-75.3249,41.9648],[-75.3385,41.9715],[-75.3422,41.9769],[-75.3403,41.9901],[-75.3545,41.9992],[-76.3826,41.9989],[-76.8966,42.0026],[-77.7031,41.9991],[-78.306,42.0001],[-79.7624,41.9985],[-79.7625,42.2686],[-79.7753,42.2604],[-79.8296,42.2353],[-79.8615,42.2243],[-79.9027,42.2149],[-79.9382,42.2047],[-80.0312,42.1557],[-80.311,42.0467],[-80.5181,41.9782],[-80.5177,40.8532],[-80.5191,40.6385],[-80.5196,39.9639],[-80.5171,39.7212],[-79.4774,39.7216],[-79.136094902,39.722699288],[-77.938,39.724],[-77.1212,39.7194],[-75.787500343,39.723058306]]]},"properties":{"id":"0c5b4f3a-eacb-40ff-8efb-e03428c6c830","code":"PA","name":"Pennsylvania","abbreviation":"S-PA","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.8397,41.3613],[-71.8276,41.3388],[-71.852,41.3097],[-71.7147,41.3305],[-71.5295,41.3769],[-71.487,41.3616],[-71.4217,41.4711],[-71.4092,41.6631],[-71.3802,41.7271],[-71.393,41.8179],[-71.3377,41.7248],[-71.2799,41.7415],[-71.3071,41.673],[-71.2691,41.6507],[-71.2277,41.7151],[-71.3314,41.7897],[-71.3406,41.8093],[-71.3386,41.8983],[-71.3824,41.8915],[-71.3797,42.0191],[-71.7979,42.0089],[-71.7882,41.6387],[-71.7977,41.4187],[-71.818,41.4199],[-71.8406,41.4094],[-71.8349,41.3817],[-71.8397,41.3613]]],[[[-71.1989,41.6783],[-71.2215,41.5607],[-71.176,41.4589],[-71.1206,41.4956],[-71.1332,41.6595],[-71.1989,41.6783]]],[[[-71.2438,41.4995],[-71.2397,41.617],[-71.2747,41.6207],[-71.3235,41.515],[-71.2966,41.4841],[-71.2438,41.4995]]],[[[-71.576,41.2305],[-71.6129,41.1569],[-71.5501,41.1519],[-71.576,41.2305]]]]},"properties":{"id":"8698ded0-2bbf-4a16-8ff9-0067883b92b4","code":"RI","name":"Rhode Island","abbreviation":"S-RI","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-80.9716,32.0741],[-80.915,32.0842],[-80.9271,32.1258],[-80.8373,32.2144],[-80.7908,32.2028],[-80.7813,32.2602],[-80.7597,32.2767],[-80.8444,32.3831],[-80.8172,32.41],[-80.8275,32.4864],[-80.7883,32.4967],[-80.7836,32.5289],[-80.7642,32.5403],[-80.7486,32.5428],[-80.7361,32.5367],[-80.6731,32.5244],[-80.6519,32.5108],[-80.6303,32.5181],[-80.5849,32.5007],[-80.4651,32.5196],[-80.3928,32.5728],[-80.3892,32.6164],[-80.3378,32.6397],[-80.2882,32.6253],[-80.254,32.678],[-80.18,32.7175],[-80.1711,32.7387],[-80.1583,32.7508],[-80.1037,32.7882],[-80.0022,32.7672],[-79.9853,32.6939],[-79.9906,32.6347],[-79.9064,32.6683],[-79.87,32.7314],[-79.9339,32.755],[-79.935,32.8077],[-79.86,32.7664],[-79.7416,32.8708],[-79.6978,32.8508],[-79.5775,32.9085],[-79.6172,32.9381],[-79.579,33.0069],[-79.5283,33.0381],[-79.4839,33.0036],[-79.3756,33.0467],[-79.3644,33.0762],[-79.2467,33.125],[-79.1946,33.1704],[-79.2106,33.2439],[-79.2581,33.2589],[-79.275,33.3128],[-79.1958,33.2958],[-79.1789,33.2647],[-79.1455,33.3841],[-79,33.5456],[-78.9119,33.6111],[-78.9372,33.6397],[-78.8416,33.7225],[-78.687,33.8122],[-78.5578,33.8483],[-78.5938,33.8736],[-78.5782,33.8825],[-79.1384,34.3616],[-79.6753,34.8046],[-80.32,34.8137],[-80.796,34.8175],[-80.7828,34.9349],[-80.9312,35.1049],[-81.0419,35.0432],[-81.0448,35.1494],[-81.4514,35.169],[-82.2861,35.198],[-82.3714,35.1814],[-82.3905,35.2161],[-82.455,35.1796],[-82.6332,35.1258],[-82.6923,35.1186],[-82.7547,35.0687],[-82.7808,35.0865],[-83.1052,35.002],[-83.1272,34.9401],[-83.2501,34.8678],[-83.2928,34.8186],[-83.2993,34.8066],[-83.3534,34.728],[-83.3403,34.6812],[-83.2366,34.6167],[-83.1938,34.6067],[-83.0819,34.5155],[-83.0022,34.4733],[-82.9055,34.4867],[-82.8612,34.4538],[-82.8329,34.3661],[-82.7519,34.2726],[-82.7173,34.1521],[-82.6792,34.1307],[-82.5975,34.0313],[-82.5624,33.9551],[-82.5143,33.9395],[-82.4281,33.8693],[-82.3091,33.8072],[-82.2552,33.7569],[-82.1953,33.6318],[-82.0511,33.5662],[-81.9862,33.4875],[-81.914,33.4436],[-81.9443,33.4024],[-81.9338,33.3438],[-81.836,33.2735],[-81.846,33.243],[-81.7573,33.1972],[-81.7545,33.1517],[-81.6466,33.0937],[-81.6142,33.0953],[-81.4912,32.9936],[-81.5016,32.9369],[-81.4578,32.851],[-81.4275,32.8422],[-81.4258,32.7738],[-81.3942,32.6526],[-81.4175,32.6317],[-81.3393,32.5673],[-81.291,32.5645],[-81.1959,32.4697],[-81.2033,32.4265],[-81.1202,32.2875],[-81.1554,32.2403],[-81.1104,32.1734],[-81.1183,32.1175],[-81.0236,32.0999],[-80.9839,32.0796],[-80.9716,32.0741]]],[[[-80.6203,32.5022],[-80.6775,32.5019],[-80.6571,32.4388],[-80.6442,32.2603],[-80.6037,32.2705],[-80.5422,32.3328],[-80.55,32.3589],[-80.4557,32.4058],[-80.4789,32.4453],[-80.6035,32.4443],[-80.6203,32.5022]]],[[[-80.0983,32.7833],[-80.1705,32.7355],[-80.1628,32.7214],[-80.1706,32.7111],[-80.1647,32.7075],[-80.1616,32.7084],[-80.1589,32.7047],[-80.1392,32.7131],[-80.1272,32.7053],[-80.1014,32.7186],[-80.0819,32.7125],[-80.0744,32.7],[-80.0864,32.6872],[-80.1317,32.6664],[-80.1558,32.6108],[-80.1567,32.6064],[-80.1611,32.6039],[-80.1722,32.6019],[-80.1783,32.5937],[-80.2047,32.5839],[-80.1776,32.5593],[-80.1113,32.5941],[-80.0163,32.6113],[-79.9903,32.6939],[-80.0073,32.7658],[-80.0983,32.7833]]],[[[-80.745,32.5397],[-80.7794,32.5281],[-80.7833,32.4972],[-80.8103,32.4725],[-80.765,32.3725],[-80.7014,32.3128],[-80.6631,32.4329],[-80.6828,32.5],[-80.7094,32.525],[-80.745,32.5397]]],[[[-80.3311,32.6328],[-80.3853,32.615],[-80.3852,32.5738],[-80.4112,32.5475],[-80.3358,32.4775],[-80.1975,32.5683],[-80.2419,32.6036],[-80.2983,32.6022],[-80.3311,32.6328]]],[[[-80.0964,32.7158],[-80.1275,32.704],[-80.1392,32.7108],[-80.155,32.7061],[-80.1583,32.7019],[-80.1622,32.7073],[-80.1658,32.7033],[-80.1707,32.7071],[-80.1833,32.7075],[-80.2391,32.6756],[-80.265,32.6221],[-80.2155,32.5871],[-80.1928,32.5996],[-80.1787,32.5959],[-80.1739,32.6031],[-80.1572,32.6078],[-80.135,32.6669],[-80.0864,32.6889],[-80.0964,32.7158]]],[[[-80.7253,32.2697],[-80.7836,32.2227],[-80.8121,32.1101],[-80.7391,32.1466],[-80.6675,32.2144],[-80.7253,32.2697]]],[[[-80.434,32.4118],[-80.4802,32.3783],[-80.4507,32.3418],[-80.434,32.4118]]]]},"properties":{"id":"891339bb-a340-4ad7-92d9-275decfd6ed3","code":"SC","name":"South Carolina","abbreviation":"S-SC","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.4541,43.5026],[-96.4536,45.2695],[-96.4519,45.3022],[-96.5059,45.3698],[-96.6087,45.4094],[-96.6742,45.4115],[-96.7317,45.4593],[-96.7642,45.5189],[-96.8546,45.6075],[-96.8303,45.6567],[-96.6674,45.735],[-96.6313,45.783],[-96.5731,45.8515],[-96.5638,45.9051],[-96.5613,45.9356],[-98.3537,45.9355],[-99.7212,45.9421],[-100.5122,45.9439],[-104.04375507,45.943800015],[-104.0397,44.9986],[-104.057099843,44.998628693],[-104.0527,43.0028],[-102.999,42.9997],[-101.6775,42.9953],[-100.7509,42.9947],[-100.1984,42.9979],[-98.5001,42.9977],[-98.4382,42.9301],[-98.2418,42.8656],[-98.012,42.7622],[-97.9128,42.7944],[-97.8757,42.8573],[-97.8269,42.8685],[-97.7591,42.8391],[-97.7313,42.8617],[-97.721,42.8625],[-97.6956,42.8508],[-97.6578,42.8348],[-97.6341,42.86],[-97.5898,42.8424],[-97.4808,42.8683],[-97.4578,42.8477],[-97.4414,42.8465],[-97.3559,42.8736],[-97.2193,42.8465],[-97.2098,42.8093],[-97.1347,42.7739],[-96.9953,42.7625],[-96.9451,42.72],[-96.8594,42.7227],[-96.8052,42.674],[-96.6838,42.6496],[-96.7007,42.5966],[-96.628,42.5502],[-96.6062,42.5045],[-96.551,42.5218],[-96.4818,42.4811],[-96.45,42.4895],[-96.4754,42.4962],[-96.4792,42.557],[-96.5167,42.6312],[-96.628,42.7077],[-96.6326,42.7681],[-96.552,42.8373],[-96.5372,42.9187],[-96.4985,42.9596],[-96.5167,43.046],[-96.4617,43.0655],[-96.4378,43.1173],[-96.483,43.2257],[-96.5585,43.2257],[-96.5199,43.3916],[-96.5965,43.4422],[-96.5974,43.5021],[-96.4541,43.5026]]]},"properties":{"id":"8a9ce8fb-78d5-471a-b73c-9228cf8a342a","code":"SD","name":"South Dakota","abbreviation":"S-SD","parent_id":"6e783926-0564-4643-a1d0-ee6990e40de2"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.6055,34.9855],[-85.3418,34.9839],[-84.6374,34.9906],[-84.477,34.9885],[-84.321,34.989],[-84.2893,35.2257],[-84.2279,35.2678],[-84.1859,35.2428],[-84.0876,35.2544],[-84.024,35.2952],[-84.0205,35.4095],[-83.8787,35.5197],[-83.7626,35.5647],[-83.5976,35.5781],[-83.5047,35.5627],[-83.4489,35.6078],[-83.3444,35.6627],[-83.296,35.6594],[-83.2312,35.7292],[-83.0743,35.7894],[-82.9896,35.7746],[-82.9177,35.8413],[-82.9174,35.9286],[-82.8648,35.9517],[-82.821,35.9254],[-82.7772,35.9946],[-82.6336,36.0659],[-82.5899,36.0319],[-82.6081,35.9718],[-82.5541,35.9575],[-82.4603,36.0071],[-82.407,36.0871],[-82.3526,36.1172],[-82.2449,36.1334],[-82.2212,36.1567],[-82.1498,36.1467],[-82.1319,36.1069],[-82.032,36.1211],[-81.9131,36.2949],[-81.7962,36.3596],[-81.7463,36.3359],[-81.739,36.4072],[-81.6969,36.4686],[-81.7081,36.5348],[-81.6758,36.589],[-81.6475,36.6125],[-81.9233,36.6166],[-81.9352,36.595],[-82.2374,36.5967],[-83.2538,36.5942],[-83.6748,36.6012],[-83.6843,36.5933],[-83.6902,36.5838],[-83.8297,36.5855],[-84.0301,36.5931],[-84.5136,36.5989],[-84.83,36.6071],[-85.2626,36.6283],[-85.5074,36.6151],[-85.8526,36.6245],[-86.3401,36.65],[-86.5913,36.6544],[-87.0605,36.6444],[-87.8534,36.6353],[-87.8505,36.6651],[-88.0707,36.6792],[-88.0326,36.5367],[-88.0571,36.4967],[-88.1793,36.5],[-89.2992,36.5078],[-89.4196,36.498],[-89.4646,36.4571],[-89.4873,36.4999],[-89.540418139,36.500290575],[-89.5249,36.4844],[-89.5515,36.4414],[-89.5192,36.3883],[-89.5264,36.3459],[-89.6042,36.3446],[-89.6167,36.3186],[-89.5456,36.2791],[-89.6083,36.2409],[-89.6733,36.2521],[-89.6946,36.2501],[-89.6985,36.2309],[-89.5896,36.1475],[-89.6564,36.1024],[-89.7169,36.0015],[-89.7162,35.9625],[-89.6587,35.9271],[-89.7624,35.8569],[-89.7065,35.8172],[-89.7937,35.7948],[-89.8186,35.7568],[-89.9527,35.738],[-89.9565,35.695],[-89.8622,35.6322],[-89.9414,35.6023],[-89.906,35.5331],[-89.9101,35.5196],[-89.988,35.5594],[-90.0362,35.5515],[-90.0191,35.469],[-90.0541,35.3893],[-90.0716,35.4109],[-90.0991,35.4804],[-90.1709,35.4187],[-90.1504,35.3745],[-90.1383,35.3795],[-90.0751,35.3847],[-90.1083,35.309],[-90.1564,35.3012],[-90.1518,35.2558],[-90.1039,35.2554],[-90.1151,35.1977],[-90.0978,35.1196],[-90.1604,35.132],[-90.1792,35.1168],[-90.2157,35.027],[-90.2937,35.0371],[-90.3108,35.0015],[-90.3098,34.9966],[-89.069158116,34.996152664],[-88.78657705,34.996688],[-88.199696512,34.997799817],[-88.199696765,34.997800227],[-88.2029,35.003],[-88.0795,35.007],[-87.6203,35.005],[-87.612903911,35.004911209],[-87.478331452,35.003295652],[-87.2288,35.0003],[-87.225499309,35.000224287],[-86.8844,34.9924],[-86.3187,34.9921],[-85.8477,34.9889],[-85.6055,34.9855]]]},"properties":{"id":"0a9f6953-af53-4a4c-90fa-8c230ae27a2c","code":"TN","name":"Tennessee","abbreviation":"S-TN","parent_id":"3a101842-0ef2-4472-bf3f-a4400554fea3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-94.4863,33.6411],[-94.4885,33.6279],[-94.4995,33.6217],[-94.534,33.6409],[-94.5537,33.6273],[-94.639,33.6646],[-94.6648,33.6619],[-94.7474,33.7243],[-94.8667,33.7441],[-94.9516,33.8113],[-94.9673,33.8586],[-95.0257,33.8589],[-95.1912,33.9522],[-95.2257,33.9605],[-95.299,33.8724],[-95.4136,33.8667],[-95.5406,33.8795],[-95.5971,33.9415],[-95.6985,33.8848],[-95.7464,33.8962],[-95.7721,33.8436],[-95.8308,33.8354],[-95.9353,33.8873],[-95.9507,33.8579],[-96.049,33.8367],[-96.1455,33.8391],[-96.1857,33.7549],[-96.292,33.7679],[-96.3196,33.6957],[-96.3605,33.6903],[-96.4241,33.7772],[-96.502,33.7741],[-96.5322,33.8214],[-96.6227,33.8523],[-96.6164,33.8634],[-96.59,33.8961],[-96.6353,33.8975],[-96.6758,33.9114],[-96.7175,33.8323],[-96.7852,33.8627],[-96.8796,33.8699],[-96.9155,33.9552],[-96.981,33.9442],[-96.9894,33.9552],[-96.9954,33.944],[-96.9813,33.8936],[-97.0511,33.8167],[-97.0938,33.7982],[-97.0915,33.734],[-97.1234,33.7163],[-97.1939,33.768],[-97.1837,33.896],[-97.2249,33.9121],[-97.2528,33.8685],[-97.3412,33.872],[-97.3539,33.8354],[-97.4183,33.8173],[-97.4573,33.8354],[-97.4538,33.8986],[-97.4974,33.9178],[-97.5849,33.9003],[-97.5897,33.9538],[-97.6752,33.9901],[-97.7805,33.8975],[-97.8729,33.8525],[-97.9846,33.9007],[-97.9487,33.9869],[-98.0871,34.0047],[-98.1215,34.0773],[-98.093,34.1342],[-98.1274,34.1516],[-98.1693,34.1139],[-98.3673,34.1558],[-98.3998,34.0993],[-98.486,34.0615],[-98.5498,34.1332],[-98.6481,34.1644],[-98.739,34.1268],[-98.8298,34.162],[-98.8729,34.1565],[-98.9523,34.2135],[-99.0424,34.1991],[-99.1897,34.2156],[-99.2125,34.3366],[-99.3704,34.4578],[-99.3973,34.3813],[-99.5793,34.4149],[-99.6074,34.3717],[-99.7054,34.384],[-99.7146,34.394],[-99.8011,34.4588],[-99.8671,34.5364],[-99.9487,34.5803],[-100.0014,34.5583],[-100.001,35.64],[-100.0038,36.4998],[-100.9524,36.4998],[-101.87,36.5034],[-102.1618,36.5004],[-103.0007,36.5013],[-103.0408,36.5005],[-103.0427,34.0007],[-103.0632,33.0017],[-103.0642,31.9996],[-104.7467,32.0032],[-105.2534,32.0017],[-106.6193,32.0012],[-106.636,31.8694],[-106.5706,31.8102],[-106.5508,31.8118],[-106.4904,31.7486],[-106.4507,31.7642],[-106.3816,31.7324],[-106.3032,31.6218],[-106.2811,31.5626],[-106.2196,31.4815],[-106.0802,31.3985],[-106.0048,31.3927],[-105.9541,31.3645],[-105.9325,31.3127],[-105.8749,31.2912],[-105.7726,31.1662],[-105.6485,31.1155],[-105.6041,31.0833],[-105.5576,30.99],[-105.4162,30.9003],[-105.3877,30.8537],[-105.2504,30.799],[-105.2155,30.8058],[-105.1617,30.7524],[-105.1188,30.7497],[-105.0546,30.6821],[-105.0069,30.6858],[-104.9717,30.61],[-104.927,30.6046],[-104.8736,30.5135],[-104.8592,30.3904],[-104.7605,30.2959],[-104.6873,30.1799],[-104.6862,30.0848],[-104.7066,30.0506],[-104.6769,29.9124],[-104.6157,29.8464],[-104.5506,29.7391],[-104.5159,29.641],[-104.3845,29.5422],[-104.2645,29.5127],[-104.2091,29.4814],[-104.1679,29.3955],[-104.1078,29.3736],[-104.0379,29.3199],[-103.9762,29.2967],[-103.7833,29.2655],[-103.7186,29.1809],[-103.5504,29.1545],[-103.4289,29.0421],[-103.3865,29.0214],[-103.154,28.9714],[-103.1139,28.9868],[-103.1007,29.0603],[-103.0338,29.1012],[-102.9786,29.1862],[-102.9504,29.1783],[-102.8674,29.2237],[-102.9059,29.2615],[-102.8775,29.3546],[-102.8392,29.3589],[-102.8083,29.5226],[-102.7402,29.5979],[-102.6933,29.6767],[-102.6741,29.7445],[-102.548,29.7446],[-102.5174,29.7838],[-102.4071,29.7642],[-102.3415,29.8694],[-102.3008,29.8777],[-102.116,29.7919],[-102.0727,29.7866],[-101.9817,29.815],[-101.9337,29.7855],[-101.8562,29.807],[-101.7101,29.7618],[-101.5395,29.7606],[-101.4534,29.7847],[-101.3477,29.662],[-101.3057,29.6542],[-101.3133,29.6038],[-101.2479,29.6195],[-101.2541,29.5208],[-101.1856,29.518],[-101.1476,29.4745],[-101.0601,29.4585],[-101.0047,29.3653],[-100.8862,29.3074],[-100.8803,29.2827],[-100.7943,29.2421],[-100.7761,29.1727],[-100.6644,29.0747],[-100.6454,28.9399],[-100.5476,28.8262],[-100.5074,28.7402],[-100.4973,28.6587],[-100.3985,28.5851],[-100.411,28.5498],[-100.3407,28.4488],[-100.3427,28.3864],[-100.2866,28.3122],[-100.2942,28.2836],[-100.2095,28.1913],[-100.0862,28.1462],[-100.0182,28.0657],[-99.9905,27.9936],[-99.9315,27.9803],[-99.9373,27.9409],[-99.8937,27.8998],[-99.8708,27.794],[-99.808,27.7653],[-99.7226,27.6674],[-99.6034,27.6419],[-99.5115,27.5641],[-99.5282,27.4982],[-99.4788,27.4795],[-99.5045,27.3388],[-99.4966,27.2729],[-99.4418,27.2508],[-99.4262,27.1761],[-99.4453,27.0218],[-99.3813,26.9793],[-99.3747,26.9324],[-99.3285,26.9195],[-99.282,26.8588],[-99.209,26.7247],[-99.1729,26.6166],[-99.1669,26.536],[-99.0916,26.4756],[-99.1132,26.4312],[-98.8803,26.3662],[-98.7996,26.3635],[-98.738,26.3253],[-98.7146,26.27],[-98.4426,26.1989],[-98.3216,26.1183],[-98.2821,26.1263],[-98.249,26.0721],[-98.1768,26.0753],[-98.0622,26.0463],[-97.8083,26.0609],[-97.7911,26.0336],[-97.7032,26.0321],[-97.6381,26.0021],[-97.5407,25.9313],[-97.523,25.8882],[-97.469,25.8889],[-97.4426,25.8484],[-97.3629,25.8675],[-97.3697,25.9165],[-97.2808,25.9353],[-97.2157,25.9701],[-97.2071,26.0793],[-97.2729,26.0876],[-97.3001,26.1432],[-97.2979,26.2546],[-97.3443,26.2676],[-97.3579,26.3376],[-97.3276,26.3574],[-97.4074,26.4796],[-97.4679,26.7096],[-97.4782,26.8054],[-97.5529,26.8421],[-97.5504,26.8963],[-97.4693,26.8412],[-97.4565,26.9424],[-97.5076,26.9068],[-97.5549,26.9387],[-97.5385,26.9874],[-97.4518,26.984],[-97.4686,27.0697],[-97.4483,27.0914],[-97.4222,27.262],[-97.5432,27.229],[-97.6311,27.2425],[-97.6922,27.3348],[-97.5678,27.3178],[-97.4866,27.3845],[-97.4786,27.2994],[-97.4116,27.3226],[-97.3701,27.4077],[-97.3454,27.5079],[-97.2554,27.6921],[-97.333,27.7196],[-97.3882,27.7701],[-97.3781,27.8361],[-97.4786,27.8253],[-97.4795,27.8601],[-97.4008,27.8764],[-97.2468,27.8733],[-97.1919,27.8208],[-97.1297,27.9171],[-97.0253,28.0322],[-97.0609,28.088],[-97.135,28.0475],[-97.2033,28.0678],[-97.1719,28.1214],[-97.0324,28.1881],[-96.9842,28.1275],[-96.9122,28.1264],[-96.7873,28.2556],[-96.8097,28.29],[-96.7953,28.3646],[-96.8594,28.4142],[-96.7832,28.4004],[-96.7536,28.4351],[-96.7073,28.4056],[-96.7044,28.3473],[-96.6541,28.3262],[-96.433,28.4283],[-96.4053,28.4543],[-96.5674,28.5828],[-96.6129,28.5682],[-96.6112,28.6367],[-96.6648,28.6967],[-96.5861,28.725],[-96.5631,28.6378],[-96.4841,28.6085],[-96.4196,28.6479],[-96.4356,28.7381],[-96.3978,28.7371],[-96.3955,28.6806],[-96.3611,28.6267],[-96.3042,28.6459],[-96.2872,28.6836],[-96.1817,28.7072],[-96.2313,28.644],[-96.1569,28.6117],[-96.0297,28.6529],[-95.9797,28.6367],[-96.0356,28.5844],[-96.1444,28.5444],[-96.3353,28.4381],[-96.3186,28.4231],[-96.2253,28.4881],[-96.0886,28.5536],[-95.8684,28.6394],[-95.6614,28.7445],[-95.7868,28.6959],[-95.8947,28.6408],[-95.9608,28.6253],[-95.9271,28.6997],[-95.7864,28.7486],[-95.6542,28.7503],[-95.4397,28.86],[-95.3853,28.8672],[-95.2183,29.0052],[-95.1495,29.1802],[-95.1003,29.1759],[-95.0358,29.2133],[-94.9397,29.3203],[-94.8692,29.28],[-94.9258,29.2528],[-95.0451,29.1376],[-94.8237,29.2668],[-94.7253,29.3331],[-94.8702,29.2904],[-94.9074,29.3399],[-94.8663,29.374],[-94.8913,29.4338],[-94.9536,29.4723],[-95.0167,29.5569],[-94.9822,29.6022],[-95.0155,29.6385],[-94.981,29.6765],[-95.0535,29.7067],[-95.0994,29.7841],[-95.0683,29.8136],[-95.0175,29.7172],[-94.9358,29.6928],[-94.9097,29.6549],[-94.7974,29.7668],[-94.7306,29.7767],[-94.6951,29.7449],[-94.7,29.6429],[-94.7638,29.5243],[-94.5511,29.5743],[-94.5122,29.5164],[-94.6816,29.4538],[-94.7674,29.3865],[-94.7294,29.3699],[-94.6598,29.4381],[-94.5058,29.5054],[-94.1188,29.6527],[-93.9725,29.6829],[-93.8403,29.6914],[-93.8619,29.7241],[-93.8906,29.7456],[-93.9263,29.8165],[-93.8345,29.888],[-93.7901,29.9873],[-93.7036,30.0661],[-93.7326,30.0836],[-93.6964,30.1518],[-93.7204,30.209],[-93.7096,30.2893],[-93.764,30.3436],[-93.7573,30.3899],[-93.7039,30.4299],[-93.7057,30.5117],[-93.739,30.5415],[-93.6844,30.6347],[-93.6309,30.6797],[-93.5956,30.7642],[-93.5592,30.9146],[-93.569,31.0127],[-93.5106,31.0281],[-93.5642,31.0944],[-93.5339,31.1846],[-93.6012,31.1784],[-93.6155,31.2566],[-93.6895,31.3066],[-93.665,31.3657],[-93.6946,31.4405],[-93.7494,31.4686],[-93.7178,31.5026],[-93.7841,31.5287],[-93.8382,31.6021],[-93.7952,31.7023],[-93.837,31.7503],[-93.9015,31.8762],[-94.0419,31.9939],[-94.0456,33.0206],[-94.0445,33.5505],[-94.1673,33.5901],[-94.2346,33.5519],[-94.2873,33.5827],[-94.3255,33.5504],[-94.4018,33.555],[-94.468,33.5981],[-94.4728,33.6054],[-94.4629,33.6287],[-94.4492,33.643],[-94.4588,33.6466],[-94.4863,33.6411]]],[[[-97.2896,26.599],[-97.3613,26.8482],[-97.3793,26.9982],[-97.365,27.205],[-97.3358,27.3225],[-97.2814,27.4628],[-97.1575,27.6934],[-97.0475,27.8336],[-97.1003,27.8175],[-97.2314,27.6317],[-97.2672,27.5406],[-97.3606,27.3664],[-97.3556,27.3111],[-97.3831,27.2614],[-97.395,27.1219],[-97.3862,27.0853],[-97.3924,26.8874],[-97.3529,26.7321],[-97.2896,26.599]]],[[[-96.4067,28.3969],[-96.4555,28.3358],[-96.5431,28.315],[-96.6342,28.2606],[-96.7035,28.1985],[-96.7919,28.1886],[-96.8488,28.0646],[-96.7028,28.1773],[-96.5895,28.2492],[-96.4439,28.3153],[-96.4077,28.3437],[-96.4067,28.3969]]],[[[-97.0484,27.8415],[-96.9731,27.9444],[-96.8492,28.0703],[-96.8435,28.1087],[-96.9258,28.0878],[-96.9678,27.9869],[-97.0379,27.9038],[-97.0484,27.8415]]],[[[-97.2613,26.4287],[-97.319,26.5376],[-97.3362,26.5076],[-97.279,26.4343],[-97.1971,26.2499],[-97.1901,26.2729],[-97.2251,26.4065],[-97.2613,26.4287]]]]},"properties":{"id":"5f8e6c2b-5ead-4279-8b5b-0234b3a5a2cf","code":"TX","name":"Texas","abbreviation":"S-TX","parent_id":"d6157b38-3f86-49ef-8acd-93287d33c0d0"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-109.0449,36.9986],[-109.0409,38.1603],[-109.0607,38.2768],[-109.0596,38.6727],[-109.0538,39.0135],[-109.049,41],[-110.0001,40.9992],[-110.2764,40.9963],[-111.0456,40.9978],[-111.046,41.379],[-111.046989374,42.000501202],[-111.4479,42.0012],[-111.5833,42.0042],[-112.156,41.9981],[-112.164,42.0017],[-112.9579,41.999],[-113.8526,41.9898],[-114.0404,41.9934],[-114.040399971,41.993339785],[-114.0399,40.9647],[-114.0406,40.7968],[-114.0487,40.2161],[-114.0463,39.6464],[-114.052,38.9994],[-114.0491,38.8371],[-114.0494,38.0329],[-114.0541,37.6447],[-114.050505283,37.00000125],[-112.7447,37.0033],[-112.0013,37.0024],[-110.6102,37.0046],[-110.4719,36.9996],[-109.0449,36.9986]]]},"properties":{"id":"efb03e9b-d25c-469b-9a36-769ff82bcf6d","code":"UT","name":"Utah","abbreviation":"S-UT","parent_id":"9432f503-fcbe-4e87-8c25-56d19462434c"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.5101,45.0156],[-71.5533,45.0125],[-72.3084,45.0037],[-72.6318,45.014],[-73.0908,45.0153],[-73.3442,45.0103],[-73.3411,44.9199],[-73.3813,44.837],[-73.3369,44.7839],[-73.3645,44.7409],[-73.3889,44.6335],[-73.3812,44.5893],[-73.2998,44.4804],[-73.2947,44.4384],[-73.3374,44.3638],[-73.3163,44.2541],[-73.3927,44.1912],[-73.4434,44.0526],[-73.4107,44.0189],[-73.4101,43.9351],[-73.3783,43.8758],[-73.3933,43.8209],[-73.356,43.7651],[-73.4317,43.6439],[-73.4302,43.5834],[-73.3751,43.6233],[-73.3056,43.627],[-73.2581,43.5617],[-73.2506,43.5108],[-73.2789,42.8337],[-73.2754,42.7456],[-73.2675,42.7452],[-72.4566,42.7276],[-72.5321,42.7992],[-72.5483,42.8292],[-72.5563,42.8615],[-72.5377,42.892],[-72.5294,42.9111],[-72.53,42.9552],[-72.4689,42.9748],[-72.4657,43.0585],[-72.4349,43.1134],[-72.4531,43.1432],[-72.4341,43.2563],[-72.3951,43.3137],[-72.4127,43.3641],[-72.3816,43.4814],[-72.3738,43.5775],[-72.3378,43.5929],[-72.297,43.7071],[-72.2043,43.7703],[-72.1728,43.8813],[-72.0986,43.955],[-72.1154,43.9919],[-72.0519,44.0769],[-72.0373,44.0815],[-72.0428,44.1553],[-72.0693,44.1921],[-72.0656,44.2728],[-72.0564,44.2896],[-72.0282,44.3178],[-71.8196,44.352],[-71.7956,44.3949],[-71.7033,44.4138],[-71.5819,44.5006],[-71.5957,44.5189],[-71.5386,44.5829],[-71.6339,44.75],[-71.578,44.7893],[-71.5497,44.8627],[-71.4969,44.9075],[-71.5428,44.9837],[-71.5286,45.0026],[-71.5047,45.0079],[-71.5101,45.0156]]]},"properties":{"id":"3039123f-1e8d-45d9-9954-8344199bd0da","code":"VT","name":"Vermont","abbreviation":"S-VT","parent_id":"a781f1ba-2df2-4f17-9c69-141b9dcbfbb5"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.1205,38.9337],[-77.1323,38.9455],[-77.2114,38.9748],[-77.2482,38.9918],[-77.2433,39.0233],[-77.2706,39.0348],[-77.297,39.0517],[-77.3823,39.0644],[-77.4606,39.0794],[-77.5246,39.1428],[-77.5044,39.1799],[-77.4564,39.2284],[-77.4909,39.2511],[-77.5699,39.3082],[-77.624,39.3063],[-77.6746,39.3266],[-77.7197,39.3253],[-77.8299,39.1343],[-78.3473,39.4666],[-78.341,39.3527],[-78.4181,39.2562],[-78.4352,39.2003],[-78.4039,39.1717],[-78.5716,39.0333],[-78.6759,38.9275],[-78.7415,38.9242],[-78.7813,38.8923],[-78.866,38.7631],[-78.9947,38.8511],[-79.0547,38.7868],[-79.0934,38.6588],[-79.1277,38.6531],[-79.2072,38.4969],[-79.3177,38.4143],[-79.4746,38.4574],[-79.5443,38.5569],[-79.641,38.5917],[-79.6634,38.5184],[-79.6947,38.4921],[-79.6914,38.4319],[-79.738,38.3548],[-79.8082,38.3039],[-79.7882,38.2686],[-79.9178,38.1839],[-79.9267,38.1086],[-79.9992,37.9973],[-80.1648,37.8752],[-80.3074,37.6895],[-80.2215,37.6282],[-80.326,37.5667],[-80.2945,37.5159],[-80.4501,37.4333],[-80.5026,37.4789],[-80.55,37.4729],[-80.7709,37.3729],[-80.8575,37.4304],[-80.8808,37.3889],[-80.8504,37.3495],[-80.8985,37.3171],[-81.0939,37.2825],[-81.2276,37.2345],[-81.3612,37.3364],[-81.42,37.2724],[-81.5599,37.208],[-81.6788,37.2032],[-81.7731,37.2749],[-81.798,37.2835],[-81.8504,37.2873],[-81.9343,37.3797],[-81.9357,37.4379],[-81.9882,37.4839],[-81.9282,37.5141],[-81.9339,37.5195],[-81.9419,37.5153],[-81.9415,37.5203],[-81.9441,37.5316],[-81.9526,37.532],[-81.9673,37.5372],[-82.3523,37.268],[-82.555,37.2033],[-82.7206,37.1205],[-82.7198,37.0484],[-82.8653,36.9786],[-82.8698,36.9005],[-82.9615,36.861],[-83.0676,36.8541],[-83.1331,36.7845],[-83.1374,36.7438],[-83.3354,36.7041],[-83.4221,36.67],[-83.4979,36.6711],[-83.6632,36.612],[-83.6748,36.6012],[-83.2538,36.5942],[-82.2374,36.5967],[-81.9352,36.595],[-81.9233,36.6166],[-81.6475,36.6125],[-81.6758,36.589],[-81.3698,36.5735],[-80.8632,36.5598],[-80.6523,36.5584],[-80.2775,36.5433],[-79.5112,36.5391],[-78.9763,36.5447],[-78.5095,36.5421],[-78.125,36.5463],[-76.9174,36.544],[-76.9162,36.5511],[-76.1527,36.5504],[-76.1509,36.5504],[-76.0358,36.5508],[-76.013,36.5505],[-75.9825,36.5844],[-75.9928,36.6353],[-75.9434,36.7223],[-75.9172,36.6381],[-75.8842,36.6133],[-75.9525,36.7658],[-76.0015,36.9262],[-76.0906,36.9081],[-76.2271,36.9408],[-76.2775,36.9692],[-76.331,36.9606],[-76.3884,36.898],[-76.4831,36.897],[-76.4861,36.9561],[-76.5764,37.0197],[-76.6479,37.0368],[-76.6856,37.197],[-76.7474,37.1503],[-76.8042,37.2072],[-76.9,37.1992],[-76.9404,37.2369],[-76.8817,37.2567],[-76.7958,37.2328],[-76.7575,37.1914],[-76.6919,37.2231],[-76.6231,37.1979],[-76.6283,37.1261],[-76.4647,37.0277],[-76.4303,36.9656],[-76.3181,37.0126],[-76.2702,37.0878],[-76.2938,37.1264],[-76.4206,37.2233],[-76.4697,37.2136],[-76.6258,37.3131],[-76.7114,37.4444],[-76.5103,37.2722],[-76.5058,37.2461],[-76.3829,37.2657],[-76.4499,37.3811],[-76.4159,37.4086],[-76.3061,37.3278],[-76.2487,37.3758],[-76.2522,37.436],[-76.3596,37.5213],[-76.3125,37.5458],[-76.4306,37.6094],[-76.5331,37.6122],[-76.5906,37.6572],[-76.5998,37.7207],[-76.6803,37.7796],[-76.7234,37.7884],[-76.7945,37.8955],[-76.8527,37.9208],[-76.9286,37.9831],[-76.9164,38.0294],[-76.93,38.0732],[-77.06,38.106],[-77.0571,38.1408],[-77.1263,38.1367],[-77.1531,38.1758],[-77.0489,38.1579],[-77.0297,38.1031],[-76.9358,38.0805],[-76.9214,38.0683],[-76.9131,38.0516],[-76.8966,37.9895],[-76.7982,37.9245],[-76.7262,37.8362],[-76.5867,37.7714],[-76.5097,37.6425],[-76.4719,37.6661],[-76.4022,37.6273],[-76.2798,37.6195],[-76.3389,37.6533],[-76.3028,37.6897],[-76.3019,37.8258],[-76.2657,37.817],[-76.2372,37.8836],[-76.2683,37.9128],[-76.4136,37.9646],[-76.4733,38.015],[-76.5458,38.039],[-76.5363,38.0749],[-76.6314,38.1534],[-76.7016,38.1598],[-76.715,38.1025],[-76.7891,38.1697],[-76.8398,38.1638],[-76.9659,38.2121],[-76.9619,38.2573],[-77.0299,38.311],[-77.0135,38.3748],[-77.0726,38.3755],[-77.237,38.3312],[-77.3223,38.3371],[-77.297,38.3707],[-77.3266,38.4435],[-77.3036,38.5094],[-77.2574,38.5609],[-77.2392,38.6617],[-77.1581,38.6372],[-77.1504,38.6659],[-77.0423,38.7218],[-77.0523,38.7886],[-77.0318,38.8533],[-77.1105,38.9224],[-77.1205,38.9337]]],[[[-75.6458,37.9708],[-75.6425,37.9358],[-75.7142,37.9378],[-75.7378,37.9008],[-75.6928,37.8678],[-75.7431,37.7869],[-75.8133,37.7481],[-75.8869,37.6536],[-75.9825,37.4297],[-76.0168,37.324],[-76.0136,37.2088],[-75.9764,37.1547],[-75.98,37.0897],[-75.9419,37.0956],[-75.9281,37.2614],[-75.8956,37.3503],[-75.8306,37.3869],[-75.8058,37.4719],[-75.7575,37.4975],[-75.6847,37.4567],[-75.7278,37.5511],[-75.6581,37.4867],[-75.6961,37.5717],[-75.6492,37.6519],[-75.6053,37.62],[-75.58,37.7442],[-75.4164,37.8906],[-75.4364,37.9633],[-75.3775,38.0175],[-75.6237,37.9955],[-75.64,37.9783],[-75.6472,37.9735],[-75.6458,37.9708]]],[[[-75.8653,37.2892],[-75.8969,37.2789],[-75.9106,37.1758],[-75.8944,37.1189],[-75.8017,37.2006],[-75.8847,37.2044],[-75.8653,37.2892]]],[[[-75.2425,38.0286],[-75.3778,37.8936],[-75.3489,37.8806],[-75.2425,38.0286]]]]},"properties":{"id":"ad37a984-9c16-4d6f-9f92-1871dd582b6e","code":"VA","name":"Virginia","abbreviation":"S-VA","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-117.0391,48.5904],[-117.0294,48.9998],[-117.4335,49.0009],[-121.9554,49],[-122.7539,49.0033],[-122.7916,48.9798],[-122.7514,48.9111],[-122.7866,48.8855],[-122.7192,48.8494],[-122.7056,48.8003],[-122.6085,48.7628],[-122.5356,48.7754],[-122.5038,48.6568],[-122.4261,48.6],[-122.4886,48.5358],[-122.4709,48.469],[-122.585,48.4661],[-122.6147,48.5225],[-122.6658,48.4847],[-122.6575,48.4083],[-122.558,48.4281],[-122.5331,48.3747],[-122.4847,48.3714],[-122.3747,48.3008],[-122.3972,48.25],[-122.4678,48.2686],[-122.5311,48.2497],[-122.5372,48.1839],[-122.49,48.1206],[-122.4419,48.1307],[-122.4783,48.1878],[-122.4486,48.2325],[-122.3922,48.2303],[-122.3533,48.1879],[-122.362,48.1204],[-122.2378,48.0303],[-122.2309,47.9706],[-122.3066,47.9498],[-122.3373,47.8499],[-122.3954,47.8066],[-122.3736,47.7266],[-122.4358,47.6619],[-122.3369,47.6008],[-122.4209,47.5761],[-122.3259,47.3934],[-122.324,47.3504],[-122.429,47.3193],[-122.435,47.2622],[-122.5101,47.307],[-122.5631,47.2443],[-122.5916,47.1767],[-122.685,47.0978],[-122.7858,47.127],[-122.8149,47.1781],[-122.9077,47.1403],[-122.912,47.0556],[-122.9511,47.0974],[-123,47.0742],[-122.9421,47.1718],[-123.0259,47.1095],[-123.0195,47.1524],[-122.9353,47.2057],[-122.9276,47.2804],[-122.846,47.3114],[-122.8255,47.353],[-122.7877,47.2989],[-122.8308,47.244],[-122.7721,47.1685],[-122.7212,47.2214],[-122.7532,47.2894],[-122.6805,47.3664],[-122.6733,47.2881],[-122.5765,47.2572],[-122.572,47.3269],[-122.5385,47.376],[-122.5319,47.4697],[-122.4957,47.5101],[-122.5467,47.5249],[-122.5698,47.5842],[-122.6077,47.5469],[-122.5909,47.6347],[-122.6142,47.6533],[-122.5539,47.7464],[-122.4728,47.7484],[-122.5133,47.8806],[-122.5478,47.9189],[-122.5735,47.8746],[-122.6846,47.7979],[-122.7487,47.7201],[-122.7532,47.6678],[-122.9155,47.6218],[-123.0311,47.5104],[-123.1194,47.39],[-123.0242,47.3613],[-122.901,47.4225],[-122.9116,47.3895],[-123.0192,47.3547],[-123.1187,47.3391],[-123.158,47.3703],[-123.1104,47.4551],[-123.0578,47.5014],[-122.982,47.615],[-122.8889,47.6903],[-122.8645,47.7699],[-122.7866,47.8038],[-122.8322,47.6918],[-122.7715,47.6934],[-122.7431,47.8092],[-122.6864,47.8325],[-122.693,47.8678],[-122.6304,47.8846],[-122.6809,47.9324],[-122.7347,48.0334],[-122.8008,48.0867],[-122.7637,48.1429],[-122.8308,48.1345],[-122.8835,48.0773],[-122.827,48.0442],[-122.8399,48.002],[-122.9153,48.0958],[-122.9752,48.097],[-123.0385,48.0547],[-123.0623,48.1182],[-123.1267,48.1542],[-123.1769,48.155],[-123.2408,48.1172],[-123.3956,48.1144],[-123.5553,48.1511],[-123.6275,48.1389],[-123.6725,48.1631],[-123.8633,48.1542],[-124.0495,48.1776],[-124.1292,48.2206],[-124.2491,48.2641],[-124.275,48.2545],[-124.3844,48.285],[-124.5646,48.3676],[-124.7178,48.3908],[-124.6595,48.327],[-124.7342,48.1647],[-124.6872,48.0978],[-124.6614,47.9461],[-124.6229,47.8863],[-124.4969,47.8225],[-124.4314,47.7464],[-124.3667,47.5844],[-124.3203,47.3558],[-124.2339,47.2847],[-124.1861,47.1333],[-124.1723,46.9931],[-124.1778,46.9261],[-124.1272,46.9489],[-124.1492,47.0283],[-124.0292,47.0299],[-124.0203,46.9911],[-123.9462,46.9679],[-123.8231,46.9572],[-123.9826,46.9231],[-124.0861,46.8617],[-124.0969,46.7464],[-124.0201,46.7129],[-123.8939,46.75],[-123.8512,46.703],[-123.9222,46.6731],[-123.9586,46.6115],[-123.8947,46.5486],[-123.9439,46.4756],[-123.9054,46.4291],[-123.9664,46.3792],[-124.0147,46.3811],[-124.0311,46.4936],[-124.0236,46.5842],[-124.07,46.6364],[-124.0594,46.3956],[-124.0778,46.2842],[-124.0228,46.3142],[-123.8733,46.2406],[-123.8054,46.2836],[-123.7586,46.2755],[-123.6969,46.3067],[-123.6689,46.267],[-123.5642,46.2606],[-123.4976,46.2738],[-123.4572,46.2687],[-123.4074,46.2135],[-123.2832,46.1519],[-123.1595,46.1938],[-123.1246,46.1912],[-123.0912,46.1772],[-123.0641,46.1741],[-123.0448,46.1662],[-122.9392,46.1003],[-122.8723,46.0809],[-122.8753,46.0383],[-122.8111,45.9629],[-122.7779,45.8719],[-122.7883,45.815],[-122.7587,45.7688],[-122.7618,45.67],[-122.745,45.6533],[-122.6181,45.6174],[-122.4386,45.5799],[-122.4062,45.5858],[-122.367,45.5822],[-122.2903,45.5627],[-122.2668,45.5598],[-121.909,45.6552],[-121.8991,45.6784],[-121.8091,45.7091],[-121.7104,45.6958],[-121.5342,45.7267],[-121.4183,45.6928],[-121.3455,45.7066],[-121.2167,45.6719],[-121.1763,45.6064],[-121.079,45.6538],[-120.9011,45.6453],[-120.8492,45.6744],[-120.6896,45.7173],[-120.631,45.7478],[-120.554,45.7401],[-120.492,45.6971],[-120.2005,45.7308],[-120.1769,45.7587],[-119.978,45.8253],[-119.8301,45.848],[-119.6765,45.8572],[-119.6103,45.9167],[-119.5059,45.9054],[-119.26,45.9394],[-119.185,45.9265],[-119.0284,45.9679],[-118.9857,46.0036],[-117.7882,46.0018],[-117.3534,45.997],[-116.912940083,45.9971998],[-116.92,46.0146],[-116.9383,46.0474],[-116.9569,46.0753],[-116.9218,46.1711],[-116.9631,46.2032],[-116.987,46.2957],[-117.0605,46.3629],[-117.038,46.4288],[-117.0422,47.3665],[-117.0426,48.0459],[-117.0391,48.5904]]],[[[-122.602,48.4102],[-122.6647,48.4017],[-122.6705,48.3603],[-122.7539,48.258],[-122.7637,48.2155],[-122.6794,48.1544],[-122.6208,48.1604],[-122.5986,48.1098],[-122.5987,48.0269],[-122.5414,47.9936],[-122.4811,47.9919],[-122.4308,47.9139],[-122.3492,47.959],[-122.3767,48.0345],[-122.4462,48.0528],[-122.5214,48.0975],[-122.5264,48.0163],[-122.5717,48.1027],[-122.5672,48.1478],[-122.6579,48.2826],[-122.5064,48.3103],[-122.5606,48.3464],[-122.602,48.4102]]],[[[-122.8847,48.7119],[-122.9394,48.7095],[-123.0302,48.6307],[-122.9578,48.6319],[-122.9482,48.5975],[-122.8145,48.6064],[-122.7513,48.665],[-122.8847,48.7119]]],[[[-123.1406,48.6236],[-123.1764,48.5619],[-123.133,48.4981],[-123.0368,48.458],[-123.0092,48.4739],[-123.0166,48.5619],[-123.1406,48.6236]]],[[[-122.4533,47.5013],[-122.5132,47.4529],[-122.5268,47.3421],[-122.4266,47.402],[-122.4533,47.5013]]],[[[-122.5339,47.7056],[-122.5652,47.7108],[-122.5778,47.5994],[-122.4982,47.597],[-122.5062,47.703],[-122.5339,47.7056]]],[[[-122.8825,48.5695],[-122.9222,48.5394],[-122.9457,48.4656],[-122.8599,48.4304],[-122.8825,48.5695]]],[[[-122.8472,47.3003],[-122.9194,47.2761],[-122.9253,47.2328],[-122.8747,47.1642],[-122.8406,47.2078],[-122.8711,47.2469],[-122.8472,47.3003]]],[[[-122.6895,48.1028],[-122.7419,48.0491],[-122.6881,48.0081],[-122.6895,48.1028]]],[[[-122.6417,48.5878],[-122.6522,48.5306],[-122.583,48.5511],[-122.6417,48.5878]]],[[[-123.9789,46.4947],[-124.0053,46.4633],[-123.9417,46.4108],[-123.9789,46.4947]]],[[[-122.7097,48.6067],[-122.7216,48.5403],[-122.6758,48.5661],[-122.7097,48.6067]]],[[[-122.4385,45.5776],[-122.4104,45.5743],[-122.3982,45.5782],[-122.4041,45.5826],[-122.4385,45.5776]]],[[[-122.2849,45.5532],[-122.2902,45.5581],[-122.33,45.5608],[-122.3273,45.5576],[-122.2849,45.5532]]],[[[-122.8784,46.0694],[-122.8851,46.0734],[-122.8786,46.057],[-122.876,46.057],[-122.8742,46.0616],[-122.8784,46.0694]]]]},"properties":{"id":"85e6e72c-362a-4236-badf-409608f638be","code":"WA","name":"Washington","abbreviation":"S-WA","parent_id":"da91c585-dacb-46b4-998a-dabe27e6d774"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.9673,37.5372],[-81.9526,37.532],[-81.9441,37.5316],[-81.9415,37.5203],[-81.9419,37.5153],[-81.9339,37.5195],[-81.9282,37.5141],[-81.9882,37.4839],[-81.9357,37.4379],[-81.9343,37.3797],[-81.8504,37.2873],[-81.798,37.2835],[-81.7731,37.2749],[-81.6788,37.2032],[-81.5599,37.208],[-81.42,37.2724],[-81.3612,37.3364],[-81.2276,37.2345],[-81.0939,37.2825],[-80.8985,37.3171],[-80.8504,37.3495],[-80.8808,37.3889],[-80.8575,37.4304],[-80.7709,37.3729],[-80.55,37.4729],[-80.5026,37.4789],[-80.4501,37.4333],[-80.2945,37.5159],[-80.326,37.5667],[-80.2215,37.6282],[-80.3074,37.6895],[-80.1648,37.8752],[-79.9992,37.9973],[-79.9267,38.1086],[-79.9178,38.1839],[-79.7882,38.2686],[-79.8082,38.3039],[-79.738,38.3548],[-79.6914,38.4319],[-79.6947,38.4921],[-79.6634,38.5184],[-79.641,38.5917],[-79.5443,38.5569],[-79.4746,38.4574],[-79.3177,38.4143],[-79.2072,38.4969],[-79.1277,38.6531],[-79.0934,38.6588],[-79.0547,38.7868],[-78.9947,38.8511],[-78.866,38.7631],[-78.7813,38.8923],[-78.7415,38.9242],[-78.6759,38.9275],[-78.5716,39.0333],[-78.4039,39.1717],[-78.4352,39.2003],[-78.4181,39.2562],[-78.341,39.3527],[-78.3473,39.4666],[-77.8299,39.1343],[-77.7197,39.3253],[-77.7483,39.3334],[-77.7579,39.3442],[-77.7483,39.3516],[-77.7503,39.3838],[-77.7371,39.3873],[-77.7395,39.404],[-77.7516,39.424],[-77.7923,39.4331],[-77.819,39.4956],[-77.8445,39.5002],[-77.8454,39.5047],[-77.8294,39.517],[-77.8259,39.5226],[-77.8357,39.5327],[-77.8628,39.5168],[-77.8659,39.5198],[-77.8648,39.5384],[-77.8443,39.5664],[-77.8298,39.5847],[-77.8394,39.6069],[-77.8822,39.6183],[-77.939,39.588],[-78.0036,39.6014],[-78.1021,39.6807],[-78.1794,39.6976],[-78.2013,39.6799],[-78.2727,39.6186],[-78.3551,39.6416],[-78.4206,39.6253],[-78.4664,39.5202],[-78.4992,39.5191],[-78.5213,39.5266],[-78.5767,39.5283],[-78.6803,39.5442],[-78.7333,39.579],[-78.744,39.5818],[-78.7646,39.5871],[-78.7982,39.6328],[-78.8376,39.5673],[-78.9358,39.4842],[-78.9645,39.4397],[-79.013,39.4646],[-79.1029,39.4743],[-79.1091,39.432],[-79.1564,39.4177],[-79.2135,39.364],[-79.2544,39.3548],[-79.2929,39.3005],[-79.3427,39.2964],[-79.3597,39.2765],[-79.3754,39.2727],[-79.4045,39.2467],[-79.4212,39.235],[-79.4499,39.2125],[-79.4872,39.2067],[-79.4774,39.7216],[-80.5171,39.7212],[-80.5196,39.9639],[-80.5191,40.6385],[-80.6235,40.6208],[-80.6626,40.5746],[-80.597,40.4644],[-80.6131,40.4066],[-80.6,40.3297],[-80.6172,40.2691],[-80.6564,40.2415],[-80.731,40.0867],[-80.7531,39.9193],[-80.8056,39.905],[-80.833,39.7934],[-80.8668,39.7689],[-80.8292,39.716],[-80.8711,39.6329],[-80.9312,39.6141],[-81.0866,39.4989],[-81.127,39.448],[-81.2498,39.3883],[-81.3835,39.3438],[-81.4329,39.4073],[-81.5531,39.3441],[-81.5642,39.2747],[-81.6504,39.2784],[-81.752,39.1819],[-81.7397,39.1104],[-81.806,39.0841],[-81.7637,39.0209],[-81.7814,38.9249],[-81.8236,38.946],[-81.8543,38.8939],[-81.9224,38.8879],[-81.8995,38.9318],[-81.9315,38.9874],[-82.0361,39.0248],[-82.0891,38.9725],[-82.1428,38.887],[-82.1431,38.8407],[-82.2173,38.7882],[-82.1814,38.7112],[-82.1728,38.6394],[-82.1694,38.6214],[-82.1973,38.592],[-82.292,38.5731],[-82.3183,38.455],[-82.4911,38.4171],[-82.558,38.4025],[-82.5928,38.4186],[-82.578,38.2508],[-82.637,38.1407],[-82.5495,38.0718],[-82.5085,38.0021],[-82.4701,37.9863],[-82.4874,37.9182],[-82.4201,37.8853],[-82.4178,37.8481],[-82.3119,37.765],[-82.2901,37.6708],[-82.2231,37.6542],[-82.1352,37.5965],[-82.1293,37.5525],[-81.9908,37.5404],[-81.9642,37.544],[-81.9673,37.5372]]]},"properties":{"id":"a006da6a-05cf-4f21-820e-25c5ba8c2531","code":"WV","name":"West Virginia","abbreviation":"S-WV","parent_id":"3596a904-2af8-4c91-a48f-93f16d9acc81"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.6415,42.5093],[-90.641120407,42.509297552],[-90.4244,42.5079],[-89.6811,42.5074],[-88.7719,42.4957],[-88.6288,42.4985],[-87.0181,42.4947],[-87.1233,43.1971],[-87.1552,43.4436],[-87.1482,43.571],[-87.1248,43.7105],[-87.0814,43.8869],[-86.9652,44.2582],[-86.8627,44.5335],[-86.7916,44.6901],[-86.7029,44.8527],[-86.6438,44.934],[-86.5085,45.0665],[-86.4284,45.1272],[-86.2496,45.2338],[-86.7605,45.444],[-87.0963,45.442],[-87.1797,45.3424],[-87.3075,45.243],[-87.4035,45.2045],[-87.4373,45.0778],[-87.6604,45.1078],[-87.7408,45.1755],[-87.7118,45.2647],[-87.6512,45.3461],[-87.6955,45.3887],[-87.7601,45.3493],[-87.8354,45.3517],[-87.8775,45.38],[-87.8598,45.4398],[-87.7856,45.4929],[-87.81,45.5444],[-87.7827,45.6095],[-87.826,45.6626],[-87.7842,45.6753],[-87.8775,45.7536],[-87.9641,45.7601],[-87.9971,45.7967],[-88.0641,45.7809],[-88.1349,45.8225],[-88.0728,45.8721],[-88.0954,45.9141],[-88.1985,45.9539],[-88.3262,45.9592],[-88.3761,45.9911],[-88.4173,45.9795],[-88.5099,46.0174],[-88.6016,46.0189],[-88.6195,45.9884],[-88.6762,46.0111],[-88.8103,46.0238],[-89.0854,46.1365],[-89.3759,46.1949],[-90.1178,46.3366],[-90.1592,46.4302],[-90.2168,46.5055],[-90.308,46.5187],[-90.3313,46.5555],[-90.3895,46.5375],[-90.4149,46.5602],[-90.4187,46.567],[-89.958,47.2912],[-90.6631,47.3025],[-91.4743,46.9336],[-92.021,46.7059],[-92.0868,46.7485],[-92.1403,46.738],[-92.2124,46.6507],[-92.2883,46.6679],[-92.2899,46.0706],[-92.3581,46.0097],[-92.422,46.0211],[-92.4738,45.9732],[-92.6714,45.9152],[-92.732,45.8681],[-92.7849,45.762],[-92.8685,45.7064],[-92.8719,45.6918],[-92.8808,45.5744],[-92.7722,45.5679],[-92.644,45.4376],[-92.7036,45.3262],[-92.7583,45.2904],[-92.7467,45.1076],[-92.7982,45.0746],[-92.7527,44.9527],[-92.766,44.8308],[-92.8073,44.7524],[-92.7901,44.7381],[-92.737,44.7173],[-92.5721,44.6031],[-92.5448,44.5686],[-92.3664,44.5582],[-92.3154,44.5407],[-92.2847,44.4821],[-92.2308,44.4463],[-92.0862,44.4113],[-91.9451,44.3428],[-91.9151,44.3147],[-91.9152,44.3083],[-91.8916,44.2384],[-91.8736,44.2057],[-91.8643,44.197],[-91.8402,44.1847],[-91.8119,44.1605],[-91.7829,44.1478],[-91.5708,44.0278],[-91.4641,44.0089],[-91.429,43.9924],[-91.2791,43.8407],[-91.2639,43.7949],[-91.2554,43.7344],[-91.2672,43.6233],[-91.2547,43.6069],[-91.2318,43.5844],[-91.2176,43.5132],[-91.22,43.5023],[-91.2227,43.4769],[-91.2035,43.3527],[-91.1004,43.3118],[-91.0621,43.256],[-91.1755,43.1374],[-91.1765,43.0915],[-91.1444,42.9104],[-91.0999,42.875],[-91.0517,42.7397],[-90.9542,42.6872],[-90.706,42.6356],[-90.6858,42.5984],[-90.6635,42.5587],[-90.6347,42.5241],[-90.6363,42.5146],[-90.6415,42.5093]]]},"properties":{"id":"679e336c-5eb1-42d1-b49f-7ff3052a78ee","code":"WI","name":"Wisconsin","abbreviation":"S-WI","parent_id":"3f9f1ae5-bc22-44a7-b90b-3a96a72495de"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.046989374,42.000501202],[-111.046,41.379],[-111.0456,40.9978],[-110.2764,40.9963],[-110.0001,40.9992],[-109.049,41],[-108.3781,40.9997],[-107.9154,41.0029],[-107.0021,41.0044],[-106.4481,41.0035],[-106.3171,40.9994],[-104.83,40.9996],[-104.5679,41.0029],[-104.0528,41.0017],[-104.0527,43.002797942],[-104.0527,43.0028],[-104.057099843,44.998628693],[-104.057099868,44.998628693],[-105.9196,45.0017],[-106.0007,44.9967],[-107.0009,44.9972],[-107.2305,45.0007],[-108.2889,45.0018],[-109.0827,45.001],[-109.1756,45.0042],[-110.1325,45.0022],[-110.2006,44.9942],[-110.7072,44.9929],[-110.7756,45.0019],[-111.053,44.9999],[-111.0551,44.6669],[-111.0487,44.4772],[-111.045,43.5061],[-111.0446,42.7889],[-111.0477,42.4469],[-111.046989374,42.000501202]]]},"properties":{"id":"f3d192a9-14ce-44e0-b756-51761fa67eb2","code":"WY","name":"Wyoming","abbreviation":"S-WY","parent_id":"1f30181c-ab24-4bfc-989c-162d4b17a83e"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.022087096,17.977361679],[-65.914024352,17.975973129],[-65.830139159,18.019027711],[-65.761253,18.154585],[-65.725418,18.188194],[-65.604584,18.210417],[-65.62764,18.259306],[-65.619308,18.365973],[-65.666527,18.361805],[-65.814857483,18.409305572],[-65.904861,18.453194],[-66.005142212,18.44430542],[-66.185974001,18.46986],[-66.284584046,18.471248627],[-66.397636414,18.49319458],[-66.452919007,18.469305038],[-66.622642518,18.494026184],[-66.702079773,18.474027635],[-66.781806946,18.491804123],[-66.9118042,18.48374939],[-67.090698243,18.515972138],[-67.169303894,18.480138779],[-67.163749696,18.411804199],[-67.270416259,18.366527557],[-67.235137939,18.299304962],[-67.195419312,18.290138245],[-67.153198,18.204306],[-67.185417,18.165974],[-67.181808,18.112638],[-67.215416,17.982916],[-67.105698,17.945415],[-67.062363,17.973747],[-66.987915,17.970415],[-66.953751,17.932362],[-66.838470459,17.949306489],[-66.770141602,18.005973817],[-66.672363,17.965973],[-66.578476,17.961529],[-66.459305,17.989584],[-66.392082,17.946529],[-66.317085,17.977083],[-66.237083,17.926527],[-66.206802,17.962641],[-66.15486145,17.929304122],[-66.022087096,17.977361679]]],[[[-65.390976,18.161806],[-65.57708,18.119583],[-65.542641,18.080973],[-65.423195,18.095972],[-65.363747,18.130138],[-65.390976,18.161806]]],[[[-67.859863,18.121248001],[-67.912086,18.120419],[-67.945968999,18.084028001],[-67.897362001,18.052360999],[-67.845139,18.081246999],[-67.859863,18.121248001]]],[[[-65.337082,18.349028],[-65.282639,18.280416],[-65.272636,18.331249],[-65.337082,18.349028]]]]},"properties":{"id":"bf65ce2d-4a03-4786-9e2b-6ba3f7b5c231","code":"PRI","name":"Puerto Rico","abbreviation":"S-PRI","parent_id":"935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.664306641,17.714860916],[-64.580696,17.747357999],[-64.655135999,17.763472],[-64.709587098,17.747083663],[-64.747642517,17.783750534],[-64.894584655,17.747358323],[-64.883193971,17.685693741],[-64.740417,17.695972],[-64.664306641,17.714860916]]],[[[-64.888191,18.35486],[-64.963752999,18.372084001],[-65.027359,18.362919],[-64.905975,18.310141],[-64.840698,18.317638],[-64.888191,18.35486]]],[[[-64.762916565,18.321527481],[-64.699585,18.303749],[-64.744026,18.365973],[-64.762916565,18.321527481]]]]},"properties":{"id":"5dfb4c37-7837-4425-bc6d-d80979bc14b3","code":"VIR","name":"Virgin Islands, U.S.","abbreviation":"S-VIR","parent_id":"935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-170.680638631,-14.282476107],[-170.567497197,-14.269325997],[-170.672442928,-14.241035743],[-170.732063743,-14.282688197],[-170.82071228,-14.300050544],[-170.759218852,-14.373241822],[-170.680638631,-14.282476107]]],[[[-169.420166016,-14.234145385],[-169.501431552,-14.216898051],[-169.491531372,-14.271703856],[-169.420166016,-14.234145385]]]]},"properties":{"id":"4e97338e-1941-4bb9-8e6c-c77a7d2a1549","code":"OPI","name":"Other Pacific Islands","abbreviation":"S-OPI","parent_id":"a53380c2-83da-4713-bc27-3e3310ebb65e"}}]} \ No newline at end of file +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-88.3994, 30.395], + [-88.3577, 30.4057], + [-88.1881, 30.3661], + [-88.1909, 30.3181], + [-88.1294, 30.3383], + [-88.1073, 30.3782], + [-88.0872, 30.5669], + [-88.0117, 30.6872], + [-87.9696, 30.7098], + [-87.9142, 30.6508], + [-87.9021, 30.5477], + [-87.9372, 30.4829], + [-87.9075, 30.4103], + [-87.7596, 30.2949], + [-87.7667, 30.2639], + [-87.9325, 30.2311], + [-87.8289, 30.2269], + [-87.5581, 30.2714], + [-87.5092, 30.3422], + [-87.3997, 30.4236], + [-87.4353, 30.4873], + [-87.445, 30.5068], + [-87.4468, 30.5228], + [-87.4421, 30.5365], + [-87.429, 30.5525], + [-87.4265, 30.5605], + [-87.4015, 30.6059], + [-87.3939, 30.6286], + [-87.3958, 30.6354], + [-87.4016, 30.6595], + [-87.4328, 30.6889], + [-87.5353, 30.7484], + [-87.6372, 30.867], + [-87.5921, 30.9539], + [-87.5913, 30.9713], + [-87.6012, 31.0004], + [-86.772, 31], + [-86.7016, 30.9956], + [-86.0354, 30.9943], + [-85.4918, 30.9967], + [-85.0035, 31.0021], + [-85.0049, 31.0149], + [-85.0106, 31.028], + [-85.0293, 31.0761], + [-85.1093, 31.1911], + [-85.1171, 31.2776], + [-85.0454, 31.5443], + [-85.0674, 31.627], + [-85.1257, 31.6948], + [-85.1445, 31.7818], + [-85.1383, 31.8274], + [-85.1175, 31.9124], + [-85.0862, 31.9407], + [-85.0522, 32.089], + [-85.0645, 32.1315], + [-85.0489, 32.1441], + [-84.9775, 32.1928], + [-84.8935, 32.2646], + [-84.9997, 32.3223], + [-84.9824, 32.4057], + [-85.0048, 32.5172], + [-85.075, 32.5885], + [-85.1149, 32.6962], + [-85.1253, 32.7789], + [-85.1693, 32.8117], + [-85.2245, 33.0693], + [-85.4115, 34.0299], + [-85.4899, 34.4162], + [-85.573, 34.8029], + [-85.6055, 34.9855], + [-85.8477, 34.9889], + [-86.3187, 34.9921], + [-86.8844, 34.9924], + [-87.225499309, 35.000224287], + [-87.2288, 35.0003], + [-87.478331452, 35.003295652], + [-87.612903911, 35.004911209], + [-87.6203, 35.005], + [-88.0795, 35.007], + [-88.2029, 35.003], + [-88.199696765, 34.997800227], + [-88.199696512, 34.997799817], + [-88.1883, 34.9793], + [-88.1525, 34.9269], + [-88.098, 34.8964], + [-88.1535, 34.4881], + [-88.2067, 34.0458], + [-88.2474, 33.7499], + [-88.4262, 32.262], + [-88.472, 31.9], + [-88.4507, 31.444], + [-88.4101, 30.7033], + [-88.3994, 30.395] + ] + ] + }, + "properties": { + "id": "4ebfdac2-f0db-480a-988c-435205270b3f", + "code": "AL", + "name": "Alabama", + "abbreviation": "S-AL", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-141.3146, 60.0542], + [-141.2693, 60.0078], + [-141.2954, 59.9363], + [-141.3678, 59.9307], + [-141.4631, 59.8853], + [-140.9773, 59.7684], + [-140.9064, 59.7424], + [-140.6681, 59.7105], + [-140.3441, 59.6939], + [-140.2316, 59.704], + [-140.1488, 59.74], + [-139.9576, 59.7834], + [-140.1333, 59.8056], + [-140.1734, 59.7684], + [-140.2312, 59.7674], + [-140.248, 59.806], + [-140.1671, 59.8037], + [-140.0438, 59.8387], + [-139.9326, 59.7917], + [-139.8044, 59.8184], + [-139.7121, 59.9188], + [-139.6031, 59.9521], + [-139.6004, 59.9876], + [-139.5349, 60.0469], + [-139.4958, 60.0021], + [-139.4293, 60.0021], + [-139.2529, 59.8602], + [-139.1405, 59.8625], + [-139.0483, 59.8406], + [-139.1922, 59.8417], + [-139.3006, 59.8194], + [-139.2772, 59.7864], + [-139.3211, 59.755], + [-139.2711, 59.6925], + [-139.2283, 59.6061], + [-139.2989, 59.5611], + [-139.3567, 59.5897], + [-139.2928, 59.6403], + [-139.3497, 59.7461], + [-139.3345, 59.8216], + [-139.3, 59.8524], + [-139.4722, 59.9973], + [-139.5349, 59.9366], + [-139.6289, 59.9022], + [-139.6006, 59.8047], + [-139.5422, 59.7367], + [-139.4717, 59.7031], + [-139.5878, 59.6458], + [-139.6653, 59.5663], + [-139.6967, 59.6197], + [-139.7328, 59.5475], + [-139.8378, 59.5581], + [-139.8567, 59.5353], + [-139.63, 59.4569], + [-139.4111, 59.4119], + [-139.4006, 59.3797], + [-139.2911, 59.3867], + [-139.1894, 59.3222], + [-138.8938, 59.2388], + [-138.6267, 59.1281], + [-138.4806, 59.11], + [-138.1858, 59.0168], + [-137.9506, 58.8861], + [-137.925, 58.8422], + [-137.9294, 58.7831], + [-137.7817, 58.7181], + [-137.6739, 58.6467], + [-137.515, 58.6636], + [-137.5122, 58.6428], + [-137.6428, 58.6025], + [-137.5761, 58.5917], + [-137.3978, 58.5064], + [-137.16, 58.4239], + [-137.095, 58.3814], + [-137.0128, 58.4106], + [-136.8406, 58.365], + [-136.8578, 58.3167], + [-136.7938, 58.2941], + [-136.7067, 58.2958], + [-136.7325, 58.2595], + [-136.665, 58.2086], + [-136.5828, 58.2272], + [-136.5647, 58.2624], + [-136.6067, 58.3003], + [-136.5422, 58.3322], + [-136.485, 58.2994], + [-136.4378, 58.315], + [-136.3755, 58.2986], + [-136.3706, 58.3704], + [-136.3125, 58.3783], + [-136.2828, 58.315], + [-136.2028, 58.3422], + [-136.1004, 58.3457], + [-136.0383, 58.3831], + [-136.0992, 58.513], + [-136.1867, 58.5097], + [-136.1767, 58.5614], + [-136.2045, 58.6133], + [-136.3155, 58.671], + [-136.3933, 58.6175], + [-136.5211, 58.5936], + [-136.3496, 58.6867], + [-136.3913, 58.7176], + [-136.5793, 58.7806], + [-136.4932, 58.7915], + [-136.5617, 58.8324], + [-136.6467, 58.8406], + [-136.7467, 58.8772], + [-137.0139, 58.9042], + [-136.9417, 58.9178], + [-136.9172, 58.9494], + [-137.0433, 59.0206], + [-137.0311, 59.0618], + [-136.8754, 58.9629], + [-136.6236, 58.9032], + [-136.6918, 58.9976], + [-136.5769, 58.9139], + [-136.5328, 58.9214], + [-136.4883, 58.8369], + [-136.3964, 58.8168], + [-136.2517, 58.7525], + [-136.1774, 58.7545], + [-136.106, 58.8639], + [-136.1533, 59.0061], + [-136.0601, 58.9284], + [-136.0598, 58.8537], + [-135.9872, 58.8614], + [-135.92, 58.905], + [-135.8044, 58.9036], + [-135.7906, 58.8867], + [-135.9444, 58.8775], + [-136.0145, 58.844], + [-136.0806, 58.8281], + [-136.0828, 58.8076], + [-135.9633, 58.7036], + [-135.8905, 58.5753], + [-135.8522, 58.5386], + [-135.8977, 58.4488], + [-135.9082, 58.379], + [-135.7044, 58.3956], + [-135.62, 58.4269], + [-135.475, 58.3756], + [-135.4579, 58.4075], + [-135.5155, 58.4756], + [-135.4529, 58.4561], + [-135.3978, 58.3254], + [-135.314, 58.2459], + [-135.2222, 58.2361], + [-135.1627, 58.2088], + [-135.09, 58.24], + [-135.1071, 58.2658], + [-135.0535, 58.3464], + [-135.1651, 58.5634], + [-135.2389, 58.6192], + [-135.1394, 58.6172], + [-135.227, 58.7178], + [-135.2467, 58.7908], + [-135.2839, 58.8183], + [-135.4022, 58.9728], + [-135.3822, 59.1017], + [-135.4406, 59.1132], + [-135.4756, 59.2269], + [-135.3849, 59.1731], + [-135.37, 59.1127], + [-135.3083, 59.0817], + [-135.3597, 59.2004], + [-135.4306, 59.2258], + [-135.3618, 59.4494], + [-135.3286, 59.4442], + [-135.3587, 59.3718], + [-135.3711, 59.2653], + [-135.2849, 59.1974], + [-135.2036, 59.0704], + [-135.1772, 58.9992], + [-135.1533, 58.8551], + [-135.0267, 58.7328], + [-135.0268, 58.7899], + [-134.9523, 58.7952], + [-134.9203, 58.6804], + [-134.9903, 58.6765], + [-134.8405, 58.5184], + [-134.7878, 58.495], + [-134.7781, 58.3954], + [-134.7267, 58.3717], + [-134.6467, 58.3867], + [-134.6367, 58.3409], + [-134.5389, 58.3478], + [-134.4985, 58.3432], + [-134.2134, 58.2045], + [-134.1494, 58.2006], + [-134.1037, 58.2492], + [-134.1405, 58.3061], + [-134.0578, 58.3325], + [-134.0161, 58.4012], + [-133.9795, 58.3197], + [-134.0816, 58.2794], + [-134.0672, 58.0928], + [-134.05, 58.0617], + [-133.8888, 57.9741], + [-133.786, 58.009], + [-133.7761, 58.0639], + [-133.7117, 57.9953], + [-133.6939, 57.9372], + [-133.7619, 57.9954], + [-133.8306, 57.97], + [-133.8501, 57.934], + [-133.6967, 57.7914], + [-133.6322, 57.7914], + [-133.6276, 57.8454], + [-133.5744, 57.9178], + [-133.5798, 57.8311], + [-133.5607, 57.7761], + [-133.4247, 57.7225], + [-133.3297, 57.6634], + [-133.2794, 57.6611], + [-133.1756, 57.5818], + [-133.3898, 57.6593], + [-133.5276, 57.6876], + [-133.5704, 57.721], + [-133.6509, 57.7165], + [-133.6621, 57.6133], + [-133.5621, 57.5617], + [-133.4517, 57.5886], + [-133.5167, 57.5442], + [-133.5276, 57.4895], + [-133.4673, 57.4219], + [-133.4186, 57.4362], + [-133.3645, 57.4131], + [-133.473, 57.3873], + [-133.4521, 57.3547], + [-133.2345, 57.3213], + [-133.2564, 57.2845], + [-133.3401, 57.2988], + [-133.4744, 57.2978], + [-133.5336, 57.2605], + [-133.4995, 57.2272], + [-133.5342, 57.1819], + [-133.465, 57.1501], + [-133.3161, 57.1067], + [-133.1728, 57.1773], + [-133.1411, 57.1619], + [-133.1817, 57.0891], + [-133.0789, 57.0825], + [-133.0044, 57.0492], + [-132.8737, 57.03], + [-132.8349, 57.0658], + [-132.7829, 57.0021], + [-132.7889, 56.9717], + [-132.8721, 57.0014], + [-132.9528, 56.9942], + [-132.8861, 56.9222], + [-132.8096, 56.892], + [-132.79, 56.8433], + [-132.6439, 56.7817], + [-132.4917, 56.7456], + [-132.5572, 56.7148], + [-132.5322, 56.6881], + [-132.5656, 56.6286], + [-132.4982, 56.6035], + [-132.3511, 56.6367], + [-132.3592, 56.5277], + [-132.2893, 56.4844], + [-132.2113, 56.4607], + [-132.1977, 56.4157], + [-132.1209, 56.365], + [-132.0944, 56.3761], + [-132.0622, 56.377], + [-131.9944, 56.3603], + [-131.98, 56.3011], + [-131.9317, 56.2364], + [-131.7639, 56.2056], + [-131.9728, 56.1739], + [-131.9783, 56.0439], + [-131.9605, 56.0128], + [-131.9911, 55.9628], + [-132.0709, 55.9242], + [-132.0417, 55.8858], + [-132.0917, 55.8531], + [-132.0723, 55.8092], + [-132.1928, 55.7856], + [-132.1967, 55.7308], + [-132.287, 55.7617], + [-132.2281, 55.6993], + [-132.1851, 55.5879], + [-131.9695, 55.4978], + [-131.9389, 55.5677], + [-132.0111, 55.6731], + [-131.9278, 55.6117], + [-131.8811, 55.6228], + [-131.8294, 55.6833], + [-131.7697, 55.8241], + [-131.9194, 55.8644], + [-131.8323, 55.8863], + [-131.7606, 55.8778], + [-131.6767, 55.9194], + [-131.4397, 56.0026], + [-131.4083, 55.9845], + [-131.3883, 55.9598], + [-131.2278, 56.0057], + [-131.0945, 56.0781], + [-131.096, 56.0431], + [-131.2155, 55.9864], + [-131.0928, 55.8948], + [-130.9069, 55.7122], + [-130.8722, 55.5569], + [-130.7967, 55.5792], + [-130.7766, 55.5253], + [-130.8666, 55.5428], + [-130.9004, 55.4673], + [-130.8783, 55.3316], + [-130.8322, 55.2887], + [-130.9272, 55.301], + [-130.9917, 55.2433], + [-131.0915, 55.1946], + [-131.0663, 55.1225], + [-130.9939, 55.0853], + [-130.9025, 55.1025], + [-130.8211, 55.1445], + [-130.7952, 55.0669], + [-130.8528, 55.1191], + [-130.8715, 55.0984], + [-130.9893, 55.0669], + [-131.0051, 55.0028], + [-130.9532, 54.9642], + [-130.9342, 54.8017], + [-130.8561, 54.7675], + [-130.7361, 54.8214], + [-130.7611, 54.9408], + [-130.7372, 54.9536], + [-130.7204, 54.7649], + [-130.6567, 54.7745], + [-130.6322, 54.8167], + [-130.525, 54.8668], + [-130.4971, 54.8335], + [-130.3706, 54.9067], + [-130.2289, 55.0378], + [-130.1951, 55.1044], + [-130.0987, 55.2133], + [-129.9942, 55.2902], + [-130.03, 55.3228], + [-130.0539, 55.4425], + [-130.1069, 55.4957], + [-130.15, 55.5979], + [-130.1246, 55.6795], + [-130.1568, 55.7074], + [-130.1725, 55.7782], + [-130.0917, 55.8277], + [-130.016, 55.9235], + [-130.003, 56.0079], + [-130.1054, 56.1227], + [-130.2459, 56.0963], + [-130.4255, 56.1417], + [-130.4682, 56.2433], + [-130.623, 56.2669], + [-130.7818, 56.3671], + [-131.087, 56.4061], + [-131.1733, 56.4495], + [-131.4716, 56.5527], + [-131.5813, 56.6123], + [-131.8354, 56.5991], + [-131.8604, 56.7029], + [-131.9009, 56.7535], + [-131.8731, 56.8063], + [-132.1231, 56.8739], + [-132.0448, 57.0451], + [-132.3687, 57.0917], + [-132.2478, 57.2111], + [-132.3692, 57.3499], + [-132.5539, 57.4967], + [-132.6608, 57.6169], + [-132.7512, 57.6961], + [-132.869, 57.8397], + [-133.0696, 58.0001], + [-133.172, 58.1538], + [-133.3487, 58.2795], + [-133.4599, 58.3885], + [-133.38, 58.4318], + [-133.6995, 58.6091], + [-133.841, 58.7299], + [-133.9719, 58.7671], + [-134.258, 58.8609], + [-134.3363, 58.9236], + [-134.3134, 58.9621], + [-134.4074, 58.979], + [-134.382, 59.0388], + [-134.4827, 59.131], + [-134.5655, 59.1308], + [-134.6789, 59.1921], + [-134.7007, 59.2489], + [-134.9598, 59.281], + [-135.0335, 59.3502], + [-134.9924, 59.3878], + [-135.1006, 59.4278], + [-135.0279, 59.4746], + [-135.0289, 59.5636], + [-135.1175, 59.6231], + [-135.2198, 59.6629], + [-135.2337, 59.6961], + [-135.3644, 59.7396], + [-135.4796, 59.7981], + [-135.9476, 59.6634], + [-136.1953, 59.6388], + [-136.3535, 59.5999], + [-136.2414, 59.5591], + [-136.2363, 59.5267], + [-136.3014, 59.4658], + [-136.3963, 59.4474], + [-136.464, 59.463], + [-136.4578, 59.2814], + [-136.582, 59.1655], + [-136.8247, 59.1598], + [-136.9996, 59.0914], + [-137.2827, 59.0001], + [-137.4515, 58.9085], + [-137.526, 58.9066], + [-137.5, 58.9849], + [-137.5418, 59.1063], + [-137.6074, 59.2435], + [-138.1689, 59.5359], + [-138.6092, 59.76], + [-138.6563, 59.7992], + [-138.7058, 59.9062], + [-139.0421, 59.9916], + [-139.177, 60.0829], + [-139.0485, 60.3259], + [-139.0521, 60.3537], + [-139.6801, 60.3357], + [-139.9741, 60.1845], + [-140.448, 60.308], + [-140.5203, 60.2191], + [-140.7683, 60.2583], + [-141.0016, 60.3051], + [-141.0018, 63.9326], + [-141.0032, 65.0001], + [-141.0022, 67.0133], + [-141.0069, 67.9999], + [-141.0023, 68.5045], + [-141.003, 69.6462], + [-141.1167, 69.6729], + [-141.2063, 69.6792], + [-141.2464, 69.6297], + [-141.3974, 69.638], + [-141.5339, 69.7286], + [-141.662, 69.7589], + [-141.75, 69.7625], + [-141.7854, 69.7917], + [-141.9, 69.8042], + [-142.0104, 69.7958], + [-142.1687, 69.8458], + [-142.2396, 69.8458], + [-142.3391, 69.8859], + [-142.3797, 69.9287], + [-142.5188, 69.9604], + [-142.5807, 69.9589], + [-142.5818, 69.9974], + [-142.7271, 70.0375], + [-142.8667, 70.0563], + [-142.9937, 70.0583], + [-143.0042, 70.0771], + [-143.1062, 70.0771], + [-143.2203, 70.1099], + [-143.35, 70.0896], + [-143.5125, 70.0875], + [-143.6583, 70.0729], + [-143.7292, 70.0896], + [-143.8078, 70.0693], + [-143.875, 70.0771], + [-144.0896, 70.0375], + [-144.4125, 70.0271], + [-144.4875, 70.0167], + [-144.6375, 69.9646], + [-144.8292, 69.9833], + [-144.9625, 69.9583], + [-145.025, 69.9812], + [-145.2625, 69.9896], + [-145.3, 70.0104], + [-145.4187, 70.0292], + [-145.4833, 70.0583], + [-145.6042, 70.0333], + [-145.5792, 70.0708], + [-145.8542, 70.1625], + [-145.9104, 70.1146], + [-146.1687, 70.1646], + [-146.5083, 70.1854], + [-146.7187, 70.1687], + [-146.8542, 70.175], + [-146.9458, 70.15], + [-147.1828, 70.1547], + [-147.2417, 70.1771], + [-147.4167, 70.1854], + [-147.5125, 70.2021], + [-147.6771, 70.1979], + [-147.7812, 70.2167], + [-147.7958, 70.2813], + [-147.9542, 70.2729], + [-148.0672, 70.2859], + [-148.1271, 70.3271], + [-148.2609, 70.3255], + [-148.3453, 70.3016], + [-148.4516, 70.3068], + [-148.4724, 70.337], + [-148.5813, 70.3958], + [-148.7104, 70.4083], + [-148.8354, 70.3875], + [-148.9229, 70.3958], + [-149.0562, 70.4625], + [-149.1625, 70.4854], + [-149.4214, 70.4922], + [-149.4646, 70.5146], + [-149.5396, 70.4896], + [-149.6667, 70.5062], + [-149.7661, 70.4797], + [-149.8479, 70.5021], + [-149.9021, 70.4958], + [-150.0646, 70.4417], + [-150.2104, 70.4313], + [-150.3875, 70.4063], + [-150.6563, 70.3458], + [-150.7229, 70.3229], + [-150.7922, 70.2693], + [-150.7797, 70.2338], + [-150.8359, 70.2172], + [-150.8422, 70.2693], + [-150.7693, 70.2963], + [-150.7453, 70.3682], + [-150.6359, 70.3943], + [-150.6255, 70.4182], + [-150.7734, 70.4745], + [-150.7271, 70.4], + [-150.7891, 70.3755], + [-150.8328, 70.3901], + [-150.837, 70.4526], + [-150.9146, 70.4625], + [-150.9703, 70.438], + [-151.0417, 70.4396], + [-151.0891, 70.3859], + [-151.1479, 70.4271], + [-151.1807, 70.3818], + [-151.2896, 70.3458], + [-151.2672, 70.3891], + [-151.3875, 70.4167], + [-151.7646, 70.4354], + [-151.8875, 70.4313], + [-151.9, 70.475], + [-151.8, 70.4896], + [-151.7604, 70.5458], + [-152.0208, 70.5604], + [-152.0437, 70.5458], + [-152.1812, 70.55], + [-152.3646, 70.5375], + [-152.3792, 70.55], + [-152.5208, 70.5375], + [-152.5937, 70.5667], + [-152.5167, 70.5813], + [-152.2729, 70.575], + [-152.3042, 70.6042], + [-152.4146, 70.6062], + [-152.4646, 70.6333], + [-152.4708, 70.6937], + [-152.3818, 70.7151], + [-152.2974, 70.7849], + [-152.2229, 70.825], + [-152.5833, 70.8812], + [-152.6646, 70.8792], + [-152.6172, 70.8339], + [-152.6995, 70.7859], + [-152.7766, 70.8724], + [-152.8583, 70.8417], + [-152.913, 70.8891], + [-153.1292, 70.9208], + [-153.2953, 70.9099], + [-153.3813, 70.8875], + [-153.5542, 70.8833], + [-153.7104, 70.8896], + [-153.9333, 70.8771], + [-153.9984, 70.8172], + [-154.1562, 70.7688], + [-154.2125, 70.7708], + [-154.2521, 70.8104], + [-154.3562, 70.8313], + [-154.6141, 70.8214], + [-154.6338, 70.8599], + [-154.7625, 70.8688], + [-154.7766, 70.8891], + [-154.6109, 70.9068], + [-154.6172, 70.9411], + [-154.5734, 70.9953], + [-154.6505, 71.0328], + [-154.7063, 71.0021], + [-154.7708, 71.0729], + [-154.8943, 71.0703], + [-154.9661, 71.0339], + [-154.7437, 71.0417], + [-154.7276, 70.9568], + [-154.8505, 70.9516], + [-154.8208, 70.8854], + [-154.9391, 70.9422], + [-154.9568, 71.0089], + [-155.0188, 71.0313], + [-155.0667, 71.1292], + [-155.0667, 71.0625], + [-155.1458, 71.1042], + [-155.2521, 71.075], + [-155.1568, 71.0182], + [-155.2021, 70.9771], + [-155.2625, 71.0146], + [-155.3599, 70.9953], + [-155.5099, 70.9339], + [-155.4542, 70.8458], + [-155.2859, 70.8474], + [-155.313, 70.788], + [-155.4375, 70.8104], + [-155.5036, 70.8443], + [-155.5875, 70.8021], + [-155.6896, 70.8313], + [-155.875, 70.8271], + [-155.9141, 70.7922], + [-155.8875, 70.7562], + [-156, 70.7479], + [-155.9583, 70.7792], + [-155.9896, 70.825], + [-156.05, 70.8208], + [-156.1729, 70.8542], + [-155.9958, 70.8625], + [-156.0083, 70.8958], + [-156.0729, 70.8833], + [-156.1037, 70.9057], + [-156.1797, 70.8672], + [-156.2437, 70.9], + [-156.2563, 70.8667], + [-156.3245, 70.8724], + [-156.2349, 70.9182], + [-156.3313, 70.9167], + [-156.3729, 70.9042], + [-156.4187, 70.9083], + [-156.4375, 70.875], + [-156.4958, 70.9125], + [-156.3583, 70.9104], + [-156.2875, 70.9396], + [-156.1625, 70.9729], + [-156.1109, 70.9484], + [-156.15, 70.9187], + [-155.9854, 70.9187], + [-156, 70.9646], + [-155.7271, 70.9833], + [-155.6974, 71.0203], + [-155.6141, 71.0599], + [-155.5068, 71.0859], + [-155.5688, 71.1396], + [-155.6375, 71.1167], + [-155.6422, 71.1589], + [-155.7474, 71.1911], + [-155.8917, 71.1771], + [-155.9208, 71.2104], + [-156.0146, 71.1708], + [-156.1, 71.2417], + [-156.2542, 71.2625], + [-156.35, 71.2583], + [-156.5318, 71.2974], + [-156.5979, 71.3354], + [-156.8099, 71.287], + [-157.0328, 71.1724], + [-157.0021, 71.1208], + [-157.0521, 71.1062], + [-157.0771, 71.1458], + [-157.2359, 71.0505], + [-157.4479, 70.9625], + [-157.8188, 70.8625], + [-158.025, 70.8292], + [-158.3542, 70.8125], + [-158.3917, 70.7979], + [-158.7187, 70.7854], + [-158.9646, 70.7917], + [-158.9812, 70.7646], + [-159.2984, 70.7578], + [-159.4141, 70.7651], + [-159.3438, 70.8063], + [-159.1193, 70.8203], + [-159.1917, 70.8458], + [-159.3708, 70.8438], + [-159.5458, 70.8167], + [-159.6854, 70.7771], + [-159.8109, 70.7234], + [-159.9474, 70.6787], + [-160.0167, 70.6333], + [-159.8901, 70.612], + [-159.8286, 70.5766], + [-159.8224, 70.5432], + [-159.737, 70.4901], + [-159.6229, 70.4875], + [-159.6, 70.5062], + [-159.5213, 70.4818], + [-159.6766, 70.4547], + [-159.7609, 70.487], + [-159.8484, 70.4234], + [-159.8766, 70.3797], + [-159.8255, 70.3557], + [-159.8411, 70.2568], + [-159.9536, 70.3672], + [-160.1432, 70.3078], + [-159.9828, 70.4099], + [-159.9104, 70.4833], + [-160.0458, 70.4604], + [-160.0292, 70.5021], + [-159.913, 70.5109], + [-159.9109, 70.5766], + [-160.025, 70.5792], + [-160.0896, 70.5646], + [-160.138, 70.5807], + [-160.2797, 70.5255], + [-160.7068, 70.3818], + [-160.8604, 70.3375], + [-161.0401, 70.313], + [-161.3062, 70.2479], + [-161.4083, 70.2396], + [-161.6104, 70.2438], + [-161.6151, 70.2245], + [-161.7932, 70.1807], + [-161.8375, 70.15], + [-162.0125, 70.1583], + [-162.0813, 70.1167], + [-162.0813, 70.1625], + [-161.9792, 70.1833], + [-161.8458, 70.1604], + [-161.862, 70.2099], + [-161.7667, 70.2125], + [-161.8646, 70.2479], + [-161.7146, 70.2354], + [-161.6833, 70.2625], + [-161.8432, 70.2714], + [-161.7354, 70.3083], + [-161.8792, 70.3271], + [-161.9266, 70.312], + [-161.9901, 70.2422], + [-162.1938, 70.1729], + [-162.2688, 70.125], + [-162.3953, 70.0922], + [-162.4682, 70.0578], + [-162.4568, 70.0005], + [-162.4922, 69.963], + [-162.8104, 69.8354], + [-162.9432, 69.7932], + [-163.0286, 69.7276], + [-162.9172, 69.6943], + [-162.9792, 69.6687], + [-163.0255, 69.6828], + [-163.0479, 69.6292], + [-163.088, 69.6464], + [-163.112, 69.5901], + [-163.0151, 69.5359], + [-163.0771, 69.4292], + [-163.1734, 69.313], + [-163.225, 69.2813], + [-163.3036, 69.2703], + [-163.4661, 69.1911], + [-163.5307, 69.1412], + [-163.6917, 69.0687], + [-163.8432, 69.0307], + [-163.9312, 68.9917], + [-164.1057, 68.9599], + [-164.1396, 68.9417], + [-164.4937, 68.9104], + [-164.6396, 68.9125], + [-164.7979, 68.8938], + [-165.1125, 68.875], + [-165.3146, 68.8562], + [-165.65, 68.8438], + [-165.7437, 68.8562], + [-166.2125, 68.8792], + [-166.1922, 68.6943], + [-166.2287, 68.6495], + [-166.2245, 68.5703], + [-166.2995, 68.5141], + [-166.2984, 68.4672], + [-166.3708, 68.4021], + [-166.4417, 68.3938], + [-166.5208, 68.3396], + [-166.2479, 68.3187], + [-166.0151, 68.2016], + [-165.9807, 68.1464], + [-165.8813, 68.1104], + [-165.7063, 68.0938], + [-165.3667, 68.0396], + [-165.1146, 67.9542], + [-164.9266, 67.8734], + [-164.8193, 67.8516], + [-164.7812, 67.8229], + [-164.725, 67.8354], + [-164.6849, 67.8026], + [-164.6172, 67.7953], + [-164.4953, 67.7151], + [-164.4125, 67.6937], + [-164.3521, 67.7063], + [-164.138, 67.6391], + [-164.1078, 67.6047], + [-163.9667, 67.5062], + [-163.8807, 67.4213], + [-163.8167, 67.4187], + [-163.7708, 67.3875], + [-163.8203, 67.3526], + [-163.7328, 67.1932], + [-163.6417, 67.1854], + [-163.5891, 67.1568], + [-163.5083, 67.1458], + [-163.4172, 67.1036], + [-163.525, 67.1167], + [-163.7328, 67.1193], + [-163.6604, 67.0979], + [-163.3083, 67.0625], + [-163.2526, 67.0807], + [-163.1583, 67.0458], + [-162.9979, 67.0313], + [-162.7479, 67.0521], + [-162.5557, 66.9838], + [-162.5161, 67.0286], + [-162.4708, 66.9812], + [-162.3687, 66.9938], + [-162.2375, 66.9938], + [-162.1625, 67.0188], + [-161.9792, 67.0417], + [-161.8354, 67.05], + [-161.7229, 67.0083], + [-161.6193, 67.0099], + [-161.5292, 66.9896], + [-161.4734, 66.9495], + [-161.6083, 66.95], + [-161.7828, 66.8912], + [-161.8057, 66.8161], + [-161.8641, 66.7026], + [-161.6938, 66.625], + [-161.5234, 66.5807], + [-161.487, 66.5297], + [-161.2917, 66.5229], + [-161.2068, 66.5578], + [-161.2312, 66.5771], + [-161.1187, 66.6396], + [-160.9729, 66.6417], + [-160.8083, 66.6563], + [-160.6562, 66.5896], + [-160.5109, 66.5859], + [-160.5021, 66.6125], + [-160.3542, 66.6104], + [-160.275, 66.6521], + [-160.1854, 66.6312], + [-160.0979, 66.675], + [-160.0412, 66.6589], + [-159.9438, 66.6813], + [-159.8104, 66.6583], + [-159.7229, 66.6771], + [-159.6964, 66.6484], + [-159.7771, 66.6146], + [-159.8724, 66.637], + [-159.9125, 66.5729], + [-159.9599, 66.5755], + [-159.9839, 66.6214], + [-160.0953, 66.6193], + [-160.1187, 66.5917], + [-160.25, 66.6167], + [-160.1833, 66.525], + [-160.2016, 66.4797], + [-160.0333, 66.475], + [-160.05, 66.4146], + [-160.1938, 66.4521], + [-160.2276, 66.3859], + [-160.4833, 66.375], + [-160.5458, 66.3562], + [-160.6771, 66.3667], + [-160.7854, 66.3625], + [-160.8484, 66.3953], + [-160.962, 66.4172], + [-161.0651, 66.4849], + [-161.1682, 66.4984], + [-161.1771, 66.5333], + [-161.2661, 66.512], + [-161.3229, 66.4771], + [-161.5063, 66.4417], + [-161.5833, 66.4396], + [-161.9099, 66.5443], + [-161.9922, 66.6099], + [-162.0724, 66.6484], + [-162.0828, 66.6911], + [-162.0109, 66.7568], + [-162.0995, 66.788], + [-162.2391, 66.8734], + [-162.3188, 66.9417], + [-162.4, 66.9167], + [-162.4729, 66.9479], + [-162.5208, 66.9021], + [-162.6182, 66.8505], + [-162.5088, 66.7766], + [-162.5016, 66.7338], + [-162.2333, 66.7104], + [-162.1214, 66.6536], + [-162.0995, 66.6109], + [-161.9922, 66.5787], + [-161.8963, 66.5286], + [-161.8651, 66.4734], + [-161.8057, 66.438], + [-161.8724, 66.4245], + [-161.9391, 66.3234], + [-161.6917, 66.3979], + [-161.5354, 66.4021], + [-161.1047, 66.3287], + [-160.9859, 66.2255], + [-161.0047, 66.1891], + [-161.0724, 66.1787], + [-161.0937, 66.2292], + [-161.2104, 66.2063], + [-161.3021, 66.2167], + [-161.3516, 66.2547], + [-161.4979, 66.2583], + [-161.5568, 66.2276], + [-161.7214, 66.0589], + [-161.8245, 66.0036], + [-161.7854, 65.9688], + [-161.85, 65.9563], + [-161.8693, 66.0005], + [-162.0396, 66.0687], + [-162.1354, 66.075], + [-162.3354, 66.0271], + [-162.4036, 66.0297], + [-162.4521, 66.0563], + [-162.5396, 66.0333], + [-162.6432, 66.0266], + [-162.6745, 65.9943], + [-162.688, 66.0703], + [-162.7583, 66.0958], + [-162.8687, 66.0792], + [-162.9229, 66.0896], + [-163.1375, 66.0521], + [-163.3062, 66.0687], + [-163.3313, 66.0854], + [-163.4833, 66.0833], + [-163.6271, 66.0542], + [-163.7661, 66.0734], + [-163.8537, 66.1276], + [-163.8979, 66.1937], + [-163.9703, 66.1672], + [-164.1625, 66.1917], + [-163.9333, 66.2146], + [-163.8255, 66.2714], + [-163.8651, 66.3339], + [-163.8474, 66.4182], + [-163.7713, 66.4484], + [-163.7255, 66.4964], + [-163.8146, 66.5563], + [-163.8042, 66.5771], + [-163.6521, 66.5542], + [-163.6792, 66.5771], + [-163.8271, 66.5917], + [-164.1062, 66.5917], + [-164.4396, 66.5771], + [-164.6896, 66.5437], + [-164.7276, 66.5109], + [-164.9286, 66.4495], + [-165.0146, 66.3792], + [-165.0422, 66.4287], + [-165.1458, 66.4333], + [-165.2479, 66.4146], + [-165.4396, 66.4021], + [-165.7557, 66.3141], + [-165.8464, 66.263], + [-165.8537, 66.213], + [-165.6958, 66.2042], + [-165.5312, 66.1458], + [-165.6896, 66.0958], + [-165.8729, 66.1125], + [-166.0583, 66.1062], + [-166.2187, 66.1708], + [-166.6042, 66.0896], + [-166.7708, 66.0313], + [-166.7958, 65.9729], + [-166.9187, 65.9875], + [-166.9438, 65.9583], + [-166.8682, 65.9276], + [-166.9974, 65.8953], + [-167.0354, 65.8688], + [-167.1849, 65.8401], + [-167.2807, 65.8901], + [-167.4833, 65.8354], + [-167.4563, 65.7979], + [-167.5312, 65.8021], + [-167.562, 65.7714], + [-167.4953, 65.7338], + [-167.5833, 65.7083], + [-167.7896, 65.7063], + [-167.9104, 65.6438], + [-168.0599, 65.6297], + [-168.0286, 65.6891], + [-167.925, 65.7125], + [-167.9458, 65.7354], + [-168.0807, 65.6932], + [-168.1245, 65.6453], + [-168.0458, 65.5687], + [-167.8896, 65.5521], + [-167.8167, 65.5208], + [-167.6422, 65.4807], + [-167.6062, 65.4542], + [-167.4083, 65.4021], + [-167.0354, 65.3875], + [-166.9542, 65.3708], + [-166.825, 65.375], + [-166.6104, 65.3521], + [-166.3979, 65.3083], + [-166.387, 65.3182], + [-166.1479, 65.2875], + [-166.0359, 65.2474], + [-166.0188, 65.1896], + [-165.8338, 65.1339], + [-165.8703, 65.1807], + [-165.7521, 65.1896], + [-165.6687, 65.1583], + [-165.5792, 65.1771], + [-165.3854, 65.1687], + [-165.4526, 65.1214], + [-165.5682, 65.0974], + [-165.6562, 65.0479], + [-165.7312, 65.0729], + [-165.8745, 65.0964], + [-165.9672, 65.1682], + [-166.0349, 65.1859], + [-166.0422, 65.2307], + [-166.1292, 65.2292], + [-166.2479, 65.2583], + [-166.3771, 65.2542], + [-166.4724, 65.2203], + [-166.4651, 65.1713], + [-166.5359, 65.1172], + [-166.6568, 65.1036], + [-166.8401, 65.1214], + [-166.8208, 65.0771], + [-166.7063, 65.0563], + [-166.6807, 64.9818], + [-166.5599, 64.9464], + [-166.5005, 64.9474], + [-166.4245, 64.8922], + [-166.3776, 64.813], + [-166.4745, 64.7911], + [-166.4682, 64.7193], + [-166.3911, 64.6401], + [-166.2104, 64.5792], + [-165.8521, 64.5396], + [-165.7437, 64.5375], + [-165.2167, 64.4729], + [-165.0104, 64.4333], + [-164.9271, 64.4396], + [-164.8432, 64.4912], + [-164.7521, 64.5146], + [-164.6187, 64.5062], + [-164.5437, 64.5313], + [-164.325, 64.5667], + [-164.1042, 64.5687], + [-163.9937, 64.5521], + [-163.8833, 64.5729], + [-163.6438, 64.5687], + [-163.5125, 64.55], + [-163.3464, 64.5099], + [-163.2547, 64.4745], + [-163.1729, 64.3979], + [-163.1068, 64.4089], + [-163.0974, 64.462], + [-163.0318, 64.5026], + [-163.1479, 64.5062], + [-163.1755, 64.5349], + [-163.25, 64.5396], + [-163.3651, 64.5974], + [-163.2818, 64.6026], + [-163.2464, 64.6297], + [-163.1354, 64.6458], + [-163.1208, 64.6], + [-163.0339, 64.5849], + [-163.0188, 64.5417], + [-162.9453, 64.5443], + [-162.8422, 64.4953], + [-162.8537, 64.4443], + [-162.8005, 64.4078], + [-162.8037, 64.3359], + [-162.6318, 64.3839], + [-162.5922, 64.4838], + [-162.5453, 64.5307], + [-162.3333, 64.5979], + [-162.2359, 64.6193], + [-162.1708, 64.6813], + [-161.95, 64.6979], + [-161.8771, 64.7479], + [-161.6812, 64.7813], + [-161.5188, 64.7542], + [-161.413, 64.763], + [-161.3036, 64.8474], + [-161.2016, 64.8932], + [-161.1792, 64.9271], + [-161.112, 64.8839], + [-160.987, 64.8359], + [-160.8734, 64.8057], + [-160.7776, 64.7182], + [-160.7839, 64.6255], + [-161.013, 64.5224], + [-161.0333, 64.4958], + [-161.1896, 64.4938], + [-161.3537, 64.5193], + [-161.3771, 64.5333], + [-161.4661, 64.5057], + [-161.4714, 64.4464], + [-161.5286, 64.4089], + [-161.3938, 64.4313], + [-161.3479, 64.4042], + [-161.2146, 64.4125], + [-161.1766, 64.3422], + [-161.0828, 64.2901], + [-161.0109, 64.2828], + [-160.9609, 64.2495], + [-160.9422, 64.0766], + [-160.8943, 63.9932], + [-160.813, 63.912], + [-160.7599, 63.8203], + [-160.7859, 63.7443], + [-160.963, 63.6172], + [-161.0083, 63.6208], + [-161.0359, 63.5755], + [-161.0974, 63.5484], + [-161.1359, 63.5005], + [-161.4292, 63.4542], + [-161.5, 63.4688], + [-161.5792, 63.4458], + [-161.6938, 63.4625], + [-161.8062, 63.4375], + [-162, 63.4458], + [-162.1042, 63.4271], + [-162.0417, 63.4854], + [-162.175, 63.5292], + [-162.3021, 63.5375], + [-162.2651, 63.4932], + [-162.4068, 63.4068], + [-162.4203, 63.3568], + [-162.5307, 63.3141], + [-162.5297, 63.2922], + [-162.6958, 63.2125], + [-162.7792, 63.2146], + [-162.838, 63.1589], + [-162.9766, 63.1057], + [-163.0359, 63.0609], + [-163.2, 63.0438], + [-163.3146, 63.0208], + [-163.3651, 63.0536], + [-163.5042, 63.1104], + [-163.6089, 63.0755], + [-163.6297, 63.1432], + [-163.7276, 63.2078], + [-163.8313, 63.2083], + [-164.0458, 63.2625], + [-164.3167, 63.2417], + [-164.4661, 63.1891], + [-164.5828, 63.1193], + [-164.5271, 63.0708], + [-164.4839, 63.0849], + [-164.3729, 63.0646], + [-164.35, 63.0187], + [-164.4787, 63.0286], + [-164.687, 63.0182], + [-164.7828, 62.9474], + [-164.862, 62.8224], + [-164.8167, 62.7958], + [-164.6922, 62.787], + [-164.6354, 62.7604], + [-164.5021, 62.7729], + [-164.45, 62.7438], + [-164.7047, 62.6057], + [-164.8349, 62.5766], + [-164.8458, 62.5438], + [-164.7776, 62.5349], + [-164.7651, 62.5005], + [-164.6521, 62.4521], + [-164.5755, 62.4557], + [-164.5578, 62.4255], + [-164.6417, 62.4188], + [-164.7479, 62.4646], + [-164.8557, 62.4672], + [-164.8583, 62.5333], + [-165.0229, 62.5396], + [-165.0974, 62.5203], + [-165.2349, 62.4578], + [-165.3297, 62.363], + [-165.6005, 62.188], + [-165.7057, 62.1411], + [-165.7599, 62.0807], + [-165.7703, 62.0026], + [-165.7391, 61.9193], + [-165.637, 61.8505], + [-165.8021, 61.825], + [-165.9187, 61.8271], + [-166.0995, 61.8099], + [-166.0099, 61.7214], + [-165.9208, 61.6979], + [-165.7375, 61.6875], + [-165.7271, 61.6646], + [-165.6479, 61.6854], + [-165.6229, 61.7167], + [-165.5229, 61.7062], + [-165.6141, 61.6641], + [-165.7396, 61.6583], + [-165.8125, 61.6833], + [-165.8828, 61.662], + [-166.0479, 61.6479], + [-166.0667, 61.6271], + [-166.1516, 61.6422], + [-166.1849, 61.5974], + [-166.1411, 61.5047], + [-166.0333, 61.5396], + [-165.9354, 61.5458], + [-165.7943, 61.5036], + [-165.7479, 61.425], + [-165.8021, 61.4479], + [-165.9287, 61.4453], + [-165.9578, 61.4172], + [-165.8682, 61.3193], + [-165.7318, 61.3047], + [-165.6641, 61.2755], + [-165.6391, 61.1318], + [-165.5396, 61.0896], + [-165.3958, 61.0771], + [-165.3391, 61.1516], + [-165.3932, 61.1984], + [-165.213, 61.3068], + [-165.2912, 61.3151], + [-165.2828, 61.3516], + [-165.2047, 61.3349], + [-165.2208, 61.2438], + [-165.2974, 61.2474], + [-165.362, 61.1901], + [-165.2713, 61.1703], + [-165.1786, 61.1089], + [-165.0083, 61.0479], + [-165, 61.0896], + [-164.9453, 61.1016], + [-164.9453, 60.9922], + [-165.1271, 61.0125], + [-165.1891, 60.9547], + [-165.1417, 60.925], + [-165.0437, 60.9083], + [-164.9703, 60.9453], + [-164.8422, 60.937], + [-164.7979, 60.8958], + [-164.7521, 60.9229], + [-164.5693, 60.9286], + [-164.587, 60.8651], + [-164.5396, 60.8479], + [-164.3687, 60.875], + [-164.2479, 60.8604], + [-164.15, 60.8833], + [-164.088, 60.8776], + [-164.15, 60.9396], + [-164.1099, 60.987], + [-163.9901, 61.0453], + [-163.9766, 60.9818], + [-163.9234, 60.9516], + [-163.9854, 60.8625], + [-163.9354, 60.8771], + [-163.8776, 60.9276], + [-163.9396, 60.9813], + [-163.9005, 61.0359], + [-163.8229, 61.0104], + [-163.8443, 61.0911], + [-163.9286, 61.1193], + [-163.9141, 61.1911], + [-163.7729, 61.2292], + [-163.7229, 61.1958], + [-163.5562, 61.2396], + [-163.513, 61.2109], + [-163.6729, 61.1833], + [-163.7547, 61.1453], + [-163.7464, 61.1005], + [-163.8057, 61.0547], + [-163.7401, 61.0411], + [-163.737, 60.988], + [-163.6526, 60.9891], + [-163.7088, 60.9516], + [-163.6771, 60.925], + [-163.5578, 60.913], + [-163.5771, 60.8812], + [-163.4479, 60.8917], + [-163.3734, 60.8578], + [-163.3479, 60.8125], + [-163.2776, 60.7964], + [-163.462, 60.7547], + [-163.4089, 60.7224], + [-163.4792, 60.6396], + [-163.6583, 60.5812], + [-163.7932, 60.5797], + [-163.8203, 60.6401], + [-163.7917, 60.7542], + [-163.8562, 60.7542], + [-163.9125, 60.7854], + [-164.0161, 60.7641], + [-164.1026, 60.6589], + [-164.2604, 60.6437], + [-164.3729, 60.5521], + [-164.3818, 60.5776], + [-164.2953, 60.6661], + [-164.2104, 60.6792], + [-164.2646, 60.7292], + [-164.2693, 60.7891], + [-164.3188, 60.7833], + [-164.4359, 60.8182], + [-164.6849, 60.8234], + [-164.6911, 60.862], + [-164.638, 60.9016], + [-164.725, 60.8979], + [-164.8479, 60.85], + [-164.9292, 60.9208], + [-164.9599, 60.8953], + [-164.8714, 60.8536], + [-164.8776, 60.812], + [-165.0021, 60.7854], + [-164.9901, 60.6984], + [-165.0562, 60.6875], + [-165.1714, 60.6234], + [-165.2453, 60.6099], + [-165.275, 60.575], + [-165.3766, 60.5745], + [-165.4182, 60.5495], + [-165.3703, 60.5068], + [-165.2646, 60.4917], + [-165.1875, 60.4979], + [-165.0479, 60.5458], + [-164.9568, 60.5286], + [-165.0005, 60.4755], + [-165.1391, 60.4422], + [-165.0141, 60.3609], + [-164.8646, 60.3063], + [-164.7063, 60.2938], + [-164.6516, 60.2505], + [-164.4979, 60.175], + [-164.3432, 60.0568], + [-164.1938, 60.0271], + [-164.1257, 59.9727], + [-164.2005, 59.9588], + [-164.1983, 59.9151], + [-164.1408, 59.8498], + [-164.0052, 59.8144], + [-163.8726, 59.8009], + [-163.681, 59.7976], + [-163.4308, 59.812], + [-163.1472, 59.8478], + [-162.9984, 59.8869], + [-162.913, 59.9232], + [-162.7842, 59.9428], + [-162.7333, 59.9719], + [-162.8141, 60.0297], + [-162.7734, 60.0693], + [-162.738, 59.9999], + [-162.641, 59.974], + [-162.5154, 59.9893], + [-162.4797, 60.0318], + [-162.5036, 60.113], + [-162.4505, 60.1828], + [-162.5599, 60.2193], + [-162.5443, 60.2776], + [-162.4854, 60.3667], + [-162.413, 60.3755], + [-162.3755, 60.4651], + [-162.3234, 60.513], + [-162.2807, 60.5953], + [-162.2208, 60.6333], + [-162.034, 60.6646], + [-162.2141, 60.5786], + [-162.2172, 60.5089], + [-162.3016, 60.4474], + [-162.3292, 60.3583], + [-162.4578, 60.2953], + [-162.3516, 60.238], + [-162.262, 60.1693], + [-162.3661, 60.1589], + [-162.2646, 60.0583], + [-162.2661, 60.1203], + [-162.1792, 60.1375], + [-162.2349, 60.088], + [-162.1889, 59.999], + [-162.0814, 59.9365], + [-162.088, 59.8868], + [-161.9655, 59.7998], + [-161.8784, 59.6948], + [-161.8681, 59.635], + [-161.7081, 59.5], + [-161.7365, 59.4698], + [-161.8001, 59.4715], + [-161.8403, 59.4158], + [-161.9588, 59.3722], + [-161.9604, 59.2433], + [-162.0188, 59.2287], + [-161.975, 59.1404], + [-161.8869, 59.0719], + [-161.7885, 58.9682], + [-161.7891, 58.8917], + [-161.7583, 58.7966], + [-161.8027, 58.7402], + [-161.8671, 58.7145], + [-161.8353, 58.6785], + [-161.9481, 58.6505], + [-161.995, 58.6822], + [-162.1709, 58.6513], + [-162.0841, 58.6257], + [-161.8223, 58.6291], + [-161.7745, 58.6], + [-161.7632, 58.55], + [-161.7123, 58.553], + [-161.6319, 58.5985], + [-161.5479, 58.6064], + [-161.5189, 58.6315], + [-161.3766, 58.667], + [-161.3659, 58.7191], + [-161.2903, 58.7719], + [-161.1792, 58.7844], + [-161.0017, 58.8486], + [-160.9632, 58.8768], + [-160.8651, 58.8799], + [-160.8252, 58.8447], + [-160.778, 58.8922], + [-160.6365, 58.963], + [-160.3585, 59.0738], + [-160.256, 58.9868], + [-160.33, 58.9536], + [-160.2647, 58.9443], + [-160.2487, 58.8906], + [-160.1598, 58.9266], + [-160.1602, 58.863], + [-160.0243, 58.8852], + [-159.9727, 58.8189], + [-159.9048, 58.7683], + [-159.802, 58.8027], + [-159.7961, 58.8523], + [-159.7362, 58.9305], + [-159.6228, 58.9366], + [-159.5906, 58.9041], + [-159.6473, 58.8414], + [-159.4973, 58.8189], + [-159.3875, 58.7578], + [-159.3176, 58.6961], + [-159.2084, 58.5731], + [-159.0589, 58.4212], + [-158.9013, 58.3908], + [-158.8118, 58.4047], + [-158.7018, 58.4868], + [-158.7513, 58.4954], + [-158.7757, 58.5561], + [-158.8369, 58.6251], + [-158.8805, 58.7284], + [-158.8039, 58.736], + [-158.7746, 58.7751], + [-158.7977, 58.8151], + [-158.7822, 58.8824], + [-158.7217, 58.8734], + [-158.6254, 58.9117], + [-158.5182, 59.0352], + [-158.407, 59.0646], + [-158.3197, 59.0476], + [-158.42, 59.023], + [-158.4888, 58.9176], + [-158.5484, 58.7923], + [-158.4413, 58.775], + [-158.3695, 58.7454], + [-158.3141, 58.6461], + [-158.2212, 58.6146], + [-158.0872, 58.6202], + [-157.8141, 58.6888], + [-157.7142, 58.7265], + [-157.5443, 58.7592], + [-157.3156, 58.8351], + [-157.211, 58.8421], + [-157.0952, 58.8756], + [-157.0375, 58.9161], + [-157.0165, 58.9677], + [-156.9232, 58.9923], + [-157.0194, 58.8719], + [-157.0044, 58.8224], + [-157.0683, 58.769], + [-157.0935, 58.704], + [-157.2345, 58.6322], + [-157.3834, 58.522], + [-157.472, 58.4933], + [-157.5424, 58.3825], + [-157.5444, 58.2781], + [-157.4479, 58.2092], + [-157.3806, 58.2179], + [-157.437, 58.1662], + [-157.529, 58.1654], + [-157.5874, 58.1275], + [-157.6651, 57.7935], + [-157.7012, 57.7301], + [-157.7131, 57.6363], + [-157.6965, 57.6124], + [-157.6049, 57.6064], + [-157.5773, 57.5147], + [-157.6386, 57.4965], + [-157.6959, 57.5519], + [-157.7413, 57.5553], + [-157.9276, 57.474], + [-158.0017, 57.408], + [-158.0903, 57.3583], + [-158.2571, 57.3126], + [-158.3312, 57.2806], + [-158.5435, 57.1295], + [-158.6789, 57.0053], + [-158.6747, 56.8567], + [-158.6523, 56.8153], + [-158.7955, 56.7801], + [-158.9313, 56.8181], + [-158.9484, 56.8588], + [-159.0537, 56.8006], + [-159.2885, 56.7125], + [-159.3997, 56.6871], + [-159.5476, 56.6228], + [-159.818, 56.5391], + [-160.0419, 56.4245], + [-160.154, 56.3964], + [-160.255, 56.3237], + [-160.3845, 56.2548], + [-160.5223, 56.0391], + [-160.5411, 55.9922], + [-160.5229, 55.943], + [-160.3189, 55.8603], + [-160.256, 55.7716], + [-160.3727, 55.7784], + [-160.4102, 55.8041], + [-160.4552, 55.7832], + [-160.4905, 55.8603], + [-160.6318, 55.855], + [-160.7831, 55.8831], + [-160.757, 55.7882], + [-160.6516, 55.7345], + [-160.7529, 55.7499], + [-160.8015, 55.7329], + [-161.0184, 55.9046], + [-160.9631, 55.9417], + [-160.8913, 55.9507], + [-160.8734, 56], + [-161.0517, 55.9416], + [-161.0977, 55.9592], + [-161.3246, 55.9567], + [-161.2636, 55.9835], + [-161.5459, 55.9389], + [-161.8046, 55.8879], + [-161.9665, 55.7999], + [-162.0389, 55.7883], + [-162.1221, 55.7396], + [-162.2556, 55.6891], + [-162.3725, 55.5891], + [-162.5114, 55.4925], + [-162.6259, 55.4361], + [-162.5049, 55.4597], + [-162.5197, 55.4205], + [-162.4862, 55.3767], + [-162.5803, 55.3473], + [-162.6432, 55.3687], + [-162.7104, 55.3187], + [-162.8093, 55.3015], + [-162.8651, 55.1811], + [-163.0439, 55.1682], + [-163.1652, 55.1712], + [-163.2982, 55.1087], + [-163.279, 55.0362], + [-163.2919, 54.9664], + [-163.2243, 54.9238], + [-163.3329, 54.9467], + [-163.3163, 54.8769], + [-163.3879, 54.8489], + [-163.3451, 54.8001], + [-163.2396, 54.8277], + [-163.1262, 54.9037], + [-163.0305, 54.9436], + [-163.0478, 54.9697], + [-163.2078, 55.0228], + [-163.2265, 55.0758], + [-163.1938, 55.1261], + [-163.1032, 55.1192], + [-162.9969, 55.0745], + [-162.9463, 55.0228], + [-162.9615, 54.9945], + [-162.9151, 54.9475], + [-162.832, 54.9204], + [-162.7062, 54.9567], + [-162.6528, 55.0163], + [-162.5593, 54.9513], + [-162.5812, 55.0345], + [-162.623, 55.0629], + [-162.646, 55.196], + [-162.6917, 55.1913], + [-162.7173, 55.2379], + [-162.6655, 55.2909], + [-162.5064, 55.2397], + [-162.4939, 55.1695], + [-162.4035, 55.1147], + [-162.5206, 55.1143], + [-162.5017, 55.0733], + [-162.4138, 55.0325], + [-162.3339, 55.0393], + [-162.2209, 55.0258], + [-162.1885, 55.0603], + [-162.229, 55.1037], + [-162.1747, 55.1507], + [-162.1006, 55.1552], + [-162.1227, 55.104], + [-162.0497, 55.0697], + [-161.9562, 55.1041], + [-161.9614, 55.1582], + [-162.0296, 55.1714], + [-162.001, 55.2409], + [-161.9015, 55.2437], + [-161.817, 55.2965], + [-161.6815, 55.4076], + [-161.7033, 55.5099], + [-161.5955, 55.6091], + [-161.4965, 55.6294], + [-161.3921, 55.6269], + [-161.3552, 55.5871], + [-161.4704, 55.4797], + [-161.5081, 55.3791], + [-161.4763, 55.3573], + [-161.32, 55.3822], + [-161.2391, 55.3547], + [-160.9878, 55.4447], + [-160.9445, 55.5085], + [-160.8428, 55.5225], + [-160.8329, 55.4708], + [-160.79, 55.4549], + [-160.663, 55.4618], + [-160.65, 55.5129], + [-160.7458, 55.5243], + [-160.7239, 55.5561], + [-160.6627, 55.5436], + [-160.5949, 55.5728], + [-160.5306, 55.4757], + [-160.4546, 55.5099], + [-160.4415, 55.5655], + [-160.3552, 55.6149], + [-160.4116, 55.6589], + [-160.2746, 55.6335], + [-160.2466, 55.6579], + [-160.1221, 55.6615], + [-160.135, 55.7061], + [-160.0495, 55.693], + [-160.0154, 55.7155], + [-160.0483, 55.763], + [-159.9486, 55.8158], + [-159.8943, 55.7839], + [-159.8408, 55.8003], + [-159.8326, 55.8482], + [-159.7058, 55.8449], + [-159.6225, 55.8199], + [-159.6602, 55.7543], + [-159.6857, 55.651], + [-159.6287, 55.618], + [-159.7016, 55.6054], + [-159.7085, 55.5674], + [-159.6272, 55.5794], + [-159.5322, 55.6465], + [-159.5368, 55.7191], + [-159.4893, 55.7627], + [-159.5238, 55.884], + [-159.4529, 55.8883], + [-159.4541, 55.8095], + [-159.404, 55.7873], + [-159.3941, 55.8549], + [-159.2602, 55.8909], + [-159.1688, 55.891], + [-159.065, 55.9181], + [-159.0038, 55.8871], + [-158.9884, 55.9263], + [-158.907, 55.9267], + [-158.8342, 56.0159], + [-158.7958, 55.9872], + [-158.7293, 56.0089], + [-158.7242, 55.9508], + [-158.6342, 55.9807], + [-158.6811, 56.1049], + [-158.6032, 56.125], + [-158.5791, 56.0419], + [-158.5049, 55.9787], + [-158.4894, 56.0487], + [-158.4395, 56.106], + [-158.3948, 56.0883], + [-158.3372, 56.1548], + [-158.1904, 56.1923], + [-158.3711, 56.2155], + [-158.2117, 56.2715], + [-158.3471, 56.3213], + [-158.4531, 56.2947], + [-158.4357, 56.3401], + [-158.5435, 56.3077], + [-158.5661, 56.2491], + [-158.6382, 56.2596], + [-158.6023, 56.3131], + [-158.4057, 56.4512], + [-158.3311, 56.4821], + [-158.1839, 56.4546], + [-158.1328, 56.4606], + [-158.1443, 56.5175], + [-158.0297, 56.5077], + [-157.8876, 56.4681], + [-157.8248, 56.4978], + [-157.8195, 56.5561], + [-157.909, 56.571], + [-158.1281, 56.5269], + [-158.1304, 56.5508], + [-158.0289, 56.6013], + [-157.9762, 56.5993], + [-157.9438, 56.6347], + [-157.7713, 56.6797], + [-157.7387, 56.6739], + [-157.6824, 56.6073], + [-157.4624, 56.6235], + [-157.4798, 56.6716], + [-157.555, 56.6782], + [-157.5674, 56.7055], + [-157.5113, 56.7622], + [-157.405, 56.7731], + [-157.4747, 56.8238], + [-157.386, 56.862], + [-157.2033, 56.7642], + [-157.1398, 56.8042], + [-157.1872, 56.8547], + [-157.0907, 56.8184], + [-157.0358, 56.8889], + [-156.936, 56.9156], + [-156.8929, 56.9638], + [-156.8343, 56.8954], + [-156.7279, 57.0382], + [-156.6754, 56.9938], + [-156.5838, 56.9871], + [-156.5887, 57.0365], + [-156.5169, 57.0491], + [-156.4661, 57.123], + [-156.4147, 57.1257], + [-156.3389, 57.1761], + [-156.39, 57.202], + [-156.3829, 57.2522], + [-156.3224, 57.2898], + [-156.3564, 57.3224], + [-156.5577, 57.288], + [-156.5415, 57.323], + [-156.4523, 57.3454], + [-156.3342, 57.4189], + [-156.2247, 57.4439], + [-156.1835, 57.4771], + [-156.1208, 57.4717], + [-156.1014, 57.433], + [-156.0255, 57.4335], + [-156.056, 57.5171], + [-156.0191, 57.5646], + [-155.9342, 57.5297], + [-155.8353, 57.5739], + [-155.7959, 57.5403], + [-155.735, 57.5398], + [-155.7431, 57.6292], + [-155.5962, 57.6584], + [-155.6395, 57.704], + [-155.6043, 57.7807], + [-155.5714, 57.7891], + [-155.3904, 57.7125], + [-155.3048, 57.7233], + [-155.3312, 57.8263], + [-155.236, 57.826], + [-155.2103, 57.8682], + [-155.1558, 57.8551], + [-155.0688, 57.9042], + [-155.0391, 58.0201], + [-154.8747, 58.0278], + [-154.8114, 57.9999], + [-154.7332, 58.017], + [-154.7184, 58.0581], + [-154.6523, 58.062], + [-154.5883, 58.0204], + [-154.5417, 58.0602], + [-154.6018, 58.1207], + [-154.465, 58.0816], + [-154.4512, 58.1814], + [-154.4193, 58.1302], + [-154.3152, 58.0923], + [-154.3374, 58.1599], + [-154.2724, 58.1305], + [-154.2155, 58.1384], + [-154.2903, 58.1774], + [-154.2779, 58.2017], + [-154.178, 58.1917], + [-154.1517, 58.2339], + [-154.2079, 58.2542], + [-154.106, 58.2778], + [-154.1858, 58.3234], + [-154.261, 58.2736], + [-154.3542, 58.2501], + [-154.3365, 58.2845], + [-154.1803, 58.3594], + [-154.0999, 58.3432], + [-154.0074, 58.3752], + [-154.0671, 58.4271], + [-154.0794, 58.4789], + [-153.9629, 58.4862], + [-153.9278, 58.5205], + [-153.901, 58.6097], + [-153.7614, 58.6044], + [-153.5943, 58.6318], + [-153.5644, 58.6821], + [-153.4551, 58.7055], + [-153.3945, 58.7473], + [-153.3559, 58.8395], + [-153.3125, 58.8542], + [-153.4074, 58.9694], + [-153.4844, 58.9987], + [-153.5463, 58.9829], + [-153.6286, 59.0106], + [-153.6996, 59.0755], + [-153.8071, 59.074], + [-153.8644, 59.0553], + [-154.0682, 59.0741], + [-154.1401, 59.0217], + [-154.1806, 59.0229], + [-154.2005, 59.0735], + [-154.1794, 59.1219], + [-154.2488, 59.1166], + [-154.1853, 59.1924], + [-154.1292, 59.1993], + [-154.1425, 59.2687], + [-154.1131, 59.3052], + [-153.9724, 59.3568], + [-153.9102, 59.4206], + [-153.7293, 59.4409], + [-153.7072, 59.4677], + [-153.7636, 59.5456], + [-153.5925, 59.5537], + [-153.5542, 59.5972], + [-153.6333, 59.6449], + [-153.6114, 59.6765], + [-153.5658, 59.6249], + [-153.4798, 59.6447], + [-153.4462, 59.6982], + [-153.4526, 59.7863], + [-153.3843, 59.7309], + [-153.3938, 59.6651], + [-153.3453, 59.6217], + [-153.2865, 59.6709], + [-153.2179, 59.635], + [-153.1251, 59.678], + [-153.0592, 59.6904], + [-152.9938, 59.8083], + [-153.0943, 59.8335], + [-153.1476, 59.8091], + [-153.2831, 59.8305], + [-153.2222, 59.8651], + [-153.1204, 59.8659], + [-153.0068, 59.8868], + [-152.8699, 59.8752], + [-152.7069, 59.9201], + [-152.6685, 59.983], + [-152.6089, 60.0068], + [-152.5755, 60.0828], + [-152.6734, 60.1641], + [-152.8125, 60.2125], + [-152.6687, 60.2], + [-152.5625, 60.2167], + [-152.4745, 60.2786], + [-152.4187, 60.2854], + [-152.3703, 60.3516], + [-152.3042, 60.3604], + [-152.238, 60.3953], + [-152.2995, 60.413], + [-152.3307, 60.4766], + [-152.25, 60.5354], + [-152.1792, 60.5687], + [-152.0922, 60.5797], + [-152.0557, 60.637], + [-151.9974, 60.6724], + [-151.8505, 60.7214], + [-151.7026, 60.7307], + [-151.7912, 60.8214], + [-151.7724, 60.8661], + [-151.7146, 60.8958], + [-151.4828, 60.9964], + [-151.3562, 61.0083], + [-151.2995, 61.0328], + [-151.163, 61.0464], + [-151.0495, 61.1599], + [-150.9354, 61.2], + [-150.8542, 61.2083], + [-150.6938, 61.2562], + [-150.6646, 61.325], + [-150.5979, 61.3604], + [-150.5453, 61.4078], + [-150.4896, 61.3979], + [-150.5005, 61.4661], + [-150.5849, 61.4964], + [-150.5724, 61.5307], + [-150.4901, 61.5568], + [-150.4859, 61.587], + [-150.5911, 61.6339], + [-150.6703, 61.7005], + [-150.7271, 61.8], + [-150.7578, 61.8089], + [-150.8276, 61.887], + [-151.0208, 61.9188], + [-151.1229, 61.975], + [-151.1687, 61.9896], + [-151.113, 61.9849], + [-150.9495, 61.9089], + [-150.8396, 61.8958], + [-150.7297, 61.8266], + [-150.7021, 61.7729], + [-150.6891, 61.7339], + [-150.5807, 61.6359], + [-150.5437, 61.6271], + [-150.4901, 61.5974], + [-150.4729, 61.5729], + [-150.4276, 61.5755], + [-150.3849, 61.6474], + [-150.313, 61.6693], + [-150.2932, 61.7411], + [-150.1984, 61.7964], + [-150.2078, 61.8453], + [-150.1151, 61.9193], + [-150.1333, 61.9396], + [-150.1578, 61.9786], + [-150.125, 62.0604], + [-150.0818, 62.0953], + [-150.1891, 62.1682], + [-150.1276, 62.2161], + [-150.1682, 62.2495], + [-150.1297, 62.2755], + [-150.1562, 62.3354], + [-150.1687, 62.3542], + [-150.1047, 62.3057], + [-150.137, 62.237], + [-150.1151, 62.2245], + [-150.1224, 62.1891], + [-150.1745, 62.1672], + [-150.0693, 62.1036], + [-150.1161, 62.0411], + [-150.0917, 61.9708], + [-150.1068, 61.8984], + [-150.1849, 61.8307], + [-150.1901, 61.7911], + [-150.25, 61.7625], + [-150.2688, 61.7167], + [-150.313, 61.663], + [-150.3745, 61.6172], + [-150.3651, 61.5943], + [-150.5437, 61.5271], + [-150.5562, 61.4875], + [-150.4859, 61.4703], + [-150.4547, 61.4099], + [-150.562, 61.3391], + [-150.5521, 61.2958], + [-150.4521, 61.25], + [-150.3062, 61.2583], + [-150.1167, 61.2562], + [-149.9812, 61.2375], + [-149.9193, 61.2651], + [-149.9182, 61.3245], + [-149.8771, 61.3875], + [-149.825, 61.3937], + [-149.762, 61.4453], + [-149.5984, 61.488], + [-149.4687, 61.4667], + [-149.4062, 61.4854], + [-149.2688, 61.4938], + [-149.2146, 61.4792], + [-149.1604, 61.5021], + [-149.0333, 61.5042], + [-148.9354, 61.5187], + [-148.7495, 61.4578], + [-148.8661, 61.4693], + [-148.9958, 61.5083], + [-149.0896, 61.4875], + [-149.1562, 61.4979], + [-149.1938, 61.475], + [-149.2354, 61.4792], + [-149.3813, 61.4667], + [-149.6375, 61.3854], + [-149.7016, 61.3807], + [-149.7146, 61.3292], + [-149.8161, 61.312], + [-149.8963, 61.2234], + [-150.0188, 61.2021], + [-150.0682, 61.1526], + [-149.8359, 61.0724], + [-149.7328, 61.0151], + [-149.5917, 60.9813], + [-149.4917, 60.9833], + [-149.3609, 60.9307], + [-149.1766, 60.9359], + [-149.0776, 60.9057], + [-149.025, 60.85], + [-149.0896, 60.8958], + [-149.1734, 60.887], + [-149.3771, 60.8937], + [-149.5625, 60.9333], + [-149.6479, 60.9229], + [-149.7458, 60.9604], + [-149.8437, 60.9667], + [-149.9271, 60.9313], + [-150.0917, 60.9146], + [-150.262, 60.9443], + [-150.3708, 61.0375], + [-150.5078, 61.0036], + [-150.6943, 60.9422], + [-151.0542, 60.7875], + [-151.2146, 60.7792], + [-151.3021, 60.7396], + [-151.4083, 60.7167], + [-151.3505, 60.6432], + [-151.3266, 60.5776], + [-151.2542, 60.5458], + [-151.2807, 60.5016], + [-151.2953, 60.3859], + [-151.3766, 60.3661], + [-151.3792, 60.2938], + [-151.413, 60.2151], + [-151.4984, 60.1547], + [-151.6224, 60.0891], + [-151.6953, 60.0349], + [-151.7593, 59.9185], + [-151.8148, 59.8705], + [-151.8711, 59.7676], + [-151.8376, 59.7204], + [-151.6451, 59.6473], + [-151.4835, 59.6386], + [-151.4369, 59.6701], + [-151.3415, 59.6862], + [-151.0588, 59.7969], + [-150.9574, 59.7859], + [-151.1245, 59.6957], + [-151.206, 59.6359], + [-151.1974, 59.5941], + [-151.2816, 59.5991], + [-151.2712, 59.5578], + [-151.3654, 59.5599], + [-151.4544, 59.5409], + [-151.4901, 59.4817], + [-151.5611, 59.4699], + [-151.6361, 59.4861], + [-151.8925, 59.4288], + [-151.8951, 59.3845], + [-151.9941, 59.3147], + [-151.9818, 59.2579], + [-151.8719, 59.253], + [-151.884, 59.2139], + [-151.7651, 59.2242], + [-151.7402, 59.1573], + [-151.5934, 59.1629], + [-151.5779, 59.2077], + [-151.5262, 59.1955], + [-151.4539, 59.2373], + [-151.4462, 59.2743], + [-151.3123, 59.2117], + [-151.3058, 59.2469], + [-151.1862, 59.2048], + [-151.1077, 59.2468], + [-151.2594, 59.2932], + [-151.2151, 59.3106], + [-151.0945, 59.2694], + [-151.0542, 59.3042], + [-151.0182, 59.2115], + [-150.9883, 59.2399], + [-150.9149, 59.2512], + [-150.8565, 59.3581], + [-150.7751, 59.3747], + [-150.7471, 59.4243], + [-150.6057, 59.4293], + [-150.5845, 59.4952], + [-150.6296, 59.5414], + [-150.53, 59.6037], + [-150.5179, 59.5739], + [-150.5768, 59.5294], + [-150.4866, 59.4953], + [-150.4383, 59.5146], + [-150.3277, 59.6253], + [-150.2516, 59.7266], + [-150.2701, 59.6322], + [-150.3609, 59.528], + [-150.3243, 59.4713], + [-150.2222, 59.5438], + [-150.1266, 59.5896], + [-150.0906, 59.65], + [-150.039, 59.6128], + [-149.9222, 59.687], + [-149.9966, 59.7494], + [-149.92, 59.7695], + [-149.8239, 59.699], + [-149.7965, 59.6575], + [-149.739, 59.7139], + [-149.8224, 59.8347], + [-149.7632, 59.8204], + [-149.7503, 59.9411], + [-149.6894, 59.9469], + [-149.661, 59.893], + [-149.6618, 59.7745], + [-149.5957, 59.7662], + [-149.6202, 59.8365], + [-149.5242, 59.928], + [-149.4702, 59.9182], + [-149.4418, 59.9779], + [-149.3963, 60.0016], + [-149.4474, 60.0339], + [-149.4432, 60.1161], + [-149.3589, 60.1141], + [-149.3125, 59.9819], + [-149.3792, 59.9031], + [-149.259, 59.9229], + [-149.2063, 60.0083], + [-149.1682, 60.037], + [-149.0339, 60.0432], + [-149.1312, 59.9643], + [-149.039, 59.9781], + [-149.009, 59.9462], + [-148.9628, 59.9721], + [-148.8835, 59.9252], + [-148.8458, 59.9242], + [-148.7708, 59.9768], + [-148.6833, 59.9219], + [-148.6081, 59.9285], + [-148.5208, 60.0229], + [-148.456, 59.9413], + [-148.4103, 59.981], + [-148.3734, 60.0911], + [-148.3271, 60.1625], + [-148.2833, 60.1667], + [-148.2896, 60.1104], + [-148.2417, 60.1146], + [-148.1214, 60.1651], + [-148.1057, 60.2036], + [-148.1453, 60.2349], + [-148.1797, 60.163], + [-148.2104, 60.2583], + [-148.3292, 60.2125], + [-148.3542, 60.2813], + [-148.3, 60.2604], + [-148.2088, 60.3005], + [-148.1161, 60.3776], + [-148.0068, 60.4005], + [-147.9672, 60.4484], + [-147.9734, 60.5141], + [-148.0672, 60.5609], + [-148.0818, 60.5932], + [-148.1516, 60.5745], + [-148.1682, 60.538], + [-148.2693, 60.487], + [-148.3328, 60.4724], + [-148.3479, 60.5042], + [-148.4349, 60.513], + [-148.4542, 60.5417], + [-148.5745, 60.4995], + [-148.6896, 60.4354], + [-148.7146, 60.4562], + [-148.5974, 60.5328], + [-148.5229, 60.5646], + [-148.4542, 60.5687], + [-148.325, 60.5292], + [-148.2682, 60.5849], + [-148.188, 60.6099], + [-148.2547, 60.7026], + [-148.2583, 60.7562], + [-148.3307, 60.7036], + [-148.3583, 60.6542], + [-148.4047, 60.6651], + [-148.3833, 60.7542], + [-148.512, 60.7661], + [-148.588, 60.6984], + [-148.6812, 60.6458], + [-148.6807, 60.7057], + [-148.5604, 60.8042], + [-148.6562, 60.775], + [-148.7104, 60.7875], + [-148.6021, 60.825], + [-148.4333, 60.8292], + [-148.4063, 60.8458], + [-148.3068, 60.8339], + [-148.2563, 60.9354], + [-148.1859, 60.9901], + [-148.1651, 61.0661], + [-148.3245, 61.0266], + [-148.3838, 60.9776], + [-148.3687, 61.0417], + [-148.2354, 61.0875], + [-148.1479, 61.0979], + [-148.0792, 61.0062], + [-148.0005, 61.063], + [-147.9807, 61.1078], + [-147.8505, 61.1839], + [-147.7224, 61.287], + [-147.6714, 61.2693], + [-147.7542, 61.2083], + [-147.7578, 61.1849], + [-147.9057, 61.0891], + [-147.9943, 60.9609], + [-148.0104, 60.9167], + [-147.9229, 60.8896], + [-147.9099, 60.8536], + [-147.7792, 60.8104], + [-147.7958, 60.9188], + [-147.7208, 60.9396], + [-147.6667, 60.8625], + [-147.6047, 60.8484], + [-147.5943, 60.9359], + [-147.6167, 61.0083], + [-147.5568, 61.0797], + [-147.5599, 61.1453], + [-147.5104, 61.0812], + [-147.5412, 60.987], + [-147.5099, 60.9099], + [-147.4755, 60.9911], + [-147.4458, 60.8937], + [-147.3667, 60.8833], + [-147.3062, 60.9229], + [-147.2505, 60.9276], + [-147.2912, 60.9849], + [-147.2276, 60.9922], + [-147.2104, 60.9437], + [-147.0922, 61.013], + [-147.0354, 60.9917], + [-147.0036, 61.0203], + [-146.9625, 60.9313], + [-146.863, 60.9734], + [-146.7667, 61.0438], + [-146.7021, 61.0542], + [-146.5979, 61.1437], + [-146.5708, 61.1208], + [-146.4646, 61.1333], + [-146.3042, 61.1292], + [-146.2354, 61.0896], + [-146.45, 61.0771], + [-146.6104, 61.0812], + [-146.7161, 60.9672], + [-146.6208, 60.9521], + [-146.6021, 60.9188], + [-146.7516, 60.9453], + [-146.6891, 60.8672], + [-146.6313, 60.8854], + [-146.6333, 60.8167], + [-146.5708, 60.8563], + [-146.5396, 60.8104], + [-146.3562, 60.8167], + [-146.2901, 60.838], + [-146.2453, 60.8786], + [-146.1708, 60.8458], + [-146.2312, 60.8083], + [-146.3313, 60.7854], + [-146.5474, 60.7703], + [-146.6714, 60.7391], + [-146.6536, 60.6859], + [-146.5354, 60.6917], + [-146.4896, 60.6688], + [-146.4187, 60.6875], + [-146.3057, 60.7536], + [-146.2979, 60.7125], + [-146.2349, 60.7203], + [-146.1854, 60.7562], + [-146.1568, 60.7255], + [-146.0693, 60.7734], + [-146.0568, 60.7359], + [-146.2172, 60.663], + [-146.2521, 60.6229], + [-146.15, 60.6312], + [-146.025, 60.6646], + [-145.938, 60.6255], + [-145.8995, 60.6745], + [-145.8437, 60.6104], + [-145.6651, 60.6547], + [-145.6943, 60.5922], + [-145.7922, 60.5193], + [-145.9141, 60.4891], + [-145.8792, 60.4458], + [-145.7583, 60.4646], + [-145.5495, 60.4359], + [-145.4792, 60.3812], + [-145.3687, 60.3563], + [-145.3333, 60.3417], + [-145.2088, 60.3672], + [-145.0901, 60.438], + [-145.0307, 60.5099], + [-144.9833, 60.5354], + [-144.8859, 60.5485], + [-144.8396, 60.6188], + [-144.7792, 60.6292], + [-144.7625, 60.6792], + [-144.7, 60.6958], + [-144.7042, 60.675], + [-144.6542, 60.6667], + [-144.6021, 60.7167], + [-144.5917, 60.7333], + [-144.6396, 60.6521], + [-144.7083, 60.6458], + [-144.7641, 60.6661], + [-144.7588, 60.6109], + [-144.8109, 60.563], + [-144.8229, 60.5146], + [-144.7943, 60.4547], + [-144.9141, 60.3578], + [-144.9536, 60.288], + [-144.7667, 60.2792], + [-144.6771, 60.2104], + [-144.5562, 60.1771], + [-144.3729, 60.1667], + [-144.2937, 60.1813], + [-144.2891, 60.1422], + [-144.1083, 60.0979], + [-144.0453, 60.0484], + [-144.2125, 60.0417], + [-144.2479, 60.0229], + [-144.0292, 60.0208], + [-143.8899, 59.9893], + [-143.6479, 60.0375], + [-143.4687, 60.0604], + [-143.4292, 60.0521], + [-143.1083, 60.0667], + [-143.0375, 60.1], + [-142.9896, 60.0833], + [-142.7583, 60.1104], + [-142.0208, 60.025], + [-141.8854, 60.0021], + [-141.7502, 59.9515], + [-141.6046, 59.9636], + [-141.5308, 59.9897], + [-141.4297, 60], + [-141.3693, 60.0255], + [-141.4479, 60.0812], + [-141.4521, 60.1104], + [-141.4271, 60.125], + [-141.3458, 60.0854], + [-141.1938, 60.1208], + [-141.3146, 60.0542] + ] + ], + [ + [ + [-153.2523, 57.997], + [-153.3048, 57.9846], + [-153.0948, 57.8618], + [-153.2349, 57.8944], + [-153.1796, 57.7972], + [-153.2057, 57.7901], + [-153.3381, 57.8037], + [-153.4768, 57.8417], + [-153.4604, 57.7899], + [-153.3313, 57.7493], + [-153.3528, 57.7027], + [-153.3903, 57.7499], + [-153.4889, 57.7744], + [-153.5247, 57.6561], + [-153.5561, 57.7382], + [-153.5718, 57.8323], + [-153.6191, 57.8804], + [-153.7197, 57.8965], + [-153.9306, 57.8091], + [-153.9356, 57.7297], + [-153.9056, 57.7013], + [-153.8011, 57.6964], + [-153.6667, 57.665], + [-153.6593, 57.6401], + [-153.8682, 57.6502], + [-153.8798, 57.633], + [-153.6942, 57.5278], + [-153.8196, 57.5379], + [-153.8122, 57.4136], + [-153.7398, 57.3174], + [-153.7589, 57.3075], + [-153.8326, 57.3861], + [-153.8943, 57.4205], + [-153.9267, 57.5334], + [-153.9894, 57.5386], + [-153.9801, 57.621], + [-154.0172, 57.6483], + [-154.2328, 57.6633], + [-154.2622, 57.6419], + [-154.3872, 57.6139], + [-154.4448, 57.5733], + [-154.5178, 57.5766], + [-154.5228, 57.5367], + [-154.63, 57.5078], + [-154.651, 57.4611], + [-154.7161, 57.4308], + [-154.6956, 57.3989], + [-154.7441, 57.3252], + [-154.7347, 57.2715], + [-154.6211, 57.2704], + [-154.5294, 57.1803], + [-154.5144, 57.0781], + [-154.5283, 56.9922], + [-154.3967, 56.9633], + [-154.3122, 56.9175], + [-154.3033, 56.8419], + [-154.2256, 56.8758], + [-154.205, 56.9292], + [-154.1533, 56.9489], + [-154.1511, 57.0019], + [-154.0917, 57.1006], + [-154.1157, 57.128], + [-154.2939, 57.1136], + [-154.3789, 57.0497], + [-154.4361, 57.0544], + [-154.4744, 57.1242], + [-154.3911, 57.1233], + [-154.3383, 57.1503], + [-154.2289, 57.1614], + [-154.0767, 57.122], + [-154.013, 57.1289], + [-154.1078, 57.0569], + [-154.1417, 56.9972], + [-154.0744, 56.9703], + [-153.9764, 57.0566], + [-153.8818, 57.1171], + [-153.8033, 57.1125], + [-153.9209, 57.0629], + [-153.975, 56.958], + [-153.8595, 56.9833], + [-153.844, 56.945], + [-153.9799, 56.8977], + [-154.0089, 56.86], + [-154.0806, 56.8406], + [-154.1506, 56.7469], + [-154.0556, 56.7631], + [-153.9767, 56.7434], + [-153.8985, 56.7667], + [-153.8426, 56.8329], + [-153.7583, 56.8383], + [-153.6698, 56.9309], + [-153.6013, 56.933], + [-153.5406, 57.0009], + [-153.6388, 57.0157], + [-153.5943, 57.0563], + [-153.7026, 57.057], + [-153.6611, 57.0842], + [-153.573, 57.0927], + [-153.4994, 57.0651], + [-153.486, 57.14], + [-153.4498, 57.1119], + [-153.3419, 57.1898], + [-153.2185, 57.2175], + [-153.0797, 57.2123], + [-152.9507, 57.2491], + [-153.015, 57.3014], + [-153.0985, 57.287], + [-153.1928, 57.3019], + [-152.9974, 57.3446], + [-152.8593, 57.3044], + [-152.8187, 57.2645], + [-152.7432, 57.3129], + [-152.7069, 57.2759], + [-152.6267, 57.3286], + [-152.626, 57.4058], + [-152.7157, 57.4185], + [-152.8164, 57.4717], + [-152.9326, 57.4641], + [-152.8832, 57.5117], + [-152.8011, 57.4943], + [-152.7389, 57.5058], + [-152.6636, 57.4632], + [-152.5173, 57.4336], + [-152.4891, 57.4683], + [-152.3504, 57.4213], + [-152.2889, 57.5211], + [-152.1668, 57.5868], + [-152.1544, 57.6205], + [-152.2689, 57.6283], + [-152.4695, 57.6014], + [-152.4004, 57.6876], + [-152.492, 57.6457], + [-152.4638, 57.7251], + [-152.5327, 57.6951], + [-152.5581, 57.719], + [-152.4009, 57.7757], + [-152.3467, 57.835], + [-152.4212, 57.8138], + [-152.4004, 57.8557], + [-152.5269, 57.9104], + [-152.6172, 57.9208], + [-152.7102, 57.8644], + [-152.7285, 57.8189], + [-152.785, 57.8587], + [-152.8458, 57.829], + [-152.8438, 57.729], + [-152.908, 57.7557], + [-152.9123, 57.8195], + [-152.8612, 57.8791], + [-152.7971, 57.8995], + [-152.8497, 57.9291], + [-152.9995, 57.9471], + [-152.9976, 57.9188], + [-153.1989, 57.9682], + [-153.2523, 57.997] + ] + ], + [ + [ + [-133.6022, 56.3561], + [-133.6639, 56.3195], + [-133.6065, 56.1902], + [-133.4683, 56.1764], + [-133.4621, 56.1401], + [-133.526, 56.1179], + [-133.6245, 56.1424], + [-133.6361, 56.0859], + [-133.7022, 56.0669], + [-133.8092, 55.9668], + [-133.7939, 55.9164], + [-133.6961, 55.9128], + [-133.6272, 55.9678], + [-133.5385, 55.981], + [-133.3783, 56.0328], + [-133.365, 55.9886], + [-133.4311, 55.9559], + [-133.4422, 55.9133], + [-133.3844, 55.8947], + [-133.3861, 55.9539], + [-133.2878, 56.0156], + [-133.285, 55.9564], + [-133.2399, 55.8833], + [-133.1633, 55.8456], + [-133.1678, 55.8095], + [-133.2583, 55.7464], + [-133.314, 55.7599], + [-133.3423, 55.7063], + [-133.3911, 55.7287], + [-133.4078, 55.6477], + [-133.3592, 55.6069], + [-133.2716, 55.5756], + [-133.1819, 55.5809], + [-133.1378, 55.613], + [-133.0855, 55.6109], + [-133.0817, 55.5603], + [-133.156, 55.4766], + [-133.0725, 55.4473], + [-133.0511, 55.4002], + [-132.9752, 55.3661], + [-133.0039, 55.3431], + [-133.1027, 55.3753], + [-133.2255, 55.3828], + [-133.2795, 55.3511], + [-133.235, 55.2842], + [-133.0897, 55.2696], + [-132.9585, 55.2767], + [-133.0395, 55.2342], + [-133.0161, 55.2031], + [-132.8806, 55.2314], + [-132.8353, 55.2693], + [-132.8267, 55.2019], + [-132.6635, 55.1393], + [-132.629, 55.1723], + [-132.6577, 55.2349], + [-132.5822, 55.1719], + [-132.6292, 55.1109], + [-132.525, 55.1161], + [-132.5575, 55.0765], + [-132.5211, 55.0394], + [-132.6163, 54.9699], + [-132.5294, 54.9327], + [-132.4695, 54.98], + [-132.4927, 54.8952], + [-132.4478, 54.9039], + [-132.4111, 54.9678], + [-132.3755, 54.8935], + [-132.3072, 54.8392], + [-132.3656, 54.8186], + [-132.3078, 54.7803], + [-132.31, 54.7217], + [-132.2308, 54.718], + [-132.165, 54.6908], + [-132.0178, 54.69], + [-131.9982, 54.7297], + [-132.0182, 54.7848], + [-131.9633, 54.7831], + [-131.9728, 54.8489], + [-132.054, 54.8928], + [-131.9789, 54.8983], + [-131.9656, 54.9528], + [-132.0305, 55.0332], + [-132.1306, 54.9964], + [-132.2056, 55.0033], + [-132.0928, 55.0406], + [-132.076, 55.0797], + [-131.9944, 55.1128], + [-132.0367, 55.1431], + [-131.9755, 55.1836], + [-131.9922, 55.2583], + [-132.0283, 55.2798], + [-132.1103, 55.1989], + [-132.2273, 55.2207], + [-132.0939, 55.2667], + [-132.1463, 55.3377], + [-132.205, 55.3628], + [-132.2595, 55.4171], + [-132.3626, 55.4077], + [-132.4111, 55.4203], + [-132.3189, 55.4703], + [-132.3972, 55.4742], + [-132.4122, 55.5155], + [-132.4883, 55.4964], + [-132.5854, 55.4986], + [-132.5356, 55.5603], + [-132.5387, 55.6084], + [-132.4217, 55.5395], + [-132.2305, 55.4843], + [-132.1761, 55.4506], + [-132.1822, 55.5059], + [-132.3043, 55.5599], + [-132.3737, 55.6609], + [-132.4958, 55.6594], + [-132.4444, 55.7201], + [-132.4911, 55.7545], + [-132.4861, 55.7967], + [-132.6164, 55.9083], + [-132.7346, 55.9842], + [-132.8272, 56.0228], + [-132.9675, 56.0281], + [-133.0119, 56.0557], + [-133.0779, 56.0429], + [-133.1222, 56.0937], + [-133.0766, 56.1111], + [-133.0379, 56.1827], + [-133.1239, 56.2601], + [-133.1502, 56.3069], + [-133.2032, 56.3351], + [-133.3071, 56.3218], + [-133.3573, 56.3401], + [-133.4156, 56.3269], + [-133.6022, 56.3561] + ] + ], + [ + [ + [-135.8933, 57.9978], + [-135.5022, 57.8764], + [-135.4137, 57.8591], + [-135.3158, 57.807], + [-135.2025, 57.7765], + [-135.0202, 57.7798], + [-134.9578, 57.8167], + [-135.141, 57.924], + [-134.9995, 57.8892], + [-134.9226, 57.9232], + [-134.9142, 57.9763], + [-134.9527, 58.04], + [-135.1087, 58.0607], + [-135.1161, 58.0914], + [-135.275, 58.0975], + [-135.4063, 58.1442], + [-135.4672, 58.1311], + [-135.4878, 58.0858], + [-135.5576, 58.0449], + [-135.6433, 57.9661], + [-135.7452, 57.992], + [-135.637, 57.9957], + [-135.7133, 58.0594], + [-135.626, 58.049], + [-135.5184, 58.1268], + [-135.5277, 58.1876], + [-135.6496, 58.2291], + [-135.7322, 58.2386], + [-135.7797, 58.2842], + [-135.825, 58.2827], + [-136.0056, 58.1881], + [-136.1404, 58.2256], + [-136.2027, 58.1773], + [-136.2029, 58.1453], + [-136.2957, 58.2232], + [-136.354, 58.2238], + [-136.3201, 58.1551], + [-136.4437, 58.1252], + [-136.4386, 58.0952], + [-136.2495, 57.9824], + [-136.1104, 57.8704], + [-136.272, 57.9688], + [-136.3539, 58.0028], + [-136.3611, 57.9339], + [-136.4322, 57.8431], + [-136.2951, 57.7629], + [-136.2589, 57.7773], + [-136.1096, 57.6911], + [-136.1621, 57.6423], + [-135.9686, 57.5291], + [-135.9228, 57.5245], + [-135.8178, 57.445], + [-136, 57.5295], + [-135.9683, 57.4633], + [-135.9144, 57.4475], + [-135.84, 57.3892], + [-135.713, 57.3664], + [-135.6755, 57.4069], + [-135.6201, 57.4119], + [-135.5556, 57.4527], + [-135.5811, 57.5177], + [-135.5705, 57.5955], + [-135.7056, 57.6589], + [-135.7283, 57.72], + [-135.6263, 57.7015], + [-135.5337, 57.6521], + [-135.2485, 57.5484], + [-135.1286, 57.4971], + [-135.0886, 57.4655], + [-134.9818, 57.4573], + [-134.8706, 57.4647], + [-134.8334, 57.4873], + [-134.85, 57.5805], + [-134.9229, 57.6779], + [-134.9288, 57.7571], + [-135.0216, 57.7439], + [-135.1106, 57.76], + [-135.2361, 57.7072], + [-135.2444, 57.7322], + [-135.3271, 57.7472], + [-135.3774, 57.8013], + [-135.5178, 57.8431], + [-135.5769, 57.8838], + [-135.7894, 57.9411], + [-135.8933, 57.9978] + ] + ], + [ + [ + [-171.6536, 63.7734], + [-171.7068, 63.7464], + [-171.8391, 63.5516], + [-171.8432, 63.4859], + [-171.8167, 63.4313], + [-171.7312, 63.3667], + [-171.5458, 63.3187], + [-171.4333, 63.3083], + [-171.2964, 63.3526], + [-171.2833, 63.3833], + [-171.1917, 63.3958], + [-171.0604, 63.4333], + [-170.9458, 63.4354], + [-170.8521, 63.4562], + [-170.7833, 63.4083], + [-170.5849, 63.3964], + [-170.3526, 63.3141], + [-170.3167, 63.2875], + [-170.2375, 63.2792], + [-170.2245, 63.188], + [-170.1021, 63.1896], + [-170.0042, 63.1437], + [-169.9104, 63.1458], + [-169.7583, 63.0812], + [-169.7109, 63.0109], + [-169.7708, 63.0083], + [-169.7542, 62.9583], + [-169.6375, 62.9375], + [-169.6172, 62.9672], + [-169.5318, 62.9776], + [-169.5771, 63.0521], + [-169.4563, 63.0958], + [-169.3745, 63.1557], + [-169.2125, 63.2], + [-169.0667, 63.1979], + [-168.9521, 63.1604], + [-168.8792, 63.1604], + [-168.7214, 63.2318], + [-168.7, 63.3], + [-168.8203, 63.3026], + [-168.8813, 63.3292], + [-169.0042, 63.3417], + [-169.2563, 63.3417], + [-169.3938, 63.3563], + [-169.475, 63.3438], + [-169.5578, 63.3609], + [-169.5693, 63.3995], + [-169.6521, 63.4292], + [-169.8229, 63.4292], + [-169.9375, 63.4688], + [-170.0641, 63.488], + [-170.1062, 63.6146], + [-170.1458, 63.6146], + [-170.2896, 63.6875], + [-170.4771, 63.6958], + [-170.5359, 63.6672], + [-170.6375, 63.6688], + [-170.8932, 63.5714], + [-170.9854, 63.5646], + [-171.175, 63.5875], + [-171.2271, 63.6125], + [-171.4995, 63.6005], + [-171.5172, 63.6578], + [-171.65, 63.7062], + [-171.6536, 63.7734] + ] + ], + [ + [ + [-134.1774, 58.156], + [-134.3336, 58.1428], + [-134.4486, 58.1739], + [-134.538, 58.1824], + [-134.6926, 58.1596], + [-134.7094, 58.2282], + [-134.8047, 58.3218], + [-134.8781, 58.3574], + [-134.887, 58.3218], + [-134.9527, 58.4091], + [-134.957, 58.31], + [-134.8959, 58.1916], + [-134.866, 58.1814], + [-134.7709, 58.0873], + [-134.8099, 58.0452], + [-134.7056, 57.8317], + [-134.7309, 57.7217], + [-134.6778, 57.6113], + [-134.6118, 57.5624], + [-134.5797, 57.4765], + [-134.4686, 57.3843], + [-134.5808, 57.401], + [-134.57, 57.305], + [-134.6539, 57.2233], + [-134.6067, 57.1528], + [-134.6378, 57.1076], + [-134.6004, 57.0335], + [-134.4926, 57.0278], + [-134.4804, 57.0497], + [-134.3745, 57.0919], + [-134.281, 57.1579], + [-134.1557, 57.2075], + [-134.1486, 57.2636], + [-134.0956, 57.2709], + [-134.1606, 57.3333], + [-134.1744, 57.3911], + [-134.1078, 57.3213], + [-134.0861, 57.3614], + [-133.9808, 57.3042], + [-133.8624, 57.3677], + [-133.9189, 57.4437], + [-134.0889, 57.495], + [-134, 57.4947], + [-133.9137, 57.4715], + [-133.9464, 57.5673], + [-133.9351, 57.6109], + [-134.0472, 57.6747], + [-134.1483, 57.7631], + [-134.2339, 57.8647], + [-134.3102, 57.8558], + [-134.2811, 57.9175], + [-134.3304, 58.0005], + [-134.2383, 57.9669], + [-134.3154, 58.0957], + [-134.2038, 58.0246], + [-134.1387, 57.9048], + [-134.0928, 57.8493], + [-134.0317, 57.8175], + [-133.9981, 57.7199], + [-133.8561, 57.6228], + [-133.809, 57.6276], + [-133.8941, 57.6847], + [-133.8748, 57.7321], + [-133.9006, 57.8064], + [-134.0064, 57.8933], + [-133.9922, 57.9122], + [-134.0987, 57.9826], + [-134.099, 58.0175], + [-134.1724, 58.0671], + [-134.2041, 58.1147], + [-134.1774, 58.156] + ] + ], + [ + [ + [-166.1057, 60.3651], + [-166.2729, 60.3833], + [-166.3755, 60.3443], + [-166.4375, 60.375], + [-166.5745, 60.3516], + [-166.5896, 60.3021], + [-166.6375, 60.325], + [-166.7583, 60.3042], + [-166.8286, 60.2693], + [-166.7964, 60.2391], + [-166.862, 60.2026], + [-166.9479, 60.2208], + [-167.0542, 60.2146], + [-167.1083, 60.2313], + [-167.3146, 60.2313], + [-167.4401, 60.2016], + [-167.338, 60.1266], + [-167.3307, 60.0651], + [-167.2401, 60.0578], + [-167.1349, 60], + [-167.0226, 60], + [-166.8954, 59.9591], + [-166.7519, 59.8929], + [-166.675, 59.8844], + [-166.613, 59.8527], + [-166.4162, 59.8567], + [-166.3073, 59.8262], + [-166.2004, 59.7758], + [-166.1926, 59.7515], + [-166.1086, 59.7531], + [-166.0808, 59.7757], + [-166.1281, 59.8205], + [-166.0296, 59.867], + [-165.9553, 59.8817], + [-165.8922, 59.8717], + [-165.7468, 59.9084], + [-165.7165, 59.8943], + [-165.5799, 59.9127], + [-165.5885, 59.9502], + [-165.6536, 59.9961], + [-165.7109, 60.063], + [-165.6672, 60.0984], + [-165.6839, 60.2005], + [-165.7255, 60.2464], + [-165.6776, 60.2703], + [-165.7854, 60.3229], + [-165.8729, 60.3396], + [-165.9995, 60.3089], + [-166.0854, 60.3187], + [-166.1057, 60.3651] + ] + ], + [ + [ + [-135.4126, 57.5579], + [-135.4506, 57.5575], + [-135.551, 57.5093], + [-135.5329, 57.4511], + [-135.6008, 57.4035], + [-135.495, 57.3533], + [-135.685, 57.3725], + [-135.5498, 57.2378], + [-135.4995, 57.2561], + [-135.3456, 57.2473], + [-135.4242, 57.1687], + [-135.4038, 57.1011], + [-135.3389, 57.0472], + [-135.2724, 57.0319], + [-135.3039, 56.9847], + [-135.3761, 56.9891], + [-135.3406, 56.8772], + [-135.3967, 56.8801], + [-135.3779, 56.8164], + [-135.3283, 56.8283], + [-135.2911, 56.7208], + [-135.1912, 56.7619], + [-135.2244, 56.6936], + [-135.18, 56.6659], + [-135.0344, 56.7697], + [-135.0177, 56.7437], + [-135.0917, 56.7195], + [-135.1417, 56.6786], + [-135.1283, 56.6064], + [-135.0783, 56.6008], + [-135.0089, 56.6367], + [-135.0648, 56.5407], + [-134.9022, 56.3506], + [-134.8422, 56.3222], + [-134.8089, 56.2414], + [-134.7183, 56.2245], + [-134.6656, 56.1673], + [-134.6283, 56.2643], + [-134.6377, 56.5395], + [-134.6155, 56.6361], + [-134.6645, 56.8073], + [-134.7042, 56.8391], + [-134.6967, 56.9003], + [-134.7363, 56.9693], + [-134.7635, 57.0687], + [-134.7893, 57.0846], + [-134.7994, 57.1633], + [-134.8641, 57.212], + [-134.8628, 57.2717], + [-134.945, 57.2711], + [-134.9222, 57.3438], + [-134.8323, 57.2926], + [-134.8036, 57.3409], + [-134.8539, 57.4114], + [-134.8987, 57.4261], + [-135.0079, 57.411], + [-135.1642, 57.4454], + [-135.225, 57.4889], + [-135.2749, 57.4667], + [-135.3214, 57.5365], + [-135.4126, 57.5579] + ] + ], + [ + [ + [-163.7622, 55.0478], + [-163.8961, 55.0364], + [-164.0227, 54.9723], + [-164.1606, 54.9601], + [-164.2061, 54.9283], + [-164.3378, 54.8953], + [-164.4328, 54.9328], + [-164.5544, 54.8878], + [-164.5573, 54.8539], + [-164.6715, 54.7003], + [-164.7167, 54.6561], + [-164.8036, 54.6421], + [-164.9289, 54.5997], + [-164.94, 54.5364], + [-164.8478, 54.42], + [-164.7394, 54.3931], + [-164.655, 54.3886], + [-164.4494, 54.4211], + [-164.335, 54.4821], + [-164.328, 54.5403], + [-164.2061, 54.5959], + [-164.0667, 54.624], + [-163.8189, 54.6361], + [-163.5868, 54.6105], + [-163.4989, 54.6525], + [-163.4208, 54.6557], + [-163.4256, 54.72], + [-163.3261, 54.7459], + [-163.285, 54.6958], + [-163.1134, 54.6953], + [-163.1572, 54.6678], + [-163.0601, 54.6625], + [-163.1, 54.7295], + [-163.1866, 54.7769], + [-163.2244, 54.7553], + [-163.33, 54.7531], + [-163.4022, 54.8397], + [-163.395, 54.895], + [-163.467, 54.9851], + [-163.5317, 55.0147], + [-163.5396, 55.051], + [-163.6594, 55.04], + [-163.7622, 55.0478] + ] + ], + [ + [ + [-133.8678, 57.0963], + [-134.0083, 57.0728], + [-134.0411, 57.0227], + [-133.8922, 56.9484], + [-133.8328, 56.9014], + [-133.8729, 56.8591], + [-133.712, 56.7883], + [-133.7086, 56.6481], + [-133.6533, 56.5917], + [-133.6744, 56.52], + [-133.645, 56.4404], + [-133.5089, 56.4363], + [-133.4324, 56.4506], + [-133.3883, 56.4965], + [-133.2211, 56.4481], + [-133.1561, 56.4583], + [-133.0846, 56.5273], + [-133.0978, 56.6011], + [-133.1461, 56.6367], + [-133.2507, 56.6519], + [-133.2162, 56.6972], + [-133.2499, 56.7498], + [-133.3028, 56.73], + [-133.3427, 56.7647], + [-133.3011, 56.7961], + [-133.2462, 56.795], + [-133.2156, 56.7364], + [-133.0272, 56.6047], + [-132.956, 56.6278], + [-132.9323, 56.665], + [-132.9967, 56.8131], + [-132.9406, 56.8522], + [-132.9923, 56.9375], + [-133.0755, 56.9908], + [-133.2065, 57.0122], + [-133.3222, 57.0059], + [-133.2637, 56.938], + [-133.2886, 56.925], + [-133.3263, 56.9929], + [-133.5692, 57.0439], + [-133.5974, 57.059], + [-133.8678, 57.0963] + ] + ], + [ + [ + [-131.2521, 55.9681], + [-131.459, 55.9357], + [-131.5053, 55.9142], + [-131.6, 55.8996], + [-131.5246, 55.8383], + [-131.7121, 55.8336], + [-131.7009, 55.8023], + [-131.6308, 55.7837], + [-131.7328, 55.7289], + [-131.6991, 55.6965], + [-131.7238, 55.6345], + [-131.6294, 55.6011], + [-131.7182, 55.5168], + [-131.8311, 55.4486], + [-131.7365, 55.3978], + [-131.6872, 55.3505], + [-131.5504, 55.2939], + [-131.4661, 55.3751], + [-131.54, 55.4756], + [-131.4928, 55.4781], + [-131.4661, 55.4092], + [-131.4119, 55.3713], + [-131.3253, 55.4299], + [-131.3312, 55.5104], + [-131.3691, 55.6309], + [-131.289, 55.4657], + [-131.33, 55.3797], + [-131.4838, 55.3], + [-131.4528, 55.2756], + [-131.3555, 55.2595], + [-131.2835, 55.2881], + [-131.2542, 55.3325], + [-131.2928, 55.3792], + [-131.2521, 55.3995], + [-131.1904, 55.3616], + [-131.2405, 55.2871], + [-131.327, 55.2452], + [-131.235, 55.1968], + [-131.185, 55.1908], + [-131.1477, 55.2297], + [-131.0643, 55.2602], + [-131.021, 55.3501], + [-131.0383, 55.4], + [-130.9706, 55.3928], + [-130.9943, 55.4738], + [-130.9894, 55.5373], + [-130.9397, 55.6198], + [-130.9738, 55.7058], + [-131.0419, 55.7668], + [-131.0711, 55.8278], + [-131.2521, 55.9681] + ] + ], + [ + [ + [-166.6476, 54.0133], + [-166.7472, 54.0143], + [-166.8534, 53.976], + [-166.8765, 53.9877], + [-167.0756, 53.925], + [-167.1529, 53.8282], + [-167.0095, 53.7547], + [-166.9611, 53.7772], + [-166.8317, 53.7406], + [-166.7122, 53.7278], + [-166.8332, 53.7077], + [-166.7889, 53.6258], + [-166.8961, 53.7164], + [-167, 53.7175], + [-167.0722, 53.6665], + [-167.0093, 53.6421], + [-167.045, 53.6078], + [-167.1061, 53.6344], + [-167.165, 53.6014], + [-167.0735, 53.5101], + [-167.161, 53.5097], + [-167.1618, 53.4673], + [-167.2845, 53.4777], + [-167.3281, 53.4058], + [-167.4718, 53.4479], + [-167.4985, 53.394], + [-167.5515, 53.4029], + [-167.7106, 53.3816], + [-167.8551, 53.3101], + [-167.6567, 53.2472], + [-167.6106, 53.2829], + [-167.4958, 53.279], + [-167.4555, 53.3211], + [-167.3049, 53.335], + [-167.2968, 53.369], + [-167.1714, 53.3972], + [-167.151, 53.4186], + [-167.0528, 53.4317], + [-167.0292, 53.4642], + [-166.9011, 53.4336], + [-166.8789, 53.4725], + [-166.8078, 53.4342], + [-166.7461, 53.4864], + [-166.7711, 53.5269], + [-166.6622, 53.4836], + [-166.5964, 53.5338], + [-166.5517, 53.6236], + [-166.425, 53.66], + [-166.2744, 53.6864], + [-166.3244, 53.7306], + [-166.3206, 53.7689], + [-166.4133, 53.7631], + [-166.5696, 53.7056], + [-166.5104, 53.7772], + [-166.4128, 53.8081], + [-166.3561, 53.8572], + [-166.2625, 53.8714], + [-166.2217, 53.9022], + [-166.275, 53.9831], + [-166.3367, 53.9461], + [-166.4428, 53.9514], + [-166.4439, 53.9033], + [-166.5234, 53.8733], + [-166.6182, 53.8684], + [-166.6461, 53.9286], + [-166.5905, 53.9638], + [-166.6476, 54.0133] + ] + ], + [ + [ + [-134.2456, 56.9358], + [-134.2195, 56.9025], + [-134.145, 56.8753], + [-134.1617, 56.8489], + [-134.2942, 56.9078], + [-134.3561, 56.8942], + [-134.3456, 56.8347], + [-134.4228, 56.8411], + [-134.3911, 56.7564], + [-134.4011, 56.7261], + [-134.2652, 56.603], + [-134.2672, 56.5606], + [-134.2028, 56.5414], + [-134.1389, 56.4775], + [-134.0956, 56.5439], + [-134.0444, 56.4869], + [-134.0744, 56.4458], + [-134.0567, 56.3839], + [-134.1172, 56.4131], + [-134.1533, 56.3978], + [-134.2378, 56.4323], + [-134.2336, 56.361], + [-134.2939, 56.3539], + [-134.2744, 56.3142], + [-134.1761, 56.3278], + [-134.231, 56.2758], + [-134.2768, 56.2656], + [-134.2461, 56.1756], + [-134.2606, 56.1333], + [-134.2122, 56.105], + [-134.2222, 56.0631], + [-134.1694, 56.0578], + [-134.1373, 56.0091], + [-134.0911, 56.0895], + [-134.1039, 56.1431], + [-134.0613, 56.2316], + [-134.0263, 56.1479], + [-134.045, 56.1179], + [-133.9942, 56.0803], + [-133.9577, 56.0947], + [-133.9339, 56.1687], + [-133.9561, 56.2051], + [-133.8817, 56.2205], + [-133.9189, 56.2779], + [-133.9812, 56.2659], + [-133.9522, 56.3454], + [-133.875, 56.275], + [-133.8311, 56.3233], + [-133.9077, 56.3688], + [-133.892, 56.4284], + [-133.8355, 56.4305], + [-133.9268, 56.5165], + [-133.8743, 56.5204], + [-133.8365, 56.6061], + [-133.7446, 56.5565], + [-133.6904, 56.6026], + [-133.7361, 56.6728], + [-133.7706, 56.6795], + [-133.735, 56.7783], + [-133.8745, 56.8109], + [-133.8642, 56.7518], + [-133.935, 56.6933], + [-133.9272, 56.76], + [-134.0144, 56.8736], + [-134.1545, 56.9195], + [-134.2456, 56.9358] + ] + ], + [ + [ + [-152.6501, 58.4766], + [-152.6964, 58.4148], + [-152.7267, 58.4506], + [-152.8678, 58.3861], + [-152.778, 58.3671], + [-152.784, 58.2784], + [-152.9802, 58.2865], + [-153.0449, 58.3064], + [-153.1044, 58.2603], + [-153.0038, 58.2059], + [-153.1732, 58.2161], + [-153.2222, 58.1595], + [-153.1668, 58.1263], + [-153.0739, 58.1006], + [-153.02, 58.0453], + [-152.9711, 58.0403], + [-152.8613, 57.9924], + [-152.7572, 58.0122], + [-152.7593, 58.0558], + [-152.7061, 58.0494], + [-152.6278, 58.0769], + [-152.6028, 58.1594], + [-152.56, 58.1883], + [-152.5694, 58.1044], + [-152.4367, 58.1394], + [-152.3967, 58.1181], + [-152.2714, 58.1252], + [-152.3572, 58.2011], + [-152.3199, 58.2478], + [-152.2683, 58.2573], + [-152.2203, 58.1916], + [-152.1394, 58.1567], + [-152.083, 58.1536], + [-151.9646, 58.2594], + [-151.9957, 58.3452], + [-152.0357, 58.2879], + [-152.0839, 58.3081], + [-152.1256, 58.2298], + [-152.1394, 58.2947], + [-152.0939, 58.3719], + [-152.1739, 58.3725], + [-152.2017, 58.3422], + [-152.2722, 58.3794], + [-152.3678, 58.3808], + [-152.3811, 58.3131], + [-152.4394, 58.3747], + [-152.4806, 58.3328], + [-152.5035, 58.4124], + [-152.4872, 58.4626], + [-152.6501, 58.4766] + ] + ], + [ + [ + [-167.9944, 53.5642], + [-168.0867, 53.5592], + [-168.2345, 53.5292], + [-168.3454, 53.4703], + [-168.4078, 53.4219], + [-168.3844, 53.3806], + [-168.4294, 53.3236], + [-168.3745, 53.3181], + [-168.3445, 53.2614], + [-168.5094, 53.2514], + [-168.5872, 53.2717], + [-168.6944, 53.2272], + [-168.8039, 53.1408], + [-168.7617, 53.0803], + [-168.8072, 53.0258], + [-168.8589, 53.0183], + [-168.8583, 52.9508], + [-168.9595, 52.9319], + [-168.9567, 52.8664], + [-168.7861, 52.9486], + [-168.6272, 52.9914], + [-168.5922, 53.0256], + [-168.4978, 53.0325], + [-168.3944, 53.1247], + [-168.3617, 53.1325], + [-168.3339, 53.2042], + [-168.27, 53.2422], + [-168.1211, 53.2761], + [-167.8413, 53.3861], + [-167.8522, 53.4495], + [-167.7893, 53.4883], + [-167.7912, 53.5211], + [-167.937, 53.5263], + [-167.9944, 53.5642] + ] + ], + [ + [ + [-174.1405, 52.4133], + [-174.2672, 52.4022], + [-174.3172, 52.3808], + [-174.3589, 52.3133], + [-174.4075, 52.2886], + [-174.2406, 52.2756], + [-174.2389, 52.2419], + [-174.36, 52.2128], + [-174.4633, 52.2183], + [-174.4761, 52.1858], + [-174.5945, 52.1444], + [-174.6361, 52.1128], + [-174.7839, 52.0794], + [-174.9067, 52.1178], + [-174.9933, 52.0597], + [-175.1289, 52.0281], + [-175.1422, 52.0596], + [-175.3011, 52.0183], + [-175.2127, 52.0054], + [-175.0159, 52.007], + [-174.9672, 52.0375], + [-174.8932, 52.0471], + [-174.7078, 52.0089], + [-174.6789, 52.0556], + [-174.6483, 52.0231], + [-174.5567, 52.035], + [-174.5072, 52.0706], + [-174.4183, 52.0375], + [-174.3728, 52.1028], + [-174.3306, 52.1203], + [-174.2311, 52.0919], + [-174.2089, 52.115], + [-174.0783, 52.1292], + [-174.1978, 52.1969], + [-174.1783, 52.2344], + [-174.0607, 52.2244], + [-173.9928, 52.2906], + [-174.025, 52.3614], + [-174.1405, 52.4133] + ] + ], + [ + [ + [-132.42, 56.3478], + [-132.5348, 56.3362], + [-132.5965, 56.2449], + [-132.71, 56.2227], + [-132.7064, 56.1088], + [-132.6361, 56.0317], + [-132.5915, 56.0829], + [-132.4545, 56.0625], + [-132.4307, 56.0286], + [-132.4312, 55.9535], + [-132.352, 55.9124], + [-132.235, 55.925], + [-132.2, 55.9875], + [-132.2156, 56.0442], + [-132.168, 56.0457], + [-132.1082, 56.1127], + [-132.1877, 56.1683], + [-132.3131, 56.1898], + [-132.3818, 56.2249], + [-132.3781, 56.3085], + [-132.42, 56.3478] + ] + ], + [ + [ + [-147.0875, 60.3667], + [-147.1042, 60.3792], + [-147.212, 60.3453], + [-147.1651, 60.3068], + [-147.212, 60.2911], + [-147.1859, 60.2505], + [-147.2474, 60.2328], + [-147.3578, 60.162], + [-147.3984, 60.113], + [-147.6167, 60.0104], + [-147.7068, 59.9923], + [-147.8273, 59.9036], + [-147.7531, 59.8786], + [-147.8613, 59.8721], + [-147.9179, 59.8335], + [-147.8831, 59.7651], + [-147.7689, 59.8042], + [-147.6934, 59.8011], + [-147.6391, 59.8491], + [-147.525, 59.8411], + [-147.469, 59.8599], + [-147.4563, 59.9044], + [-147.5142, 59.9373], + [-147.4464, 59.9659], + [-147.3852, 59.9549], + [-147.3958, 60.0004], + [-147.3604, 60.0417], + [-147.2078, 60.1453], + [-147.0318, 60.2172], + [-146.9172, 60.288], + [-146.9521, 60.3063], + [-147.0604, 60.2667], + [-147.0891, 60.2891], + [-147.0104, 60.3438], + [-147.0875, 60.3354], + [-147.0875, 60.3667] + ] + ], + [ + [ + [172.7928, 53.0039], + [172.6533, 53.0036], + [172.4672, 52.9308], + [172.5128, 52.9056], + [172.6372, 52.9247], + [172.6245, 52.8653], + [172.7456, 52.8758], + [172.7515, 52.8073], + [172.8928, 52.7864], + [172.9061, 52.7458], + [173.0567, 52.8325], + [173.1161, 52.7844], + [173.23, 52.8575], + [173.3044, 52.8258], + [173.4072, 52.8472], + [173.2874, 52.8591], + [173.3039, 52.9242], + [173.2117, 52.9375], + [173.1245, 52.9903], + [172.9983, 52.9922], + [172.9423, 52.972], + [172.9059, 52.994], + [172.7928, 53.0039] + ] + ], + [ + [ + [-133.1011, 55.2372], + [-133.1241, 55.2586], + [-133.2217, 55.2414], + [-133.1913, 55.1953], + [-133.2395, 55.1836], + [-133.2122, 55.1067], + [-133.2111, 55.0428], + [-133.1466, 54.9975], + [-133.1613, 54.9465], + [-133.0744, 54.9125], + [-133.0028, 54.8283], + [-132.9235, 54.8489], + [-132.9724, 54.7995], + [-132.8867, 54.7651], + [-132.8372, 54.6903], + [-132.8183, 54.7117], + [-132.75, 54.6693], + [-132.6817, 54.6819], + [-132.7306, 54.7428], + [-132.7491, 54.8193], + [-132.8551, 54.8963], + [-132.9076, 54.913], + [-132.9633, 54.9889], + [-132.9547, 55.0161], + [-133.0614, 55.0787], + [-133.0106, 55.0867], + [-133.0522, 55.1342], + [-133.1011, 55.2372] + ] + ], + [ + [ + [-176.5656, 51.9984], + [-176.6628, 51.9517], + [-176.7229, 51.9681], + [-176.7911, 51.9569], + [-176.7961, 51.9033], + [-176.7306, 51.8747], + [-176.7894, 51.8411], + [-176.8078, 51.7792], + [-176.8661, 51.8267], + [-176.9044, 51.7708], + [-176.8311, 51.7458], + [-176.8994, 51.6967], + [-176.9811, 51.6653], + [-176.9889, 51.6064], + [-176.9344, 51.5914], + [-176.8672, 51.6828], + [-176.8389, 51.6814], + [-176.8061, 51.6086], + [-176.7233, 51.6247], + [-176.715, 51.6806], + [-176.5806, 51.6875], + [-176.5083, 51.7617], + [-176.4695, 51.7264], + [-176.4267, 51.7489], + [-176.4272, 51.8367], + [-176.519, 51.8354], + [-176.6291, 51.8627], + [-176.5811, 51.9136], + [-176.5656, 51.9984] + ] + ], + [ + [ + [-132.9322, 56.8217], + [-132.9794, 56.8058], + [-132.9396, 56.7403], + [-132.9344, 56.6725], + [-132.9011, 56.6333], + [-132.9455, 56.6318], + [-132.9751, 56.6023], + [-132.9521, 56.5097], + [-132.8149, 56.4938], + [-132.7243, 56.5111], + [-132.5425, 56.5838], + [-132.5932, 56.6115], + [-132.6183, 56.6636], + [-132.7368, 56.7125], + [-132.8293, 56.795], + [-132.9322, 56.8217] + ] + ], + [ + [ + [-132.3683, 56.4867], + [-132.38, 56.4445], + [-132.3427, 56.4117], + [-132.3417, 56.3428], + [-132.3653, 56.2844], + [-132.275, 56.2069], + [-132.1294, 56.1653], + [-132.0738, 56.1158], + [-132.024, 56.1355], + [-132.0161, 56.195], + [-131.9223, 56.2031], + [-132.0303, 56.3527], + [-132.0944, 56.3711], + [-132.1466, 56.3447], + [-132.237, 56.3971], + [-132.2447, 56.4408], + [-132.3683, 56.4867] + ] + ], + [ + [ + [-135.7624, 57.3439], + [-135.84, 57.3406], + [-135.825, 57.3025], + [-135.8739, 57.2272], + [-135.823, 57.2207], + [-135.8366, 57.1761], + [-135.7456, 57.1649], + [-135.76, 57.1163], + [-135.843, 57.0907], + [-135.8501, 56.9933], + [-135.638, 57.0103], + [-135.5722, 57.0856], + [-135.5629, 57.1486], + [-135.6148, 57.1755], + [-135.6254, 57.2315], + [-135.5685, 57.2283], + [-135.6261, 57.3025], + [-135.7624, 57.3439] + ] + ], + [ + [ + [-146.5328, 60.4734], + [-146.5979, 60.4833], + [-146.7245, 60.387], + [-146.7083, 60.3417], + [-146.6255, 60.3589], + [-146.5318, 60.3297], + [-146.6974, 60.2786], + [-146.6479, 60.2354], + [-146.6005, 60.2401], + [-146.3938, 60.3271], + [-146.1984, 60.3464], + [-146.1812, 60.3708], + [-146.1005, 60.3734], + [-146.1354, 60.4313], + [-146.3625, 60.4063], + [-146.3609, 60.4724], + [-146.4672, 60.4547], + [-146.5328, 60.4734] + ] + ], + [ + [ + [-132.8955, 56.4575], + [-133.0005, 56.4306], + [-133.0663, 56.3309], + [-132.9594, 56.2953], + [-132.8706, 56.2322], + [-132.6572, 56.2769], + [-132.6833, 56.3464], + [-132.6222, 56.3911], + [-132.6325, 56.4212], + [-132.718, 56.4565], + [-132.8128, 56.4406], + [-132.8955, 56.4575] + ] + ], + [ + [ + [-160.6967, 55.4005], + [-160.8022, 55.3809], + [-160.8417, 55.3406], + [-160.8555, 55.2059], + [-160.8083, 55.1669], + [-160.7547, 55.1951], + [-160.6833, 55.1927], + [-160.6144, 55.1475], + [-160.4969, 55.1573], + [-160.4932, 55.2201], + [-160.5699, 55.2755], + [-160.5786, 55.3137], + [-160.5281, 55.343], + [-160.5648, 55.3906], + [-160.6643, 55.3017], + [-160.6456, 55.3821], + [-160.6967, 55.4005] + ] + ], + [ + [ + [-178.0833, 51.915], + [-178.1992, 51.908], + [-178.2244, 51.8617], + [-178.095, 51.8158], + [-178.0372, 51.7789], + [-177.9611, 51.7742], + [-177.9517, 51.7306], + [-178.1144, 51.6719], + [-178.0461, 51.6714], + [-178.0007, 51.639], + [-177.9278, 51.6456], + [-177.8672, 51.6764], + [-177.8178, 51.7894], + [-177.6515, 51.8166], + [-177.6589, 51.8489], + [-177.735, 51.8264], + [-177.791, 51.8453], + [-177.8489, 51.8247], + [-177.9256, 51.8578], + [-177.9544, 51.9025], + [-178.0833, 51.915] + ] + ], + [ + [ + [-173.5144, 52.1522], + [-173.7706, 52.1342], + [-173.8089, 52.0925], + [-173.8889, 52.1419], + [-173.9983, 52.1236], + [-173.9422, 52.0692], + [-173.8289, 52.0408], + [-173.6806, 52.0661], + [-173.5761, 52.0506], + [-173.545, 52.0272], + [-173.4506, 52.0469], + [-173.1528, 52.0592], + [-173.1228, 52.11], + [-173.2361, 52.0936], + [-173.2983, 52.1067], + [-173.3533, 52.0897], + [-173.4406, 52.1175], + [-173.5442, 52.1146], + [-173.5144, 52.1522] + ] + ], + [ + [ + [-153.2133, 57.2039], + [-153.2727, 57.1892], + [-153.3851, 57.114], + [-153.3926, 57.061], + [-153.3053, 56.9911], + [-153.2413, 57.0031], + [-153.1957, 57.0401], + [-153.1764, 57.0967], + [-152.9122, 57.1262], + [-152.8686, 57.1508], + [-152.9459, 57.1878], + [-153.0465, 57.1723], + [-153.0625, 57.1904], + [-153.1999, 57.1456], + [-153.1622, 57.1883], + [-153.2133, 57.2039] + ] + ], + [ + [ + [-131.553, 55.282], + [-131.5915, 55.2732], + [-131.605, 55.2142], + [-131.5319, 55.1495], + [-131.585, 55.1307], + [-131.5982, 55.0755], + [-131.6485, 55.0353], + [-131.6028, 54.9964], + [-131.5121, 55.057], + [-131.4923, 55.0121], + [-131.3892, 55.0119], + [-131.3563, 55.0403], + [-131.3757, 55.0909], + [-131.3515, 55.1233], + [-131.3978, 55.1969], + [-131.553, 55.282] + ] + ], + [ + [ + [-177.1433, 51.9422], + [-177.1822, 51.9417], + [-177.2296, 51.8029], + [-177.4189, 51.7531], + [-177.445, 51.76], + [-177.5617, 51.7208], + [-177.64, 51.7411], + [-177.6928, 51.7164], + [-177.6737, 51.6608], + [-177.6167, 51.7042], + [-177.4678, 51.705], + [-177.3928, 51.7339], + [-177.2889, 51.6811], + [-177.1233, 51.7261], + [-177.1328, 51.83], + [-177.065, 51.8611], + [-177.0556, 51.9103], + [-177.1433, 51.9422] + ] + ], + [ + [ + [-165.9283, 54.2125], + [-165.9822, 54.2206], + [-166.0861, 54.1739], + [-166.1171, 54.1226], + [-166.0422, 54.0428], + [-165.98, 54.0703], + [-165.8973, 54.0572], + [-165.847, 54.0809], + [-165.7669, 54.0645], + [-165.689, 54.0891], + [-165.6723, 54.1309], + [-165.8133, 54.1759], + [-165.88, 54.1825], + [-165.9283, 54.2125] + ] + ], + [ + [ + [-172.9208, 60.6042], + [-173.0354, 60.5625], + [-173.0562, 60.4938], + [-172.9438, 60.4813], + [-172.8974, 60.4484], + [-172.7526, 60.3849], + [-172.737, 60.3651], + [-172.5688, 60.3187], + [-172.4687, 60.3417], + [-172.3437, 60.3354], + [-172.2917, 60.2958], + [-172.2214, 60.3109], + [-172.3161, 60.3422], + [-172.3838, 60.3828], + [-172.6141, 60.3776], + [-172.6167, 60.4], + [-172.7682, 60.4464], + [-172.8766, 60.4984], + [-172.9328, 60.5589], + [-172.9208, 60.6042] + ] + ], + [ + [ + [-160.6878, 58.8139], + [-160.8475, 58.7495], + [-160.9939, 58.7243], + [-161.0536, 58.6897], + [-161.0797, 58.6383], + [-161.0733, 58.5456], + [-160.963, 58.5511], + [-160.8839, 58.5803], + [-160.855, 58.6258], + [-160.6878, 58.8139] + ] + ], + [ + [ + [-159.8689, 55.2844], + [-159.9216, 55.2488], + [-159.9472, 55.1693], + [-160.065, 55.2014], + [-159.9761, 55.1194], + [-160.0072, 55.1023], + [-160.1055, 55.1603], + [-160.1928, 55.1028], + [-160.176, 55.0508], + [-160.0957, 55.0519], + [-160.2574, 54.9167], + [-160.2264, 54.8637], + [-160.1856, 54.9342], + [-160.1247, 54.9458], + [-160.1083, 54.9869], + [-160.013, 55.0281], + [-159.9356, 55.1289], + [-159.8696, 55.0944], + [-159.8111, 55.1728], + [-159.9031, 55.1744], + [-159.9006, 55.2287], + [-159.8417, 55.2445], + [-159.8689, 55.2844] + ] + ], + [ + [ + [-147.6875, 60.4917], + [-147.7088, 60.4276], + [-147.8167, 60.4417], + [-147.8479, 60.3833], + [-147.8047, 60.2995], + [-147.9016, 60.2849], + [-147.8917, 60.2229], + [-147.7964, 60.2391], + [-147.8208, 60.1792], + [-147.7547, 60.1609], + [-147.7172, 60.2026], + [-147.7172, 60.2651], + [-147.6193, 60.3786], + [-147.7292, 60.3896], + [-147.6089, 60.4255], + [-147.6875, 60.4917] + ] + ], + [ + [ + [177.6059, 52.1349], + [177.5451, 52.1035], + [177.4783, 51.9828], + [177.3753, 51.9765], + [177.2433, 51.9056], + [177.1989, 51.895], + [177.3097, 51.8257], + [177.3478, 51.9045], + [177.4067, 51.93], + [177.4732, 51.9084], + [177.5483, 51.9122], + [177.6017, 51.9469], + [177.5359, 51.9595], + [177.6742, 52.0892], + [177.6059, 52.1349] + ] + ], + [ + [ + [178.6815, 51.6511], + [178.631, 51.6239], + [178.7839, 51.5692], + [178.8428, 51.5773], + [178.9321, 51.5462], + [179.0572, 51.4528], + [179.228, 51.3815], + [179.2588, 51.3568], + [179.3705, 51.3749], + [179.4028, 51.4061], + [179.28, 51.3897], + [179.1567, 51.4656], + [179.0233, 51.5316], + [178.9667, 51.5886], + [178.8079, 51.6327], + [178.6815, 51.6511] + ] + ], + [ + [ + [-131.83, 55.4205], + [-131.8694, 55.3197], + [-131.8292, 55.1899], + [-131.7465, 55.129], + [-131.7194, 55.2024], + [-131.6856, 55.2257], + [-131.67, 55.3014], + [-131.6289, 55.3055], + [-131.83, 55.4205] + ] + ], + [ + [ + [-136.4802, 58.1015], + [-136.5572, 58.0792], + [-136.5734, 57.9188], + [-136.4907, 57.9017], + [-136.4533, 57.8419], + [-136.3772, 57.9295], + [-136.3878, 57.9675], + [-136.3566, 58.0268], + [-136.4802, 58.1015] + ] + ], + [ + [ + [-164.8083, 62.7896], + [-164.8724, 62.7828], + [-164.7958, 62.6104], + [-164.5328, 62.7286], + [-164.5146, 62.7708], + [-164.6792, 62.7562], + [-164.7109, 62.7849], + [-164.8083, 62.7896] + ] + ], + [ + [ + [-152.3335, 58.6281], + [-152.5311, 58.5844], + [-152.5639, 58.6217], + [-152.6472, 58.5572], + [-152.5906, 58.5508], + [-152.6389, 58.4997], + [-152.4784, 58.4689], + [-152.415, 58.4894], + [-152.3632, 58.5391], + [-152.3335, 58.6281] + ] + ], + [ + [ + [173.7561, 52.4958], + [173.7406, 52.5122], + [173.6239, 52.5056], + [173.5304, 52.4476], + [173.44, 52.4528], + [173.3583, 52.4019], + [173.4689, 52.3806], + [173.6167, 52.3969], + [173.642, 52.356], + [173.7256, 52.3569], + [173.6922, 52.4619], + [173.7561, 52.4958] + ] + ], + [ + [ + [-153.2591, 58.1436], + [-153.4178, 58.0578], + [-153.3663, 58.038], + [-153.2972, 58.0503], + [-153.1261, 58.0164], + [-153.0483, 57.9867], + [-152.9438, 57.9766], + [-152.9435, 58.0082], + [-153.0269, 58.0343], + [-153.0908, 58.089], + [-153.1628, 58.0884], + [-153.2591, 58.1436] + ] + ], + [ + [ + [179.6443, 52.026], + [179.4846, 51.9839], + [179.4799, 51.9219], + [179.6124, 51.8708], + [179.7388, 51.9112], + [179.762, 51.9747], + [179.6443, 52.026] + ] + ], + [ + [ + [-134.5178, 58.3395], + [-134.5842, 58.3434], + [-134.6521, 58.3189], + [-134.6789, 58.2978], + [-134.6294, 58.2483], + [-134.5072, 58.2167], + [-134.46, 58.2294], + [-134.3378, 58.1972], + [-134.2692, 58.2082], + [-134.5178, 58.3395] + ] + ], + [ + [ + [-172.4055, 52.3836], + [-172.4378, 52.3928], + [-172.57, 52.3486], + [-172.6339, 52.2642], + [-172.5383, 52.2458], + [-172.3117, 52.3197], + [-172.3056, 52.3547], + [-172.4055, 52.3836] + ] + ], + [ + [ + [-132.8328, 55.1994], + [-132.8973, 55.1547], + [-132.878, 55.1004], + [-132.8244, 55.075], + [-132.8932, 55.0361], + [-132.8098, 55.0081], + [-132.695, 55.0197], + [-132.688, 55.1245], + [-132.7333, 55.1342], + [-132.8328, 55.1994] + ] + ], + [ + [ + [-133.5583, 55.8333], + [-133.6633, 55.8186], + [-133.6863, 55.7749], + [-133.645, 55.7292], + [-133.532, 55.6927], + [-133.4872, 55.7324], + [-133.5211, 55.7689], + [-133.4161, 55.74], + [-133.3317, 55.7672], + [-133.5583, 55.8333] + ] + ], + [ + [ + [-145.7937, 60.5792], + [-145.9, 60.5875], + [-146.1187, 60.5125], + [-146.1708, 60.5271], + [-146.2833, 60.5167], + [-146.3208, 60.4542], + [-146.1854, 60.4562], + [-146.025, 60.5042], + [-145.8214, 60.5526], + [-145.7937, 60.5792] + ] + ], + [ + [ + [-154.085, 56.6147], + [-154.2211, 56.6147], + [-154.3144, 56.5853], + [-154.3644, 56.5428], + [-154.3433, 56.5092], + [-154.2311, 56.4925], + [-154.1533, 56.5117], + [-154.0778, 56.5908], + [-154.085, 56.6147] + ] + ], + [ + [ + [-153.4659, 57.9696], + [-153.535, 57.9282], + [-153.4588, 57.8807], + [-153.33, 57.8256], + [-153.2082, 57.7972], + [-153.2221, 57.8496], + [-153.2826, 57.9043], + [-153.4659, 57.9696] + ] + ], + [ + [ + [-162.3807, 63.6234], + [-162.4917, 63.6188], + [-162.5542, 63.6333], + [-162.6208, 63.6188], + [-162.6932, 63.5755], + [-162.6266, 63.5443], + [-162.3813, 63.5396], + [-162.3464, 63.5911], + [-162.3807, 63.6234] + ] + ], + [ + [ + [-165.6244, 54.2983], + [-165.6879, 54.2421], + [-165.5844, 54.2236], + [-165.6362, 54.1977], + [-165.6372, 54.1391], + [-165.5594, 54.1055], + [-165.4931, 54.1682], + [-165.4095, 54.1751], + [-165.4076, 54.2117], + [-165.5442, 54.2189], + [-165.5148, 54.2984], + [-165.5978, 54.264], + [-165.6244, 54.2983] + ] + ], + [ + [ + [-154.4828, 56.6011], + [-154.55, 56.5897], + [-154.6917, 56.525], + [-154.7939, 56.4369], + [-154.7728, 56.4064], + [-154.7094, 56.4144], + [-154.6189, 56.4764], + [-154.4811, 56.5119], + [-154.5352, 56.5657], + [-154.4828, 56.6011] + ] + ], + [ + [ + [-170.6544, 52.6981], + [-170.7277, 52.682], + [-170.81, 52.6406], + [-170.8467, 52.5589], + [-170.7957, 52.5424], + [-170.6842, 52.6022], + [-170.6083, 52.6012], + [-170.558, 52.6668], + [-170.6544, 52.6981] + ] + ], + [ + [ + [-133.3325, 55.3453], + [-133.4616, 55.3208], + [-133.4544, 55.2172], + [-133.3888, 55.2291], + [-133.336, 55.2031], + [-133.2529, 55.2221], + [-133.23, 55.2687], + [-133.3325, 55.3453] + ] + ], + [ + [ + [-169.7548, 52.8925], + [-169.8683, 52.8789], + [-169.8667, 52.8536], + [-169.9845, 52.8586], + [-170.0133, 52.8311], + [-169.9595, 52.7871], + [-169.8717, 52.825], + [-169.7753, 52.8099], + [-169.72, 52.7719], + [-169.6772, 52.8244], + [-169.6767, 52.8714], + [-169.7548, 52.8925] + ] + ], + [ + [ + [-131.2469, 54.9996], + [-131.3433, 54.9592], + [-131.3617, 54.9753], + [-131.4922, 54.9461], + [-131.4667, 54.9133], + [-131.3889, 54.8928], + [-131.3472, 54.8558], + [-131.1967, 54.9144], + [-131.2539, 54.9683], + [-131.2469, 54.9996] + ] + ], + [ + [ + [-148.0151, 60.9141], + [-148.0745, 60.9224], + [-148.1474, 60.8245], + [-148.0292, 60.7813], + [-147.9151, 60.813], + [-147.9349, 60.8755], + [-148.0151, 60.9141] + ] + ], + [ + [ + [-162.2871, 54.9803], + [-162.3706, 54.9656], + [-162.4234, 54.9205], + [-162.4022, 54.8789], + [-162.3167, 54.8272], + [-162.2317, 54.8923], + [-162.2433, 54.9681], + [-162.2871, 54.9803] + ] + ], + [ + [ + [-176.1382, 52.1136], + [-176.2056, 52.0777], + [-176.1816, 52.0011], + [-176.105, 51.9972], + [-176.0661, 51.9667], + [-176.0501, 52.0193], + [-175.9822, 52.0289], + [-176.0551, 52.1073], + [-176.1382, 52.1136] + ] + ], + [ + [ + [-133.5678, 55.4206], + [-133.6144, 55.4192], + [-133.6316, 55.3611], + [-133.6914, 55.3175], + [-133.6689, 55.2769], + [-133.6106, 55.2536], + [-133.5709, 55.322], + [-133.4592, 55.3789], + [-133.5017, 55.4192], + [-133.5678, 55.4206] + ] + ], + [ + [ + [-170.1526, 57.1877], + [-170.1382, 57.2299], + [-170.2259, 57.2119], + [-170.3032, 57.2205], + [-170.4001, 57.2038], + [-170.4206, 57.1619], + [-170.2778, 57.1274], + [-170.1731, 57.1551], + [-170.1526, 57.1877] + ] + ], + [ + [ + [-162.7939, 54.4916], + [-162.8378, 54.4506], + [-162.7805, 54.4128], + [-162.6105, 54.3672], + [-162.5445, 54.4164], + [-162.6689, 54.4614], + [-162.7939, 54.4916] + ] + ], + [ + [ + [-166.1095, 53.8478], + [-166.2167, 53.8294], + [-166.3011, 53.7986], + [-166.3006, 53.7517], + [-166.2078, 53.7072], + [-166.1144, 53.7747], + [-166.1095, 53.8478] + ] + ], + [ + [ + [-155.5606, 55.8978], + [-155.6056, 55.9144], + [-155.6667, 55.8542], + [-155.755, 55.8222], + [-155.7278, 55.7747], + [-155.6133, 55.7567], + [-155.5639, 55.7897], + [-155.5867, 55.8458], + [-155.5606, 55.8978] + ] + ], + [ + [ + [-176.2894, 51.8696], + [-176.4267, 51.8536], + [-176.3972, 51.7336], + [-176.32, 51.7347], + [-176.265, 51.7806], + [-176.2894, 51.8696] + ] + ], + [ + [ + [-132.7194, 54.9368], + [-132.8183, 54.9242], + [-132.8061, 54.8711], + [-132.7046, 54.8147], + [-132.6355, 54.7489], + [-132.6239, 54.8039], + [-132.6856, 54.8353], + [-132.6321, 54.8908], + [-132.7194, 54.9368] + ] + ], + [ + [ + [-148.0474, 60.1786], + [-148.2812, 60.0854], + [-148.2146, 60.0771], + [-148.275, 60.0396], + [-148.1979, 60.0167], + [-148.0838, 60.1047], + [-148.0474, 60.1786] + ] + ], + [ + [ + [-159.5125, 55.2395], + [-159.5584, 55.2045], + [-159.5895, 55.1275], + [-159.6383, 55.1342], + [-159.6572, 55.0611], + [-159.5706, 55.0453], + [-159.5294, 55.0801], + [-159.4961, 55.1544], + [-159.5355, 55.1706], + [-159.5125, 55.2395] + ] + ], + [ + [ + [-161.81, 55.175], + [-161.8983, 55.1639], + [-161.8905, 55.1256], + [-161.8172, 55.0986], + [-161.7828, 55.1617], + [-161.7555, 55.1322], + [-161.8006, 55.0817], + [-161.7322, 55.0539], + [-161.6339, 55.1053], + [-161.81, 55.175] + ] + ], + [ + [ + [-164.98, 54.1329], + [-165.144, 54.1311], + [-165.21, 54.0869], + [-165.0822, 54.0691], + [-164.9557, 54.0727], + [-164.9217, 54.1079], + [-164.98, 54.1329] + ] + ], + [ + [ + [-169.6097, 56.6075], + [-169.7522, 56.6162], + [-169.6405, 56.5364], + [-169.5671, 56.5329], + [-169.4839, 56.5767], + [-169.5176, 56.6098], + [-169.6097, 56.6075] + ] + ], + [ + [ + [-133.3967, 55.5636], + [-133.4511, 55.555], + [-133.4406, 55.515], + [-133.3611, 55.4533], + [-133.3057, 55.4819], + [-133.2852, 55.5354], + [-133.3369, 55.5682], + [-133.3967, 55.5636] + ] + ], + [ + [ + [-153.4244, 59.4095], + [-153.5117, 59.3929], + [-153.5494, 59.3317], + [-153.5153, 59.32], + [-153.3627, 59.3378], + [-153.3472, 59.3776], + [-153.4244, 59.4095] + ] + ], + [ + [ + [-147.8276, 60.0661], + [-147.8542, 60.0771], + [-148.0378, 59.9733], + [-148.0468, 59.9385], + [-147.9179, 59.9706], + [-147.8193, 60.0464], + [-147.8276, 60.0661] + ] + ], + [ + [ + [-133.725, 55.5525], + [-133.7111, 55.5186], + [-133.7811, 55.4702], + [-133.6706, 55.4381], + [-133.6317, 55.4908], + [-133.5865, 55.5052], + [-133.6633, 55.5578], + [-133.725, 55.5525] + ] + ], + [ + [ + [-133.2956, 55.9153], + [-133.3622, 55.845], + [-133.26, 55.7721], + [-133.2163, 55.8229], + [-133.2244, 55.8652], + [-133.2956, 55.9153] + ] + ], + [ + [ + [-160.3632, 55.3603], + [-160.4339, 55.3394], + [-160.4922, 55.3583], + [-160.5173, 55.3081], + [-160.3911, 55.2869], + [-160.3315, 55.26], + [-160.308, 55.3041], + [-160.3632, 55.3603] + ] + ], + [ + [ + [-157.2422, 56.5823], + [-157.3294, 56.5272], + [-157.1516, 56.5273], + [-157.1155, 56.5525], + [-156.9956, 56.5514], + [-157.0883, 56.5837], + [-157.2422, 56.5823] + ] + ], + [ + [ + [-134.2639, 55.9281], + [-134.3675, 55.905], + [-134.3194, 55.8781], + [-134.3446, 55.8402], + [-134.2711, 55.8286], + [-134.2283, 55.864], + [-134.133, 55.8968], + [-134.1734, 55.9215], + [-134.2649, 55.897], + [-134.2639, 55.9281] + ] + ], + [ + [ + [-148.1849, 60.7432], + [-148.2391, 60.7245], + [-148.1786, 60.6401], + [-148.1234, 60.6401], + [-148.0875, 60.6729], + [-148.1068, 60.7391], + [-148.1849, 60.7432] + ] + ], + [ + [ + [-144.1963, 60.0016], + [-144.2697, 60.0001], + [-144.3707, 59.9627], + [-144.5696, 59.8518], + [-144.5859, 59.8113], + [-144.4332, 59.8981], + [-144.1963, 60.0016] + ] + ], + [ + [ + [-150.5349, 70.4943], + [-150.7479, 70.4938], + [-150.7375, 70.4625], + [-150.6313, 70.4354], + [-150.4839, 70.4714], + [-150.5349, 70.4943] + ] + ], + [ + [ + [-147.9641, 60.1255], + [-147.9755, 60.1484], + [-148.1182, 60.0474], + [-148.0943, 60.0026], + [-148.0495, 60.0599], + [-147.9812, 60.0604], + [-147.8963, 60.0964], + [-147.9641, 60.1255] + ] + ], + [ + [ + [-133.4623, 55.5072], + [-133.527, 55.5294], + [-133.545, 55.4864], + [-133.6192, 55.4482], + [-133.5484, 55.4291], + [-133.4283, 55.4503], + [-133.4623, 55.5072] + ] + ], + [ + [ + [-153.87, 56.5583], + [-154.0317, 56.5553], + [-154.1328, 56.5108], + [-154.0494, 56.4958], + [-153.9513, 56.5049], + [-153.87, 56.5583] + ] + ], + [ + [ + [-160.239, 55.4582], + [-160.3227, 55.4458], + [-160.3261, 55.3953], + [-160.2333, 55.4123], + [-160.1433, 55.3861], + [-160.1358, 55.4495], + [-160.239, 55.4582] + ] + ], + [ + [ + [-147.9917, 60.3708], + [-148.0583, 60.3688], + [-148.137, 60.3266], + [-148.1083, 60.2792], + [-148.0213, 60.2859], + [-147.9917, 60.3708] + ] + ], + [ + [ + [-176.1722, 51.8817], + [-176.235, 51.8219], + [-176.17, 51.7978], + [-176.0894, 51.7986], + [-176.03, 51.8444], + [-176.1317, 51.8506], + [-176.1722, 51.8817] + ] + ], + [ + [ + [-150.6888, 59.4156], + [-150.708, 59.3587], + [-150.7688, 59.3298], + [-150.7052, 59.2947], + [-150.6104, 59.3659], + [-150.6362, 59.4065], + [-150.6888, 59.4156] + ] + ], + [ + [ + [-144.9021, 60.5313], + [-144.975, 60.5125], + [-144.9818, 60.4818], + [-145.0536, 60.4432], + [-144.9667, 60.4208], + [-144.913, 60.4484], + [-144.9021, 60.5313] + ] + ], + [ + [ + [-132.479, 56.4382], + [-132.5376, 56.4209], + [-132.5583, 56.3556], + [-132.5014, 56.3524], + [-132.4052, 56.4078], + [-132.479, 56.4382] + ] + ], + [ + [ + [-178.8014, 51.8339], + [-178.86, 51.8197], + [-178.8733, 51.7817], + [-178.8139, 51.746], + [-178.7332, 51.7807], + [-178.8014, 51.8339] + ] + ], + [ + [ + [-170.1178, 52.7898], + [-170.1688, 52.7863], + [-170.168, 52.7172], + [-170.085, 52.7181], + [-170.0525, 52.7726], + [-170.1178, 52.7898] + ] + ], + [ + [ + [-131.4224, 55.991], + [-131.4605, 55.9903], + [-131.5967, 55.9331], + [-131.5044, 55.9211], + [-131.4083, 55.9589], + [-131.4224, 55.991] + ] + ], + [ + [ + [-135.622, 58.3795], + [-135.733, 58.368], + [-135.6803, 58.3309], + [-135.5765, 58.3254], + [-135.5377, 58.3446], + [-135.622, 58.3795] + ] + ], + [ + [ + [178.5011, 51.9883], + [178.4526, 51.9393], + [178.515, 51.8981], + [178.5906, 51.9525], + [178.5011, 51.9883] + ] + ], + [ + [ + [-133.8694, 55.9373], + [-133.9442, 55.9171], + [-133.9189, 55.8567], + [-133.8716, 55.8448], + [-133.8392, 55.8897], + [-133.8694, 55.9373] + ] + ], + [ + [ + [-171.2417, 52.5269], + [-171.3113, 52.5011], + [-171.3038, 52.4495], + [-171.2417, 52.4528], + [-171.1937, 52.4936], + [-171.2417, 52.5269] + ] + ], + [ + [ + [-161.5349, 55.2567], + [-161.6617, 55.2456], + [-161.6967, 55.2056], + [-161.5628, 55.2033], + [-161.5349, 55.2567] + ] + ], + [ + [ + [-152.4123, 57.968], + [-152.5156, 57.9217], + [-152.369, 57.8838], + [-152.3222, 57.9155], + [-152.4237, 57.9284], + [-152.4123, 57.968] + ] + ], + [ + [ + [-159.2726, 54.9457], + [-159.3261, 54.8923], + [-159.2761, 54.8628], + [-159.2233, 54.8839], + [-159.2083, 54.9281], + [-159.2726, 54.9457] + ] + ], + [ + [ + [-132.9817, 56.5914], + [-133.074, 56.5798], + [-133.0441, 56.5204], + [-132.9845, 56.5114], + [-132.9817, 56.5914] + ] + ], + [ + [ + [-159.4433, 55.0614], + [-159.405, 54.9767], + [-159.3289, 54.9769], + [-159.3783, 55.0247], + [-159.38, 55.0642], + [-159.4433, 55.0614] + ] + ], + [ + [ + [-151.9057, 60.5068], + [-151.9687, 60.4896], + [-151.9563, 60.4188], + [-151.8547, 60.4932], + [-151.9057, 60.5068] + ] + ], + [ + [ + [-151.8218, 58.2651], + [-151.894, 58.2155], + [-151.8673, 58.1655], + [-151.8086, 58.1864], + [-151.8218, 58.2651] + ] + ], + [ + [ + [-169.0417, 65.8146], + [-169.0813, 65.8167], + [-169.1182, 65.7589], + [-169.0443, 65.7526], + [-168.9964, 65.8026], + [-169.0417, 65.8146] + ] + ], + [ + [ + [-164.9021, 66.4958], + [-164.9104, 66.5083], + [-165.1542, 66.4688], + [-165.3328, 66.4287], + [-165.1875, 66.4417], + [-165.1354, 66.4625], + [-164.9021, 66.4958] + ] + ], + [ + [ + [-136.1906, 57.7161], + [-136.2561, 57.677], + [-136.1811, 57.64], + [-136.1394, 57.6978], + [-136.1906, 57.7161] + ] + ], + [ + [ + [-152.7238, 57.9755], + [-152.8503, 57.9701], + [-152.8512, 57.9412], + [-152.7601, 57.9251], + [-152.7238, 57.9755] + ] + ], + [ + [ + [-175.9878, 51.9094], + [-176.1144, 51.8842], + [-175.9633, 51.8461], + [-175.9878, 51.9094] + ] + ], + [ + [ + [-170.0411, 52.9228], + [-170.1255, 52.8972], + [-170.0517, 52.8564], + [-169.995, 52.9033], + [-170.0411, 52.9228] + ] + ], + [ + [ + [-135.5208, 57.2199], + [-135.5578, 57.1572], + [-135.5059, 57.1425], + [-135.4518, 57.1775], + [-135.5208, 57.2199] + ] + ], + [ + [ + [-178.9567, 51.3969], + [-178.9944, 51.3739], + [-178.9883, 51.3064], + [-178.9055, 51.3614], + [-178.9567, 51.3969] + ] + ], + [ + [ + [-153.8335, 57.5326], + [-153.8728, 57.5531], + [-153.8738, 57.4483], + [-153.8322, 57.4289], + [-153.8335, 57.5326] + ] + ], + [ + [ + [-135.4688, 57.2505], + [-135.5155, 57.2291], + [-135.4556, 57.1853], + [-135.3916, 57.2453], + [-135.4688, 57.2505] + ] + ], + [ + [ + [-169.6767, 53.0314], + [-169.739, 53.0286], + [-169.7636, 52.9825], + [-169.6967, 52.9572], + [-169.6767, 53.0314] + ] + ], + [ + [ + [-132.0288, 56.0889], + [-132.07, 56.03], + [-132.0256, 55.9967], + [-131.9822, 56.0249], + [-132.0288, 56.0889] + ] + ], + [ + [ + [-161.3386, 55.2198], + [-161.4281, 55.2163], + [-161.4145, 55.1808], + [-161.3394, 55.1587], + [-161.3386, 55.2198] + ] + ], + [ + [ + [-146.7375, 60.8708], + [-146.8141, 60.8432], + [-146.7896, 60.8042], + [-146.725, 60.8104], + [-146.7375, 60.8708] + ] + ], + [ + [ + [-147.938, 60.7182], + [-147.9964, 60.6901], + [-147.8505, 60.6797], + [-147.8984, 60.7307], + [-147.938, 60.7182] + ] + ], + [ + [ + [-147.3729, 60.2625], + [-147.3464, 60.2995], + [-147.4495, 60.2703], + [-147.4812, 60.225], + [-147.3729, 60.2625] + ] + ], + [ + [ + [178.1615, 52.0412], + [178.089, 52.0364], + [178.0981, 51.9978], + [178.1732, 51.9912], + [178.1615, 52.0412] + ] + ], + [ + [ + [-164.8984, 62.662], + [-164.8807, 62.5984], + [-164.8151, 62.6078], + [-164.8589, 62.662], + [-164.8984, 62.662] + ] + ], + [ + [ + [-164.9859, 60.8693], + [-165.0203, 60.8339], + [-164.9583, 60.8208], + [-164.8901, 60.838], + [-164.9859, 60.8693] + ] + ], + [ + [ + [-136.035, 58.2953], + [-136.0369, 58.3174], + [-136.1577, 58.2792], + [-136.0903, 58.2582], + [-136.035, 58.2953] + ] + ], + [ + [ + [-152.8822, 58.3383], + [-152.9217, 58.3136], + [-152.7839, 58.2872], + [-152.8461, 58.3378], + [-152.8822, 58.3383] + ] + ], + [ + [ + [-179.0874, 51.2956], + [-179.147, 51.2793], + [-179.1405, 51.2325], + [-179.0944, 51.2271], + [-179.0874, 51.2956] + ] + ], + [ + [ + [-152.5884, 60.175], + [-152.6438, 60.1646], + [-152.5911, 60.113], + [-152.5484, 60.1141], + [-152.5884, 60.175] + ] + ], + [ + [ + [-130.5194, 54.8587], + [-130.5944, 54.8309], + [-130.6156, 54.7928], + [-130.5262, 54.8155], + [-130.5194, 54.8587] + ] + ], + [ + [ + [-132.1918, 56.0399], + [-132.2028, 55.9564], + [-132.1333, 55.9422], + [-132.1918, 56.0399] + ] + ], + [ + [ + [-133.4422, 55.9969], + [-133.4948, 55.9667], + [-133.4494, 55.9333], + [-133.4349, 55.9562], + [-133.3944, 55.9756], + [-133.4422, 55.9969] + ] + ], + [ + [ + [-159.5744, 54.8245], + [-159.5828, 54.7736], + [-159.52, 54.7581], + [-159.5106, 54.7891], + [-159.5744, 54.8245] + ] + ], + [ + [ + [-152.3067, 58.9608], + [-152.3377, 58.9042], + [-152.2367, 58.9144], + [-152.3067, 58.9608] + ] + ], + [ + [ + [-150.3542, 70.4771], + [-150.4661, 70.4599], + [-150.4526, 70.4318], + [-150.3687, 70.45], + [-150.3542, 70.4771] + ] + ], + [ + [ + [-158.7982, 55.8911], + [-158.8489, 55.8543], + [-158.7292, 55.841], + [-158.7982, 55.8911] + ] + ], + [ + [ + [-157.8306, 56.3706], + [-157.9072, 56.3442], + [-157.8233, 56.3069], + [-157.8306, 56.3706] + ] + ], + [ + [ + [-133.2318, 55.4443], + [-133.2978, 55.4456], + [-133.3094, 55.4011], + [-133.2522, 55.4067], + [-133.2318, 55.4443] + ] + ], + [ + [ + [-147.2083, 60.8917], + [-147.2875, 60.8708], + [-147.1255, 60.8547], + [-147.2083, 60.8917] + ] + ], + [ + [ + [-165.3462, 54.09], + [-165.2897, 54.0385], + [-165.2644, 54.0917], + [-165.3462, 54.09] + ] + ], + [ + [ + [-134.9118, 58.4854], + [-134.8416, 58.3712], + [-134.8078, 58.3757], + [-134.9118, 58.4854] + ] + ], + [ + [ + [-150.4787, 70.438], + [-150.6057, 70.4224], + [-150.6062, 70.3896], + [-150.4787, 70.438] + ] + ], + [ + [ + [-166.1489, 53.9972], + [-166.1933, 53.9589], + [-166.073, 53.9698], + [-166.1489, 53.9972] + ] + ], + [ + [ + [178.2289, 51.8322], + [178.3073, 51.7763], + [178.3356, 51.8083], + [178.2289, 51.8322] + ] + ], + [ + [ + [-154.0467, 56.7281], + [-154.1272, 56.6945], + [-154.0167, 56.69], + [-154.0467, 56.7281] + ] + ], + [ + [ + [-134.2017, 57.8917], + [-134.1894, 57.8342], + [-134.1142, 57.8073], + [-134.2017, 57.8917] + ] + ], + [ + [ + [-135.7039, 57.7067], + [-135.62, 57.6381], + [-135.5895, 57.6601], + [-135.7039, 57.7067] + ] + ], + [ + [ + [-150.3165, 59.4616], + [-150.4146, 59.4386], + [-150.3431, 59.4156], + [-150.3165, 59.4616] + ] + ], + [ + [ + [-147.4268, 60.6846], + [-147.4563, 60.6167], + [-147.3859, 60.6526], + [-147.4268, 60.6846] + ] + ], + [ + [ + [-145.1807, 60.3401], + [-145.2849, 60.3307], + [-145.213, 60.3026], + [-145.1807, 60.3401] + ] + ], + [ + [ + [-159.7064, 54.8371], + [-159.82, 54.8136], + [-159.7743, 54.7922], + [-159.7064, 54.8371] + ] + ], + [ + [ + [-133.0374, 56.1183], + [-133.0472, 56.0647], + [-132.9795, 56.0813], + [-133.0374, 56.1183] + ] + ], + [ + [ + [-131.6233, 55.9036], + [-131.6618, 55.8603], + [-131.5902, 55.8535], + [-131.6233, 55.9036] + ] + ], + [ + [ + [-156.6893, 56.0569], + [-156.7517, 56.0408], + [-156.6757, 56.0093], + [-156.6893, 56.0569] + ] + ], + [ + [ + [-150.5979, 61.3604], + [-150.6349, 61.337], + [-150.5943, 61.2797], + [-150.5979, 61.3604] + ] + ], + [ + [ + [-175.7928, 51.9564], + [-175.8626, 51.9534], + [-175.7833, 51.9137], + [-175.7928, 51.9564] + ] + ], + [ + [ + [-146.2941, 59.4647], + [-146.374, 59.4184], + [-146.3344, 59.4042], + [-146.2941, 59.4647] + ] + ], + [ + [ + [-159.3128, 55.8117], + [-159.3564, 55.8065], + [-159.3078, 55.7455], + [-159.3128, 55.8117] + ] + ], + [ + [ + [-131.2011, 55.1078], + [-131.2422, 55.0664], + [-131.195, 55.0433], + [-131.2011, 55.1078] + ] + ], + [ + [ + [-163.7849, 60.8807], + [-163.862, 60.8755], + [-163.8229, 60.8417], + [-163.7849, 60.8807] + ] + ], + [ + [ + [-134.2661, 57.9553], + [-134.2466, 57.9086], + [-134.2017, 57.9397], + [-134.2661, 57.9553] + ] + ], + [ + [ + [-147.5542, 60.5604], + [-147.6224, 60.5641], + [-147.5995, 60.5255], + [-147.5542, 60.5604] + ] + ], + [ + [ + [-151.5081, 59.1459], + [-151.4443, 59.1046], + [-151.4312, 59.1345], + [-151.5081, 59.1459] + ] + ] + ] + }, + "properties": { + "id": "6eb40943-47b5-41ac-8b71-f4ca8bdc7b63", + "code": "AK", + "name": "Alaska", + "abbreviation": "S-AK", + "parent_id": "097d174e-70ae-4e79-b73a-142c4bb3ce6c" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-114.6985, 32.745], + [-114.7655, 32.6435], + [-114.807, 32.6227], + [-114.8136, 32.4939], + [-113.9713, 32.2378], + [-113.2108, 32.0001], + [-112.0007, 31.6272], + [-111.075, 31.3324], + [-109.5106, 31.3343], + [-109.05, 31.3328], + [-109.0467, 33.2382], + [-109.0449, 36.9986], + [-110.4719, 36.9996], + [-110.6102, 37.0046], + [-112.0013, 37.0024], + [-112.7447, 37.0033], + [-114.050505283, 37.00000125], + [-114.051, 37], + [-114.0487, 36.1951], + [-114.0694, 36.182], + [-114.1474, 36.0305], + [-114.2241, 36.0145], + [-114.3156, 36.0668], + [-114.3738, 36.1438], + [-114.44, 36.1273], + [-114.5039, 36.1501], + [-114.5108, 36.1528], + [-114.6298, 36.1421], + [-114.6643, 36.1197], + [-114.6907, 36.114], + [-114.7005, 36.1101], + [-114.743, 36.1007], + [-114.7421, 36.07], + [-114.735, 36.0542], + [-114.7453, 35.9846], + [-114.7047, 35.9047], + [-114.7022, 35.7006], + [-114.6587, 35.6162], + [-114.6703, 35.4697], + [-114.5956, 35.3246], + [-114.5718, 35.1623], + [-114.5794, 35.1307], + [-114.6463, 35.0992], + [-114.6067, 35.0769], + [-114.6359, 35.0132], + [-114.6329, 35.0021], + [-114.6289, 34.9937], + [-114.629, 34.9112], + [-114.6347, 34.8802], + [-114.5803, 34.8307], + [-114.5585, 34.7796], + [-114.4708, 34.7152], + [-114.431, 34.5925], + [-114.3789, 34.5304], + [-114.3849, 34.4639], + [-114.3354, 34.4544], + [-114.1378, 34.3081], + [-114.1295, 34.2672], + [-114.1339, 34.2638], + [-114.2259, 34.1929], + [-114.2688, 34.1755], + [-114.2886, 34.1727], + [-114.3226, 34.1415], + [-114.41, 34.1134], + [-114.4373, 34.0635], + [-114.4644, 33.9968], + [-114.5178, 33.96], + [-114.5315, 33.9407], + [-114.5033, 33.8671], + [-114.5152, 33.862], + [-114.5284, 33.8598], + [-114.5185, 33.8287], + [-114.494, 33.7004], + [-114.5295, 33.6742], + [-114.5247, 33.5579], + [-114.5917, 33.5004], + [-114.6342, 33.4235], + [-114.7072, 33.3866], + [-114.6988, 33.3642], + [-114.7288, 33.3023], + [-114.6765, 33.2737], + [-114.6757, 33.1634], + [-114.6997, 33.1197], + [-114.6607, 33.0333], + [-114.5666, 33.0389], + [-114.5142, 33.029], + [-114.4985, 33.0072], + [-114.467, 32.9515], + [-114.466, 32.8462], + [-114.5141, 32.8105], + [-114.5289, 32.7933], + [-114.5265, 32.758], + [-114.6139, 32.7291], + [-114.681, 32.7365], + [-114.6985, 32.745] + ] + ] + }, + "properties": { + "id": "07072c12-d5fc-4c81-a74a-11cda090eb5e", + "code": "AZ", + "name": "Arizona", + "abbreviation": "S-AZ", + "parent_id": "9432f503-fcbe-4e87-8c25-56d19462434c" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-92.8619, 33.0163], + [-91.942405155, 33.008306905], + [-91.9071, 33.008], + [-91.1631, 33.0045], + [-91.1232, 33.0449], + [-91.1334, 33.0699], + [-91.1991, 33.1056], + [-91.1924, 33.139], + [-91.0923, 33.137], + [-91.0925, 33.2171], + [-91.0509, 33.284], + [-91.0767, 33.2847], + [-91.0988, 33.2382], + [-91.1444, 33.335], + [-91.0745, 33.409], + [-91.0572, 33.4273], + [-91.0619, 33.4505], + [-91.078, 33.4571], + [-91.0919, 33.4558], + [-91.0994, 33.4154], + [-91.1051, 33.4], + [-91.1692, 33.3803], + [-91.1984, 33.4171], + [-91.1317, 33.4292], + [-91.1261, 33.4744], + [-91.1766, 33.4964], + [-91.183, 33.4385], + [-91.2349, 33.4377], + [-91.1869, 33.5166], + [-91.2244, 33.5678], + [-91.1359, 33.5923], + [-91.1363, 33.6228], + [-91.2188, 33.6605], + [-91.2085, 33.7007], + [-91.144, 33.6867], + [-91.1067, 33.662], + [-91.0928, 33.6572], + [-91.0757, 33.6587], + [-91.0654, 33.7162], + [-91.1458, 33.7301], + [-91.143, 33.773], + [-91.0551, 33.7777], + [-91.0705, 33.867], + [-91.0073, 33.9283], + [-91.0865, 33.9585], + [-90.9867, 34.0191], + [-90.8878, 34.0268], + [-90.8701, 34.091], + [-90.9407, 34.101], + [-90.9103, 34.1653], + [-90.8228, 34.1478], + [-90.8359, 34.1908], + [-90.9132, 34.1965], + [-90.9364, 34.2332], + [-90.8479, 34.2148], + [-90.831, 34.2726], + [-90.7686, 34.2772], + [-90.7566, 34.3731], + [-90.6792, 34.3682], + [-90.5758, 34.4156], + [-90.5882, 34.5051], + [-90.5401, 34.5507], + [-90.5801, 34.6081], + [-90.5878, 34.6785], + [-90.516, 34.635], + [-90.4646, 34.694], + [-90.566, 34.7162], + [-90.5049, 34.7819], + [-90.5219, 34.7359], + [-90.4879, 34.7278], + [-90.457, 34.736], + [-90.4726, 34.7952], + [-90.461, 34.8289], + [-90.4699, 34.8443], + [-90.4867, 34.8713], + [-90.4852, 34.8811], + [-90.4775, 34.8883], + [-90.4647, 34.8929], + [-90.4338, 34.8748], + [-90.4055, 34.8304], + [-90.3894, 34.8446], + [-90.2445, 34.909], + [-90.2486, 34.9494], + [-90.3093, 34.9915], + [-90.3098, 34.9966], + [-90.3108, 35.0015], + [-90.2937, 35.0371], + [-90.2157, 35.027], + [-90.1792, 35.1168], + [-90.1604, 35.132], + [-90.0978, 35.1196], + [-90.1151, 35.1977], + [-90.1039, 35.2554], + [-90.1518, 35.2558], + [-90.1564, 35.3012], + [-90.1083, 35.309], + [-90.0751, 35.3847], + [-90.1383, 35.3795], + [-90.1504, 35.3745], + [-90.1709, 35.4187], + [-90.0991, 35.4804], + [-90.0716, 35.4109], + [-90.0541, 35.3893], + [-90.0191, 35.469], + [-90.0362, 35.5515], + [-89.988, 35.5594], + [-89.9101, 35.5196], + [-89.906, 35.5331], + [-89.9414, 35.6023], + [-89.8622, 35.6322], + [-89.9565, 35.695], + [-89.9527, 35.738], + [-89.8186, 35.7568], + [-89.7937, 35.7948], + [-89.7065, 35.8172], + [-89.7624, 35.8569], + [-89.6587, 35.9271], + [-89.7162, 35.9625], + [-89.7169, 36.0015], + [-90.0008, 35.9984], + [-90.2574, 35.9975], + [-90.3773, 35.9951], + [-90.2905, 36.115], + [-90.2384, 36.1382], + [-90.2217, 36.1811], + [-90.1284, 36.2305], + [-90.068, 36.2978], + [-90.0669, 36.3862], + [-90.1441, 36.4231], + [-90.1536, 36.4963], + [-91.758, 36.4985], + [-92.256, 36.4965], + [-93.3653, 36.4968], + [-94.1651, 36.4996], + [-94.6182, 36.4984], + [-94.5338, 36.0093], + [-94.4947, 35.7594], + [-94.4307, 35.4], + [-94.4638, 34.5065], + [-94.4863, 33.6411], + [-94.4588, 33.6466], + [-94.4492, 33.643], + [-94.4629, 33.6287], + [-94.4728, 33.6054], + [-94.468, 33.5981], + [-94.4018, 33.555], + [-94.3255, 33.5504], + [-94.2873, 33.5827], + [-94.2346, 33.5519], + [-94.1673, 33.5901], + [-94.0445, 33.5505], + [-94.0456, 33.0206], + [-92.8619, 33.0163] + ] + ] + }, + "properties": { + "id": "be75ddc5-7a2a-48bf-8939-d0bfadfc1eea", + "code": "AR", + "name": "Arkansas", + "abbreviation": "S-AR", + "parent_id": "d6157b38-3f86-49ef-8acd-93287d33c0d0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-114.6329, 35.0021], + [-114.888038436, 35.208708962], + [-114.9352, 35.2469], + [-115.065428477, 35.350675077], + [-115.193553028, 35.452773599], + [-115.2099, 35.4658], + [-115.648, 35.8111], + [-116.2954, 36.3122], + [-116.79135207, 36.688950431], + [-116.8912, 36.7648], + [-117.2394, 37.0265], + [-117.269365759, 37.048759017], + [-117.286724092, 37.061653047], + [-117.5108, 37.2281], + [-117.699558286, 37.366348171], + [-118.1091, 37.6663], + [-118.8591, 38.2047], + [-119.341981891, 38.544214822], + [-119.4492, 38.6196], + [-119.502818548, 38.65661886], + [-120.0009, 39.0005], + [-120.0053, 39.2875], + [-119.9955, 40.3085], + [-119.9999, 40.9331], + [-119.9984, 41.6905], + [-120.0003, 41.9953], + [-121.0015, 41.9933], + [-122.3503, 42.0098], + [-123.0508, 42.0028], + [-123.1379, 42.0084], + [-123.3361, 41.9987], + [-123.6563, 41.9959], + [-124.2117, 41.9997], + [-124.2106, 41.8769], + [-124.2572, 41.7858], + [-124.1475, 41.7186], + [-124.1339, 41.6558], + [-124.0683, 41.5456], + [-124.0822, 41.5108], + [-124.0633, 41.4333], + [-124.1078, 41.2233], + [-124.164, 41.1015], + [-124.1125, 41.0287], + [-124.1531, 40.8675], + [-124.0889, 40.8236], + [-124.1836, 40.8008], + [-124.2228, 40.7222], + [-124.2997, 40.6668], + [-124.409, 40.4438], + [-124.3496, 40.3124], + [-124.3637, 40.2618], + [-124.1873, 40.1303], + [-124.1105, 40.1043], + [-124.0808, 40.0309], + [-124.0368, 40.0139], + [-123.9304, 39.9094], + [-123.8991, 39.8553], + [-123.8528, 39.8331], + [-123.8327, 39.7247], + [-123.7864, 39.6607], + [-123.7736, 39.5311], + [-123.8197, 39.4361], + [-123.8271, 39.3487], + [-123.8008, 39.3189], + [-123.7713, 39.1949], + [-123.7353, 39.1583], + [-123.6897, 39.0339], + [-123.73, 38.9542], + [-123.6436, 38.8414], + [-123.4411, 38.6989], + [-123.3333, 38.5644], + [-123.2511, 38.5095], + [-123.1306, 38.4523], + [-123.0647, 38.3536], + [-122.9304, 38.2135], + [-122.8442, 38.0908], + [-122.9831, 38.2347], + [-122.9546, 38.1767], + [-122.9613, 38.1114], + [-123.01, 38.0036], + [-122.9325, 38.0358], + [-122.8306, 38.0028], + [-122.7756, 37.9433], + [-122.7019, 37.8936], + [-122.6747, 37.9131], + [-122.4999, 37.8198], + [-122.4378, 37.8828], + [-122.5014, 37.9272], + [-122.4617, 38.0033], + [-122.4969, 38.02], + [-122.4781, 38.1147], + [-122.3958, 38.1433], + [-122.3139, 38.1092], + [-122.2742, 38.0661], + [-122.2311, 38.0652], + [-122.1339, 38.0419], + [-122.0442, 38.1369], + [-121.9733, 38.0736], + [-121.9122, 38.0835], + [-121.7996, 38.0628], + [-121.8124, 38.0178], + [-121.9506, 38.0514], + [-122.0703, 38.0533], + [-122.1481, 38.0217], + [-122.1903, 38.0531], + [-122.2625, 38.0506], + [-122.3, 38.0103], + [-122.3964, 37.9542], + [-122.3892, 37.9092], + [-122.3339, 37.9092], + [-122.2958, 37.8294], + [-122.3325, 37.7825], + [-122.2464, 37.7517], + [-122.1572, 37.6558], + [-122.1123, 37.5106], + [-122.0581, 37.4964], + [-122.0397, 37.4408], + [-122.2108, 37.4919], + [-122.2012, 37.5396], + [-122.2622, 37.5744], + [-122.3591, 37.5922], + [-122.3858, 37.6289], + [-122.3803, 37.7739], + [-122.4089, 37.8117], + [-122.5128, 37.7764], + [-122.4936, 37.6275], + [-122.5194, 37.5378], + [-122.4642, 37.4972], + [-122.4009, 37.3586], + [-122.4192, 37.2478], + [-122.4058, 37.1972], + [-122.3375, 37.1176], + [-122.2878, 37.1047], + [-122.2231, 37.0242], + [-122.1528, 36.9753], + [-122.0701, 36.9481], + [-121.9722, 36.9536], + [-121.9393, 36.9779], + [-121.8892, 36.9581], + [-121.7881, 36.805], + [-121.8201, 36.6662], + [-121.8859, 36.6008], + [-121.9386, 36.6403], + [-121.9772, 36.5797], + [-121.9353, 36.5625], + [-121.9473, 36.4903], + [-121.9144, 36.4253], + [-121.8989, 36.3083], + [-121.8114, 36.2325], + [-121.7081, 36.1878], + [-121.6331, 36.1189], + [-121.573, 36.0226], + [-121.5028, 36], + [-121.4667, 35.8881], + [-121.4161, 35.8575], + [-121.3177, 35.7557], + [-121.2788, 35.6673], + [-121.1719, 35.6382], + [-121.0977, 35.547], + [-121.0059, 35.4617], + [-120.9087, 35.4482], + [-120.84, 35.3453], + [-120.9, 35.2522], + [-120.8564, 35.2075], + [-120.7564, 35.1594], + [-120.6992, 35.1708], + [-120.6388, 35.1334], + [-120.6358, 35.0178], + [-120.6683, 34.9008], + [-120.6097, 34.8436], + [-120.6386, 34.7564], + [-120.6006, 34.7059], + [-120.6464, 34.5789], + [-120.5147, 34.5253], + [-120.4725, 34.4486], + [-120.2967, 34.4706], + [-120.1417, 34.4733], + [-120.007, 34.4603], + [-119.8783, 34.4064], + [-119.7817, 34.4156], + [-119.7281, 34.3956], + [-119.6156, 34.4211], + [-119.4592, 34.3739], + [-119.3903, 34.3181], + [-119.2781, 34.2669], + [-119.2133, 34.1453], + [-119.1439, 34.1083], + [-118.9375, 34.0431], + [-118.8525, 34.0336], + [-118.8075, 34.0005], + [-118.7403, 34.0331], + [-118.5695, 34.0417], + [-118.5247, 34.0297], + [-118.4433, 33.9464], + [-118.3913, 33.8379], + [-118.4286, 33.7742], + [-118.297, 33.7089], + [-118.2528, 33.7478], + [-118.1811, 33.7649], + [-118.0947, 33.7369], + [-118.0056, 33.6575], + [-117.9281, 33.6075], + [-117.8828, 33.6017], + [-117.7822, 33.5406], + [-117.7142, 33.4594], + [-117.6767, 33.4608], + [-117.4719, 33.2989], + [-117.3262, 33.1189], + [-117.2789, 33.0005], + [-117.2514, 32.8744], + [-117.2811, 32.8214], + [-117.2389, 32.7809], + [-117.2558, 32.6997], + [-117.2154, 32.7246], + [-117.1253, 32.6806], + [-117.0914, 32.5978], + [-117.1231, 32.5344], + [-115.9952, 32.6271], + [-114.7192, 32.718], + [-114.6985, 32.745], + [-114.681, 32.7365], + [-114.6139, 32.7291], + [-114.5265, 32.758], + [-114.5289, 32.7933], + [-114.5141, 32.8105], + [-114.466, 32.8462], + [-114.467, 32.9515], + [-114.4985, 33.0072], + [-114.5142, 33.029], + [-114.5666, 33.0389], + [-114.6607, 33.0333], + [-114.6997, 33.1197], + [-114.6757, 33.1634], + [-114.6765, 33.2737], + [-114.7288, 33.3023], + [-114.6988, 33.3642], + [-114.7072, 33.3866], + [-114.6342, 33.4235], + [-114.5917, 33.5004], + [-114.5247, 33.5579], + [-114.5295, 33.6742], + [-114.494, 33.7004], + [-114.5185, 33.8287], + [-114.5284, 33.8598], + [-114.5152, 33.862], + [-114.5033, 33.8671], + [-114.5315, 33.9407], + [-114.5178, 33.96], + [-114.4644, 33.9968], + [-114.4373, 34.0635], + [-114.41, 34.1134], + [-114.3226, 34.1415], + [-114.2886, 34.1727], + [-114.2688, 34.1755], + [-114.2259, 34.1929], + [-114.1339, 34.2638], + [-114.1295, 34.2672], + [-114.1378, 34.3081], + [-114.3354, 34.4544], + [-114.3849, 34.4639], + [-114.3789, 34.5304], + [-114.431, 34.5925], + [-114.4708, 34.7152], + [-114.5585, 34.7796], + [-114.5803, 34.8307], + [-114.6347, 34.8802], + [-114.629, 34.9112], + [-114.6289, 34.9937], + [-114.6329, 35.0021] + ] + ], + [ + [ + [-119.9125, 34.0767], + [-119.8764, 34.0322], + [-119.8741, 33.98], + [-119.8187, 33.9595], + [-119.7208, 33.9589], + [-119.6637, 33.9851], + [-119.5603, 33.9956], + [-119.52, 34.0342], + [-119.5862, 34.0539], + [-119.6331, 34.0128], + [-119.7572, 34.0592], + [-119.8098, 34.0511], + [-119.9125, 34.0767] + ] + ], + [ + [ + [-120.0513, 34.0371], + [-120.2386, 34.0102], + [-120.1693, 33.917], + [-120.1203, 33.8942], + [-119.971, 33.9413], + [-119.9814, 33.9798], + [-120.0466, 34], + [-120.0513, 34.0371] + ] + ], + [ + [ + [-118.6029, 33.4786], + [-118.5742, 33.44], + [-118.4886, 33.4189], + [-118.4656, 33.3256], + [-118.3784, 33.3208], + [-118.3261, 33.2986], + [-118.3106, 33.3367], + [-118.3664, 33.4058], + [-118.5364, 33.4775], + [-118.6029, 33.4786] + ] + ], + [ + [ + [-118.5892, 33.0294], + [-118.5767, 32.9741], + [-118.4891, 32.8436], + [-118.4291, 32.8038], + [-118.3706, 32.84], + [-118.485, 32.9233], + [-118.5633, 33.0236], + [-118.5892, 33.0294] + ] + ], + [ + [ + [-120.3654, 34.0746], + [-120.4395, 34.0383], + [-120.3604, 34.0134], + [-120.3069, 34.0197], + [-120.3654, 34.0746] + ] + ], + [ + [ + [-119.5224, 33.2815], + [-119.5737, 33.2584], + [-119.4704, 33.2144], + [-119.4598, 33.2563], + [-119.5224, 33.2815] + ] + ] + ] + }, + "properties": { + "id": "633635a7-f0c9-4a6c-b5db-30c7a9b07e96", + "code": "CA", + "name": "California", + "abbreviation": "S-CA", + "parent_id": "da91c585-dacb-46b4-998a-dabe27e6d774" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-106.8717, 36.9923], + [-105.8744, 36.9972], + [-105.76177659, 36.99698154], + [-105.1011, 36.9957], + [-104.3313, 36.993], + [-104.1849, 36.9958], + [-103.65304205, 36.997237454], + [-103.0009, 36.999], + [-103.000899764, 36.998412581], + [-102.7859, 36.9988], + [-102.4775, 36.9963], + [-102.0423, 36.9922], + [-102.042300011, 36.992205645], + [-102.048383939, 40.003899931], + [-102.0504, 41.0019], + [-102.6538, 41.0032], + [-104.0528, 41.0017], + [-104.5679, 41.0029], + [-104.83, 40.9996], + [-106.3171, 40.9994], + [-106.4481, 41.0035], + [-107.0021, 41.0044], + [-107.9154, 41.0029], + [-108.3781, 40.9997], + [-109.049, 41], + [-109.0538, 39.0135], + [-109.0596, 38.6727], + [-109.0607, 38.2768], + [-109.0409, 38.1603], + [-109.0449, 36.9986], + [-107.965, 36.9971], + [-106.8787, 36.999], + [-106.8717, 36.9923] + ] + ] + }, + "properties": { + "id": "53e7b08f-3db0-4c4d-8068-56b09fd7991c", + "code": "CO", + "name": "Colorado", + "abbreviation": "S-CO", + "parent_id": "1f30181c-ab24-4bfc-989c-162d4b17a83e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-73.6606, 40.9889], + [-73.6007, 41.0183], + [-73.5297, 41.0171], + [-73.3719, 41.1089], + [-73.262, 41.118], + [-73.1736, 41.1686], + [-73.1302, 41.1471], + [-73.0468, 41.2122], + [-73.014, 41.2048], + [-72.9156, 41.2967], + [-72.8936, 41.2419], + [-72.7861, 41.265], + [-72.5808, 41.2719], + [-72.5192, 41.2578], + [-72.4506, 41.2794], + [-72.3881, 41.2608], + [-72.2725, 41.2853], + [-72.1783, 41.3231], + [-72.0947, 41.3094], + [-71.9681, 41.3516], + [-71.8607, 41.3225], + [-71.8317, 41.3445], + [-71.8397, 41.3613], + [-71.8349, 41.3817], + [-71.8406, 41.4094], + [-71.818, 41.4199], + [-71.7977, 41.4187], + [-71.7882, 41.6387], + [-71.7979, 42.0089], + [-71.7991, 42.0238], + [-72.003, 42.0291], + [-72.7574, 42.0362], + [-73.3658, 42.0497], + [-73.490103271, 42.049606044], + [-73.4923, 41.9865], + [-73.5038, 41.8662], + [-73.5333, 41.4977], + [-73.5523, 41.2933], + [-73.4838, 41.2136], + [-73.7297, 41.1009], + [-73.657, 41.0119], + [-73.6606, 40.9889] + ] + ] + }, + "properties": { + "id": "378ec965-57bd-45b3-ad76-eab6fd48163c", + "code": "CT", + "name": "Connecticut", + "abbreviation": "S-CT", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-75.151071674, 38.64310412], + [-75.0794, 38.6947], + [-75.092, 38.8017], + [-75.1303, 38.7814], + [-75.1856, 38.8033], + [-75.3042, 38.9136], + [-75.3187, 38.9887], + [-75.3914, 39.0525], + [-75.4128, 39.1508], + [-75.3957, 39.1896], + [-75.4081, 39.2642], + [-75.4389, 39.3133], + [-75.4988, 39.3413], + [-75.4672, 39.3722], + [-75.5622, 39.4706], + [-75.5322, 39.4983], + [-75.5154, 39.5814], + [-75.5603, 39.6255], + [-75.5119, 39.673], + [-75.4617, 39.7627], + [-75.4144, 39.8033], + [-75.5307, 39.8401], + [-75.6464, 39.827], + [-75.7177, 39.7912], + [-75.7723, 39.7231], + [-75.787500343, 39.723058306], + [-75.7881, 39.6501], + [-75.7224, 38.8295], + [-75.7069, 38.5976], + [-75.702, 38.5622], + [-75.702103612, 38.562165463], + [-75.702, 38.5614], + [-75.6933, 38.5581], + [-75.6711, 38.5756], + [-75.6742, 38.57], + [-75.6917, 38.5561], + [-75.7019, 38.5597], + [-75.6942, 38.4593], + [-75.1285, 38.4471], + [-75.0699, 38.4518], + [-75.0502, 38.4494], + [-75.0583, 38.5872], + [-75.1553, 38.6078], + [-75.151071674, 38.64310412] + ] + ] + }, + "properties": { + "id": "37538399-060c-4530-9083-604642e105cf", + "code": "DE", + "name": "Delaware", + "abbreviation": "S-DE", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-77.0164, 38.8093], + [-76.9097, 38.8925], + [-77.0415, 38.9951], + [-77.1205, 38.9337], + [-77.1105, 38.9224], + [-77.0318, 38.8533], + [-77.0164, 38.8093] + ] + ] + }, + "properties": { + "id": "0cfdc295-0404-42f3-a3dc-1cd593dfc655", + "code": "DC", + "name": "District of Columbia", + "abbreviation": "S-DC", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-87.4353, 30.4873], + [-87.3467, 30.4231], + [-87.4256, 30.4025], + [-87.4169, 30.3425], + [-87.4611, 30.3097], + [-87.2645, 30.3444], + [-87.2576, 30.3884], + [-87.1812, 30.4213], + [-87.1603, 30.4683], + [-87.1844, 30.5266], + [-87.1588, 30.5805], + [-87.1025, 30.5225], + [-87.1025, 30.4454], + [-87.0682, 30.4473], + [-87.0378, 30.5391], + [-87.013, 30.4984], + [-86.9356, 30.4547], + [-87.0147, 30.4034], + [-86.9497, 30.3953], + [-86.7233, 30.4108], + [-86.6047, 30.4011], + [-86.51, 30.4553], + [-86.4522, 30.5084], + [-86.4208, 30.4514], + [-86.3192, 30.4775], + [-86.2097, 30.4875], + [-86.1189, 30.3794], + [-86.1653, 30.3825], + [-86.2481, 30.4286], + [-86.2456, 30.39], + [-86.3287, 30.3828], + [-86.4882, 30.418], + [-86.5025, 30.3819], + [-86.3331, 30.3703], + [-86.1878, 30.3342], + [-85.9914, 30.2686], + [-85.7756, 30.1567], + [-85.7442, 30.2128], + [-85.7986, 30.2531], + [-85.8492, 30.2325], + [-85.845, 30.2844], + [-85.7631, 30.3], + [-85.6792, 30.2497], + [-85.73, 30.1872], + [-85.6469, 30.1347], + [-85.5242, 30.1233], + [-85.5328, 30.0789], + [-85.6006, 30.0917], + [-85.6192, 30.1217], + [-85.6869, 30.1228], + [-85.5411, 30.0244], + [-85.4769, 29.9672], + [-85.4122, 29.9431], + [-85.3028, 29.8083], + [-85.3045, 29.6838], + [-85.1147, 29.717], + [-84.9906, 29.715], + [-84.9245, 29.7611], + [-84.9019, 29.7344], + [-84.757, 29.788], + [-84.5331, 29.9114], + [-84.4444, 29.9297], + [-84.3636, 29.9097], + [-84.3386, 29.9472], + [-84.441, 29.9613], + [-84.4372, 29.9875], + [-84.3547, 29.9694], + [-84.3775, 30.0092], + [-84.3489, 30.0606], + [-84.289, 30.0571], + [-84.2706, 30.1058], + [-84.2067, 30.1153], + [-84.16, 30.072], + [-84.1164, 30.0942], + [-83.9964, 30.1041], + [-83.9533, 30.0612], + [-83.8289, 29.9822], + [-83.7764, 29.9761], + [-83.6806, 29.9226], + [-83.5855, 29.8178], + [-83.5339, 29.7214], + [-83.4057, 29.6533], + [-83.3964, 29.5244], + [-83.2953, 29.4368], + [-83.2336, 29.4323], + [-83.1803, 29.3619], + [-83.167749077, 29.306905535], + [-83.167803475, 29.306862645], + [-83.0813, 29.2666], + [-83.0711, 29.1917], + [-83.0289, 29.1617], + [-82.9811, 29.1747], + [-82.8109, 29.1637], + [-82.7867, 29.0786], + [-82.74, 29.0217], + [-82.71, 28.9361], + [-82.6383, 28.9053], + [-82.6514, 28.8578], + [-82.733, 28.8537], + [-82.6856, 28.7936], + [-82.6878, 28.7276], + [-82.64, 28.7008], + [-82.6556, 28.6303], + [-82.6711, 28.4341], + [-82.7312, 28.3255], + [-82.7331, 28.2828], + [-82.8008, 28.1708], + [-82.7758, 28.1097], + [-82.8058, 27.9547], + [-82.8489, 27.8736], + [-82.6888, 27.709], + [-82.6381, 27.7039], + [-82.5983, 27.8569], + [-82.655, 27.9108], + [-82.7198, 27.9363], + [-82.6655, 28.0285], + [-82.5275, 27.9356], + [-82.555, 27.8496], + [-82.4733, 27.8217], + [-82.4863, 27.9227], + [-82.4012, 27.8779], + [-82.3958, 27.8147], + [-82.4783, 27.7472], + [-82.5671, 27.6263], + [-82.5699, 27.5679], + [-82.6411, 27.4737], + [-82.6914, 27.4708], + [-82.5739, 27.4053], + [-82.5415, 27.3304], + [-82.5411, 27.27], + [-82.5022, 27.2272], + [-82.4444, 27.0575], + [-82.3576, 26.9165], + [-82.3018, 26.8474], + [-82.1501, 26.7846], + [-82.1532, 26.924], + [-82.1174, 26.9615], + [-82.0088, 26.9526], + [-82.0971, 26.9151], + [-82.0601, 26.8793], + [-82.0546, 26.7946], + [-82.0879, 26.6757], + [-82.0468, 26.609], + [-82.064, 26.5671], + [-82.0165, 26.529], + [-82.0137, 26.4882], + [-81.8765, 26.4562], + [-81.8374, 26.3476], + [-81.8015, 26.091], + [-81.7349, 25.9988], + [-81.6349, 25.9387], + [-81.6368, 25.9063], + [-81.5301, 25.8929], + [-81.5193, 25.8396], + [-81.4579, 25.8668], + [-81.3996, 25.8568], + [-81.3349, 25.7876], + [-81.346, 25.7215], + [-81.2929, 25.7057], + [-81.2535, 25.6415], + [-81.1418, 25.381], + [-81.1007, 25.3468], + [-80.9799, 25.3254], + [-80.9038, 25.2399], + [-80.9638, 25.2049], + [-81.0024, 25.2135], + [-81.029, 25.2263], + [-81.0476, 25.2365], + [-81.0699, 25.2551], + [-81.0888, 25.311], + [-81.1457, 25.3268], + [-81.1718, 25.2235], + [-81.0888, 25.1374], + [-81.0021, 25.124], + [-80.9004, 25.1396], + [-80.8468, 25.1774], + [-80.7165, 25.156], + [-80.5821, 25.2104], + [-80.5062, 25.2071], + [-80.3426, 25.3232], + [-80.3087, 25.3899], + [-80.3407, 25.4982], + [-80.2296, 25.7335], + [-80.1888, 25.7551], + [-80.1849, 25.8105], + [-80.1184, 25.8338], + [-80.1704, 25.8671], + [-80.1212, 25.8999], + [-80.1093, 26.0874], + [-80.0799, 26.2576], + [-80.0365, 26.5882], + [-80.0521, 26.794], + [-80.0799, 26.9479], + [-80.1201, 27.0804], + [-80.1575, 27.1629], + [-80.1917, 27.1642], + [-80.3216, 27.4435], + [-80.3754, 27.653], + [-80.4614, 27.8059], + [-80.6578, 28.1953], + [-80.7489, 28.4089], + [-80.7978, 28.5589], + [-80.8436, 28.75], + [-80.8447, 28.8], + [-80.7417, 28.7158], + [-80.7847, 28.6903], + [-80.7842, 28.6219], + [-80.7261, 28.6042], + [-80.7331, 28.4897], + [-80.7203, 28.3914], + [-80.6833, 28.3397], + [-80.635, 28.5022], + [-80.5872, 28.5744], + [-80.585, 28.5158], + [-80.6086, 28.3758], + [-80.6322, 28.3225], + [-80.6078, 28.2639], + [-80.6186, 28.2122], + [-80.5764, 28.0775], + [-80.4272, 27.8139], + [-80.4183, 27.7665], + [-80.3422, 27.5958], + [-80.3108, 27.4708], + [-80.2903, 27.4728], + [-80.3842, 27.7424], + [-80.5125, 27.9764], + [-80.5611, 28.0792], + [-80.5931, 28.1906], + [-80.6081, 28.3103], + [-80.5908, 28.4078], + [-80.525, 28.4581], + [-80.5747, 28.5847], + [-80.71, 28.7564], + [-80.9008, 29.0475], + [-80.9158, 29.0236], + [-80.8475, 28.9575], + [-80.775, 28.8522], + [-80.7764, 28.8256], + [-80.6442, 28.6675], + [-80.6856, 28.6706], + [-80.7669, 28.7572], + [-80.9781, 29.1286], + [-80.9961, 29.2036], + [-81.1708, 29.57], + [-81.2583, 29.7869], + [-81.2644, 29.8567], + [-81.3014, 29.9414], + [-81.3786, 30.2458], + [-81.3931, 30.3953], + [-81.436, 30.5245], + [-81.4435, 30.5989], + [-81.4256, 30.7011], + [-81.5015, 30.7286], + [-81.5415, 30.7127], + [-81.6237, 30.7279], + [-81.631, 30.7331], + [-81.6604, 30.7521], + [-81.6827, 30.7493], + [-81.875, 30.8007], + [-81.8859, 30.8137], + [-81.9377, 30.8284], + [-81.9628, 30.8162], + [-81.9658, 30.7943], + [-81.9884, 30.7795], + [-82.0015, 30.7905], + [-82.0196, 30.7897], + [-82.0245, 30.7829], + [-82.0243, 30.7537], + [-82.0515, 30.6577], + [-82.0412, 30.6424], + [-82.0104, 30.583], + [-82.009, 30.5634], + [-82.0363, 30.3825], + [-82.0671, 30.3571], + [-82.0702, 30.3608], + [-82.1618, 30.3591], + [-82.1777, 30.3644], + [-82.2079, 30.4163], + [-82.2016, 30.475], + [-82.2071, 30.4941], + [-82.2213, 30.5687], + [-82.6896, 30.5976], + [-83.9521, 30.6709], + [-84.8665, 30.7116], + [-84.8885, 30.7358], + [-84.9143, 30.751], + [-84.9208, 30.7679], + [-84.9367, 30.8872], + [-84.979, 30.9579], + [-84.9807, 30.9648], + [-85.0011, 30.9921], + [-85.0035, 31.0021], + [-85.4918, 30.9967], + [-86.0354, 30.9943], + [-86.7016, 30.9956], + [-86.772, 31], + [-87.6012, 31.0004], + [-87.5913, 30.9713], + [-87.5921, 30.9539], + [-87.6372, 30.867], + [-87.5353, 30.7484], + [-87.4328, 30.6889], + [-87.4016, 30.6595], + [-87.3958, 30.6354], + [-87.3939, 30.6286], + [-87.4015, 30.6059], + [-87.4265, 30.5605], + [-87.429, 30.5525], + [-87.4421, 30.5365], + [-87.4468, 30.5228], + [-87.445, 30.5068], + [-87.4353, 30.4873] + ] + ], + [ + [ + [-82.1588, 26.7068], + [-82.0943, 26.489], + [-82.0651, 26.6107], + [-82.1243, 26.699], + [-82.1588, 26.7068] + ] + ], + [ + [ + [-80.6471, 24.9132], + [-80.566, 24.9557], + [-80.474, 25.0607], + [-80.3715, 25.1365], + [-80.3679, 25.1699], + [-80.2851, 25.2874], + [-80.5126, 25.0179], + [-80.6471, 24.9132] + ] + ], + [ + [ + [-82.1965, 26.5515], + [-82.1729, 26.4688], + [-82.0715, 26.4215], + [-82.014, 26.4524], + [-82.1599, 26.4821], + [-82.1965, 26.5515] + ] + ], + [ + [ + [-81.5623, 24.6926], + [-81.6038, 24.5857], + [-81.5101, 24.6257], + [-81.5623, 24.6926] + ] + ], + [ + [ + [-81.7276, 25.9735], + [-81.7288, 25.9079], + [-81.6735, 25.9007], + [-81.6552, 25.9426], + [-81.7276, 25.9735] + ] + ], + [ + [ + [-85.1122, 29.6877], + [-85.1828, 29.6638], + [-85.0972, 29.6325], + [-85.1122, 29.6877] + ] + ], + [ + [ + [-81.0057, 25.2732], + [-81.0462, 25.2374], + [-81.0207, 25.2279], + [-81.0054, 25.2282], + [-81.0007, 25.2162], + [-80.9676, 25.2185], + [-81.0057, 25.2732] + ] + ], + [ + [ + [-81.4132, 25.8007], + [-81.4246, 25.8554], + [-81.4799, 25.8443], + [-81.4132, 25.8007] + ] + ] + ] + }, + "properties": { + "id": "eeb4289a-9597-4d1c-b459-de727c28a516", + "code": "FL", + "name": "Florida", + "abbreviation": "S-FL", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-85.0035, 31.0021], + [-85.0011, 30.9921], + [-84.9807, 30.9648], + [-84.979, 30.9579], + [-84.9367, 30.8872], + [-84.9208, 30.7679], + [-84.9143, 30.751], + [-84.8885, 30.7358], + [-84.8665, 30.7116], + [-83.9521, 30.6709], + [-82.6896, 30.5976], + [-82.2213, 30.5687], + [-82.2071, 30.4941], + [-82.2016, 30.475], + [-82.2079, 30.4163], + [-82.1777, 30.3644], + [-82.1618, 30.3591], + [-82.0702, 30.3608], + [-82.0671, 30.3571], + [-82.0363, 30.3825], + [-82.009, 30.5634], + [-82.0104, 30.583], + [-82.0412, 30.6424], + [-82.0515, 30.6577], + [-82.0243, 30.7537], + [-82.0245, 30.7829], + [-82.0196, 30.7897], + [-82.0015, 30.7905], + [-81.9884, 30.7795], + [-81.9658, 30.7943], + [-81.9628, 30.8162], + [-81.9377, 30.8284], + [-81.8859, 30.8137], + [-81.875, 30.8007], + [-81.6827, 30.7493], + [-81.6604, 30.7521], + [-81.631, 30.7331], + [-81.6237, 30.7279], + [-81.5415, 30.7127], + [-81.5015, 30.7286], + [-81.449, 30.72], + [-81.4522, 30.7992], + [-81.4064, 30.9003], + [-81.4027, 30.9589], + [-81.4633, 30.9097], + [-81.5131, 30.9658], + [-81.4611, 30.9983], + [-81.4841, 31.0377], + [-81.4256, 31.0486], + [-81.4606, 31.0872], + [-81.4353, 31.1339], + [-81.4631, 31.1772], + [-81.3883, 31.2826], + [-81.3333, 31.3903], + [-81.3758, 31.4242], + [-81.2314, 31.5497], + [-81.1659, 31.5634], + [-81.1301, 31.63], + [-81.1452, 31.699], + [-81.1872, 31.6878], + [-81.2528, 31.7567], + [-81.1609, 31.7277], + [-81.2018, 31.7866], + [-81.145, 31.8614], + [-81.0894, 31.8603], + [-81.0214, 31.9078], + [-80.9933, 31.8578], + [-80.9335, 31.9074], + [-80.985, 31.9164], + [-81.0086, 32.0073], + [-81.0463, 32.0241], + [-81.0494, 32.0302], + [-81.0422, 32.0458], + [-81.0315, 32.0609], + [-81.0114, 32.0746], + [-80.9716, 32.0741], + [-80.9839, 32.0796], + [-81.0236, 32.0999], + [-81.1183, 32.1175], + [-81.1104, 32.1734], + [-81.1554, 32.2403], + [-81.1202, 32.2875], + [-81.2033, 32.4265], + [-81.1959, 32.4697], + [-81.291, 32.5645], + [-81.3393, 32.5673], + [-81.4175, 32.6317], + [-81.3942, 32.6526], + [-81.4258, 32.7738], + [-81.4275, 32.8422], + [-81.4578, 32.851], + [-81.5016, 32.9369], + [-81.4912, 32.9936], + [-81.6142, 33.0953], + [-81.6466, 33.0937], + [-81.7545, 33.1517], + [-81.7573, 33.1972], + [-81.846, 33.243], + [-81.836, 33.2735], + [-81.9338, 33.3438], + [-81.9443, 33.4024], + [-81.914, 33.4436], + [-81.9862, 33.4875], + [-82.0511, 33.5662], + [-82.1953, 33.6318], + [-82.2552, 33.7569], + [-82.3091, 33.8072], + [-82.4281, 33.8693], + [-82.5143, 33.9395], + [-82.5624, 33.9551], + [-82.5975, 34.0313], + [-82.6792, 34.1307], + [-82.7173, 34.1521], + [-82.7519, 34.2726], + [-82.8329, 34.3661], + [-82.8612, 34.4538], + [-82.9055, 34.4867], + [-83.0022, 34.4733], + [-83.0819, 34.5155], + [-83.1938, 34.6067], + [-83.2366, 34.6167], + [-83.3403, 34.6812], + [-83.3534, 34.728], + [-83.2993, 34.8066], + [-83.2928, 34.8186], + [-83.2501, 34.8678], + [-83.1272, 34.9401], + [-83.1052, 35.002], + [-83.6213, 34.9916], + [-83.6216, 34.9871], + [-84.321, 34.989], + [-84.477, 34.9885], + [-84.6374, 34.9906], + [-85.3418, 34.9839], + [-85.6055, 34.9855], + [-85.573, 34.8029], + [-85.4899, 34.4162], + [-85.4115, 34.0299], + [-85.2245, 33.0693], + [-85.1693, 32.8117], + [-85.1253, 32.7789], + [-85.1149, 32.6962], + [-85.075, 32.5885], + [-85.0048, 32.5172], + [-84.9824, 32.4057], + [-84.9997, 32.3223], + [-84.8935, 32.2646], + [-84.9775, 32.1928], + [-85.0489, 32.1441], + [-85.0645, 32.1315], + [-85.0522, 32.089], + [-85.0862, 31.9407], + [-85.1175, 31.9124], + [-85.1383, 31.8274], + [-85.1445, 31.7818], + [-85.1257, 31.6948], + [-85.0674, 31.627], + [-85.0454, 31.5443], + [-85.1171, 31.2776], + [-85.1093, 31.1911], + [-85.0293, 31.0761], + [-85.0106, 31.028], + [-85.0049, 31.0149], + [-85.0035, 31.0021] + ] + ], + [ + [ + [-81.1942, 31.5358], + [-81.2944, 31.4878], + [-81.3078, 31.4233], + [-81.2794, 31.3783], + [-81.1778, 31.5147], + [-81.1942, 31.5358] + ] + ], + [ + [ + [-81.3374, 31.2919], + [-81.3739, 31.2993], + [-81.41, 31.1367], + [-81.3688, 31.1452], + [-81.3104, 31.2141], + [-81.3374, 31.2919] + ] + ], + [ + [ + [-81.1206, 31.8497], + [-81.1803, 31.7939], + [-81.1325, 31.7222], + [-81.0347, 31.8173], + [-81.1206, 31.8497] + ] + ], + [ + [ + [-81.0092, 32.0711], + [-81.0292, 32.0622], + [-81.0283, 32.0497], + [-81.0396, 32.0447], + [-81.0481, 32.0278], + [-81.0283, 32.025], + [-81.0031, 32.0094], + [-80.9856, 31.9517], + [-80.9292, 31.9725], + [-80.9325, 31.9911], + [-80.9245, 32.0091], + [-80.94, 32.0154], + [-80.9824, 32.0597], + [-81.0092, 32.0711] + ] + ], + [ + [ + [-80.9775, 32.0661], + [-80.9242, 32.0125], + [-80.9217, 32.0072], + [-80.9261, 31.9958], + [-80.8478, 31.9892], + [-80.9775, 32.0661] + ] + ] + ] + }, + "properties": { + "id": "22b393fd-f331-4bc3-8211-104489b19510", + "code": "GA", + "name": "Georgia", + "abbreviation": "S-GA", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-155.875, 20.0919], + [-155.8234, 20.0276], + [-155.9367, 19.8497], + [-155.96, 19.8531], + [-156.0503, 19.7744], + [-156.0328, 19.6563], + [-155.9753, 19.6046], + [-155.9508, 19.4869], + [-155.9203, 19.4769], + [-155.8847, 19.3322], + [-155.9189, 19.115], + [-155.8819, 19.0364], + [-155.7953, 19.0042], + [-155.6864, 18.9372], + [-155.6378, 18.9347], + [-155.504, 19.1357], + [-155.4523, 19.1474], + [-155.3471, 19.2135], + [-155.2936, 19.2634], + [-155.2078, 19.2562], + [-155.1305, 19.2728], + [-154.9725, 19.3489], + [-154.8206, 19.4769], + [-154.8058, 19.5161], + [-154.9031, 19.5689], + [-154.98, 19.6376], + [-155.0022, 19.7364], + [-155.0903, 19.7347], + [-155.0811, 19.8475], + [-155.1572, 19.9325], + [-155.2746, 20.0165], + [-155.4383, 20.0925], + [-155.5561, 20.1289], + [-155.5878, 20.1188], + [-155.7303, 20.2022], + [-155.7539, 20.2361], + [-155.8369, 20.2672], + [-155.8825, 20.2575], + [-155.9042, 20.1973], + [-155.875, 20.0919] + ] + ], + [ + [ + [-156.5986, 21.0305], + [-156.6333, 21.0267], + [-156.6925, 20.9472], + [-156.6871, 20.882], + [-156.6283, 20.8136], + [-156.5366, 20.7743], + [-156.4631, 20.7812], + [-156.4414, 20.605], + [-156.3736, 20.5739], + [-156.2972, 20.5822], + [-156.1927, 20.6283], + [-156.1403, 20.6178], + [-156.0472, 20.6508], + [-155.9872, 20.7083], + [-156.0019, 20.7947], + [-156.1081, 20.825], + [-156.2825, 20.9458], + [-156.3294, 20.9456], + [-156.4739, 20.8908], + [-156.5265, 20.9805], + [-156.5986, 21.0305] + ] + ], + [ + [ + [-157.9803, 21.7108], + [-158.0633, 21.655], + [-158.1169, 21.5847], + [-158.283, 21.5756], + [-158.2303, 21.5349], + [-158.2317, 21.4825], + [-158.1417, 21.3764], + [-158.1031, 21.295], + [-157.9005, 21.3259], + [-157.8188, 21.2576], + [-157.6487, 21.3044], + [-157.7035, 21.3464], + [-157.7446, 21.4211], + [-157.7814, 21.4114], + [-157.8397, 21.4562], + [-157.8338, 21.5265], + [-157.9209, 21.6268], + [-157.9335, 21.6743], + [-157.9803, 21.7108] + ] + ], + [ + [ + [-159.4018, 22.235], + [-159.4983, 22.2068], + [-159.5865, 22.2205], + [-159.6598, 22.1719], + [-159.7223, 22.1531], + [-159.7858, 22.0619], + [-159.7564, 21.9786], + [-159.6664, 21.9524], + [-159.6284, 21.9084], + [-159.4441, 21.868], + [-159.3305, 21.9595], + [-159.3389, 22.0175], + [-159.2929, 22.1221], + [-159.3146, 22.1859], + [-159.4018, 22.235] + ] + ], + [ + [ + [-156.9134, 21.1667], + [-156.9706, 21.2158], + [-157, 21.1789], + [-157.0652, 21.1952], + [-157.2606, 21.2175], + [-157.2508, 21.1775], + [-157.3114, 21.1014], + [-157.2525, 21.0877], + [-157.0937, 21.1026], + [-156.8743, 21.0465], + [-156.7486, 21.1028], + [-156.7109, 21.1479], + [-156.7393, 21.173], + [-156.9134, 21.1667] + ] + ], + [ + [ + [-156.9791, 20.9263], + [-157.0579, 20.909], + [-157.0525, 20.8728], + [-156.9981, 20.8408], + [-156.9636, 20.7308], + [-156.8761, 20.7425], + [-156.8054, 20.808], + [-156.8284, 20.8558], + [-156.9005, 20.9151], + [-156.9791, 20.9263] + ] + ], + [ + [ + [-160.0855, 22.0015], + [-160.1285, 21.9513], + [-160.2294, 21.8856], + [-160.2472, 21.8153], + [-160.2027, 21.7789], + [-160.1611, 21.8614], + [-160.0672, 21.8935], + [-160.0855, 22.0015] + ] + ], + [ + [ + [-156.5683, 20.6039], + [-156.6778, 20.5556], + [-156.6786, 20.5028], + [-156.5518, 20.5339], + [-156.5683, 20.6039] + ] + ] + ] + }, + "properties": { + "id": "eaa2828e-1d16-4aa4-bc05-50ebcb3d7974", + "code": "HI", + "name": "Hawaii", + "abbreviation": "S-HI", + "parent_id": "5ee7f045-f63c-42e6-b623-98c5080c0d76" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-112.164, 42.0017], + [-112.156, 41.9981], + [-111.5833, 42.0042], + [-111.4479, 42.0012], + [-111.046989374, 42.000501202], + [-111.0477, 42.4469], + [-111.0446, 42.7889], + [-111.045, 43.5061], + [-111.0487, 44.4772], + [-111.1119, 44.4909], + [-111.1331, 44.5339], + [-111.2285, 44.5803], + [-111.2963, 44.7017], + [-111.3212, 44.7179], + [-111.3244, 44.7271], + [-111.3496, 44.7281], + [-111.3775, 44.7537], + [-111.388, 44.753], + [-111.411, 44.7129], + [-111.4876, 44.7031], + [-111.4717, 44.668], + [-111.5461, 44.5559], + [-111.6167, 44.5491], + [-111.648, 44.5542], + [-111.7012, 44.5587], + [-111.8223, 44.5111], + [-111.8693, 44.5662], + [-111.9759, 44.5391], + [-112.1144, 44.5254], + [-112.2862, 44.5691], + [-112.3558, 44.533], + [-112.3834, 44.4493], + [-112.3923, 44.45], + [-112.4599, 44.477], + [-112.6651, 44.4881], + [-112.6911, 44.4995], + [-112.7352, 44.5], + [-112.7637, 44.4896], + [-112.7827, 44.483], + [-112.803, 44.4602], + [-112.8284, 44.444], + [-112.8186, 44.3725], + [-112.8508, 44.3581], + [-112.9786, 44.4322], + [-113.0242, 44.4937], + [-113.0094, 44.527], + [-113.0858, 44.6042], + [-113.0558, 44.6259], + [-113.1347, 44.7754], + [-113.2475, 44.8229], + [-113.3286, 44.7888], + [-113.4233, 44.8405], + [-113.4917, 44.926], + [-113.4462, 44.9586], + [-113.4548, 45.0599], + [-113.5482, 45.1113], + [-113.5906, 45.1806], + [-113.6874, 45.2579], + [-113.7385, 45.3308], + [-113.7336, 45.3901], + [-113.7748, 45.4161], + [-113.7714, 45.5192], + [-113.8309, 45.518], + [-113.8186, 45.6101], + [-113.9025, 45.6192], + [-113.895, 45.6461], + [-113.9856, 45.7047], + [-114.0147, 45.6588], + [-114.1356, 45.5586], + [-114.2018, 45.5354], + [-114.2473, 45.5467], + [-114.2715, 45.484], + [-114.3406, 45.4595], + [-114.4268, 45.5135], + [-114.4677, 45.5647], + [-114.5523, 45.5583], + [-114.5465, 45.6423], + [-114.5049, 45.6611], + [-114.5011, 45.7186], + [-114.5655, 45.7773], + [-114.4943, 45.8521], + [-114.4097, 45.8522], + [-114.386, 45.8863], + [-114.4317, 45.9398], + [-114.4128, 45.9773], + [-114.4875, 46.0033], + [-114.5062, 46.0359], + [-114.4603, 46.0945], + [-114.5177, 46.1246], + [-114.5073, 46.1688], + [-114.4469, 46.1739], + [-114.4509, 46.2359], + [-114.4154, 46.3385], + [-114.4203, 46.3914], + [-114.382, 46.462], + [-114.4033, 46.4989], + [-114.3446, 46.5173], + [-114.3476, 46.5533], + [-114.3347, 46.578], + [-114.3225, 46.6339], + [-114.3309, 46.6586], + [-114.4322, 46.6601], + [-114.4679, 46.633], + [-114.5347, 46.6507], + [-114.591, 46.6365], + [-114.6418, 46.6673], + [-114.6266, 46.7099], + [-114.6941, 46.7391], + [-114.7533, 46.6996], + [-114.7679, 46.7603], + [-114.9225, 46.8283], + [-114.9233, 46.9152], + [-115.0187, 46.9755], + [-115.0499, 46.9707], + [-115.0835, 47.0439], + [-115.1406, 47.1019], + [-115.2963, 47.1886], + [-115.3201, 47.2581], + [-115.5029, 47.2873], + [-115.6043, 47.3787], + [-115.752, 47.4367], + [-115.6454, 47.4591], + [-115.7055, 47.534], + [-115.7525, 47.5535], + [-115.6898, 47.5926], + [-115.7279, 47.6425], + [-115.7254, 47.7], + [-115.8314, 47.7523], + [-115.8483, 47.8154], + [-115.9003, 47.8425], + [-116.0215, 47.9645], + [-116.0471, 47.973], + [-116.0507, 49.0004], + [-117.0294, 48.9996], + [-117.0391, 48.5904], + [-117.0426, 48.0459], + [-117.0422, 47.3665], + [-117.038, 46.4288], + [-117.0605, 46.3629], + [-116.987, 46.2957], + [-116.9631, 46.2032], + [-116.9218, 46.1711], + [-116.9569, 46.0753], + [-116.9383, 46.0474], + [-116.92, 46.0146], + [-116.912940083, 45.9971998], + [-116.9125, 45.9972], + [-116.9101, 45.9902], + [-116.866, 45.9152], + [-116.789, 45.8586], + [-116.7614, 45.8166], + [-116.6935, 45.818], + [-116.6623, 45.7812], + [-116.5924, 45.7793], + [-116.5345, 45.7349], + [-116.5341, 45.6925], + [-116.4616, 45.6093], + [-116.5203, 45.5553], + [-116.5849, 45.4414], + [-116.667, 45.3271], + [-116.7284, 45.145], + [-116.8413, 45.0287], + [-116.833, 44.9386], + [-116.8552, 44.8816], + [-116.9352, 44.783], + [-117.0285, 44.7511], + [-117.1414, 44.57], + [-117.1473, 44.5352], + [-117.224, 44.4799], + [-117.213, 44.4282], + [-117.2402, 44.3893], + [-117.1896, 44.3309], + [-117.2181, 44.3018], + [-117.181, 44.2644], + [-117.0924, 44.2718], + [-117.052, 44.2329], + [-116.971, 44.2348], + [-116.9664, 44.1964], + [-116.8935, 44.1703], + [-116.9196, 44.1076], + [-116.9689, 44.0873], + [-116.936, 43.9916], + [-116.9728, 43.9678], + [-116.962, 43.9126], + [-117.0203, 43.8594], + [-117.0271, 43.8082], + [-117.0293, 42.0003], + [-115.2264, 41.9945], + [-114.8546, 42.0003], + [-114.5984, 41.9953], + [-114.044298938, 41.993413276], + [-114.0404, 41.9934], + [-113.8526, 41.9898], + [-112.9579, 41.999], + [-112.164, 42.0017] + ] + ] + }, + "properties": { + "id": "cbcd9de9-cf65-4c1e-9d2f-c693db0974b5", + "code": "ID", + "name": "Idaho", + "abbreviation": "S-ID", + "parent_id": "1f30181c-ab24-4bfc-989c-162d4b17a83e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.1702, 37.0105], + [-89.1815, 37.041], + [-89.1771, 37.059], + [-89.0797, 37.1717], + [-89.0071, 37.2232], + [-88.9595, 37.23], + [-88.7954, 37.1819], + [-88.6965, 37.1397], + [-88.676688934, 37.133297951], + [-88.633978755, 37.119495934], + [-88.618958431, 37.114642037], + [-88.617254334, 37.113873523], + [-88.5528, 37.0713], + [-88.4659, 37.0771], + [-88.425, 37.1543], + [-88.5133, 37.279], + [-88.4742, 37.3871], + [-88.444, 37.4156], + [-88.4065, 37.4263], + [-88.3714, 37.4074], + [-88.2593, 37.4575], + [-88.085, 37.4776], + [-88.0736, 37.5317], + [-88.1335, 37.5836], + [-88.1567, 37.6484], + [-88.1478, 37.6776], + [-88.0531, 37.7445], + [-88.027, 37.799], + [-88.0612, 37.8053], + [-88.0763, 37.8106], + [-88.0836, 37.8251], + [-88.0252, 37.8317], + [-88.0251, 37.8417], + [-88.0499, 37.8531], + [-88.0897, 37.8995], + [-88.0129, 37.8973], + [-88.0344, 38.0341], + [-87.9613, 38.0716], + [-87.9591, 38.0958], + [-87.915, 38.1603], + [-87.9828, 38.2154], + [-87.9344, 38.2952], + [-87.8279, 38.3375], + [-87.7445, 38.4109], + [-87.7347, 38.4536], + [-87.6475, 38.5175], + [-87.6695, 38.5458], + [-87.5994, 38.6641], + [-87.5369, 38.683], + [-87.4971, 38.7431], + [-87.4992, 38.7884], + [-87.5505, 38.8595], + [-87.5132, 38.9554], + [-87.5774, 38.989], + [-87.5713, 39.0589], + [-87.6538, 39.1426], + [-87.5748, 39.2162], + [-87.616, 39.3044], + [-87.5304, 39.3516], + [-87.5327, 40.1309], + [-87.5254, 40.5505], + [-87.527, 41.4086], + [-87.524, 41.7603], + [-87.2071, 41.7607], + [-87.069, 42.3391], + [-87.0181, 42.4947], + [-88.6288, 42.4985], + [-88.7719, 42.4957], + [-89.6811, 42.5074], + [-90.4244, 42.5079], + [-90.641120407, 42.509297552], + [-90.6415, 42.5093], + [-90.6513, 42.4981], + [-90.6533, 42.48], + [-90.6157, 42.4555], + [-90.4762, 42.3823], + [-90.4162, 42.3282], + [-90.4265, 42.2895], + [-90.4216, 42.267], + [-90.3849, 42.2225], + [-90.3641, 42.2091], + [-90.2081, 42.1528], + [-90.1984, 42.1301], + [-90.1638, 42.1185], + [-90.1671, 42.0726], + [-90.1606, 42.0418], + [-90.1482, 41.9902], + [-90.1525, 41.9127], + [-90.1904, 41.8046], + [-90.286, 41.765], + [-90.3165, 41.7124], + [-90.3184, 41.6944], + [-90.3444, 41.6502], + [-90.3427, 41.5948], + [-90.3932, 41.5759], + [-90.4524, 41.5308], + [-90.4934, 41.5182], + [-90.5726, 41.5173], + [-90.6077, 41.4958], + [-90.6613, 41.4598], + [-90.8494, 41.4539], + [-90.9263, 41.424], + [-91.0455, 41.4164], + [-91.0742, 41.3107], + [-91.1142, 41.2443], + [-91.0514, 41.1684], + [-90.9981, 41.1626], + [-90.9489, 41.0718], + [-90.9449, 41.0481], + [-90.9558, 40.9699], + [-90.9645, 40.925], + [-91.0043, 40.9049], + [-91.0894, 40.8235], + [-91.113, 40.6883], + [-91.1373, 40.661], + [-91.2032, 40.6369], + [-91.2591, 40.6358], + [-91.3384, 40.611], + [-91.4057, 40.567], + [-91.4131, 40.5471], + [-91.391, 40.5345], + [-91.3705, 40.5151], + [-91.3654, 40.3993], + [-91.4204, 40.378], + [-91.4658, 40.3334], + [-91.5049, 40.2375], + [-91.5115, 40.1292], + [-91.4929, 40.0309], + [-91.4271, 39.939], + [-91.4196, 39.9177], + [-91.4409, 39.8965], + [-91.4473, 39.8743], + [-91.4292, 39.8392], + [-91.3686, 39.8015], + [-91.3616, 39.783], + [-91.3662, 39.7285], + [-91.1801, 39.5992], + [-91.1636, 39.5573], + [-91.0944, 39.5323], + [-91.0578, 39.468], + [-90.7971, 39.3118], + [-90.725, 39.2441], + [-90.6825, 39.1095], + [-90.7131, 39.0513], + [-90.6346, 38.9037], + [-90.5983, 38.8768], + [-90.5062, 38.9053], + [-90.4697, 38.9614], + [-90.3828, 38.9595], + [-90.2554, 38.9224], + [-90.1555, 38.8722], + [-90.1141, 38.8508], + [-90.116, 38.8105], + [-90.204, 38.736], + [-90.1814, 38.6618], + [-90.1984, 38.595], + [-90.2595, 38.533], + [-90.2984, 38.4254], + [-90.3565, 38.367], + [-90.3724, 38.3224], + [-90.373, 38.278], + [-90.3498, 38.2141], + [-90.2493, 38.1239], + [-90.1824, 38.0773], + [-90.0109, 37.9714], + [-89.995, 37.9619], + [-89.94, 37.9703], + [-89.9736, 37.917], + [-89.9177, 37.8702], + [-89.8418, 37.9044], + [-89.7961, 37.8589], + [-89.7397, 37.8467], + [-89.6626, 37.7892], + [-89.6707, 37.7575], + [-89.5152, 37.6892], + [-89.5204, 37.5815], + [-89.4926, 37.4934], + [-89.4355, 37.4296], + [-89.426, 37.3655], + [-89.5098, 37.3131], + [-89.518, 37.2767], + [-89.5095, 37.2636], + [-89.4654, 37.2526], + [-89.4579, 37.1869], + [-89.3772, 37.0912], + [-89.3865, 37.0501], + [-89.2909, 36.9895], + [-89.2598, 37.0031], + [-89.3063, 37.0643], + [-89.2504, 37.0633], + [-89.1953, 36.983], + [-89.1339, 36.9839], + [-89.1702, 37.0105] + ] + ] + }, + "properties": { + "id": "8566cfa8-4bf0-4abb-95e8-0164457a8dfc", + "code": "IL", + "name": "Illinois", + "abbreviation": "S-IL", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-88.027, 37.799], + [-87.9627, 37.7743], + [-87.9464, 37.7782], + [-87.9317, 37.7969], + [-87.9053, 37.8199], + [-87.9364, 37.892], + [-87.9051, 37.9243], + [-87.898, 37.9279], + [-87.8824, 37.9261], + [-87.8608, 37.9043], + [-87.7909, 37.8763], + [-87.6679, 37.8934], + [-87.6642, 37.8265], + [-87.6379, 37.8254], + [-87.5934, 37.8902], + [-87.6279, 37.9235], + [-87.6011, 37.9708], + [-87.5114, 37.9067], + [-87.4732, 37.9279], + [-87.4166, 37.9442], + [-87.3434, 37.9128], + [-87.2414, 37.8575], + [-87.1673, 37.8387], + [-87.107, 37.7833], + [-87.0552, 37.8288], + [-87.046, 37.8901], + [-86.986, 37.929], + [-86.9126, 37.9409], + [-86.8599, 37.9849], + [-86.7963, 37.9874], + [-86.7311, 37.8927], + [-86.6673, 37.9134], + [-86.6673, 37.8555], + [-86.6015, 37.8639], + [-86.5816, 37.921], + [-86.5285, 37.9178], + [-86.5219, 38.0289], + [-86.4666, 38.0457], + [-86.3988, 38.1049], + [-86.3198, 38.1465], + [-86.2729, 38.1341], + [-86.2603, 38.0514], + [-86.1682, 38.0093], + [-86.0928, 38.0077], + [-86.0464, 37.9586], + [-86.0145, 37.9958], + [-85.9398, 38.0089], + [-85.9028, 38.0926], + [-85.9044, 38.1676], + [-85.8328, 38.2662], + [-85.7829, 38.2887], + [-85.7432, 38.2689], + [-85.6498, 38.3307], + [-85.5981, 38.4442], + [-85.5047, 38.4645], + [-85.4235, 38.5313], + [-85.437, 38.6563], + [-85.4168, 38.7357], + [-85.2505, 38.7322], + [-85.1747, 38.6879], + [-84.9923, 38.7777], + [-84.883, 38.7931], + [-84.8288, 38.7837], + [-84.83, 38.8284], + [-84.7877, 38.8823], + [-84.8738, 38.91], + [-84.8374, 38.9887], + [-84.8931, 39.054], + [-84.8884, 39.065], + [-84.8342, 39.0983], + [-84.8191, 39.1069], + [-84.8131, 40.006], + [-84.8079, 40.1741], + [-84.8023, 40.7281], + [-84.8067, 41.6958], + [-84.8076, 41.7605], + [-85.932, 41.7623], + [-86.4526, 41.7599], + [-87.2071, 41.7607], + [-87.524, 41.7603], + [-87.527, 41.4086], + [-87.5254, 40.5505], + [-87.5327, 40.1309], + [-87.5304, 39.3516], + [-87.616, 39.3044], + [-87.5748, 39.2162], + [-87.6538, 39.1426], + [-87.5713, 39.0589], + [-87.5774, 38.989], + [-87.5132, 38.9554], + [-87.5505, 38.8595], + [-87.4992, 38.7884], + [-87.4971, 38.7431], + [-87.5369, 38.683], + [-87.5994, 38.6641], + [-87.6695, 38.5458], + [-87.6475, 38.5175], + [-87.7347, 38.4536], + [-87.7445, 38.4109], + [-87.8279, 38.3375], + [-87.9344, 38.2952], + [-87.9828, 38.2154], + [-87.915, 38.1603], + [-87.9591, 38.0958], + [-87.9613, 38.0716], + [-88.0344, 38.0341], + [-88.0129, 37.8973], + [-88.0897, 37.8995], + [-88.0499, 37.8531], + [-88.0251, 37.8417], + [-88.0252, 37.8317], + [-88.0836, 37.8251], + [-88.0763, 37.8106], + [-88.0612, 37.8053], + [-88.027, 37.799] + ] + ] + }, + "properties": { + "id": "eeb2648b-7215-430d-8490-91b69ce67866", + "code": "IN", + "name": "Indiana", + "abbreviation": "S-IN", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90.6415, 42.5093], + [-90.6363, 42.5146], + [-90.6347, 42.5241], + [-90.6635, 42.5587], + [-90.6858, 42.5984], + [-90.706, 42.6356], + [-90.9542, 42.6872], + [-91.0517, 42.7397], + [-91.0999, 42.875], + [-91.1444, 42.9104], + [-91.1765, 43.0915], + [-91.1755, 43.1374], + [-91.0621, 43.256], + [-91.1004, 43.3118], + [-91.2035, 43.3527], + [-91.2227, 43.4769], + [-91.22, 43.5023], + [-93.2844, 43.5032], + [-93.6782, 43.5047], + [-95.113241361, 43.503614375], + [-96.277333059, 43.502733726], + [-96.4541, 43.5026], + [-96.5974, 43.5021], + [-96.5965, 43.4422], + [-96.5199, 43.3916], + [-96.5585, 43.2257], + [-96.483, 43.2257], + [-96.4378, 43.1173], + [-96.4617, 43.0655], + [-96.5167, 43.046], + [-96.4985, 42.9596], + [-96.5372, 42.9187], + [-96.552, 42.8373], + [-96.6326, 42.7681], + [-96.628, 42.7077], + [-96.5167, 42.6312], + [-96.4792, 42.557], + [-96.4754, 42.4962], + [-96.45, 42.4895], + [-96.4192, 42.4916], + [-96.3915, 42.484], + [-96.4186, 42.352], + [-96.3715, 42.3142], + [-96.3224, 42.2324], + [-96.3576, 42.2154], + [-96.3403, 42.1595], + [-96.2766, 42.1221], + [-96.2698, 42.0429], + [-96.1335, 41.97], + [-96.1579, 41.9098], + [-96.0679, 41.7857], + [-96.1012, 41.7445], + [-96.0726, 41.7033], + [-96.1199, 41.6837], + [-96.0955, 41.5449], + [-95.9873, 41.5152], + [-96.0138, 41.4801], + [-95.9481, 41.4651], + [-95.9242, 41.4609], + [-95.9277, 41.4097], + [-95.9369, 41.3904], + [-95.9504, 41.337], + [-95.9106, 41.3205], + [-95.8725, 41.2953], + [-95.8782, 41.2843], + [-95.9093, 41.2738], + [-95.9053, 41.3], + [-95.9187, 41.3018], + [-95.9113, 41.1857], + [-95.8603, 41.0869], + [-95.8693, 41.0087], + [-95.8276, 40.9735], + [-95.8106, 40.9002], + [-95.843, 40.8697], + [-95.8441, 40.8125], + [-95.8371, 40.7762], + [-95.8825, 40.7173], + [-95.7952, 40.6624], + [-95.7651, 40.5856], + [-94.7673, 40.5726], + [-94.2285, 40.5706], + [-93.6866, 40.5783], + [-93.2896, 40.5804], + [-92.0611, 40.6033], + [-91.7284, 40.614], + [-91.6833, 40.5553], + [-91.5661, 40.462], + [-91.5263, 40.4146], + [-91.4938, 40.3993], + [-91.4673, 40.3855], + [-91.4633, 40.3769], + [-91.4506, 40.3767], + [-91.4204, 40.378], + [-91.3654, 40.3993], + [-91.3705, 40.5151], + [-91.391, 40.5345], + [-91.4131, 40.5471], + [-91.4057, 40.567], + [-91.3384, 40.611], + [-91.2591, 40.6358], + [-91.2032, 40.6369], + [-91.1373, 40.661], + [-91.113, 40.6883], + [-91.0894, 40.8235], + [-91.0043, 40.9049], + [-90.9645, 40.925], + [-90.9558, 40.9699], + [-90.9449, 41.0481], + [-90.9489, 41.0718], + [-90.9981, 41.1626], + [-91.0514, 41.1684], + [-91.1142, 41.2443], + [-91.0742, 41.3107], + [-91.0455, 41.4164], + [-90.9263, 41.424], + [-90.8494, 41.4539], + [-90.6613, 41.4598], + [-90.6077, 41.4958], + [-90.5726, 41.5173], + [-90.4934, 41.5182], + [-90.4524, 41.5308], + [-90.3932, 41.5759], + [-90.3427, 41.5948], + [-90.3444, 41.6502], + [-90.3184, 41.6944], + [-90.3165, 41.7124], + [-90.286, 41.765], + [-90.1904, 41.8046], + [-90.1525, 41.9127], + [-90.1482, 41.9902], + [-90.1606, 42.0418], + [-90.1671, 42.0726], + [-90.1638, 42.1185], + [-90.1984, 42.1301], + [-90.2081, 42.1528], + [-90.3641, 42.2091], + [-90.3849, 42.2225], + [-90.4216, 42.267], + [-90.4265, 42.2895], + [-90.4162, 42.3282], + [-90.4762, 42.3823], + [-90.6157, 42.4555], + [-90.6533, 42.48], + [-90.6513, 42.4981], + [-90.6415, 42.5093] + ] + ] + }, + "properties": { + "id": "c4face4f-9755-45b8-8dce-7d916270ad48", + "code": "IA", + "name": "Iowa", + "abbreviation": "S-IA", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-102.0423, 36.9922], + [-102.041933879, 36.9922022], + [-100.9441, 36.9988], + [-100.0902, 36.9983], + [-99.0005, 37.0008], + [-97.1468, 36.9994], + [-95.5236, 37.0009], + [-95.0336, 36.9986], + [-94.619, 37], + [-94.6134, 38.3892], + [-94.6083, 39.1204], + [-94.5984, 39.1579], + [-94.6628, 39.1779], + [-94.7486, 39.1723], + [-94.8877, 39.2907], + [-94.9307, 39.3849], + [-94.9913, 39.4479], + [-95.0346, 39.4617], + [-95.1046, 39.5359], + [-95.1037, 39.5812], + [-95.0575, 39.5836], + [-95.0495, 39.6391], + [-94.9697, 39.695], + [-94.9519, 39.7473], + [-94.8931, 39.7257], + [-94.8673, 39.7678], + [-94.9352, 39.7834], + [-94.9273, 39.79], + [-94.8907, 39.7952], + [-94.8786, 39.8112], + [-94.8809, 39.8253], + [-94.9412, 39.8602], + [-94.9286, 39.8839], + [-94.9364, 39.895], + [-95.0111, 39.9012], + [-95.0416, 39.8667], + [-95.1277, 39.8757], + [-95.2359, 39.944], + [-95.253, 39.9519], + [-95.308, 39.9999], + [-97.3687, 40.0035], + [-98.5045, 40.0036], + [-98.9996, 40.0021], + [-102.048383939, 40.003899931], + [-102.042300011, 36.992205645], + [-102.0423, 36.9922] + ] + ] + }, + "properties": { + "id": "693b24ae-e833-4e9d-b3b7-bb5dc1124432", + "code": "KS", + "name": "Kansas", + "abbreviation": "S-KS", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-89.1339, 36.9839], + [-89.1006, 36.9541], + [-89.1164, 36.9168], + [-89.1311, 36.8588], + [-89.1785, 36.8388], + [-89.1612, 36.7912], + [-89.2016, 36.7251], + [-89.166, 36.6636], + [-89.2289, 36.5677], + [-89.2749, 36.5717], + [-89.3248, 36.6268], + [-89.3562, 36.6324], + [-89.3777, 36.6179], + [-89.4196, 36.498], + [-89.2992, 36.5078], + [-88.1793, 36.5], + [-88.0571, 36.4967], + [-88.0326, 36.5367], + [-88.0707, 36.6792], + [-87.8505, 36.6651], + [-87.8534, 36.6353], + [-87.0605, 36.6444], + [-86.5913, 36.6544], + [-86.3401, 36.65], + [-85.8526, 36.6245], + [-85.5074, 36.6151], + [-85.2626, 36.6283], + [-84.83, 36.6071], + [-84.5136, 36.5989], + [-84.0301, 36.5931], + [-83.8297, 36.5855], + [-83.6902, 36.5838], + [-83.6843, 36.5933], + [-83.6748, 36.6012], + [-83.6632, 36.612], + [-83.4979, 36.6711], + [-83.4221, 36.67], + [-83.3354, 36.7041], + [-83.1374, 36.7438], + [-83.1331, 36.7845], + [-83.0676, 36.8541], + [-82.9615, 36.861], + [-82.8698, 36.9005], + [-82.8653, 36.9786], + [-82.7198, 37.0484], + [-82.7206, 37.1205], + [-82.555, 37.2033], + [-82.3523, 37.268], + [-81.9673, 37.5372], + [-81.9642, 37.544], + [-81.9908, 37.5404], + [-82.1293, 37.5525], + [-82.1352, 37.5965], + [-82.2231, 37.6542], + [-82.2901, 37.6708], + [-82.3119, 37.765], + [-82.4178, 37.8481], + [-82.4201, 37.8853], + [-82.4874, 37.9182], + [-82.4701, 37.9863], + [-82.5085, 38.0021], + [-82.5495, 38.0718], + [-82.637, 38.1407], + [-82.578, 38.2508], + [-82.5928, 38.4186], + [-82.6115, 38.4718], + [-82.6521, 38.4912], + [-82.6853, 38.5305], + [-82.7243, 38.5581], + [-82.7806, 38.559], + [-82.823, 38.5743], + [-82.8556, 38.6128], + [-82.8699, 38.735], + [-82.884, 38.7523], + [-82.9254, 38.7474], + [-82.9665, 38.728], + [-83.0137, 38.7296], + [-83.1109, 38.6708], + [-83.1519, 38.6206], + [-83.2468, 38.6278], + [-83.287, 38.5998], + [-83.33, 38.6386], + [-83.5393, 38.7011], + [-83.6217, 38.6811], + [-83.6573, 38.6263], + [-83.7547, 38.6494], + [-83.8686, 38.7611], + [-83.9597, 38.7873], + [-84.0775, 38.7728], + [-84.1762, 38.7966], + [-84.2185, 38.8097], + [-84.2295, 38.8235], + [-84.2383, 38.8947], + [-84.3284, 39.0285], + [-84.4076, 39.046], + [-84.4403, 39.1096], + [-84.4738, 39.1184], + [-84.6237, 39.0736], + [-84.7596, 39.1414], + [-84.803, 39.11], + [-84.8191, 39.1069], + [-84.8342, 39.0983], + [-84.8884, 39.065], + [-84.8931, 39.054], + [-84.8374, 38.9887], + [-84.8738, 38.91], + [-84.7877, 38.8823], + [-84.83, 38.8284], + [-84.8288, 38.7837], + [-84.883, 38.7931], + [-84.9923, 38.7777], + [-85.1747, 38.6879], + [-85.2505, 38.7322], + [-85.4168, 38.7357], + [-85.437, 38.6563], + [-85.4235, 38.5313], + [-85.5047, 38.4645], + [-85.5981, 38.4442], + [-85.6498, 38.3307], + [-85.7432, 38.2689], + [-85.7829, 38.2887], + [-85.8328, 38.2662], + [-85.9044, 38.1676], + [-85.9028, 38.0926], + [-85.9398, 38.0089], + [-86.0145, 37.9958], + [-86.0464, 37.9586], + [-86.0928, 38.0077], + [-86.1682, 38.0093], + [-86.2603, 38.0514], + [-86.2729, 38.1341], + [-86.3198, 38.1465], + [-86.3988, 38.1049], + [-86.4666, 38.0457], + [-86.5219, 38.0289], + [-86.5285, 37.9178], + [-86.5816, 37.921], + [-86.6015, 37.8639], + [-86.6673, 37.8555], + [-86.6673, 37.9134], + [-86.7311, 37.8927], + [-86.7963, 37.9874], + [-86.8599, 37.9849], + [-86.9126, 37.9409], + [-86.986, 37.929], + [-87.046, 37.8901], + [-87.0552, 37.8288], + [-87.107, 37.7833], + [-87.1673, 37.8387], + [-87.2414, 37.8575], + [-87.3434, 37.9128], + [-87.4166, 37.9442], + [-87.4732, 37.9279], + [-87.5114, 37.9067], + [-87.6011, 37.9708], + [-87.6279, 37.9235], + [-87.5934, 37.8902], + [-87.6379, 37.8254], + [-87.6642, 37.8265], + [-87.6679, 37.8934], + [-87.7909, 37.8763], + [-87.8608, 37.9043], + [-87.8824, 37.9261], + [-87.898, 37.9279], + [-87.9051, 37.9243], + [-87.9364, 37.892], + [-87.9053, 37.8199], + [-87.9317, 37.7969], + [-87.9464, 37.7782], + [-87.9627, 37.7743], + [-88.027, 37.799], + [-88.0531, 37.7445], + [-88.1478, 37.6776], + [-88.1567, 37.6484], + [-88.1335, 37.5836], + [-88.0736, 37.5317], + [-88.085, 37.4776], + [-88.2593, 37.4575], + [-88.3714, 37.4074], + [-88.4065, 37.4263], + [-88.444, 37.4156], + [-88.4742, 37.3871], + [-88.5133, 37.279], + [-88.425, 37.1543], + [-88.4659, 37.0771], + [-88.5528, 37.0713], + [-88.617254334, 37.113873523], + [-88.618958431, 37.114642037], + [-88.633978755, 37.119495934], + [-88.676688934, 37.133297951], + [-88.6965, 37.1397], + [-88.7954, 37.1819], + [-88.9595, 37.23], + [-89.0071, 37.2232], + [-89.0797, 37.1717], + [-89.1771, 37.059], + [-89.1815, 37.041], + [-89.1702, 37.0105], + [-89.1339, 36.9839] + ] + ], + [ + [ + [-89.5624, 36.5228], + [-89.540418139, 36.500290575], + [-89.4873, 36.4999], + [-89.4989, 36.578], + [-89.5352, 36.5814], + [-89.5482, 36.5788], + [-89.5624, 36.5228] + ] + ] + ] + }, + "properties": { + "id": "526be3a0-759a-48c8-9d45-d04ef48eb856", + "code": "KY", + "name": "Kentucky", + "abbreviation": "S-KY", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-94.0456, 33.0206], + [-94.0419, 31.9939], + [-93.9015, 31.8762], + [-93.837, 31.7503], + [-93.7952, 31.7023], + [-93.8382, 31.6021], + [-93.7841, 31.5287], + [-93.7178, 31.5026], + [-93.7494, 31.4686], + [-93.6946, 31.4405], + [-93.665, 31.3657], + [-93.6895, 31.3066], + [-93.6155, 31.2566], + [-93.6012, 31.1784], + [-93.5339, 31.1846], + [-93.5642, 31.0944], + [-93.5106, 31.0281], + [-93.569, 31.0127], + [-93.5592, 30.9146], + [-93.5956, 30.7642], + [-93.6309, 30.6797], + [-93.6844, 30.6347], + [-93.739, 30.5415], + [-93.7057, 30.5117], + [-93.7039, 30.4299], + [-93.7573, 30.3899], + [-93.764, 30.3436], + [-93.7096, 30.2893], + [-93.7204, 30.209], + [-93.6964, 30.1518], + [-93.7326, 30.0836], + [-93.7036, 30.0661], + [-93.7901, 29.9873], + [-93.8345, 29.888], + [-93.9263, 29.8165], + [-93.8906, 29.7456], + [-93.8619, 29.7241], + [-93.8403, 29.6914], + [-93.7455, 29.7341], + [-93.4987, 29.7686], + [-93.3467, 29.7617], + [-93.276, 29.7763], + [-93.1717, 29.7688], + [-92.9242, 29.6986], + [-92.7361, 29.6181], + [-92.6236, 29.585], + [-92.3453, 29.5342], + [-92.2539, 29.5397], + [-92.1073, 29.6127], + [-92.1366, 29.6672], + [-92.2157, 29.7485], + [-92.1388, 29.7843], + [-92.1108, 29.7422], + [-92.0381, 29.7811], + [-91.8856, 29.8358], + [-91.8255, 29.8239], + [-91.8775, 29.7475], + [-91.8575, 29.7053], + [-91.7716, 29.7464], + [-91.6333, 29.7431], + [-91.6245, 29.6285], + [-91.5522, 29.6335], + [-91.5333, 29.5278], + [-91.4316, 29.5416], + [-91.4142, 29.4967], + [-91.2658, 29.4786], + [-91.2197, 29.4367], + [-91.1994, 29.375], + [-91.1336, 29.3414], + [-91.1361, 29.2331], + [-91.0625, 29.1833], + [-90.9713, 29.1998], + [-90.8783, 29.1364], + [-90.8079, 29.187], + [-90.7853, 29.1325], + [-90.7261, 29.1461], + [-90.6936, 29.2211], + [-90.6261, 29.2592], + [-90.585, 29.3186], + [-90.4792, 29.2911], + [-90.4301, 29.348], + [-90.3776, 29.2914], + [-90.3394, 29.3264], + [-90.2207, 29.0865], + [-90.0839, 29.1672], + [-90.1283, 29.2953], + [-90.1303, 29.3739], + [-90.0503, 29.3172], + [-90.03, 29.3811], + [-90.08, 29.4481], + [-90.1822, 29.4664], + [-90.2292, 29.5075], + [-90.2094, 29.5631], + [-90.1672, 29.5792], + [-89.9797, 29.4578], + [-89.9233, 29.4975], + [-89.8364, 29.475], + [-89.8369, 29.4186], + [-89.7761, 29.4017], + [-89.6916, 29.467], + [-89.6572, 29.4056], + [-89.5061, 29.3306], + [-89.4764, 29.295], + [-89.4878, 29.2318], + [-89.4475, 29.1819], + [-89.4225, 29.2106], + [-89.2997, 29.2197], + [-89.2536, 29.1014], + [-89.2117, 29.0406], + [-89.1639, 29.0286], + [-89.1125, 29.0825], + [-89.0975, 29.1881], + [-89.1544, 29.2292], + [-89.1389, 29.2858], + [-89.1744, 29.3214], + [-89.2442, 29.3117], + [-89.2664, 29.2517], + [-89.3217, 29.3007], + [-89.2542, 29.3311], + [-89.2922, 29.3669], + [-89.3475, 29.3309], + [-89.4703, 29.4014], + [-89.5617, 29.3933], + [-89.5364, 29.4458], + [-89.5922, 29.4867], + [-89.6308, 29.4833], + [-89.7622, 29.6292], + [-89.6928, 29.6133], + [-89.6219, 29.6597], + [-89.5569, 29.6608], + [-89.6494, 29.7131], + [-89.6408, 29.7675], + [-89.495, 29.7278], + [-89.3936, 29.7906], + [-89.445, 29.8864], + [-89.4731, 29.9722], + [-89.4414, 30.0397], + [-89.4878, 30.0414], + [-89.5564, 30], + [-89.5908, 29.8853], + [-89.6544, 29.8611], + [-89.7833, 29.9342], + [-89.8392, 29.9431], + [-89.86, 30.0011], + [-89.8192, 30.0447], + [-89.7269, 30.0636], + [-89.6228, 30.1569], + [-89.5247, 30.1847], + [-89.5284, 30.1918], + [-89.5431, 30.1944], + [-89.5948, 30.2093], + [-89.6158, 30.2281], + [-89.6348, 30.3465], + [-89.6842, 30.41], + [-89.6897, 30.459], + [-89.772, 30.5189], + [-89.8422, 30.6695], + [-89.8303, 30.7824], + [-89.7848, 30.8181], + [-89.7344, 31.0034], + [-90.8124, 30.9992], + [-91.6397, 30.9998], + [-91.562, 31.0561], + [-91.6256, 31.122], + [-91.6023, 31.2036], + [-91.6463, 31.2661], + [-91.5536, 31.2653], + [-91.5138, 31.3181], + [-91.5709, 31.3776], + [-91.5479, 31.4319], + [-91.5167, 31.3712], + [-91.4712, 31.4045], + [-91.5125, 31.447], + [-91.513, 31.5314], + [-91.4445, 31.5464], + [-91.4211, 31.5971], + [-91.4861, 31.586], + [-91.5081, 31.6413], + [-91.4388, 31.6131], + [-91.3987, 31.6323], + [-91.397, 31.7167], + [-91.3393, 31.8415], + [-91.2668, 31.8619], + [-91.1819, 31.9208], + [-91.164, 31.9812], + [-91.0966, 31.9919], + [-91.091, 32.0379], + [-91.1248, 32.0769], + [-91.0431, 32.097], + [-91.0021, 32.1617], + [-91.0583, 32.1807], + [-91.053, 32.1237], + [-91.1696, 32.1422], + [-91.1675, 32.1918], + [-91.0376, 32.2391], + [-90.9823, 32.2125], + [-90.9818, 32.2868], + [-90.9051, 32.317], + [-91.0015, 32.3566], + [-90.9663, 32.4261], + [-90.9844, 32.4492], + [-91.0018, 32.4499], + [-91.0751, 32.4483], + [-91.0981, 32.4636], + [-91.1091, 32.5324], + [-91.0786, 32.5403], + [-91.0197, 32.4848], + [-90.9952, 32.4846], + [-90.9876, 32.4932], + [-90.9956, 32.5096], + [-91.0749, 32.5627], + [-91.0052, 32.6304], + [-91.0162, 32.642], + [-91.0298, 32.6433], + [-91.0555, 32.6075], + [-91.1333, 32.5935], + [-91.1543, 32.6396], + [-91.0542, 32.7136], + [-91.155, 32.7459], + [-91.1455, 32.8427], + [-91.064, 32.9052], + [-91.0916, 32.9778], + [-91.1366, 32.956], + [-91.1323, 32.9169], + [-91.1388, 32.9095], + [-91.1554, 32.9014], + [-91.1906, 32.9049], + [-91.1944, 32.9736], + [-91.1631, 33.0045], + [-91.9071, 33.008], + [-91.942405155, 33.008306905], + [-92.8619, 33.0163], + [-94.0456, 33.0206] + ] + ], + [ + [ + [-91.8983, 29.6336], + [-91.9825, 29.6147], + [-92.0263, 29.5674], + [-91.847, 29.4799], + [-91.7672, 29.4894], + [-91.7583, 29.5578], + [-91.7844, 29.5944], + [-91.8983, 29.6336] + ] + ], + [ + [ + [-91.2389, 29.3522], + [-91.3342, 29.2995], + [-91.2792, 29.2494], + [-91.1367, 29.2172], + [-91.1364, 29.25], + [-91.2389, 29.3522] + ] + ], + [ + [ + [-89.7019, 29.3817], + [-89.8139, 29.3136], + [-89.6836, 29.2938], + [-89.6394, 29.3483], + [-89.7064, 29.3411], + [-89.7019, 29.3817] + ] + ], + [ + [ + [-89.3781, 29.9089], + [-89.4167, 29.8689], + [-89.3578, 29.8511], + [-89.3781, 29.9089] + ] + ] + ] + }, + "properties": { + "id": "a6ccb18b-8b5f-40ee-96a5-c87c51317700", + "code": "LA", + "name": "Louisiana", + "abbreviation": "S-LA", + "parent_id": "d6157b38-3f86-49ef-8acd-93287d33c0d0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-70.823818314, 43.238425014], + [-70.822675342, 43.237669178], + [-70.816033333, 43.229366667], + [-70.812230579, 43.223103306], + [-70.812136585, 43.220941463], + [-70.8121, 43.2201], + [-70.8194, 43.2022], + [-70.8166, 43.1958], + [-70.8256, 43.1886], + [-70.8322, 43.1458], + [-70.8175, 43.1236], + [-70.7367, 43.0744], + [-70.6644, 43.0764], + [-70.5753, 43.2219], + [-70.5889, 43.2631], + [-70.5153, 43.3454], + [-70.451, 43.3468], + [-70.3639, 43.4386], + [-70.3856, 43.4953], + [-70.3419, 43.54], + [-70.1972, 43.565], + [-70.2514, 43.6781], + [-70.1647, 43.7725], + [-69.9844, 43.8675], + [-69.9537, 43.849], + [-69.9778, 43.7867], + [-69.8886, 43.8834], + [-69.8454, 43.8048], + [-69.8761, 43.7936], + [-69.8517, 43.7031], + [-69.8031, 43.7442], + [-69.8092, 43.9256], + [-69.737, 43.9021], + [-69.6765, 43.9961], + [-69.6292, 44.017], + [-69.6643, 43.9651], + [-69.6606, 43.8836], + [-69.6307, 43.8373], + [-69.5589, 43.8922], + [-69.5022, 43.8389], + [-69.4196, 43.9798], + [-69.3464, 44.056], + [-69.3708, 43.9772], + [-69.3028, 43.978], + [-69.2569, 43.9228], + [-69.2135, 43.9361], + [-69.1649, 44.0027], + [-69.0732, 44.0462], + [-69.1069, 44.0907], + [-69.0605, 44.2071], + [-68.9539, 44.3239], + [-68.9475, 44.3536], + [-68.9939, 44.4214], + [-68.9214, 44.4572], + [-68.8603, 44.4461], + [-68.7783, 44.4922], + [-68.8161, 44.4281], + [-68.8278, 44.3119], + [-68.7594, 44.3317], + [-68.6056, 44.2758], + [-68.5228, 44.2283], + [-68.5636, 44.3081], + [-68.5678, 44.3856], + [-68.4975, 44.4167], + [-68.4675, 44.4936], + [-68.4375, 44.4825], + [-68.4281, 44.3964], + [-68.3225, 44.4628], + [-68.2833, 44.4517], + [-68.2689, 44.5043], + [-68.23, 44.4631], + [-68.2117, 44.5197], + [-68.1711, 44.4697], + [-68.12, 44.4575], + [-68.1144, 44.4075], + [-68.0456, 44.3384], + [-68.0126, 44.4036], + [-67.96, 44.3978], + [-67.9928, 44.46], + [-67.9022, 44.3956], + [-67.8542, 44.4789], + [-67.8525, 44.5589], + [-67.7992, 44.5697], + [-67.7807, 44.5222], + [-67.7533, 44.6017], + [-67.7428, 44.4967], + [-67.6434, 44.5659], + [-67.6355, 44.5285], + [-67.5715, 44.5295], + [-67.5514, 44.6553], + [-67.459, 44.5959], + [-67.396, 44.6021], + [-67.3619, 44.6351], + [-67.39, 44.6957], + [-67.3061, 44.7087], + [-67.3128, 44.6597], + [-67.189, 44.6442], + [-67.0735, 44.7409], + [-66.979, 44.8056], + [-67.0183, 44.8861], + [-67.0772, 44.8767], + [-67.1516, 44.8217], + [-67.1496, 44.8623], + [-67.2044, 44.9067], + [-67.0884, 44.918], + [-67.0319, 44.9389], + [-67.1633, 45.1583], + [-67.2808, 45.1917], + [-67.3022, 45.1451], + [-67.3816, 45.1521], + [-67.4663, 45.2477], + [-67.4776, 45.2873], + [-67.4215, 45.3763], + [-67.474, 45.4237], + [-67.4876, 45.4897], + [-67.4516, 45.5111], + [-67.4257, 45.5785], + [-67.4566, 45.6053], + [-67.5302, 45.5983], + [-67.6736, 45.6278], + [-67.7091, 45.6793], + [-67.8029, 45.696], + [-67.7825, 45.7309], + [-67.8034, 45.7982], + [-67.7651, 45.8207], + [-67.8027, 45.8737], + [-67.7549, 45.9149], + [-67.781, 45.9457], + [-67.7836, 47.0632], + [-67.8893, 47.1106], + [-67.958, 47.2003], + [-68.2438, 47.3526], + [-68.3698, 47.3517], + [-68.3805, 47.2874], + [-68.4752, 47.297], + [-68.5804, 47.2869], + [-68.6124, 47.246], + [-68.6893, 47.2428], + [-68.8158, 47.2119], + [-68.8975, 47.1766], + [-69.0405, 47.2439], + [-69.0547, 47.3146], + [-69.0443, 47.4028], + [-69.1786, 47.4569], + [-69.2218, 47.4576], + [-69.392, 47.2984], + [-69.9971, 46.6958], + [-70.0572, 46.4147], + [-70.1953, 46.3434], + [-70.292, 46.1909], + [-70.242, 46.1502], + [-70.283, 46.0999], + [-70.3142, 46.0208], + [-70.3144, 45.9665], + [-70.2602, 45.9644], + [-70.2663, 45.8849], + [-70.3455, 45.8508], + [-70.4162, 45.7956], + [-70.3902, 45.7328], + [-70.5613, 45.6627], + [-70.6459, 45.6041], + [-70.7184, 45.5127], + [-70.626, 45.4018], + [-70.6572, 45.3772], + [-70.7545, 45.4277], + [-70.8233, 45.403], + [-70.8066, 45.3211], + [-70.8445, 45.2447], + [-70.8929, 45.2439], + [-70.9234, 45.3181], + [-70.9566, 45.3426], + [-71.0246, 45.3174], + [-71.0598, 45.3151], + [-71.0686, 45.3104], + [-71.081792777, 45.306402189], + [-71.0818, 45.3064], + [-71.0741, 45.2211], + [-71.031, 44.6575], + [-71.0079, 44.2451], + [-70.9743, 43.5724], + [-70.9559, 43.5223], + [-70.9694, 43.429], + [-70.986, 43.4087], + [-70.9744, 43.3521], + [-70.9335, 43.3358], + [-70.8608, 43.2572], + [-70.8397, 43.2434], + [-70.823818314, 43.238425014] + ] + ], + [ + [ + [-68.3097, 44.4431], + [-68.3694, 44.4208], + [-68.4317, 44.3097], + [-68.4072, 44.2581], + [-68.3397, 44.2222], + [-68.2905, 44.2495], + [-68.2944, 44.2867], + [-68.2306, 44.2875], + [-68.1731, 44.3281], + [-68.1856, 44.3706], + [-68.3097, 44.4431] + ] + ], + [ + [ + [-68.6578, 44.2694], + [-68.7086, 44.2272], + [-68.7119, 44.1681], + [-68.6464, 44.1558], + [-68.6589, 44.2111], + [-68.6078, 44.2408], + [-68.6578, 44.2694] + ] + ], + [ + [ + [-69.7508, 43.8706], + [-69.7831, 43.7961], + [-69.7575, 43.7511], + [-69.7074, 43.828], + [-69.7508, 43.8706] + ] + ], + [ + [ + [-68.8214, 44.1833], + [-68.9175, 44.1481], + [-68.8597, 44.1261], + [-68.8214, 44.1833] + ] + ], + [ + [ + [-69.6693, 43.9591], + [-69.7314, 43.8903], + [-69.6994, 43.8722], + [-69.6693, 43.9591] + ] + ], + [ + [ + [-68.8672, 44.1204], + [-68.8853, 44.0856], + [-68.8178, 44.0317], + [-68.8672, 44.1204] + ] + ], + [ + [ + [-68.615, 44.0875], + [-68.6611, 44.0172], + [-68.6042, 44.0386], + [-68.615, 44.0875] + ] + ], + [ + [ + [-69.7958, 43.9044], + [-69.7889, 43.8122], + [-69.7619, 43.8862], + [-69.7958, 43.9044] + ] + ] + ] + }, + "properties": { + "id": "2b8e058a-b640-4f3e-aaf4-ec46453643ff", + "code": "ME", + "name": "Maine", + "abbreviation": "S-ME", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-75.702103612, 38.562165463], + [-75.702, 38.5622], + [-75.7069, 38.5976], + [-75.7224, 38.8295], + [-75.7881, 39.6501], + [-75.787500343, 39.723058306], + [-77.1212, 39.7194], + [-77.938, 39.724], + [-79.136094902, 39.722699288], + [-79.4774, 39.7216], + [-79.4872, 39.2067], + [-79.4499, 39.2125], + [-79.4212, 39.235], + [-79.4045, 39.2467], + [-79.3754, 39.2727], + [-79.3597, 39.2765], + [-79.3427, 39.2964], + [-79.2929, 39.3005], + [-79.2544, 39.3548], + [-79.2135, 39.364], + [-79.1564, 39.4177], + [-79.1091, 39.432], + [-79.1029, 39.4743], + [-79.013, 39.4646], + [-78.9645, 39.4397], + [-78.9358, 39.4842], + [-78.8376, 39.5673], + [-78.7982, 39.6328], + [-78.7646, 39.5871], + [-78.744, 39.5818], + [-78.7333, 39.579], + [-78.6803, 39.5442], + [-78.5767, 39.5283], + [-78.5213, 39.5266], + [-78.4992, 39.5191], + [-78.4664, 39.5202], + [-78.4206, 39.6253], + [-78.3551, 39.6416], + [-78.2727, 39.6186], + [-78.2013, 39.6799], + [-78.1794, 39.6976], + [-78.1021, 39.6807], + [-78.0036, 39.6014], + [-77.939, 39.588], + [-77.8822, 39.6183], + [-77.8394, 39.6069], + [-77.8298, 39.5847], + [-77.8443, 39.5664], + [-77.8648, 39.5384], + [-77.8659, 39.5198], + [-77.8628, 39.5168], + [-77.8357, 39.5327], + [-77.8259, 39.5226], + [-77.8294, 39.517], + [-77.8454, 39.5047], + [-77.8445, 39.5002], + [-77.819, 39.4956], + [-77.7923, 39.4331], + [-77.7516, 39.424], + [-77.7395, 39.404], + [-77.7371, 39.3873], + [-77.7503, 39.3838], + [-77.7483, 39.3516], + [-77.7579, 39.3442], + [-77.7483, 39.3334], + [-77.7197, 39.3253], + [-77.6746, 39.3266], + [-77.624, 39.3063], + [-77.5699, 39.3082], + [-77.4909, 39.2511], + [-77.4564, 39.2284], + [-77.5044, 39.1799], + [-77.5246, 39.1428], + [-77.4606, 39.0794], + [-77.3823, 39.0644], + [-77.297, 39.0517], + [-77.2706, 39.0348], + [-77.2433, 39.0233], + [-77.2482, 38.9918], + [-77.2114, 38.9748], + [-77.1323, 38.9455], + [-77.1205, 38.9337], + [-77.0415, 38.9951], + [-76.9097, 38.8925], + [-77.0164, 38.8093], + [-77.0442, 38.6976], + [-77.1009, 38.6854], + [-77.1095, 38.6268], + [-77.182, 38.6018], + [-77.235, 38.5535], + [-77.2736, 38.4829], + [-77.2495, 38.3823], + [-77.2067, 38.3597], + [-77.0915, 38.4076], + [-77.0419, 38.4443], + [-77.0015, 38.4216], + [-76.975, 38.3539], + [-76.9263, 38.2945], + [-76.85, 38.2658], + [-76.8711, 38.3333], + [-76.859, 38.3828], + [-76.8023, 38.2806], + [-76.7526, 38.2222], + [-76.7144, 38.2669], + [-76.6712, 38.2344], + [-76.5913, 38.2149], + [-76.5358, 38.1465], + [-76.4413, 38.1508], + [-76.3206, 38.0486], + [-76.32, 38.1383], + [-76.3864, 38.2202], + [-76.3733, 38.2989], + [-76.4619, 38.296], + [-76.5031, 38.3603], + [-76.6192, 38.4178], + [-76.6419, 38.4761], + [-76.5714, 38.4225], + [-76.5233, 38.4124], + [-76.4214, 38.3192], + [-76.3811, 38.3856], + [-76.4917, 38.4817], + [-76.5175, 38.5347], + [-76.5114, 38.615], + [-76.5286, 38.7281], + [-76.5547, 38.7697], + [-76.5106, 38.8008], + [-76.4594, 38.9406], + [-76.4764, 38.9817], + [-76.3953, 39.0108], + [-76.4368, 39.0526], + [-76.5136, 39.0681], + [-76.4406, 39.0956], + [-76.4307, 39.132], + [-76.4969, 39.1508], + [-76.5764, 39.2489], + [-76.4621, 39.2057], + [-76.4212, 39.2318], + [-76.3892, 39.3128], + [-76.2822, 39.2998], + [-76.2279, 39.35], + [-76.1024, 39.4348], + [-76.1133, 39.4871], + [-76.0839, 39.5467], + [-75.97, 39.5575], + [-75.9851, 39.4702], + [-75.9156, 39.5033], + [-76.0374, 39.386], + [-76.1109, 39.3722], + [-76.1865, 39.3186], + [-76.2781, 39.1479], + [-76.2494, 39.1319], + [-76.2269, 39.0531], + [-76.1693, 39.1271], + [-76.1425, 39.0864], + [-76.1763, 39.0574], + [-76.1625, 39.0069], + [-76.2022, 38.9722], + [-76.1839, 38.7581], + [-76.2656, 38.8511], + [-76.3428, 38.75], + [-76.2964, 38.7728], + [-76.2714, 38.709], + [-76.2381, 38.7108], + [-76.1083, 38.6214], + [-76.0258, 38.5786], + [-76.1133, 38.5814], + [-76.1763, 38.6281], + [-76.2722, 38.6175], + [-76.2608, 38.5481], + [-76.1978, 38.5303], + [-76.3277, 38.4993], + [-76.3319, 38.4742], + [-76.2333, 38.345], + [-76.1836, 38.3601], + [-76.1647, 38.3156], + [-76.0744, 38.2686], + [-75.9986, 38.3741], + [-75.9638, 38.3246], + [-76.0083, 38.305], + [-75.9489, 38.2378], + [-75.9404, 38.3061], + [-75.8634, 38.3592], + [-75.8369, 38.4558], + [-75.8181, 38.4683], + [-75.8261, 38.4794], + [-75.8156, 38.4897], + [-75.7581, 38.5131], + [-75.7567, 38.5297], + [-75.7258, 38.5408], + [-75.7136, 38.5508], + [-75.7078, 38.5603], + [-75.7053, 38.5611], + [-75.702103612, 38.562165463] + ] + ], + [ + [ + [-75.7019, 38.5597], + [-75.7619, 38.5056], + [-75.8225, 38.4806], + [-75.8094, 38.4689], + [-75.8308, 38.4567], + [-75.82, 38.4275], + [-75.8322, 38.39], + [-75.9188, 38.2645], + [-75.8998, 38.2323], + [-75.8186, 38.2269], + [-75.9368, 38.1898], + [-75.9347, 38.1483], + [-75.7948, 38.1358], + [-75.8664, 38.0956], + [-75.8547, 38.0694], + [-75.7748, 38.0733], + [-75.8365, 38.0325], + [-75.8922, 37.9558], + [-75.8647, 37.9133], + [-75.7786, 37.9736], + [-75.6458, 37.9708], + [-75.6472, 37.9735], + [-75.64, 37.9783], + [-75.6237, 37.9955], + [-75.3775, 38.0175], + [-75.3269, 38.1053], + [-75.3008, 38.0989], + [-75.2608, 38.2045], + [-75.2194, 38.2464], + [-75.19, 38.2275], + [-75.0956, 38.3294], + [-75.1294, 38.3917], + [-75.1285, 38.4471], + [-75.6942, 38.4593], + [-75.7019, 38.5597] + ] + ], + [ + [ + [-76.3008, 39.0306], + [-76.3553, 38.9561], + [-76.3767, 38.8492], + [-76.3306, 38.8636], + [-76.3148, 38.9342], + [-76.2517, 38.9431], + [-76.3008, 39.0306] + ] + ], + [ + [ + [-76.0314, 38.0003], + [-76.0453, 37.9489], + [-75.9894, 37.9617], + [-76.0314, 38.0003] + ] + ] + ] + }, + "properties": { + "id": "52260f7c-2dc8-4826-ad20-f026e79e61a6", + "code": "MD", + "name": "Maryland", + "abbreviation": "S-MD", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-73.4901, 42.0497], + [-73.490103271, 42.049606044], + [-73.3658, 42.0497], + [-72.7574, 42.0362], + [-72.003, 42.0291], + [-71.7991, 42.0238], + [-71.7979, 42.0089], + [-71.3797, 42.0191], + [-71.3824, 41.8915], + [-71.3386, 41.8983], + [-71.3406, 41.8093], + [-71.3314, 41.7897], + [-71.2277, 41.7151], + [-71.1989, 41.6783], + [-71.1332, 41.6595], + [-71.1206, 41.4956], + [-71.0702, 41.5217], + [-71.0361, 41.483], + [-70.9506, 41.5168], + [-70.9152, 41.6219], + [-70.8004, 41.6302], + [-70.7566, 41.6532], + [-70.7652, 41.7109], + [-70.7216, 41.7359], + [-70.6378, 41.7367], + [-70.5797, 41.7533], + [-70.5639, 41.7711], + [-70.5439, 41.7772], + [-70.5136, 41.7736], + [-70.5147, 41.7886], + [-70.5367, 41.9208], + [-70.5844, 41.9515], + [-70.6468, 41.9503], + [-70.7106, 42.0014], + [-70.6372, 42.0836], + [-70.6778, 42.1233], + [-70.7206, 42.2072], + [-70.7677, 42.2511], + [-70.8547, 42.2678], + [-70.9669, 42.2453], + [-71.0453, 42.2944], + [-71.0436, 42.3231], + [-70.9764, 42.3708], + [-70.9814, 42.4259], + [-70.8947, 42.46], + [-70.8407, 42.5186], + [-70.8692, 42.5478], + [-70.6983, 42.5767], + [-70.5951, 42.6344], + [-70.63, 42.693], + [-70.7272, 42.6481], + [-70.7942, 42.75], + [-70.8153, 42.8628], + [-70.8167, 42.8716], + [-70.8481, 42.8609], + [-70.886, 42.8806], + [-70.9718, 42.8678], + [-71.0482, 42.8467], + [-71.066, 42.8063], + [-71.1333, 42.8215], + [-71.1891, 42.7907], + [-71.1843, 42.7375], + [-71.2599, 42.7349], + [-71.2968, 42.6978], + [-71.6293, 42.7042], + [-72.4566, 42.7276], + [-73.2675, 42.7452], + [-73.4822, 42.1648], + [-73.5084, 42.0858], + [-73.4981, 42.0496], + [-73.4901, 42.0497] + ] + ], + [ + [ + [-70.1936, 42.0808], + [-70.1127, 42.0461], + [-70.0789, 41.9928], + [-70.0719, 41.8981], + [-70.0239, 41.9303], + [-70.0067, 41.8056], + [-70.0528, 41.7761], + [-70.2892, 41.7347], + [-70.4139, 41.7444], + [-70.4961, 41.7753], + [-70.5064, 41.7714], + [-70.5478, 41.7756], + [-70.5631, 41.7689], + [-70.5761, 41.7536], + [-70.5908, 41.7458], + [-70.6183, 41.74], + [-70.615, 41.6575], + [-70.6502, 41.6456], + [-70.6346, 41.5382], + [-70.4839, 41.5546], + [-70.4322, 41.6206], + [-70.3992, 41.6064], + [-70.3392, 41.6372], + [-70.1386, 41.6504], + [-70.0122, 41.6731], + [-69.9633, 41.6531], + [-69.9289, 41.7547], + [-69.9783, 41.9364], + [-70.0664, 42.0453], + [-70.1936, 42.0808] + ] + ], + [ + [ + [-70.5974, 41.4797], + [-70.6591, 41.4605], + [-70.7744, 41.3497], + [-70.8377, 41.3455], + [-70.7699, 41.3024], + [-70.7344, 41.3372], + [-70.6413, 41.3494], + [-70.4508, 41.3487], + [-70.568, 41.4186], + [-70.5974, 41.4797] + ] + ], + [ + [ + [-70.0458, 41.3897], + [-70.0039, 41.3231], + [-70.0797, 41.2819], + [-70.1972, 41.2967], + [-70.2122, 41.2725], + [-70.1017, 41.2406], + [-69.9719, 41.2469], + [-69.9722, 41.2992], + [-70.0458, 41.3897] + ] + ], + [ + [ + [-70.7117, 41.5142], + [-70.802, 41.4667], + [-70.7908, 41.4458], + [-70.7117, 41.5142] + ] + ] + ] + }, + "properties": { + "id": "12dc3369-9ca9-48a0-b543-6b9fc24b43a5", + "code": "MA", + "name": "Massachusetts", + "abbreviation": "S-MA", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-87.2071, 41.7607], + [-86.4526, 41.7599], + [-85.932, 41.7623], + [-84.8076, 41.7605], + [-84.8067, 41.6958], + [-83.9997, 41.7157], + [-83.484, 41.7328], + [-83.4304, 41.7633], + [-83.4416, 41.8027], + [-83.2927, 41.9453], + [-83.2068, 41.9995], + [-83.1658, 42.1739], + [-83.13, 42.247], + [-83.1123, 42.2675], + [-83.0662, 42.3208], + [-83.018, 42.3295], + [-82.9358, 42.3446], + [-82.8683, 42.3276], + [-82.6412, 42.5548], + [-82.6002, 42.5496], + [-82.5213, 42.6104], + [-82.4669, 42.7739], + [-82.4782, 42.8031], + [-82.4532, 42.9257], + [-82.4243, 42.9983], + [-82.1229, 43.5884], + [-82.2077, 43.9512], + [-82.4175, 44.9067], + [-82.5254, 45.3409], + [-83.1983, 45.644], + [-83.5921, 45.8187], + [-83.4356, 45.9965], + [-83.5711, 46.1026], + [-83.6544, 46.1194], + [-83.7567, 46.1015], + [-83.8258, 46.1165], + [-83.9036, 46.0585], + [-83.9548, 46.0562], + [-84.005, 46.1506], + [-84.0726, 46.1875], + [-84.1046, 46.2389], + [-84.1432, 46.4171], + [-84.1099, 46.5021], + [-84.1293, 46.5313], + [-84.2223, 46.5343], + [-84.2505, 46.5027], + [-84.3711, 46.5083], + [-84.4429, 46.4897], + [-84.4764, 46.4532], + [-84.5561, 46.4597], + [-84.7638, 46.6349], + [-84.8434, 46.8873], + [-86.0434, 47.3856], + [-86.7729, 47.6817], + [-87.4059, 47.9341], + [-87.8649, 48.1137], + [-88.3709, 48.3042], + [-88.689, 48.2415], + [-89.3391, 47.9699], + [-89.4877, 48.0109], + [-89.958, 47.2912], + [-90.4187, 46.567], + [-90.4149, 46.5602], + [-90.3895, 46.5375], + [-90.3313, 46.5555], + [-90.308, 46.5187], + [-90.2168, 46.5055], + [-90.1592, 46.4302], + [-90.1178, 46.3366], + [-89.3759, 46.1949], + [-89.0854, 46.1365], + [-88.8103, 46.0238], + [-88.6762, 46.0111], + [-88.6195, 45.9884], + [-88.6016, 46.0189], + [-88.5099, 46.0174], + [-88.4173, 45.9795], + [-88.3761, 45.9911], + [-88.3262, 45.9592], + [-88.1985, 45.9539], + [-88.0954, 45.9141], + [-88.0728, 45.8721], + [-88.1349, 45.8225], + [-88.0641, 45.7809], + [-87.9971, 45.7967], + [-87.9641, 45.7601], + [-87.8775, 45.7536], + [-87.7842, 45.6753], + [-87.826, 45.6626], + [-87.7827, 45.6095], + [-87.81, 45.5444], + [-87.7856, 45.4929], + [-87.8598, 45.4398], + [-87.8775, 45.38], + [-87.8354, 45.3517], + [-87.7601, 45.3493], + [-87.6955, 45.3887], + [-87.6512, 45.3461], + [-87.7118, 45.2647], + [-87.7408, 45.1755], + [-87.6604, 45.1078], + [-87.4373, 45.0778], + [-87.4035, 45.2045], + [-87.3075, 45.243], + [-87.1797, 45.3424], + [-87.0963, 45.442], + [-86.7605, 45.444], + [-86.2496, 45.2338], + [-86.4284, 45.1272], + [-86.5085, 45.0665], + [-86.6438, 44.934], + [-86.7029, 44.8527], + [-86.7916, 44.6901], + [-86.8627, 44.5335], + [-86.9652, 44.2582], + [-87.0814, 43.8869], + [-87.1248, 43.7105], + [-87.1482, 43.571], + [-87.1552, 43.4436], + [-87.1233, 43.1971], + [-87.0181, 42.4947], + [-87.069, 42.3391], + [-87.2071, 41.7607] + ] + ], + [ + [ + [-83.1692, 42.0899], + [-83.1616, 42.0929], + [-83.1457, 42.1016], + [-83.141, 42.1228], + [-83.1735, 42.1277], + [-83.1756, 42.0982], + [-83.1692, 42.0899] + ] + ], + [ + [ + [-83.1683, 42.0812], + [-83.1763, 42.0823], + [-83.1766, 42.0769], + [-83.1711, 42.0754], + [-83.1683, 42.0812] + ] + ] + ] + }, + "properties": { + "id": "cd243023-ec05-449d-b883-f2320c71e771", + "code": "MI", + "name": "Michigan", + "abbreviation": "S-MI", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-91.22, 43.5023], + [-91.2176, 43.5132], + [-91.2318, 43.5844], + [-91.2547, 43.6069], + [-91.2672, 43.6233], + [-91.2554, 43.7344], + [-91.2639, 43.7949], + [-91.2791, 43.8407], + [-91.429, 43.9924], + [-91.4641, 44.0089], + [-91.5708, 44.0278], + [-91.7829, 44.1478], + [-91.8119, 44.1605], + [-91.8402, 44.1847], + [-91.8643, 44.197], + [-91.8736, 44.2057], + [-91.8916, 44.2384], + [-91.9152, 44.3083], + [-91.9151, 44.3147], + [-91.9451, 44.3428], + [-92.0862, 44.4113], + [-92.2308, 44.4463], + [-92.2847, 44.4821], + [-92.3154, 44.5407], + [-92.3664, 44.5582], + [-92.5448, 44.5686], + [-92.5721, 44.6031], + [-92.737, 44.7173], + [-92.7901, 44.7381], + [-92.8073, 44.7524], + [-92.766, 44.8308], + [-92.7527, 44.9527], + [-92.7982, 45.0746], + [-92.7467, 45.1076], + [-92.7583, 45.2904], + [-92.7036, 45.3262], + [-92.644, 45.4376], + [-92.7722, 45.5679], + [-92.8808, 45.5744], + [-92.8719, 45.6918], + [-92.8685, 45.7064], + [-92.7849, 45.762], + [-92.732, 45.8681], + [-92.6714, 45.9152], + [-92.4738, 45.9732], + [-92.422, 46.0211], + [-92.3581, 46.0097], + [-92.2899, 46.0706], + [-92.2883, 46.6679], + [-92.2124, 46.6507], + [-92.1403, 46.738], + [-92.0868, 46.7485], + [-92.021, 46.7059], + [-91.4743, 46.9336], + [-90.6631, 47.3025], + [-89.958, 47.2912], + [-89.4877, 48.0109], + [-89.7699, 48.0229], + [-89.8676, 47.998], + [-89.9743, 48.0441], + [-90.0335, 48.0963], + [-90.1358, 48.1127], + [-90.3466, 48.0983], + [-90.4664, 48.1095], + [-90.6375, 48.1059], + [-90.7422, 48.1137], + [-90.8139, 48.1907], + [-90.8399, 48.2459], + [-90.8861, 48.2466], + [-91.1333, 48.1569], + [-91.2544, 48.0815], + [-91.4013, 48.0573], + [-91.4773, 48.0801], + [-91.5562, 48.0804], + [-91.6911, 48.1273], + [-91.721, 48.2007], + [-91.8623, 48.2112], + [-91.9833, 48.261], + [-91.9998, 48.321], + [-92.0548, 48.3591], + [-92.2625, 48.3548], + [-92.3052, 48.3194], + [-92.2797, 48.2427], + [-92.3643, 48.2338], + [-92.4748, 48.3733], + [-92.4665, 48.435], + [-92.5068, 48.4504], + [-92.6527, 48.4408], + [-92.6962, 48.492], + [-92.6315, 48.4987], + [-92.6354, 48.5426], + [-92.7268, 48.5391], + [-92.9472, 48.6214], + [-93.1798, 48.6228], + [-93.2564, 48.6425], + [-93.4636, 48.592], + [-93.4679, 48.5466], + [-93.6129, 48.5247], + [-93.7518, 48.5198], + [-93.7955, 48.5306], + [-93.817, 48.6146], + [-93.8505, 48.6316], + [-94.0805, 48.6538], + [-94.2233, 48.6602], + [-94.257, 48.7035], + [-94.4165, 48.7103], + [-94.452, 48.6928], + [-94.5351, 48.7023], + [-94.6206, 48.7374], + [-94.6823, 48.8088], + [-94.6785, 48.8808], + [-94.748, 49.0975], + [-94.7719, 49.1224], + [-94.8247, 49.3069], + [-94.9561, 49.3694], + [-95.0534, 49.3529], + [-95.1497, 49.3833], + [-95.1514, 49], + [-97.2286, 49], + [-97.2348, 48.9952], + [-97.2128, 48.9061], + [-97.1788, 48.8741], + [-97.1533, 48.7544], + [-97.0935, 48.684], + [-97.1712, 48.5572], + [-97.1571, 48.4747], + [-97.1268, 48.4545], + [-97.1606, 48.3935], + [-97.1206, 48.2796], + [-97.149, 48.1833], + [-97.1227, 48.1056], + [-97.0749, 48.0504], + [-97.0542, 47.9454], + [-96.8975, 47.6783], + [-96.8512, 47.5881], + [-96.8527, 47.5384], + [-96.8642, 47.5402], + [-96.8717, 47.5257], + [-96.868, 47.5196], + [-96.8448, 47.5147], + [-96.8533, 47.5112], + [-96.855, 47.5047], + [-96.8605, 47.4371], + [-96.8346, 47.3394], + [-96.8435, 47.241], + [-96.8175, 47.1102], + [-96.8206, 46.9694], + [-96.7667, 46.8804], + [-96.8008, 46.8155], + [-96.7855, 46.7329], + [-96.7872, 46.7251], + [-96.7821, 46.7225], + [-96.7856, 46.7146], + [-96.8026, 46.6564], + [-96.7563, 46.5763], + [-96.7376, 46.4801], + [-96.6682, 46.3794], + [-96.6022, 46.3298], + [-96.5977, 46.2226], + [-96.5785, 46.1478], + [-96.5688, 46.1333], + [-96.563, 46.1155], + [-96.5552, 46.0731], + [-96.5615, 46.0537], + [-96.5644, 45.9607], + [-96.5577, 45.9425], + [-96.5613, 45.9356], + [-96.5638, 45.9051], + [-96.5731, 45.8515], + [-96.6313, 45.783], + [-96.6674, 45.735], + [-96.8303, 45.6567], + [-96.8546, 45.6075], + [-96.7642, 45.5189], + [-96.7317, 45.4593], + [-96.6742, 45.4115], + [-96.6087, 45.4094], + [-96.5059, 45.3698], + [-96.4519, 45.3022], + [-96.4536, 45.2695], + [-96.4541, 43.5026], + [-96.277333059, 43.502733726], + [-95.113241361, 43.503614375], + [-93.6782, 43.5047], + [-93.2844, 43.5032], + [-91.22, 43.5023] + ] + ] + }, + "properties": { + "id": "01106167-8733-4279-b03d-27673682391c", + "code": "MN", + "name": "Minnesota", + "abbreviation": "S-MN", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-88.199696512, 34.997799817], + [-88.78657705, 34.996688], + [-89.069158116, 34.996152664], + [-90.3098, 34.9966], + [-90.3093, 34.9915], + [-90.2486, 34.9494], + [-90.2445, 34.909], + [-90.3894, 34.8446], + [-90.4055, 34.8304], + [-90.4338, 34.8748], + [-90.4647, 34.8929], + [-90.4775, 34.8883], + [-90.4852, 34.8811], + [-90.4867, 34.8713], + [-90.4699, 34.8443], + [-90.461, 34.8289], + [-90.4726, 34.7952], + [-90.457, 34.736], + [-90.4879, 34.7278], + [-90.5219, 34.7359], + [-90.5049, 34.7819], + [-90.566, 34.7162], + [-90.4646, 34.694], + [-90.516, 34.635], + [-90.5878, 34.6785], + [-90.5801, 34.6081], + [-90.5401, 34.5507], + [-90.5882, 34.5051], + [-90.5758, 34.4156], + [-90.6792, 34.3682], + [-90.7566, 34.3731], + [-90.7686, 34.2772], + [-90.831, 34.2726], + [-90.8479, 34.2148], + [-90.9364, 34.2332], + [-90.9132, 34.1965], + [-90.8359, 34.1908], + [-90.8228, 34.1478], + [-90.9103, 34.1653], + [-90.9407, 34.101], + [-90.8701, 34.091], + [-90.8878, 34.0268], + [-90.9867, 34.0191], + [-91.0865, 33.9585], + [-91.0073, 33.9283], + [-91.0705, 33.867], + [-91.0551, 33.7777], + [-91.143, 33.773], + [-91.1458, 33.7301], + [-91.0654, 33.7162], + [-91.0757, 33.6587], + [-91.0928, 33.6572], + [-91.1067, 33.662], + [-91.144, 33.6867], + [-91.2085, 33.7007], + [-91.2188, 33.6605], + [-91.1363, 33.6228], + [-91.1359, 33.5923], + [-91.2244, 33.5678], + [-91.1869, 33.5166], + [-91.2349, 33.4377], + [-91.183, 33.4385], + [-91.1766, 33.4964], + [-91.1261, 33.4744], + [-91.1317, 33.4292], + [-91.1984, 33.4171], + [-91.1692, 33.3803], + [-91.1051, 33.4], + [-91.0994, 33.4154], + [-91.0919, 33.4558], + [-91.078, 33.4571], + [-91.0619, 33.4505], + [-91.0572, 33.4273], + [-91.0745, 33.409], + [-91.1444, 33.335], + [-91.0988, 33.2382], + [-91.0767, 33.2847], + [-91.0509, 33.284], + [-91.0925, 33.2171], + [-91.0923, 33.137], + [-91.1924, 33.139], + [-91.1991, 33.1056], + [-91.1334, 33.0699], + [-91.1232, 33.0449], + [-91.1631, 33.0045], + [-91.1944, 32.9736], + [-91.1906, 32.9049], + [-91.1554, 32.9014], + [-91.1388, 32.9095], + [-91.1323, 32.9169], + [-91.1366, 32.956], + [-91.0916, 32.9778], + [-91.064, 32.9052], + [-91.1455, 32.8427], + [-91.155, 32.7459], + [-91.0542, 32.7136], + [-91.1543, 32.6396], + [-91.1333, 32.5935], + [-91.0555, 32.6075], + [-91.0298, 32.6433], + [-91.0162, 32.642], + [-91.0052, 32.6304], + [-91.0749, 32.5627], + [-90.9956, 32.5096], + [-90.9876, 32.4932], + [-90.9952, 32.4846], + [-91.0197, 32.4848], + [-91.0786, 32.5403], + [-91.1091, 32.5324], + [-91.0981, 32.4636], + [-91.0751, 32.4483], + [-91.0018, 32.4499], + [-90.9844, 32.4492], + [-90.9663, 32.4261], + [-91.0015, 32.3566], + [-90.9051, 32.317], + [-90.9818, 32.2868], + [-90.9823, 32.2125], + [-91.0376, 32.2391], + [-91.1675, 32.1918], + [-91.1696, 32.1422], + [-91.053, 32.1237], + [-91.0583, 32.1807], + [-91.0021, 32.1617], + [-91.0431, 32.097], + [-91.1248, 32.0769], + [-91.091, 32.0379], + [-91.0966, 31.9919], + [-91.164, 31.9812], + [-91.1819, 31.9208], + [-91.2668, 31.8619], + [-91.3393, 31.8415], + [-91.397, 31.7167], + [-91.3987, 31.6323], + [-91.4388, 31.6131], + [-91.5081, 31.6413], + [-91.4861, 31.586], + [-91.4211, 31.5971], + [-91.4445, 31.5464], + [-91.513, 31.5314], + [-91.5125, 31.447], + [-91.4712, 31.4045], + [-91.5167, 31.3712], + [-91.5479, 31.4319], + [-91.5709, 31.3776], + [-91.5138, 31.3181], + [-91.5536, 31.2653], + [-91.6463, 31.2661], + [-91.6023, 31.2036], + [-91.6256, 31.122], + [-91.562, 31.0561], + [-91.6397, 30.9998], + [-90.8124, 30.9992], + [-89.7344, 31.0034], + [-89.7848, 30.8181], + [-89.8303, 30.7824], + [-89.8422, 30.6695], + [-89.772, 30.5189], + [-89.6897, 30.459], + [-89.6842, 30.41], + [-89.6348, 30.3465], + [-89.6158, 30.2281], + [-89.5948, 30.2093], + [-89.5431, 30.1944], + [-89.5284, 30.1918], + [-89.5247, 30.1847], + [-89.4481, 30.2042], + [-89.4206, 30.2533], + [-89.3392, 30.2961], + [-89.3619, 30.3447], + [-89.3131, 30.3755], + [-89.2688, 30.3418], + [-89.2919, 30.3039], + [-89.0044, 30.3875], + [-88.8419, 30.4092], + [-88.7479, 30.3485], + [-88.693, 30.3473], + [-88.57, 30.4003], + [-88.5653, 30.3441], + [-88.4794, 30.3186], + [-88.3971, 30.3491], + [-88.3994, 30.395], + [-88.4101, 30.7033], + [-88.4507, 31.444], + [-88.472, 31.9], + [-88.4262, 32.262], + [-88.2474, 33.7499], + [-88.2067, 34.0458], + [-88.1535, 34.4881], + [-88.098, 34.8964], + [-88.1525, 34.9269], + [-88.1883, 34.9793], + [-88.199696512, 34.997799817] + ] + ] + }, + "properties": { + "id": "a81b2462-e6ca-4296-85fb-357b901ceec7", + "code": "MS", + "name": "Mississippi", + "abbreviation": "S-MS", + "parent_id": "d6157b38-3f86-49ef-8acd-93287d33c0d0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-89.7169, 36.0015], + [-89.6564, 36.1024], + [-89.5896, 36.1475], + [-89.6985, 36.2309], + [-89.6946, 36.2501], + [-89.6733, 36.2521], + [-89.6083, 36.2409], + [-89.5456, 36.2791], + [-89.6167, 36.3186], + [-89.6042, 36.3446], + [-89.5264, 36.3459], + [-89.5192, 36.3883], + [-89.5515, 36.4414], + [-89.5249, 36.4844], + [-89.540418139, 36.500290575], + [-89.5624, 36.5228], + [-89.5482, 36.5788], + [-89.5352, 36.5814], + [-89.4989, 36.578], + [-89.4873, 36.4999], + [-89.4646, 36.4571], + [-89.4196, 36.498], + [-89.3777, 36.6179], + [-89.3562, 36.6324], + [-89.3248, 36.6268], + [-89.2749, 36.5717], + [-89.2289, 36.5677], + [-89.166, 36.6636], + [-89.2016, 36.7251], + [-89.1612, 36.7912], + [-89.1785, 36.8388], + [-89.1311, 36.8588], + [-89.1164, 36.9168], + [-89.1006, 36.9541], + [-89.1339, 36.9839], + [-89.1953, 36.983], + [-89.2504, 37.0633], + [-89.3063, 37.0643], + [-89.2598, 37.0031], + [-89.2909, 36.9895], + [-89.3865, 37.0501], + [-89.3772, 37.0912], + [-89.4579, 37.1869], + [-89.4654, 37.2526], + [-89.5095, 37.2636], + [-89.518, 37.2767], + [-89.5098, 37.3131], + [-89.426, 37.3655], + [-89.4355, 37.4296], + [-89.4926, 37.4934], + [-89.5204, 37.5815], + [-89.5152, 37.6892], + [-89.6707, 37.7575], + [-89.6626, 37.7892], + [-89.7397, 37.8467], + [-89.7961, 37.8589], + [-89.8418, 37.9044], + [-89.9177, 37.8702], + [-89.9736, 37.917], + [-89.94, 37.9703], + [-89.995, 37.9619], + [-90.0109, 37.9714], + [-90.1824, 38.0773], + [-90.2493, 38.1239], + [-90.3498, 38.2141], + [-90.373, 38.278], + [-90.3724, 38.3224], + [-90.3565, 38.367], + [-90.2984, 38.4254], + [-90.2595, 38.533], + [-90.1984, 38.595], + [-90.1814, 38.6618], + [-90.204, 38.736], + [-90.116, 38.8105], + [-90.1141, 38.8508], + [-90.1555, 38.8722], + [-90.2554, 38.9224], + [-90.3828, 38.9595], + [-90.4697, 38.9614], + [-90.5062, 38.9053], + [-90.5983, 38.8768], + [-90.6346, 38.9037], + [-90.7131, 39.0513], + [-90.6825, 39.1095], + [-90.725, 39.2441], + [-90.7971, 39.3118], + [-91.0578, 39.468], + [-91.0944, 39.5323], + [-91.1636, 39.5573], + [-91.1801, 39.5992], + [-91.3662, 39.7285], + [-91.3616, 39.783], + [-91.3686, 39.8015], + [-91.4292, 39.8392], + [-91.4473, 39.8743], + [-91.4409, 39.8965], + [-91.4196, 39.9177], + [-91.4271, 39.939], + [-91.4929, 40.0309], + [-91.5115, 40.1292], + [-91.5049, 40.2375], + [-91.4658, 40.3334], + [-91.4204, 40.378], + [-91.4506, 40.3767], + [-91.4633, 40.3769], + [-91.4673, 40.3855], + [-91.4938, 40.3993], + [-91.5263, 40.4146], + [-91.5661, 40.462], + [-91.6833, 40.5553], + [-91.7284, 40.614], + [-92.0611, 40.6033], + [-93.2896, 40.5804], + [-93.6866, 40.5783], + [-94.2285, 40.5706], + [-94.7673, 40.5726], + [-95.7651, 40.5856], + [-95.7666, 40.5314], + [-95.6969, 40.5285], + [-95.6928, 40.4693], + [-95.6223, 40.3408], + [-95.6534, 40.3226], + [-95.5507, 40.2861], + [-95.5526, 40.2617], + [-95.4709, 40.2348], + [-95.4789, 40.1857], + [-95.3933, 40.1216], + [-95.4212, 40.0591], + [-95.4113, 40.0357], + [-95.403, 40.0301], + [-95.3813, 40.0266], + [-95.308, 39.9999], + [-95.253, 39.9519], + [-95.2359, 39.944], + [-95.1277, 39.8757], + [-95.0416, 39.8667], + [-95.0111, 39.9012], + [-94.9364, 39.895], + [-94.9286, 39.8839], + [-94.9412, 39.8602], + [-94.8809, 39.8253], + [-94.8786, 39.8112], + [-94.8907, 39.7952], + [-94.9273, 39.79], + [-94.9352, 39.7834], + [-94.8673, 39.7678], + [-94.8931, 39.7257], + [-94.9519, 39.7473], + [-94.9697, 39.695], + [-95.0495, 39.6391], + [-95.0575, 39.5836], + [-95.1037, 39.5812], + [-95.1046, 39.5359], + [-95.0346, 39.4617], + [-94.9913, 39.4479], + [-94.9307, 39.3849], + [-94.8877, 39.2907], + [-94.7486, 39.1723], + [-94.6628, 39.1779], + [-94.5984, 39.1579], + [-94.6083, 39.1204], + [-94.6134, 38.3892], + [-94.619, 37], + [-94.6196, 36.7664], + [-94.6182, 36.4984], + [-94.1651, 36.4996], + [-93.3653, 36.4968], + [-92.256, 36.4965], + [-91.758, 36.4985], + [-90.1536, 36.4963], + [-90.1441, 36.4231], + [-90.0669, 36.3862], + [-90.068, 36.2978], + [-90.1284, 36.2305], + [-90.2217, 36.1811], + [-90.2384, 36.1382], + [-90.2905, 36.115], + [-90.3773, 35.9951], + [-90.2574, 35.9975], + [-90.0008, 35.9984], + [-89.7169, 36.0015] + ] + ] + }, + "properties": { + "id": "700c342e-8ec4-4a14-83f8-468a3c02b7d6", + "code": "MO", + "name": "Missouri", + "abbreviation": "S-MO", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-111.0487, 44.4772], + [-111.0551, 44.6669], + [-111.053, 44.9999], + [-110.7756, 45.0019], + [-110.7072, 44.9929], + [-110.2006, 44.9942], + [-110.1325, 45.0022], + [-109.1756, 45.0042], + [-109.0827, 45.001], + [-108.2889, 45.0018], + [-107.2305, 45.0007], + [-107.0009, 44.9972], + [-106.0007, 44.9967], + [-105.9196, 45.0017], + [-104.057099868, 44.998628693], + [-104.057099843, 44.998628693], + [-104.0397, 44.9986], + [-104.04375507, 45.943800015], + [-104.044522817, 46.122754864], + [-104.0455, 47.1872], + [-104.0414, 47.9112], + [-104.0448, 48.0005], + [-104.0495976, 49], + [-104.0496, 49.0005], + [-116.0507, 49.0004], + [-116.0471, 47.973], + [-116.0215, 47.9645], + [-115.9003, 47.8425], + [-115.8483, 47.8154], + [-115.8314, 47.7523], + [-115.7254, 47.7], + [-115.7279, 47.6425], + [-115.6898, 47.5926], + [-115.7525, 47.5535], + [-115.7055, 47.534], + [-115.6454, 47.4591], + [-115.752, 47.4367], + [-115.6043, 47.3787], + [-115.5029, 47.2873], + [-115.3201, 47.2581], + [-115.2963, 47.1886], + [-115.1406, 47.1019], + [-115.0835, 47.0439], + [-115.0499, 46.9707], + [-115.0187, 46.9755], + [-114.9233, 46.9152], + [-114.9225, 46.8283], + [-114.7679, 46.7603], + [-114.7533, 46.6996], + [-114.6941, 46.7391], + [-114.6266, 46.7099], + [-114.6418, 46.6673], + [-114.591, 46.6365], + [-114.5347, 46.6507], + [-114.4679, 46.633], + [-114.4322, 46.6601], + [-114.3309, 46.6586], + [-114.3225, 46.6339], + [-114.3347, 46.578], + [-114.3476, 46.5533], + [-114.3446, 46.5173], + [-114.4033, 46.4989], + [-114.382, 46.462], + [-114.4203, 46.3914], + [-114.4154, 46.3385], + [-114.4509, 46.2359], + [-114.4469, 46.1739], + [-114.5073, 46.1688], + [-114.5177, 46.1246], + [-114.4603, 46.0945], + [-114.5062, 46.0359], + [-114.4875, 46.0033], + [-114.4128, 45.9773], + [-114.4317, 45.9398], + [-114.386, 45.8863], + [-114.4097, 45.8522], + [-114.4943, 45.8521], + [-114.5655, 45.7773], + [-114.5011, 45.7186], + [-114.5049, 45.6611], + [-114.5465, 45.6423], + [-114.5523, 45.5583], + [-114.4677, 45.5647], + [-114.4268, 45.5135], + [-114.3406, 45.4595], + [-114.2715, 45.484], + [-114.2473, 45.5467], + [-114.2018, 45.5354], + [-114.1356, 45.5586], + [-114.0147, 45.6588], + [-113.9856, 45.7047], + [-113.895, 45.6461], + [-113.9025, 45.6192], + [-113.8186, 45.6101], + [-113.8309, 45.518], + [-113.7714, 45.5192], + [-113.7748, 45.4161], + [-113.7336, 45.3901], + [-113.7385, 45.3308], + [-113.6874, 45.2579], + [-113.5906, 45.1806], + [-113.5482, 45.1113], + [-113.4548, 45.0599], + [-113.4462, 44.9586], + [-113.4917, 44.926], + [-113.4233, 44.8405], + [-113.3286, 44.7888], + [-113.2475, 44.8229], + [-113.1347, 44.7754], + [-113.0558, 44.6259], + [-113.0858, 44.6042], + [-113.0094, 44.527], + [-113.0242, 44.4937], + [-112.9786, 44.4322], + [-112.8508, 44.3581], + [-112.8186, 44.3725], + [-112.8284, 44.444], + [-112.803, 44.4602], + [-112.7827, 44.483], + [-112.7637, 44.4896], + [-112.7352, 44.5], + [-112.6911, 44.4995], + [-112.6651, 44.4881], + [-112.4599, 44.477], + [-112.3923, 44.45], + [-112.3834, 44.4493], + [-112.3558, 44.533], + [-112.2862, 44.5691], + [-112.1144, 44.5254], + [-111.9759, 44.5391], + [-111.8693, 44.5662], + [-111.8223, 44.5111], + [-111.7012, 44.5587], + [-111.648, 44.5542], + [-111.6167, 44.5491], + [-111.5461, 44.5559], + [-111.4717, 44.668], + [-111.4876, 44.7031], + [-111.411, 44.7129], + [-111.388, 44.753], + [-111.3775, 44.7537], + [-111.3496, 44.7281], + [-111.3244, 44.7271], + [-111.3212, 44.7179], + [-111.2963, 44.7017], + [-111.2285, 44.5803], + [-111.1331, 44.5339], + [-111.1119, 44.4909], + [-111.0487, 44.4772] + ] + ] + }, + "properties": { + "id": "4c9babd2-c024-43bf-9274-c8f22246a719", + "code": "MT", + "name": "Montana", + "abbreviation": "S-MT", + "parent_id": "1f30181c-ab24-4bfc-989c-162d4b17a83e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-102.048383939, 40.003899931], + [-98.9996, 40.0021], + [-98.5045, 40.0036], + [-97.3687, 40.0035], + [-95.308, 39.9999], + [-95.3813, 40.0266], + [-95.403, 40.0301], + [-95.4113, 40.0357], + [-95.4212, 40.0591], + [-95.3933, 40.1216], + [-95.4789, 40.1857], + [-95.4709, 40.2348], + [-95.5526, 40.2617], + [-95.5507, 40.2861], + [-95.6534, 40.3226], + [-95.6223, 40.3408], + [-95.6928, 40.4693], + [-95.6969, 40.5285], + [-95.7666, 40.5314], + [-95.7651, 40.5856], + [-95.7952, 40.6624], + [-95.8825, 40.7173], + [-95.8371, 40.7762], + [-95.8441, 40.8125], + [-95.843, 40.8697], + [-95.8106, 40.9002], + [-95.8276, 40.9735], + [-95.8693, 41.0087], + [-95.8603, 41.0869], + [-95.9113, 41.1857], + [-95.9187, 41.3018], + [-95.9053, 41.3], + [-95.9093, 41.2738], + [-95.8782, 41.2843], + [-95.8725, 41.2953], + [-95.9106, 41.3205], + [-95.9504, 41.337], + [-95.9369, 41.3904], + [-95.9277, 41.4097], + [-95.9242, 41.4609], + [-95.9481, 41.4651], + [-96.0138, 41.4801], + [-95.9873, 41.5152], + [-96.0955, 41.5449], + [-96.1199, 41.6837], + [-96.0726, 41.7033], + [-96.1012, 41.7445], + [-96.0679, 41.7857], + [-96.1579, 41.9098], + [-96.1335, 41.97], + [-96.2698, 42.0429], + [-96.2766, 42.1221], + [-96.3403, 42.1595], + [-96.3576, 42.2154], + [-96.3224, 42.2324], + [-96.3715, 42.3142], + [-96.4186, 42.352], + [-96.3915, 42.484], + [-96.4192, 42.4916], + [-96.45, 42.4895], + [-96.4818, 42.4811], + [-96.551, 42.5218], + [-96.6062, 42.5045], + [-96.628, 42.5502], + [-96.7007, 42.5966], + [-96.6838, 42.6496], + [-96.8052, 42.674], + [-96.8594, 42.7227], + [-96.9451, 42.72], + [-96.9953, 42.7625], + [-97.1347, 42.7739], + [-97.2098, 42.8093], + [-97.2193, 42.8465], + [-97.3559, 42.8736], + [-97.4414, 42.8465], + [-97.4578, 42.8477], + [-97.4808, 42.8683], + [-97.5898, 42.8424], + [-97.6341, 42.86], + [-97.6578, 42.8348], + [-97.6956, 42.8508], + [-97.721, 42.8625], + [-97.7313, 42.8617], + [-97.7591, 42.8391], + [-97.8269, 42.8685], + [-97.8757, 42.8573], + [-97.9128, 42.7944], + [-98.012, 42.7622], + [-98.2418, 42.8656], + [-98.4382, 42.9301], + [-98.5001, 42.9977], + [-100.1984, 42.9979], + [-100.7509, 42.9947], + [-101.6775, 42.9953], + [-102.999, 42.9997], + [-104.0527, 43.0028], + [-104.0527, 43.002797942], + [-104.0528, 41.0017], + [-102.6538, 41.0032], + [-102.0504, 41.0019], + [-102.048383939, 40.003899931] + ] + ] + }, + "properties": { + "id": "281f6f92-6cf7-40ea-adb3-2f674970e5ee", + "code": "NE", + "name": "Nebraska", + "abbreviation": "S-NE", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-114.050505283, 37.00000125], + [-114.0541, 37.6447], + [-114.0494, 38.0329], + [-114.0491, 38.8371], + [-114.052, 38.9994], + [-114.0463, 39.6464], + [-114.0487, 40.2161], + [-114.0406, 40.7968], + [-114.0399, 40.9647], + [-114.040399971, 41.993339785], + [-114.0404, 41.9934], + [-114.044298938, 41.993413276], + [-114.5984, 41.9953], + [-114.8546, 42.0003], + [-115.2264, 41.9945], + [-117.0293, 42.0003], + [-118.0426, 41.9974], + [-118.7764, 41.993], + [-119.5064, 41.9925], + [-120.0003, 41.9953], + [-119.9984, 41.6905], + [-119.9999, 40.9331], + [-119.9955, 40.3085], + [-120.0053, 39.2875], + [-120.0009, 39.0005], + [-119.502818548, 38.65661886], + [-119.4492, 38.6196], + [-119.341981891, 38.544214822], + [-118.8591, 38.2047], + [-118.1091, 37.6663], + [-117.699558286, 37.366348171], + [-117.5108, 37.2281], + [-117.286724092, 37.061653047], + [-117.269365759, 37.048759017], + [-117.2394, 37.0265], + [-116.8912, 36.7648], + [-116.79135207, 36.688950431], + [-116.2954, 36.3122], + [-115.648, 35.8111], + [-115.2099, 35.4658], + [-115.193553028, 35.452773599], + [-115.065428477, 35.350675077], + [-114.9352, 35.2469], + [-114.888038436, 35.208708962], + [-114.6329, 35.0021], + [-114.6359, 35.0132], + [-114.6067, 35.0769], + [-114.6463, 35.0992], + [-114.5794, 35.1307], + [-114.5718, 35.1623], + [-114.5956, 35.3246], + [-114.6703, 35.4697], + [-114.6587, 35.6162], + [-114.7022, 35.7006], + [-114.7047, 35.9047], + [-114.7453, 35.9846], + [-114.735, 36.0542], + [-114.7421, 36.07], + [-114.743, 36.1007], + [-114.7005, 36.1101], + [-114.6907, 36.114], + [-114.6643, 36.1197], + [-114.6298, 36.1421], + [-114.5108, 36.1528], + [-114.5039, 36.1501], + [-114.44, 36.1273], + [-114.3738, 36.1438], + [-114.3156, 36.0668], + [-114.2241, 36.0145], + [-114.1474, 36.0305], + [-114.0694, 36.182], + [-114.0487, 36.1951], + [-114.051, 37], + [-114.050505283, 37.00000125] + ] + ] + }, + "properties": { + "id": "365df1eb-3279-470c-920f-61007bba30a8", + "code": "NV", + "name": "Nevada", + "abbreviation": "S-NV", + "parent_id": "9432f503-fcbe-4e87-8c25-56d19462434c" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.081792777, 45.306402189], + [-71.082, 45.3087], + [-71.1623, 45.2469], + [-71.23, 45.2503], + [-71.2839, 45.3023], + [-71.3603, 45.2686], + [-71.4132, 45.2202], + [-71.4342, 45.1202], + [-71.4847, 45.0809], + [-71.5101, 45.0156], + [-71.5047, 45.0079], + [-71.5286, 45.0026], + [-71.5428, 44.9837], + [-71.4969, 44.9075], + [-71.5497, 44.8627], + [-71.578, 44.7893], + [-71.6339, 44.75], + [-71.5386, 44.5829], + [-71.5957, 44.5189], + [-71.5819, 44.5006], + [-71.7033, 44.4138], + [-71.7956, 44.3949], + [-71.8196, 44.352], + [-72.0282, 44.3178], + [-72.0564, 44.2896], + [-72.0656, 44.2728], + [-72.0693, 44.1921], + [-72.0428, 44.1553], + [-72.0373, 44.0815], + [-72.0519, 44.0769], + [-72.1154, 43.9919], + [-72.0986, 43.955], + [-72.1728, 43.8813], + [-72.2043, 43.7703], + [-72.297, 43.7071], + [-72.3378, 43.5929], + [-72.3738, 43.5775], + [-72.3816, 43.4814], + [-72.4127, 43.3641], + [-72.3951, 43.3137], + [-72.4341, 43.2563], + [-72.4531, 43.1432], + [-72.4349, 43.1134], + [-72.4657, 43.0585], + [-72.4689, 42.9748], + [-72.53, 42.9552], + [-72.5294, 42.9111], + [-72.5377, 42.892], + [-72.5563, 42.8615], + [-72.5483, 42.8292], + [-72.5321, 42.7992], + [-72.4566, 42.7276], + [-71.6293, 42.7042], + [-71.2968, 42.6978], + [-71.2599, 42.7349], + [-71.1843, 42.7375], + [-71.1891, 42.7907], + [-71.1333, 42.8215], + [-71.066, 42.8063], + [-71.0482, 42.8467], + [-70.9718, 42.8678], + [-70.886, 42.8806], + [-70.8481, 42.8609], + [-70.8167, 42.8716], + [-70.8153, 42.8628], + [-70.8145, 42.887], + [-70.8269, 42.8875], + [-70.7108, 43.0425], + [-70.8106, 43.1178], + [-70.8531, 43.1172], + [-70.8331, 43.0603], + [-70.9167, 43.0558], + [-70.8656, 43.0892], + [-70.8689, 43.1244], + [-70.8306, 43.119], + [-70.835, 43.1489], + [-70.8314, 43.1819], + [-70.8202, 43.2088], + [-70.812136585, 43.220941463], + [-70.812230579, 43.223103306], + [-70.816033333, 43.229366667], + [-70.822675342, 43.237669178], + [-70.823818314, 43.238425014], + [-70.8397, 43.2434], + [-70.8608, 43.2572], + [-70.9335, 43.3358], + [-70.9744, 43.3521], + [-70.986, 43.4087], + [-70.9694, 43.429], + [-70.9559, 43.5223], + [-70.9743, 43.5724], + [-71.0079, 44.2451], + [-71.031, 44.6575], + [-71.0741, 45.2211], + [-71.0818, 45.3064], + [-71.081792777, 45.306402189] + ] + ] + }, + "properties": { + "id": "18a76d57-0c14-4536-a688-87d746899075", + "code": "NH", + "name": "New Hampshire", + "abbreviation": "S-NH", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-75.4672, 39.3722], + [-75.4333, 39.3939], + [-75.3276, 39.3405], + [-75.288, 39.2908], + [-75.1709, 39.2353], + [-75.1372, 39.1812], + [-75.1087, 39.2187], + [-75.0489, 39.2151], + [-74.8865, 39.1584], + [-74.9019, 39.0902], + [-74.957, 38.9983], + [-74.9725, 38.9387], + [-74.9117, 38.9308], + [-74.8339, 38.9908], + [-74.8044, 39.0333], + [-74.7619, 39.0603], + [-74.7961, 39.0928], + [-74.711, 39.1206], + [-74.6269, 39.2533], + [-74.6359, 39.3067], + [-74.5864, 39.3131], + [-74.5181, 39.3633], + [-74.4078, 39.3642], + [-74.4878, 39.395], + [-74.4139, 39.4772], + [-74.4168, 39.5436], + [-74.2981, 39.5381], + [-74.3381, 39.5686], + [-74.2202, 39.6441], + [-74.1686, 39.7125], + [-74.1969, 39.7442], + [-74.0728, 40.0006], + [-74.0923, 39.831], + [-74.0307, 40.1244], + [-73.9867, 40.2573], + [-73.9767, 40.3636], + [-74, 40.4118], + [-74.1349, 40.4566], + [-74.1928, 40.4419], + [-74.2614, 40.4647], + [-74.2533, 40.5517], + [-74.215, 40.5642], + [-74.19, 40.6442], + [-74.072, 40.6615], + [-74.0243, 40.7144], + [-73.97, 40.8164], + [-73.9214, 40.9083], + [-73.9057, 40.9994], + [-74.3259, 41.1823], + [-74.6955, 41.3576], + [-74.7506, 41.3455], + [-74.828, 41.29], + [-74.8598, 41.2193], + [-74.9196, 41.1416], + [-74.9771, 41.1114], + [-75.0265, 41.0416], + [-75.1326, 40.9903], + [-75.0537, 40.8656], + [-75.1339, 40.7754], + [-75.1721, 40.7761], + [-75.2039, 40.6927], + [-75.193, 40.5791], + [-75.0968, 40.5664], + [-75.0662, 40.5402], + [-75.0606, 40.4205], + [-74.9688, 40.401], + [-74.9411, 40.3419], + [-74.8836, 40.3092], + [-74.8374, 40.2478], + [-74.7759, 40.2183], + [-74.7277, 40.148], + [-74.8153, 40.1287], + [-74.8662, 40.0855], + [-74.9335, 40.0706], + [-75.0455, 40.013], + [-75.1384, 39.9444], + [-75.1402, 39.8901], + [-75.2202, 39.8624], + [-75.3544, 39.841], + [-75.4144, 39.8033], + [-75.4617, 39.7627], + [-75.5119, 39.673], + [-75.5603, 39.6255], + [-75.5154, 39.5814], + [-75.5322, 39.4983], + [-75.5622, 39.4706], + [-75.4672, 39.3722] + ] + ], + [ + [ + [-74.1189, 39.7706], + [-74.1419, 39.6958], + [-74.1806, 39.6622], + [-74.2373, 39.5583], + [-74.0997, 39.7564], + [-74.1189, 39.7706] + ] + ], + [ + [ + [-74.8025, 39.0303], + [-74.8647, 38.9417], + [-74.7869, 39.0014], + [-74.8025, 39.0303] + ] + ] + ] + }, + "properties": { + "id": "00d3ea82-29a2-4a67-96f6-2864ee3c1616", + "code": "NJ", + "name": "New Jersey", + "abbreviation": "S-NJ", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-109.05, 31.3328], + [-108.2085, 31.3334], + [-108.2084, 31.7838], + [-106.5291, 31.7838], + [-106.5706, 31.8102], + [-106.636, 31.8694], + [-106.6193, 32.0012], + [-105.2534, 32.0017], + [-104.7467, 32.0032], + [-103.0642, 31.9996], + [-103.0632, 33.0017], + [-103.0427, 34.0007], + [-103.0408, 36.5005], + [-103.0007, 36.5013], + [-103.000899764, 36.998412581], + [-103.0009, 36.999], + [-103.65304205, 36.997237454], + [-104.1849, 36.9958], + [-104.3313, 36.993], + [-105.1011, 36.9957], + [-105.76177659, 36.99698154], + [-105.8744, 36.9972], + [-106.8717, 36.9923], + [-106.8787, 36.999], + [-107.965, 36.9971], + [-109.0449, 36.9986], + [-109.0467, 33.2382], + [-109.05, 31.3328] + ] + ] + }, + "properties": { + "id": "f36f87b6-a76f-4b87-93cc-f5a4ccc57690", + "code": "NM", + "name": "New Mexico", + "abbreviation": "S-NM", + "parent_id": "9432f503-fcbe-4e87-8c25-56d19462434c" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-73.490103271, 42.049606044], + [-73.4901, 42.0497], + [-73.4981, 42.0496], + [-73.5084, 42.0858], + [-73.4822, 42.1648], + [-73.2675, 42.7452], + [-73.2754, 42.7456], + [-73.2789, 42.8337], + [-73.2506, 43.5108], + [-73.2581, 43.5617], + [-73.3056, 43.627], + [-73.3751, 43.6233], + [-73.4302, 43.5834], + [-73.4317, 43.6439], + [-73.356, 43.7651], + [-73.3933, 43.8209], + [-73.3783, 43.8758], + [-73.4101, 43.9351], + [-73.4107, 44.0189], + [-73.4434, 44.0526], + [-73.3927, 44.1912], + [-73.3163, 44.2541], + [-73.3374, 44.3638], + [-73.2947, 44.4384], + [-73.2998, 44.4804], + [-73.3812, 44.5893], + [-73.3889, 44.6335], + [-73.3645, 44.7409], + [-73.3369, 44.7839], + [-73.3813, 44.837], + [-73.3411, 44.9199], + [-73.3442, 45.0103], + [-73.8279, 45.0031], + [-74.1501, 44.9912], + [-74.3476, 44.9908], + [-74.6457, 44.9992], + [-74.7334, 44.9905], + [-74.8262, 45.0158], + [-74.9086, 44.9867], + [-74.9922, 44.9777], + [-75.3077, 44.841], + [-75.5457, 44.687], + [-75.7674, 44.5205], + [-75.824, 44.431], + [-75.9106, 44.3715], + [-76.1629, 44.2816], + [-76.1656, 44.241], + [-76.2437, 44.2051], + [-76.3157, 44.1987], + [-76.3543, 44.1344], + [-76.4411, 44.0944], + [-76.7983, 43.6314], + [-78.6812, 43.6336], + [-79.2028, 43.451], + [-79.0566, 43.2488], + [-79.044, 43.1499], + [-79.0748, 43.0813], + [-79.0017, 43.0582], + [-79.0072, 42.9834], + [-78.9219, 42.9486], + [-78.8598, 42.8398], + [-78.8557, 42.7817], + [-78.9186, 42.7382], + [-79.0491, 42.6893], + [-79.1469, 42.556], + [-79.2484, 42.5327], + [-79.3459, 42.493], + [-79.4352, 42.4225], + [-79.716, 42.2837], + [-79.7625, 42.2686], + [-79.7624, 41.9985], + [-78.306, 42.0001], + [-77.7031, 41.9991], + [-76.8966, 42.0026], + [-76.3826, 41.9989], + [-75.3545, 41.9992], + [-75.3403, 41.9901], + [-75.3422, 41.9769], + [-75.3385, 41.9715], + [-75.3249, 41.9648], + [-75.3077, 41.9492], + [-75.2787, 41.9391], + [-75.2591, 41.8653], + [-75.2032, 41.8695], + [-75.1158, 41.8443], + [-75.0561, 41.7583], + [-75.0446, 41.6189], + [-75.0729, 41.6054], + [-74.9844, 41.5055], + [-74.9859, 41.483], + [-74.9799, 41.4788], + [-74.9149, 41.474], + [-74.8866, 41.4391], + [-74.8062, 41.4394], + [-74.7421, 41.4094], + [-74.7154, 41.3917], + [-74.7105, 41.3842], + [-74.6955, 41.3576], + [-74.3259, 41.1823], + [-73.9057, 40.9994], + [-73.9214, 40.9083], + [-73.97, 40.8164], + [-74.0243, 40.7144], + [-73.8971, 40.8058], + [-73.8044, 40.8119], + [-73.8003, 40.8478], + [-73.6606, 40.9889], + [-73.657, 41.0119], + [-73.7297, 41.1009], + [-73.4838, 41.2136], + [-73.5523, 41.2933], + [-73.5333, 41.4977], + [-73.5038, 41.8662], + [-73.4923, 41.9865], + [-73.490103271, 42.049606044] + ] + ], + [ + [ + [-73.4483, 40.6536], + [-73.2784, 40.6839], + [-73.2256, 40.7181], + [-73.1485, 40.6984], + [-73.0206, 40.7486], + [-72.8694, 40.7392], + [-72.7238, 40.8089], + [-72.6708, 40.7848], + [-72.4738, 40.8389], + [-71.9575, 41.0283], + [-71.8741, 41.0517], + [-71.9603, 41.0702], + [-72.0222, 41.0214], + [-72.1103, 40.9947], + [-72.1594, 41.0539], + [-72.2789, 41.0003], + [-72.3717, 40.9956], + [-72.4425, 40.9456], + [-72.4747, 40.8994], + [-72.6125, 40.9083], + [-72.5267, 40.98], + [-72.4564, 41.0014], + [-72.4022, 41.0756], + [-72.2783, 41.1593], + [-72.3536, 41.1403], + [-72.3967, 41.0964], + [-72.6369, 40.9814], + [-72.778, 40.9652], + [-73.02, 40.9628], + [-73.1187, 40.9778], + [-73.1711, 40.9042], + [-73.2939, 40.9244], + [-73.4383, 40.9009], + [-73.4853, 40.9473], + [-73.4886, 40.8775], + [-73.5414, 40.8769], + [-73.5657, 40.9155], + [-73.6764, 40.8575], + [-73.7297, 40.8664], + [-73.7658, 40.8121], + [-73.8697, 40.7792], + [-73.936, 40.7775], + [-73.9728, 40.7025], + [-73.9984, 40.7014], + [-74.0403, 40.615], + [-74, 40.5711], + [-73.8761, 40.5847], + [-73.897, 40.6237], + [-73.8234, 40.6493], + [-73.79, 40.5994], + [-73.7079, 40.6124], + [-73.6384, 40.6], + [-73.5952, 40.6338], + [-73.4483, 40.6536] + ] + ], + [ + [ + [-74.0791, 40.6478], + [-74.18, 40.6453], + [-74.1994, 40.5735], + [-74.2486, 40.5439], + [-74.2463, 40.4963], + [-74.1051, 40.5538], + [-74.0527, 40.6014], + [-74.0791, 40.6478] + ] + ], + [ + [ + [-72.3297, 41.1058], + [-72.384, 41.0691], + [-72.3106, 41.0542], + [-72.3297, 41.1058] + ] + ] + ] + }, + "properties": { + "id": "7a95c4d4-76a6-4239-9570-4382c62f1c59", + "code": "NY", + "name": "New York", + "abbreviation": "S-NY", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-83.1052, 35.002], + [-82.7808, 35.0865], + [-82.7547, 35.0687], + [-82.6923, 35.1186], + [-82.6332, 35.1258], + [-82.455, 35.1796], + [-82.3905, 35.2161], + [-82.3714, 35.1814], + [-82.2861, 35.198], + [-81.4514, 35.169], + [-81.0448, 35.1494], + [-81.0419, 35.0432], + [-80.9312, 35.1049], + [-80.7828, 34.9349], + [-80.796, 34.8175], + [-80.32, 34.8137], + [-79.6753, 34.8046], + [-79.1384, 34.3616], + [-78.5782, 33.8825], + [-78.5938, 33.8736], + [-78.32, 33.9167], + [-78.2275, 33.9228], + [-78.0761, 33.9029], + [-77.9936, 33.9297], + [-77.9539, 33.975], + [-77.9403, 34.0781], + [-77.9683, 34.1625], + [-77.9253, 34.1272], + [-77.925, 34.0683], + [-77.9178, 34.0525], + [-77.8914, 34.0594], + [-77.8592, 34.1527], + [-77.8133, 34.2194], + [-77.7017, 34.344], + [-77.5309, 34.4584], + [-77.3172, 34.5461], + [-77.0898, 34.7151], + [-77.0878, 34.673], + [-76.8933, 34.725], + [-76.6931, 34.7211], + [-76.7375, 34.7792], + [-76.6589, 34.7475], + [-76.6908, 34.7139], + [-76.6172, 34.7075], + [-76.6094, 34.8064], + [-76.5797, 34.7228], + [-76.5067, 34.7256], + [-76.3981, 34.8658], + [-76.3314, 34.885], + [-76.3281, 34.9369], + [-76.2769, 34.9603], + [-76.3108, 35.0064], + [-76.3444, 34.9711], + [-76.4564, 34.94], + [-76.425, 35.0012], + [-76.4359, 35.0584], + [-76.4719, 35.0724], + [-76.4841, 34.9853], + [-76.518, 35.0037], + [-76.5902, 34.9783], + [-76.6302, 34.9887], + [-76.7608, 34.9154], + [-76.8532, 34.937], + [-76.9752, 35.0016], + [-77.047, 35.1041], + [-76.9252, 35.0515], + [-76.8039, 34.9639], + [-76.7131, 35.0047], + [-76.5701, 35.0985], + [-76.5439, 35.1423], + [-76.6525, 35.1637], + [-76.5989, 35.1881], + [-76.59, 35.2417], + [-76.4793, 35.2471], + [-76.4969, 35.3108], + [-76.7356, 35.3554], + [-76.844, 35.4241], + [-76.9262, 35.4488], + [-76.9674, 35.4331], + [-76.9786, 35.4837], + [-76.7583, 35.4193], + [-76.7108, 35.4289], + [-76.576, 35.3881], + [-76.5985, 35.4819], + [-76.6516, 35.5455], + [-76.537, 35.5286], + [-76.4539, 35.5522], + [-76.4721, 35.511], + [-76.5625, 35.492], + [-76.5401, 35.4096], + [-76.4821, 35.3947], + [-76.3891, 35.4273], + [-76.3019, 35.3519], + [-76.2603, 35.3761], + [-76.2043, 35.3383], + [-76.0961, 35.3618], + [-75.9994, 35.4553], + [-75.9442, 35.5358], + [-75.8834, 35.5832], + [-75.7744, 35.5814], + [-75.7339, 35.6308], + [-75.7795, 35.6875], + [-75.7169, 35.6938], + [-75.7387, 35.7507], + [-75.7281, 35.8244], + [-75.7827, 35.9332], + [-75.9079, 35.9324], + [-75.9854, 35.8891], + [-75.9757, 35.8391], + [-75.9992, 35.695], + [-76.0219, 35.6508], + [-76.0611, 35.7176], + [-76.0642, 35.8536], + [-76.0133, 35.9236], + [-76.073, 35.9229], + [-76.0543, 35.9874], + [-76.1481, 35.9956], + [-76.2703, 35.9726], + [-76.3494, 35.9419], + [-76.4058, 35.9822], + [-76.525, 35.9447], + [-76.6639, 35.9328], + [-76.7247, 35.9554], + [-76.7036, 36.0042], + [-76.7555, 36.1517], + [-76.7505, 36.2094], + [-76.6807, 36.3006], + [-76.7224, 36.1539], + [-76.6919, 36.0661], + [-76.638, 36.0359], + [-76.6077, 36.0561], + [-76.5736, 36.0092], + [-76.4631, 36.0231], + [-76.4043, 36.0788], + [-76.3078, 36.0922], + [-76.4352, 36.1628], + [-76.3933, 36.1694], + [-76.215, 36.0964], + [-76.2465, 36.1586], + [-76.1668, 36.1237], + [-76.0615, 36.146], + [-76.077, 36.1923], + [-76.1951, 36.2967], + [-76.1363, 36.2884], + [-76.0181, 36.187], + [-75.925, 36.1638], + [-75.9542, 36.2038], + [-75.9762, 36.3137], + [-75.8763, 36.1843], + [-75.8632, 36.1215], + [-75.7958, 36.0714], + [-75.8971, 36.3233], + [-76.0006, 36.4286], + [-76.0405, 36.5022], + [-76.0804, 36.4993], + [-76.1527, 36.5504], + [-76.9162, 36.5511], + [-76.9174, 36.544], + [-78.125, 36.5463], + [-78.5095, 36.5421], + [-78.9763, 36.5447], + [-79.5112, 36.5391], + [-80.2775, 36.5433], + [-80.6523, 36.5584], + [-80.8632, 36.5598], + [-81.3698, 36.5735], + [-81.6758, 36.589], + [-81.7081, 36.5348], + [-81.6969, 36.4686], + [-81.739, 36.4072], + [-81.7463, 36.3359], + [-81.7962, 36.3596], + [-81.9131, 36.2949], + [-82.032, 36.1211], + [-82.1319, 36.1069], + [-82.1498, 36.1467], + [-82.2212, 36.1567], + [-82.2449, 36.1334], + [-82.3526, 36.1172], + [-82.407, 36.0871], + [-82.4603, 36.0071], + [-82.5541, 35.9575], + [-82.6081, 35.9718], + [-82.5899, 36.0319], + [-82.6336, 36.0659], + [-82.7772, 35.9946], + [-82.821, 35.9254], + [-82.8648, 35.9517], + [-82.9174, 35.9286], + [-82.9177, 35.8413], + [-82.9896, 35.7746], + [-83.0743, 35.7894], + [-83.2312, 35.7292], + [-83.296, 35.6594], + [-83.3444, 35.6627], + [-83.4489, 35.6078], + [-83.5047, 35.5627], + [-83.5976, 35.5781], + [-83.7626, 35.5647], + [-83.8787, 35.5197], + [-84.0205, 35.4095], + [-84.024, 35.2952], + [-84.0876, 35.2544], + [-84.1859, 35.2428], + [-84.2279, 35.2678], + [-84.2893, 35.2257], + [-84.321, 34.989], + [-83.6216, 34.9871], + [-83.6213, 34.9916], + [-83.1052, 35.002] + ] + ], + [ + [ + [-75.7711, 36.2267], + [-75.8064, 36.3128], + [-75.8684, 36.5505], + [-75.8843, 36.4732], + [-75.8434, 36.4222], + [-75.8211, 36.2914], + [-75.774, 36.2273], + [-75.7448, 36.1392], + [-75.7375, 36.0425], + [-75.6864, 36.0119], + [-75.5708, 35.8642], + [-75.7275, 36.1289], + [-75.7711, 36.2267] + ] + ], + [ + [ + [-75.9623, 36.5504], + [-76.013, 36.5505], + [-75.9886, 36.4975], + [-75.9119, 36.495], + [-75.9218, 36.5506], + [-75.9623, 36.5504] + ] + ], + [ + [ + [-75.5186, 35.2769], + [-75.6372, 35.2281], + [-75.5294, 35.2239], + [-75.5186, 35.2769] + ] + ], + [ + [ + [-76.1509, 36.5504], + [-76.0558, 36.512], + [-76.0358, 36.5508], + [-76.1509, 36.5504] + ] + ], + [ + [ + [-77.9503, 33.9219], + [-78.0088, 33.8673], + [-77.9614, 33.8433], + [-77.9503, 33.9219] + ] + ], + [ + [ + [-77.8769, 34.0728], + [-77.8892, 34.0569], + [-77.9188, 34.0512], + [-77.9139, 33.9719], + [-77.8769, 34.0728] + ] + ], + [ + [ + [-75.7044, 35.9386], + [-75.6617, 35.8686], + [-75.6461, 35.91], + [-75.7044, 35.9386] + ] + ] + ] + }, + "properties": { + "id": "815863cc-0f43-4662-9680-cc78b5ea67d1", + "code": "NC", + "name": "North Carolina", + "abbreviation": "S-NC", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-97.2348, 48.9952], + [-97.2295, 49], + [-100.4701, 49.0001], + [-104.0495976, 49], + [-104.0448, 48.0005], + [-104.0414, 47.9112], + [-104.0455, 47.1872], + [-104.044522817, 46.122754864], + [-104.04375507, 45.943800015], + [-100.5122, 45.9439], + [-99.7212, 45.9421], + [-98.3537, 45.9355], + [-96.5613, 45.9356], + [-96.5577, 45.9425], + [-96.5644, 45.9607], + [-96.5615, 46.0537], + [-96.5552, 46.0731], + [-96.563, 46.1155], + [-96.5688, 46.1333], + [-96.5785, 46.1478], + [-96.5977, 46.2226], + [-96.6022, 46.3298], + [-96.6682, 46.3794], + [-96.7376, 46.4801], + [-96.7563, 46.5763], + [-96.8026, 46.6564], + [-96.7856, 46.7146], + [-96.7821, 46.7225], + [-96.7872, 46.7251], + [-96.7855, 46.7329], + [-96.8008, 46.8155], + [-96.7667, 46.8804], + [-96.8206, 46.9694], + [-96.8175, 47.1102], + [-96.8435, 47.241], + [-96.8346, 47.3394], + [-96.8605, 47.4371], + [-96.855, 47.5047], + [-96.8533, 47.5112], + [-96.8448, 47.5147], + [-96.868, 47.5196], + [-96.8717, 47.5257], + [-96.8642, 47.5402], + [-96.8527, 47.5384], + [-96.8512, 47.5881], + [-96.8975, 47.6783], + [-97.0542, 47.9454], + [-97.0749, 48.0504], + [-97.1227, 48.1056], + [-97.149, 48.1833], + [-97.1206, 48.2796], + [-97.1606, 48.3935], + [-97.1268, 48.4545], + [-97.1571, 48.4747], + [-97.1712, 48.5572], + [-97.0935, 48.684], + [-97.1533, 48.7544], + [-97.1788, 48.8741], + [-97.2128, 48.9061], + [-97.2348, 48.9952] + ] + ] + }, + "properties": { + "id": "7175a692-4a93-4da2-aa68-7653f3f2e417", + "code": "ND", + "name": "North Dakota", + "abbreviation": "S-ND", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-84.8191, 39.1069], + [-84.803, 39.11], + [-84.7596, 39.1414], + [-84.6237, 39.0736], + [-84.4738, 39.1184], + [-84.4403, 39.1096], + [-84.4076, 39.046], + [-84.3284, 39.0285], + [-84.2383, 38.8947], + [-84.2295, 38.8235], + [-84.2185, 38.8097], + [-84.1762, 38.7966], + [-84.0775, 38.7728], + [-83.9597, 38.7873], + [-83.8686, 38.7611], + [-83.7547, 38.6494], + [-83.6573, 38.6263], + [-83.6217, 38.6811], + [-83.5393, 38.7011], + [-83.33, 38.6386], + [-83.287, 38.5998], + [-83.2468, 38.6278], + [-83.1519, 38.6206], + [-83.1109, 38.6708], + [-83.0137, 38.7296], + [-82.9665, 38.728], + [-82.9254, 38.7474], + [-82.884, 38.7523], + [-82.8699, 38.735], + [-82.8556, 38.6128], + [-82.823, 38.5743], + [-82.7806, 38.559], + [-82.7243, 38.5581], + [-82.6853, 38.5305], + [-82.6521, 38.4912], + [-82.6115, 38.4718], + [-82.5928, 38.4186], + [-82.558, 38.4025], + [-82.4911, 38.4171], + [-82.3183, 38.455], + [-82.292, 38.5731], + [-82.1973, 38.592], + [-82.1694, 38.6214], + [-82.1728, 38.6394], + [-82.1814, 38.7112], + [-82.2173, 38.7882], + [-82.1431, 38.8407], + [-82.1428, 38.887], + [-82.0891, 38.9725], + [-82.0361, 39.0248], + [-81.9315, 38.9874], + [-81.8995, 38.9318], + [-81.9224, 38.8879], + [-81.8543, 38.8939], + [-81.8236, 38.946], + [-81.7814, 38.9249], + [-81.7637, 39.0209], + [-81.806, 39.0841], + [-81.7397, 39.1104], + [-81.752, 39.1819], + [-81.6504, 39.2784], + [-81.5642, 39.2747], + [-81.5531, 39.3441], + [-81.4329, 39.4073], + [-81.3835, 39.3438], + [-81.2498, 39.3883], + [-81.127, 39.448], + [-81.0866, 39.4989], + [-80.9312, 39.6141], + [-80.8711, 39.6329], + [-80.8292, 39.716], + [-80.8668, 39.7689], + [-80.833, 39.7934], + [-80.8056, 39.905], + [-80.7531, 39.9193], + [-80.731, 40.0867], + [-80.6564, 40.2415], + [-80.6172, 40.2691], + [-80.6, 40.3297], + [-80.6131, 40.4066], + [-80.597, 40.4644], + [-80.6626, 40.5746], + [-80.6235, 40.6208], + [-80.5191, 40.6385], + [-80.5177, 40.8532], + [-80.5181, 41.9782], + [-80.311, 42.0467], + [-80.0312, 42.1557], + [-79.9382, 42.2047], + [-79.9027, 42.2149], + [-79.8615, 42.2243], + [-79.8296, 42.2353], + [-79.7753, 42.2604], + [-79.7625, 42.2686], + [-79.716, 42.2837], + [-79.4352, 42.4225], + [-79.3459, 42.493], + [-79.2484, 42.5327], + [-79.1469, 42.556], + [-79.0491, 42.6893], + [-78.9186, 42.7382], + [-78.8557, 42.7817], + [-78.8598, 42.8398], + [-78.9219, 42.9486], + [-78.9061, 42.9056], + [-78.9369, 42.831], + [-79.7627, 42.5105], + [-80.0733, 42.3926], + [-81.2606, 42.2055], + [-81.6388, 42.0214], + [-82.4077, 41.6769], + [-82.6812, 41.6773], + [-83.0678, 41.8626], + [-83.1466, 42.0332], + [-83.1231, 42.1205], + [-83.1228, 42.2301], + [-83.0694, 42.3093], + [-83.018, 42.3295], + [-83.0662, 42.3208], + [-83.1123, 42.2675], + [-83.13, 42.247], + [-83.1658, 42.1739], + [-83.2068, 41.9995], + [-83.2927, 41.9453], + [-83.4416, 41.8027], + [-83.4304, 41.7633], + [-83.484, 41.7328], + [-83.9997, 41.7157], + [-84.8067, 41.6958], + [-84.8023, 40.7281], + [-84.8079, 40.1741], + [-84.8131, 40.006], + [-84.8191, 39.1069] + ], + [ + [-83.1683, 42.0812], + [-83.1711, 42.0754], + [-83.1766, 42.0769], + [-83.1763, 42.0823], + [-83.1683, 42.0812] + ], + [ + [-83.1692, 42.0899], + [-83.1756, 42.0982], + [-83.1735, 42.1277], + [-83.141, 42.1228], + [-83.1457, 42.1016], + [-83.1616, 42.0929], + [-83.1692, 42.0899] + ] + ] + }, + "properties": { + "id": "b02369d3-7f37-4159-b942-3f0dff366cca", + "code": "OH", + "name": "Ohio", + "abbreviation": "S-OH", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-94.6182, 36.4984], + [-94.6196, 36.7664], + [-94.619, 37], + [-95.0336, 36.9986], + [-95.5236, 37.0009], + [-97.1468, 36.9994], + [-99.0005, 37.0008], + [-100.0902, 36.9983], + [-100.9441, 36.9988], + [-102.041933879, 36.9922022], + [-102.0423, 36.9922], + [-102.4775, 36.9963], + [-102.7859, 36.9988], + [-103.000899764, 36.998412581], + [-103.0007, 36.5013], + [-102.1618, 36.5004], + [-101.87, 36.5034], + [-100.9524, 36.4998], + [-100.0038, 36.4998], + [-100.001, 35.64], + [-100.0014, 34.5583], + [-99.9487, 34.5803], + [-99.8671, 34.5364], + [-99.8011, 34.4588], + [-99.7146, 34.394], + [-99.7054, 34.384], + [-99.6074, 34.3717], + [-99.5793, 34.4149], + [-99.3973, 34.3813], + [-99.3704, 34.4578], + [-99.2125, 34.3366], + [-99.1897, 34.2156], + [-99.0424, 34.1991], + [-98.9523, 34.2135], + [-98.8729, 34.1565], + [-98.8298, 34.162], + [-98.739, 34.1268], + [-98.6481, 34.1644], + [-98.5498, 34.1332], + [-98.486, 34.0615], + [-98.3998, 34.0993], + [-98.3673, 34.1558], + [-98.1693, 34.1139], + [-98.1274, 34.1516], + [-98.093, 34.1342], + [-98.1215, 34.0773], + [-98.0871, 34.0047], + [-97.9487, 33.9869], + [-97.9846, 33.9007], + [-97.8729, 33.8525], + [-97.7805, 33.8975], + [-97.6752, 33.9901], + [-97.5897, 33.9538], + [-97.5849, 33.9003], + [-97.4974, 33.9178], + [-97.4538, 33.8986], + [-97.4573, 33.8354], + [-97.4183, 33.8173], + [-97.3539, 33.8354], + [-97.3412, 33.872], + [-97.2528, 33.8685], + [-97.2249, 33.9121], + [-97.1837, 33.896], + [-97.1939, 33.768], + [-97.1234, 33.7163], + [-97.0915, 33.734], + [-97.0938, 33.7982], + [-97.0511, 33.8167], + [-96.9813, 33.8936], + [-96.9954, 33.944], + [-96.9894, 33.9552], + [-96.981, 33.9442], + [-96.9155, 33.9552], + [-96.8796, 33.8699], + [-96.7852, 33.8627], + [-96.7175, 33.8323], + [-96.6758, 33.9114], + [-96.6353, 33.8975], + [-96.59, 33.8961], + [-96.6164, 33.8634], + [-96.6227, 33.8523], + [-96.5322, 33.8214], + [-96.502, 33.7741], + [-96.4241, 33.7772], + [-96.3605, 33.6903], + [-96.3196, 33.6957], + [-96.292, 33.7679], + [-96.1857, 33.7549], + [-96.1455, 33.8391], + [-96.049, 33.8367], + [-95.9507, 33.8579], + [-95.9353, 33.8873], + [-95.8308, 33.8354], + [-95.7721, 33.8436], + [-95.7464, 33.8962], + [-95.6985, 33.8848], + [-95.5971, 33.9415], + [-95.5406, 33.8795], + [-95.4136, 33.8667], + [-95.299, 33.8724], + [-95.2257, 33.9605], + [-95.1912, 33.9522], + [-95.0257, 33.8589], + [-94.9673, 33.8586], + [-94.9516, 33.8113], + [-94.8667, 33.7441], + [-94.7474, 33.7243], + [-94.6648, 33.6619], + [-94.639, 33.6646], + [-94.5537, 33.6273], + [-94.534, 33.6409], + [-94.4995, 33.6217], + [-94.4885, 33.6279], + [-94.4863, 33.6411], + [-94.4638, 34.5065], + [-94.4307, 35.4], + [-94.4947, 35.7594], + [-94.5338, 36.0093], + [-94.6182, 36.4984] + ] + ] + }, + "properties": { + "id": "92b58324-4da5-414f-a302-72a126541b1b", + "code": "OK", + "name": "Oklahoma", + "abbreviation": "S-OK", + "parent_id": "d6157b38-3f86-49ef-8acd-93287d33c0d0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-120.0003, 41.9953], + [-119.5064, 41.9925], + [-118.7764, 41.993], + [-118.0426, 41.9974], + [-117.0293, 42.0003], + [-117.0271, 43.8082], + [-117.0203, 43.8594], + [-116.962, 43.9126], + [-116.9728, 43.9678], + [-116.936, 43.9916], + [-116.9689, 44.0873], + [-116.9196, 44.1076], + [-116.8935, 44.1703], + [-116.9664, 44.1964], + [-116.971, 44.2348], + [-117.052, 44.2329], + [-117.0924, 44.2718], + [-117.181, 44.2644], + [-117.2181, 44.3018], + [-117.1896, 44.3309], + [-117.2402, 44.3893], + [-117.213, 44.4282], + [-117.224, 44.4799], + [-117.1473, 44.5352], + [-117.1414, 44.57], + [-117.0285, 44.7511], + [-116.9352, 44.783], + [-116.8552, 44.8816], + [-116.833, 44.9386], + [-116.8413, 45.0287], + [-116.7284, 45.145], + [-116.667, 45.3271], + [-116.5849, 45.4414], + [-116.5203, 45.5553], + [-116.4616, 45.6093], + [-116.5341, 45.6925], + [-116.5345, 45.7349], + [-116.5924, 45.7793], + [-116.6623, 45.7812], + [-116.6935, 45.818], + [-116.7614, 45.8166], + [-116.789, 45.8586], + [-116.866, 45.9152], + [-116.9101, 45.9902], + [-116.9125, 45.9972], + [-116.912940083, 45.9971998], + [-117.3534, 45.997], + [-117.7882, 46.0018], + [-118.9857, 46.0036], + [-119.0284, 45.9679], + [-119.185, 45.9265], + [-119.26, 45.9394], + [-119.5059, 45.9054], + [-119.6103, 45.9167], + [-119.6765, 45.8572], + [-119.8301, 45.848], + [-119.978, 45.8253], + [-120.1769, 45.7587], + [-120.2005, 45.7308], + [-120.492, 45.6971], + [-120.554, 45.7401], + [-120.631, 45.7478], + [-120.6896, 45.7173], + [-120.8492, 45.6744], + [-120.9011, 45.6453], + [-121.079, 45.6538], + [-121.1763, 45.6064], + [-121.2167, 45.6719], + [-121.3455, 45.7066], + [-121.4183, 45.6928], + [-121.5342, 45.7267], + [-121.7104, 45.6958], + [-121.8091, 45.7091], + [-121.8991, 45.6784], + [-121.909, 45.6552], + [-122.2668, 45.5598], + [-122.2903, 45.5627], + [-122.367, 45.5822], + [-122.4062, 45.5858], + [-122.4386, 45.5799], + [-122.6181, 45.6174], + [-122.745, 45.6533], + [-122.7618, 45.67], + [-122.7587, 45.7688], + [-122.7883, 45.815], + [-122.7779, 45.8719], + [-122.8111, 45.9629], + [-122.8753, 46.0383], + [-122.8723, 46.0809], + [-122.9392, 46.1003], + [-123.0448, 46.1662], + [-123.0641, 46.1741], + [-123.0912, 46.1772], + [-123.1246, 46.1912], + [-123.1595, 46.1938], + [-123.2832, 46.1519], + [-123.4074, 46.2135], + [-123.4572, 46.2687], + [-123.4976, 46.2738], + [-123.6126, 46.1874], + [-123.7325, 46.1736], + [-123.7679, 46.205], + [-123.855, 46.1572], + [-123.9526, 46.2078], + [-123.9828, 46.2039], + [-123.9329, 46.0674], + [-123.9389, 45.9766], + [-123.9973, 45.9454], + [-123.9632, 45.8976], + [-123.9693, 45.7808], + [-123.933, 45.6917], + [-123.9575, 45.5709], + [-123.8746, 45.4988], + [-123.944, 45.5072], + [-123.9799, 45.4866], + [-123.9314, 45.4037], + [-123.9778, 45.3385], + [-123.9619, 45.2797], + [-123.9705, 45.1583], + [-124.0122, 45.0772], + [-124.0089, 45.0122], + [-124.0311, 44.9033], + [-124.0764, 44.7719], + [-124.0575, 44.6596], + [-124.0864, 44.4856], + [-124.0808, 44.4256], + [-124.0998, 44.3342], + [-124.1225, 44.0927], + [-124.1642, 43.8289], + [-124.2286, 43.5689], + [-124.2634, 43.483], + [-124.3336, 43.3611], + [-124.3858, 43.3306], + [-124.3814, 43.2689], + [-124.4753, 42.9622], + [-124.5558, 42.8383], + [-124.5138, 42.7324], + [-124.4739, 42.7333], + [-124.4136, 42.6592], + [-124.39, 42.57], + [-124.4344, 42.4322], + [-124.4325, 42.3203], + [-124.4144, 42.2519], + [-124.3614, 42.1808], + [-124.3523, 42.1005], + [-124.3003, 42.0514], + [-124.2117, 41.9997], + [-123.6563, 41.9959], + [-123.3361, 41.9987], + [-123.1379, 42.0084], + [-123.0508, 42.0028], + [-122.3503, 42.0098], + [-121.0015, 41.9933], + [-120.0003, 41.9953] + ], + [ + [-122.8784, 46.0694], + [-122.8742, 46.0616], + [-122.876, 46.057], + [-122.8786, 46.057], + [-122.8851, 46.0734], + [-122.8784, 46.0694] + ], + [ + [-122.4385, 45.5776], + [-122.4041, 45.5826], + [-122.3982, 45.5782], + [-122.4104, 45.5743], + [-122.4385, 45.5776] + ], + [ + [-122.2849, 45.5532], + [-122.3273, 45.5576], + [-122.33, 45.5608], + [-122.2902, 45.5581], + [-122.2849, 45.5532] + ] + ] + }, + "properties": { + "id": "707fc3c6-fe74-4c41-89ae-6ab274acb5e3", + "code": "OR", + "name": "Oregon", + "abbreviation": "S-OR", + "parent_id": "da91c585-dacb-46b4-998a-dabe27e6d774" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-75.787500343, 39.723058306], + [-75.7723, 39.7231], + [-75.7177, 39.7912], + [-75.6464, 39.827], + [-75.5307, 39.8401], + [-75.4144, 39.8033], + [-75.3544, 39.841], + [-75.2202, 39.8624], + [-75.1402, 39.8901], + [-75.1384, 39.9444], + [-75.0455, 40.013], + [-74.9335, 40.0706], + [-74.8662, 40.0855], + [-74.8153, 40.1287], + [-74.7277, 40.148], + [-74.7759, 40.2183], + [-74.8374, 40.2478], + [-74.8836, 40.3092], + [-74.9411, 40.3419], + [-74.9688, 40.401], + [-75.0606, 40.4205], + [-75.0662, 40.5402], + [-75.0968, 40.5664], + [-75.193, 40.5791], + [-75.2039, 40.6927], + [-75.1721, 40.7761], + [-75.1339, 40.7754], + [-75.0537, 40.8656], + [-75.1326, 40.9903], + [-75.0265, 41.0416], + [-74.9771, 41.1114], + [-74.9196, 41.1416], + [-74.8598, 41.2193], + [-74.828, 41.29], + [-74.7506, 41.3455], + [-74.6955, 41.3576], + [-74.7105, 41.3842], + [-74.7154, 41.3917], + [-74.7421, 41.4094], + [-74.8062, 41.4394], + [-74.8866, 41.4391], + [-74.9149, 41.474], + [-74.9799, 41.4788], + [-74.9859, 41.483], + [-74.9844, 41.5055], + [-75.0729, 41.6054], + [-75.0446, 41.6189], + [-75.0561, 41.7583], + [-75.1158, 41.8443], + [-75.2032, 41.8695], + [-75.2591, 41.8653], + [-75.2787, 41.9391], + [-75.3077, 41.9492], + [-75.3249, 41.9648], + [-75.3385, 41.9715], + [-75.3422, 41.9769], + [-75.3403, 41.9901], + [-75.3545, 41.9992], + [-76.3826, 41.9989], + [-76.8966, 42.0026], + [-77.7031, 41.9991], + [-78.306, 42.0001], + [-79.7624, 41.9985], + [-79.7625, 42.2686], + [-79.7753, 42.2604], + [-79.8296, 42.2353], + [-79.8615, 42.2243], + [-79.9027, 42.2149], + [-79.9382, 42.2047], + [-80.0312, 42.1557], + [-80.311, 42.0467], + [-80.5181, 41.9782], + [-80.5177, 40.8532], + [-80.5191, 40.6385], + [-80.5196, 39.9639], + [-80.5171, 39.7212], + [-79.4774, 39.7216], + [-79.136094902, 39.722699288], + [-77.938, 39.724], + [-77.1212, 39.7194], + [-75.787500343, 39.723058306] + ] + ] + }, + "properties": { + "id": "0c5b4f3a-eacb-40ff-8efb-e03428c6c830", + "code": "PA", + "name": "Pennsylvania", + "abbreviation": "S-PA", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-71.8397, 41.3613], + [-71.8276, 41.3388], + [-71.852, 41.3097], + [-71.7147, 41.3305], + [-71.5295, 41.3769], + [-71.487, 41.3616], + [-71.4217, 41.4711], + [-71.4092, 41.6631], + [-71.3802, 41.7271], + [-71.393, 41.8179], + [-71.3377, 41.7248], + [-71.2799, 41.7415], + [-71.3071, 41.673], + [-71.2691, 41.6507], + [-71.2277, 41.7151], + [-71.3314, 41.7897], + [-71.3406, 41.8093], + [-71.3386, 41.8983], + [-71.3824, 41.8915], + [-71.3797, 42.0191], + [-71.7979, 42.0089], + [-71.7882, 41.6387], + [-71.7977, 41.4187], + [-71.818, 41.4199], + [-71.8406, 41.4094], + [-71.8349, 41.3817], + [-71.8397, 41.3613] + ] + ], + [ + [ + [-71.1989, 41.6783], + [-71.2215, 41.5607], + [-71.176, 41.4589], + [-71.1206, 41.4956], + [-71.1332, 41.6595], + [-71.1989, 41.6783] + ] + ], + [ + [ + [-71.2438, 41.4995], + [-71.2397, 41.617], + [-71.2747, 41.6207], + [-71.3235, 41.515], + [-71.2966, 41.4841], + [-71.2438, 41.4995] + ] + ], + [ + [ + [-71.576, 41.2305], + [-71.6129, 41.1569], + [-71.5501, 41.1519], + [-71.576, 41.2305] + ] + ] + ] + }, + "properties": { + "id": "8698ded0-2bbf-4a16-8ff9-0067883b92b4", + "code": "RI", + "name": "Rhode Island", + "abbreviation": "S-RI", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-80.9716, 32.0741], + [-80.915, 32.0842], + [-80.9271, 32.1258], + [-80.8373, 32.2144], + [-80.7908, 32.2028], + [-80.7813, 32.2602], + [-80.7597, 32.2767], + [-80.8444, 32.3831], + [-80.8172, 32.41], + [-80.8275, 32.4864], + [-80.7883, 32.4967], + [-80.7836, 32.5289], + [-80.7642, 32.5403], + [-80.7486, 32.5428], + [-80.7361, 32.5367], + [-80.6731, 32.5244], + [-80.6519, 32.5108], + [-80.6303, 32.5181], + [-80.5849, 32.5007], + [-80.4651, 32.5196], + [-80.3928, 32.5728], + [-80.3892, 32.6164], + [-80.3378, 32.6397], + [-80.2882, 32.6253], + [-80.254, 32.678], + [-80.18, 32.7175], + [-80.1711, 32.7387], + [-80.1583, 32.7508], + [-80.1037, 32.7882], + [-80.0022, 32.7672], + [-79.9853, 32.6939], + [-79.9906, 32.6347], + [-79.9064, 32.6683], + [-79.87, 32.7314], + [-79.9339, 32.755], + [-79.935, 32.8077], + [-79.86, 32.7664], + [-79.7416, 32.8708], + [-79.6978, 32.8508], + [-79.5775, 32.9085], + [-79.6172, 32.9381], + [-79.579, 33.0069], + [-79.5283, 33.0381], + [-79.4839, 33.0036], + [-79.3756, 33.0467], + [-79.3644, 33.0762], + [-79.2467, 33.125], + [-79.1946, 33.1704], + [-79.2106, 33.2439], + [-79.2581, 33.2589], + [-79.275, 33.3128], + [-79.1958, 33.2958], + [-79.1789, 33.2647], + [-79.1455, 33.3841], + [-79, 33.5456], + [-78.9119, 33.6111], + [-78.9372, 33.6397], + [-78.8416, 33.7225], + [-78.687, 33.8122], + [-78.5578, 33.8483], + [-78.5938, 33.8736], + [-78.5782, 33.8825], + [-79.1384, 34.3616], + [-79.6753, 34.8046], + [-80.32, 34.8137], + [-80.796, 34.8175], + [-80.7828, 34.9349], + [-80.9312, 35.1049], + [-81.0419, 35.0432], + [-81.0448, 35.1494], + [-81.4514, 35.169], + [-82.2861, 35.198], + [-82.3714, 35.1814], + [-82.3905, 35.2161], + [-82.455, 35.1796], + [-82.6332, 35.1258], + [-82.6923, 35.1186], + [-82.7547, 35.0687], + [-82.7808, 35.0865], + [-83.1052, 35.002], + [-83.1272, 34.9401], + [-83.2501, 34.8678], + [-83.2928, 34.8186], + [-83.2993, 34.8066], + [-83.3534, 34.728], + [-83.3403, 34.6812], + [-83.2366, 34.6167], + [-83.1938, 34.6067], + [-83.0819, 34.5155], + [-83.0022, 34.4733], + [-82.9055, 34.4867], + [-82.8612, 34.4538], + [-82.8329, 34.3661], + [-82.7519, 34.2726], + [-82.7173, 34.1521], + [-82.6792, 34.1307], + [-82.5975, 34.0313], + [-82.5624, 33.9551], + [-82.5143, 33.9395], + [-82.4281, 33.8693], + [-82.3091, 33.8072], + [-82.2552, 33.7569], + [-82.1953, 33.6318], + [-82.0511, 33.5662], + [-81.9862, 33.4875], + [-81.914, 33.4436], + [-81.9443, 33.4024], + [-81.9338, 33.3438], + [-81.836, 33.2735], + [-81.846, 33.243], + [-81.7573, 33.1972], + [-81.7545, 33.1517], + [-81.6466, 33.0937], + [-81.6142, 33.0953], + [-81.4912, 32.9936], + [-81.5016, 32.9369], + [-81.4578, 32.851], + [-81.4275, 32.8422], + [-81.4258, 32.7738], + [-81.3942, 32.6526], + [-81.4175, 32.6317], + [-81.3393, 32.5673], + [-81.291, 32.5645], + [-81.1959, 32.4697], + [-81.2033, 32.4265], + [-81.1202, 32.2875], + [-81.1554, 32.2403], + [-81.1104, 32.1734], + [-81.1183, 32.1175], + [-81.0236, 32.0999], + [-80.9839, 32.0796], + [-80.9716, 32.0741] + ] + ], + [ + [ + [-80.6203, 32.5022], + [-80.6775, 32.5019], + [-80.6571, 32.4388], + [-80.6442, 32.2603], + [-80.6037, 32.2705], + [-80.5422, 32.3328], + [-80.55, 32.3589], + [-80.4557, 32.4058], + [-80.4789, 32.4453], + [-80.6035, 32.4443], + [-80.6203, 32.5022] + ] + ], + [ + [ + [-80.0983, 32.7833], + [-80.1705, 32.7355], + [-80.1628, 32.7214], + [-80.1706, 32.7111], + [-80.1647, 32.7075], + [-80.1616, 32.7084], + [-80.1589, 32.7047], + [-80.1392, 32.7131], + [-80.1272, 32.7053], + [-80.1014, 32.7186], + [-80.0819, 32.7125], + [-80.0744, 32.7], + [-80.0864, 32.6872], + [-80.1317, 32.6664], + [-80.1558, 32.6108], + [-80.1567, 32.6064], + [-80.1611, 32.6039], + [-80.1722, 32.6019], + [-80.1783, 32.5937], + [-80.2047, 32.5839], + [-80.1776, 32.5593], + [-80.1113, 32.5941], + [-80.0163, 32.6113], + [-79.9903, 32.6939], + [-80.0073, 32.7658], + [-80.0983, 32.7833] + ] + ], + [ + [ + [-80.745, 32.5397], + [-80.7794, 32.5281], + [-80.7833, 32.4972], + [-80.8103, 32.4725], + [-80.765, 32.3725], + [-80.7014, 32.3128], + [-80.6631, 32.4329], + [-80.6828, 32.5], + [-80.7094, 32.525], + [-80.745, 32.5397] + ] + ], + [ + [ + [-80.3311, 32.6328], + [-80.3853, 32.615], + [-80.3852, 32.5738], + [-80.4112, 32.5475], + [-80.3358, 32.4775], + [-80.1975, 32.5683], + [-80.2419, 32.6036], + [-80.2983, 32.6022], + [-80.3311, 32.6328] + ] + ], + [ + [ + [-80.0964, 32.7158], + [-80.1275, 32.704], + [-80.1392, 32.7108], + [-80.155, 32.7061], + [-80.1583, 32.7019], + [-80.1622, 32.7073], + [-80.1658, 32.7033], + [-80.1707, 32.7071], + [-80.1833, 32.7075], + [-80.2391, 32.6756], + [-80.265, 32.6221], + [-80.2155, 32.5871], + [-80.1928, 32.5996], + [-80.1787, 32.5959], + [-80.1739, 32.6031], + [-80.1572, 32.6078], + [-80.135, 32.6669], + [-80.0864, 32.6889], + [-80.0964, 32.7158] + ] + ], + [ + [ + [-80.7253, 32.2697], + [-80.7836, 32.2227], + [-80.8121, 32.1101], + [-80.7391, 32.1466], + [-80.6675, 32.2144], + [-80.7253, 32.2697] + ] + ], + [ + [ + [-80.434, 32.4118], + [-80.4802, 32.3783], + [-80.4507, 32.3418], + [-80.434, 32.4118] + ] + ] + ] + }, + "properties": { + "id": "891339bb-a340-4ad7-92d9-275decfd6ed3", + "code": "SC", + "name": "South Carolina", + "abbreviation": "S-SC", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-96.4541, 43.5026], + [-96.4536, 45.2695], + [-96.4519, 45.3022], + [-96.5059, 45.3698], + [-96.6087, 45.4094], + [-96.6742, 45.4115], + [-96.7317, 45.4593], + [-96.7642, 45.5189], + [-96.8546, 45.6075], + [-96.8303, 45.6567], + [-96.6674, 45.735], + [-96.6313, 45.783], + [-96.5731, 45.8515], + [-96.5638, 45.9051], + [-96.5613, 45.9356], + [-98.3537, 45.9355], + [-99.7212, 45.9421], + [-100.5122, 45.9439], + [-104.04375507, 45.943800015], + [-104.0397, 44.9986], + [-104.057099843, 44.998628693], + [-104.0527, 43.0028], + [-102.999, 42.9997], + [-101.6775, 42.9953], + [-100.7509, 42.9947], + [-100.1984, 42.9979], + [-98.5001, 42.9977], + [-98.4382, 42.9301], + [-98.2418, 42.8656], + [-98.012, 42.7622], + [-97.9128, 42.7944], + [-97.8757, 42.8573], + [-97.8269, 42.8685], + [-97.7591, 42.8391], + [-97.7313, 42.8617], + [-97.721, 42.8625], + [-97.6956, 42.8508], + [-97.6578, 42.8348], + [-97.6341, 42.86], + [-97.5898, 42.8424], + [-97.4808, 42.8683], + [-97.4578, 42.8477], + [-97.4414, 42.8465], + [-97.3559, 42.8736], + [-97.2193, 42.8465], + [-97.2098, 42.8093], + [-97.1347, 42.7739], + [-96.9953, 42.7625], + [-96.9451, 42.72], + [-96.8594, 42.7227], + [-96.8052, 42.674], + [-96.6838, 42.6496], + [-96.7007, 42.5966], + [-96.628, 42.5502], + [-96.6062, 42.5045], + [-96.551, 42.5218], + [-96.4818, 42.4811], + [-96.45, 42.4895], + [-96.4754, 42.4962], + [-96.4792, 42.557], + [-96.5167, 42.6312], + [-96.628, 42.7077], + [-96.6326, 42.7681], + [-96.552, 42.8373], + [-96.5372, 42.9187], + [-96.4985, 42.9596], + [-96.5167, 43.046], + [-96.4617, 43.0655], + [-96.4378, 43.1173], + [-96.483, 43.2257], + [-96.5585, 43.2257], + [-96.5199, 43.3916], + [-96.5965, 43.4422], + [-96.5974, 43.5021], + [-96.4541, 43.5026] + ] + ] + }, + "properties": { + "id": "8a9ce8fb-78d5-471a-b73c-9228cf8a342a", + "code": "SD", + "name": "South Dakota", + "abbreviation": "S-SD", + "parent_id": "6e783926-0564-4643-a1d0-ee6990e40de2" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-85.6055, 34.9855], + [-85.3418, 34.9839], + [-84.6374, 34.9906], + [-84.477, 34.9885], + [-84.321, 34.989], + [-84.2893, 35.2257], + [-84.2279, 35.2678], + [-84.1859, 35.2428], + [-84.0876, 35.2544], + [-84.024, 35.2952], + [-84.0205, 35.4095], + [-83.8787, 35.5197], + [-83.7626, 35.5647], + [-83.5976, 35.5781], + [-83.5047, 35.5627], + [-83.4489, 35.6078], + [-83.3444, 35.6627], + [-83.296, 35.6594], + [-83.2312, 35.7292], + [-83.0743, 35.7894], + [-82.9896, 35.7746], + [-82.9177, 35.8413], + [-82.9174, 35.9286], + [-82.8648, 35.9517], + [-82.821, 35.9254], + [-82.7772, 35.9946], + [-82.6336, 36.0659], + [-82.5899, 36.0319], + [-82.6081, 35.9718], + [-82.5541, 35.9575], + [-82.4603, 36.0071], + [-82.407, 36.0871], + [-82.3526, 36.1172], + [-82.2449, 36.1334], + [-82.2212, 36.1567], + [-82.1498, 36.1467], + [-82.1319, 36.1069], + [-82.032, 36.1211], + [-81.9131, 36.2949], + [-81.7962, 36.3596], + [-81.7463, 36.3359], + [-81.739, 36.4072], + [-81.6969, 36.4686], + [-81.7081, 36.5348], + [-81.6758, 36.589], + [-81.6475, 36.6125], + [-81.9233, 36.6166], + [-81.9352, 36.595], + [-82.2374, 36.5967], + [-83.2538, 36.5942], + [-83.6748, 36.6012], + [-83.6843, 36.5933], + [-83.6902, 36.5838], + [-83.8297, 36.5855], + [-84.0301, 36.5931], + [-84.5136, 36.5989], + [-84.83, 36.6071], + [-85.2626, 36.6283], + [-85.5074, 36.6151], + [-85.8526, 36.6245], + [-86.3401, 36.65], + [-86.5913, 36.6544], + [-87.0605, 36.6444], + [-87.8534, 36.6353], + [-87.8505, 36.6651], + [-88.0707, 36.6792], + [-88.0326, 36.5367], + [-88.0571, 36.4967], + [-88.1793, 36.5], + [-89.2992, 36.5078], + [-89.4196, 36.498], + [-89.4646, 36.4571], + [-89.4873, 36.4999], + [-89.540418139, 36.500290575], + [-89.5249, 36.4844], + [-89.5515, 36.4414], + [-89.5192, 36.3883], + [-89.5264, 36.3459], + [-89.6042, 36.3446], + [-89.6167, 36.3186], + [-89.5456, 36.2791], + [-89.6083, 36.2409], + [-89.6733, 36.2521], + [-89.6946, 36.2501], + [-89.6985, 36.2309], + [-89.5896, 36.1475], + [-89.6564, 36.1024], + [-89.7169, 36.0015], + [-89.7162, 35.9625], + [-89.6587, 35.9271], + [-89.7624, 35.8569], + [-89.7065, 35.8172], + [-89.7937, 35.7948], + [-89.8186, 35.7568], + [-89.9527, 35.738], + [-89.9565, 35.695], + [-89.8622, 35.6322], + [-89.9414, 35.6023], + [-89.906, 35.5331], + [-89.9101, 35.5196], + [-89.988, 35.5594], + [-90.0362, 35.5515], + [-90.0191, 35.469], + [-90.0541, 35.3893], + [-90.0716, 35.4109], + [-90.0991, 35.4804], + [-90.1709, 35.4187], + [-90.1504, 35.3745], + [-90.1383, 35.3795], + [-90.0751, 35.3847], + [-90.1083, 35.309], + [-90.1564, 35.3012], + [-90.1518, 35.2558], + [-90.1039, 35.2554], + [-90.1151, 35.1977], + [-90.0978, 35.1196], + [-90.1604, 35.132], + [-90.1792, 35.1168], + [-90.2157, 35.027], + [-90.2937, 35.0371], + [-90.3108, 35.0015], + [-90.3098, 34.9966], + [-89.069158116, 34.996152664], + [-88.78657705, 34.996688], + [-88.199696512, 34.997799817], + [-88.199696765, 34.997800227], + [-88.2029, 35.003], + [-88.0795, 35.007], + [-87.6203, 35.005], + [-87.612903911, 35.004911209], + [-87.478331452, 35.003295652], + [-87.2288, 35.0003], + [-87.225499309, 35.000224287], + [-86.8844, 34.9924], + [-86.3187, 34.9921], + [-85.8477, 34.9889], + [-85.6055, 34.9855] + ] + ] + }, + "properties": { + "id": "0a9f6953-af53-4a4c-90fa-8c230ae27a2c", + "code": "TN", + "name": "Tennessee", + "abbreviation": "S-TN", + "parent_id": "3a101842-0ef2-4472-bf3f-a4400554fea3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-94.4863, 33.6411], + [-94.4885, 33.6279], + [-94.4995, 33.6217], + [-94.534, 33.6409], + [-94.5537, 33.6273], + [-94.639, 33.6646], + [-94.6648, 33.6619], + [-94.7474, 33.7243], + [-94.8667, 33.7441], + [-94.9516, 33.8113], + [-94.9673, 33.8586], + [-95.0257, 33.8589], + [-95.1912, 33.9522], + [-95.2257, 33.9605], + [-95.299, 33.8724], + [-95.4136, 33.8667], + [-95.5406, 33.8795], + [-95.5971, 33.9415], + [-95.6985, 33.8848], + [-95.7464, 33.8962], + [-95.7721, 33.8436], + [-95.8308, 33.8354], + [-95.9353, 33.8873], + [-95.9507, 33.8579], + [-96.049, 33.8367], + [-96.1455, 33.8391], + [-96.1857, 33.7549], + [-96.292, 33.7679], + [-96.3196, 33.6957], + [-96.3605, 33.6903], + [-96.4241, 33.7772], + [-96.502, 33.7741], + [-96.5322, 33.8214], + [-96.6227, 33.8523], + [-96.6164, 33.8634], + [-96.59, 33.8961], + [-96.6353, 33.8975], + [-96.6758, 33.9114], + [-96.7175, 33.8323], + [-96.7852, 33.8627], + [-96.8796, 33.8699], + [-96.9155, 33.9552], + [-96.981, 33.9442], + [-96.9894, 33.9552], + [-96.9954, 33.944], + [-96.9813, 33.8936], + [-97.0511, 33.8167], + [-97.0938, 33.7982], + [-97.0915, 33.734], + [-97.1234, 33.7163], + [-97.1939, 33.768], + [-97.1837, 33.896], + [-97.2249, 33.9121], + [-97.2528, 33.8685], + [-97.3412, 33.872], + [-97.3539, 33.8354], + [-97.4183, 33.8173], + [-97.4573, 33.8354], + [-97.4538, 33.8986], + [-97.4974, 33.9178], + [-97.5849, 33.9003], + [-97.5897, 33.9538], + [-97.6752, 33.9901], + [-97.7805, 33.8975], + [-97.8729, 33.8525], + [-97.9846, 33.9007], + [-97.9487, 33.9869], + [-98.0871, 34.0047], + [-98.1215, 34.0773], + [-98.093, 34.1342], + [-98.1274, 34.1516], + [-98.1693, 34.1139], + [-98.3673, 34.1558], + [-98.3998, 34.0993], + [-98.486, 34.0615], + [-98.5498, 34.1332], + [-98.6481, 34.1644], + [-98.739, 34.1268], + [-98.8298, 34.162], + [-98.8729, 34.1565], + [-98.9523, 34.2135], + [-99.0424, 34.1991], + [-99.1897, 34.2156], + [-99.2125, 34.3366], + [-99.3704, 34.4578], + [-99.3973, 34.3813], + [-99.5793, 34.4149], + [-99.6074, 34.3717], + [-99.7054, 34.384], + [-99.7146, 34.394], + [-99.8011, 34.4588], + [-99.8671, 34.5364], + [-99.9487, 34.5803], + [-100.0014, 34.5583], + [-100.001, 35.64], + [-100.0038, 36.4998], + [-100.9524, 36.4998], + [-101.87, 36.5034], + [-102.1618, 36.5004], + [-103.0007, 36.5013], + [-103.0408, 36.5005], + [-103.0427, 34.0007], + [-103.0632, 33.0017], + [-103.0642, 31.9996], + [-104.7467, 32.0032], + [-105.2534, 32.0017], + [-106.6193, 32.0012], + [-106.636, 31.8694], + [-106.5706, 31.8102], + [-106.5508, 31.8118], + [-106.4904, 31.7486], + [-106.4507, 31.7642], + [-106.3816, 31.7324], + [-106.3032, 31.6218], + [-106.2811, 31.5626], + [-106.2196, 31.4815], + [-106.0802, 31.3985], + [-106.0048, 31.3927], + [-105.9541, 31.3645], + [-105.9325, 31.3127], + [-105.8749, 31.2912], + [-105.7726, 31.1662], + [-105.6485, 31.1155], + [-105.6041, 31.0833], + [-105.5576, 30.99], + [-105.4162, 30.9003], + [-105.3877, 30.8537], + [-105.2504, 30.799], + [-105.2155, 30.8058], + [-105.1617, 30.7524], + [-105.1188, 30.7497], + [-105.0546, 30.6821], + [-105.0069, 30.6858], + [-104.9717, 30.61], + [-104.927, 30.6046], + [-104.8736, 30.5135], + [-104.8592, 30.3904], + [-104.7605, 30.2959], + [-104.6873, 30.1799], + [-104.6862, 30.0848], + [-104.7066, 30.0506], + [-104.6769, 29.9124], + [-104.6157, 29.8464], + [-104.5506, 29.7391], + [-104.5159, 29.641], + [-104.3845, 29.5422], + [-104.2645, 29.5127], + [-104.2091, 29.4814], + [-104.1679, 29.3955], + [-104.1078, 29.3736], + [-104.0379, 29.3199], + [-103.9762, 29.2967], + [-103.7833, 29.2655], + [-103.7186, 29.1809], + [-103.5504, 29.1545], + [-103.4289, 29.0421], + [-103.3865, 29.0214], + [-103.154, 28.9714], + [-103.1139, 28.9868], + [-103.1007, 29.0603], + [-103.0338, 29.1012], + [-102.9786, 29.1862], + [-102.9504, 29.1783], + [-102.8674, 29.2237], + [-102.9059, 29.2615], + [-102.8775, 29.3546], + [-102.8392, 29.3589], + [-102.8083, 29.5226], + [-102.7402, 29.5979], + [-102.6933, 29.6767], + [-102.6741, 29.7445], + [-102.548, 29.7446], + [-102.5174, 29.7838], + [-102.4071, 29.7642], + [-102.3415, 29.8694], + [-102.3008, 29.8777], + [-102.116, 29.7919], + [-102.0727, 29.7866], + [-101.9817, 29.815], + [-101.9337, 29.7855], + [-101.8562, 29.807], + [-101.7101, 29.7618], + [-101.5395, 29.7606], + [-101.4534, 29.7847], + [-101.3477, 29.662], + [-101.3057, 29.6542], + [-101.3133, 29.6038], + [-101.2479, 29.6195], + [-101.2541, 29.5208], + [-101.1856, 29.518], + [-101.1476, 29.4745], + [-101.0601, 29.4585], + [-101.0047, 29.3653], + [-100.8862, 29.3074], + [-100.8803, 29.2827], + [-100.7943, 29.2421], + [-100.7761, 29.1727], + [-100.6644, 29.0747], + [-100.6454, 28.9399], + [-100.5476, 28.8262], + [-100.5074, 28.7402], + [-100.4973, 28.6587], + [-100.3985, 28.5851], + [-100.411, 28.5498], + [-100.3407, 28.4488], + [-100.3427, 28.3864], + [-100.2866, 28.3122], + [-100.2942, 28.2836], + [-100.2095, 28.1913], + [-100.0862, 28.1462], + [-100.0182, 28.0657], + [-99.9905, 27.9936], + [-99.9315, 27.9803], + [-99.9373, 27.9409], + [-99.8937, 27.8998], + [-99.8708, 27.794], + [-99.808, 27.7653], + [-99.7226, 27.6674], + [-99.6034, 27.6419], + [-99.5115, 27.5641], + [-99.5282, 27.4982], + [-99.4788, 27.4795], + [-99.5045, 27.3388], + [-99.4966, 27.2729], + [-99.4418, 27.2508], + [-99.4262, 27.1761], + [-99.4453, 27.0218], + [-99.3813, 26.9793], + [-99.3747, 26.9324], + [-99.3285, 26.9195], + [-99.282, 26.8588], + [-99.209, 26.7247], + [-99.1729, 26.6166], + [-99.1669, 26.536], + [-99.0916, 26.4756], + [-99.1132, 26.4312], + [-98.8803, 26.3662], + [-98.7996, 26.3635], + [-98.738, 26.3253], + [-98.7146, 26.27], + [-98.4426, 26.1989], + [-98.3216, 26.1183], + [-98.2821, 26.1263], + [-98.249, 26.0721], + [-98.1768, 26.0753], + [-98.0622, 26.0463], + [-97.8083, 26.0609], + [-97.7911, 26.0336], + [-97.7032, 26.0321], + [-97.6381, 26.0021], + [-97.5407, 25.9313], + [-97.523, 25.8882], + [-97.469, 25.8889], + [-97.4426, 25.8484], + [-97.3629, 25.8675], + [-97.3697, 25.9165], + [-97.2808, 25.9353], + [-97.2157, 25.9701], + [-97.2071, 26.0793], + [-97.2729, 26.0876], + [-97.3001, 26.1432], + [-97.2979, 26.2546], + [-97.3443, 26.2676], + [-97.3579, 26.3376], + [-97.3276, 26.3574], + [-97.4074, 26.4796], + [-97.4679, 26.7096], + [-97.4782, 26.8054], + [-97.5529, 26.8421], + [-97.5504, 26.8963], + [-97.4693, 26.8412], + [-97.4565, 26.9424], + [-97.5076, 26.9068], + [-97.5549, 26.9387], + [-97.5385, 26.9874], + [-97.4518, 26.984], + [-97.4686, 27.0697], + [-97.4483, 27.0914], + [-97.4222, 27.262], + [-97.5432, 27.229], + [-97.6311, 27.2425], + [-97.6922, 27.3348], + [-97.5678, 27.3178], + [-97.4866, 27.3845], + [-97.4786, 27.2994], + [-97.4116, 27.3226], + [-97.3701, 27.4077], + [-97.3454, 27.5079], + [-97.2554, 27.6921], + [-97.333, 27.7196], + [-97.3882, 27.7701], + [-97.3781, 27.8361], + [-97.4786, 27.8253], + [-97.4795, 27.8601], + [-97.4008, 27.8764], + [-97.2468, 27.8733], + [-97.1919, 27.8208], + [-97.1297, 27.9171], + [-97.0253, 28.0322], + [-97.0609, 28.088], + [-97.135, 28.0475], + [-97.2033, 28.0678], + [-97.1719, 28.1214], + [-97.0324, 28.1881], + [-96.9842, 28.1275], + [-96.9122, 28.1264], + [-96.7873, 28.2556], + [-96.8097, 28.29], + [-96.7953, 28.3646], + [-96.8594, 28.4142], + [-96.7832, 28.4004], + [-96.7536, 28.4351], + [-96.7073, 28.4056], + [-96.7044, 28.3473], + [-96.6541, 28.3262], + [-96.433, 28.4283], + [-96.4053, 28.4543], + [-96.5674, 28.5828], + [-96.6129, 28.5682], + [-96.6112, 28.6367], + [-96.6648, 28.6967], + [-96.5861, 28.725], + [-96.5631, 28.6378], + [-96.4841, 28.6085], + [-96.4196, 28.6479], + [-96.4356, 28.7381], + [-96.3978, 28.7371], + [-96.3955, 28.6806], + [-96.3611, 28.6267], + [-96.3042, 28.6459], + [-96.2872, 28.6836], + [-96.1817, 28.7072], + [-96.2313, 28.644], + [-96.1569, 28.6117], + [-96.0297, 28.6529], + [-95.9797, 28.6367], + [-96.0356, 28.5844], + [-96.1444, 28.5444], + [-96.3353, 28.4381], + [-96.3186, 28.4231], + [-96.2253, 28.4881], + [-96.0886, 28.5536], + [-95.8684, 28.6394], + [-95.6614, 28.7445], + [-95.7868, 28.6959], + [-95.8947, 28.6408], + [-95.9608, 28.6253], + [-95.9271, 28.6997], + [-95.7864, 28.7486], + [-95.6542, 28.7503], + [-95.4397, 28.86], + [-95.3853, 28.8672], + [-95.2183, 29.0052], + [-95.1495, 29.1802], + [-95.1003, 29.1759], + [-95.0358, 29.2133], + [-94.9397, 29.3203], + [-94.8692, 29.28], + [-94.9258, 29.2528], + [-95.0451, 29.1376], + [-94.8237, 29.2668], + [-94.7253, 29.3331], + [-94.8702, 29.2904], + [-94.9074, 29.3399], + [-94.8663, 29.374], + [-94.8913, 29.4338], + [-94.9536, 29.4723], + [-95.0167, 29.5569], + [-94.9822, 29.6022], + [-95.0155, 29.6385], + [-94.981, 29.6765], + [-95.0535, 29.7067], + [-95.0994, 29.7841], + [-95.0683, 29.8136], + [-95.0175, 29.7172], + [-94.9358, 29.6928], + [-94.9097, 29.6549], + [-94.7974, 29.7668], + [-94.7306, 29.7767], + [-94.6951, 29.7449], + [-94.7, 29.6429], + [-94.7638, 29.5243], + [-94.5511, 29.5743], + [-94.5122, 29.5164], + [-94.6816, 29.4538], + [-94.7674, 29.3865], + [-94.7294, 29.3699], + [-94.6598, 29.4381], + [-94.5058, 29.5054], + [-94.1188, 29.6527], + [-93.9725, 29.6829], + [-93.8403, 29.6914], + [-93.8619, 29.7241], + [-93.8906, 29.7456], + [-93.9263, 29.8165], + [-93.8345, 29.888], + [-93.7901, 29.9873], + [-93.7036, 30.0661], + [-93.7326, 30.0836], + [-93.6964, 30.1518], + [-93.7204, 30.209], + [-93.7096, 30.2893], + [-93.764, 30.3436], + [-93.7573, 30.3899], + [-93.7039, 30.4299], + [-93.7057, 30.5117], + [-93.739, 30.5415], + [-93.6844, 30.6347], + [-93.6309, 30.6797], + [-93.5956, 30.7642], + [-93.5592, 30.9146], + [-93.569, 31.0127], + [-93.5106, 31.0281], + [-93.5642, 31.0944], + [-93.5339, 31.1846], + [-93.6012, 31.1784], + [-93.6155, 31.2566], + [-93.6895, 31.3066], + [-93.665, 31.3657], + [-93.6946, 31.4405], + [-93.7494, 31.4686], + [-93.7178, 31.5026], + [-93.7841, 31.5287], + [-93.8382, 31.6021], + [-93.7952, 31.7023], + [-93.837, 31.7503], + [-93.9015, 31.8762], + [-94.0419, 31.9939], + [-94.0456, 33.0206], + [-94.0445, 33.5505], + [-94.1673, 33.5901], + [-94.2346, 33.5519], + [-94.2873, 33.5827], + [-94.3255, 33.5504], + [-94.4018, 33.555], + [-94.468, 33.5981], + [-94.4728, 33.6054], + [-94.4629, 33.6287], + [-94.4492, 33.643], + [-94.4588, 33.6466], + [-94.4863, 33.6411] + ] + ], + [ + [ + [-97.2896, 26.599], + [-97.3613, 26.8482], + [-97.3793, 26.9982], + [-97.365, 27.205], + [-97.3358, 27.3225], + [-97.2814, 27.4628], + [-97.1575, 27.6934], + [-97.0475, 27.8336], + [-97.1003, 27.8175], + [-97.2314, 27.6317], + [-97.2672, 27.5406], + [-97.3606, 27.3664], + [-97.3556, 27.3111], + [-97.3831, 27.2614], + [-97.395, 27.1219], + [-97.3862, 27.0853], + [-97.3924, 26.8874], + [-97.3529, 26.7321], + [-97.2896, 26.599] + ] + ], + [ + [ + [-96.4067, 28.3969], + [-96.4555, 28.3358], + [-96.5431, 28.315], + [-96.6342, 28.2606], + [-96.7035, 28.1985], + [-96.7919, 28.1886], + [-96.8488, 28.0646], + [-96.7028, 28.1773], + [-96.5895, 28.2492], + [-96.4439, 28.3153], + [-96.4077, 28.3437], + [-96.4067, 28.3969] + ] + ], + [ + [ + [-97.0484, 27.8415], + [-96.9731, 27.9444], + [-96.8492, 28.0703], + [-96.8435, 28.1087], + [-96.9258, 28.0878], + [-96.9678, 27.9869], + [-97.0379, 27.9038], + [-97.0484, 27.8415] + ] + ], + [ + [ + [-97.2613, 26.4287], + [-97.319, 26.5376], + [-97.3362, 26.5076], + [-97.279, 26.4343], + [-97.1971, 26.2499], + [-97.1901, 26.2729], + [-97.2251, 26.4065], + [-97.2613, 26.4287] + ] + ] + ] + }, + "properties": { + "id": "5f8e6c2b-5ead-4279-8b5b-0234b3a5a2cf", + "code": "TX", + "name": "Texas", + "abbreviation": "S-TX", + "parent_id": "d6157b38-3f86-49ef-8acd-93287d33c0d0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-109.0449, 36.9986], + [-109.0409, 38.1603], + [-109.0607, 38.2768], + [-109.0596, 38.6727], + [-109.0538, 39.0135], + [-109.049, 41], + [-110.0001, 40.9992], + [-110.2764, 40.9963], + [-111.0456, 40.9978], + [-111.046, 41.379], + [-111.046989374, 42.000501202], + [-111.4479, 42.0012], + [-111.5833, 42.0042], + [-112.156, 41.9981], + [-112.164, 42.0017], + [-112.9579, 41.999], + [-113.8526, 41.9898], + [-114.0404, 41.9934], + [-114.040399971, 41.993339785], + [-114.0399, 40.9647], + [-114.0406, 40.7968], + [-114.0487, 40.2161], + [-114.0463, 39.6464], + [-114.052, 38.9994], + [-114.0491, 38.8371], + [-114.0494, 38.0329], + [-114.0541, 37.6447], + [-114.050505283, 37.00000125], + [-112.7447, 37.0033], + [-112.0013, 37.0024], + [-110.6102, 37.0046], + [-110.4719, 36.9996], + [-109.0449, 36.9986] + ] + ] + }, + "properties": { + "id": "efb03e9b-d25c-469b-9a36-769ff82bcf6d", + "code": "UT", + "name": "Utah", + "abbreviation": "S-UT", + "parent_id": "9432f503-fcbe-4e87-8c25-56d19462434c" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-71.5101, 45.0156], + [-71.5533, 45.0125], + [-72.3084, 45.0037], + [-72.6318, 45.014], + [-73.0908, 45.0153], + [-73.3442, 45.0103], + [-73.3411, 44.9199], + [-73.3813, 44.837], + [-73.3369, 44.7839], + [-73.3645, 44.7409], + [-73.3889, 44.6335], + [-73.3812, 44.5893], + [-73.2998, 44.4804], + [-73.2947, 44.4384], + [-73.3374, 44.3638], + [-73.3163, 44.2541], + [-73.3927, 44.1912], + [-73.4434, 44.0526], + [-73.4107, 44.0189], + [-73.4101, 43.9351], + [-73.3783, 43.8758], + [-73.3933, 43.8209], + [-73.356, 43.7651], + [-73.4317, 43.6439], + [-73.4302, 43.5834], + [-73.3751, 43.6233], + [-73.3056, 43.627], + [-73.2581, 43.5617], + [-73.2506, 43.5108], + [-73.2789, 42.8337], + [-73.2754, 42.7456], + [-73.2675, 42.7452], + [-72.4566, 42.7276], + [-72.5321, 42.7992], + [-72.5483, 42.8292], + [-72.5563, 42.8615], + [-72.5377, 42.892], + [-72.5294, 42.9111], + [-72.53, 42.9552], + [-72.4689, 42.9748], + [-72.4657, 43.0585], + [-72.4349, 43.1134], + [-72.4531, 43.1432], + [-72.4341, 43.2563], + [-72.3951, 43.3137], + [-72.4127, 43.3641], + [-72.3816, 43.4814], + [-72.3738, 43.5775], + [-72.3378, 43.5929], + [-72.297, 43.7071], + [-72.2043, 43.7703], + [-72.1728, 43.8813], + [-72.0986, 43.955], + [-72.1154, 43.9919], + [-72.0519, 44.0769], + [-72.0373, 44.0815], + [-72.0428, 44.1553], + [-72.0693, 44.1921], + [-72.0656, 44.2728], + [-72.0564, 44.2896], + [-72.0282, 44.3178], + [-71.8196, 44.352], + [-71.7956, 44.3949], + [-71.7033, 44.4138], + [-71.5819, 44.5006], + [-71.5957, 44.5189], + [-71.5386, 44.5829], + [-71.6339, 44.75], + [-71.578, 44.7893], + [-71.5497, 44.8627], + [-71.4969, 44.9075], + [-71.5428, 44.9837], + [-71.5286, 45.0026], + [-71.5047, 45.0079], + [-71.5101, 45.0156] + ] + ] + }, + "properties": { + "id": "3039123f-1e8d-45d9-9954-8344199bd0da", + "code": "VT", + "name": "Vermont", + "abbreviation": "S-VT", + "parent_id": "a781f1ba-2df2-4f17-9c69-141b9dcbfbb5" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-77.1205, 38.9337], + [-77.1323, 38.9455], + [-77.2114, 38.9748], + [-77.2482, 38.9918], + [-77.2433, 39.0233], + [-77.2706, 39.0348], + [-77.297, 39.0517], + [-77.3823, 39.0644], + [-77.4606, 39.0794], + [-77.5246, 39.1428], + [-77.5044, 39.1799], + [-77.4564, 39.2284], + [-77.4909, 39.2511], + [-77.5699, 39.3082], + [-77.624, 39.3063], + [-77.6746, 39.3266], + [-77.7197, 39.3253], + [-77.8299, 39.1343], + [-78.3473, 39.4666], + [-78.341, 39.3527], + [-78.4181, 39.2562], + [-78.4352, 39.2003], + [-78.4039, 39.1717], + [-78.5716, 39.0333], + [-78.6759, 38.9275], + [-78.7415, 38.9242], + [-78.7813, 38.8923], + [-78.866, 38.7631], + [-78.9947, 38.8511], + [-79.0547, 38.7868], + [-79.0934, 38.6588], + [-79.1277, 38.6531], + [-79.2072, 38.4969], + [-79.3177, 38.4143], + [-79.4746, 38.4574], + [-79.5443, 38.5569], + [-79.641, 38.5917], + [-79.6634, 38.5184], + [-79.6947, 38.4921], + [-79.6914, 38.4319], + [-79.738, 38.3548], + [-79.8082, 38.3039], + [-79.7882, 38.2686], + [-79.9178, 38.1839], + [-79.9267, 38.1086], + [-79.9992, 37.9973], + [-80.1648, 37.8752], + [-80.3074, 37.6895], + [-80.2215, 37.6282], + [-80.326, 37.5667], + [-80.2945, 37.5159], + [-80.4501, 37.4333], + [-80.5026, 37.4789], + [-80.55, 37.4729], + [-80.7709, 37.3729], + [-80.8575, 37.4304], + [-80.8808, 37.3889], + [-80.8504, 37.3495], + [-80.8985, 37.3171], + [-81.0939, 37.2825], + [-81.2276, 37.2345], + [-81.3612, 37.3364], + [-81.42, 37.2724], + [-81.5599, 37.208], + [-81.6788, 37.2032], + [-81.7731, 37.2749], + [-81.798, 37.2835], + [-81.8504, 37.2873], + [-81.9343, 37.3797], + [-81.9357, 37.4379], + [-81.9882, 37.4839], + [-81.9282, 37.5141], + [-81.9339, 37.5195], + [-81.9419, 37.5153], + [-81.9415, 37.5203], + [-81.9441, 37.5316], + [-81.9526, 37.532], + [-81.9673, 37.5372], + [-82.3523, 37.268], + [-82.555, 37.2033], + [-82.7206, 37.1205], + [-82.7198, 37.0484], + [-82.8653, 36.9786], + [-82.8698, 36.9005], + [-82.9615, 36.861], + [-83.0676, 36.8541], + [-83.1331, 36.7845], + [-83.1374, 36.7438], + [-83.3354, 36.7041], + [-83.4221, 36.67], + [-83.4979, 36.6711], + [-83.6632, 36.612], + [-83.6748, 36.6012], + [-83.2538, 36.5942], + [-82.2374, 36.5967], + [-81.9352, 36.595], + [-81.9233, 36.6166], + [-81.6475, 36.6125], + [-81.6758, 36.589], + [-81.3698, 36.5735], + [-80.8632, 36.5598], + [-80.6523, 36.5584], + [-80.2775, 36.5433], + [-79.5112, 36.5391], + [-78.9763, 36.5447], + [-78.5095, 36.5421], + [-78.125, 36.5463], + [-76.9174, 36.544], + [-76.9162, 36.5511], + [-76.1527, 36.5504], + [-76.1509, 36.5504], + [-76.0358, 36.5508], + [-76.013, 36.5505], + [-75.9825, 36.5844], + [-75.9928, 36.6353], + [-75.9434, 36.7223], + [-75.9172, 36.6381], + [-75.8842, 36.6133], + [-75.9525, 36.7658], + [-76.0015, 36.9262], + [-76.0906, 36.9081], + [-76.2271, 36.9408], + [-76.2775, 36.9692], + [-76.331, 36.9606], + [-76.3884, 36.898], + [-76.4831, 36.897], + [-76.4861, 36.9561], + [-76.5764, 37.0197], + [-76.6479, 37.0368], + [-76.6856, 37.197], + [-76.7474, 37.1503], + [-76.8042, 37.2072], + [-76.9, 37.1992], + [-76.9404, 37.2369], + [-76.8817, 37.2567], + [-76.7958, 37.2328], + [-76.7575, 37.1914], + [-76.6919, 37.2231], + [-76.6231, 37.1979], + [-76.6283, 37.1261], + [-76.4647, 37.0277], + [-76.4303, 36.9656], + [-76.3181, 37.0126], + [-76.2702, 37.0878], + [-76.2938, 37.1264], + [-76.4206, 37.2233], + [-76.4697, 37.2136], + [-76.6258, 37.3131], + [-76.7114, 37.4444], + [-76.5103, 37.2722], + [-76.5058, 37.2461], + [-76.3829, 37.2657], + [-76.4499, 37.3811], + [-76.4159, 37.4086], + [-76.3061, 37.3278], + [-76.2487, 37.3758], + [-76.2522, 37.436], + [-76.3596, 37.5213], + [-76.3125, 37.5458], + [-76.4306, 37.6094], + [-76.5331, 37.6122], + [-76.5906, 37.6572], + [-76.5998, 37.7207], + [-76.6803, 37.7796], + [-76.7234, 37.7884], + [-76.7945, 37.8955], + [-76.8527, 37.9208], + [-76.9286, 37.9831], + [-76.9164, 38.0294], + [-76.93, 38.0732], + [-77.06, 38.106], + [-77.0571, 38.1408], + [-77.1263, 38.1367], + [-77.1531, 38.1758], + [-77.0489, 38.1579], + [-77.0297, 38.1031], + [-76.9358, 38.0805], + [-76.9214, 38.0683], + [-76.9131, 38.0516], + [-76.8966, 37.9895], + [-76.7982, 37.9245], + [-76.7262, 37.8362], + [-76.5867, 37.7714], + [-76.5097, 37.6425], + [-76.4719, 37.6661], + [-76.4022, 37.6273], + [-76.2798, 37.6195], + [-76.3389, 37.6533], + [-76.3028, 37.6897], + [-76.3019, 37.8258], + [-76.2657, 37.817], + [-76.2372, 37.8836], + [-76.2683, 37.9128], + [-76.4136, 37.9646], + [-76.4733, 38.015], + [-76.5458, 38.039], + [-76.5363, 38.0749], + [-76.6314, 38.1534], + [-76.7016, 38.1598], + [-76.715, 38.1025], + [-76.7891, 38.1697], + [-76.8398, 38.1638], + [-76.9659, 38.2121], + [-76.9619, 38.2573], + [-77.0299, 38.311], + [-77.0135, 38.3748], + [-77.0726, 38.3755], + [-77.237, 38.3312], + [-77.3223, 38.3371], + [-77.297, 38.3707], + [-77.3266, 38.4435], + [-77.3036, 38.5094], + [-77.2574, 38.5609], + [-77.2392, 38.6617], + [-77.1581, 38.6372], + [-77.1504, 38.6659], + [-77.0423, 38.7218], + [-77.0523, 38.7886], + [-77.0318, 38.8533], + [-77.1105, 38.9224], + [-77.1205, 38.9337] + ] + ], + [ + [ + [-75.6458, 37.9708], + [-75.6425, 37.9358], + [-75.7142, 37.9378], + [-75.7378, 37.9008], + [-75.6928, 37.8678], + [-75.7431, 37.7869], + [-75.8133, 37.7481], + [-75.8869, 37.6536], + [-75.9825, 37.4297], + [-76.0168, 37.324], + [-76.0136, 37.2088], + [-75.9764, 37.1547], + [-75.98, 37.0897], + [-75.9419, 37.0956], + [-75.9281, 37.2614], + [-75.8956, 37.3503], + [-75.8306, 37.3869], + [-75.8058, 37.4719], + [-75.7575, 37.4975], + [-75.6847, 37.4567], + [-75.7278, 37.5511], + [-75.6581, 37.4867], + [-75.6961, 37.5717], + [-75.6492, 37.6519], + [-75.6053, 37.62], + [-75.58, 37.7442], + [-75.4164, 37.8906], + [-75.4364, 37.9633], + [-75.3775, 38.0175], + [-75.6237, 37.9955], + [-75.64, 37.9783], + [-75.6472, 37.9735], + [-75.6458, 37.9708] + ] + ], + [ + [ + [-75.8653, 37.2892], + [-75.8969, 37.2789], + [-75.9106, 37.1758], + [-75.8944, 37.1189], + [-75.8017, 37.2006], + [-75.8847, 37.2044], + [-75.8653, 37.2892] + ] + ], + [ + [ + [-75.2425, 38.0286], + [-75.3778, 37.8936], + [-75.3489, 37.8806], + [-75.2425, 38.0286] + ] + ] + ] + }, + "properties": { + "id": "ad37a984-9c16-4d6f-9f92-1871dd582b6e", + "code": "VA", + "name": "Virginia", + "abbreviation": "S-VA", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-117.0391, 48.5904], + [-117.0294, 48.9998], + [-117.4335, 49.0009], + [-121.9554, 49], + [-122.7539, 49.0033], + [-122.7916, 48.9798], + [-122.7514, 48.9111], + [-122.7866, 48.8855], + [-122.7192, 48.8494], + [-122.7056, 48.8003], + [-122.6085, 48.7628], + [-122.5356, 48.7754], + [-122.5038, 48.6568], + [-122.4261, 48.6], + [-122.4886, 48.5358], + [-122.4709, 48.469], + [-122.585, 48.4661], + [-122.6147, 48.5225], + [-122.6658, 48.4847], + [-122.6575, 48.4083], + [-122.558, 48.4281], + [-122.5331, 48.3747], + [-122.4847, 48.3714], + [-122.3747, 48.3008], + [-122.3972, 48.25], + [-122.4678, 48.2686], + [-122.5311, 48.2497], + [-122.5372, 48.1839], + [-122.49, 48.1206], + [-122.4419, 48.1307], + [-122.4783, 48.1878], + [-122.4486, 48.2325], + [-122.3922, 48.2303], + [-122.3533, 48.1879], + [-122.362, 48.1204], + [-122.2378, 48.0303], + [-122.2309, 47.9706], + [-122.3066, 47.9498], + [-122.3373, 47.8499], + [-122.3954, 47.8066], + [-122.3736, 47.7266], + [-122.4358, 47.6619], + [-122.3369, 47.6008], + [-122.4209, 47.5761], + [-122.3259, 47.3934], + [-122.324, 47.3504], + [-122.429, 47.3193], + [-122.435, 47.2622], + [-122.5101, 47.307], + [-122.5631, 47.2443], + [-122.5916, 47.1767], + [-122.685, 47.0978], + [-122.7858, 47.127], + [-122.8149, 47.1781], + [-122.9077, 47.1403], + [-122.912, 47.0556], + [-122.9511, 47.0974], + [-123, 47.0742], + [-122.9421, 47.1718], + [-123.0259, 47.1095], + [-123.0195, 47.1524], + [-122.9353, 47.2057], + [-122.9276, 47.2804], + [-122.846, 47.3114], + [-122.8255, 47.353], + [-122.7877, 47.2989], + [-122.8308, 47.244], + [-122.7721, 47.1685], + [-122.7212, 47.2214], + [-122.7532, 47.2894], + [-122.6805, 47.3664], + [-122.6733, 47.2881], + [-122.5765, 47.2572], + [-122.572, 47.3269], + [-122.5385, 47.376], + [-122.5319, 47.4697], + [-122.4957, 47.5101], + [-122.5467, 47.5249], + [-122.5698, 47.5842], + [-122.6077, 47.5469], + [-122.5909, 47.6347], + [-122.6142, 47.6533], + [-122.5539, 47.7464], + [-122.4728, 47.7484], + [-122.5133, 47.8806], + [-122.5478, 47.9189], + [-122.5735, 47.8746], + [-122.6846, 47.7979], + [-122.7487, 47.7201], + [-122.7532, 47.6678], + [-122.9155, 47.6218], + [-123.0311, 47.5104], + [-123.1194, 47.39], + [-123.0242, 47.3613], + [-122.901, 47.4225], + [-122.9116, 47.3895], + [-123.0192, 47.3547], + [-123.1187, 47.3391], + [-123.158, 47.3703], + [-123.1104, 47.4551], + [-123.0578, 47.5014], + [-122.982, 47.615], + [-122.8889, 47.6903], + [-122.8645, 47.7699], + [-122.7866, 47.8038], + [-122.8322, 47.6918], + [-122.7715, 47.6934], + [-122.7431, 47.8092], + [-122.6864, 47.8325], + [-122.693, 47.8678], + [-122.6304, 47.8846], + [-122.6809, 47.9324], + [-122.7347, 48.0334], + [-122.8008, 48.0867], + [-122.7637, 48.1429], + [-122.8308, 48.1345], + [-122.8835, 48.0773], + [-122.827, 48.0442], + [-122.8399, 48.002], + [-122.9153, 48.0958], + [-122.9752, 48.097], + [-123.0385, 48.0547], + [-123.0623, 48.1182], + [-123.1267, 48.1542], + [-123.1769, 48.155], + [-123.2408, 48.1172], + [-123.3956, 48.1144], + [-123.5553, 48.1511], + [-123.6275, 48.1389], + [-123.6725, 48.1631], + [-123.8633, 48.1542], + [-124.0495, 48.1776], + [-124.1292, 48.2206], + [-124.2491, 48.2641], + [-124.275, 48.2545], + [-124.3844, 48.285], + [-124.5646, 48.3676], + [-124.7178, 48.3908], + [-124.6595, 48.327], + [-124.7342, 48.1647], + [-124.6872, 48.0978], + [-124.6614, 47.9461], + [-124.6229, 47.8863], + [-124.4969, 47.8225], + [-124.4314, 47.7464], + [-124.3667, 47.5844], + [-124.3203, 47.3558], + [-124.2339, 47.2847], + [-124.1861, 47.1333], + [-124.1723, 46.9931], + [-124.1778, 46.9261], + [-124.1272, 46.9489], + [-124.1492, 47.0283], + [-124.0292, 47.0299], + [-124.0203, 46.9911], + [-123.9462, 46.9679], + [-123.8231, 46.9572], + [-123.9826, 46.9231], + [-124.0861, 46.8617], + [-124.0969, 46.7464], + [-124.0201, 46.7129], + [-123.8939, 46.75], + [-123.8512, 46.703], + [-123.9222, 46.6731], + [-123.9586, 46.6115], + [-123.8947, 46.5486], + [-123.9439, 46.4756], + [-123.9054, 46.4291], + [-123.9664, 46.3792], + [-124.0147, 46.3811], + [-124.0311, 46.4936], + [-124.0236, 46.5842], + [-124.07, 46.6364], + [-124.0594, 46.3956], + [-124.0778, 46.2842], + [-124.0228, 46.3142], + [-123.8733, 46.2406], + [-123.8054, 46.2836], + [-123.7586, 46.2755], + [-123.6969, 46.3067], + [-123.6689, 46.267], + [-123.5642, 46.2606], + [-123.4976, 46.2738], + [-123.4572, 46.2687], + [-123.4074, 46.2135], + [-123.2832, 46.1519], + [-123.1595, 46.1938], + [-123.1246, 46.1912], + [-123.0912, 46.1772], + [-123.0641, 46.1741], + [-123.0448, 46.1662], + [-122.9392, 46.1003], + [-122.8723, 46.0809], + [-122.8753, 46.0383], + [-122.8111, 45.9629], + [-122.7779, 45.8719], + [-122.7883, 45.815], + [-122.7587, 45.7688], + [-122.7618, 45.67], + [-122.745, 45.6533], + [-122.6181, 45.6174], + [-122.4386, 45.5799], + [-122.4062, 45.5858], + [-122.367, 45.5822], + [-122.2903, 45.5627], + [-122.2668, 45.5598], + [-121.909, 45.6552], + [-121.8991, 45.6784], + [-121.8091, 45.7091], + [-121.7104, 45.6958], + [-121.5342, 45.7267], + [-121.4183, 45.6928], + [-121.3455, 45.7066], + [-121.2167, 45.6719], + [-121.1763, 45.6064], + [-121.079, 45.6538], + [-120.9011, 45.6453], + [-120.8492, 45.6744], + [-120.6896, 45.7173], + [-120.631, 45.7478], + [-120.554, 45.7401], + [-120.492, 45.6971], + [-120.2005, 45.7308], + [-120.1769, 45.7587], + [-119.978, 45.8253], + [-119.8301, 45.848], + [-119.6765, 45.8572], + [-119.6103, 45.9167], + [-119.5059, 45.9054], + [-119.26, 45.9394], + [-119.185, 45.9265], + [-119.0284, 45.9679], + [-118.9857, 46.0036], + [-117.7882, 46.0018], + [-117.3534, 45.997], + [-116.912940083, 45.9971998], + [-116.92, 46.0146], + [-116.9383, 46.0474], + [-116.9569, 46.0753], + [-116.9218, 46.1711], + [-116.9631, 46.2032], + [-116.987, 46.2957], + [-117.0605, 46.3629], + [-117.038, 46.4288], + [-117.0422, 47.3665], + [-117.0426, 48.0459], + [-117.0391, 48.5904] + ] + ], + [ + [ + [-122.602, 48.4102], + [-122.6647, 48.4017], + [-122.6705, 48.3603], + [-122.7539, 48.258], + [-122.7637, 48.2155], + [-122.6794, 48.1544], + [-122.6208, 48.1604], + [-122.5986, 48.1098], + [-122.5987, 48.0269], + [-122.5414, 47.9936], + [-122.4811, 47.9919], + [-122.4308, 47.9139], + [-122.3492, 47.959], + [-122.3767, 48.0345], + [-122.4462, 48.0528], + [-122.5214, 48.0975], + [-122.5264, 48.0163], + [-122.5717, 48.1027], + [-122.5672, 48.1478], + [-122.6579, 48.2826], + [-122.5064, 48.3103], + [-122.5606, 48.3464], + [-122.602, 48.4102] + ] + ], + [ + [ + [-122.8847, 48.7119], + [-122.9394, 48.7095], + [-123.0302, 48.6307], + [-122.9578, 48.6319], + [-122.9482, 48.5975], + [-122.8145, 48.6064], + [-122.7513, 48.665], + [-122.8847, 48.7119] + ] + ], + [ + [ + [-123.1406, 48.6236], + [-123.1764, 48.5619], + [-123.133, 48.4981], + [-123.0368, 48.458], + [-123.0092, 48.4739], + [-123.0166, 48.5619], + [-123.1406, 48.6236] + ] + ], + [ + [ + [-122.4533, 47.5013], + [-122.5132, 47.4529], + [-122.5268, 47.3421], + [-122.4266, 47.402], + [-122.4533, 47.5013] + ] + ], + [ + [ + [-122.5339, 47.7056], + [-122.5652, 47.7108], + [-122.5778, 47.5994], + [-122.4982, 47.597], + [-122.5062, 47.703], + [-122.5339, 47.7056] + ] + ], + [ + [ + [-122.8825, 48.5695], + [-122.9222, 48.5394], + [-122.9457, 48.4656], + [-122.8599, 48.4304], + [-122.8825, 48.5695] + ] + ], + [ + [ + [-122.8472, 47.3003], + [-122.9194, 47.2761], + [-122.9253, 47.2328], + [-122.8747, 47.1642], + [-122.8406, 47.2078], + [-122.8711, 47.2469], + [-122.8472, 47.3003] + ] + ], + [ + [ + [-122.6895, 48.1028], + [-122.7419, 48.0491], + [-122.6881, 48.0081], + [-122.6895, 48.1028] + ] + ], + [ + [ + [-122.6417, 48.5878], + [-122.6522, 48.5306], + [-122.583, 48.5511], + [-122.6417, 48.5878] + ] + ], + [ + [ + [-123.9789, 46.4947], + [-124.0053, 46.4633], + [-123.9417, 46.4108], + [-123.9789, 46.4947] + ] + ], + [ + [ + [-122.7097, 48.6067], + [-122.7216, 48.5403], + [-122.6758, 48.5661], + [-122.7097, 48.6067] + ] + ], + [ + [ + [-122.4385, 45.5776], + [-122.4104, 45.5743], + [-122.3982, 45.5782], + [-122.4041, 45.5826], + [-122.4385, 45.5776] + ] + ], + [ + [ + [-122.2849, 45.5532], + [-122.2902, 45.5581], + [-122.33, 45.5608], + [-122.3273, 45.5576], + [-122.2849, 45.5532] + ] + ], + [ + [ + [-122.8784, 46.0694], + [-122.8851, 46.0734], + [-122.8786, 46.057], + [-122.876, 46.057], + [-122.8742, 46.0616], + [-122.8784, 46.0694] + ] + ] + ] + }, + "properties": { + "id": "85e6e72c-362a-4236-badf-409608f638be", + "code": "WA", + "name": "Washington", + "abbreviation": "S-WA", + "parent_id": "da91c585-dacb-46b4-998a-dabe27e6d774" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-81.9673, 37.5372], + [-81.9526, 37.532], + [-81.9441, 37.5316], + [-81.9415, 37.5203], + [-81.9419, 37.5153], + [-81.9339, 37.5195], + [-81.9282, 37.5141], + [-81.9882, 37.4839], + [-81.9357, 37.4379], + [-81.9343, 37.3797], + [-81.8504, 37.2873], + [-81.798, 37.2835], + [-81.7731, 37.2749], + [-81.6788, 37.2032], + [-81.5599, 37.208], + [-81.42, 37.2724], + [-81.3612, 37.3364], + [-81.2276, 37.2345], + [-81.0939, 37.2825], + [-80.8985, 37.3171], + [-80.8504, 37.3495], + [-80.8808, 37.3889], + [-80.8575, 37.4304], + [-80.7709, 37.3729], + [-80.55, 37.4729], + [-80.5026, 37.4789], + [-80.4501, 37.4333], + [-80.2945, 37.5159], + [-80.326, 37.5667], + [-80.2215, 37.6282], + [-80.3074, 37.6895], + [-80.1648, 37.8752], + [-79.9992, 37.9973], + [-79.9267, 38.1086], + [-79.9178, 38.1839], + [-79.7882, 38.2686], + [-79.8082, 38.3039], + [-79.738, 38.3548], + [-79.6914, 38.4319], + [-79.6947, 38.4921], + [-79.6634, 38.5184], + [-79.641, 38.5917], + [-79.5443, 38.5569], + [-79.4746, 38.4574], + [-79.3177, 38.4143], + [-79.2072, 38.4969], + [-79.1277, 38.6531], + [-79.0934, 38.6588], + [-79.0547, 38.7868], + [-78.9947, 38.8511], + [-78.866, 38.7631], + [-78.7813, 38.8923], + [-78.7415, 38.9242], + [-78.6759, 38.9275], + [-78.5716, 39.0333], + [-78.4039, 39.1717], + [-78.4352, 39.2003], + [-78.4181, 39.2562], + [-78.341, 39.3527], + [-78.3473, 39.4666], + [-77.8299, 39.1343], + [-77.7197, 39.3253], + [-77.7483, 39.3334], + [-77.7579, 39.3442], + [-77.7483, 39.3516], + [-77.7503, 39.3838], + [-77.7371, 39.3873], + [-77.7395, 39.404], + [-77.7516, 39.424], + [-77.7923, 39.4331], + [-77.819, 39.4956], + [-77.8445, 39.5002], + [-77.8454, 39.5047], + [-77.8294, 39.517], + [-77.8259, 39.5226], + [-77.8357, 39.5327], + [-77.8628, 39.5168], + [-77.8659, 39.5198], + [-77.8648, 39.5384], + [-77.8443, 39.5664], + [-77.8298, 39.5847], + [-77.8394, 39.6069], + [-77.8822, 39.6183], + [-77.939, 39.588], + [-78.0036, 39.6014], + [-78.1021, 39.6807], + [-78.1794, 39.6976], + [-78.2013, 39.6799], + [-78.2727, 39.6186], + [-78.3551, 39.6416], + [-78.4206, 39.6253], + [-78.4664, 39.5202], + [-78.4992, 39.5191], + [-78.5213, 39.5266], + [-78.5767, 39.5283], + [-78.6803, 39.5442], + [-78.7333, 39.579], + [-78.744, 39.5818], + [-78.7646, 39.5871], + [-78.7982, 39.6328], + [-78.8376, 39.5673], + [-78.9358, 39.4842], + [-78.9645, 39.4397], + [-79.013, 39.4646], + [-79.1029, 39.4743], + [-79.1091, 39.432], + [-79.1564, 39.4177], + [-79.2135, 39.364], + [-79.2544, 39.3548], + [-79.2929, 39.3005], + [-79.3427, 39.2964], + [-79.3597, 39.2765], + [-79.3754, 39.2727], + [-79.4045, 39.2467], + [-79.4212, 39.235], + [-79.4499, 39.2125], + [-79.4872, 39.2067], + [-79.4774, 39.7216], + [-80.5171, 39.7212], + [-80.5196, 39.9639], + [-80.5191, 40.6385], + [-80.6235, 40.6208], + [-80.6626, 40.5746], + [-80.597, 40.4644], + [-80.6131, 40.4066], + [-80.6, 40.3297], + [-80.6172, 40.2691], + [-80.6564, 40.2415], + [-80.731, 40.0867], + [-80.7531, 39.9193], + [-80.8056, 39.905], + [-80.833, 39.7934], + [-80.8668, 39.7689], + [-80.8292, 39.716], + [-80.8711, 39.6329], + [-80.9312, 39.6141], + [-81.0866, 39.4989], + [-81.127, 39.448], + [-81.2498, 39.3883], + [-81.3835, 39.3438], + [-81.4329, 39.4073], + [-81.5531, 39.3441], + [-81.5642, 39.2747], + [-81.6504, 39.2784], + [-81.752, 39.1819], + [-81.7397, 39.1104], + [-81.806, 39.0841], + [-81.7637, 39.0209], + [-81.7814, 38.9249], + [-81.8236, 38.946], + [-81.8543, 38.8939], + [-81.9224, 38.8879], + [-81.8995, 38.9318], + [-81.9315, 38.9874], + [-82.0361, 39.0248], + [-82.0891, 38.9725], + [-82.1428, 38.887], + [-82.1431, 38.8407], + [-82.2173, 38.7882], + [-82.1814, 38.7112], + [-82.1728, 38.6394], + [-82.1694, 38.6214], + [-82.1973, 38.592], + [-82.292, 38.5731], + [-82.3183, 38.455], + [-82.4911, 38.4171], + [-82.558, 38.4025], + [-82.5928, 38.4186], + [-82.578, 38.2508], + [-82.637, 38.1407], + [-82.5495, 38.0718], + [-82.5085, 38.0021], + [-82.4701, 37.9863], + [-82.4874, 37.9182], + [-82.4201, 37.8853], + [-82.4178, 37.8481], + [-82.3119, 37.765], + [-82.2901, 37.6708], + [-82.2231, 37.6542], + [-82.1352, 37.5965], + [-82.1293, 37.5525], + [-81.9908, 37.5404], + [-81.9642, 37.544], + [-81.9673, 37.5372] + ] + ] + }, + "properties": { + "id": "a006da6a-05cf-4f21-820e-25c5ba8c2531", + "code": "WV", + "name": "West Virginia", + "abbreviation": "S-WV", + "parent_id": "3596a904-2af8-4c91-a48f-93f16d9acc81" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-90.6415, 42.5093], + [-90.641120407, 42.509297552], + [-90.4244, 42.5079], + [-89.6811, 42.5074], + [-88.7719, 42.4957], + [-88.6288, 42.4985], + [-87.0181, 42.4947], + [-87.1233, 43.1971], + [-87.1552, 43.4436], + [-87.1482, 43.571], + [-87.1248, 43.7105], + [-87.0814, 43.8869], + [-86.9652, 44.2582], + [-86.8627, 44.5335], + [-86.7916, 44.6901], + [-86.7029, 44.8527], + [-86.6438, 44.934], + [-86.5085, 45.0665], + [-86.4284, 45.1272], + [-86.2496, 45.2338], + [-86.7605, 45.444], + [-87.0963, 45.442], + [-87.1797, 45.3424], + [-87.3075, 45.243], + [-87.4035, 45.2045], + [-87.4373, 45.0778], + [-87.6604, 45.1078], + [-87.7408, 45.1755], + [-87.7118, 45.2647], + [-87.6512, 45.3461], + [-87.6955, 45.3887], + [-87.7601, 45.3493], + [-87.8354, 45.3517], + [-87.8775, 45.38], + [-87.8598, 45.4398], + [-87.7856, 45.4929], + [-87.81, 45.5444], + [-87.7827, 45.6095], + [-87.826, 45.6626], + [-87.7842, 45.6753], + [-87.8775, 45.7536], + [-87.9641, 45.7601], + [-87.9971, 45.7967], + [-88.0641, 45.7809], + [-88.1349, 45.8225], + [-88.0728, 45.8721], + [-88.0954, 45.9141], + [-88.1985, 45.9539], + [-88.3262, 45.9592], + [-88.3761, 45.9911], + [-88.4173, 45.9795], + [-88.5099, 46.0174], + [-88.6016, 46.0189], + [-88.6195, 45.9884], + [-88.6762, 46.0111], + [-88.8103, 46.0238], + [-89.0854, 46.1365], + [-89.3759, 46.1949], + [-90.1178, 46.3366], + [-90.1592, 46.4302], + [-90.2168, 46.5055], + [-90.308, 46.5187], + [-90.3313, 46.5555], + [-90.3895, 46.5375], + [-90.4149, 46.5602], + [-90.4187, 46.567], + [-89.958, 47.2912], + [-90.6631, 47.3025], + [-91.4743, 46.9336], + [-92.021, 46.7059], + [-92.0868, 46.7485], + [-92.1403, 46.738], + [-92.2124, 46.6507], + [-92.2883, 46.6679], + [-92.2899, 46.0706], + [-92.3581, 46.0097], + [-92.422, 46.0211], + [-92.4738, 45.9732], + [-92.6714, 45.9152], + [-92.732, 45.8681], + [-92.7849, 45.762], + [-92.8685, 45.7064], + [-92.8719, 45.6918], + [-92.8808, 45.5744], + [-92.7722, 45.5679], + [-92.644, 45.4376], + [-92.7036, 45.3262], + [-92.7583, 45.2904], + [-92.7467, 45.1076], + [-92.7982, 45.0746], + [-92.7527, 44.9527], + [-92.766, 44.8308], + [-92.8073, 44.7524], + [-92.7901, 44.7381], + [-92.737, 44.7173], + [-92.5721, 44.6031], + [-92.5448, 44.5686], + [-92.3664, 44.5582], + [-92.3154, 44.5407], + [-92.2847, 44.4821], + [-92.2308, 44.4463], + [-92.0862, 44.4113], + [-91.9451, 44.3428], + [-91.9151, 44.3147], + [-91.9152, 44.3083], + [-91.8916, 44.2384], + [-91.8736, 44.2057], + [-91.8643, 44.197], + [-91.8402, 44.1847], + [-91.8119, 44.1605], + [-91.7829, 44.1478], + [-91.5708, 44.0278], + [-91.4641, 44.0089], + [-91.429, 43.9924], + [-91.2791, 43.8407], + [-91.2639, 43.7949], + [-91.2554, 43.7344], + [-91.2672, 43.6233], + [-91.2547, 43.6069], + [-91.2318, 43.5844], + [-91.2176, 43.5132], + [-91.22, 43.5023], + [-91.2227, 43.4769], + [-91.2035, 43.3527], + [-91.1004, 43.3118], + [-91.0621, 43.256], + [-91.1755, 43.1374], + [-91.1765, 43.0915], + [-91.1444, 42.9104], + [-91.0999, 42.875], + [-91.0517, 42.7397], + [-90.9542, 42.6872], + [-90.706, 42.6356], + [-90.6858, 42.5984], + [-90.6635, 42.5587], + [-90.6347, 42.5241], + [-90.6363, 42.5146], + [-90.6415, 42.5093] + ] + ] + }, + "properties": { + "id": "679e336c-5eb1-42d1-b49f-7ff3052a78ee", + "code": "WI", + "name": "Wisconsin", + "abbreviation": "S-WI", + "parent_id": "3f9f1ae5-bc22-44a7-b90b-3a96a72495de" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [-111.046989374, 42.000501202], + [-111.046, 41.379], + [-111.0456, 40.9978], + [-110.2764, 40.9963], + [-110.0001, 40.9992], + [-109.049, 41], + [-108.3781, 40.9997], + [-107.9154, 41.0029], + [-107.0021, 41.0044], + [-106.4481, 41.0035], + [-106.3171, 40.9994], + [-104.83, 40.9996], + [-104.5679, 41.0029], + [-104.0528, 41.0017], + [-104.0527, 43.002797942], + [-104.0527, 43.0028], + [-104.057099843, 44.998628693], + [-104.057099868, 44.998628693], + [-105.9196, 45.0017], + [-106.0007, 44.9967], + [-107.0009, 44.9972], + [-107.2305, 45.0007], + [-108.2889, 45.0018], + [-109.0827, 45.001], + [-109.1756, 45.0042], + [-110.1325, 45.0022], + [-110.2006, 44.9942], + [-110.7072, 44.9929], + [-110.7756, 45.0019], + [-111.053, 44.9999], + [-111.0551, 44.6669], + [-111.0487, 44.4772], + [-111.045, 43.5061], + [-111.0446, 42.7889], + [-111.0477, 42.4469], + [-111.046989374, 42.000501202] + ] + ] + }, + "properties": { + "id": "f3d192a9-14ce-44e0-b756-51761fa67eb2", + "code": "WY", + "name": "Wyoming", + "abbreviation": "S-WY", + "parent_id": "1f30181c-ab24-4bfc-989c-162d4b17a83e" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-66.022087096, 17.977361679], + [-65.914024352, 17.975973129], + [-65.830139159, 18.019027711], + [-65.761253, 18.154585], + [-65.725418, 18.188194], + [-65.604584, 18.210417], + [-65.62764, 18.259306], + [-65.619308, 18.365973], + [-65.666527, 18.361805], + [-65.814857483, 18.409305572], + [-65.904861, 18.453194], + [-66.005142212, 18.44430542], + [-66.185974001, 18.46986], + [-66.284584046, 18.471248627], + [-66.397636414, 18.49319458], + [-66.452919007, 18.469305038], + [-66.622642518, 18.494026184], + [-66.702079773, 18.474027635], + [-66.781806946, 18.491804123], + [-66.9118042, 18.48374939], + [-67.090698243, 18.515972138], + [-67.169303894, 18.480138779], + [-67.163749696, 18.411804199], + [-67.270416259, 18.366527557], + [-67.235137939, 18.299304962], + [-67.195419312, 18.290138245], + [-67.153198, 18.204306], + [-67.185417, 18.165974], + [-67.181808, 18.112638], + [-67.215416, 17.982916], + [-67.105698, 17.945415], + [-67.062363, 17.973747], + [-66.987915, 17.970415], + [-66.953751, 17.932362], + [-66.838470459, 17.949306489], + [-66.770141602, 18.005973817], + [-66.672363, 17.965973], + [-66.578476, 17.961529], + [-66.459305, 17.989584], + [-66.392082, 17.946529], + [-66.317085, 17.977083], + [-66.237083, 17.926527], + [-66.206802, 17.962641], + [-66.15486145, 17.929304122], + [-66.022087096, 17.977361679] + ] + ], + [ + [ + [-65.390976, 18.161806], + [-65.57708, 18.119583], + [-65.542641, 18.080973], + [-65.423195, 18.095972], + [-65.363747, 18.130138], + [-65.390976, 18.161806] + ] + ], + [ + [ + [-67.859863, 18.121248001], + [-67.912086, 18.120419], + [-67.945968999, 18.084028001], + [-67.897362001, 18.052360999], + [-67.845139, 18.081246999], + [-67.859863, 18.121248001] + ] + ], + [ + [ + [-65.337082, 18.349028], + [-65.282639, 18.280416], + [-65.272636, 18.331249], + [-65.337082, 18.349028] + ] + ] + ] + }, + "properties": { + "id": "bf65ce2d-4a03-4786-9e2b-6ba3f7b5c231", + "code": "PRI", + "name": "Puerto Rico", + "abbreviation": "S-PRI", + "parent_id": "935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-64.664306641, 17.714860916], + [-64.580696, 17.747357999], + [-64.655135999, 17.763472], + [-64.709587098, 17.747083663], + [-64.747642517, 17.783750534], + [-64.894584655, 17.747358323], + [-64.883193971, 17.685693741], + [-64.740417, 17.695972], + [-64.664306641, 17.714860916] + ] + ], + [ + [ + [-64.888191, 18.35486], + [-64.963752999, 18.372084001], + [-65.027359, 18.362919], + [-64.905975, 18.310141], + [-64.840698, 18.317638], + [-64.888191, 18.35486] + ] + ], + [ + [ + [-64.762916565, 18.321527481], + [-64.699585, 18.303749], + [-64.744026, 18.365973], + [-64.762916565, 18.321527481] + ] + ] + ] + }, + "properties": { + "id": "5dfb4c37-7837-4425-bc6d-d80979bc14b3", + "code": "VIR", + "name": "Virgin Islands, U.S.", + "abbreviation": "S-VIR", + "parent_id": "935fbccf-29d9-4b8f-ba8c-3b6a36ae94f3" + } + }, + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [-170.680638631, -14.282476107], + [-170.567497197, -14.269325997], + [-170.672442928, -14.241035743], + [-170.732063743, -14.282688197], + [-170.82071228, -14.300050544], + [-170.759218852, -14.373241822], + [-170.680638631, -14.282476107] + ] + ], + [ + [ + [-169.420166016, -14.234145385], + [-169.501431552, -14.216898051], + [-169.491531372, -14.271703856], + [-169.420166016, -14.234145385] + ] + ] + ] + }, + "properties": { + "id": "4e97338e-1941-4bb9-8e6c-c77a7d2a1549", + "code": "OPI", + "name": "Other Pacific Islands", + "abbreviation": "S-OPI", + "parent_id": "a53380c2-83da-4713-bc27-3e3310ebb65e" + } + } + ] +} diff --git a/client/src/containers/cards/component.tsx b/client/src/containers/cards/component.tsx index 812660c8..e4623fe2 100644 --- a/client/src/containers/cards/component.tsx +++ b/client/src/containers/cards/component.tsx @@ -36,7 +36,12 @@ const Cards = ({ data = [], theme = 'grey', pathname, project = false }: CardsPr )} {data.map((item) => ( - + ))} ); diff --git a/client/src/containers/footer/component.tsx b/client/src/containers/footer/component.tsx index 200c0a64..710e63df 100644 --- a/client/src/containers/footer/component.tsx +++ b/client/src/containers/footer/component.tsx @@ -27,10 +27,14 @@ const Footer = () => { const NAV_ITEMS = useMemo(() => { return NAV.filter((n) => !(session && n.auth)); }, [session]); + const isMyPage = useMemo( + () => pathname.startsWith('/my-') || pathname.includes('/projects/new'), + [pathname] + ); return (