commit d654b7f615ef45d0abc3924088e8b4e0f76157de Author: tianfeng <769204422@qq.com> Date: Wed Jul 30 17:45:41 2025 +0800 项目初始化 diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..ea6e20f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,14 @@ +# http://editorconfig.org +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 2 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..50728a2 --- /dev/null +++ b/.env.development @@ -0,0 +1,26 @@ +# just a flag +ENV = 'development' + +# base api +VUE_APP_BASE_API = '/console' + +# vue-cli uses the VUE_CLI_BABEL_TRANSPILE_MODULES environment variable, +# to control whether the babel-plugin-dynamic-import-node plugin is enabled. +# It only does one thing by converting all import() to require(). +# This configuration can significantly increase the speed of hot updates, +# when you have a large number of pages. +# Detail: https://github.com/vuejs/vue-cli/blob/dev/packages/@vue/babel-preset-app/index.js + +VUE_CLI_BABEL_TRANSPILE_MODULES = true + +# application base url +# VUE_APP_BASE_URL = 'http://localhost:9528' +VUE_APP_BASE_URL ='http://local.consolepage.yuyinfang168.com' +# oss +VUE_APP_OSS_BUCKET = 'dev-yuyin' +VUE_APP_OSS_URL = 'https://dev-yuyin.oss-ap-southeast-1.aliyuncs.com' +# h5 +VUE_APP_H5_BASE_URL = 'http://local.h5.yuyinfang168.com' +# start mock +VUE_APP_START_MOCK = false + diff --git a/.env.production b/.env.production new file mode 100644 index 0000000..ecafbec --- /dev/null +++ b/.env.production @@ -0,0 +1,18 @@ +# just a flag +ENV = 'production' + +# base api +VUE_APP_BASE_API = '/console' + +# application base url +VUE_APP_BASE_URL = 'https://console.lotfuns.com' + +# oss +VUE_APP_OSS_BUCKET = 'lotfun' +VUE_APP_OSS_URL = 'https://lotfun.oss-ap-southeast-1.aliyuncs.com' + +# h5 +VUE_APP_H5_BASE_URL = 'http://h5.lotfuns.com' + +# start mock +VUE_APP_START_MOCK = false diff --git a/.env.staging b/.env.staging new file mode 100644 index 0000000..86c7499 --- /dev/null +++ b/.env.staging @@ -0,0 +1,20 @@ +NODE_ENV = production + +# just a flag +ENV = 'staging' + +# base api +VUE_APP_BASE_API = '/console' + +# application base url 这个请求地址是后端请求 使用nginx去做转发配置,请求内网地址 +VUE_APP_BASE_URL = 'http://local.consolepage.yuyinfang168.com' + +# oss +VUE_APP_OSS_BUCKET = 'dev-yuyin' +VUE_APP_OSS_URL = 'https://dev-yuyin.oss-ap-southeast-1.aliyuncs.com' + +# h5 +VUE_APP_H5_BASE_URL = 'http://local.h5.yuyinfang168.com' + +# start mock +VUE_APP_START_MOCK = false diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..e6529fc --- /dev/null +++ b/.eslintignore @@ -0,0 +1,4 @@ +build/*.js +src/assets +public +dist diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..c977505 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,198 @@ +module.exports = { + root: true, + parserOptions: { + parser: 'babel-eslint', + sourceType: 'module' + }, + env: { + browser: true, + node: true, + es6: true, + }, + extends: ['plugin:vue/recommended', 'eslint:recommended'], + + // add your custom rules here + //it is base on https://github.com/vuejs/eslint-config-vue + rules: { + "vue/max-attributes-per-line": [2, { + "singleline": 10, + "multiline": { + "max": 1, + "allowFirstLine": false + } + }], + "vue/singleline-html-element-content-newline": "off", + "vue/multiline-html-element-content-newline":"off", + "vue/name-property-casing": ["error", "PascalCase"], + "vue/no-v-html": "off", + 'accessor-pairs': 2, + 'arrow-spacing': [2, { + 'before': true, + 'after': true + }], + 'block-spacing': [2, 'always'], + 'brace-style': [2, '1tbs', { + 'allowSingleLine': true + }], + 'camelcase': [0, { + 'properties': 'always' + }], + 'comma-dangle': [2, 'never'], + 'comma-spacing': [2, { + 'before': false, + 'after': true + }], + 'comma-style': [2, 'last'], + 'constructor-super': 2, + 'curly': [2, 'multi-line'], + 'dot-location': [2, 'property'], + 'eol-last': 2, + 'eqeqeq': ["error", "always", {"null": "ignore"}], + 'generator-star-spacing': [2, { + 'before': true, + 'after': true + }], + 'handle-callback-err': [2, '^(err|error)$'], + 'indent': [2, 2, { + 'SwitchCase': 1 + }], + 'jsx-quotes': [2, 'prefer-single'], + 'key-spacing': [2, { + 'beforeColon': false, + 'afterColon': true + }], + 'keyword-spacing': [2, { + 'before': true, + 'after': true + }], + 'new-cap': [2, { + 'newIsCap': true, + 'capIsNew': false + }], + 'new-parens': 2, + 'no-array-constructor': 2, + 'no-caller': 2, + 'no-console': 'off', + 'no-class-assign': 2, + 'no-cond-assign': 2, + 'no-const-assign': 2, + 'no-control-regex': 0, + 'no-delete-var': 2, + 'no-dupe-args': 2, + 'no-dupe-class-members': 2, + 'no-dupe-keys': 2, + 'no-duplicate-case': 2, + 'no-empty-character-class': 2, + 'no-empty-pattern': 2, + 'no-eval': 2, + 'no-ex-assign': 2, + 'no-extend-native': 2, + 'no-extra-bind': 2, + 'no-extra-boolean-cast': 2, + 'no-extra-parens': [2, 'functions'], + 'no-fallthrough': 2, + 'no-floating-decimal': 2, + 'no-func-assign': 2, + 'no-implied-eval': 2, + 'no-inner-declarations': [2, 'functions'], + 'no-invalid-regexp': 2, + 'no-irregular-whitespace': 2, + 'no-iterator': 2, + 'no-label-var': 2, + 'no-labels': [2, { + 'allowLoop': false, + 'allowSwitch': false + }], + 'no-lone-blocks': 2, + 'no-mixed-spaces-and-tabs': 2, + 'no-multi-spaces': 2, + 'no-multi-str': 2, + 'no-multiple-empty-lines': [2, { + 'max': 1 + }], + 'no-native-reassign': 2, + 'no-negated-in-lhs': 2, + 'no-new-object': 2, + 'no-new-require': 2, + 'no-new-symbol': 2, + 'no-new-wrappers': 2, + 'no-obj-calls': 2, + 'no-octal': 2, + 'no-octal-escape': 2, + 'no-path-concat': 2, + 'no-proto': 2, + 'no-redeclare': 2, + 'no-regex-spaces': 2, + 'no-return-assign': [2, 'except-parens'], + 'no-self-assign': 2, + 'no-self-compare': 2, + 'no-sequences': 2, + 'no-shadow-restricted-names': 2, + 'no-spaced-func': 2, + 'no-sparse-arrays': 2, + 'no-this-before-super': 2, + 'no-throw-literal': 2, + 'no-trailing-spaces': 2, + 'no-undef': 2, + 'no-undef-init': 2, + 'no-unexpected-multiline': 2, + 'no-unmodified-loop-condition': 2, + 'no-unneeded-ternary': [2, { + 'defaultAssignment': false + }], + 'no-unreachable': 2, + 'no-unsafe-finally': 2, + 'no-unused-vars': [2, { + 'vars': 'all', + 'args': 'none' + }], + 'no-useless-call': 2, + 'no-useless-computed-key': 2, + 'no-useless-constructor': 2, + 'no-useless-escape': 0, + 'no-whitespace-before-property': 2, + 'no-with': 2, + 'one-var': [2, { + 'initialized': 'never' + }], + 'operator-linebreak': [2, 'after', { + 'overrides': { + '?': 'before', + ':': 'before' + } + }], + 'padded-blocks': [2, 'never'], + 'quotes': [2, 'single', { + 'avoidEscape': true, + 'allowTemplateLiterals': true + }], + 'semi': [2, 'never'], + 'semi-spacing': [2, { + 'before': false, + 'after': true + }], + 'space-before-blocks': [2, 'always'], + 'space-before-function-paren': [2, 'never'], + 'space-in-parens': [2, 'never'], + 'space-infix-ops': 2, + 'space-unary-ops': [2, { + 'words': true, + 'nonwords': false + }], + 'spaced-comment': [2, 'always', { + 'markers': ['global', 'globals', 'eslint', 'eslint-disable', '*package', '!', ','] + }], + 'template-curly-spacing': [2, 'never'], + 'use-isnan': 2, + 'valid-typeof': 2, + 'wrap-iife': [2, 'any'], + 'yield-star-spacing': [2, 'both'], + 'yoda': [2, 'never'], + 'prefer-const': 2, + 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, + 'object-curly-spacing': [2, 'always', { + objectsInObjects: false + }], + 'array-bracket-spacing': [2, 'never'] + } +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9ad28d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +.DS_Store +node_modules/ +dist/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* +package-lock.json +tests/**/coverage/ + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f4be7a0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: node_js +node_js: 10 +script: npm run test +notifications: + email: false diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..cb3e709 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM 794038239327.dkr.ecr.ap-southeast-1.amazonaws.com/halar-dev:nginx-alpine3.17 +COPY dist/ /usr/share/nginx/html/ +COPY nginx/nginx.conf /etc/nginx/nginx.conf +COPY nginx/default.conf /etc/nginx/conf.d/default.conf +EXPOSE 80 + diff --git a/Dockerfile-hooka b/Dockerfile-hooka new file mode 100644 index 0000000..042c57f --- /dev/null +++ b/Dockerfile-hooka @@ -0,0 +1,6 @@ +FROM 794038239327.dkr.ecr.ap-southeast-1.amazonaws.com/halar-dev:nginx-alpine3.17 +COPY dist/ /usr/share/nginx/html/ +COPY nginx/nginx.conf /etc/nginx/nginx.conf +COPY nginx/default_hooka.conf /etc/nginx/conf.d/default.conf +EXPOSE 80 + diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6151575 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017-present PanJiaChen + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README-zh.md b/README-zh.md new file mode 100644 index 0000000..2c68023 --- /dev/null +++ b/README-zh.md @@ -0,0 +1 @@ +# Sugartime-admin \ No newline at end of file diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..69013d5 --- /dev/null +++ b/README.en.md @@ -0,0 +1,36 @@ +# red-circle-webconsole + +#### Description +后台前端仓库 + +#### Software Architecture +Software architecture description + +#### Installation + +1. xxxx +2. xxxx +3. xxxx + +#### Instructions + +1. xxxx +2. xxxx +3. xxxx + +#### Contribution + +1. Fork the repository +2. Create Feat_xxx branch +3. Commit your code +4. Create Pull Request + + +#### Gitee Feature + +1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md +2. Gitee blog [blog.gitee.com](https://blog.gitee.com) +3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) +4. The most valuable open source project [GVP](https://gitee.com/gvp) +5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) +6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/README.md b/README.md new file mode 100644 index 0000000..6ae98df --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# 后台管理系统 + +建议开发人员使用 `Vscode` + +* 必须安装启动 `ESLint` 严格统一代码风格 + +# 项目启动命令 + +``` +# 初次下载 +npm install + +# 运行项目 +npm run dev + +# 打包发布 +npm run build:prod + +``` + +# 创建页面流程 + +``` +1.创建页面:已文件夹作为一个页面名称index作为入口 +2.定义路由:在router文件中定义本地路由 +3.定义接口Api:在api目录定义接口 +4.定义Api mock 数据:在mock目录定义mock服务数据 +5.实现自己的逻辑 完成 +``` + + + diff --git a/admin-dashboard-svc.yaml b/admin-dashboard-svc.yaml new file mode 100644 index 0000000..65ee665 --- /dev/null +++ b/admin-dashboard-svc.yaml @@ -0,0 +1,79 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: rc-service-admin-dashboard + labels: + elbv2.k8s.aws/pod-readiness-gate-inject: enabled +--- + +apiVersion: apps/v1 +kind: Deployment +metadata: + namespace: rc-service-admin-dashboard + name: admin-dashboard-deployment + labels: + app: admin-dashboard +spec: + replicas: 2 + revisionHistoryLimit: 3 + selector: + matchLabels: + app: admin-dashboard + template: + metadata: + labels: + app: admin-dashboard + spec: + containers: + - name: admin-dashboard + image: registry.ap-southeast-1.aliyuncs.com/rc1304/admin-dashboard:20230417v1 + ports: + - containerPort: 80 + resources: + requests: + cpu: ".5" + memory: "200Mi" + limits: + cpu: "1" + memory: "520Mi" + imagePullSecrets: + - name: rc-aliyun-secret + +--- +apiVersion: v1 +kind: Service +metadata: + namespace: rc-service-admin-dashboard + name: admin-dashboard-service + annotations: + service.beta.kubernetes.io/aws-load-balancer-type: external + service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: ip + service.beta.kubernetes.io/aws-load-balancer-scheme: internet-facing + service.beta.kubernetes.io/aws-load-balancer-target-group-attributes: deregistration_delay.timeout_seconds=30 + service.beta.kubernetes.io/aws-load-balancer-healthcheck-path: / + service.beta.kubernetes.io/aws-load-balancer-healthcheck-healthy-threshold: '2' + service.beta.kubernetes.io/aws-load-balancer-healthcheck-unhealthy-threshold: '2' + service.beta.kubernetes.io/aws-load-balancer-healthcheck-interval: '10' + #service.beta.kubernetes.io/aws-load-balancer-healthcheck-timeout: '2' + +spec: + selector: + app: admin-dashboard + type: LoadBalancer + ports: + - protocol: TCP + port: 80 + targetPort: 80 + +--- +apiVersion: v1 +data: + .dockerconfigjson: eyJhdXRocyI6eyJyZWdpc3RyeS5hcC1zb3V0aGVhc3QtMS5hbGl5dW5jcy5jb20iOnsidXNlcm5hbWUiOiLnuqLlnIbnp5HmioDlhazlj7giLCJwYXNzd29yZCI6IjEzOTIyNDYwMDUwLiIsImF1dGgiOiI1N3FpNVp5RzU2ZVI1b3FBNVlXczVZKzRPakV6T1RJeU5EWXdNRFV3TGc9PSJ9fX0= +kind: Secret +metadata: + namespace: rc-service-admin-dashboard + creationTimestamp: "2023-04-12T08:35:59Z" + name: rc-aliyun-secret + resourceVersion: "2202094" + uid: 0ea42058-a318-4ead-af1c-441cbbc5e649 +type: kubernetes.io/dockerconfigjson \ No newline at end of file diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..ba17966 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/app' + ] +} diff --git a/build/index.js b/build/index.js new file mode 100644 index 0000000..0c57de2 --- /dev/null +++ b/build/index.js @@ -0,0 +1,35 @@ +const { run } = require('runjs') +const chalk = require('chalk') +const config = require('../vue.config.js') +const rawArgv = process.argv.slice(2) +const args = rawArgv.join(' ') + +if (process.env.npm_config_preview || rawArgv.includes('--preview')) { + const report = rawArgv.includes('--report') + + run(`vue-cli-service build ${args}`) + + const port = 9526 + const publicPath = config.publicPath + + var connect = require('connect') + var serveStatic = require('serve-static') + const app = connect() + + app.use( + publicPath, + serveStatic('./dist', { + index: ['index.html', '/'] + }) + ) + + app.listen(port, function () { + console.log(chalk.green(`> Preview at http://localhost:${port}${publicPath}`)) + if (report) { + console.log(chalk.green(`> Report at http://localhost:${port}${publicPath}report.html`)) + } + + }) +} else { + run(`vue-cli-service build ${args}`) +} diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..143cdc8 --- /dev/null +++ b/jest.config.js @@ -0,0 +1,24 @@ +module.exports = { + moduleFileExtensions: ['js', 'jsx', 'json', 'vue'], + transform: { + '^.+\\.vue$': 'vue-jest', + '.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': + 'jest-transform-stub', + '^.+\\.jsx?$': 'babel-jest' + }, + moduleNameMapper: { + '^@/(.*)$': '/src/$1' + }, + snapshotSerializers: ['jest-serializer-vue'], + testMatch: [ + '**/tests/unit/**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)' + ], + collectCoverageFrom: ['src/utils/**/*.{js,vue}', '!src/utils/auth.js', '!src/utils/request.js', 'src/components/**/*.{js,vue}'], + coverageDirectory: '/tests/unit/coverage', + // 'collectCoverage': true, + 'coverageReporters': [ + 'lcov', + 'text-summary' + ], + testURL: 'http://localhost/' +} diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 0000000..ed079e2 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "exclude": ["node_modules", "dist"] +} diff --git a/mock/activity.js b/mock/activity.js new file mode 100644 index 0000000..50bc41e --- /dev/null +++ b/mock/activity.js @@ -0,0 +1,5 @@ +import Mock from 'mockjs' + +export default [ + +] diff --git a/mock/app-manager.js b/mock/app-manager.js new file mode 100644 index 0000000..181dde4 --- /dev/null +++ b/mock/app-manager.js @@ -0,0 +1,85 @@ +import Mock from 'mockjs' + +export default [ + // 设置buildVersion + { + url: '/sys/version/manage/add/build-version', + type: 'get', + response: config => { + return { + status: 200, + result: {} + } + } + }, + // 获取当前设置buildVersion + { + url: '/sys/version/manage/get/build-version', + type: 'get', + response: config => { + return { + status: 200, + result: 0 + } + } + }, + // app版本信息列表 + { + url: '/sys/version/manage', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'id': '@id', + 'clientType': 'iOS', + 'version': '1.5.7', + 'forceUpdate': 'true', + 'updateDescribe': '强制更新', + 'apkSize': '123M', + 'review': 'true', + 'del': 0, + 'downloadUrl': 'xxx', + 'publishTime': '2020-03-23 16:53:49' + }] + }).items, total: 0, size: 30, current: 1, searchCount: true, pages: 0 + } + } + } + }, + // 添加版本信息 + { + url: '/sys/version/manage', + type: 'post', + response: config => { + return { + status: 200, + result: {} + } + } + }, + // 修改版本信息 + { + url: '/sys/version/manage/update', + type: 'put', + response: config => { + return { + status: 200, + result: {} + } + } + }, + // 删除版本信息 + { + url: '/sys/version/manage/\.', + type: 'get', + response: config => { + return { + status: 200, + result: {} + } + } + } +] diff --git a/mock/app-user.js b/mock/app-user.js new file mode 100644 index 0000000..1a8e55a --- /dev/null +++ b/mock/app-user.js @@ -0,0 +1,272 @@ +import Mock from 'mockjs' + +export default [ + // 用户扩展资料 + { + url: '/user/expand', + type: 'get', + response: () => { + return { 'status': 200, 'result': { 'createTime': '2022-05-24 18:55:46', 'updateTime': '2022-05-24 19:15:03', 'userId': '1529053537530519554', 'language': 'en', 'lastZoneId': 'UTC', 'lastActiveTime': '2022-05-24 19:15:03', 'unlockArchiveSize': 0, 'purchasing': false, 'signature': '', 'registerCountryCode': 'US' }} + } + }, + // 货运代理账户分页列表 + { + url: '/freight/page', + type: 'get', + response: () => { + return { 'status': 200, 'result': { 'records': [{ 'id': '123', 'sysOrigin': 'ASWAT', 'userId': '1408342064156770305', 'earnPoints': 10000.00, 'consumptionPoints': 4000.00, 'createTime': '2021-07-06 16:41:09', 'updateTime': '2021-07-06 17:21:58', 'userBaseInfo': { 'createTime': '2021-06-25 16:31:28', 'updateTime': '2021-06-25 16:31:28', 'id': '1408342064156770305', 'userAvatar': '', 'originSys': 'ASWAT', 'userNickname': '啦啦啦2', 'userSex': 1, 'userSexName': '男', 'userType': 0, 'age': 1, 'bornYear': 2020, 'bornMonth': 1, 'bornDay': 1, 'userTypeName': '真实', 'countryName': 'China', 'countryId': '1231833262813360130', 'countryCode': 'CN', 'accountStatus': 'NORMAL', 'accountStatusName': '正常', 'freezingTime': '2021-06-24 16:31:28', 'del': false, 'account': '41712' }, 'balance': 6000.00 }], 'total': 1, 'size': 1000, 'current': 1, 'searchCount': true, 'pages': 1 }} + } + }, + // 用户糖果余额 + { + url: '/user/base/info/account/status/\.', + type: 'get', + response: () => { + return { + 'status': 200, + 'result': { + 'key': 'ARCHIVE', + 'value': '封存' + } + } + } + }, + // 账户余额信息 + { + url: '/user/subscription/balance/\./name', + type: 'get', + response: config => { + return { + status: 200, + result: '-' + } + } + }, + // 认证信息 + { + url: '/user/auth/type/\.*', + type: 'get', + response: config => { + return { + status: 200, + result: { + 'createTime': '2020-03-23 16:49:17', + 'updateTime': '2020-03-23 16:49:17', + 'userId': '1242010518727663617', + 'openId': '123456', + 'type': 'FACEBOOK', + 'del': false + } + } + } + }, + // 注册信息 + { + url: '/user/register/info/\.*', + type: 'get', + response: config => { + return { + status: 200, + result: { + 'createTime': '2020-03-23 16:49:17', + 'updateTime': '2020-03-23 16:49:17', + 'userId': '1242010518727663617', + 'residentialAddress': '深圳市 软件产业基地 xxxx', + 'authType': 'FACEBOOK', + 'originPlatform': 'iOS', + 'origin_phone_model': 'iphone 12' + } + } + } + }, + // 正常照片墙 + { + url: '/user/photo/wall/normal/\.*', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ + 'items|6': [{ + 'id': '@id', + 'resourceUrl': 'https://cube.elemecdn.com/6/94/4d3ea53c084bad6931a56d5158a48jpeg.jpeg', + 'sort': '0', + 'violation': 'NORMAL', + 'createTime': '2020-03-23 16:53:49', + 'updateTime': '2020-03-23 16:53:49' + }] + }).items + } + } + }, + // 所有照片墙 + { + url: '/user/photo/wall/all/\.*', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ + 'items|6': [{ + 'id': '@id', + 'resourceUrl': 'https://cube.elemecdn.com/6/94/4d3ea53c084bad6931a56d5158a48jpeg.jpeg', + 'sort': '0', + 'violation': 'NORMAL', + 'createTime': '2020-03-23 16:53:49', + 'updateTime': '2020-03-23 16:53:49' + }] + }).items + } + } + }, + // app用户列表 + { + url: '/user/base/info/page', + type: 'post', + response: config => { + return { + status: 200, + result: Mock.mock({ + 'items|30': [ + { + 'userProfile': { + 'id': '@id', + 'sysOrigin': 'SUGARTIME', + 'account': '@id', + 'candyNumber': '12', + 'userAvatar': '', + 'userNickname': '@sentence(2, 6)', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'userTypeName': '真实', + 'countryName': 'Qatar', + 'countryCode': 'QA', + 'countryId': '1231833357432664065', + 'createTime': '2021-07-25 10:36:17', + 'vipStatusName': '-', + 'authType': 'APPLE', + 'level': 0, + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'age': 25, + 'bornYear': 1996, + 'bornMonth': 4, + 'bornDay': 1 + }, + 'userRegisterInfo': { + 'originPlatform': 'iOS', + 'originPhoneModel': 'iPhone 11 Pro' + }, + 'lastActiveTime': '2021-07-25 10:36:19', + 'goldBalance': 123123 + }] + }).items + } + } + }, + // app用户列表 + { + url: '/user/base/info/\.*', + type: 'get', + response: () => { + return { + 'status': 200, + 'result': { + 'createTime': '2020-03-23 14:43:50', + 'updateTime': '2020-03-23 14:45:10', + 'id': '1241978948486668290', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/807E56D2-4E24-4048-BDCE-8C72BB39C723.png', + 'userNickname': 'Betty Aldbhiidacbdi Lauberg', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'userTypeName': '真实', + 'countryName': 'China', + 'del': false + } + } + } + }, + // 所有照片墙 + { + url: '/user/photo/wall/page', + type: 'get', + response: () => { + return { + 'status': 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'createTime': '2020-04-03 18:13:13', + 'updateTime': '2020-04-03 18:13:13', + 'id': '1246017905511866369', + 'userId': '1245960976894763009', + 'resourceUrl': 'http://dev.qiniu.sugartimeapp.com/3BBD3DBF-6086-444B-9AF0-77F16BF901F2.png', + 'sort': 0, + 'violation': 'NORMAL' + }] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + { + url: '/user/photo/wall/del/\.*', + type: 'get', + response: () => { + return { + 'status': 200 + } + } + }, + // 修改用户信息 + { + url: '/user/base/info', + type: 'put', + response: () => { + return { + 'status': 200 + } + } + }, + // 修改用户等级 + { + url: '/user/level/score', + type: 'post', + response: () => { + return { + 'status': 200 + } + } + }, + // 用户糖果余额 + { + url: '/user/candy/balance/\.', + type: 'get', + response: () => { + return { + 'status': 200, + 'result': { + 'balance': 100 + } + } + } + }, + // 用户糖果余额-top表 + { + url: '/user/candy/balance/top', + type: 'get', + response: () => { + return { + 'status': 200, + 'result': [] + } + } + } +] diff --git a/mock/approval.js b/mock/approval.js new file mode 100644 index 0000000..4c6e5a4 --- /dev/null +++ b/mock/approval.js @@ -0,0 +1,354 @@ + +import Mock from 'mockjs' +import { getPage, post, get } from './default_request' +export default [ + // 获取审批信息列表 + { + url: '/sys/video/call/censor/approval/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'createTime': '2020-03-20 17:52:52', + 'updateTime': '2020-03-20 17:52:52', + 'id': '1240939356966854657', + 'userId': '1237225366122110977', + 'userNickname': 'Linda', + 'userSex': 1, + 'userSexName': '男', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/1583812560900.jpg', + 'age': 30, + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'countryName': 'China', + 'labelNames': '色情/性感', + 'scores': '0.55/0.95/0.68/0.85', + 'approvalResult': '', + 'approvalResultName': '', + 'approvalStatus': 0, + 'approvalStatusName': '待审批', + 'censorViolationResources': Mock.mock({ 'items|1-6': [ + { + 'id': '1240939358531330050', + 'relatedId': '1240939356966854657', + 'groupId': '1240939358489387010', + 'rate': 0.55, + 'label': 0, + 'labelName': '色情', + 'imgUrl': 'http://dev.qiniu.sugartimeapp.com/1240939357029769218_20200320.png', + 'review': true, + 'createTime': '2020-03-20 17:52:53', + 'updateTime': '2020-03-20 17:52:53' + } + ] }).items, + 'coverPicture': 'http://dev.qiniu.sugartimeapp.com/1240939357029769218_20200320.png' + }] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + // 用户账号违规 + { + url: '/user/data/violation/expand/approval/account', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 获取视频违规记录 + { + url: '/sys/video/call/censor/approval/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'createTime': '2020-03-17 14:36:11', + 'updateTime': '2020-03-18 10:33:16', + 'updateUser': '23', + 'id': '@id', + 'userId': '1218488747672195074', + 'userNickname': 'view~', + 'userSex': 0, + 'userSexName': '女', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/1584081528063.jpg', + 'age': 26, + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'countryName': 'Taiwan, Province of China', + 'labelNames': '男人', + 'scores': '0.62', + 'approvalResult': 'PRON,VIOLENT', + 'approvalResultName': '涉黄/涉爆', + 'approvalStatus': 2, + 'approvalStatusName': '违规', + 'censorViolationResources': Array[1], + 'coverPicture': 'http://dev.qiniu.sugartimeapp.com/1239802694169763842_20200317.png', + 'approvalNickname': 'admin' + }] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + // 审批违规审批图片 + { + url: '/sys/video/call/censor/approval', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 用户资料审批 + { + url: '/user/data/violation/expand', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': [ + { + 'userId': '1210502604691271681', + 'nickname': 'Joyce ', + 'avatar': 'http://dev.qiniu.sugartimeapp.com/425C923B-75AE-4C8E-A632-475F767BBB19.png', + 'userPhotoWalls': Mock.mock({ + 'items|1-6': [{ + 'createTime': '2020-03-24 16:33:45', + 'updateTime': '2020-03-24 16:33:45', + 'id': '1242368996419805190', + 'userId': '1210502604691271681', + 'resourceUrl': 'http://dev.qiniu.sugartimeapp.com/912008AD-68AF-405F-BC66-62F303242A01.png', + 'sort': 5, + 'violation': 'NORMAL' + }] + }).items, + 'audioUrl': '', + 'accountStatus': '正常', + 'identityName': '会员', + 'violationTypes': [ + '待实现' + ], + 'machineReviewSuggest': { + 'PHOTO_WALL': '正常', + 'AVATAR': '' + }, + 'avatarScore': 0, + 'photoWallScore': 0.58, + 'personReviewSuggest': { + 'SOUND': '', + 'PHOTO_WALL': '', + 'NICKNAME': '', + 'AVATAR': '' + }, + 'violationSize': 0, + 'updateDataTime': '2020-03-24 16:33:46', + 'userDataViolationLatest': Mock.mock({ 'items|1-6': [ + { + 'createTime': '2020-03-24 16:34:13', + 'updateTime': '2020-03-24 16:34:13', + 'id': '1242369115756142593', + 'userId': '1210502604691271681', + 'violationType': 'PHOTO_WALL', + 'suggestion': 'pass', + 'label': 'normal', + 'labelName': '正常', + 'politicianName': '', + 'score': 0, + 'contentId': '1242368996419805185', + 'content': 'http://dev.qiniu.sugartimeapp.com/AF0B5BA6-5468-41B5-B702-84AD1B8E7026.png' + } + ] }).items + } + ] + } + } + }, + // 用户资料审批 + { + url: '/user/data/violation/expand/approval', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 获取违规照片墙 + { + url: '/user/data/violation/latest/photo/wall/\.*', + type: 'get', + response: config => { + return { 'status': 200, + 'result': + Mock.mock({ + 'items|6': [{ + 'userPhotoWall': { + 'createTime': '2020-03-24 16:33:45', + 'updateTime': '2020-03-24 16:33:45', + 'id': '1242368996419805185', + 'userId': '1210502604691271681', + 'resourceUrl': 'http://dev.qiniu.sugartimeapp.com/AF0B5BA6-5468-41B5-B702-84AD1B8E7026.png', + 'sort': 0, + 'violation': 'NORMAL' + }, + 'userDataViolationLatest': { + 'createTime': '2020-03-24 16:34:13', + 'updateTime': '2020-03-24 16:34:13', + 'id': '1242369115756142593', + 'userId': '1210502604691271681', + 'violationType': 'PHOTO_WALL', + 'suggestion': 'pass', + 'label': 'normal', + 'labelName': '正常', + 'politicianName': '', + 'score': 0, + 'contentId': '1242368996419805185', + 'content': 'http://dev.qiniu.sugartimeapp.com/AF0B5BA6-5468-41B5-B702-84AD1B8E7026.png' + } + }] + }).items + } + } + }, + // 审批违规历史记录列表 + { + url: '/approval/history/page', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': { + 'records': + Mock.mock({ 'items|2': [{ + 'id': '1255039948302983170', + 'userId': '1254987013716664322', + 'violationTypeName': '照片', + 'labelNames': '', + 'approvalResult': 'NOT_PASS', + 'approvalResultName': '', + 'contentId': '1254987013716664322', + 'content': '', + 'description': '', + 'createTime': '2020-04-28 07:43:36', + 'createUser': '23', + 'approvalNickname': 'admin' + }] + }).items, + 'total': 21, + 'size': 20, + 'current': 1, + 'searchCount': true, + 'pages': 2 + } + } + } + }, + // 最近账号审批记录 + { + url: '/approval/user/account/status/log/latest', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': [] + } + } + }, + // 照片墙审批-通过 + { + url: '/approval/photo/wall/pass', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 照片墙审批-不通过 + { + url: '/approval/photo/wall/not/pass', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 举报审批-通过 + { + url: '/approval/reported/pass', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 举报审批-不通过 + { + url: '/approval/reported/not/pass', + type: 'post', + response: config => { + return { 'status': 200 } + } + }, + // 内容审批 + post('/data/approval', ''), + // 房间资料审批信息分页列表 + getPage('/room/profile-manager/approval/page', {}), + // 房间资料审批信息分页列表 + getPage('/data/approval/user_profile/page', { + 'userId': '1336596463023435778', + 'userAvatar': 'http://app.qiniu.sugartimeapp.com/3A5C04A2-92AE-4EBE-B551-1BB8D3A62DE0.png', + 'userNickname': ' مي ع ', + 'age': 20, + 'userSex': 1, + 'userSexName': '男', + 'machineLabel': '鉴黄-正常:0.9313728,鉴暴恐-正常:0.7882,敏感人物识别-正常:0', + 'updateTime': '2020-12-10 09:51:06', + 'approvalUserName': '张三丰' + }), + // 用户个性签名审批列表 + getPage('/data/approval/user_profile_desc/page', {}), + // 主题审批分页列表 + getPage('/room/user/theme/page', { + 'id': '324223', + 'userId': '1348513431641104386', + 'themeBack': 'http://dev.qiniu.sugartimeapp.com/19999.png', + 'themeStatus': 'PENDING', + 'themeMoney': 50.00, + 'userBaseInfo': { + 'createTime': '2021-01-11 14:13:50', + 'updateTime': '2021-01-14 11:12:29', + 'id': '1348513431641104386', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/1610435161102.png', + 'originSys': 'TIM_CHAT', + 'userNickname': '我', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 120, + 'bornYear': 1900, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'China', + 'countryId': '1231833262813360130', + 'countryCode': 'CN', + 'accountStatus': 'NORMAL', + 'freezingTime': '2021-01-10 14:13:51', + 'del': false, + 'account': '399697' + } + }), + // 主题审批 + post('/room/user/theme/approve', {}) +] diff --git a/mock/banner.js b/mock/banner.js new file mode 100644 index 0000000..f72877f --- /dev/null +++ b/mock/banner.js @@ -0,0 +1,35 @@ +import Mock from 'mockjs' + +export default [ + // banner信息 + { + url: '/sys/banner/config', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-01-26 18:25:37', + 'updateTime': '2021-01-26 18:32:17', + 'updateUser': '23', + 'id': '1354012611532255233', + 'link': 'ddd', + 'cover': 'http://sugartime-dev.oss-accelerate.aliyuncs.com/manager-e22186b3-e630-4451-8816-daeecf6377b2.jpg', + 'showcase': true, + 'expiredTime': '2021-01-11 02:03:02', + 'depict': 'dee' + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + } +] diff --git a/mock/bean.js b/mock/bean.js new file mode 100644 index 0000000..88e83da --- /dev/null +++ b/mock/bean.js @@ -0,0 +1,77 @@ +import { getPage } from "./default_request"; + +export default [ + /** + * 用户豆子余额列表. + */ + getPage("/user-bean-balance/page", { + userId: "1443513452148449281", + earnPoints: 123123, + consumptionPoints: 12312, + userBaseInfo: { + createTime: "2021-09-30 17:50:00", + updateTime: "2021-09-30 17:50:04", + id: "1443513452148449281", + userAvatar: + "http://dev.img.sugartimeapp.com/avatar/B3894080-3EC8-486D-B402-6F5F6AF70716.png", + originSys: "TIM_CHAT", + userNickname: "Undo", + userSex: 1, + userSexName: "男", + userType: 0, + age: 21, + bornYear: 2000, + bornMonth: 1, + bornDay: 1, + userTypeName: "真实", + countryName: "United States", + countryId: "1231833389347123201", + countryCode: "US", + accountStatus: "NORMAL", + accountStatusName: "正常", + freezingTime: "2021-09-29 17:50:01", + del: false, + account: "41909" + } + }), + + /** + * 用户豆子流水列表. + */ + getPage("/user-bean-balance/running-water/page", { + id: "1447763661450973186", + sysOrigin: "TIM_CHAT", + userId: "1443513452148449281", + associateId: "1447763661325144066", + quantity: 100, + balance: 110911, + origin: "REWARD_COINS", + originName: "Reward coins", + createTime: "2021-10-12 03:18:49", + userBaseInfo: { + createTime: "2021-09-30 17:50:00", + updateTime: "2021-09-30 17:50:04", + id: "1443513452148449281", + userAvatar: + "http://dev.img.sugartimeapp.com/avatar/B3894080-3EC8-486D-B402-6F5F6AF70716.png", + originSys: "TIM_CHAT", + userNickname: "Undo", + userSex: 1, + userSexName: "男", + userType: 0, + age: 21, + bornYear: 2000, + bornMonth: 1, + bornDay: 1, + userTypeName: "真实", + countryName: "United States", + countryId: "1231833389347123201", + countryCode: "US", + accountStatus: "NORMAL", + accountStatusName: "正常", + freezingTime: "2021-09-29 17:50:01", + del: false, + account: "41909" + } + }) +]; diff --git a/mock/datav.js b/mock/datav.js new file mode 100644 index 0000000..6145eca --- /dev/null +++ b/mock/datav.js @@ -0,0 +1,28 @@ +import Mock from 'mockjs' + +export default [ + // 活跃用户分布国家 + { + url: '/datav/active_user_country_code', + type: 'get', + response: config => { + return { 'status': 200 } + } + }, + // 在线用户总数 + { + url: '/datav/online/user/count', + type: 'get', + response: config => { + return { 'status': 200, 'result': 100 } + } + }, + // 在线房间总数 + { + url: '/datav/online/room/count', + type: 'get', + response: config => { + return { 'status': 200, 'result': 100 } + } + } +] diff --git a/mock/default_request.js b/mock/default_request.js new file mode 100644 index 0000000..32b7a4b --- /dev/null +++ b/mock/default_request.js @@ -0,0 +1,79 @@ +/** + * 默认的mock请求声明数据 + */ +import Mock from 'mockjs' + +export function get(url, result) { + return { + url, + type: 'get', + response: config => { + return { + 'status': 200, + 'result': result + } + } + } +} + +export function getPage(url, result) { + return { + url, + type: 'get', + response: config => { + return { + 'status': 200, + 'result': { + 'records': Mock.mock({ + 'items|30': [result] + }).items, + 'total': 30, + 'size': 20, + 'current': 1, + 'searchCount': true, + 'pages': 1 + } + } + } + } +} + +export function post(url, result) { + return { + url, + type: 'post', + response: config => { + return { + 'status': 200, + 'result': {} + } + } + } +} + +export function del(url, result) { + return { + url, + type: 'delete', + response: config => { + return { + 'status': 200, + result + } + } + } +} + +export function put(url, result) { + return { + url, + type: 'put', + response: config => { + return { + 'status': 200, + result + } + } + } +} + diff --git a/mock/dictionary.js b/mock/dictionary.js new file mode 100644 index 0000000..d17ecb4 --- /dev/null +++ b/mock/dictionary.js @@ -0,0 +1,65 @@ +import Mock from 'mockjs' + +export default [ + // 系统字典信息 + { + url: '/sys/dictionary/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2020-12-04 10:25:48', + 'updateTime': '2020-12-04 10:25:48', + 'id': '6666', + 'type': 'ROOM_BLACK_TIME', + 'dicCode': 'ONE_MONTH', + 'dicParentCode': '', + 'dicVal': '43200', + 'dicDesc': '1 month', + 'typeName': '房间黑名单过期时长' + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 修改字典信息 + { + url: '/sys/dictionary', + type: 'put', + response: () => { + return { + 'status': 200 + } + } + }, + // 增加字典信息 + { + url: '/sys/dictionary', + type: 'post', + response: () => { + return { + 'status': 200 + } + } + }, + // 删除字典 + { + url: '/sys/dictionary/\/*', + type: 'delete', + response: () => { + return { + 'status': 200 + } + } + } +] diff --git a/mock/family.js b/mock/family.js new file mode 100644 index 0000000..356a27e --- /dev/null +++ b/mock/family.js @@ -0,0 +1,242 @@ +import Mock from 'mockjs' + +export default [ + { + url: '/family/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [ + { + 'createTime': '2021-07-30 10:01:08', + 'updateTime': '2021-07-30 14:04:17', + 'createUser': '1412983576920535042', + 'id': '1420927408446341122', + 'sysOrigin': 'ASWAT', + 'familyAccount': '1005', + 'familyAvatar': 'http://dev.img.sugartimeapp.com/avatar/8CB2584D-74D1-42AE-890B-650833790959.png', + 'familyName': '把我啦', + 'familyLevelId': '1419951513519673345', + 'familyStatus': 'NORMAL', + 'familyNotice': '考虑图哇路', + 'memberCount': '1', + 'levelKey': 'BLACK_IRON', + 'familyExp': 1998, + 'userBaseInfo': { + 'createTime': '2021-07-08 11:55:11', + 'updateTime': '2021-07-23 15:44:04', + 'id': '1412983576920535042', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/72E33441-0AD8-47F9-80E4-A3115D3AC068.png', + 'originSys': 'ASWAT', + 'userNickname': '考虑一下', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 21, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'United Kingdom', + 'countryId': '1231833285743620097', + 'countryCode': 'GB', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-07-07 11:55:11', + 'del': false, + 'account': '41758' + } + }, + { + 'createTime': '2021-07-29 16:01:59', + 'createUser': '1403599281328107522', + 'id': '1420656112526315521', + 'sysOrigin': 'ASWAT', + 'familyAccount': '1004', + 'familyAvatar': 'http://dev.img.sugartimeapp.com/avatar/ca82dbad-00fe-4d5f-9317-34581eaf4828.jpg', + 'familyName': 'psg', + 'familyLevelId': '1419951513519673345', + 'familyStatus': 'NORMAsssL', + 'familyNotice': 'hgjdjdhdb ', + 'memberCount': '1', + 'levelKey': 'BLACK_IRON', + 'familyExp': 99, + 'userBaseInfo': { + 'createTime': '2021-06-12 14:25:21', + 'updateTime': '2021-06-17 12:09:23', + 'id': '1403599281328107522', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/8d9ac8af-149c-409b-9689-da6b30fab64a.jpg', + 'originSys': 'ASWAT', + 'userNickname': 'Samsung', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 26, + 'bornYear': 1995, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'China', + 'countryId': '1231833262813360130', + 'countryCode': 'CN', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-06-11 14:25:21', + 'del': false, + 'account': '41634' + } + }, + { + 'createTime': '2021-07-29 10:44:13', + 'updateTime': '2021-07-29 15:25:49', + 'createUser': '1407187450447503361', + 'id': '1420575864802758658', + 'sysOrigin': 'ASWAT', + 'familyAccount': '1003', + 'familyAvatar': '', + 'familyName': 'st_3327445017982', + 'familyLevelId': '1419951513519673345', + 'familyStatus': 'NORMAL', + 'familyNotice': '', + 'memberCount': '2', + 'levelKey': 'BLACK_IRON', + 'familyExp': 0, + 'userBaseInfo': { + 'createTime': '2021-06-22 12:03:27', + 'updateTime': '2021-06-22 12:04:09', + 'id': '1407187450447503361', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/5a5cdb55-322c-4400-bc06-21e99cf26fc1.jpg', + 'originSys': 'ASWAT', + 'userNickname': 'HONOR 9x', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 26, + 'bornYear': 1995, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'Azerbaijan', + 'countryId': '1231833241778925570', + 'countryCode': 'AZ', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-06-21 12:03:27', + 'del': false, + 'account': '41681' + } + } + ] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + { + url: '/family/level/config/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [ + { + 'createTime': '2021-07-27 17:22:12', + 'updateTime': '2021-07-28 15:06:24', + 'id': '1419951513519673345', + 'sysOrigin': 'ASWAT', + 'levelKey': 'BLACK_IRON', + 'avatarFrameId': '1419923318128943106', + 'badgeId': '1419919035165745154', + 'giftId': '1419936886396178433', + 'levelExp': 20000, + 'maxMember': 150, + 'maxManager': 5, + 'levelBackgroundPicture': 'http://dev.img.sugartimeapp.com/svga_cover/manager-58578f0d-72fd-410d-8ac3-b49ad29c9473.jpg', + 'sort': 0 + }, + { + 'createTime': '2021-07-27 17:25:41', + 'updateTime': '2021-07-28 15:06:38', + 'id': '1419952388564733953', + 'sysOrigin': 'ASWAT', + 'levelKey': 'BRONZE_I', + 'avatarFrameId': '1419923459619594242', + 'badgeId': '1419919170159419394', + 'giftId': '1419937069750177793', + 'levelExp': 50000, + 'maxMember': 160, + 'maxManager': 6, + 'levelBackgroundPicture': 'http://dev.img.sugartimeapp.com/svga_cover/manager-bb499970-95d8-4f53-8a2e-7c77fa64f9ee.jpg', + 'sort': 1 + }, + { + 'createTime': '2021-07-28 15:11:59', + 'updateTime': '2021-07-28 15:11:59', + 'id': '1420281134152867842', + 'sysOrigin': 'ASWAT', + 'levelKey': 'BRONZE_II', + 'avatarFrameId': '1419923318128943106', + 'badgeId': '1419919035165745154', + 'giftId': '1419936886396178433', + 'levelExp': 25000, + 'maxMember': 170, + 'maxManager': 6, + 'levelBackgroundPicture': 'http://dev.img.sugartimeapp.com/svga_cover/manager-ac57a8b1-3042-4d0b-9295-cb17b2d00800.jpg', + 'sort': 2 + } + ] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + { + url: '/family/create/rule/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [ + { + 'createTime': '2021-07-27 17:29:06', + 'updateTime': '2021-07-28 14:25:07', + 'id': '1419951513519673341', + 'sysOrigin': 'ASWAT', + 'payCandy': 30000 + }, + { + 'createTime': '2021-07-28 14:23:33', + 'updateTime': '2021-07-28 14:23:33', + 'id': '1420268947057336322', + 'sysOrigin': 'TIM_CHAT', + 'payCandy': 20000 + } + ] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + } +] diff --git a/mock/game.js b/mock/game.js new file mode 100644 index 0000000..7c7ef18 --- /dev/null +++ b/mock/game.js @@ -0,0 +1,128 @@ + +/** + * 游戏相关 + */ +import Mock from 'mockjs' + +export default [ + // 飞行棋游戏-列表 + { + url: '/game-ludo/flow', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': [ + { + 'history': { + 'id': '1522848508305948674', + 'sysOrigin': 'ASWAT', + 'roomId': '1000', + 'gameStatus': 'END', + 'gameStatusEvent': 'NORMAL_SETTLEMENT', + 'joinAmount': 200, + 'playerSize': 2, + 'bonus': 280, + 'lockSeat': '', + 'victoryColor': 'GREEN', + 'createTime': '2022-05-07 15:59:12' + }, + 'players': [ + { + 'players': { + 'createTime': '2022-05-07 15:59:12', + 'updateTime': '2022-05-07 15:59:12', + 'id': '1522848508373057538', + 'gameId': '1522848508305948674', + 'userId': '1497138368407797762', + 'consumeJoinAmount': 200, + 'checkerboardColor': 'RED', + 'initiator': true, + 'rankingIndex': 0 + }, + 'userProfile': { + 'id': '1497138368407797762', + 'account': '42041', + 'userAvatar': 'http://img.sugartimeapp.com/halla_default_avatar_2.png', + 'userNickname': '233445', + 'userSex': 1, + 'age': 15, + 'accountStatus': 'NORMAL', + 'freezingTime': '2022-02-24 17:16:17', + 'countryId': '1231833241778925570', + 'countryName': 'Azerbaijan', + 'countryCode': 'AZ', + 'originSys': 'ASWAT', + 'sysOriginChild': 'ASWAT_LITE', + 'del': false, + 'bornYear': 2006, + 'bornMonth': 2, + 'bornDay': 25, + 'createTime': '2022-02-25 17:16:17', + 'ownSpecialId': { + 'account': '433435', + 'customizeField': { + + } + }, + 'actualAccountStatus': 'NORMAL', + 'actualAccount': '433435', + 'accountStatusName': '正常', + 'userSexName': '男' + } + }, + { + 'players': { + 'createTime': '2022-05-07 15:59:12', + 'updateTime': '2022-05-07 15:59:12', + 'id': '1522848508373057539', + 'gameId': '1522848508305948674', + 'userId': '1522441430756216833', + 'consumeJoinAmount': 200, + 'checkerboardColor': 'GREEN', + 'initiator': false, + 'rankingIndex': 0 + }, + 'userProfile': { + 'id': '1522441430756216833', + 'account': '42054', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/c48011dd-676f-4b75-953c-22389d1dde3c.jpg', + 'userNickname': 'Dog', + 'userSex': 1, + 'age': 27, + 'accountStatus': 'NORMAL', + 'freezingTime': '2022-05-05 13:01:37', + 'countryId': '1231833262813360130', + 'countryName': 'China', + 'countryCode': 'CN', + 'originSys': 'ASWAT', + 'sysOriginChild': 'ASWAT', + 'del': false, + 'bornYear': 1995, + 'bornMonth': 1, + 'bornDay': 1, + 'createTime': '2022-05-06 13:01:37', + 'actualAccountStatus': 'NORMAL', + 'actualAccount': '42054', + 'accountStatusName': '正常', + 'userSexName': '男' + } + } + ] + } + ] + } + } + }, + // lucky box + { + url: '/game/lucky/box/list', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': [] + } + } + } +] diff --git a/mock/gift.js b/mock/gift.js new file mode 100644 index 0000000..cbbfcf5 --- /dev/null +++ b/mock/gift.js @@ -0,0 +1,91 @@ +import Mock from 'mockjs' + +export default [ + // 获取指定平台礼物 + { + url: '/sys/gift/config/sys_origin/\.', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ 'items|30': [ + { + 'createTime': '2020-06-08 11:56:53', + 'updateTime': '2020-06-08 11:56:53', + 'id': '@id', + 'giftPhoto': 'http://dev.qiniu.sugartimeapp.com/sports_car.png', + 'giftSourceUrl': '', + 'giftName': '跑车', + 'giftCode': 'SPORTS_CAR', + 'giftCandy': 100000.00, + 'giftIntegral': 100000.00, + 'sort': 0, + 'del': false + } + ] } + ).items + } + } + }, + // 礼物信息 + { + url: '/sys/gift/config', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2020-06-08 11:56:53', + 'updateTime': '2020-06-08 11:56:53', + 'id': '1269808328087785480', + 'giftPhoto': 'http://dev.qiniu.sugartimeapp.com/sports_car.png', + 'giftSourceUrl': '', + 'giftName': '跑车', + 'giftCode': 'SPORTS_CAR', + 'giftCandy': 100000.00, + 'giftIntegral': 100000.00, + 'sort': 0, + 'del': false + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 修改礼物信息 + { + url: '/sys/gift/config', + type: 'put', + response: () => { + return { + 'status': 200 + } + } + }, + // 新增礼物信息 + { + url: '/sys/gift/config', + type: 'post', + response: () => { + return { + 'status': 200 + } + } + }, + // 礼物赠送记录列表 + { + url: '/running-water-log/gift-give', + type: 'get', + response: config => { + return { 'status': 200, 'result': [{ 'id': '1551860122988666881', 'trackId': '1551860117456379905', 'originId': '1407188479826173954', 'sysOrigin': 'ASWAT', 'requestPlatform': 'Android', 'userId': '1403635539530207234', 'anchor': true, 'giftId': '1524225254146154497', 'giftCover': 'http://dev.img.sugartimeapp.com/gifts/manager-abc56280-5d5f-4df9-9728-93394e5e676b.png', 'giftType': 'GOLD', 'giftValue': { 'currencyType': 'GOLD', 'giftType': 'ORDINARY', 'unitPrice': 1999.00, 'quantity': 1, 'userSize': 1, 'giftValue': 1999.00, 'actualAmount': 1999.00, 'percentage': 2, 'selfPercentage': 1 }, 'acceptUsers': [{ 'acceptUserId': '1403635539530207234', 'anchor': true, 'receiptId': '0', 'acceptAmount': 199, 'targetAmount': 1999.00, 'userProfile': { 'id': '1403635539530207234', 'account': '41640', 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/0aba61c0-bdfa-49b0-8b27-564a4cbe6ec9.jpg', 'userNickname': '推广的', 'userSex': 0, 'age': 66, 'accountStatus': 'NORMAL', 'freezingTime': '2021-08-20 15:44:59', 'countryId': '1231833262813360130', 'countryName': 'China', 'countryCode': 'CN', 'originSys': 'ASWAT', 'sysOriginChild': '', 'del': false, 'bornYear': 1955, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2021-06-12 16:49:25', 'userSexName': '女', 'accountStatusName': '正常', 'actualAccountStatus': 'NORMAL', 'actualAccount': '41640' }}, { 'acceptUserId': '1406947844938510338', 'anchor': true, 'receiptId': '0', 'acceptAmount': 399, 'targetAmount': 1999.00, 'userProfile': { 'id': '1406947844938510338', 'account': '41680', 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/8f36b375-c943-4562-ae31-2d061ec3a9c4.png', 'userNickname': 'OnePlus ', 'userSex': 1, 'age': 122, 'accountStatus': 'NORMAL', 'freezingTime': '2021-06-20 20:11:21', 'countryId': '1231833262813360130', 'countryName': 'China', 'countryCode': 'CN', 'originSys': 'ASWAT', 'sysOriginChild': '', 'del': false, 'bornYear': 1900, 'bornMonth': 1, 'bornDay': 24, 'createTime': '2021-06-21 20:11:20', 'userSexName': '男', 'accountStatusName': '正常', 'actualAccountStatus': 'NORMAL', 'actualAccount': '41680' }}], 'logs': [{ 'content': '流水入库', 'createTime': '2022-07-26 17:21:00' }], 'roomProfile': { 'id': '1407188479826173954', 'roomAccount': '41680', 'userId': '1406947844938510338', 'roomCover': 'http://dev.img.sugartimeapp.com/avatar/4d73749d-209e-47c7-97db-dc0e99739527.jpg', 'roomName': 'oneplus', 'roomDesc': '欢迎大家! 让我们一起聊天,一起玩吧。', 'event': 'AVAILABLE', 'sysOrigin': 'ASWAT', 'countryCode': 'CN', 'countryName': 'China', 'del': false, 'createTime': '2021-06-22 12:07:32', 'updateTime': '2022-07-26 17:02:22' }, 'userProfile': { 'id': '1403635539530207234', 'account': '41640', 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/0aba61c0-bdfa-49b0-8b27-564a4cbe6ec9.jpg', 'userNickname': '推广的', 'userSex': 0, 'age': 66, 'accountStatus': 'NORMAL', 'freezingTime': '2021-08-20 15:44:59', 'countryId': '1231833262813360130', 'countryName': 'China', 'countryCode': 'CN', 'originSys': 'ASWAT', 'sysOriginChild': '', 'del': false, 'bornYear': 1955, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2021-06-12 16:49:25', 'userSexName': '女', 'accountStatusName': '正常', 'actualAccountStatus': 'NORMAL', 'actualAccount': '41640' }, 'createTime': '2022-07-26 17:20:58', 'updateTime': '2022-07-26 17:20:58', 'expiredTime': '2022-08-10 17:21:00' }] } + } + } +] diff --git a/mock/im-account.js b/mock/im-account.js new file mode 100644 index 0000000..ff4909f --- /dev/null +++ b/mock/im-account.js @@ -0,0 +1,8 @@ +import { getPage, post, put, del } from './default_request' +export default [ + // 系统im账号分页列表 + getPage('/sys/im/account/page', {}), + post('/sys/im/account', {}), + put('/sys/im/account/rest', {}), + del('/sys/im/account', {}) +] diff --git a/mock/index.js b/mock/index.js new file mode 100644 index 0000000..da5a35b --- /dev/null +++ b/mock/index.js @@ -0,0 +1,114 @@ +import Mock from 'mockjs' +import { param2Obj } from '../src/utils' + +import user from './user' +import table from './table' +import appUser from './app-user' +import purchase from './purchase' +import statistics from './statistics' +import approval from './approval' +import message from './message' +import gift from './gift' +import integral from './integral' +import appManager from './app-manager' +import product from './product' +import datav from './datav' +import imAccount from './im-account' +import props from './props' +import room from './room' +import game from './game' +import family from './family' +import tootls from './tootls' +import bean from './bean' +import sysEmoji from './sys-emoji' +import sys from './sys' +import userSpecialId from './user-special-id' +import activity from './activity' +import team from './team' +import opsSystem from './ops-system' + +const mocks = [ + ...opsSystem, + ...team, + ...activity, + ...userSpecialId, + ...sys, + ...sysEmoji, + ...user, + ...table, + ...appUser, + ...purchase, + ...statistics, + ...approval, + ...message, + ...gift, + ...integral, + ...appManager, + ...product, + ...datav, + ...imAccount, + ...props, + ...room, + ...room, + ...game, + ...family, + ...tootls, + ...bean +] + +// for front mock +// please use it cautiously, it will redefine XMLHttpRequest, +// which will cause many of your third-party libraries to be invalidated(like progress event). +export function mockXHR() { + // mock patch + // https://github.com/nuysoft/Mock/issues/300 + Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send + Mock.XHR.prototype.send = function() { + if (this.custom.xhr) { + this.custom.xhr.withCredentials = this.withCredentials || false + + if (this.responseType) { + this.custom.xhr.responseType = this.responseType + } + } + this.proxy_send(...arguments) + } + + function XHR2ExpressReqWrap(respond) { + return function(options) { + let result = null + if (respond instanceof Function) { + const { body, type, url } = options + // https://expressjs.com/en/4x/api.html#req + result = respond({ + method: type, + body: JSON.parse(body), + query: param2Obj(url) + }) + } else { + result = respond + } + return Mock.mock(result) + } + } + + for (const i of mocks) { + Mock.mock(new RegExp(i.url), i.type || 'get', XHR2ExpressReqWrap(i.response)) + } +} + +// for mock server +const responseFake = (url, type, respond) => { + return { + url: new RegExp(`${process.env.VUE_APP_BASE_API}${url}`), + type: type || 'get', + response(req, res) { + console.log('request invoke:' + req.path) + res.json(Mock.mock(respond instanceof Function ? respond(req, res) : respond)) + } + } +} + +export default mocks.map(route => { + return responseFake(route.url, route.type, route.response) +}) diff --git a/mock/integral.js b/mock/integral.js new file mode 100644 index 0000000..13c3482 --- /dev/null +++ b/mock/integral.js @@ -0,0 +1,157 @@ +import Mock from 'mockjs' + +export default [ + // 积分信息 + { + url: '/user/integral/info/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'userId': '1269191486680850433', + 'balance': 719300.00, + 'redeemed': 0.00, + 'lastBalanceTime': '2020-06-10 12:29:28', + 'integralCount': 719300.00, + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/8058D607-30D9-4492-95AD-C7413C177545.png', + 'userNickname': 'Clad', + 'userSex': 1, + 'userSexName': '男', + 'age': 20, + 'level': 0 + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 积分详情 + { + url: '/user/integral/origin/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + 'createTime': '2020-06-06 16:56:45', + 'updateTime': '2020-06-09 14:39:07', + 'id': '1269191486680850433', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/8058D607-30D9-4492-95AD-C7413C177545.png', + 'userNickname': 'Clad', + 'liveUrl': '', + 'liveCover': '', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 20, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'countryName': 'United States', + 'countryId': '1231833389347123201', + 'countryCode': 'US', + 'accountStatus': 'NORMAL', + 'freezingTime': '2020-06-05 16:56:46' + } + } + } + }, + { + url: '/user/base/info/level/\/*', + type: 'get', + response: () => { + return { + 'status': 200 + } + } + }, + { + url: '/team/billing/integral/record/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 用户积分流水列表 + { + url: '/user/integral/origin/stream/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + 'createTime': '2020-06-06 16:56:45', + 'updateTime': '2020-06-09 14:39:07', + 'id': '1269191486680850433', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/8058D607-30D9-4492-95AD-C7413C177545.png', + 'userNickname': 'Clad', + 'liveUrl': '', + 'liveCover': '', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 20, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'countryName': 'United States', + 'countryId': '1231833389347123201', + 'countryCode': 'US', + 'accountStatus': 'NORMAL', + 'freezingTime': '2020-06-05 16:56:46' + } + } + } + }, + // 用户积分历史流水列表 + { + url: '/user/integral/origin/history/stream/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + 'createTime': '2020-06-06 16:56:45', + 'updateTime': '2020-06-09 14:39:07', + 'id': '1269191486680850433', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/8058D607-30D9-4492-95AD-C7413C177545.png', + 'userNickname': 'Clad', + 'liveUrl': '', + 'liveCover': '', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 20, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'countryName': 'United States', + 'countryId': '1231833389347123201', + 'countryCode': 'US', + 'accountStatus': 'NORMAL', + 'freezingTime': '2020-06-05 16:56:46' + } + } + } + } +] diff --git a/mock/message.js b/mock/message.js new file mode 100644 index 0000000..3f691d0 --- /dev/null +++ b/mock/message.js @@ -0,0 +1,165 @@ +/** + * 消息相关 + */ +import Mock from 'mockjs' + +export default [ + // 新建push + { + url: '/push', + type: 'post', + response: config => { + return { + status: 200, + result: { 'status': 200 } + } + } + }, + // push文案库 + { + url: '/message/copywriting/page', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': { + 'records': Mock.mock({ 'items|30': [ + { + 'createTime': '2020-03-11 20:30:19', + 'updateTime': '2020-03-11 20:30:19', + 'createUser': '23', + 'id': '1237717479216648193', + 'pushType': 'STRATEGY', + 'pushTypeName': '策略类', + 'businessScene': 'CARD_LIKE', + 'businessSceneName': '谁右滑了你', + 'pushUserType': 'BUY_CANDY', + 'pushUserTypeName': '购买过糖果', + 'sysPushTextContents': [ + { + 'createTime': '2020-03-11 20:30:17', + 'updateTime': '2020-03-11 20:30:17', + 'updateUser': '23', + 'id': '1237717479539609602', + 'textTypeId': '1237717479216648193', + 'language': 'en', + 'languageName': '英语', + 'title': 'English title', + 'content': 'content', + 'sort': 0 + }, + { + 'createTime': '2020-03-11 20:30:17', + 'updateTime': '2020-03-11 20:30:17', + 'updateUser': '23', + 'id': '1237717479539609603', + 'textTypeId': '1237717479216648193', + 'language': 'zh_CN', + 'languageName': '中文', + 'title': '中文标题', + 'content': '内容', + 'sort': 1 + } + ], + 'user': { + 'id': 23, + 'loginName': 'admin', + 'password': '$apr1$admin$3NsFmc5jCaK5R97pgHRX21', + 'nickname': 'admin', + 'ip': '127.0.0.1', + 'status': 0, + 'createUid': 1, + 'createTime': '2019-11-13 18:28:38', + 'updateTime': '2019-12-15 18:49:53' + } + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // push 日志 + { + url: '/push/page', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': { + 'records': Mock.mock({ 'items|30': [ + { + 'id': '@id', + 'title': 'qe1', + 'content': '12312', + 'platform': 'Android', + 'pushType': '通知类', + 'pushBusinessScene': '版本更新', + 'pushUserType': '会员', + 'fixedUserIds': '12', + 'link': '123', + 'pushStatus': '成功', + 'sendUserName': 'admin', + 'createTime': '2020-03-30 15:32:32' + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 添加push文案库 + { + url: '/message/copywriting', + type: 'post', + response: config => { + return { + status: 200 + } + } + }, + // 删除push文案 + { + url: '/message/copywriting/\.', + type: 'delete', + response: config => { + return { + status: 200 + } + } + }, + // 已录入文案内容 + { + url: '/sys/push/text/content/\.*', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ 'items|30': [ + { + 'createTime': '2020-03-11 20:30:17', + 'updateTime': '2020-03-11 20:30:17', + 'updateUser': '23', + 'id': '@id', + 'textTypeId': '1237717479216648193', + 'language': 'en', + 'languageName': '英语', + 'title': '123', + 'content': '123', + 'sort': 0 + } + ] }).items + } + } + } +] diff --git a/mock/mock-server.js b/mock/mock-server.js new file mode 100644 index 0000000..4c4cb2a --- /dev/null +++ b/mock/mock-server.js @@ -0,0 +1,68 @@ +const chokidar = require('chokidar') +const bodyParser = require('body-parser') +const chalk = require('chalk') +const path = require('path') + +const mockDir = path.join(process.cwd(), 'mock') + +function registerRoutes(app) { + let mockLastIndex + const { default: mocks } = require('./index.js') + for (const mock of mocks) { + app[mock.type](mock.url, mock.response) + mockLastIndex = app._router.stack.length + } + const mockRoutesLength = Object.keys(mocks).length + return { + mockRoutesLength: mockRoutesLength, + mockStartIndex: mockLastIndex - mockRoutesLength + } +} + +function unregisterRoutes() { + Object.keys(require.cache).forEach(i => { + if (i.includes(mockDir)) { + delete require.cache[require.resolve(i)] + } + }) +} + +module.exports = app => { + // es6 polyfill + require('@babel/register') + + // parse app.body + // https://expressjs.com/en/4x/api.html#req.body + app.use(bodyParser.json()) + app.use(bodyParser.urlencoded({ + extended: true + })) + + const mockRoutes = registerRoutes(app) + var mockRoutesLength = mockRoutes.mockRoutesLength + var mockStartIndex = mockRoutes.mockStartIndex + + // watch files, hot reload mock server + chokidar.watch(mockDir, { + ignored: /mock-server/, + ignoreInitial: true + }).on('all', (event, path) => { + if (event === 'change' || event === 'add') { + try { + // remove mock routes stack + app._router.stack.splice(mockStartIndex, mockRoutesLength) + + // clear routes cache + unregisterRoutes() + + const mockRoutes = registerRoutes(app) + mockRoutesLength = mockRoutes.mockRoutesLength + mockStartIndex = mockRoutes.mockStartIndex + + console.log(chalk.magentaBright(`\n > Mock Server hot reload success! changed ${path}`)) + } catch (error) { + console.log(chalk.redBright(error)) + } + } + }) +} diff --git a/mock/ops-system.js b/mock/ops-system.js new file mode 100644 index 0000000..0eb6219 --- /dev/null +++ b/mock/ops-system.js @@ -0,0 +1,208 @@ +import Mock from 'mockjs' + +export default [ + // user login + { + url: '/account/login', + type: 'post', + response: config => { + return { + status: true, + errorCode: 0, + body: { + 'uid': 1, + 'token': 'F6C849D9A7B2CBF5F7BEED86B0E8F094.djElM0EyMyUzQU9QUyUzQTE2ODQ1MDA3NzUzNzglM0ExNjg0NDkzNTc1Mzc4' + } + } + } + }, + + // user logout + { + url: '/logout', + type: 'post', + response: _ => { + return { + status: true, + errorCode: 0 + } + } + }, + + // get user info + { + url: '/account/info', + type: 'get', + response: config => { + return { + status: true, + errorCode: 0, + body: { + loginName: 'admin', + nickname: 'admin' + } + } + } + }, + + // 账号菜单 + { + url: '/account/menus', + type: 'get', + response: config => { + return { 'status': true, 'body': [] } + } + }, + + // 权限按钮 + { + url: '/account/buttons/aliases', + type: 'get', + response: config => { + return { 'status': true, 'body': ['sys:user:add', 'user:table:edit:account:handler', 'user:table:edit', 'user:table:query:gold', 'user:table:query:list', 'dashboard:details', 'sys:user:edit', 'user:table:edit:deduction:gold', 'user:table:query:violation', 'user:table:query:account:handler', 'user:table:edit:reward:gold', 'user:table:query:details', 'sys:user:resetpwd'] } + } + }, + + // 获取用户列表 + { + url: '/users', + type: 'get', + response: config => { + return { + 'status': true, + 'errorCode': 0, + 'body': Mock.mock({ + 'items|30': [{ + 'id': '@id', + 'loginName': '@sentence(5, 10)', + 'nickname': '@sentence(3, 8)', + 'email': '', + 'phone': '', + 'ip': '0:0:0:0:0:0:0:1', + 'status|1': ['published', 'draft', 'deleted'], + createTime: '@datetime', + updateTime: '@datetime', + 'userRoles': [ + { + 'roleId': '@id', + 'uid': '@id', + 'roleName': '管理员', + 'remark': '管理员' + } + ] + }] + }).items + } + } + }, + // 角色列表 + { + url: '/roles', + type: 'get', + response: config => { + return { + 'status': true, + 'errorCode': 0, + 'body': { + 'records': Mock.mock({ + 'items|30': [{ + 'id': '@id', + 'roleName': '@sentence(5, 10)', + 'remark': '@sentence(5, 10)', + 'menuIds': [], + 'createTime': '@datetime', + 'updateTime': '@datetime' + }] + }).items, + 'total': 20, + 'size': 20, + 'current': 1 + } + } + } + }, + // 所有菜单 + { + url: '/menus', + type: 'get', + response: config => { + return { + 'status': true, + 'errorCode': 0, + 'body': Mock.mock({ + 'items|30': [{ + 'id': '@id', + 'parentId': 1, + 'menuName': '@sentence(5, 10)', + 'path': '@sentence(5, 10)', + 'router': '@sentence(5, 10)', + 'menuType': 2, + 'icon': 'sys_manager_1', + 'alias': '@sentence(5, 10)', + 'status': 0, + 'sort': 99999 + }] + }).items + } + } + }, + // 资源列表 + { + url: '/resources/list', + type: 'get', + response: config => { + return { + 'status': true, + 'errorCode': 0, + 'body': Mock.mock({ + 'id': '@id', + 'resourceName': '@sentence(5, 10)', + 'mapping': '/family/del/{familyId}', + 'method': 'GET', + 'authType': 1, + 'perm': 'GET:/family/del/{familyId}', + 'updateTime': [ + 2023, + 5, + 19, + 8, + 58, + 47 + ] + }).items + } + } + }, + // 资源分页列表 + { + url: '/resources', + type: 'get', + response: config => { + return { + 'status': true, + 'errorCode': 0, + 'body': { + 'records': Mock.mock({ + 'id': '@id', + 'resourceName': '@sentence(5, 10)', + 'mapping': '/family/del/{familyId}', + 'method': 'GET', + 'authType': 1, + 'perm': 'GET:/family/del/{familyId}', + 'updateTime': [ + 2023, + 5, + 19, + 8, + 58, + 47 + ] + }).items, + 'total': 20, + 'size': 20, + 'current': 1 + } + } + } + } +] diff --git a/mock/pet.js b/mock/pet.js new file mode 100644 index 0000000..3549ff4 --- /dev/null +++ b/mock/pet.js @@ -0,0 +1,146 @@ +import { getPage } from './default_request' + +export default [ + /** + * 喂养分页列表. + */ + getPage('/pet_pool/feeding/page', {}), + /** + * 宠物分页列表. + */ + getPage('/pet_pool/page', { + 'petPool': { + 'id': '1448172780357816321', + 'sysOrigin': 'TIM_CHAT', + 'petCode': 'tuzi', + 'petName': '兔子', + 'level': 1, + 'rewardGroupId': '1402442046035218434', + 'shelf': false, + 'createTime': '2021-10-13 14:24:31', + 'updateTime': '2021-10-13 14:24:31', + 'createUser': '23', + 'updateUser': '23' + }, + 'petStages': [ + { + 'id': '1448172780722720769', + 'sysOrigin': 'TIM_CHAT', + 'petId': '1448172780357816321', + 'level': 1, + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-4ac77ee7-9e25-4e27-8fef-f3396607308e.png', + 'sourceUrl': 'http://dev.img.sugartimeapp.com/other/manager-d89cd926-56ac-4487-8e9d-46f577c17281.svga', + 'upgradeFeedingNum': 0, + 'foodFeedingNum': 0, + 'revenue': 0, + 'revenueNum': 1, + 'revenueIntervalMinute': 1, + 'feedingIntervalMinute': 1, + 'freeFeedingNum': 1 + }, + { + 'id': '1448172780722720770', + 'sysOrigin': 'TIM_CHAT', + 'petId': '1448172780357816321', + 'level': 2, + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-8a2207e8-2d9e-4373-8a77-506a20b8d97f.png', + 'sourceUrl': 'http://dev.img.sugartimeapp.com/other/manager-0bd41ca9-29e2-4249-9859-39d5223e21d3.svga', + 'upgradeFeedingNum': 0, + 'foodFeedingNum': 0, + 'revenue': 0, + 'revenueNum': 1, + 'revenueIntervalMinute': 1, + 'feedingIntervalMinute': 1, + 'freeFeedingNum': 1 + }, + { + 'id': '1448172780722720771', + 'sysOrigin': 'TIM_CHAT', + 'petId': '1448172780357816321', + 'level': 3, + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-22c40b43-8f90-4902-8a89-1126fe962462.png', + 'sourceUrl': 'http://dev.img.sugartimeapp.com/other/manager-62c6977b-61a6-4873-8703-4d60e9a0f057.svga', + 'upgradeFeedingNum': 0, + 'foodFeedingNum': 0, + 'revenue': 0, + 'revenueNum': 1, + 'revenueIntervalMinute': 1, + 'feedingIntervalMinute': 1, + 'freeFeedingNum': 1 + }, + { + 'id': '1448172780722720772', + 'sysOrigin': 'TIM_CHAT', + 'petId': '1448172780357816321', + 'level': 4, + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-5a91d0c1-178d-45d4-8bfb-4e50316fff79.png', + 'sourceUrl': 'http://dev.img.sugartimeapp.com/other/manager-15367223-e5f7-4ab2-bced-0305fa2ef123.svga', + 'upgradeFeedingNum': 0, + 'foodFeedingNum': 0, + 'revenue': 0, + 'revenueNum': 1, + 'revenueIntervalMinute': 1, + 'feedingIntervalMinute': 1, + 'freeFeedingNum': 1 + } + ], + 'petUnlockConditions': [ + { + 'id': '1448172780865327105', + 'sysOrigin': 'TIM_CHAT', + 'petId': '1448172780357816321', + 'conditionType': 'WEALTH_LEVEL', + 'unit': 'LE', + 'quantity': 1 + } + ], + 'rewards': { + 'createTime': '2021-06-09 09:46:54', + 'updateTime': '2021-08-22 19:37:54', + 'id': '1402442046035218434', + 'name': '312312', + 'sysOrigin': 'TIM_CHAT', + 'shelfStatus': true, + 'rewardConfigList': [ + { + 'createTime': '2021-06-23 11:50:43', + 'updateTime': '2021-06-23 11:50:43', + 'id': '1407546634501410818', + 'groupId': '1402442046035218434', + 'type': 'PROPS', + 'detailType': '', + 'content': '1398094409879130114', + 'quantity': 1, + 'cover': 'http://dev.img.sugartimeapp.com/other/manager-90e3a4aa-518b-450d-8ac7-593bceec71a4.png', + 'sourceUrl': 'http://dev.img.sugartimeapp.com/other/manager-28f6f187-5b95-4557-9f11-aa00869cccc7.svga', + 'amount': 1398094409879130114, + 'sort': 1 + }, + { + 'createTime': '2021-06-23 11:50:43', + 'updateTime': '2021-06-23 11:50:43', + 'id': '1407546634501410819', + 'groupId': '1402442046035218434', + 'type': 'GOLD', + 'detailType': '', + 'content': '12321', + 'quantity': 0, + 'amount': 12321, + 'sort': 2 + }, + { + 'createTime': '2021-06-23 11:50:43', + 'updateTime': '2021-06-23 11:50:43', + 'id': '1407546634501410820', + 'groupId': '1402442046035218434', + 'type': 'DIAMOND', + 'detailType': '', + 'content': '123', + 'quantity': 0, + 'amount': 123, + 'sort': 3 + } + ] + } + }) +] diff --git a/mock/photowall.js b/mock/photowall.js new file mode 100644 index 0000000..e26ccc3 --- /dev/null +++ b/mock/photowall.js @@ -0,0 +1,42 @@ +/** + * 照片墙 + */ +import Mock from 'mockjs' + +export default [ + // 照片墙审核 + { + url: '/user/photo/wall/page/all', + type: 'get', + response: config => { + return { + 'status': 200, + 'result': { + 'records': Mock.mock({ 'items|30': [ + { + 'createTime': '2020-04-27 19:29:50', + 'updateTime': '2020-04-27 19:29:51', + 'id': '1254734492813185027', + 'userId': '1254677709117698049', + 'resourceUrl': 'http://dev.qiniu.sugartimeapp.com/1587974769775.jpg', + 'width': 360, + 'height': 780, + 'sort': 2, + 'violation': 'SUSPECTED', + 'labelNames': '鉴黄-正常:0.92142,鉴暴恐-特殊字符文字:0.42707,敏感人物识别-正常:0', + 'userNickname': '123456789101112', + 'age': 27, + 'userSexName': '男' + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + } +] diff --git a/mock/product.js b/mock/product.js new file mode 100644 index 0000000..d20394e --- /dev/null +++ b/mock/product.js @@ -0,0 +1,67 @@ +/** + * 产品信息 + */ +import Mock from 'mockjs' + +export default [ + // 内购产品配置 + { + url: '/sys/product/config/list', + type: 'get', + response: config => { + return { 'status': 200, 'result': [{ 'createTime': '2020-09-09 17:32:35', 'updateTime': '2020-09-09 18:15:13', 'createUser': '23', 'id': '1303627348529004546', 'productId': 'WASTE_MATERIAL_VIP', 'productPackage': 'com.hongyuan.1.99Vip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '废材VIP', 'groupName': 'VIP', 'unitPrice': 1.99, 'obtainCandy': 0.00, 'platform': 'iOS', 'sort': 6, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }, { 'createTime': '2020-08-10 15:32:17', 'updateTime': '2020-09-09 18:15:13', 'updateUser': '23', 'id': '1292725083076419586', 'productId': 'VIP', 'productPackage': 'com.hongyuan.sugartimeVip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '订阅会员', 'groupName': 'VIP', 'unitPrice': 19.99, 'obtainCandy': 2500.00, 'platform': 'iOS', 'sort': 5, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }, { 'createTime': '2020-08-31 11:51:39', 'updateTime': '2020-09-09 18:15:13', 'createUser': '23', 'updateUser': '23', 'id': '1300280062414716929', 'productId': 'THREE_DAYS_FREE', 'productPackage': 'com.hongyuan.sugartime19.99', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '3天免費', 'groupName': 'VIP', 'unitPrice': 19.90, 'obtainCandy': 2500.00, 'platform': 'iOS', 'sort': 4, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }, { 'createTime': '2020-08-25 16:43:20', 'updateTime': '2020-09-01 17:24:11', 'createUser': '23', 'id': '1298179138910146561', 'productId': 'SCRAP_IRON_VIP', 'productPackage': 'com.hongyuan.3.99vip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '废铁VIP', 'groupName': 'VIP', 'unitPrice': 3.99, 'obtainCandy': 0.00, 'platform': 'iOS', 'sort': 3, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }, { 'createTime': '2020-08-10 15:33:46', 'updateTime': '2020-09-01 17:24:11', 'id': '1292725083076419588', 'productId': 'GOLD_VIP', 'productPackage': 'com.hongyuan.goldvip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '订阅会员', 'groupName': 'VIP', 'unitPrice': 89.99, 'obtainCandy': 14000.00, 'platform': 'iOS', 'sort': 2, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }, { 'createTime': '2020-08-10 15:32:25', 'updateTime': '2020-09-01 12:20:56', 'id': '1292725083076419587', 'productId': 'SILVER_VIP', 'productPackage': 'com.hongyuan.silvervip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '订阅会员', 'groupName': 'VIP', 'unitPrice': 59.99, 'obtainCandy': 9000.00, 'platform': 'iOS', 'sort': 1, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }] } + } + }, + // 内购产品配置信息 + { + url: '/sys/product/config/\.', + type: 'get', + response: config => { + return { 'status': 200, 'result': { 'createTime': '2020-09-09 17:32:35', 'updateTime': '2020-09-09 18:15:13', 'createUser': '23', 'id': '1303627348529004546', 'productId': 'WASTE_MATERIAL_VIP', 'productPackage': 'com.hongyuan.1.99Vip', 'productType': 'AUTO_RENEWAL_SUBSCRIPTION', 'description': '废材VIP', 'groupName': 'VIP', 'unitPrice': 1.99, 'obtainCandy': 0.00, 'platform': 'iOS', 'sort': 6, 'discountRate': 0, 'showcase': true, 'recommend': false, 'tags': '', 'positionIndex': 0 }} + } + }, + // 推荐商品,同步所以平台 + { + url: '/sys/product/config/sync/all/recommend', + type: 'post', + response: config => { + return { + 'status': 200, + 'result': {} + } + } + }, + // 推荐商品 + { + url: '/sys/product/config/single/recommend', + type: 'post', + response: config => { + return { + 'status': 200, + 'result': {} + } + } + }, + // 取消推荐 + { + url: '/cancel/recommend/recommend', + type: 'delete', + response: config => { + return { + 'status': 200, + 'result': {} + } + } + }, + // 修改排序 + { + url: '/cancel/recommend/sort', + type: 'post', + response: config => { + return { + 'status': 200, + 'result': {} + } + } + } +] diff --git a/mock/props.js b/mock/props.js new file mode 100644 index 0000000..547bde4 --- /dev/null +++ b/mock/props.js @@ -0,0 +1,122 @@ +import Mock from 'mockjs' + +export default [ + // 道具购买流水 + { + url: '/room/props/receipt', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-01-20 14:34:44', + 'updateTime': '2021-01-20 14:34:44', + 'id': '3243322', + 'userId': '1351021829418778626', + 'propsId': '1351727566616408065', + 'propsCandy': 50.00, + 'propsPhoto': 'http://sugartime-dev.oss-accelerate.aliyuncs.com/manager-80db3c54-4164-4f9b-a1d3-28ae96525c64.jpg', + 'propsName': 'yy', + 'typeName': '头像框', + 'userBaseInfo': { + 'createTime': '2021-01-18 12:21:19', + 'updateTime': '2021-01-18 12:21:20', + 'id': '1351021829418778626', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/2211A700-6413-4064-9810-197306DDEE20.png', + 'originSys': 'ASWAT', + 'userNickname': '呢你', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 20, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'China', + 'countryId': '1231833262813360130', + 'countryCode': 'CN', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-01-17 12:21:20', + 'del': false, + 'account': '399823' + } + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 道具资源分页列表 + { + url: '/props/source/record/page', + type: 'get', + response: config => { + return { + status: 200, + body: [] + } + } + }, + + // 活动道具奖励配置-分页列表 + { + url: '/props/activity/reward/group/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-06-09 09:46:54', + 'updateTime': '2021-06-09 09:46:54', + 'id': '1402442046035218434', + 'code': '12312', + 'sysOrigin': 'ASWAT', + 'name': '312312', + 'shelfStatus': true, + 'rewardConfigList': [ + { + 'createTime': '2021-06-09 09:46:55', + 'updateTime': '2021-06-09 09:46:55', + 'id': '1402442046827941889', + 'groupId': '1402442046035218434', + 'type': 'PROPS', + 'content': '1352931737504518145', + 'quantity': 123123 + } + ] + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 道具商店-分页 + { + url: '/props/store/page', + type: 'get', + response: config => { + return { + status: 200, + result: {} + } + } + } +] diff --git a/mock/purchase.js b/mock/purchase.js new file mode 100644 index 0000000..f3c1d2e --- /dev/null +++ b/mock/purchase.js @@ -0,0 +1,141 @@ +import Mock from 'mockjs' +import { get, getPage, post, put, del } from './default_request' +export default [ + // 金币收支 列表 + { + url: '/user-wallet/list', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ + 'items|30': [{ + userProfile: { + 'createTime': '2020-03-23 16:49:17', + 'utcCreateTime': '2020-03-23 16:49:17', + 'updateTime': '2020-03-23 16:49:23', + 'id': '1242010518727663617', + 'userAvatar': '', + 'userNickname': 'Dcvv ', + 'userSex': 0, + 'userSexName': '女', + 'userType': 0, + 'userTypeName': '真实', + 'countryName': 'China', + 'del': false + }, + runningWater: { + id: '@id', + userId: '@id', + trackId: '@sentence(2, 6)', + quantity: 550, + balance: 2550, + type: 0, + origin: 'TEST', + originName: '糖果包 4.99', + createTime: '2020-03-20 16:03:21' + } + + }] + }).items + } + } + }, + // 购买记录 + { + url: '/order/purchase/history/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: [], + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + // 每日糖果收回總和 + { + url: '/statistics/candy/incomeRate/sum', + type: 'get', + response: config => { + return { + status: 200, + result: '48462' + } + } + }, + // 每日糖果收回 + { + url: '/statistics/candy/incomeRate', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'createTime': '2020-06-10 08:20:00', + 'updateTime': '2020-06-10 08:20:00', + 'id': '1270510992397119490', + 'incomeTotal': 691700.00, + 'incomePeopleTotal': '2', + 'femaleMatch': 10.00, + 'callSuccess': 50.00, + 'greetTask': 0.00, + 'imChat': 90.00, + 'callVideo': 0.00, + 'giftGiveAway': 691550.00, + 'toLikeMe': 0.00, + 'unblockAccount': 0.00, + 'other': 0.00, + 'handlerDate': '2020-06-09', + 'arppuCandy': 345850.00 + }] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + // 今日内购总额 + { + url: '/order/purchase/history/purchase/today/total', + type: 'get', + response: config => { + return { + status: 200, + result: 10 + } + } + }, + // 获取异常订单日志列表 + getPage('/order/abnormal/log/page', { + 'id': '@id', + 'platform': 'iOS', + 'originalOrderId': '123', + 'orderId': '321', + 'productCode': '123', + 'status': 'IGNORE', + 'create_time': '2020-11-24 14:03:00' + }), + // 获取异常订单日志,凭证 + get('/order/abnormal/log/certificate', 'test'), + // 获取异常订单日志,凭证 + put('/order/abnormal/log/status'), + // 产品池列表 + get('/sys/product/pool', [{}]), + // 添加指定产品信息到池子 + post('/sys/product/pool', ''), + // 删除产品池中指定信息 + del('/sys/product/pool/\.', '') +] diff --git a/mock/room-theme.js b/mock/room-theme.js new file mode 100644 index 0000000..f8ae8ba --- /dev/null +++ b/mock/room-theme.js @@ -0,0 +1,54 @@ +import Mock from 'mockjs' + +export default [ + // 房间主题信息 + { + url: '/room/theme/list', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2020-12-09 17:15:00', + 'updateTime': '2020-12-15 17:56:50', + 'updateUser': '23', + 'id': '4232232422', + 'themeCode': 'DEFAULT_THEME', + 'themeBack': 'http://dev.qiniu.sugartimeapp.com/19999.png', + 'showcase': true, + 'themeMoney': 0.00 + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 修改房间主题信息 + { + url: '/room/theme', + type: 'put', + response: () => { + return { + 'status': 200 + } + } + }, + // 删除房间主题 + { + url: '/room/theme/\/*', + type: 'delete', + response: () => { + return { + 'status': 200 + } + } + } +] diff --git a/mock/room.js b/mock/room.js new file mode 100644 index 0000000..85c92df --- /dev/null +++ b/mock/room.js @@ -0,0 +1,145 @@ +import Mock from 'mockjs' + +export default [ + // 房间贡献余额列表 + { + url: '/room/contribution/balance/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-03-01 20:05:20', + 'updateTime': '2021-03-01 20:05:20', + 'roomId': '1364518645829402625', + 'totalQuantity': 70.00, + 'withdrawQuantity': 0.00, + 'roomProfile': { + 'createTime': '2021-02-24 18:12:51', + 'updateTime': '2021-02-24 18:12:51', + 'id': '1364518645829402625', + 'roomAccount': '400374', + 'userId': '1364396133145575425', + 'roomCover': 'http://dev.img.sugartimeapp.com/avatar/10DEFAD7-A188-4115-A31C-1ACF2422A706.png', + 'roomName': '恶魔哦ok', + 'roomDesc': "Welcome everyone! Let's chat and have fun together.", + 'roomTag': 'CHAT' + } + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 老虎机开奖记录 + { + url: '/game/slot/machine/lottery/record/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-03-18 18:04:52', + 'updateTime': '2021-03-18 18:04:52', + 'id': '1372489167350652930', + 'userId': '1369599569717846018', + 'consumeGolds': 123.00, + 'prizeType': 'NONE', + 'prizeTypeName': '没有中奖', + 'multiple': 0, + 'obtainGolds': 0.00, + 'prize': false, + 'userBaseInfo': { + 'createTime': '2021-02-19 19:38:21', + 'updateTime': '2021-02-19 19:38:31', + 'id': '1362728225851977730', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/B55EF836-D632-4FD2-8347-92099E29DF65.png', + 'originSys': 'TIM_CHAT', + 'userNickname': '不见了', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'age': 21, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'China', + 'countryId': '1231833262813360130', + 'countryCode': 'CN', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-02-18 19:38:22', + 'del': false, + 'account': '400315' + } + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 红包发送记录 + { + url: '/game-red-packet/flow', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ 'items|30': [ + { + 'id': '1394536136562552833', + 'sysOrigin': 'TIM_CHAT', + 'roomId': '1', + 'userId': '1394493636222013442', + 'amount': 290, + 'quantity': 6, + 'status': 'REIMBURSE', + 'createTime': '2021-05-18 14:11:40', + 'available': false + }, + { + 'id': '1394535868311646210', + 'sysOrigin': 'TIM_CHAT', + 'roomId': '1', + 'userId': '1394493636222013442', + 'amount': 290, + 'quantity': 6, + 'status': 'REIMBURSE', + 'createTime': '2021-05-18 14:10:36', + 'available': false + }, + { + 'id': '1394535667182186498', + 'sysOrigin': 'TIM_CHAT', + 'roomId': '1', + 'userId': '1394493636222013442', + 'amount': 290, + 'quantity': 6, + 'status': 'REIMBURSE', + 'createTime': '2021-05-18 14:09:48', + 'available': false + } + ] } + ).items + } + } + } + +] diff --git a/mock/statistics.js b/mock/statistics.js new file mode 100644 index 0000000..7bc6cd6 --- /dev/null +++ b/mock/statistics.js @@ -0,0 +1,70 @@ +/** + * 统计相关 + */ +import Mock from 'mockjs' +import { get, put } from './default_request' + +export default [ + // 获取最新货币收支情况 + get('/count/currency/daily/platform', {}), + // 最新平台内购情况 + get('/count/purchase/daily/list/sys-origin', []), + + // 变更工资 + put('/statistics/support/work/user/change/wag', ''), + // 获取最近30天最订单购买退款统计数据 + get('/count/purchase/latest/order', [{ 'id': '1', 'platform': 'iOS', 'purchase': 1.00, 'refund': 4.00, 'statisticsTime': '2020-11-02 22:20:27' }]), + // 推荐人信息 + { + url: '/statistics/quality/users/details/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'sysOrigin': 'TIM_CHAT', + 'userId': '1438693762037395457', + 'onlineQuantity': 0, + 'freightQuantity': 12312.31, + 'salaryQuantity': 0, + 'userBaseInfo': { + 'createTime': '2021-09-17 10:38:17', + 'updateTime': '2021-09-17 10:38:19', + 'id': '1438693762037395457', + 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/1A71A687-888B-49D4-902D-8E2BFA918426.png', + 'originSys': 'TIM_CHAT', + 'userNickname': 'KKK', + 'userSex': 0, + 'userSexName': '女', + 'userType': 0, + 'age': 21, + 'bornYear': 2000, + 'bornMonth': 1, + 'bornDay': 1, + 'userTypeName': '真实', + 'countryName': 'China', + 'countryId': '1231833262813360130', + 'countryCode': 'CN', + 'accountStatus': 'NORMAL', + 'accountStatusName': '正常', + 'freezingTime': '2021-09-16 10:38:17', + 'del': false, + 'account': '41902' + }, + 'totalQuantity': 12312 + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + } + +] diff --git a/mock/sys-dictionary.js b/mock/sys-dictionary.js new file mode 100644 index 0000000..8210518 --- /dev/null +++ b/mock/sys-dictionary.js @@ -0,0 +1,47 @@ +import Mock from 'mockjs' + +export default [ + // 国家分页列表 + { + url: '/sys/country/code/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'createTime': '2021-03-08 15:25:33', + 'updateTime': '2021-03-08 15:52:43', + 'updateUser': '23', + 'id': '111111111111111111', + 'alphaTwo': 'ZZ', + 'alphaThree': 'ZZZ', + 'countryNumeric': 222, + 'enName': 'ce shis', + 'assignment': 'CESHI', + 'nationalFlag': 'http://dev.img.sugartimeapp.com/other/manager-59edd6ef-f06c-475c-b90c-ab5690810c6e/3b39690be0b2740770f323546bf499aa.jpg', + 'sort': 1000, + 'top': 1, + 'open': 0 + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 周星礼物分组列表 + { + url: '/sys_week_star_group/page', + type: 'get', + response: config => { + return { 'status': 200, 'result': { 'records': [{ 'createTime': '2021-04-20 16:30:58', 'updateTime': '2021-04-20 16:31:02', 'id': '2', 'sysOrigin': '', 'displayNumber': 1, 'sysGiftConfigs': [{ 'createTime': '2021-01-26 12:03:39', 'updateTime': '2021-04-16 18:18:55', 'updateUser': '33', 'id': '1269808328087785475', 'giftPhoto': 'http://app.qiniu.sugartimeapp.com/coffee.png', 'giftName': '咖啡', 'giftSourceUrl': 'http://images.prod.ricomapp.com/COFFEE.svga', 'giftCode': 'COFFEE', 'giftCandy': 100.00, 'giftIntegral': 10.00, 'special': 'ANIMATION,MUSIC,NOTICE,STAR', 'type': 'GOLD', 'sort': 98, 'del': false, 'giftTab': 'NATIONAL_FLAG' }, { 'createTime': '2021-01-26 12:03:39', 'updateTime': '2021-04-16 18:21:08', 'updateUser': '33', 'id': '1269808328087785478', 'giftPhoto': 'http://app.qiniu.sugartimeapp.com/perfume.png', 'giftName': '香水', 'giftSourceUrl': 'http://images.prod.ricomapp.com/PERFUME.svga', 'giftCode': 'PERFUME', 'giftCandy': 5000.00, 'giftIntegral': 500.00, 'special': 'ANIMATION', 'type': 'GOLD', 'sort': 95, 'del': false, 'giftTab': 'CP' }, { 'createTime': '2021-01-26 12:03:39', 'updateTime': '2021-03-03 09:35:54', 'updateUser': '33', 'id': '1269808328087785480', 'giftPhoto': 'http://app.qiniu.sugartimeapp.com/sports_car.png', 'giftName': '跑车', 'giftSourceUrl': 'http://images.prod.ricomapp.com/SPORTS_CAR.svga', 'giftCode': 'SPORTS_CAR', 'giftCandy': 20000.00, 'giftIntegral': 2000.00, 'special': 'ANIMATION', 'type': 'GOLD', 'sort': 93, 'del': false, 'giftTab': 'ORDINARY' }] }], 'total': 1, 'size': 20, 'current': 1, 'searchCount': true, 'pages': 1 }} + } + } +] diff --git a/mock/sys-emoji.js b/mock/sys-emoji.js new file mode 100644 index 0000000..d0c864b --- /dev/null +++ b/mock/sys-emoji.js @@ -0,0 +1,57 @@ +import Mock from 'mockjs' + +export default [ + // 表情列表-分组分页列表 + { + url: '/emoji/config/group/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ 'items|30': [ + { + 'id': '1452527059287973890', + 'sysOrigin': 'TIM_CHAT', + 'groupCode': '123123', + 'groupName': '111', + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-9d4d8fe5-4ae6-4279-8062-79a4d67b08fa.png', + 'shelfStatus': 1, + 'sort': 123, + 'createTime': '2021-10-25 14:46:52' + } + ] } + ).items, + 'total': 30, + 'size': 30, + 'current': 1, + 'searchCount': true, + 'pages': 3 + } + } + } + }, + // 表情列表-根据系统查找 + { + url: '/emoji/config/group/sys_origin_list', + type: 'get', + response: config => { + return { + status: 200, + result: Mock.mock({ 'items|30': [ + { + 'id': '1452527059287973890', + 'sysOrigin': 'TIM_CHAT', + 'groupCode': '123123', + 'groupName': '111', + 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-9d4d8fe5-4ae6-4279-8062-79a4d67b08fa.png', + 'shelfStatus': 1, + 'sort': 123, + 'createTime': '2021-10-25 14:46:52' + } + ] } + ).items + } + } + } +] diff --git a/mock/sys-pay.js b/mock/sys-pay.js new file mode 100644 index 0000000..825115d --- /dev/null +++ b/mock/sys-pay.js @@ -0,0 +1,158 @@ +// import Mock from 'mockjs' +import { get, getPage, del, post } from './default_request' +export default [ + // 支付渠道-分页 + getPage('/sys-pay-channel/page', { + 'channelCode': '@id', + 'channelName': '@string', + 'channelIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'channelType': 0, + 'createTime': '2021-11-15 12:12:32' + }), + // 支付渠道-列表 + get('/sys-pay-channel/list', { + 'channelCode': '@id', + 'channelName': '@string', + 'channelIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'channelType': 0, + 'createTime': '2021-11-15 12:12:32' + }), + // 支付厂商-分页 + getPage('/sys-pay-factory/page', { + 'factoryCode': '@id', + 'factoryName': '@string', + 'factoryIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'createTime': '2021-11-15 12:12:32' + }), + // 支付厂商-列表 + get('/sys-pay-factory/list', { + 'factoryCode': '@id', + 'factoryName': '@string', + 'factoryIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'createTime': '2021-11-15 12:12:32' + }), + // 支付厂商-列表 + get('/sys_pay_application/list', { + 'id': '@id', + 'appName': '@string', + 'appCode': 'TIM_CHAT', + 'androidLink': '', + 'iosLink': '' + }), + // 开放支付国家-分页列表 + getPage('/sys-pay-open-country/list/page', { + 'id': '@id', + 'countryId': '@id', + 'currency': '@id', + 'usdExchangeRate': '1', + 'shelf': true, + 'country': { + 'alphaTwo': 'CN', + 'enName': 'asdsa', + 'aliasName': 'aliasName' + } + }), + // 开放支付国家-列表 + get('/sys-pay-open-country/list', { + 'id': '@id', + 'countryId': '@id', + 'currency': '@id', + 'usdExchangeRate': '1', + 'shelf': true, + 'country': { + 'alphaTwo': 'CN', + 'enName': 'asdsa', + 'aliasName': 'aliasName' + } + }), + // 开放支付国家-已关联渠道列表 + get('/sys-pay-channel-factory/country', { + 'associated': { + 'id': '1468036919836319746', + 'payCountryId': '1467683339950387202', + 'channelCode': '123123', + 'shelf': false + }, + 'channel': { + 'id': '1465645906115207170', + 'channelCode': '123123', + 'channelName': '12312234234', + 'channelIcon': 'http://dev.img.sugartimeapp.com/svgasource/manager-d27b6be6-d29b-4fc5-8851-aa1ffb83e5e2.png', + 'channelType': 'ELECTRONIC_WALLET', + 'createTime': '2021-11-30 19:36:29' + }, + 'countryChannels': [ + { + 'payFactory': { + 'id': '1467745759100231682', + 'factoryCode': 'test2', + 'factoryName': '测试2', + 'factoryIcon': 'http://dev.img.sugartimeapp.com/svgasource/manager-bf5c7314-3e56-4380-89c7-61a2188ea16d.png', + 'createTime': '2021-12-06 14:40:33' + }, + 'countryChannelDetails': { + 'payCountryId': '1467683339950387202', + 'countryChannelId': '1468036919836319746', + 'channelCode': '123123', + 'factoryCode': 'test2', + 'shelf': false + } + } + ] + }), + // 根据限额获取支付的付款渠道-列表 + get('/sys-pay-channel-factory/support_amount', { + 'computedAmount': 123, + 'amountUsd': 12, + 'channels': [{ + 'associated': { + 'id': '1468036919836319746', + 'payCountryId': '1467683339950387202', + 'channelCode': '123123', + 'shelf': false + }, + 'channel': { + 'id': '1465645906115207170', + 'channelCode': '123123', + 'channelName': '12312234234', + 'channelIcon': 'http://dev.img.sugartimeapp.com/svgasource/manager-d27b6be6-d29b-4fc5-8851-aa1ffb83e5e2.png', + 'channelType': 'ELECTRONIC_WALLET', + 'createTime': '2021-11-30 19:36:29' + }, + 'countryChannels': [ + { + 'payFactory': { + 'id': '1467745759100231682', + 'factoryCode': 'test2', + 'factoryName': '测试2', + 'factoryIcon': 'http://dev.img.sugartimeapp.com/svgasource/manager-bf5c7314-3e56-4380-89c7-61a2188ea16d.png', + 'createTime': '2021-12-06 14:40:33' + }, + 'countryChannelDetails': { + 'payCountryId': '1467683339950387202', + 'countryChannelId': '1468036919836319746', + 'channelCode': '123123', + 'factoryCode': 'test2', + 'shelf': false + } + } + ] + }] + }), + // 渠道关联厂商列表-列表 + get('/sys-pay-channel-factory/associate', { + 'channel': { + 'channelCode': '@id', + 'channelName': '@string', + 'channelIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'channelType': 0, + 'createTime': '2021-11-15 12:12:32' + }, + 'payFactorys': { + 'factoryCode': '@id', + 'factoryName': '@string', + 'factoryIcon': 'http://img.sugartimeapp.com/avatar/b6f7c4d0-c4c1-42cd-b7cb-968aa62d03a7.jpg', + 'createTime': '2021-11-15 12:12:32' + } + }) +] diff --git a/mock/sys.js b/mock/sys.js new file mode 100644 index 0000000..ff0b856 --- /dev/null +++ b/mock/sys.js @@ -0,0 +1,28 @@ +import Mock from 'mockjs' + +export default [ + // 获取抽奖配置数据 + { + url: '/lottery/conf', + type: 'get', + response: config => { + return { 'status': 200, 'result': { 'diameter': '300px', 'blocks': [{ 'padding': '13px', 'background': '#77D637', 'imgs': [], 'imageIndex': '0' }], 'prizes': [{ 'background': '#f8d384', 'fonts': [{ 'text': '1 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/svga_cover/manager-3c9372f3-1d15-482d-9cb7-e58e6852dbcb.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '2312', 'prize': { 'content': '', 'cover': '', 'propsType': '' }, 'probability': 0 }, { 'background': '#f9e3bb', 'fonts': [{ 'text': '2 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/svga_cover/manager-3c9372f3-1d15-482d-9cb7-e58e6852dbcb.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '0', 'prize': { 'content': '', 'cover': '', 'propsType': '' }, 'probability': 0 }, { 'background': '#f8d384', 'fonts': [{ 'text': '3 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/svga_cover/manager-3c9372f3-1d15-482d-9cb7-e58e6852dbcb.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '0', 'prize': { 'content': '', 'cover': '', 'propsType': '' }, 'probability': 0 }, { 'background': '#f9e3bb', 'fonts': [{ 'text': '4 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/other/manager-496c0d2a-6efc-404a-ae40-1d0557ccc53f.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '321', 'prize': { 'content': '1386570046155755521', 'cover': 'http://img.sugartimeapp.com/other/manager-496c0d2a-6efc-404a-ae40-1d0557ccc53f.png', 'propsType': 'GIFT' }, 'probability': 0 }, { 'background': '#f8d384', 'fonts': [{ 'text': '5 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/svga_cover/manager-3c9372f3-1d15-482d-9cb7-e58e6852dbcb.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '0', 'prize': { 'content': '', 'cover': '', 'propsType': '' }, 'probability': 0 }, { 'background': '#f9e3bb', 'fonts': [{ 'text': '6 元红包', 'top': '18%', 'fontColor': '', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '' }], 'imgs': [{ 'src': 'http://img.sugartimeapp.com/svga_cover/manager-3c9372f3-1d15-482d-9cb7-e58e6852dbcb.png', 'top': '35%', 'width': '30%', 'height': '' }], 'fontIndex': '0', 'inStock': '0', 'prize': { 'content': '', 'cover': '', 'propsType': '' }, 'probability': 0 }], 'buttons': [{ 'radius': '50%', 'pointer': false, 'background': '#d64737', 'fonts': [], 'imgs': [] }, { 'radius': '45%', 'pointer': false, 'background': '#ffffff', 'fonts': [], 'imgs': [] }, { 'radius': '41%', 'pointer': true, 'background': '#f6c66f', 'fonts': [], 'imgs': [] }, { 'radius': '35%', 'pointer': false, 'background': '#ffdea0', 'fonts': [], 'imgs': [] }], 'defaultConfig': { 'gutter': '0', 'stopRange': 0, 'offsetDegree': 0, 'speed': 20, 'accelerationTime': 2500, 'decelerationTime': 2500 }, 'defaultStyle': { 'background': '', 'fontColor': '#000', 'fontSize': '14px', 'fontStyle': 'sans-serif', 'fontWeight': '400', 'lineHeight': '14px', 'wordWrap': true, 'lengthLimit': '90%' }}} + } + }, + // 用户登录日志 + { + url: '/user/login/logger/page', + type: 'get', + response: config => { + return { 'status': 200, 'result': {}} + } + }, + // 活动奖品预览 + { + url: '/activity-conf/rank-reward-preview', + type: 'get', + response: config => { + return { 'status': 200, 'result': { 'butOneRanks': [{ 'reward': { 'rankRange': '1', 'resourceGroupId': '1546775100905127937', 'rewards': [{ 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438401', 'groupId': '1546775100905127937', 'type': 'PROPS', 'detailType': 'NOBLE_VIP', 'content': '1386297763882045441', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-1428b2f3-ce1c-4b54-8e50-651cc55155ca.png', 'sourceUrl': 'http://dev.img.sugartimeapp.com/svgasource/manager-d1a9739f-ac73-40fb-a3ac-915f472c99a0.svga', 'amount': 1386297763882045441, 'sort': 1, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438402', 'groupId': '1546775100905127937', 'type': 'GOLD', 'detailType': 'GOLD', 'content': '111', 'quantity': 0, 'amount': 111, 'sort': 2, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438403', 'groupId': '1546775100905127937', 'type': 'PROPS', 'detailType': 'AVATAR_FRAME', 'content': '1435930845005176833', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-de6db8aa-01cb-4906-9dbd-c21e48b9ce1f.png', 'sourceUrl': 'http://dev.img.sugartimeapp.com/svgasource/manager-8398eb77-e65b-4344-87d2-8285670cad55.svga', 'amount': 1435930845005176833, 'sort': 3, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438404', 'groupId': '1546775100905127937', 'type': 'BADGE', 'detailType': 'BADGE', 'content': '1432243445812940802', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/other/manager-d7942cd5-c2bc-4af6-8e22-fa58c1f8ef63.png', 'sourceUrl': '', 'amount': 1432243445812940802, 'badgeName': 'cp_rank_top2', 'sort': 4, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438405', 'groupId': '1546775100905127937', 'type': 'CUSTOMIZE', 'detailType': 'CUSTOMIZE', 'content': '1498615841441071105', 'quantity': 0, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-4013fd35-930a-4d4a-98dd-8f71d0824de7.png', 'sourceUrl': '', 'amount': 1498615841441071105, 'sort': 5, 'remark': '请问去玩' }] }, 'userProfile': { 'id': '1557628769233387522', 'account': '42098', 'userAvatar': '', 'userNickname': 'Chris and I are ', 'userSex': 1, 'age': 27, 'accountStatus': 'NORMAL', 'freezingTime': '2022-08-10 15:23:33', 'countryId': '1231833232115249154', 'countryName': 'United Arab Emirates', 'countryCode': 'AE', 'originSys': 'ASWAT', 'sysOriginChild': 'ASWAT', 'del': false, 'bornYear': 1995, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2022-08-11 15:23:32', 'actualAccountStatus': 'NORMAL', 'actualAccount': '42098', 'userSexName': '男', 'accountStatusName': '正常' }, 'quantity': '360000', 'quantityFormat': '360K' }], 'butTwoRanks': [{ 'reward': { 'rankRange': '1', 'resourceGroupId': '1546775100905127937', 'rewards': [{ 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438401', 'groupId': '1546775100905127937', 'type': 'PROPS', 'detailType': 'NOBLE_VIP', 'content': '1386297763882045441', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-1428b2f3-ce1c-4b54-8e50-651cc55155ca.png', 'sourceUrl': 'http://dev.img.sugartimeapp.com/svgasource/manager-d1a9739f-ac73-40fb-a3ac-915f472c99a0.svga', 'amount': 1386297763882045441, 'sort': 1, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438402', 'groupId': '1546775100905127937', 'type': 'GOLD', 'detailType': 'GOLD', 'content': '111', 'quantity': 0, 'amount': 111, 'sort': 2, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438403', 'groupId': '1546775100905127937', 'type': 'PROPS', 'detailType': 'AVATAR_FRAME', 'content': '1435930845005176833', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-de6db8aa-01cb-4906-9dbd-c21e48b9ce1f.png', 'sourceUrl': 'http://dev.img.sugartimeapp.com/svgasource/manager-8398eb77-e65b-4344-87d2-8285670cad55.svga', 'amount': 1435930845005176833, 'sort': 3, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438404', 'groupId': '1546775100905127937', 'type': 'BADGE', 'detailType': 'BADGE', 'content': '1432243445812940802', 'quantity': 1, 'cover': 'http://dev.img.sugartimeapp.com/other/manager-d7942cd5-c2bc-4af6-8e22-fa58c1f8ef63.png', 'sourceUrl': '', 'amount': 1432243445812940802, 'badgeName': 'cp_rank_top2', 'sort': 4, 'remark': '' }, { 'createTime': '2022-08-16 15:12:43', 'updateTime': '2022-08-16 15:12:43', 'createUser': '23', 'updateUser': '23', 'id': '1559437982926438405', 'groupId': '1546775100905127937', 'type': 'CUSTOMIZE', 'detailType': 'CUSTOMIZE', 'content': '1498615841441071105', 'quantity': 0, 'cover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-4013fd35-930a-4d4a-98dd-8f71d0824de7.png', 'sourceUrl': '', 'amount': 1498615841441071105, 'sort': 5, 'remark': '请问去玩' }] }, 'userProfile': { 'id': '1557626889618964481', 'account': '42096', 'userAvatar': '', 'userNickname': 'qwe', 'userSex': 1, 'age': 27, 'accountStatus': 'NORMAL', 'freezingTime': '2022-08-10 15:16:04', 'countryId': '1231833232115249154', 'countryName': 'United Arab Emirates', 'countryCode': 'AE', 'originSys': 'ASWAT', 'sysOriginChild': 'ASWAT', 'del': false, 'bornYear': 1995, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2022-08-11 15:16:04', 'actualAccountStatus': 'NORMAL', 'actualAccount': '42096', 'userSexName': '男', 'accountStatusName': '正常' }, 'quantity': '360000', 'quantityFormat': '360K' }] }} + } + } +] diff --git a/mock/table.js b/mock/table.js new file mode 100644 index 0000000..ba6faee --- /dev/null +++ b/mock/table.js @@ -0,0 +1,96 @@ +// import Mock from 'mockjs' +import { get, getPage, del, post } from './default_request' +export default [ + // 意见反馈 + getPage('/sys/feedback/page', { + 'id': '@id', + 'userId': '1198154451673640962', + 'content': 'ghjjjjhgg', + 'imageUrls': 'DA66D98A-1A0F-4FA3-A86D-DE2DC9C95DB9.png,023CAF95-58F5-4942-9606-A177B175CF2D.png', + 'approvalStatus': 0, + 'approvalStatusName': '未处理', + 'approvalRemarks': '132132132', + 'createTime': '2019-11-29 03:58:10', + 'updateTime': '2020-01-09 03:54:05', + 'updateUser': '23', + 'lastUpdateUser': { + 'id': 23, + 'loginName': 'admin', + 'nickname': 'admin', + 'ip': '127.0.0.1', + 'status': 0, + 'createUid': 1, + 'createTime': '2019-11-13 18:28:38', + 'updateTime': '2019-12-15 18:49:53' + } + }), + // 举报管理 + getPage('/sys/reported/user/page', { + 'createTime': '2020-03-31 17:34:57', + 'updateTime': '2020-03-31 17:34:57', + 'id': '@id', + 'originName': '视频', + 'censorRemarks': '', + 'approvalStatusName': '系统已审批', + 'reportUser': { + 'createTime': '2020-03-31 10:51:08', + 'updateTime': '2020-03-31 17:28:50', + 'id': '1244819490287362050', + 'userAvatar': 'http://dev.qiniu.sugartimeapp.com/F83FAD34-96AA-467E-8581-2253005EB8D7.png', + 'userNickname': '松毛', + 'userSex': 1, + 'userSexName': '男', + 'userType': 0, + 'userTypeName': '真实', + 'countryName': 'China', + 'del': false + }, + 'reportedUser': { + 'createTime': '2019-12-27 10:47:25', + 'updateTime': '2020-02-24 17:01:14', + 'id': '1210169958483365892', + 'userAvatar': 'http://app.qiniu.sugartimeapp.com/1210169958483365893_20191226.jpg', + 'userNickname': 'Renee Keppel', + 'userSex': 0, + 'userSexName': '女', + 'userType': 1, + 'userTypeName': '马甲', + 'countryName': '', + 'del': false + }, + 'reportType': 0, + 'reportTypeName': '非法信息', + 'reportedContent': '', + 'approvalStatus': false + }), + // 参数配置 + getPage('/sys/enum/config/page', { + 'createTime': '2020-10-13 16:03:51', + 'updateTime': '2020-10-19 12:24:53', + 'createUser': '23', + 'updateUser': '26', + 'id': '1315926207577972737', + 'name': 'SHORT_VIDEO_WATCH_AD_INTEGRAL', + 'val': '0.1', + 'title': '短视频广告积分', + 'groupName': 'OTHER', + 'description': '短视频观看广告获得积分', + 'dataType': 'double', + 'sort': 1, + 'inoperable': false, + 'returnApp': false, + 'platform': 'ALL' + }), + // 获取系统枚举分组列表 + get('/sys/enum/config/list/\.', [{ 'createTime': '2020-07-28 19:01:41', 'updateTime': '2020-07-31 14:21:55', 'createUser': '23', 'updateUser': '23', 'id': '1288067094097670145', 'name': 'NORMAL_MATCH_ALL_AI_FEMALE_PROBABILITY', 'val': 'true', 'groupName': 'VIDEO_MATCH', 'title': '开关bool', 'description': '开关bool', 'dataType': 'bool', 'sort': 0, 'inoperable': false }, { 'createTime': '2020-07-29 10:33:24', 'updateTime': '2020-07-31 12:29:07', 'createUser': '23', 'updateUser': '23', 'id': '1288301568651632642', 'name': 'NORMAL_MATCH_ALL_AI_PROBABILITY', 'val': '55', 'groupName': 'VIDEO_MATCH', 'description': '视频匹配所有(正常用户)-AI概率', 'dataType': 'int', 'sort': 0, 'inoperable': false }, { 'createTime': '2020-07-28 19:01:18', 'updateTime': '2020-07-31 14:22:01', 'createUser': '23', 'updateUser': '23', 'id': '1288067001030258689', 'name': 'T0_MATCH_ALL_AI_FEMALE_PROBABILITY', 'val': '70', 'groupName': 'VIDEO_MATCH', 'description': 'T0匹配所有-AI女性概率', 'dataType': 'int', 'sort': 0, 'inoperable': false }, { 'createTime': '2020-07-28 19:00:49', 'updateTime': '2020-07-31 14:22:06', 'createUser': '23', 'updateUser': '23', 'id': '1288066876207771649', 'name': 'T0_MATCH_ALL_AI_PROBABILITY', 'val': '70', 'groupName': 'VIDEO_MATCH', 'description': 'T0匹配所有-AI概率', 'dataType': 'int', 'sort': 0, 'inoperable': false }, { 'createTime': '2020-07-28 19:02:09', 'updateTime': '2020-07-31 14:21:48', 'createUser': '23', 'updateUser': '23', 'id': '1288067215082369025', 'name': 'VIDEO_MATCH_ALL_FEMALE_PROBABILITY', 'val': '70', 'groupName': 'VIDEO_MATCH', 'description': '视频匹配所有(正常用户)-女性概率', 'dataType': 'int', 'sort': 0, 'inoperable': false }]), + // 保存配置序号 + post('/sys/enum/config/sort', {}), + // 获取app崩溃版本信息 + post('/sys/breakdown/info/flow', []), + // 清空指定平台崩溃日志 + del('/sys/breakdown/info/\./delete'), + // 清空指定平台日期崩溃日志 + del('/sys/breakdown/info/\./\./\./delete'), + // 站内评分 + getPage('/sys/app/score/page', { 'id': '@id', 'userId': '@id', 'platform': 'iOS', 'score': 1, 'createTime': '2020-11-24 14:47:00', 'userBaseInfo': {}}) +] diff --git a/mock/team.js b/mock/team.js new file mode 100644 index 0000000..203ac75 --- /dev/null +++ b/mock/team.js @@ -0,0 +1,43 @@ + +export default [ + // 团列表 + { + url: '/team/list', + type: 'get', + response: config => { + return { 'status': 200, 'result': [{ 'teamProfile': { 'id': '1600424626181439489', 'region': 'shanghai', 'account': '', 'sysOrigin': 'ASWAT', 'nickname': 'hhhiii8', 'ownUserId': '1600013750836187138', 'remarks': [], 'status': 'AVAILABLE', 'setting': { 'maxMember': 1000, 'billType': 'MONTH', 'billCycle': 1 }, 'counter': { 'memberQuantity': '1', 'adminQuantity': '0' }, 'contacts': [{ 'type': 'FACEBOOK', 'contact': '12312', 'remarks': '12312' }], 'createTime': '2022-12-07 17:38:59', 'updateTime': '2022-12-07 17:38:59' }, 'ownUserProfile': { 'id': '1600013750836187138', 'account': '42155', 'userAvatar': 'http://dev.img.sugartimeapp.com/avatar/151e099f-8779-4219-9f33-cafe8db2cf0e.png', 'userNickname': 'hhhiii8', 'userSex': 1, 'age': 27, 'accountStatus': 'NORMAL', 'freezingTime': '2022-12-05 14:26:20', 'countryName': 'United States', 'countryCode': 'en', 'originSys': 'ASWAT', 'sysOriginChild': 'ASWAT', 'del': false, 'bornYear': 1995, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2022-12-06 14:26:19', 'actualAccountStatus': 'NORMAL', 'actualAccount': '42155', 'accountStatusName': '正常', 'userSexName': '男' }}, { 'teamProfile': { 'id': '1600416069822275585', 'region': 'shanghai', 'account': '1234321', 'sysOrigin': 'ASWAT', 'nickname': 'kaka', 'ownUserId': '1600059496931332097', 'remarks': [{ 'remarkId': '1600416069860024321', 'remark': 'test', 'createTime': '2022-12-07 17:05:00' }], 'status': 'AVAILABLE', 'counter': { 'memberQuantity': '1', 'adminQuantity': '0' }, 'contacts': [], 'createTime': '2022-12-07 17:04:59', 'updateTime': '2022-12-07 17:04:59' }, 'ownUserProfile': { 'id': '1600059496931332097', 'account': '42156', 'userAvatar': '', 'userNickname': 'kaka', 'userSex': 1, 'age': 27, 'accountStatus': 'NORMAL', 'freezingTime': '2022-12-05 17:28:06', 'countryName': 'United States', 'countryCode': 'en', 'originSys': 'ASWAT', 'sysOriginChild': 'ASWAT', 'del': false, 'bornYear': 1995, 'bornMonth': 1, 'bornDay': 1, 'createTime': '2022-12-06 17:28:06', 'actualAccountStatus': 'NORMAL', 'actualAccount': '42156', 'accountStatusName': '正常', 'userSexName': '男' }}] } + } + }, + // 成员列表 + { + url: '/team/member/list', + type: 'get', + response: config => { + return { 'status': 200, 'result': [] } + } + }, + // 团队账单列表 + { + url: '/team/bill/list', + type: 'get', + response: config => { + return { 'status': 200, 'result': [] } + } + }, + // 系统区域政策 + { + url: '/team/policy/manager/sys-region', + type: 'get', + response: config => { + return { 'status': 200, 'result': [] } + } + }, + // 团队通过银行卡 + { + url: '/team/bank-card/pass-list', + type: 'get', + response: config => { + return { 'status': 200, 'result': [] } + } + } +] diff --git a/mock/tootls.js b/mock/tootls.js new file mode 100644 index 0000000..c1a0c8c --- /dev/null +++ b/mock/tootls.js @@ -0,0 +1,10 @@ +// import Mock from 'mockjs' +import { get } from './default_request' + +export default [ + // 分析金币来源 + get('/tools/gold_analyze', [{ name: 'aaa', value: 123 }]), + // api请求日志 + get('/tools/api-operation-log', []) + +] diff --git a/mock/user-special-id.js b/mock/user-special-id.js new file mode 100644 index 0000000..edd009e --- /dev/null +++ b/mock/user-special-id.js @@ -0,0 +1,18 @@ +import Mock from 'mockjs' + +export default [ + { + url: '/user-special-id/flow', + type: 'get', + response: config => { + return { 'status': 200, 'result': [{ 'userSpecialId': { 'id': 'TIM_CHAT_123321', 'timeId': '1493866636127289346', 'sysOrigin': 'TIM_CHAT', 'userId': '1493138116758827009', 'account': '123321', 'expiredTime': '2022-02-25 16:35:35', 'createTime': '2022-02-16 16:35:35', 'updateTime': '2022-02-16 16:35:35', 'customizeField': { 'tesrr': '1' }}, 'userBaseInfo': { 'createTime': '2022-02-14 16:20:42', 'updateTime': '2022-02-14 16:20:42', 'id': '1493138116758827009', 'userAvatar': '', 'originSys': 'TIM_CHAT', 'sysOriginChild': 'TIM_CHAT', 'userNickname': '啦啦啦2', 'userSex': 1, 'userSexName': '男', 'userType': 0, 'age': 2, 'bornYear': 2020, 'bornMonth': 1, 'bornDay': 1, 'userTypeName': '真实', 'countryName': 'China', 'countryId': '1231833262813360130', 'countryCode': 'CN', 'accountStatus': 'NORMAL', 'accountStatusName': '正常', 'freezingTime': '2022-02-13 16:20:43', 'del': false, 'account': '42032' }}] } + } + }, + { + url: '/user-special-id/latest-log', + type: 'get', + response: config => { + return {} + } + }] + diff --git a/mock/user.js b/mock/user.js new file mode 100644 index 0000000..cc992f2 --- /dev/null +++ b/mock/user.js @@ -0,0 +1,142 @@ +import Mock from 'mockjs' + +export default [ + { + url: '/account/buttons/aliases', + type: 'get', + response: config => { + return { + status: 200, + result: [] + } + } + }, + // user login + { + url: '/account/token', + type: 'post', + response: config => { + return { + status: 200, + result: { + token: 'admin-token', + uid: 1 + } + } + } + }, + + // get user info + { + url: '/account/info', + type: 'get', + response: config => { + return { + status: 200, + result: { + loginName: 'admin', + nickname: 'admin' + } + } + } + }, + + // user logout + { + url: '/mock/user/logout', + type: 'post', + response: _ => { + return { + code: 200, + data: 'success' + } + } + }, + // 账号菜单 + { + url: '/account/menus', + type: 'get', + response: config => { + return { 'status': 200, 'result': [] } + } + }, + // 用户道具流水 + { + url: '/running/water/user/props/page', + type: 'get', + response: config => { + return { + status: 200, + result: { + records: Mock.mock({ + 'items|30': [{ + 'id': '1403253727628857346', + 'propsCandy': 0, + 'propsId': '1402547029989617665', + 'propsCode': 'Aswat-vip3-ride', + 'propsName': 'Aswat-vip3-ride', + 'propsCover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-4aeab7ae-7c0d-4406-bfd3-e50e058b8444.png', + 'buyerId': '1402831237773488130', + 'buyerNickname': 'xiaomi', + 'receiverId': '1402831237773488130', + 'receiverNickname': 'xiaomi', + 'createTime': '2021-06-11 15:32:14' + }, + { + 'id': '1403253727314284545', + 'propsCandy': 14000, + 'propsId': '1402550414344155137', + 'propsCode': 'Aswat-vip3-badge', + 'propsName': 'MARQUIS', + 'propsCover': 'http://dev.img.sugartimeapp.com/svga_cover/manager-76e13b50-bff3-40ff-acb1-2cd1913f0336.png', + 'buyerId': '1392405692929675266', + 'buyerNickname': 'Samsung ', + 'receiverId': '1402831237773488130', + 'receiverNickname': 'xiaomi', + 'createTime': '2021-06-11 15:32:14' + }, + { + 'id': '1403226439239589889', + 'propsCandy': 7, + 'propsId': '1377919753268461569', + 'propsCode': '1', + 'propsName': 'VISCOUNT', + 'propsCover': 'http://img.sugartimeapp.com/nobleVip/manager-3ed6ca82-6240-4fff-95c8-7ab29c875b8f.png', + 'buyerId': '1396765544959414273', + 'buyerNickname': 'Donkor', + 'receiverId': '1398094185093890049', + 'receiverNickname': '李易峰', + 'createTime': '2021-06-11 13:43:48' + }, + { + 'id': '1402953820829376514', + 'propsCandy': 0, + 'propsId': '1357931892593101005', + 'propsCode': '1012', + 'propsName': '凤凰', + 'propsCover': 'http://img.sugartimeapp.com/theme/cars_1012.png', + 'buyerId': '1376452751777554434', + 'buyerNickname': 'st_1', + 'receiverId': '1376452751777554434', + 'receiverNickname': 'st_1', + 'createTime': '2021-06-10 19:40:31' + }] + }).items, + total: 30, + size: 30, + current: 1, + searchCount: true, + pages: 3 + } + } + } + }, + // 权限菜单 + { + url: '/account/buttons/aliases', + type: 'get', + response: config => { + return { 'status': 200, 'result': ['sys:user:add', 'user:table:edit:account:handler', 'user:table:edit', 'user:table:query:gold', 'user:table:query:list', 'dashboard:details', 'sys:user:edit', 'user:table:edit:deduction:gold', 'user:table:query:violation', 'user:table:query:account:handler', 'user:table:edit:reward:gold', 'user:table:query:details', 'sys:user:resetpwd'] } + } + } +] diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..8cce033 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,34 @@ +server { + listen 80; + listen [::]:80; + server_name _; + root /usr/share/nginx/html; + + # Load configuration files for the default server block. + include /etc/nginx/default.d/*.conf; + location / { + # 此处的 @router 实际上是引用下面的转发,否则在 Vue 路由刷新时可能会抛出 404 + try_files $uri $uri/ @router; + # 请求指向的首页 + index index.html; + } + location /console { + proxy_pass http://console.prod.svc.cluster.local/console; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_connect_timeout 30s; + proxy_read_timeout 60s; + proxy_send_timeout 30s; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + error_page 404 /404.html; + location = /404.html { + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + } +} diff --git a/nginx/default_hooka.conf b/nginx/default_hooka.conf new file mode 100644 index 0000000..125d3cc --- /dev/null +++ b/nginx/default_hooka.conf @@ -0,0 +1,34 @@ +server { + listen 80; + listen [::]:80; + server_name _; + root /usr/share/nginx/html; + + # Load configuration files for the default server block. + include /etc/nginx/default.d/*.conf; + location / { + # 此处的 @router 实际上是引用下面的转发,否则在 Vue 路由刷新时可能会抛出 404 + try_files $uri $uri/ @router; + # 请求指向的首页 + index index.html; + } + location /console { + proxy_pass http://console.prod-hooka.svc.cluster.local/console; + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_connect_timeout 30s; + proxy_read_timeout 60s; + proxy_send_timeout 30s; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + } + error_page 404 /404.html; + location = /404.html { + } + + error_page 500 502 503 504 /50x.html; + location = /50x.html { + } +} diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..91a4eb9 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,67 @@ +user nginx; +worker_processes auto; +error_log /var/log/nginx/error.log; +pid /run/nginx.pid; + +# Load dynamic modules. See /usr/share/doc/nginx/README.dynamic. +include /usr/share/nginx/modules/*.conf; + +events { + worker_connections 1024; +} + +http { + log_format main '$remote_addr - $remote_user [$time_local] "$request" ' + '$status $body_bytes_sent "$http_referer" ' + '"$http_user_agent" "$http_x_forwarded_for"'; + + access_log /var/log/nginx/access.log main; + + sendfile on; + tcp_nopush on; + tcp_nodelay on; + keepalive_timeout 65; + types_hash_max_size 2048; + + include /etc/nginx/mime.types; + default_type application/octet-stream; + + # Load modular configuration files from the /etc/nginx/conf.d directory. + # See http://nginx.org/en/docs/ngx_core_module.html#include + # for more information. + include /etc/nginx/conf.d/*.conf; + gzip on; + gzip_static on; + gzip_min_length 10k; + gzip_buffers 4 16k; + gzip_comp_level 5; + gzip_http_version 1.0; + gzip_types + application/atom+xml + application/javascript + application/json + application/ld+json + application/manifest+json + application/rss+xml + application/vnd.geo+json + application/vnd.ms-fontobject + application/x-font-ttf + application/x-web-app-manifest+json + application/xhtml+xml + application/xml + font/opentype + image/bmp + image/svg+xml + image/x-icon + text/cache-manifest + text/css + text/plain + text/vcard + text/vnd.rim.location.xloc + text/vtt + text/x-component + application/octet-stream + text/x-cross-domain-policy; + gzip_vary off; + gzip_disable "MSIE [1-6]\."; +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..de17df8 --- /dev/null +++ b/package.json @@ -0,0 +1,83 @@ +{ + "name": "sugartime-admin", + "version": "4.2.1", + "description": "sugartime admin", + "author": "1427985322@qq.com", + "license": "MIT", + "scripts": { + "dev": "vue-cli-service serve", + "build:prod": "vue-cli-service build", + "build:stage": "vue-cli-service build --mode staging", + "preview": "node build/index.js --preview", + "lint": "eslint --ext .js,.vue src", + "test:unit": "jest --clearCache && vue-cli-service test:unit", + "test:ci": "npm run lint && npm run test:unit", + "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml" + }, + "dependencies": { + "@lucky-canvas/vue": "0.0.5", + "ali-oss": "^6.12.0", + "axios": "0.18.1", + "codemirror": "5.45.0", + "current-device": "0.10.2", + "echarts": "4.8.0", + "element-ui": "2.15.14", + "fuse.js": "3.4.4", + "js-cookie": "2.2.0", + "jsonlint": "^1.6.3", + "libpag": "^4.2.84", + "normalize.css": "7.0.0", + "nprogress": "0.2.0", + "path-to-regexp": "2.4.0", + "screenfull": "5.0.2", + "sockjs-client": "^1.5.1", + "sortablejs": "1.10.2", + "stompjs": "^2.3.3", + "svgaplayerweb": "^2.3.2", + "video.js": "^8.10.0", + "vue": "2.6.10", + "vue-count-to": "1.0.13", + "vue-json-viewer": "2.2.14", + "vue-router": "3.0.6", + "vue-seamless-scroll": "1.1.21", + "vuex": "3.1.0", + "vuex-along": "1.2.11" + }, + "devDependencies": { + "@babel/core": "7.0.0", + "@babel/register": "7.0.0", + "@vue/cli-plugin-babel": "3.6.0", + "@vue/cli-plugin-eslint": "^3.9.1", + "@vue/cli-plugin-unit-jest": "3.6.3", + "@vue/cli-service": "3.6.0", + "@vue/test-utils": "1.0.0-beta.29", + "autoprefixer": "^9.5.1", + "babel-core": "7.0.0-bridge.0", + "babel-eslint": "10.0.1", + "babel-jest": "23.6.0", + "chalk": "2.4.2", + "connect": "3.6.6", + "eslint": "5.15.3", + "eslint-plugin-vue": "5.2.2", + "html-webpack-plugin": "3.2.0", + "mockjs": "1.0.1-beta3", + "node-sass": "^4.9.0", + "runjs": "^4.3.2", + "sass": "^1.26.11", + "sass-loader": "^7.1.0", + "script-ext-html-webpack-plugin": "2.1.3", + "script-loader": "0.7.2", + "serve-static": "^1.13.2", + "svg-sprite-loader": "4.1.3", + "svgo": "1.2.2", + "vue-template-compiler": "2.6.10" + }, + "engines": { + "node": ">=8.9", + "npm": ">= 3.0.0" + }, + "browserslist": [ + "> 1%", + "last 2 versions" + ] +} diff --git a/pipeline b/pipeline new file mode 100644 index 0000000..9560d53 --- /dev/null +++ b/pipeline @@ -0,0 +1,57 @@ +pipeline { + + agent { + label "prod" + } + + environment { + BUILD_IMAGE = "${sh(script:'echo -n halar:page-console-$(date +%Y%m%dv%H%M%S)', returnStdout: true)}" + IMAGE_REP_TAG = "794038239327.dkr.ecr.ap-southeast-1.amazonaws.com/" + K8S_NAMESPACE = "prod" + K8S_DEPLOYMENT = "console-page" + K8S_APP_LABEL = "console-page" + } + + stages { + stage('Build') { + steps { + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin && npm install' + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin && npm run build:prod' + sh 'du -sh dist' + script { + IMAGE_REP_TAG="${sh(script:'echo -n ${IMAGE_REP_TAG}${BUILD_IMAGE}', returnStdout: true)}" + } + } + } + stage('Build image') { + steps { + sh "aws ecr get-login-password --region ap-southeast-1 | docker login --username AWS --password-stdin 794038239327.dkr.ecr.ap-southeast-1.amazonaws.com" + sh "docker build -t ${BUILD_IMAGE} ." + } + } + stage('Upload image') { + steps { + sh "docker tag ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + sh "docker push ${IMAGE_REP_TAG}" + sh "docker rmi -f ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + } + } + stage('Apply') { + steps { + sh "kubectl -n ${K8S_NAMESPACE} set image deployment/${K8S_DEPLOYMENT} ${K8S_APP_LABEL}=${IMAGE_REP_TAG}" + } + } + + stage('Clear Cahe') { + steps { + sh 'sleep 40s' + sh 'aws cloudfront create-invalidation --distribution-id E4G8BEOY3HP3T --paths "/*"' + } + } + } + post { + always { + cleanWs() + } + } +} diff --git a/pipeline-dev b/pipeline-dev new file mode 100644 index 0000000..9065f9a --- /dev/null +++ b/pipeline-dev @@ -0,0 +1,57 @@ +pipeline { + + agent { + label "dev" + } + + environment { + BUILD_IMAGE = "${sh(script:'echo -n halar-dev:page-console-$(date +%Y%m%dv%H%M%S)', returnStdout: true)}" + IMAGE_REP_TAG = "794038239327.dkr.ecr.ap-southeast-1.amazonaws.com/" + K8S_NAMESPACE = "local" + K8S_DEPLOYMENT = "console-page" + K8S_APP_LABEL = "console-page" + } + + stages { + stage('Build') { + steps { + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin &&npm install' + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin &&npm run build:stage' + sh 'du -sh dist' + script { + IMAGE_REP_TAG="${sh(script:'echo -n ${IMAGE_REP_TAG}${BUILD_IMAGE}', returnStdout: true)}" + } + } + } + stage('Build image') { + steps { + sh "aws ecr get-login-password --region ap-southeast-1 | docker login --username AWS --password-stdin 794038239327.dkr.ecr.ap-southeast-1.amazonaws.com" + sh "docker build -t ${BUILD_IMAGE} ." + } + } + stage('Upload image') { + steps { + sh "docker tag ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + sh "docker push ${IMAGE_REP_TAG}" + sh "docker rmi -f ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + } + } + stage('Apply') { + steps { + sh "kubectl -n ${K8S_NAMESPACE} set image deployment/${K8S_DEPLOYMENT} ${K8S_APP_LABEL}=${IMAGE_REP_TAG}" + } + } + + // stage('Clear Cahe') { + // steps { + // sh 'sleep 40s' + // sh 'aws cloudfront create-invalidation --distribution-id E3PFTQHTUMCCVT --paths "/*"' + // } + // } + } + post { + always { + cleanWs() + } + } +} diff --git a/pipeline-hooka b/pipeline-hooka new file mode 100644 index 0000000..39cf0f2 --- /dev/null +++ b/pipeline-hooka @@ -0,0 +1,52 @@ +pipeline { + + agent { + label "prod" + } + + environment { + BUILD_IMAGE = "${sh(script:'echo -n halar:page-console-$(date +%Y%m%dv%H%M%S)', returnStdout: true)}" + IMAGE_REP_TAG = "794038239327.dkr.ecr.ap-southeast-1.amazonaws.com/" + K8S_NAMESPACE = "prod-hooka" + K8S_DEPLOYMENT = "console-page" + K8S_APP_LABEL = "console-page" + } + + stages { + stage('Build') { + steps { + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin && npm install' + sh 'export PATH=$HOME/bin:$PATH &&export NODE_HOME=/usr/local/node &&export PATH=$NODE_HOME/bin:$PATH &&export PATH=$PATH:/usr/local/go/bin && npm run build:prod' + sh 'du -sh dist' + script { + IMAGE_REP_TAG="${sh(script:'echo -n ${IMAGE_REP_TAG}${BUILD_IMAGE}', returnStdout: true)}" + } + } + } + stage('Build image') { + steps { + sh "aws ecr get-login-password --region ap-southeast-1 | docker login --username AWS --password-stdin 794038239327.dkr.ecr.ap-southeast-1.amazonaws.com" + sh "docker build -t ${BUILD_IMAGE} . -f Dockerfile-hooka" + } + } + stage('Upload image') { + steps { + sh "docker tag ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + sh "docker push ${IMAGE_REP_TAG}" + sh "docker rmi -f ${BUILD_IMAGE} ${IMAGE_REP_TAG}" + } + } + stage('Apply') { + steps { + sh "kubectl -n ${K8S_NAMESPACE} set image deployment/${K8S_DEPLOYMENT} ${K8S_APP_LABEL}=${IMAGE_REP_TAG} --kubeconfig=/data/kube/hooka-config" + } + } + + + } + post { + always { + cleanWs() + } + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..10473ef --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,8 @@ +// https://github.com/michael-ciniawsky/postcss-load-config + +module.exports = { + 'plugins': { + // to edit target browsers: use "browserslist" field in package.json + 'autoprefixer': {} + } +} diff --git a/public/cdn/swiper/swiper.css b/public/cdn/swiper/swiper.css new file mode 100644 index 0000000..e69de29 diff --git a/public/cdn/swiper/swiper.js b/public/cdn/swiper/swiper.js new file mode 100644 index 0000000..e69de29 diff --git a/public/favicon.ico b/public/favicon.ico new file mode 100644 index 0000000..168024f Binary files /dev/null and b/public/favicon.ico differ diff --git a/public/favicon_new.ico b/public/favicon_new.ico new file mode 100644 index 0000000..434e8a6 Binary files /dev/null and b/public/favicon_new.ico differ diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..64eed07 --- /dev/null +++ b/public/index.html @@ -0,0 +1,88 @@ + + + + + + + + + <%= webpackConfig.name %> + + + + +
+
+
+ loading +
+ 正在加载资源 +
+
+ 初次加载资源可能需要较多时间 请耐心等待 +
+
+ +
+
+ + + diff --git a/public/loading.svg b/public/loading.svg new file mode 100644 index 0000000..e2166a5 --- /dev/null +++ b/public/loading.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/App.vue b/src/App.vue new file mode 100644 index 0000000..bcf47c6 --- /dev/null +++ b/src/App.vue @@ -0,0 +1,10 @@ + + diff --git a/src/api/activity.js b/src/api/activity.js new file mode 100644 index 0000000..6356f70 --- /dev/null +++ b/src/api/activity.js @@ -0,0 +1,107 @@ +/** + * 活动相关. + */ +import request from '@/utils/request' + +// //////////////////// 名人堂 /////////////////////////////// + +// 名人堂列表 +export function hallFameTable(params) { + return request({ + url: '/activity/hall-fame/page', + method: 'get', + params + }) +} + +// 修改或新增名人堂 +export function addOrUpdateHallFame(data) { + return request({ + url: '/activity/hall-fame/add-or-update', + method: 'post', + data + }) +} + +// ////////////////////// 国际化描述 ////////////////////////////////// +// 删除 +export function globalizationDelete(id) { + return request({ + url: '/activity/globalization/description/del', + method: 'get', + params: { id } + }) +} + +// 国际化描述列表 +export function globalizationTable(id) { + return request({ + url: '/activity/globalization/description/list', + method: 'get', + params: { id } + }) +} + +// 修改或新增国际化描述 +export function addOrUpdateGlobalization(data) { + return request({ + url: '/activity/globalization/description/add-or-update', + method: 'post', + data + }) +} + +// ////////////////////// 房间支持活动 ////////////////////////////////// +// 房间支持活动金币领取记录 +export function pageRoomContribution(params) { + return request({ + url: '/activity/room-contribution/page', + method: 'get', + params + }) +} + +// ////////////////////// 代理活动 ////////////////////////////////// +// 代理活动历史记录 +export function pageAgentActivity(params) { + return request({ + url: '/activity/agent-count/page', + method: 'get', + params + }) +} +// ////////////////////// 活动图片配置 ////////////////////////////////// +// 活动图片列表 +export function activityPicture(params) { + return request({ + url: '/activity-picture/config', + method: 'get', + params + }) +} + +// 修改活动图片信息 +export function updateActivityPicture(data) { + return request({ + url: '/activity-picture/config', + method: 'put', + data + }) +} + +// 删除活动图片 +export function deleteActivityPicture(id) { + return request({ + url: `/activity-picture/config/delete/${id}`, + method: 'delete' + }) +} + +// 新增活动图片 +export function addActivityPicture(data) { + return request({ + url: '/activity-picture/config', + method: 'post', + data + }) +} diff --git a/src/api/app-manager.js b/src/api/app-manager.js new file mode 100644 index 0000000..a53585d --- /dev/null +++ b/src/api/app-manager.js @@ -0,0 +1,94 @@ +/** + * app管理相关 + */ +import request from '@/utils/request' + +// 获取版本信息列表 +export function getAppVersionTable(params) { + return request({ + url: '/sys/version/manage', + method: 'get', + params + }) +} + +// 添加版本信息 +export function addAppVersion(data) { + return request({ + url: '/sys/version/manage', + method: 'post', + data + }) +} + +// 修改版本信息 +export function updateAppVersion(data) { + return request({ + url: '/sys/version/manage/update', + method: 'post', + data + }) +} + +// 删除版本信息 +export function delAppVersion(id) { + return request({ + url: `/sys/version/manage/${id}`, + method: 'get' + }) +} + +// 添加buildVersion +export function addServerBuildVersion(params) { + return request({ + url: '/sys/version/manage/add/build-version', + method: 'get', + params + }) +} + +// 获取当前添加buildVersion +export function getServerBuildVersion(params) { + return request({ + url: '/sys/version/manage/get/build-version', + method: 'get', + params + }) +} + +// 版本更新描述 + +// 获取版本更新描述列表 +export function getAppVersionDescriptionTable(params) { + return request({ + url: '/sys/version/update/description', + method: 'get', + params + }) +} + +// 添加版本更新描述列表 +export function addAppVersionDescription(data) { + return request({ + url: '/sys/version/update/description', + method: 'post', + data + }) +} + +// 修改版本更新描述列表 +export function updateAppVersionDescription(data) { + return request({ + url: '/sys/version/update/description/update', + method: 'post', + data + }) +} + +// 删除版本更新描述列表 +export function delAppVersionDescription(id) { + return request({ + url: `/sys/version/update/description/${id}`, + method: 'get' + }) +} diff --git a/src/api/app-server3.yml b/src/api/app-server3.yml new file mode 100644 index 0000000..987fad9 --- /dev/null +++ b/src/api/app-server3.yml @@ -0,0 +1,109 @@ +apiVersion: v1 +items: +- apiVersion: apps/v1 + kind: Deployment + metadata: + annotations: + deployment.kubernetes.io/revision: "13" + kubectl.kubernetes.io/last-applied-configuration: | + {"apiVersion":"apps/v1","kind":"Deployment","metadata":{"annotations":{},"labels":{"app":"app-service"},"name":"app-service-deployment","namespace":"rc-service-api"},"spec":{"replicas":6,"revisionHistoryLimit":3,"selector":{"matchLabels":{"app":"app-service"}},"template":{"metadata":{"labels":{"app":"app-service"}},"spec":{"containers":[{"image":"registry.ap-southeast-1.aliyuncs.com/rc1304/appservice:20230413tmpv1","livenessProbe":{"failureThreshold":2,"httpGet":{"path":"/probe/healthy","port":9000},"periodSeconds":5,"timeoutSeconds":2},"name":"app-service","ports":[{"containerPort":9000}],"readinessProbe":{"failureThreshold":2,"httpGet":{"path":"/probe/healthy","port":9000},"periodSeconds":5,"timeoutSeconds":2},"resources":{"limits":{"cpu":"2","memory":"2Gi"},"requests":{"cpu":"1","memory":"1Gi"}},"startupProbe":{"failureThreshold":60,"httpGet":{"path":"/probe/healthy","port":9000},"periodSeconds":5,"timeoutSeconds":2}}],"imagePullSecrets":[{"name":"rc-aliyun-secret"}],"terminationGracePeriodSeconds":30}}}} + creationTimestamp: "2023-04-13T14:02:33Z" + generation: 13 + labels: + app: app-service + name: app-service-deployment + namespace: rc-service-api + resourceVersion: "2895428" + uid: 039244b7-8b7d-419f-9340-8072ac05527a + spec: + progressDeadlineSeconds: 600 + replicas: 6 + revisionHistoryLimit: 3 + selector: + matchLabels: + app: app-service + strategy: + rollingUpdate: + maxSurge: 25% + maxUnavailable: 25% + type: RollingUpdate + template: + metadata: + annotations: + kubectl.kubernetes.io/restartedAt: "2023-04-14T02:36:07Z" + creationTimestamp: null + labels: + app: app-service + spec: + containers: + - image: registry.ap-southeast-1.aliyuncs.com/rc1304/appservice:20230413tmpv3 + imagePullPolicy: IfNotPresent + livenessProbe: + failureThreshold: 2 + httpGet: + path: /probe/healthy + port: 9000 + scheme: HTTP + periodSeconds: 5 + successThreshold: 1 + timeoutSeconds: 2 + name: app-service + ports: + - containerPort: 9000 + protocol: TCP + readinessProbe: + failureThreshold: 2 + httpGet: + path: /probe/healthy + port: 9000 + scheme: HTTP + periodSeconds: 5 + successThreshold: 1 + timeoutSeconds: 2 + resources: + limits: + cpu: "2" + memory: 2Gi + requests: + cpu: "1" + memory: 1Gi + startupProbe: + failureThreshold: 60 + httpGet: + path: /probe/healthy + port: 9000 + scheme: HTTP + periodSeconds: 5 + successThreshold: 1 + timeoutSeconds: 2 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + dnsPolicy: ClusterFirst + imagePullSecrets: + - name: rc-aliyun-secret + restartPolicy: Always + schedulerName: default-scheduler + securityContext: {} + terminationGracePeriodSeconds: 30 + status: + availableReplicas: 6 + conditions: + - lastTransitionTime: "2023-04-13T14:02:44Z" + lastUpdateTime: "2023-04-13T14:02:44Z" + message: Deployment has minimum availability. + reason: MinimumReplicasAvailable + status: "True" + type: Available + - lastTransitionTime: "2023-04-13T14:02:33Z" + lastUpdateTime: "2023-04-14T02:40:39Z" + message: ReplicaSet "app-service-deployment-7559b95b9" has successfully progressed. + reason: NewReplicaSetAvailable + status: "True" + type: Progressing + observedGeneration: 13 + readyReplicas: 6 + replicas: 6 + updatedReplicas: 6 +kind: List +metadata: + resourceVersion: "" \ No newline at end of file diff --git a/src/api/app-service-sva2.yaml b/src/api/app-service-sva2.yaml new file mode 100644 index 0000000..8a381aa --- /dev/null +++ b/src/api/app-service-sva2.yaml @@ -0,0 +1,102 @@ +apiVersion: v1 +kind: Namespace +metadata: + name: rc-service-api +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + namespace: rc-service-api + name: app-service-deployment + labels: + app: app-service +spec: + replicas: 6 + revisionHistoryLimit: 3 + selector: + matchLabels: + app: app-service + template: + metadata: + labels: + app: app-service + spec: + containers: + - name: app-service + image: registry.ap-southeast-1.aliyuncs.com/rc1304/appservice:20230413tmpv3 + ports: + - containerPort: 9000 + resources: + requests: + cpu: "1" + memory: "1Gi" + limits: + cpu: "2" + memory: "2Gi" + livenessProbe: + httpGet: + path: /probe/healthy + port: 9000 + failureThreshold: 2 + periodSeconds: 5 + timeoutSeconds: 2 + # initialDelaySeconds: 180 + readinessProbe: + httpGet: + path: /probe/healthy + port: 9000 + failureThreshold: 2 + periodSeconds: 5 + timeoutSeconds: 2 + # initialDelaySeconds: 180 + startupProbe: + httpGet: + path: /probe/healthy + port: 9000 + timeoutSeconds: 2 + failureThreshold: 60 + periodSeconds: 5 +# lifecycle: +# preStop: +# httpGet: +# path: /probe/shutdown?key=ZDk1p0M36tpxKobK +# port: 9000 + terminationGracePeriodSeconds: 30 + imagePullSecrets: + - name: rc-aliyun-secret +--- +apiVersion: v1 +kind: Service +metadata: + namespace: rc-service-api + name: app-service-service +spec: + selector: + app: app-service + ports: + - port: 80 + targetPort: 9000 + +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + namespace: rc-service-api + name: app-service-ingress + annotations: + alb.ingress.kubernetes.io/scheme: internet-facing + alb.ingress.kubernetes.io/target-type: ip + alb.ingress.kubernetes.io/target-group-attributes: deregistration_delay.timeout_seconds=30 +spec: + ingressClassName: alb + rules: + - http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: app-service-service + port: + number: 80 + diff --git a/src/api/app-user-bank-balance.js b/src/api/app-user-bank-balance.js new file mode 100644 index 0000000..a9e76db --- /dev/null +++ b/src/api/app-user-bank-balance.js @@ -0,0 +1,160 @@ +import request from '@/utils/request' +import { httpGetExport } from '@/utils/export-excel' + +// 用户银行账户分页列表 +export function pageBank(params) { + return request({ + url: '/user-bank-balance/page', + method: 'get', + params + }) +} + +// 用户银行账户-导出 +export function exprotBank(params) { + return httpGetExport( + '/user-bank-balance/export', + params, + 'ExportUserBankAccount' + ) +} + +// 用户银行账户-导入 +export function confirmImport(form) { + return request({ + url: '/user-bank-balance/import', + method: 'post', + headers: { + 'Content-Type': 'multipart/form-data' + }, + data: form + }) +} + +// 用户银行流水列表 +export function pageRunningWater(params) { + return request({ + url: '/user-bank-balance/running-water-page', + method: 'get', + params + }) +} + +// 用户银行流水列表 +export function calculateTotalAmount(params) { + return request({ + url: '/user-bank-balance/calculate/total', + method: 'get', + params + }) +} + +// 发送用户银行现金 +export function sendMoney(data) { + return request({ + url: '/user-bank-balance/send-money', + method: 'post', + data + }) +} + +// 创建用户银行现金账户 +export function createBankBalance(data) { + return request({ + url: '/user-bank-balance/create-bank-balance', + method: 'post', + data + }) +} + +// 扣除用户银行现金 +export function deductMoney(data) { + return request({ + url: '/user-bank-balance/deduct-money', + method: 'post', + data + }) +} + +// 转账用户银行现金 +export function transferMoney(data) { + return request({ + url: '/user-bank-balance/transfer-money', + method: 'post', + data + }) +} + +// 用户银行卡金币兑换申请列表 +export function pageBankWithdrawGoldApply(params) { + return request({ + url: '/user-bank-balance/withdraw-gold-apply-page', + method: 'get', + params + }) +} + +// 用户银行卡提现现金申请 +export function pageBankWithdrawMoneyApply(params) { + return request({ + url: '/user-bank-balance/withdraw-money-apply-page', + method: 'get', + params + }) +} + +// 用户银行卡提现现金申请-导出 +export function exportBankWithdrawMoneyApply(params) { + return httpGetExport( + '/user-bank-balance/withdraw-money-apply/export', + params, + 'ExportWithdrawMoneyApply' + ) +} + +// 用户银行卡提现现金申请 +export function getBankWithdrawMoneyApply(id) { + return request({ + url: '/user-bank-balance/withdraw-money-apply/info', + method: 'get', + params: { id } + }) +} + +// 审核用户银行卡提现现金申请 +export function approvalMoneyApply(data) { + return request({ + url: '/user-bank-balance/approval-money-apply', + method: 'post', + data + }) +} + +// //////////////////////// 自动化支付工资凭证 /////////////////////////////////// +// 给用户自动发送工资凭证记录 +export function pageSalary(params) { + return request({ + url: '/team/salary/list', + method: 'get', + params + }) +} + +// //////////////////////// 将主播剩余目标兑换成美元记录 /////////////////////////////////// +// 将主播剩余目标兑换成美元记录 +export function pageTeamExchangeTarget(params) { + return request({ + url: '/team/exchange/target/list', + method: 'get', + params + }) +} + +// 将主播剩余目标兑换成美元总额 +export function calculateExchangeUsdTotalAmount(params) { + return request({ + url: '/team/exchange/target/usd-total', + method: 'get', + params + }) +} diff --git a/src/api/app-user-salary-diamond-balance.js b/src/api/app-user-salary-diamond-balance.js new file mode 100644 index 0000000..c5bed95 --- /dev/null +++ b/src/api/app-user-salary-diamond-balance.js @@ -0,0 +1,56 @@ +import request from '@/utils/request' + +// 用户银行账户分页列表 +export function pageSalaryDiamond(params) { + return request({ + url: '/user-salary-diamond/page', + method: 'get', + params + }) +} + +// 用户银行流水列表 +export function pageRunningWater(params) { + return request({ + url: '/user-salary-diamond/running-water-page', + method: 'get', + params + }) +} + +// 发送用户银行现金 +export function sendSalaryDiamond(data) { + return request({ + url: '/user-salary-diamond/send', + method: 'post', + data + }) +} + +// 创建用户银行现金账户 +export function createSalaryDiamondBalance(data) { + return request({ + url: '/user-salary-diamond/create', + method: 'post', + data + }) +} + +// 扣除用户银行现金 +export function deductSalaryDiamond(data) { + return request({ + url: '/user-salary-diamond/deduct', + method: 'post', + data + }) +} + +// 转账用户银行现金 +export function transferSalaryDiamond(data) { + return request({ + url: '/user-salary-diamond/transfer', + method: 'post', + data + }) +} + diff --git a/src/api/app-user.js b/src/api/app-user.js new file mode 100644 index 0000000..a3a707c --- /dev/null +++ b/src/api/app-user.js @@ -0,0 +1,634 @@ +import request from '@/utils/request' +import { httpGetExport } from '@/utils/export-excel' + +// 获取用户认证信息 +export function getNotExpiredSubscriptionName(userId) { + return request({ + url: `/user/subscription/balance/${userId}/name`, + method: 'get' + }) +} + +// 获取用户认证信息 +export function getUserAuthType(userId) { + return request({ + url: `/user/auth/type/${userId}`, + method: 'get' + }) +} + +// 登录令牌查看 +export function getLoginToken(userId) { + return request({ + url: '/user/auth/type/longin/token', + method: 'get', + params: { userId } + }) +} + +// 删除登录令牌 +export function delLoginToken(userId) { + return request({ + url: '/user/auth/type/longin/token', + method: 'delete', + params: { userId } + }) +} + +// 获取用户糖果 +export function getUserCandyBalance(userId) { + return request({ + url: `/user/candy/balance/${userId}`, + method: 'get' + }) +} + +// 获取用户余额top表 +export function listUserCandyTop(params) { + return request({ + url: `/user/candy/balance/top`, + method: 'get', + params + }) +} + +// 获取用户游戏券 +export function getUserGameCouponBalance(userId) { + return request({ + url: `/user/game/coupon/balance/${userId}`, + method: 'get' + }) +} + +// 获取用户注册信息 +export function getUserRegister(userId) { + return request({ + url: `/user/register/info/${userId}`, + method: 'get' + }) +} + +// 获取用户正常照片墙 +export function getUserPhotoWallNormal(userId) { + return request({ + url: `/user/photo/wall/normal/${userId}`, + method: 'get' + }) +} + +// 获取用户所有照片墙 +export function getUserPhotoWallAll(userId) { + return request({ + url: `/user/photo/wall/all/${userId}`, + method: 'get' + }) +} + +// app用户列表 +export function getUserTable(data) { + return request({ + url: '/user/base/info/page', + method: 'post', + data + }) +} + +// 修改用户基本信息 +export function updateBaseInfo(data) { + return request({ + url: '/user/base/info', + method: 'put', + data + }) +} + +// 用户基本信息 +export function getUserBaseInfo(id) { + return request({ + url: `/user/base/info/${id}`, + method: 'get' + }) +} + +// 用户基本信息 +export function getUserBaseInfoByAccount(id) { + return request({ + url: `/user/base/info/account/${id}`, + method: 'get' + }) +} + +// 用户基本信息 +export function getUserBaseInfoBySysOriginAccount(sysOrigin, id) { + return request({ + url: `/user/base/info/${sysOrigin}/account/${id}`, + method: 'get' + }) +} + +// 所有照片墙 +export function getPotoWallTable(params) { + return request({ + url: '/user/photo/wall/page', + method: 'get', + params + }) +} + +// 删除照片墙 +export function deletePhotoWall(id) { + return request({ + url: `/user/photo/wall/del/${id}`, + method: 'get' + }) +} + +// 所有照片墙按条件筛选 +export function getPotoWallTableSeach(params) { + return request({ + url: '/user/photo/wall/page/all', + method: 'get', + params + }) +} + +// 修改用户等级 +export function updateLevelScore(data) { + return request({ + url: '/user/level/score', + method: 'post', + data + }) +} + +// 用户积分 +export function getUserLevel(id) { + return request({ + url: `/user/base/info/level/${id}`, + method: 'get' + }) +} + +// 在线女性用户分页列表 +export function getOnlineUserTable(params) { + return request({ + url: '/user/real/time/status/online/female/page', + method: 'get', + params + }) +} + +// 在线女性用户总数 +export function getOnlineTotal() { + return request({ + url: '/user/real/time/status/online/female/total', + method: 'get' + }) +} + +// 在线男性用户分页列表 +export function getOnlineMaleUserTable(params) { + return request({ + url: '/user/real/time/status/online/male/page', + method: 'get', + params + }) +} + +// 在线男性用户总数 +export function getOnlineMaleTotal() { + return request({ + url: '/user/real/time/status/online/male/total', + method: 'get' + }) +} + +// 获取男性用户等级 +export function getUserMaleLevel(id) { + return request({ + url: `/user/base/info/male/level/${id}`, + method: 'get' + }) +} + +// 修改男性用户等级 +export function updateMaleLevelScore(data) { + return request({ + url: '/user/male/level/score', + method: 'post', + data + }) +} + +// 修改ai用户基本信息 +export function updateVestBaseInfo(data) { + return request({ + url: '/user/base/info/vest', + method: 'put', + data + }) +} + +// 获取用户当前账号状态 +export function getAccountStatus(userId) { + return request({ + url: `/user/base/info/account/status/${userId}`, + method: 'get' + }) +} + +// 获取礼物墙 +export function getGiftWall(userId) { + return request({ + url: `/user/gift/wall/${userId}`, + method: 'get' + }) +} + +// 用户游戏券奖励 +export function rewardGameCoupon(userId, coupon, remarks, rewardType) { + return request({ + url: `/user/game/coupon/income/expenditure/reward/coupon`, + method: 'post', + params: { userId, coupon, remarks, rewardType } + }) +} + +// 用户游戏券扣除 +export function deductGameCoupon(userId, coupon, remarks) { + return request({ + url: `/user/game/coupon/income/expenditure/deduct/coupon`, + method: 'post', + params: { userId, coupon, remarks } + }) +} + +// 发送金币 +export function sendGold(data) { + return request({ + url: '/user-wallet/send-gold', + method: 'post', + data + }) +} + +// 用户金币扣除 +export function deductGold(data) { + return request({ + url: '/user-wallet/deduct-gold', + method: 'post', + data + }) +} +// 发送钻石 +export function sendDiamond(data) { + return request({ + url: '/user-wallet/send-diamond', + method: 'post', + data + }) +} + +// 用户钻石扣除 +export function deductDiamond(data) { + return request({ + url: '/user-wallet/deduct-diamond', + method: 'post', + data + }) +} + +// APP管理员分页列表 +export function getAdministratorTable(params) { + return request({ + url: '/sys/administrator/page', + method: 'get', + params + }) +} + +// 禁用/启用APP管理员 +export function changeStatusAdministrator(data) { + return request({ + url: '/sys/administrator', + method: 'put', + data + }) +} + +// 改变角色 +export function changeSysAdministratorRoles(params) { + return request({ + url: `/sys/administrator/change_roles/${params.id}/${params.roles}`, + method: 'get' + }) +} + +// APP权限列表 +export function getAdministratorAuthTable() { + return request({ + url: '/sys/administrator/auth/resource', + method: 'get' + }) +} + +export function deleteAdministratorAuth(id) { + return request({ + url: `/sys/administrator/auth/resource/delete/${id}`, + method: 'get' + }) +} + +export function updateAdministratorAuth(data) { + return request({ + url: '/sys/administrator/auth/resource', + method: 'put', + data + }) +} + +export function addAdministratorAuth(data) { + return request({ + url: '/sys/administrator/auth/resource', + method: 'post', + data + }) +} + +// 获取用户选中的权限信息 +export function getSysAdministratorAuthResourceByUserId(userId) { + return request({ + url: `/sys/administrator/auth/resource/select/${userId}`, + method: 'get' + }) +} + +// 修改权限 +export function deleteAndAddAdministratorAuth(data) { + return request({ + url: '/sys/administrator/auth', + method: 'put', + data + }) +} + +// 获取用户的设备信息 +export function getUserImei(id) { + return request({ + url: `/user/base/info/user/imei/${id}`, + method: 'get' + }) +} + +// 获取用户的最新设备信息 +export function getDeviceByUserId(userId) { + return request({ + url: `/user/base/info/device/${userId}`, + method: 'get' + }) +} + +// 用户最新设备列表 +export function getUserDeviceTable(params) { + return request({ + url: `/user/latest/mobile/device/page`, + method: 'get', + params + }) +} + +// 货运代理账户分页列表 +export function pageFreight(params) { + return request({ + url: '/freight/page', + method: 'get', + params + }) +} + +// 发货给代理账户 +export function shipFreight(data) { + return request({ + url: '/freight/ship', + method: 'post', + data + }) +} + +// 代理账户扣除货款 +export function deductionFreight(data) { + return request({ + url: '/freight/deduction', + method: 'post', + data + }) +} + +// 货运流水列表 +export function pageRunningWater(params) { + return request({ + url: '/freight/running-water-page', + method: 'get', + params + }) +} + +// 货运流水列表-导出 +export function exportFreightWaters(params, excelName) { + return httpGetExport('/freight/running-water/export', params, excelName) +} + +// 货运流水列表 +export function pageFreightSellerRunningWater(params) { + return request({ + url: '/freight/freight-seller-running-water-page', + method: 'get', + params + }) +} + +// 切换关闭账号状态 +export function switchStatusFreight(id, status) { + return request({ + url: `/freight/switch-status/${id}/${status}`, + method: 'post' + }) +} + +// 切换显示/不显示,在H5页面显示账号信息 +export function showStatusFreight(id, status) { + return request({ + url: `/freight/show-status/${id}/${status}`, + method: 'post' + }) +} + +// 是否经销商切换 +export function switchStatusDealer(id, status) { + return request({ + url: `/freight/switch-dealer-status/${id}/${status}`, + method: 'post' + }) +} + +// 经销商卖家列表 +export function pageFreightSeller(params) { + return request({ + url: '/freight-seller/page', + method: 'get', + params + }) +} + +// 修改经销商卖家数量 +export function updateSellerQuantity(data) { + return request({ + url: '/freight/update-seller-quantity', + method: 'post', + data + }) +} + +// 删除经销商卖家 +export function removeFreightSeller(id) { + return request({ + url: `/freight-seller/delete/${id}`, + method: 'delete' + }) +} + +// 获取指定用户运行资料 +export function getUserRunProfileById(userId) { + return request({ + url: `/user-run-profile/${userId}`, + method: 'get' + }) +} + +// 移除用户运行资料 +export function removeUserRunProfileById(userId) { + return request({ + url: `/user-run-profile/${userId}`, + method: 'delete' + }) +} + +// 获取扩展信息 +export function getUserExpend(userId) { + return request({ + url: '/user/expand', + method: 'get', + params: { userId } + }) +} + +// 获得认证详情 +export function getUserAuthTypeDetails(userId) { + return request({ + url: '/user/auth/type/details/' + userId, + method: 'get', + params: { userId } + }) +} + +// 修改绑定手机认证信息 +export function editUserMobileAuth(data) { + return request({ + url: '/user/auth/type/edit/mobile-auth', + method: 'post', + data + }) +} + +// 删除绑定手机认证信息 +export function deleteUserMobileAuth(userId) { + return request({ + url: '/user/auth/type/delete/mobile-auth/' + userId, + method: 'get' + }) +} + +// 重置用户账号密码登录信息 +export function initUserAccountLogin(userId) { + return request({ + url: '/user/auth/type/init/account-auth/' + userId, + method: 'get' + }) +} +// 删除用户账号密码登录信息 +export function deleteUserAccountLogin(userId) { + return request({ + url: '/user/auth/type/delete/account-auth/' + userId, + method: 'get' + }) +} + +// 重置用户支付密码 +export function initUserPayAuth(userId) { + return request({ + url: '/user/auth/type/init/pay-auth/' + userId, + method: 'get' + }) +} +// 删除用户支付密码 +export function deleteUserPayAuth(userId) { + return request({ + url: '/user/auth/type/delete/pay-auth/' + userId, + method: 'get' + }) +} +// 获取用户vip实际权益信息 +export function getUserVipEquity(userId) { + return request({ + url: '/user/base/info/user/vip/equity/' + userId, + method: 'get' + }) +} + +// 用户身份信息 +export function getUserIdentity(userId) { + return request({ + url: '/user/base/info/' + userId + '/identity', + method: 'get' + }) +} + +// 用户认证身份信息 +export function getUserBankIdentityInfo(params) { + return request({ + url: '/user/bank-identity-info/page', + method: 'get', + params + }) +} +// 用户认证身份信息审核 +export function auditUserBankIdentityInfo(data) { + return request({ + url: '/user/bank-identity-info', + method: 'put', + data + }) +} + +// 用户认证身份信息-导出 +export function exportUserBankIdentityInfo(params, excelName) { + return httpGetExport('/user/bank-identity-info/export', params, excelName) +} + +// 用户钻石流水列表 +export function pageUserDiamondRunWater(params) { + return request({ + url: '/user/diamond/run/water/page', + method: 'get', + params + }) +} + +// 用户钻石余额列表 +export function pageUserDiamondBalance(params) { + return request({ + url: '/user/diamond/balance/page', + method: 'get', + params + }) +} diff --git a/src/api/approval.js b/src/api/approval.js new file mode 100644 index 0000000..22e221f --- /dev/null +++ b/src/api/approval.js @@ -0,0 +1,293 @@ +/** + * 审批相关 + */ +import request from '@/utils/request' + +// 获取家族审批资料列表 +export function getFamilyApprovalPage(params) { + return request({ + url: '/family/approval/page', + method: 'get', + params + }) +} + +// 修改不通过审批的家族头像,公告,昵称 +export function notPassFamilyApproval(data) { + return request({ + url: `/family/approval/not-pass`, + method: 'post', + data + }) +} + +// 用户管理列表 +export function getUserVideoCensorApprvalTable(params) { + return request({ + url: '/sys/video/call/censor/approval/page', + method: 'get', + params + }) +} + +// 账号处理 +export function accountHandle(data) { + return request({ + url: '/user/data/violation/expand/approval/account', + method: 'post', + data + }) +} + +// 视频违规记录 +export function getVideoCallCensorApproval(params) { + return request({ + url: '/sys/video/call/censor/approval/page', + method: 'get', + params + }) +} + +// 审批违规审批图片 +export function approvalVideoCallCensor(data) { + return request({ + url: '/sys/video/call/censor/approval', + method: 'post', + data + }) +} + +// 获取用户审批资料列表 +export function getUserApprovalData(params) { + return request({ + url: '/user/data/violation/expand', + method: 'get', + params + }) +} + +// 用户资料审批 +export function approvalUserInfo(data) { + return request({ + url: '/user/data/violation/expand/approval', + method: 'post', + data + }) +} + +// 获取违规照片墙信息 +export function getViolationLatestPhotowall(userId) { + return request({ + url: `/user/data/violation/latest/photo/wall/${userId}`, + method: 'get' + }) +} + +// 审批违规历史记录列表 +export function pageViolationHistory(params) { + return request({ + url: '/approval/history/page', + method: 'get', + params + }) +} + +// 用户积分详情列表 +export function pageUserIntegralOrigin(params) { + return request({ + url: '/user/integral/origin/page', + method: 'get', + params + }) +} + +// 用户积分流水列表 +export function pageUserIntegralOriginStream(params) { + return request({ + url: '/user/integral/origin/stream/page', + method: 'get', + params + }) +} + +// 用户积分历史流水列表 +export function pageUserIntegralOriginHistoryStream(params) { + return request({ + url: '/user/integral/origin/history/stream/page', + method: 'get', + params + }) +} + +// 用户积分兑换账单列表 +export function pageTeamBillingIntegralRecord(params) { + return request({ + url: '/team/billing/integral/record/page', + method: 'get', + params + }) +} + +// 用户账户审核历史记录 +export function getUserStatusLogTable(params) { + return request({ + url: '/approval/user/account/status/log/page', + method: 'get', + params + }) +} + +// 最近审批列表 +export function getUserStatusLogLatestList(params) { + return request({ + url: '/approval/user/account/status/log/latest', + method: 'get', + params + }) +} + +// 用户积分详情列表导出 +export function integralExport(params) { + return request({ + url: '/user/integral/origin/excel', + method: 'get', + responseType: 'blob', + params + }) +} + +// 用户积分兑换记录导出 +export function integralRecodeExport(params) { + return request({ + url: '/team/billing/integral/record/excel', + method: 'get', + responseType: 'blob', + params + }) +} + +// 用户签到日志 +export function pageUserCheckLog(params) { + return request({ + url: '/user/check/inLog', + method: 'get', + params + }) +} + +// 照片墙审批-通过 +export function approvalPhotoWallPass(data) { + return request({ + url: '/approval/photo/wall/pass', + method: 'post', + data + }) +} + +// 照片墙审批-不通过 +export function approvalPhotoWallNotPass(data) { + return request({ + url: '/approval/photo/wall/not/pass', + method: 'post', + data + }) +} + +// 举报审批-通过 +export function approvalReportedPass(data) { + return request({ + url: '/approval/reported/pass', + method: 'post', + data + }) +} + +// 举报审批-不通过 +export function approvalReportedNotPass(data) { + return request({ + url: '/approval/reported/not/pass', + method: 'post', + data + }) +} + +// 房间资料审批信息分页列表 +export function pageRoomApproval(params) { + return request({ + url: '/room/profile-manager/approval/page', + method: 'get', + params + }) +} + +// 审批违规资料 +export function approvalData(data) { + return request({ + url: '/data/approval', + method: 'post', + data + }) +} + +// 用户个性签名审批列表 +export function pageUserProfileDescApproval(params) { + return request({ + url: '/data/approval/user-profile-desc/page', + method: 'get', + params + }) +} + +// 用户头像昵称审批列表 +export function pageUserProfileApproval(params) { + return request({ + url: '/data/approval/user-profile/page', + method: 'get', + params + }) +} + +// 房间主题审批信息分页列表 +export function pageRoomThemeApproval(params) { + return request({ + url: '/room/user/theme/page', + method: 'get', + params + }) +} + +// 审批房间主题 +export function themeApprove(data) { + return request({ + url: '/room/user/theme/approve', + method: 'post', + data + }) +} + +// 用户银行卡列表 +export function pageUserBankCard(params) { + return request({ + url: '/user/bank-card/page', + method: 'get', + params + }) +} + +// 用户银行卡审核通过 +export function userBankCardPass(data) { + return request({ + url: '/user/bank-card/pass', + method: 'post', + data + }) +} + +// 用户银行卡审核驳回 +export function userBankCardNotPass(data) { + return request({ + url: '/user/bank-card/not-pass', + method: 'post', + data + }) +} diff --git a/src/api/badge.js b/src/api/badge.js new file mode 100644 index 0000000..8a63d14 --- /dev/null +++ b/src/api/badge.js @@ -0,0 +1,103 @@ + +import request from '@/utils/request' + +// 徽章规则列表 +export function badgeTable(params) { + return request({ + url: '/sys/badge/config', + method: 'get', + params + }) +} + +// 修改徽章规则信息 +export function updateBadge(data) { + return request({ + url: '/sys/badge/config', + method: 'put', + data + }) +} + +// 删除徽章规则信息 +export function deleteBadge(id) { + return request({ + url: `/sys/badge/config/delete/${id}`, + method: 'get' + }) +} + +// 新增徽章规则信息 +export function addBadge(data) { + return request({ + url: '/sys/badge/config', + method: 'post', + data + }) +} + +// 徽章赠送 - 非成就徽章 +export function giveBadgeTable(params) { + return request({ + url: '/sys/badge/config/getGiveBadgePage', + method: 'get', + params + }) +} + +// 发送管理员徽章 +export function giveBadge(badgeId, userId) { + return request({ + url: `/sys/badge/config/give/badge/${badgeId}/${userId}`, + method: 'get' + }) +} + +// 收回管理员徽章 +export function retrieveBadge(badgeId, userId) { + return request({ + url: `/sys/badge/config/retrieve/badge/${badgeId}/${userId}`, + method: 'get' + }) +} + +/** + * 获取活动徽章列表. + */ +export function listBadgeByType(type) { + return request({ + url: '/sys/badge/config/list/badge-by-type', + method: 'get', + params: { type } + }) +} + +/** + * 添加或修改资源. + */ +export function saveOrUpdateBadgePicture(data) { + return request({ + url: '/sys/badge/picture/config/add-or-update', + method: 'post', + data + }) +} + +/** + * 获取平台徽章信息. + */ +export function listBadgePictureBySysOrigin(sysOrigin, type) { + return request({ + url: '/sys/badge/config/sys-origin', + method: 'post', + params: { sysOrigin, type } + }) +} + +// 查询用户非成就徽章 +export function listUserNotAchieveBadge(userId) { + return request({ + url: '/user/badge/backpack/not-achieve/' + userId, + method: 'get' + }) +} diff --git a/src/api/banner.js b/src/api/banner.js new file mode 100644 index 0000000..cc385b4 --- /dev/null +++ b/src/api/banner.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// banner列表 +export function bannerTable(params) { + return request({ + url: '/sys/banner/config', + method: 'get', + params + }) +} + +// 修改banner信息 +export function updateBanner(data) { + return request({ + url: '/sys/banner/config', + method: 'put', + data + }) +} + +// 删除banner信息 +export function deleteBanner(id, sysOrigin) { + return request({ + url: `/sys/banner/config/${id}/${sysOrigin}`, + method: 'delete' + }) +} + +// 新增banner信息 +export function addBanner(data) { + return request({ + url: '/sys/banner/config', + method: 'post', + data + }) +} + diff --git a/src/api/bean.js b/src/api/bean.js new file mode 100644 index 0000000..a93f07c --- /dev/null +++ b/src/api/bean.js @@ -0,0 +1,28 @@ +import request from '@/utils/request' + +// 用户豆子余额列表 +export function pageUserBeanBalance(params) { + return request({ + url: '/user-bean-balance/page', + method: 'get', + params + }) +} + +// 用户豆子流水列表 +export function pageUserBeanRunningWater(params) { + return request({ + url: '/user-bean-balance/running-water/page', + method: 'get', + params + }) +} + +// 添加或扣除豆子 +export function addOrSubtract(data) { + return request({ + url: '/user-bean-balance/add-or-subtract/beans', + method: 'post', + data + }) +} diff --git a/src/api/cp-cabin.js b/src/api/cp-cabin.js new file mode 100644 index 0000000..e047720 --- /dev/null +++ b/src/api/cp-cabin.js @@ -0,0 +1,54 @@ + +import request from '@/utils/request' + +// cpCabin列表 +export function cpCabinTable(params) { + return request({ + url: '/sys/cp-cabin/config', + method: 'get', + params + }) +} + +// 修改cpCabin信息 +export function updateCpCabin(data) { + return request({ + url: '/sys/cp-cabin/config', + method: 'put', + data + }) +} + +// 删除cpCabin信息 +export function deleteCpCabin(id) { + return request({ + url: `/sys/cp-cabin/config/${id}`, + method: 'delete' + }) +} + +// 新增cpCabin信息 +export function addCpCabin(data) { + return request({ + url: '/sys/cp-cabin/config', + method: 'post', + data + }) +} +// cp告白信息 +export function userConfessionRecordPage(params) { + return request({ + url: '/user/confession/record/page', + method: 'get', + params + }) +} +// cp告白审核 +export function auditUserConfession(data) { + return request({ + url: '/user/confession/record', + method: 'put', + data + }) +} + diff --git a/src/api/datav.js b/src/api/datav.js new file mode 100644 index 0000000..b24e79c --- /dev/null +++ b/src/api/datav.js @@ -0,0 +1,30 @@ + +import request from '@/utils/request' + +// 活跃用户分布国家 +export function latestActiveUserCountryCode(params) { + return request({ + url: '/datav/active/user-country-code', + method: 'get', + params + }) +} + +// 活跃用户分布国家 +export function onlineUserCount(params) { + return request({ + url: '/datav/online/user/count', + method: 'get', + params + }) +} + +// TimChat在线房间数 +export function onlineRoomCount(params) { + return request({ + url: '/datav/online/room/count', + method: 'get', + params + }) +} + diff --git a/src/api/dictionary.js b/src/api/dictionary.js new file mode 100644 index 0000000..2ff46ba --- /dev/null +++ b/src/api/dictionary.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// 字典列表 +export function pageDictionary(params) { + return request({ + url: '/sys/dictionary/page', + method: 'get', + params + }) +} + +// 修改字典主题信息 +export function updateSysDictionary(data) { + return request({ + url: '/sys/dictionary', + method: 'put', + data + }) +} + +// 删除字典信息 +export function deleteSysDictionary(id) { + return request({ + url: `/sys/dictionary/${id}`, + method: 'delete' + }) +} + +// 添加字典信息 +export function addSysDictionary(data) { + return request({ + url: '/sys/dictionary', + method: 'post', + data + }) +} + diff --git a/src/api/dynamic.js b/src/api/dynamic.js new file mode 100644 index 0000000..e6d74d1 --- /dev/null +++ b/src/api/dynamic.js @@ -0,0 +1,143 @@ +// 动态 +import request from '@/utils/request' + +// 黑名单列表 +export function blacklistTable(params) { + return request({ + url: '/dynamic/blacklist/page', + method: 'get', + params + }) +} + +// 新增黑名单 +export function addBlacklist(data) { + return request({ + url: '/dynamic/blacklist/add', + method: 'post', + data + }) +} + +// 删除黑名单 +export function deleteBlacklist(userId) { + return request({ + url: '/dynamic/blacklist/delete/' + userId, + method: 'get' + }) +} + +// Tag列表 +export function tagTable(params) { + return request({ + url: '/dynamic/tag/page', + method: 'get', + params + }) +} + +// 修改或新增Tag信息 +export function addOrUpdate(data) { + return request({ + url: '/dynamic/tag/add-or-update', + method: 'post', + data + }) +} + +// 投诉动态列表 +export function reportTable(params) { + return request({ + url: '/dynamic/report/page', + method: 'get', + params + }) +} + +// 设置置顶 +export function setUpTop(data) { + return request({ + url: '/user/dynamic/setUpTop', + method: 'post', + data + }) +} + +// 取消置顶 +export function closeTop(dynamicId) { + return request({ + url: '/user/dynamic/closeTop/' + dynamicId, + method: 'get' + }) +} + +// 处理投诉 +export function report(data) { + return request({ + url: '/dynamic/report', + method: 'post', + data + }) +} + +// 动态内容 +export function getContentTable(params) { + return request({ + url: '/approval/dynamic/content/page', + method: 'get', + params + }) +} + +// 动态内容审批-通过 +export function approvalContentPass(data) { + return request({ + url: '/approval/dynamic/content/pass', + method: 'post', + data + }) +} + +// 动态内容审批-不通过 +export function approvalContentNotPass(data) { + return request({ + url: '/approval/dynamic/content/not/pass', + method: 'post', + data + }) +} + +// 热门权重配置 +export function getPopularConfig() { + return request({ + url: '/dynamic/popular/config', + method: 'get' + }) +} + +// 热门权重配置 +export function savePopularConfig(data) { + return request({ + url: '/dynamic/popular/config', + method: 'post', + data + }) +} + +// 用户动态列表 +export function userDynamicTable(params) { + return request({ + url: '/user/dynamic/page', + method: 'get', + params + }) +} + +// 删除用户动态 +export function deleteUserDynamic(data) { + return request({ + url: '/user/dynamic/delete', + method: 'post', + data + }) +} diff --git a/src/api/family.js b/src/api/family.js new file mode 100644 index 0000000..811346a --- /dev/null +++ b/src/api/family.js @@ -0,0 +1,89 @@ +import request from '@/utils/request' + +// 家族成员列表 +export function pageFamilyMember(params) { + return request({ + url: '/family/member/page', + method: 'get', + params + }) +} + +// 家族列表 +export function pageFamily(params) { + return request({ + url: '/family/page', + method: 'get', + params + }) +} + +// 家族等级列表 +export function pageLevel(params) { + return request({ + url: '/family/level/config/page', + method: 'get', + params + }) +} + +// 修改或新增家族等级 +export function addOrUpdateLevel(data) { + return request({ + url: `/family/level/config/add-or-update`, + method: 'post', + data + }) +} + +// 家族等级配置list +export function pageCreateRule(params) { + return request({ + url: '/family/create/rule/page', + method: 'get', + params + }) +} + +// 修改家族等级配置 +export function addOrUpdateCreateRule(data) { + return request({ + url: '/family/create/rule/add-or-update', + method: 'post', + data + }) +} + +// 家族每周奖励配置列表 +export function pageFamilyRewardRule(params) { + return request({ + url: '/family/reward/rule/page', + method: 'get', + params + }) +} + +// 修改家族每周奖励配置 +export function addOrUpdateFamilyRewardRule(data) { + return request({ + url: '/family/reward/rule/add-or-update', + method: 'post', + data + }) +} + +// 解散家族 +export function delFamily(familyId) { + return request({ + url: `/family/del/${familyId}`, + method: 'get' + }) +} + +// 移出家族成员 +export function removeFamilyMember(familyId, memberId) { + return request({ + url: `/family/member/del/${familyId}/${memberId}`, + method: 'get' + }) +} diff --git a/src/api/game-coupon.js b/src/api/game-coupon.js new file mode 100644 index 0000000..a36d0f9 --- /dev/null +++ b/src/api/game-coupon.js @@ -0,0 +1,18 @@ +import request from '@/utils/request' + +// 游戏券收支详情流水 +export function getGameCouponRunningWaterDetailsTable(params) { + return request({ + url: '/user/game/coupon/income/expenditure/details/page', + method: 'get', + params + }) +} + +// 来源 +export function originList(params) { + return request({ + url: '/user/game/coupon/income/expenditure/origin/list', + method: 'get' + }) +} diff --git a/src/api/game-fruit-task-config.js b/src/api/game-fruit-task-config.js new file mode 100644 index 0000000..abf4787 --- /dev/null +++ b/src/api/game-fruit-task-config.js @@ -0,0 +1,62 @@ + +import request from '@/utils/request' + +// 赏金任务配置 +export function getGameFruitBountyConfigTable(params) { + return request({ + url: '/game/fruit/bounty-config', + method: 'get', + params + }) +} + +// 新增/修改赏金任务配置 +export function addOrUpdateGameFruitBountyConfig(data) { + return request({ + url: '/game/fruit/bounty-config', + method: 'post', + data + }) +} + +// 删除赏金任务配置信息 +export function deleteGameFruitBountyConfig(id) { + return request({ + url: `/game/fruit/bounty-config/${id}`, + method: 'delete' + }) +} + +// 任务配置 +export function getGameFruitTaskConfig(params) { + return request({ + url: '/game/fruit/task-config', + method: 'get', + params + }) +} + +// 新增/修改任务配置 +export function addGameFruitTaskConfig(data) { + return request({ + url: '/game/fruit/task-config', + method: 'post', + data + }) +} + +// 删除任务配置信息 +export function deleteGameFruitTaskConfig(id) { + return request({ + url: `/game/fruit/task-config/${id}`, + method: 'delete' + }) +} + +// 获取游戏奖项图片信息 +export function getGameFruitImages(sysOrigin) { + return request({ + url: `/game/fruit/images/${sysOrigin}`, + method: 'get' + }) +} diff --git a/src/api/game-lucky-box-config.js b/src/api/game-lucky-box-config.js new file mode 100644 index 0000000..f4ed5d5 --- /dev/null +++ b/src/api/game-lucky-box-config.js @@ -0,0 +1,222 @@ + +import request from '@/utils/request' + +// 获取LuckyBox抽奖记录 +export function pageLuckyBoxGameRecord(params) { + return request({ + url: '/game/lucky-box/page/record', + method: 'get', + params + }) +} + +// 根据条件获取LuckyBox抽奖统计信息 +export function countLuckyBoxGame(params) { + return request({ + url: '/game/lucky-box/count', + method: 'get', + params + }) +} + +// 获取幸运值规则配置 +export function getLuckyBoxFortuneConfig(params) { + return request({ + url: '/game/lucky-box/fortune-config', + method: 'get', + params + }) +} + +// 新增/修改幸运值规则配置 +export function addLuckyBoxFortuneConfig(data) { + return request({ + url: '/game/lucky-box/fortune-config', + method: 'post', + data + }) +} + +// 赏金任务配置 +export function getBountyConfigTable(params) { + return request({ + url: '/game/lucky-box/bounty-config', + method: 'get', + params + }) +} + +// 新增/修改赏金任务配置 +export function addOrUpdateBountyConfig(data) { + return request({ + url: '/game/lucky-box/bounty-config', + method: 'post', + data + }) +} + +// 删除赏金任务配置信息 +export function deleteBountyConfig(id) { + return request({ + url: `/game/lucky-box/bounty-config/${id}`, + method: 'delete' + }) +} + +// 获取赏金任务配置详情 +export function getBountyDetialsConfigTable(params) { + return request({ + url: '/game/lucky-box/bounty-details-config', + method: 'get', + params + }) +} + +// 新增/修改赏金任务配置详情. +export function addOrUpdateBountyDetialsConfig(data) { + return request({ + url: '/game/lucky-box/bounty-details-config', + method: 'post', + data + }) +} + +// 删除赏金任务配置详情信息 +export function deleteBountyDetailsConfig(id) { + return request({ + url: `/game/lucky-box/bounty-details-config/${id}`, + method: 'delete' + }) +} + +// 累计抽奖奖励配置列表. +export function getAwardConfig(params) { + return request({ + url: '/game/lucky-box/award-config', + method: 'get', + params + }) +} + +// 新增/修改累计抽奖奖励配置. +export function addGameLuckyBoxAwardConfig(data) { + return request({ + url: '/game/lucky-box/award-config', + method: 'post', + data + }) +} + +// 删除累计抽奖奖励配置 +export function deleteAwardConfig(id) { + return request({ + url: `/game/lucky-box/award-config/${id}`, + method: 'delete' + }) +} + +// 获取累计抽奖奖励配置详情 +export function getGameLuckyBoxAwardDetailsConfig(params) { + return request({ + url: '/game/lucky-box/award-details-config', + method: 'get', + params + }) +} + +// 新增/修改累计抽奖奖励配置详情. +export function addGameLuckyBoxAwardDetailsConfig(data) { + return request({ + url: '/game/lucky-box/award-details-config', + method: 'post', + data + }) +} + +// 删除赏金任务配置详情信息 +export function deleteAwardDetailsConfig(id) { + return request({ + url: `/game/lucky-box/award-details-config/${id}`, + method: 'delete' + }) +} + +// 获取抽奖规格配置信息. +export function getStandardConfig(params) { + return request({ + url: '/game/lucky-box/standard-config', + method: 'get', + params + }) +} + +// 新增/修改抽奖规格配置信息. +export function addStandardConfig(data) { + return request({ + url: '/game/lucky-box/standard-config', + method: 'post', + data + }) +} + +// 切换抽奖规格状态 +export function switchStatus(id, status) { + return request({ + url: `/game/lucky-box/switch_status/${id}/${status}`, + method: 'post' + }) +} + +// 删除抽奖规格配置 +export function deleteStandardConfig(id) { + return request({ + url: `/game/lucky-box/standard-config/${id}`, + method: 'delete' + }) +} + +// 获取抽奖礼物配置 +export function getGameLuckyBoxGiftConfig(params) { + return request({ + url: '/game/lucky-box/gift-config', + method: 'get', + params + }) +} + +// 新增/修改抽奖礼物配置 +export function addOrUpdateGiftConfig(data) { + return request({ + url: '/game/lucky-box/gift-config', + method: 'post', + data + }) +} + +// 获取luckyBox礼物规格配置Map +export function mapLuckyBoxGiftMap(params) { + return request({ + url: '/game/lucky-box/map/gift', + method: 'get', + params + }) +} + +// 获取抽奖规格配置详情 +export function getGameLuckyBoxStandardDetailsConfig(params) { + return request({ + url: '/game/lucky-box/standard-details-config', + method: 'get', + params + }) +} + +// 新增/修改抽奖规格配置详情. +export function addGameLuckyBoxStandardDetailsConfig(data) { + return request({ + url: '/game/lucky-box/standard-details-config', + method: 'post', + data + }) +} + diff --git a/src/api/game-lucky-gift-config.js b/src/api/game-lucky-gift-config.js new file mode 100644 index 0000000..5e342e5 --- /dev/null +++ b/src/api/game-lucky-gift-config.js @@ -0,0 +1,98 @@ + +import request from '@/utils/request' + +// 获取幸运礼物规则配置 +export function getLuckyGiftRuleConfig(params) { + return request({ + url: '/game/lucky-gift/rule-config', + method: 'get', + params + }) +} + +// 新增/修改幸运礼物规则配置 +export function addLuckyGiftRuleConfig(data) { + return request({ + url: '/game/lucky-gift/rule-config', + method: 'post', + data + }) +} + +// 幸运礼物规格列表 +export function standardConfigTable(params) { + return request({ + url: '/game/lucky-gift/standard-config', + method: 'get', + params + }) +} + +// 新增/修改幸运礼物规格配置 +export function addOrUpdateStandardConfig(data) { + return request({ + url: '/game/lucky-gift/standard-config', + method: 'post', + data + }) +} + +// 删除幸运礼物规格信息 +export function deleteStandardConfig(id) { + return request({ + url: `/game/lucky-gift/standard-config/${id}`, + method: 'delete' + }) +} + +// 获取幸运礼物规格配置Map +export function mapLuckyGiftStandard(sysOrigin) { + return request({ + url: '/game/lucky-gift/map/probability?sysOrigin=' + sysOrigin, + method: 'get' + }) +} + +// 新增/修改幸运礼物规格概率配置 +export function addOrUpdateProbabilityConfig(data) { + return request({ + url: '/game/lucky-gift/probability-config', + method: 'post', + data + }) +} +// 获取幸运礼物规格概率以及详情配置信息 +export function gameLuckyGiftProbabilityInfoConfig(params) { + return request({ + url: '/game/lucky-gift/probability-info-config', + method: 'get', + params + }) +} + +// 新增/修改礼物规格概率基础配置和详情配置. +export function addLuckyGiftProbabilityInfoConfig(data) { + return request({ + url: '/game/lucky-gift/probability-info-config', + method: 'post', + data + }) +} + +// 获取幸运礼物送礼记录 +export function pageLuckyGiftGameRecord(params) { + return request({ + url: '/game/lucky-gift/page/game/record', + method: 'get', + params + }) +} + +// 根据条件获取幸运礼物统计信息 +export function countLuckyGiftGame(params) { + return request({ + url: '/game/lucky-gift/count', + method: 'get', + params + }) +} diff --git a/src/api/game-song-config.js b/src/api/game-song-config.js new file mode 100644 index 0000000..19dfab6 --- /dev/null +++ b/src/api/game-song-config.js @@ -0,0 +1,47 @@ + +import request from '@/utils/request' + +// 歌曲列表 +export function songTable(params) { + return request({ + url: '/game-ktv/config', + method: 'get', + params + }) +} + +// 修改歌曲信息 +export function updateSong(data) { + return request({ + url: '/game-ktv/config', + method: 'put', + data + }) +} + +// 切换歌曲上下架状态 +export function switchShelfStatus(id, status) { + return request({ + url: `/game-ktv/config/switch/${id}/${status}`, + method: 'put' + }) +} + +// 新增歌曲信息 +export function addSong(data) { + return request({ + url: '/game-ktv/config', + method: 'post', + data + }) +} + +// 删除歌曲信息 +export function deleteSong(data) { + return request({ + url: `/game-ktv/config/delete`, + method: 'put', + data + }) +} + diff --git a/src/api/game-song-count.js b/src/api/game-song-count.js new file mode 100644 index 0000000..afc1f5a --- /dev/null +++ b/src/api/game-song-count.js @@ -0,0 +1,21 @@ + +import request from '@/utils/request' + +// ktv热门歌曲列表 +export function hotSongCount(params) { + return request({ + url: '/game-ktv-hot-song', + method: 'get', + params + }) +} + +// ktv点歌记录列表 +export function userSongCount(params) { + return request({ + url: '/game-ktv-user-song', + method: 'get', + params + }) +} + diff --git a/src/api/game-song-gift.js b/src/api/game-song-gift.js new file mode 100644 index 0000000..8d24ef5 --- /dev/null +++ b/src/api/game-song-gift.js @@ -0,0 +1,47 @@ + +import request from '@/utils/request' + +// ktv礼物列表 +export function songGiftTable(params) { + return request({ + url: '/game-ktv-gift-config', + method: 'get', + params + }) +} + +// 修改ktv礼物信息 +export function updateSongGift(data) { + return request({ + url: '/game-ktv-gift-config', + method: 'put', + data + }) +} + +// 新增ktv礼物信息 +export function addSongGift(data) { + return request({ + url: '/game-ktv-gift-config', + method: 'post', + data + }) +} + +// 删除ktv礼物信息 +export function deleteSongGift(id) { + return request({ + url: `/game-ktv-gift-config/delete/${id}`, + method: 'put' + }) +} + +// 查询ktv礼物和表情包信息 +export function listGiftOrEmoji(params) { + return request({ + url: '/game-ktv-gift-config/list', + method: 'get', + params + }) +} + diff --git a/src/api/game.js b/src/api/game.js new file mode 100644 index 0000000..c5381ce --- /dev/null +++ b/src/api/game.js @@ -0,0 +1,424 @@ + +import request from '@/utils/request' + +// /////////////////////////////////////////////////////// 2种水果游戏 /////////////////////////////////////////////////////////// +// 水果游戏记录 50s +export function pageFruitMachine(params) { + return request({ + url: '/game/fruit/machine/page', + method: 'get', + params + }) +} + +// 水果游戏用户记录 50s +export function pageFruitMachineUserBet(params) { + return request({ + url: '/game/fruit/machine/user/page', + method: 'get', + params + }) +} + +// /////////////////////////////////////////////////////// lucky box 游戏 /////////////////////////////////////////////////////////// +// lucky box 抽奖列表. +export function listGameLuckyBox(params) { + return request({ + url: '/game/lucky/box/list', + method: 'get', + params + }) +} + +// 获得系统盈亏数量. +export function getProfitLossAmount(params) { + return request({ + url: '/game/lucky/box/profit-loss', + method: 'get', + params + }) +} + +// 奖金池. +export function getPrizePoolAmount(sysOrigin) { + return request({ + url: '/game/lucky/box/prize-pool', + method: 'get', + params: { sysOrigin } + }) +} + +// 幸运奖金池. +export function getLuckyPrizePoolAmount(sysOrigin) { + return request({ + url: '/game/lucky/box/lucky-prize-pool', + method: 'get', + params: { sysOrigin } + }) +} + +// 获取设置抽成比率-幸运. +export function getLuckyDrawRatio(sysOrigin) { + return request({ + url: '/game/lucky/box/lucky-draw-ratio', + method: 'get', + params: { sysOrigin } + }) +} + +// 设置抽成比率-幸运. +export function setLuckyDrawRatio(sysOrigin, ratio) { + return request({ + url: '/game/lucky/box/lucky-draw-ratio', + method: 'post', + params: { sysOrigin, ratio } + }) +} + +// 获取设置抽成比率-投入奖金. +export function getPoolPutRatio(sysOrigin) { + return request({ + url: '/game/lucky/box/pool-put-ratio', + method: 'get', + params: { sysOrigin } + }) +} + +// 设置抽成比率-投入奖金. +export function setPoolPutRatio(sysOrigin, ratio) { + return request({ + url: '/game/lucky/box/pool-put-ratio', + method: 'post', + params: { sysOrigin, ratio } + }) +} + +// /////////////////////////////////////////////////////// 砸金蛋游戏 /////////////////////////////////////////////////////////// +// 碎片兑换记录 +export function pageEggExchangeRecord(params) { + return request({ + url: '/game/egg/exchange/page', + method: 'get', + params + }) +} + +// 抽奖记录 +export function pageEggLotteryRecord(params) { + return request({ + url: '/game/egg/lottery/record/page', + method: 'get', + params + }) +} + +// 配置信息-获取 +export function getEggConfig(params) { + return request({ + url: '/game/egg/config', + method: 'get', + params + }) +} + +// 配置信息-编辑 +export function updateEggConfig(data) { + return request({ + url: '/game/egg/config', + method: 'post', + data + }) +} + +// 配置信息-编辑 +export function resetEggConsumeStockQuantity(id) { + return request({ + url: '/game/egg/config/reset-consume-stock', + method: 'get', + params: { id } + }) +} + +// 抽取概率-获取 +export function getEggExtractRatio(sysOrigin) { + return request({ + url: '/game/egg/config/extract-pool', + method: 'get', + params: { sysOrigin } + }) +} + +// 抽取概率-编辑 +export function setEggExtractRatio(sysOrigin, ratio) { + return request({ + url: '/game/egg/config/set-extract-pool', + method: 'get', + params: { sysOrigin, ratio } + }) +} + +// 抽取概率-编辑 +export function getEggPrizePool(sysOrigin) { + return request({ + url: '/game/egg/config/prize-pool', + method: 'get', + params: { sysOrigin } + }) +} + +// /////////////////////////////////////////////////////// 抽奖游戏 /////////////////////////////////////////////////////////// +// 抽奖奖励配置-分页 +export function pageGameLotteryGroup(params) { + return request({ + url: '/game/lottery/reward/group/page', + method: 'get', + params + }) +} + +// 抽奖奖励配置-修改/添加 +export function saveOrUpdateGameLotteryGroup(data) { + return request({ + url: '/game/lottery/reward/group/save_or_update', + method: 'post', + data + }) +} + +// 抽奖奖励配置-上下架 +export function offGameLotteryGroup(id, offShelf) { + return request({ + url: `/game/lottery/reward/group/off/shelf/${id}/${offShelf}`, + method: 'get' + }) +} + +// /////////////////////////////////////////////////////// 果游戏 /////////////////////////////////////////////////////////// + +// 双层糖果总额By条件 +export function totalDoubleLayerFruitUserBet(params) { + return request({ + url: '/game/double/layer/fruit/total', + method: 'get', + params + }) +} +// /////////////////////////////////////////////////////// Ludo飞行棋游戏 /////////////////////////////////////////////////////////// + +// 飞行棋游戏-列表 +export function flowLudoGame(params) { + return request({ + url: '/game-ludo/flow', + method: 'get', + params + }) +} + +// 飞行棋游戏-解散 +export function dismissLudoGame(roomId) { + return request({ + url: '/game-ludo/dismiss', + method: 'get', + params: { roomId } + }) +} + +// /////////////////////////////////////////////////////// 炸金花游戏 /////////////////////////////////////////////////////////// + +// 游戏记录分页列表-炸金花 +export function pageTableTeenPatti(params) { + return request({ + url: '/game/teen-patti/page', + method: 'get', + params + }) +} + +// 游戏记录分页列表,用户押注-炸金花 +export function pageTableUserBetTeenPatti(params) { + return request({ + url: '/game/teen-patti/user-bet/page', + method: 'get', + params + }) +} + +// 收支情况-炸金花 +export function getIncomeAndExpenditureTeenPatti(params) { + return request({ + url: '/game/teen-patti/total', + method: 'get', + params + }) +} + +// 配置信息-炸金花 +export function getConfigTeenPatti() { + return request({ + url: '/game/teen-patti/config', + method: 'get' + }) +} + +// 配置信息,修改-炸金花 +export function updateConfigTeenPatti(data) { + return request({ + url: '/game/teen-patti/config', + method: 'post', + data + }) +} + +// 奖金池余额-炸金花 +export function getBonusAmountBalanceTeenPatti() { + return request({ + url: '/game/teen-patti/bonus-balance', + method: 'get' + }) +} + +// /////////////////////////////////////////////////////// 喇叭 /////////////////////////////////////////////////////////// + +// 获得前50个喇叭列表. +export function listTrumpet(params) { + return request({ + url: '/game/trumpet/list', + method: 'get', + params + }) +} + +// 根根据id删除喇叭. +export function deleteTrumpet(id) { + return request({ + url: `/game/trumpet/delete/${id}`, + method: 'get' + }) +} + +// 黑名单列表 +export function trumpetBlacklistTable(params) { + return request({ + url: '/game-trumpet-blacklist/page', + method: 'get', + params + }) +} + +// 新增黑名单 +export function addTrumpetBlacklist(data) { + return request({ + url: '/game-trumpet-blacklist/add', + method: 'post', + data + }) +} + +// 删除黑名单 +export function deleteTrumpetBlacklist(userId) { + return request({ + url: '/game-trumpet-blacklist/delete/' + userId, + method: 'get' + }) +} + +// /////////////////////////////////////////////////////// PK记录 ///////////////////////////// +// 房间PK列表. +export function listRoomPk(params) { + return request({ + url: '/game/pk/list-room-pk', + method: 'get', + params + }) +} + +// 团队PK列表. +export function listTeamPk(params) { + return request({ + url: '/game/pk/list-team-pk', + method: 'get', + params + }) +} + +// /////////////////////////////////////////////////////// 摩天轮游戏 ///////////////////////////// +// 游戏奖项. +export function prizeList(params) { + return request({ + url: '/game/fruit/config/list/prize', + method: 'get', + params + }) +} + +// 编辑游戏奖项. +export function updatePrize(data) { + return request({ + url: '/game/fruit/config/update/prize', + method: 'post', + data + }) +} + +// 新增游戏奖项. +export function addPrize(data) { + return request({ + url: '/game/fruit/config/add/prize', + method: 'post', + data + }) +} + +// 编辑游戏规则配置. +export function updateGameFruitRule(data) { + return request({ + url: '/game/fruit/config/update/rule', + method: 'post', + data + }) +} + +// 新增游戏规则配置. +export function addGameFruitRule(data) { + return request({ + url: '/game/fruit/config/add/rule', + method: 'post', + data + }) +} + +// 查询游戏规则配置. +export function getGameFruitRule(params) { + return request({ + url: '/game/fruit/config/get/rule', + method: 'get', + params + }) +} + +// 查询游戏历史记录. +export function getGameFruitDaysRecord(params) { + return request({ + url: '/game/fruit/history/pageGameFruitDaysRecord', + method: 'get', + params + }) +} + +// 查询游戏下注记录. +export function pageUserBetRecord(params) { + return request({ + url: '/game/fruit/history/pageUserBetRecord', + method: 'get', + params + }) +} + +// 查询用户每日记录. +export function pageDaysUserData(params) { + return request({ + url: '/game/fruit/history/pageDaysUserData', + method: 'get', + params + }) +} diff --git a/src/api/gift-pack.js b/src/api/gift-pack.js new file mode 100644 index 0000000..859dea9 --- /dev/null +++ b/src/api/gift-pack.js @@ -0,0 +1,87 @@ + +import request from '@/utils/request' + +// 礼包列表 +export function giftPackTable(params) { + return request({ + url: '/sys/gift/pack', + method: 'get', + params + }) +} + +// 修改礼包信息 +export function updateGiftPack(data) { + return request({ + url: '/sys/gift/pack', + method: 'put', + data + }) +} + +// 删除礼包信息 +export function deleteGiftPack(id) { + return request({ + url: `/sys/gift/pack/delete/${id}`, + method: 'get' + }) +} + +// 新增礼包信息 +export function addGiftPack(data) { + return request({ + url: '/sys/gift/pack', + method: 'post', + data + }) +} + +// 获取礼包详情 +export function getGiftPackInfo(giftPackId) { + return request({ + url: `/sys/gift/pack/config/${giftPackId}`, + method: 'get' + }) +} + +// 礼包配置 +export function giftPackConfig(data) { + return request({ + url: '/sys/gift/pack/config', + method: 'post', + data + }) +} + +// 新增礼包配置 +export function addGiftPackConfig(data) { + return request({ + url: '/sys/gift/pack/config/add', + method: 'post', + data + }) +} + +// 获取礼包赠送金币 +export function getGiftPackGold(giftPackId) { + return request({ + url: `/sys/gift/pack/config/gold/${giftPackId}`, + method: 'get' + }) +} + +export function getGiftPackConfigInfo(params) { + return request({ + url: '/sys/gift/pack/config/info', + method: 'get', + params + }) +} + +export function getGiftPackGrade() { + return request({ + url: '/sys/product/config/pack/grade', + method: 'get' + }) +} + diff --git a/src/api/gift.js b/src/api/gift.js new file mode 100644 index 0000000..fae996d --- /dev/null +++ b/src/api/gift.js @@ -0,0 +1,106 @@ + +import request from '@/utils/request' + +// 根据条件获得礼物列表 +export function listByTab(sysOrigin, giftTab) { + return request({ + url: `/sys/gift/config/listByTab/${sysOrigin}/${giftTab}`, + method: 'get' + }) +} + +// 礼物列表 +export function giftTable(params) { + return request({ + url: '/sys/gift/config', + method: 'get', + params + }) +} + +// 修改礼物信息 +export function updateGift(data) { + return request({ + url: '/sys/gift/config', + method: 'put', + data + }) +} + +// 切换礼物上下架状态 +export function switchDelStatus(id, status) { + return request({ + url: `/sys/gift/config/switch/${id}/${status}`, + method: 'get' + }) +} + +// 新增礼物信息 +export function addGift(data) { + return request({ + url: '/sys/gift/config', + method: 'post', + data + }) +} + +// 获取指定平台礼物 +export function listGiftBySysOrigin(sysOrigin) { + return request({ + url: `/sys/gift/config/sys-origin/${sysOrigin}`, + method: 'get' + }) +} + +// 礼物赠送列表 +export function listGiftGiveAwayRunningWater(params) { + return request({ + url: '/running-water-log/gift-give', + method: 'get', + params + }) +} + +// 用户房间赠送流水 +export function listUserRoomGiftGiveAwayRunningWater(params) { + return request({ + url: '/running-water-log/gift-give-room', + method: 'get', + params + }) +} + +// 礼物赠送列表-总价值 +export function countGiftAmount(params) { + return request({ + url: '/running-water-log/total-count', + method: 'get', + params + }) +} + +// 礼物赠送列表-接收礼物数量 +export function countGiftAcceptQuantity(params) { + return request({ + url: '/running-water-log/accept-gift-quantity', + method: 'get', + params + }) +} + +// 获取赠送Cp组合礼物ID +export function getPairCpGiveGiftId(sysOrigin) { + return request({ + url: `/sys/gift/config/pair/cp/give/gift/${sysOrigin}`, + method: 'get' + }) +} + +// 保存赠送Cp组合礼物ID +export function pushPairCpGiveGiftId(giftId, sysOrigin) { + return request({ + url: `/sys/gift/config/pair/cp/give/gift/${giftId}/${sysOrigin}`, + method: 'get' + }) +} + diff --git a/src/api/im-account.js b/src/api/im-account.js new file mode 100644 index 0000000..18a1cf6 --- /dev/null +++ b/src/api/im-account.js @@ -0,0 +1,37 @@ +import request from '@/utils/request' + +// 系统im账号分页列表 +export function pageSysImAccount(params) { + return request({ + url: '/sys/im/account/page', + method: 'get', + params + }) +} + +// 添加im账号 +export function addSysImAccount(data) { + return request({ + url: '/sys/im/account', + method: 'post', + data + }) +} + +// 重置密码 +export function resetSysImAccountPassword(params) { + return request({ + url: '/sys/im/account/reset', + method: 'put', + params + }) +} + +// 删除 +export function delSysImAccountPassword(params) { + return request({ + url: '/sys/im/account', + method: 'delete', + params + }) +} diff --git a/src/api/invite-reward.js b/src/api/invite-reward.js new file mode 100644 index 0000000..ed37ecb --- /dev/null +++ b/src/api/invite-reward.js @@ -0,0 +1,13 @@ +/** + * 用户邀请奖励相关操作 + */ +import request from '@/utils/request' + +// 用户管理列表 +export function getUserInviteRewardRecord(params) { + return request({ + url: '/invite/user/reward/page', + method: 'get', + params + }) +} diff --git a/src/api/menu-manager.js b/src/api/menu-manager.js new file mode 100644 index 0000000..c9634fc --- /dev/null +++ b/src/api/menu-manager.js @@ -0,0 +1,4 @@ +/** + * 菜单管理相关操作 + */ +import request from '@/utils/request' diff --git a/src/api/message.js b/src/api/message.js new file mode 100644 index 0000000..ecf464c --- /dev/null +++ b/src/api/message.js @@ -0,0 +1,88 @@ + +import request from '@/utils/request' + +// 新建push +export function newPush(data) { + return request({ + url: '/push', + method: 'post', + data + }) +} + +// push文案库 +export function messageCopywritingPage(params) { + return request({ + url: '/message/copywriting/page', + method: 'get', + params + }) +} + +// 定时推送消息列表 +export function pushTaskPage(params) { + return request({ + url: '/push/task/page', + method: 'get', + params + }) +} + +// 保存定时推送任务 +export function savePushTask(data) { + return request({ + url: '/push/task/save', + method: 'post', + data + }) +} + +// 删除推送任务 +export function deletePushTask(id) { + return request({ + url: '/push/task/delete/' + id, + method: 'get' + }) +} + +// push日志 +export function pushLogTable(params) { + return request({ + url: '/push/page', + method: 'get', + params + }) +} + +// 添加push文案 +export function addMessageCopywriting(data) { + return request({ + url: '/message/copywriting', + method: 'post', + data + }) +} + +// 删除push文案 +export function removeMessageCopywriting(id) { + return request({ + url: `/message/copywriting/${id}`, + method: 'delete' + }) +} + +// 已录入文案 +export function getPushTextHistory(id) { + return request({ + url: `/sys/push/text/content/${id}`, + method: 'get' + }) +} + +// 消息同步 +export function synchronPushText() { + return request({ + url: '/sys/push/text/content/synchronize', + method: 'get' + }) +} diff --git a/src/api/mike-type.js b/src/api/mike-type.js new file mode 100644 index 0000000..500b5e5 --- /dev/null +++ b/src/api/mike-type.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// mikeType列表 +export function mikeTypeTable(params) { + return request({ + url: '/sys/mike-type/config', + method: 'get', + params + }) +} + +// 修改mikeType信息 +export function updateMikeType(data) { + return request({ + url: '/sys/mike-type/config', + method: 'put', + data + }) +} + +// 删除mikeType信息 +export function deleteMikeType(id) { + return request({ + url: `/sys/mike-type/config/delete/${id}`, + method: 'delete' + }) +} + +// 新增mikeType信息 +export function addMikeType(data) { + return request({ + url: '/sys/mike-type/config', + method: 'post', + data + }) +} + diff --git a/src/api/notice-message.js b/src/api/notice-message.js new file mode 100644 index 0000000..34babf4 --- /dev/null +++ b/src/api/notice-message.js @@ -0,0 +1,53 @@ + +import request from '@/utils/request' + +// 系统公告通知消息列表 +export function noticeMessageTable(params) { + return request({ + url: '/sys/notice/message', + method: 'get', + params + }) +} + +// 修改系统公告通知消息信息 +export function updateNoticeMessage(data) { + return request({ + url: '/sys/notice/message', + method: 'put', + data + }) +} + +// 删除系统公告通知消息信息 +export function deleteNoticeMessage(id) { + return request({ + url: `/sys/notice/message/${id}`, + method: 'delete' + }) +} + +// 新增系统公告通知消息信息 +export function addNoticeMessage(data) { + return request({ + url: '/sys/notice/message', + method: 'post', + data + }) +} + +// 发布系统公告 +export function changeAnnouncementStatus(id) { + return request({ + url: `/sys/notice/message/announcement/${id}`, + method: 'get' + }) +} + +// 上下架系统公告 +export function changeShelfStatus(id, offShelf) { + return request({ + url: `/sys/notice/message/off/shelf/${id}/${offShelf}`, + method: 'get' + }) +} diff --git a/src/api/number.js b/src/api/number.js new file mode 100644 index 0000000..83521cd --- /dev/null +++ b/src/api/number.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// 靓号列表 +export function numberTable(params) { + return request({ + url: '/user/beautiful/number', + method: 'get', + params + }) +} + +// 修改靓号信息 +export function updateNumber(data) { + return request({ + url: '/user/beautiful/number', + method: 'put', + data + }) +} + +// 删除靓号信息 +export function deleteNumber(id) { + return request({ + url: `/user/beautiful/number/delete/${id}`, + method: 'get' + }) +} + +// 新增靓号信息 +export function addNumber(data) { + return request({ + url: '/user/beautiful/number', + method: 'post', + data + }) +} + diff --git a/src/api/ops-system.js b/src/api/ops-system.js new file mode 100644 index 0000000..8ef0646 --- /dev/null +++ b/src/api/ops-system.js @@ -0,0 +1,297 @@ +import request from '@/utils/request' + +/** + * 获取登录令牌. + */ +export function login(data) { + return request({ + url: '/account/login', + method: 'post', + data + }) +} + +/** + * 退出登录. + */ +export function logout() { + return request({ + url: '/logout', + method: 'post' + }) +} + +/** + * 获取当前登录用户信息. + */ +export function getInfo() { + return request({ + url: '/account/info', + method: 'get' + }) +} + +// 获取账号菜单 +export function getAccountMenus() { + return request({ + url: '/account/menus', + method: 'get' + }) +} + +// 获取按钮权限 +export function getButtonPermissions() { + return request({ + url: '/account/buttons/aliases', + method: 'get' + }) +} + +// ///////////////////////////////// 用户管理 //////////////////////////////////// +// 用户管理列表 +export function pageUsers(params) { + return request({ + url: '/users', + method: 'get', + params + }) +} + +// 修改用户状态 +export function switchUserStatus(id, status) { + return request({ + url: '/users/update/status', + method: 'put', + data: { id, status } + }) +} + +// 重置密码 +export function restPassword(id) { + return request({ + url: '/users/reset/password', + method: 'put', + params: { id } + }) +} + +// 角色管理列表 +export function pageRoleTable(params) { + return request({ + url: '/roles', + method: 'get', + params + }) +} + +// 添加角色 +export function addRole(data) { + return request({ + url: '/roles', + method: 'post', + data + }) +} + +// 修改角色 +export function updateRole(data) { + return request({ + url: '/roles/update', + method: 'put', + data + }) +} + +// 删除角色 +export function delRole(id) { + return request({ + url: '/roles/remove', + method: 'delete', + params: { id } + }) +} + +// 角色列表 +export function getRoles() { + return request({ + url: '/roles/list', + method: 'get' + }) +} + +// 添加用户 +export function addUser(data) { + return request({ + url: '/users', + method: 'post', + data + }) +} + +// 修改用户 +export function updateUser(data) { + return request({ + url: '/users/update', + method: 'put', + data + }) +} + +// ///////////////////////////////// 资源信息 //////////////////////////////////// + +// 获取可授权资源 +export function getResources() { + return request({ + url: '/resources/list', + method: 'get' + }) +} + +// 资源管理列表 +export function pageResources(params) { + return request({ + url: '/resources', + method: 'get', + params + }) +} + +// 刷新资源列表 +export function resetResources() { + return request({ + url: '/resources', + method: 'PUT' + }) +} + +// 角色设置权限菜单 +export function updateRoleMenus(data) { + return request({ + url: '/roles/update/menus', + method: 'put', + data + }) +} + +// 重置密码 +export function resetPassword(data) { + return request({ + url: '/account/password', + method: 'put', + data + }) +} + +// ///////////////////////////////// dashboard //////////////////////////////////// +/** + * 获取dashboard. + */ +export function getDashboard() { + return request({ + url: '/dashboard', + method: 'get' + }) +} + +/** + * 添加预览 dashboard 信息. + */ +export function addDashboardPreviews(data) { + return request({ + url: '/dashboard/previews', + method: 'post', + data, + messageAlert: false + }) +} + +/** + * 移除预览 dashboard 信息. + */ +export function removeDashboardPreviews(id) { + return request({ + url: '/dashboard/previews', + method: 'delete', + params: { id } + }) +} + +/** + * 添加自定义 dashboard 信息. + */ +export function addDashboardCustom(data) { + return request({ + url: '/dashboard/custom', + method: 'post', + data + }) +} + +/** + * 移除自定义 dashboard 信息. + */ +export function removeDashboardCustom(id) { + return request({ + url: '/dashboard/custom', + method: 'delete', + params: { id } + }) +} + +/** + * 修改主题. + */ +export function updateTheme(theme) { + return request({ + url: '/dashboard/theme', + method: 'post', + params: { theme } + }) +} + +// ///////////////////////////////// 菜单 //////////////////////////////////// + +// 用户管理列表 +export function allMenus() { + return request({ + url: '/menus', + method: 'get' + }) +} + +// 添加菜单 +export function addMenu(data) { + return request({ + url: '/menus/create', + method: 'post', + data + }) +} + +// 获取菜单 +export function getMenu(id) { + return request({ + url: '/menus/get', + method: 'get', + params: { id } + }) +} + +// 修改菜单 +export function updateMenu(data) { + return request({ + url: '/menus/update', + method: 'put', + data + }) +} + +// 删除菜单 +export function delMenu(id) { + return request({ + url: '/menus/remove', + method: 'delete', + params: { id } + }) +} + diff --git a/src/api/oss.js b/src/api/oss.js new file mode 100644 index 0000000..0b7007f --- /dev/null +++ b/src/api/oss.js @@ -0,0 +1,70 @@ + +import OSS from 'ali-oss' +import request from '@/utils/request' +import { uuid } from '@/utils' + +/** + * 随机创建文件名称. + */ +const radmonFilename = (filename) => { + const suffix = filename ? filename.substring(filename.lastIndexOf('.')) : '' + return `manager-${uuid()}${suffix}` +} + +/** + * 获取url. + */ +const getAccessImgUrl = (key) => { + if (!key) { + return '' + } + if (key.startsWith('/')) { + return `${process.env.VUE_APP_OSS_URL}${key}` + } + return `${process.env.VUE_APP_OSS_URL}/${key}` +} + +/** + * 简单上传 + * @param {*} fileObj 文件对象 + */ +const simpleUploadFlie = (fileObj, dir) => { + return new Promise((resolve, reject) => { + request({ + url: '/ali-yun/oss/sts', + method: 'get' + }).then(res => { + const stsResult = res.body + if (stsResult) { + const client = new OSS({ + endpoint: 'oss-accelerate.aliyuncs.com', + accessKeyId: stsResult['AccessKeyId'], + accessKeySecret: stsResult['AccessKeySecret'], + stsToken: stsResult['SecurityToken'], + bucket: process.env.VUE_APP_OSS_BUCKET + }) + try { + const filename = fileObj.customFilename || radmonFilename(fileObj.file.name) + client.put(`${dir || 'other'}/${filename}`, fileObj.file).then(ossRes => { + resolve(ossRes) + }).catch(er => { + console.error('error:', er) + reject(er) + }) + } catch (er) { + console.error('error:', er) + reject(er) + } + } + }).catch(er => { + console.error(er) + reject(er) + }) + }) +} + +export { + radmonFilename, + simpleUploadFlie, + getAccessImgUrl +} diff --git a/src/api/pet.js b/src/api/pet.js new file mode 100644 index 0000000..c075e0e --- /dev/null +++ b/src/api/pet.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// 宠物配置分页列表 +export function pagePetPool(params) { + return request({ + url: '/pet_pool/page', + method: 'get', + params + }) +} + +// 添加宠物信息 +export function addPet(data) { + return request({ + url: '/pet_pool/add', + method: 'post', + data + }) +} + +// 上下架 +export function offShelf(id, status) { + return request({ + url: '/pet_pool/off_shelf', + method: 'get', + params: { id, status } + }) +} + +// 宠物喂养记录 +export function pagePetFeeding(params) { + return request({ + url: '/pet_pool/feeding/page', + method: 'get', + params + }) +} diff --git a/src/api/product.js b/src/api/product.js new file mode 100644 index 0000000..7630275 --- /dev/null +++ b/src/api/product.js @@ -0,0 +1,181 @@ + +import request from '@/utils/request' + +// 内购产品配置列表 +export function getProductConfigList(params) { + return request({ + url: '/sys/product/config/list', + method: 'get', + params + }) +} + +// 内购产品礼包配置列表 +export function getProductConfigPackList(params) { + return request({ + url: '/sys/product/config/pack/list', + method: 'get', + params + }) +} + +// 获取商品包名信息 +export function listConfigPackageByCnfId(productCnfId) { + return request({ + url: '/sys/product/config/config_package', + method: 'get', + params: { productCnfId } + }) +} + +// 添加/修改包名 +export function addOrUpdatePackageBatch(data) { + return request({ + url: '/sys/product/config/add-or-update/package', + method: 'post', + data + }) +} + +// 内购产品配置信息 +export function getProductConfigInfo(id) { + return request({ + url: `/sys/product/config/${id}`, + method: 'get' + }) +} + +// 添加内购产品配置信息 +export function addBatchProductConfigInfo(data) { + return request({ + url: '/sys/product/config', + method: 'post', + data + }) +} + +// 修改内购产品配置信息 +export function updateProductConfigInfo(data) { + return request({ + url: '/sys/product/config', + method: 'put', + data + }) +} + +// 删除内购产品配置信息 +export function delProductConfig(data) { + return request({ + url: '/sys/product/config/del', + method: 'delete', + data + }) +} + +// 同步删除内购产品配置信息 +export function delByProductId(sysOrigin, productId) { + return request({ + url: `/sys/product/config/delete/${sysOrigin}/${productId}`, + method: 'delete' + }) +} + +// 推荐商品 +export function singleRecommend(params) { + return request({ + url: '/sys/product/config/single/recommend', + method: 'post', + params + }) +} + +// 推荐商品,同步所有平台 +export function syncAllRecommend(params) { + return request({ + url: '/sys/product/config/sync/all/recommend', + method: 'post', + params + }) +} + +// 取消推荐 +export function cancelRecommend(params) { + return request({ + url: '/sys/product/config/cancel/recommend', + method: 'delete', + params + }) +} + +// 修改排序 +export function updateSort(data) { + return request({ + url: '/sys/product/config/sort', + method: 'post', + data + }) +} + +// 获得金币产品列表 +export function listFirstChargeRewards(sysOrigin) { + return request({ + url: `/sys/product/config/list_candy_group/${sysOrigin}`, + method: 'get' + }) +} + +// -----------------------产品池配置----------------------- + +// 产品池列表 +export function listProductPool(params) { + return request({ + url: '/sys/product/pool', + method: 'get', + params + }) +} + +// 添加指定产品信息到池子 +export function addProductPool(data) { + return request({ + url: '/sys/product/pool', + method: 'post', + data + }) +} + +// 删除产品池中指定信息 +export function delProductPool(productId) { + return request({ + url: `/sys/product/pool/${productId}`, + method: 'delete' + }) +} + +// ///////////////////////////// V2 //////////////////////////////////////// +// 内购产品配置列表 +export function listProduct(params) { + return request({ + url: '/sys/product/config/list', + method: 'get', + params + }) +} + +// 添加内购产品配置 +export function addProduct(data) { + return request({ + url: '/sys/product/config', + method: 'post', + data + }) +} + +// 修改内购产品配置 +export function updateProduct(data) { + return request({ + url: '/sys/product/config', + method: 'put', + data + }) +} diff --git a/src/api/props.js b/src/api/props.js new file mode 100644 index 0000000..e45b5eb --- /dev/null +++ b/src/api/props.js @@ -0,0 +1,151 @@ + +import request from '@/utils/request' + +// 道具资源-分页列表 +export function pagePropsSource(params) { + return request({ + url: '/props/source/record/page', + method: 'get', + params + }) +} + +// 道具资源-添加 +export function addPropsSource(data) { + return request({ + url: '/props/source/record/add', + method: 'post', + data + }) +} + +// 道具资源-修改 +export function updatePropsSource(data) { + return request({ + url: '/props/source/record/update', + method: 'post', + data + }) +} + +// 道具资源-上下架 +export function offShelfPropsSource(id, offShelf) { + return request({ + url: `/props/source/record/off/shelf`, + method: 'get', + params: { id, offShelf } + }) +} + +// 获取资源列表-平台+类型获取 +export function listSysOriginTypeList(sysOrigin, type) { + return request({ + url: '/props/source/record/sys-origin/type/list', + method: 'get', + params: { sysOrigin, type } + }) +} + +// 获取资源列表-类型获取-排除家族资源-根据平台 +export function listNotFamilyBySysOriginType(sysOrigin, type) { + return request({ + url: '/props/source/record/sys-origin/type/list/exclude-family', + method: 'get', + params: { sysOrigin, type } + }) +} + +// 活动道具奖励配置-分页 +export function pagePropsActivityRewardGroup(params) { + return request({ + url: '/props/activity/reward/group/page', + method: 'get', + params + }) +} + +// 根据资源组ID获得活动道具奖励配置 +export function getByGroupId(id) { + return request({ + url: '/props/activity/reward/group/' + id, + method: 'get' + }) +} + +// 活动道具奖励配置-修改/添加 +export function saveOrUpdatePropsActivityRewardGroup(data) { + return request({ + url: '/props/activity/reward/group/save-or-update', + method: 'post', + data + }) +} + +// 活动道具奖励配置-上下架 +export function offPropsActivityRewardGroup(id, offShelf) { + return request({ + url: `/props/activity/reward/group/off/shelf/${id}/${offShelf}`, + method: 'get' + }) +} + +// 活动道具规则-分页 +export function pagePropsActivityRuleConfig(params) { + return request({ + url: '/props/activity/rule/config/page', + method: 'get', + params + }) +} + +// 活动道具规则-添加或修改 +export function savePropsActivityRuleConfig(data) { + return request({ + url: '/props/activity/rule/config/save-or-update', + method: 'post', + data + }) +} + +// 活动道具规则-删除 +export function delPropsActivityRuleConfig(id) { + return request({ + url: `/props/activity/rule/config/del/${id}`, + method: 'get' + }) +} + +// 上架中的活动道具组 +export function getGroupActivityList() { + return request({ + url: `/props/activity/reward/group/get/activity/list`, + method: 'get' + }) +} + +// 赠送道具给用户 +export function sendPropsGiveUser(data) { + return request({ + url: '/props/give/send', + method: 'post', + data + }) +} + +// 道具商店-分页 +export function pagePropsStore(params) { + return request({ + url: '/props/store/page', + method: 'get', + params + }) +} + +// 道具商店-添加或修改 +export function addOrUpdatePropsStore(data) { + return request({ + url: '/props/store/add-or-update', + method: 'post', + data + }) +} diff --git a/src/api/purchase.js b/src/api/purchase.js new file mode 100644 index 0000000..65ee86e --- /dev/null +++ b/src/api/purchase.js @@ -0,0 +1,142 @@ + +import request from '@/utils/request' +import { httpGetExport } from '@/utils/export-excel' + +// 今日内购总额 +export function purchaseTodayTotal(params) { + return request({ + url: '/order/purchase/history/purchase/today/total', + method: 'get', + params + }) +} + +// 今日内购总额 +export function purchaseTodayTotalBySysOrigin(sysOrigin) { + return request({ + url: `/order/purchase/history/${sysOrigin}/purchase/today/total`, + method: 'get' + }) +} + +// 金币收支流水 +export function listGoldRunningWater(params) { + return request({ + url: '/user-wallet/gold/running-water/list', + method: 'get', + params + }) +} + +// 金币收支流水cls +export function getClsGoldRunningWater(params) { + return request({ + url: '/user-wallet/gold/running-water/cls', + method: 'get', + params + }) +} + +// 用户购买总额 +export function getBuyTotalByUserId(userId) { + return request({ + url: `/order/purchase/history/buy/total/${userId}`, + method: 'get' + }) +} + +// 购买记录 +export function getPurchaseTable(params) { + return request({ + url: '/order/purchase/history/page', + method: 'get', + params + }) +} + +// 购买消耗类型列表 - 导出 +export function exportPurchaseConsumeTable(params, excelName) { + return httpGetExport('/order/purchase/history/consume/export', params, excelName) +} + +// 内购订单详情 +export function getInAppPurchase(id) { + return request({ + url: '/order/in-app-purchase/details', + method: 'get', + params: { id } + }) +} + +// 内购订单详情- list +export function listInAppPurchase(params) { + return request({ + url: '/order/in-app-purchase/details/list', + method: 'get', + params + }) +} + +// 获取异常订单日志列表 +export function getOrderAbnormalPage(params) { + return request({ + url: '/order/abnormal/log/page', + method: 'get', + params + }) +} + +// 获取异常订单日志,凭证 +export function getOrderAbnormalCertificate(id) { + return request({ + url: '/order/abnormal/log/certificate', + method: 'get', + params: { id } + }) +} + +// 修改异常订单日志,装态 +export function updateOrderAbnormalStatus(params) { + return request({ + url: '/order/abnormal/log/status', + method: 'put', + params + }) +} + +// 订单补偿 +export function orderPurchaseHistoryCompensate(data) { + return request({ + url: '/order/purchase/history/compensate', + method: 'post', + data + }) +} + +// 补偿糖果 +export function compensateCandy(params) { + return request({ + url: '/order/purchase/history/compensate/candy', + method: 'post', + params + }) +} + +// 其他支付订单分页 +export function orderOtherRechargePage(params) { + return request({ + url: '/order/other-recharge/page', + method: 'get', + params + }) +} + +// 处理订单信息-添加 +export function orderOtherRechargeProcess(data) { + return request({ + url: '/order/other-recharge/process', + method: 'post', + data + }) +} + diff --git a/src/api/recommend.js b/src/api/recommend.js new file mode 100644 index 0000000..b03a655 --- /dev/null +++ b/src/api/recommend.js @@ -0,0 +1,46 @@ + +import request from '@/utils/request' + +// 推荐人列表 +export function recommendTable(params) { + return request({ + url: '/cacoo/recommend', + method: 'get', + params + }) +} + +// 删除推荐人信息 +export function deleteRecommend(userId) { + return request({ + url: `/cacoo/recommend/delete/${userId}`, + method: 'get' + }) +} + +// 新增推荐人 +export function addRecommend(data) { + return request({ + url: '/cacoo/recommend', + method: 'post', + data + }) +} + +// 获取归属系统 +export function getRecommendAttribution(userId) { + return request({ + url: `/cacoo/recommend/sysOrigin/${userId}`, + method: 'get' + }) +} + +// 修改归属系统 +export function deleteAndAddRecommendAttribution(data) { + return request({ + url: '/cacoo/recommend', + method: 'put', + data + }) +} + diff --git a/src/api/red-packet-invite-user.js b/src/api/red-packet-invite-user.js new file mode 100644 index 0000000..ccb1deb --- /dev/null +++ b/src/api/red-packet-invite-user.js @@ -0,0 +1,97 @@ +import request from '@/utils/request' + +// 邀请新用户-目标中转账户-分页. +export function pageTargetTransitBalance(params) { + return request({ + url: '/user/invite-new/target/transit/balance/page', + method: 'get', + params + }) +} + +// 邀请新用户-兑换目标. +export function reduceTarget(data) { + return request({ + url: '/user/invite-new/target/transit/reduce', + method: 'post', + data + }) +} + +// 邀请新用户-美元中转账户-分页. +export function pageWithdrawTransitBalance(params) { + return request({ + url: '/user/invite-new/withdraw/transit/balance/page', + method: 'get', + params + }) +} + +// 邀请新用户-红包抽奖记录-分页. +export function pageRedPacketDrawLog(params) { + return request({ + url: '/user/invite-new/red/packet/draw/log/page', + method: 'get', + params + }) +} + +// 邀请新用户-助力记录-分页. +export function pageRedPacketHelpLog(params) { + return request({ + url: '/user/invite-new/red/packet/help/log/page', + method: 'get', + params + }) +} + +// 邀请新用户-红包记录-分页. +export function pageRedPacket(params) { + return request({ + url: '/user/invite-new/red/packet/log/page', + method: 'get', + params + }) +} + +// 邀请新用户-转盘奖项列表. +export function listCarouselAwards(sysOrigin) { + return request({ + url: '/user/invite-new/red/packet/carousel/awards/list?sysOrigin=' + sysOrigin, + method: 'get' + }) +} + +// 邀请新用户-转盘奖项-保存. +export function saveCarouselAwards(data) { + return request({ + url: '/user/invite-new/red/packet/carousel/awards/save', + method: 'post', + data + }) +} + +// 邀请新用户-删除转盘奖项. +export function deleteCarouselAwards(id) { + return request({ + url: '/user/invite-new/red/packet/carousel/awards/delete?id=' + id, + method: 'get' + }) +} + +// 邀请新用户-删除转盘奖项. +export function getConfigBySysOrigin(sysOrigin) { + return request({ + url: '/user/invite-new/red/packet/config?sysOrigin=' + sysOrigin, + method: 'get' + }) +} + +// 邀请新用户-配置-保存. +export function saveConfig(data) { + return request({ + url: '/user/invite-new/red/packet/config/save', + method: 'post', + data + }) +} diff --git a/src/api/room-anchor.js b/src/api/room-anchor.js new file mode 100644 index 0000000..412efa3 --- /dev/null +++ b/src/api/room-anchor.js @@ -0,0 +1,116 @@ +import request from '@/utils/request' + +// BD列表 +export function pageRoomBDInfo(params) { + return request({ + url: '/team/bd/page', + method: 'get', + params + }) +} +// BD代理列表 +export function pageRoomTeamBDInfo(params) { + return request({ + url: '/team/bd/member/page', + method: 'get', + params + }) +} + +// 删除BD +export function deleteBD(id) { + return request({ + url: '/team/bd/del', + method: 'get', + params: { id } + }) +} + +// 删除BD中的代理成员 +export function deleteBDMember(id) { + return request({ + url: '/team/bd/member/del', + method: 'get', + params: { id } + }) +} + +// 添加BD +export function addBD(data) { + return request({ + url: '/team/bd/add', + method: 'post', + data + }) +} + +// 修改BD +export function updateBD(data) { + return request({ + url: '/team/bd/update', + method: 'post', + data + }) +} + +// 根据bdID获得bd信息 +export function getBdById(id) { + return request({ + url: '/bd/' + id, + method: 'get' + }) +} + +// BD Lead 列表 +export function pageBdLead(params) { + return request({ + url: '/team/bd/leader/page', + method: 'get', + params + }) +} + +// 删除BD Lead +export function deleteBdLead(id) { + return request({ + url: '/team/bd/leader/del', + method: 'get', + params: { id } + }) +} + +// 添加BD Lead +export function addBdLead(data) { + return request({ + url: '/team/bd/leader/add', + method: 'post', + data + }) +} + +// 编辑BD Lead +export function updateBDLead(data) { + return request({ + url: '/team/bd/leader/update', + method: 'post', + data + }) +} + +// BD Lead添加子级BD +export function leadBindBd(data) { + return request({ + url: '/team/bd/leader/bind/bd', + method: 'post', + data + }) +} + +// BD工作统计 +export function pageWorkStatistics(params) { + return request({ + url: '/team/bd/work/statistics', + method: 'get', + params + }) +} diff --git a/src/api/room-theme.js b/src/api/room-theme.js new file mode 100644 index 0000000..32cba04 --- /dev/null +++ b/src/api/room-theme.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// 主题列表 +export function themeTable(params) { + return request({ + url: '/room/theme/list', + method: 'get', + params + }) +} + +// 新增房间主题信息 +export function addRoomTheme(data) { + return request({ + url: '/room/theme', + method: 'post', + data + }) +} + +// 修改房间主题信息 +export function updateRoomTheme(data) { + return request({ + url: '/room/theme', + method: 'put', + data + }) +} + +// 删除主题信息 +export function deleteRoomTheme(id) { + return request({ + url: `/room/theme/${id}`, + method: 'delete' + }) +} + diff --git a/src/api/room-voice.js b/src/api/room-voice.js new file mode 100644 index 0000000..7fbcfb7 --- /dev/null +++ b/src/api/room-voice.js @@ -0,0 +1,19 @@ +import request from '@/utils/request' + +// 实时房间 +export function onlineRoom(params) { + return request({ + url: '/room/profile-manager/online', + method: 'get', + params + }) +} + +// 在线房间成员 +export function flowMember(params) { + return request({ + url: '/room/profile-manager/online/member', + method: 'get', + params + }) +} diff --git a/src/api/room.js b/src/api/room.js new file mode 100644 index 0000000..e244aea --- /dev/null +++ b/src/api/room.js @@ -0,0 +1,128 @@ + +import request from '@/utils/request' + +// 房间基本信息 +export function getRoomProfileByRoomId(roomId) { + return request({ + url: '/room-profile-manager', + method: 'get', + params: { roomId } + }) +} + +// 房间基本详细信息 +export function getRoomProfileDetailsByRoomId(roomId) { + return request({ + url: '/room/profile-manager/details', + method: 'get', + params: { roomId } + }) +} + +// 房间基本信息 +export function getRoomProfileBySysOriginAccount(sysOrigin, account) { + return request({ + url: '/room/profile-manager/account/by-account', + method: 'get', + params: { sysOrigin, account } + }) +} + +// 房间基本信息 +export function listRoomProfileByAccount(account) { + return request({ + url: '/room/profile-manager/account/list/by-account', + method: 'get', + params: { account } + }) +} + +// 房间贡献余额列表 +export function contributionBalanceTable(params) { + return request({ + url: '/room/contribution/balance/page', + method: 'get', + params + }) +} + +// 查询时间段内的房间贡献余额列表 +export function roomTimeContributionBalanceTable(params) { + return request({ + url: '/room/contribution/balance/time/page', + method: 'get', + params + }) +} + +// 房间资料列表 +export function pofileTable(params) { + return request({ + url: '/room/profile-manager/flow', + method: 'get', + params + }) +} + +// 修改房间资料信息 +export function updateProfile(data) { + return request({ + url: '/room/profile-manager/update-profile', + method: 'post', + data + }) +} + +// 房间用户信息 +export function getRoomUserInfo(params) { + return request({ + url: `/room/member/page`, + method: 'get', + params + }) +} + +// 房间权限变更 +export function changeRole(data) { + return request({ + url: `/room/member/change/role`, + method: 'post', + data + }) +} + +// 最近房间访客列表 +export function listRecentVisitors(params) { + return request({ + url: '/room/profile-manager/visitors', + method: 'get', + params + }) +} + +// 房间红包发送记录 +export function flowGameRedPacket(params) { + return request({ + url: '/game-red-packet/flow', + method: 'get', + params + }) +} + +// 移除或拉黑房间用户 +export function removeOrPullBlackRoomUser(data) { + return request({ + url: '/room/profile-manager/blacklist/remove-or-pull', + method: 'post', + data + }) +} + +// 房间黑名单列表 +export function getRoomBlacklist(params) { + return request({ + url: '/room/profile-manager/blacklist', + method: 'get', + params + }) +} diff --git a/src/api/start-page.js b/src/api/start-page.js new file mode 100644 index 0000000..8b4677e --- /dev/null +++ b/src/api/start-page.js @@ -0,0 +1,38 @@ + +import request from '@/utils/request' + +// 列表 +export function pageData(params) { + return request({ + url: '/sys/start/page/plan/page', + method: 'get', + params + }) +} + +// 修改信息 +export function updateData(data) { + return request({ + url: '/sys/start/page/plan', + method: 'put', + data + }) +} + +// 删除信息 +export function deleteData(id) { + return request({ + url: `/sys/start/page/plan/${id}`, + method: 'post' + }) +} + +// 新增信息 +export function addData(data) { + return request({ + url: '/sys/start/page/plan', + method: 'post', + data + }) +} + diff --git a/src/api/statistics.js b/src/api/statistics.js new file mode 100644 index 0000000..6504474 --- /dev/null +++ b/src/api/statistics.js @@ -0,0 +1,188 @@ + +import request from '@/utils/request' + +// 每日糖果收入 +export function getStatisticsRateIncome(params) { + return request({ + url: '/statistics/candy/incomeRate', + method: 'get', + params + }) +} + +// 每日收入总共糖果 +export function getStatisticsRateSumIncome(params) { + return request({ + url: '/statistics/candy/incomeRate/sum', + method: 'get', + params + }) +} + +// 获取最新的注册注销人数 +export function latestRegisterLogout() { + return request({ + url: '/count/user/latest/register/logout', + method: 'get' + }) +} + +// 获取最近30天最订单购买退款统计数据 +export function getDailyPurchaseAmountThirtyDays(areaCode) { + return request({ + url: '/count/purchase/latest/order', + method: 'get', + params: { areaCode } + }) +} + +// 获取最新货币收支情况 +export function latestStatisticsCurrency() { + return request({ + url: '/count/currency/daily/platform', + method: 'get' + }) +} + +// 获取最新金币收支详情 +export function latestStatisticsGoldOriginDetails(origin) { + return request({ + url: '/count/currency/daily/gold-details', + method: 'get', + params: { origin } + }) +} + +// 获取每日金币来源top +export function latestStatisticsGoldOriginDetailsAll(dateNumber) { + return request({ + url: '/count/currency/daily/gold-details/all', + method: 'get', + params: { dateNumber } + }) +} + +// 每日用户金币top榜 +export function listDailyUserGoldTop(dateNumber) { + return request({ + url: '/count/currency/daily-user-gold-top', + method: 'get', + params: { dateNumber } + }) +} + +// 每日用户充值top榜 +export function listDailyUserRechargeTop(dateNumber) { + return request({ + url: '/count/currency/daily-user-recharge-top', + method: 'get', + params: { dateNumber } + }) +} + +// 最新平台内购情况 +export function latestPurchaseAmountPlatform(areaCode) { + return request({ + url: '/count/purchase/daily/list/sys-origin', + method: 'get', + params: { areaCode } + }) +} + +// 最新平台每月内购情况 +export function latestMonthlyPurchaseAmountPlatform() { + return request({ + url: '/count/purchase/monthly/list/sys-origin', + method: 'get' + }) +} + +// 高产用户列表 +export function pageQualityUsers(params) { + return request({ + url: '/statistics/quality/users/page', + method: 'get', + params + }) +} + +// 高产用户列表-每月 +export function pageMonthlyQualityUsers(params) { + return request({ + url: '/statistics/quality/users/page/monthly', + method: 'get', + params + }) +} + +// 高产用户明细列表 +export function pageQualityUsersDetails(params) { + return request({ + url: '/statistics/quality/users/details/page', + method: 'get', + params + }) +} + +// 高产用户备注 +export function qualityUserRemarkSave(data) { + return request({ + url: '/statistics/quality/users/add-or-update', + method: 'post', + data + }) +} + +// 房间指标图 +export function listRoomActiveIndex(params) { + return request({ + url: '/count/operation/active-index/room', + method: 'get', + params + }) +} + +// 用户活跃指标 +export function listUserActiveIndex(params) { + return request({ + url: '/count/operation/active-index/user', + method: 'get', + params + }) +} + +// 道具销售情况-指定道具 +export function getPropsSaleSinge(params) { + return request({ + url: '/count/operation/active-index/props-sale-singe', + method: 'get', + params + }) +} + +// 道具销售情况-列表 +export function getPropsSale(params) { + return request({ + url: '/count/operation/active-index/props-sale', + method: 'get', + params + }) +} + +// 用户本月充值 +export function getThisMonthRechargeByUserId(userId) { + return request({ + url: '/statistics/quality/users/this-month/recharge', + method: 'get', + params: { userId } + }) +} + +// 系统用户注册数量 +export function getSysOriginByUser(params) { + return request({ + url: '/count/operation/active-index/sys-user-count', + method: 'get', + params + }) +} diff --git a/src/api/stream.js b/src/api/stream.js new file mode 100644 index 0000000..a2964e6 --- /dev/null +++ b/src/api/stream.js @@ -0,0 +1,60 @@ +import request from '@/utils/request' + +// 批量删除 +export function batchRemoves(data) { + return request({ + url: '/sys/video/stream/batch/delete', + method: 'post', + data + }) +} + +// 批量收藏 +export function batchSaves(data) { + return request({ + url: '/sys/video/stream/batch/save', + method: 'post', + data + }) +} + +// 视频通话录像 +export function getVideoCallStream(params) { + return request({ + url: '/sys/video/stream/page', + method: 'get', + params + }) +} + +// 删除视频会话 +export function deleteStream(id) { + return request({ + url: `/sys/video/stream/delete/${id}`, + method: 'get' + }) +} + +// 收藏视频会话 +export function saveVideoStreamCollection(id) { + return request({ + url: `/sys/video/stream/save/${id}`, + method: 'get' + }) +} + +export function addAdministrator(data) { + return request({ + url: `/sys/administrator/add`, + method: 'post', + data + }) +} + +export function deleteAdministrator(id) { + return request({ + url: `/sys/administrator/delete/${id}`, + method: 'get' + }) +} + diff --git a/src/api/sys-dictionary.js b/src/api/sys-dictionary.js new file mode 100644 index 0000000..018dffc --- /dev/null +++ b/src/api/sys-dictionary.js @@ -0,0 +1,49 @@ +/** + * 系统配置-字典相关 + */ +import request from '@/utils/request' + +// 国家列表 +export function pageSysCountryCode(params) { + return request({ + url: '/sys/country/code/page', + method: 'get', + params + }) +} + +// 国家修改 +export function updateSysCountryCode(data) { + return request({ + url: '/sys/country/code', + method: 'put', + data + }) +} + +// 周星礼物分组列表 +export function getWeekStarGroupPage(params) { + return request({ + url: '/sys-week-star-group/page', + method: 'get', + params + }) +} + +// 添加分组 +export function addWeekStarGroup(data) { + return request({ + url: '/sys-week-star-group', + method: 'post', + data + }) +} + +// 添加分组 +export function delWeekStarGroup(id) { + return request({ + url: '/sys-week-star-group', + method: 'delete', + params: { id } + }) +} diff --git a/src/api/sys-emoji.js b/src/api/sys-emoji.js new file mode 100644 index 0000000..d8b00b1 --- /dev/null +++ b/src/api/sys-emoji.js @@ -0,0 +1,63 @@ +import request from '@/utils/request' + +// 表情列表-分页 +export function pageTable(params) { + return request({ + url: '/emoji/config/page', + method: 'get', + params + }) +} + +// 表情-添加或修改 +export function addOrUpdate(data) { + return request({ + url: '/emoji/config/add-or-update', + method: 'post', + data + }) +} + +// 表情-添加或修改 +export function offShelfById(id) { + return request({ + url: '/emoji/config/off-shelf/' + id, + method: 'post' + }) +} + +// 表情分组列表-分页 +export function pageGroupTable(params) { + return request({ + url: '/emoji/config/group/page', + method: 'get', + params + }) +} + +// 表情分组列表-添加或修改 +export function addOrUpdateGroup(data) { + return request({ + url: '/emoji/config/group/add-or-update', + method: 'post', + data + }) +} + +// 表情分组列表-根据系统获取 +export function listGroupBySysOrigin(sysOrigin) { + return request({ + url: '/emoji/config/group/sys-origin-list', + method: 'get', + params: { sysOrigin } + }) +} + +// 表情分组列表-上下架 +export function switchGroupShelfStatus(id, status) { + return request({ + url: '/emoji/config/group/shelf-status-switch', + method: 'get', + params: { id, status } + }) +} diff --git a/src/api/sys-pay.js b/src/api/sys-pay.js new file mode 100644 index 0000000..e7a9eb7 --- /dev/null +++ b/src/api/sys-pay.js @@ -0,0 +1,321 @@ +import request from '@/utils/request' + +// 支付渠道-分页 +export function pagePayChannel(params) { + return request({ + url: '/sys-pay-channel/page', + method: 'get', + params + }) +} + +// 支付渠道-列表 +export function listPayChannel(params) { + return request({ + url: '/sys-pay-channel/list', + method: 'get', + params + }) +} + +// 支付渠道-添加 +export function addPayChannel(data) { + return request({ + url: '/sys-pay-channel/add', + method: 'post', + data + }) +} + +// 支付渠道-修改 +export function updatePayChannel(data) { + return request({ + url: '/sys-pay-channel/update', + method: 'post', + data + }) +} + +// 支付厂商-分页 +export function pagePayFactory(params) { + return request({ + url: '/sys-pay-factory/page', + method: 'get', + params + }) +} + +// 支付厂商-列表a d s +export function listPayFactory(params) { + return request({ + url: '/sys-pay-factory/list', + method: 'get', + params + }) +} + +// 支付厂商-关联渠道-添加 +export function addPayFactoryAssociatedChannels(data) { + return request({ + url: '/sys-pay-channel-factory/add-batch', + method: 'post', + data + }) +} + +// 支付厂商-关联渠道-删除 +export function delPayFactoryAssociatedChannels(data) { + return request({ + url: '/sys-pay-channel-factory/del-batch', + method: 'post', + data + }) +} + +// 支付厂商-关联渠道-修改 +export function updateFactoryAssociatedChannels(data) { + return request({ + url: '/sys-pay-channel-factory/update', + method: 'post', + data + }) +} + +// 支付厂商-关联渠道列表 +export function listFactoryAssociatedChannels(factoryCode) { + return request({ + url: '/sys-pay-channel-factory/channels', + method: 'get', + params: { factoryCode } + }) +} + +// 根据限额获取支付的付款渠道-列表 +export function listCountrytSupportAmountChannels(payCountryId, amountUsd) { + return request({ + url: '/sys-pay-channel-factory/support-amount', + method: 'get', + params: { payCountryId, amountUsd } + }) +} + +// 计算汇率 +export function listCountrytSupportAmountChannelsRate(payCountryId, amount, exchangeRate) { + return request({ + url: '/sys-pay-channel-factory/support-amount-rate', + method: 'get', + params: { payCountryId, amount, exchangeRate } + }) +} + +// 支付厂商-添加 +export function addPayFactory(data) { + return request({ + url: '/sys-pay-factory/add', + method: 'post', + data + }) +} + +// 支付厂商-修改 +export function updatePayFactory(data) { + return request({ + url: '/sys-pay-factory/update', + method: 'post', + data + }) +} + +// 开通应用列表-修改 +export function listPayApplication() { + return request({ + url: '/sys-pay-application/list', + method: 'get' + }) +} + +// 开通应用-添加 +export function addPayApplication(data) { + return request({ + url: '/sys-pay-application/add', + method: 'post', + data + }) +} + +// 开通应用-修改 +export function updatePayApplication(data) { + return request({ + url: '/sys-pay-application/update', + method: 'post', + data + }) +} + +// 开通支付国家-分页 +export function pagePayOpenCounty(params) { + return request({ + url: '/sys-pay-open-country/page', + method: 'get', + params + }) +} + +// 开通支付国家-列表 +export function listPayOpenCountry() { + return request({ + url: '/sys-pay-open-country/list', + method: 'get' + }) +} + +// 开通支付国家-列表 +export function listPayOpenCountryByRegionId(regionId) { + return request({ + url: '/sys-pay-open-country/list/region?regionId=' + regionId, + method: 'get' + }) +} + +// 开通支付国家-添加 +export function addPayOpenCountyBatch(data) { + return request({ + url: '/sys-pay-open-country/add-batch', + method: 'post', + data + }) +} + +// 开通支付国家-删除 +export function delPayOpenCountyBatch(data) { + return request({ + url: '/sys-pay-open-country/del-batch', + method: 'post', + data + }) +} + +// 开通支付国家-修改国家汇率 +export function updatePayOpenCountryExchangeRate(id, rate) { + return request({ + url: '/sys-pay-open-country/update-exchange-rate', + method: 'post', + params: { id, rate } + }) +} + +// 开通支付国家-修改国家货币 +export function updatePayOpenCountryCurrent(id, currency) { + return request({ + url: '/sys-pay-open-country/update-currency', + method: 'post', + params: { id, currency } + }) +} + +// 开通支付国家-修改国家权重 +export function updatePayOpenCountrySort(id, sort) { + return request({ + url: '/sys-pay-open-country/update-sort', + method: 'post', + params: { id, sort } + }) +} + +// 开通支付国家-上下架 +export function updatePayOpenCountyShelf(id, shelf) { + return request({ + url: '/sys-pay-open-country/shelf', + method: 'get', + params: { id, shelf } + }) +} + +// 开通支付国家-删除关联渠道 +export function deletePayCountyAssociateChannel(id) { + return request({ + url: '/sys-pay-open-country/channel-del', + method: 'post', + params: { id } + }) +} + +// 开放支付国家关联渠道-列表 +export function listPayCountryChannel(payCountryId) { + return request({ + url: '/sys-pay-channel-factory/country', + method: 'get', + params: { payCountryId } + }) +} + +// 渠道关联厂商列表-列表 +export function listChannelFactoryAll() { + return request({ + url: '/sys-pay-channel-factory/associate', + method: 'get' + }) +} + +// 开放支付国家关联渠道-上下架 +export function updatePayCountryChannelShelf(id, shelf) { + return request({ + url: '/sys-pay-country-channel/switch-shelf', + method: 'get', + params: { id, shelf } + }) +} + +// 开放支付国家关联渠道-删除 +export function delBatchPayCountryChannel(data) { + return request({ + url: '/sys-pay-country-channel/del-batch', + method: 'post', + data + }) +} + +// 开通支付国家-保存渠道关联 +export function addBatchCountyAssociateChannel(data) { + return request({ + url: '/sys-pay-country-channel/add-batch', + method: 'post', + data + }) +} + +// 国家渠道关联详情-添加或修改 +export function addOrUpdateCountyChannelDetails(data) { + return request({ + url: '/sys-pay-country-channel/add-or-update-details', + method: 'post', + data + }) +} + +// 商品管理-分页列表 +export function pagePayCommodity(params) { + return request({ + url: '/sys-pay-commodity/page', + method: 'get', + params + }) +} + +// 商品管理-添加或修改 +export function addOrUpdatePayCommodity(data) { + return request({ + url: '/sys-pay-commodity/add-or-update', + method: 'post', + data + }) +} + +// 商品管理-修改上下架状态 +export function switchShelfCommodity(id, shelf) { + return request({ + url: '/sys-pay-commodity/switch-shelf', + method: 'post', + params: { id, shelf } + }) +} diff --git a/src/api/sys.js b/src/api/sys.js new file mode 100644 index 0000000..853f820 --- /dev/null +++ b/src/api/sys.js @@ -0,0 +1,588 @@ +/** + * app管理相关 + */ +import request from '@/utils/request' + +// 系统用户友谊卡列表. +export function userFriendshipCardConfigTable(params) { + return request({ + url: '/sys/user/friendship/card/list', + method: 'get', + params + }) +} + +// 新增用户友谊卡配置. +export function addUserFriendshipCardConfig(data) { + return request({ + url: '/sys/user/friendship/card', + method: 'post', + data + }) +} + +// 修改用户友谊卡配置 +export function updateUserFriendshipCardConfig(data) { + return request({ + url: '/sys/user/friendship/card', + method: 'put', + data + }) +} + +// 获取指定平台配置信息 +export function getLotteryConf(params) { + return request({ + url: '/lottery/conf', + method: 'get', + params + }) +} + +// 获取指定平台配置信息 +export function addLotteryConf(data) { + return request({ + url: '/lottery/conf', + method: 'post', + data + }) +} + +// 国家基本信息 +export function getCountryAlls() { + return request({ + url: '/sys/country/code', + method: 'get' + }) +} + +// 用户登陆日志 +export function loginLoggerPage(params) { + return request({ + url: '/user/login/logger/page', + method: 'get', + params + }) +} + +// 黑名单列表 +export function requestBlackList() { + return request({ + url: '/request-black-list', + method: 'get' + }) +} + +// 黑名单列表-机型 +export function addBlackListPhoneModel(phoneModel) { + return request({ + url: '/request-black-list/phone-model', + method: 'post', + params: { phoneModel } + }) +} + +// 黑名单列表-ip +export function addBlackListIP(ip) { + return request({ + url: '/request-black-list/ip', + method: 'post', + params: { ip } + }) +} + +// 删除黑名单列表 +export function delBlackList(content) { + return request({ + url: '/request-black-list/del', + method: 'delete', + params: { content } + }) +} + +// 分页列表 +export function refundAnchorTrackRecordPage(params) { + return request({ + url: '/refund-anchor-track-record/page', + method: 'get', + params + }) +} + +// ///////////////////////////////// 置顶房间 ////////////////////////////////// +// 置顶房间-添加或修改 +export function addOrUpdateSetTopRoom(data) { + return request({ + url: '/sys-set-top/add-or-update', + method: 'post', + data + }) +} + +// 置顶房间-移除 +export function removeSetTopRoom(roomId) { + return request({ + url: '/sys-set-top/remove', + method: 'get', + params: { roomId } + }) +} + +// 置顶房间-分页列表 +export function pageSetTopRoom(params) { + return request({ + url: '/sys-set-top/page', + method: 'get', + params + }) +} + +// ///////////////////////////////// 热门房间 ////////////////////////////////// +// 热门房间-添加或修改 +export function addOrUpdateSetHotRoom(data) { + return request({ + url: '/sys-set-hot/add-or-update', + method: 'post', + data + }) +} + +// 热门房间-移除 +export function removeSetHotRoom(roomId) { + return request({ + url: '/sys-set-hot/remove', + method: 'get', + params: { roomId } + }) +} + +// 热门房间-分页列表h +export function pageSetHotRoom(params) { + return request({ + url: '/sys-set-hot/page', + method: 'get', + params + }) +} + +// 游戏列表配置-分页列表 +export function pageGameConfig(params) { + return request({ + url: '/sys-game-list-config/page', + method: 'get', + params + }) +} + +// 游戏列表配置-添加或修改 +export function saveOrUpdateGameConfig(data) { + return request({ + url: '/sys-game-list-config/save-or-update', + method: 'post', + data + }) +} + +// 游戏列表配置-删除 +export function deleteGameConfig(id, sysOrigin) { + return request({ + url: '/sys-game-list-config/delete', + method: 'get', + params: { id, sysOrigin } + }) +} + +// 匹配游戏列表 +export function flowGameMatchConfig(params) { + return request({ + url: '/sys-game-list-config/match-conf', + method: 'get', + params + }) +} + +// 添加或修改匹配游戏配置 +export function upsertGameMatchConfig(data) { + return request({ + url: '/sys-game-list-config/match-conf', + method: 'post', + data + }) +} + +// 添加或修改匹配游戏配置 +export function delGameMatchConfig(id) { + return request({ + url: '/sys-game-list-config/match-conf', + method: 'delete', + params: { id } + }) +} + +// ///////////////////////////////// 邀请用户规则配置 //////////////////////////////////// +// 修改配置 +export function updateSysInviteUserConfig(data) { + return request({ + url: '/sys/invite/user/config', + method: 'post', + data + }) +} +// 查询配置 +export function querySysInviteUserConfig(sysOrigin) { + return request({ + url: '/sys/invite/user/config?sysOrigin=' + sysOrigin, + method: 'get' + }) +} + +export function updateSysUserAdvertisingConfigDTO(data) { + return request({ + url: '/sys/user/advertising/save', + method: 'post', + data + }) +} +export function querySysUserAdvertisingConfigDTO(sysOrigin) { + return request({ + url: '/sys/user/advertising/config?sysOrigin=' + sysOrigin, + method: 'get' + }) +} + +// -----------活动模版start------------------ + +/** + * 活动模版-列表. + */ +export function listTemplates(params) { + return request({ + url: '/activity-conf/template-list', + method: 'get', + params + }) +} + +/** + * 活动模版-列表. + */ +export function listTemplateValues() { + return request({ + url: '/activity-conf/template-values', + method: 'get' + }) +} + +/** + * 活动模版-添加. + */ +export function addTemplate(data) { + return request({ + url: '/activity-conf/template-add', + method: 'post', + data + }) +} + +/** + * 活动模版-修改. + */ +export function updateTemplate(data) { + return request({ + url: '/activity-conf/template-update', + method: 'post', + data + }) +} + +/** + * 活动模版-修改名称. + */ +export function updateTemplateName(id, name) { + return request({ + url: '/activity-conf/template-update-name', + method: 'post', + data: { id, name } + }) +} + +/** + * 根据id获得活动模版. + */ +export function getTemplateById(id) { + return request({ + url: '/activity-conf/template', + method: 'get', + params: { id } + }) +} + +/** + * 活动配置-列表. + */ +export function listActivityConf(params) { + return request({ + url: '/activity-conf/conf-list', + method: 'get', + params + }) +} + +/** + * 活动配置-添加. + */ +export function addActivityConf(data) { + return request({ + url: '/activity-conf/conf-add', + method: 'post', + data + }) +} + +/** + * 活动配置-修改. + */ +export function updateActivityConf(data) { + return request({ + url: '/activity-conf/conf-update', + method: 'post', + data + }) +} + +/** + * 活动奖品-排名. + */ +export function listActivityRewardRank(activityId) { + return request({ + url: '/activity-conf/rank-reward-preview', + method: 'get', + params: { activityId } + }) +} + +/** + * 活动-排名. + */ +export function listActivityRank(activityId) { + return request({ + url: '/activity-conf/rank', + method: 'get', + params: { activityId } + }) +} + +/** + * 活动-发送奖励. + */ +export function sendActivityReward(activityId) { + return request({ + url: '/activity-conf/send-reward', + method: 'get', + params: { activityId } + }) +} +// -----------活动模版end------------------ + +// 用户邀请分页列表 +export function pageUserInviteRegister(params) { + return request({ + url: '/user-invite-register/page', + method: 'get', + params + }) +} + +// ////////////////////////////////////////////////////// 客服管理 start //////////////////////////////////////////////////////////////// +// 客服列表. +export function listCustomerService(sysOrigin, region) { + return request({ + url: '/sys/customer-service/list/' + sysOrigin + '?region=' + region, + method: 'get' + }) +} + +// 添加客服. +export function addCustomerService(data) { + return request({ + url: '/sys/customer-service/add', + method: 'post', + data + }) +} + +// 修改客服. +export function updateCustomerService(data) { + return request({ + url: '/sys/customer-service/update', + method: 'post', + data + }) +} + +// 删除客服. +export function deleteCustomerService(id) { + return request({ + url: '/sys/customer-service/delete/' + id, + method: 'get' + }) +} + +// ////////////////////////////////////////////////////// 区域管理 start //////////////////////////////////////////////////////////////// +// 区域列表. +export function regionConfigTable(params) { + return request({ + url: '/region/config/list', + method: 'get', + params + }) +} + +// 修改区域. +export function updateRegionConfig(data) { + return request({ + url: '/region/config/update', + method: 'post', + data + }) +} + +// 添加区域. +export function addRegionConfig(data) { + return request({ + url: '/region/config/add', + method: 'post', + data + }) +} + +// 删除区域. +export function deleteRegionConfig(id) { + return request({ + url: '/region/config/delete/' + id, + method: 'get' + }) +} + +// 清理区域提现. +export function resetRegionWithdrawal(regionId) { + return request({ + url: '/region/config/reset-withdrawal', + method: 'get', + params: { regionId } + }) +} + +// ////////////////////////////////////////////////////// 区域辅助数据管理 //////////////////////////////////////////////////////////////// +// 区域辅助数据列表. +export function regionAssistConfigTable(params) { + return request({ + url: '/region/assist/config/list', + method: 'get', + params + }) +} + +// 修改区域辅助数据. +export function updateRegionAssistConfig(data) { + return request({ + url: '/region/assist/config/update', + method: 'post', + data + }) +} + +// 添加区域辅助数据. +export function addRegionAssistConfig(data) { + return request({ + url: '/region/assist/config/add', + method: 'post', + data + }) +} + +// 删除区域辅助数据. +export function deleteRegionAssistConfig(id) { + return request({ + url: '/region/assist/config/delete/' + id, + method: 'get' + }) +} + +// ////////////////////////////////////////////////////// 区域关系业务编织 start //////////////////////////////////////////////////////////////// +// 区域关系业务列表. +export function regionRelationTable(params) { + return request({ + url: '/sys/region/relation/page', + method: 'get', + params + }) +} + +// 修改区域关系业务. +export function updateRegionRelation(data) { + return request({ + url: '/sys/region/relation/update', + method: 'post', + data + }) +} + +// 添加区域关系业务. +export function addRegionRelation(data) { + return request({ + url: '/sys/region/relation/add', + method: 'post', + data + }) +} + +// ////////////////////////////////////////////////////// 用户充值黑名单 start //////////////////////////////////////////////////////////////// + +// 用户充值黑名单列表. +export function userRechargeBlackList() { + return request({ + url: '/recharge-black-list', + method: 'get' + }) +} + +// 新增用户充值黑名单. +export function addUserRechargeBlackList(userId) { + return request({ + url: '/recharge-black-list', + method: 'post', + params: { userId } + }) +} + +// 删除用户充值黑名单. +export function delUserRechargeBlackList(content) { + return request({ + url: '/recharge-black-list', + method: 'delete', + params: { content } + }) +} + +// ////////////////////////////////////////////////////// 用户充值黑名单 end //////////////////////////////////////////////////////////////// + +// ////////////////////////////////////////////////////// 用户注销 start //////////////////////////////////////////////////////////////// +// 用户注销日志 +export function logoutLogPage(params) { + return request({ + url: '/user-logout-log/page', + method: 'get', + params + }) +} +// 用户注销申请 +export function logoutApplyPage(params) { + return request({ + url: '/user-logout-apply/page', + method: 'get', + params + }) +} + +// ////////////////////////////////////////////////////// 用户注销 end //////////////////////////////////////////////////////////////// diff --git a/src/api/table.js b/src/api/table.js new file mode 100644 index 0000000..7f8f4ba --- /dev/null +++ b/src/api/table.js @@ -0,0 +1,151 @@ + +import request from '@/utils/request' + +// 意见反馈列表 +export function getFeedbackTable(params) { + return request({ + url: '/sys/feedback/page', + method: 'get', + params + }) +} + +// 意见反馈处理 +export function processFeedback(params) { + return request({ + url: '/sys/feedback/process', + method: 'get', + params + }) +} + +// 意见反馈批量处理 +export function batchProcessFeedback(data) { + return request({ + url: '/sys/feedback/batchProcess', + method: 'post', + data + }) +} + +// 举报列表 +export function getReportedTable(params) { + return request({ + url: '/sys/reported/user/page', + method: 'get', + params + }) +} + +// 参数配置列表 +export function getConfigInfo(params) { + return request({ + url: '/sys/enum/config/page', + method: 'get', + params + }) +} + +// 添加配置信息 +export function addConfigInfo(data) { + return request({ + url: '/sys/enum/config', + method: 'post', + data + }) +} + +// 修改配置信息 +export function updateConfigInfo(data) { + return request({ + url: '/sys/enum/config', + method: 'put', + data + }) +} + +// 删除配置信息 +export function delConfig(id) { + return request({ + url: `/sys/enum/config/${id}`, + method: 'delete' + }) +} + +// 获取系统枚举分组列表 +export function getEnumConfigByGroup(group) { + return request({ + url: `/sys/enum/config/list/${group}`, + method: 'get' + }) +} + +// 保存配置序号 +export function updateSort(data) { + return request({ + url: '/sys/enum/config/sort', + method: 'post', + data + }) +} + +// 获取app崩溃版本信息 +export function breakdownFlow(params) { + return request({ + url: '/sys/breakdown/info/flow', + method: 'get', + params + }) +} + +// 清空指定平台日期崩溃日志 +export function deleteByPlatform(platform) { + return request({ + url: `/sys/breakdown/info/${platform}/delete`, + method: 'delete' + }) +} + +// 清空指定平台日期崩溃日志 +export function deleteByPlatformDate(platform, startTime, endTime) { + return request({ + url: `/sys/breakdown/info/${platform}/${startTime}/${endTime}/delete`, + method: 'delete' + }) +} + +// 系统评分列表 +export function appScorePage(params) { + return request({ + url: '/sys/app/score/page', + method: 'get', + params + }) +} + +// 封禁设备列表 +export function archiveDevicePage(params) { + return request({ + url: '/sys/archive/device/page', + method: 'get', + params + }) +} + +// 删除封禁设备 +export function delDevice(deviceNo) { + return request({ + url: `/sys/archive/device/del/${deviceNo}`, + method: 'get' + }) +} + +// cp申请分页列表 +export function pageCpApply(params) { + return request({ + url: '/user-cp-apply/page', + method: 'get', + params + }) +} + diff --git a/src/api/team.js b/src/api/team.js new file mode 100644 index 0000000..7e39878 --- /dev/null +++ b/src/api/team.js @@ -0,0 +1,387 @@ +/** + * 团队管理API. + */ +import request from '@/utils/request' +import { httpGetExport } from '@/utils/export-excel' + +// 团队列表. +export function listTeamTable(params) { + return request({ + url: '/team/list', + method: 'get', + params + }) +} + +// 团队详情. +export function getTeamDetails(teamId) { + return request({ + url: '/team/details', + method: 'get', + params: { teamId } + }) +} + +// 创建团队 +export function createTeam(data) { + return request({ + url: '/team/create', + method: 'post', + data + }) +} + +// 修改团队资料 +export function updateTeamProfile(data) { + return request({ + url: '/team/update-profile', + method: 'post', + data + }) +} + +// 修改团队状态 +export function updateTeamStatus(data) { + return request({ + url: '/team/update-status', + method: 'post', + data + }) +} + +// 添加团队-备注 +export function addTeamRemarks(data) { + return request({ + url: '/team/add-remarks', + method: 'post', + data + }) +} + +// 移除团队-备注 +export function delTeamRemarks(data) { + return request({ + url: '/team/del-remarks', + method: 'post', + data + }) +} + +// 删除团队 +export function delTeamBatch(teamIds) { + return request({ + url: '/team/del', + method: 'post', + data: teamIds + }) +} + +// 添加团队-联系方式 +export function addTeamContact(data) { + return request({ + url: '/team/add-contact', + method: 'post', + data + }) +} + +// 移除团队-联系方式 +export function delTeamContact(data) { + return request({ + url: '/team/del-contact', + method: 'post', + data + }) +} +// 获得成员列表 +export function listMembers() { + return request({ + url: '/users/list/combo', + method: 'get' + }) +} + +// 团队成员列表. +export function listMemberTable(params) { + return request({ + url: '/team/member/list', + method: 'get', + params + }) +} + +// 添加成员列表. +export function addTeamMember(data) { + return request({ + url: '/team/member/add', + method: 'post', + data + }) +} + +// 移除成员列表. +export function removeTeamMember(data) { + return request({ + url: '/team/member/remove', + method: 'post', + data + }) +} + +// 修改成员备注. +export function updateMemberRemark(data) { + return request({ + url: '/team/member/update-remark', + method: 'post', + data + }) +} + +// 修改成员归属团队. +export function updateMemberTeam(data) { + return request({ + url: '/team/member/team-change', + method: 'post', + data + }) +} + +// ////////////////////////////////////////////////////// 团队政策管理 //////////////////////////////////////////////////////////////// + +// 获得当前对外发布策略. +export function teamPolicyReleases(params) { + return request({ + url: '/team/policy/manager/releases', + method: 'get', + params + }) +} + +// 对外发布过的策略历史列表. +export function teamPolicyHistoryReleases(params) { + return request({ + url: '/team/policy/manager/history/releases', + method: 'get', + params + }) +} + +// 添加策略. +export function teamPolicyAdd(data) { + return request({ + url: '/team/policy/manager/add', + method: 'post', + data + }) +} + +// 根据id删除策略. +export function deleteTeamPolicy(id) { + return request({ + url: '/team/policy/manager/delete/' + id, + method: 'get' + }) +} + +/** + * 获取系统区域列表. + */ +export function listSysRegionPolicy(sysOrigin, region) { + return request({ + url: '/team/policy/manager/sys-region', + method: 'get', + params: { sysOrigin, region } + }) +} + +// 团队账单计算. +export function getTeamBillCalculator(params) { + return request({ + url: '/team/bill/calculator', + method: 'get', + params + }) +} + +// 团队账单. +export function listTeamBillTable(params) { + return request({ + url: '/team/bill/list', + method: 'get', + params + }) +} + +// 团队账单-内部备注添加. +export function addBillInternalRemarks(data) { + return request({ + url: '/team/bill/add/internal-remarks', + method: 'post', + data + }) +} + +// 团队账单-内部备注删除. +export function delBillInternalRemarks(data) { + return request({ + url: '/team/bill/del/internal-remarks', + method: 'post', + data + }) +} + +// 团队账单-备注. +export function updateBillRemarks(data) { + return request({ + url: '/team/bill/remarks', + method: 'post', + data + }) +} + +// 团队账单-结算. +export function teamBillSettle(data) { + return request({ + url: '/team/bill/settle', + method: 'post', + data + }) +} + +// 团队账单-账单状态. +export function updateBillStatus(data) { + return request({ + url: '/team/bill/update-status', + method: 'post', + data + }) +} + +// ////////////////////////////////////////////////////// 团队通知 //////////////////////////////////////////////////////////////// + +// 发送通知 +export function sendTeamNotice(data) { + return request({ + url: '/team/notice/send', + method: 'post', + data + }) +} + +// 根据团队id获得通知列表. +export function listTeamNoticeByTeamId(teamId) { + return request({ + url: '/team/notice/list/' + teamId, + method: 'get' + }) +} + +// 根据通知id删除团队通知. +export function deleteTeamNoticeById(id) { + return request({ + url: '/team/notice/delete/' + id, + method: 'get' + }) +} + +// ////////////////////////////////////////////////////// 团队成员申请 //////////////////////////////////////////////////////////////// + +// 修改团队成员申请状态 +export function teamProcessChangeStatus(data) { + return request({ + url: '/team/application/process/change/status', + method: 'post', + data + }) +} + +// 团队申请列表. +export function teamProcessTable(params) { + return request({ + url: '/team/application/process/list', + method: 'get', + params + }) +} + +// ////////////////////////////////////////////////////// 团队成员申请日志 //////////////////////////////////////////////////////////////// + +// 团队申请成员列表. +export function teamProcessApprovalTable(params) { + return request({ + url: '/team/application/process/approval/list', + method: 'get', + params + }) +} + +// 团队成员工作. +export function listTeamMemberWork(params) { + return request({ + url: '/team/member/work', + method: 'get', + params + }) +} + +// 切换团队, 团长. +export function switchTeamOwn(data) { + return request({ + url: '/team/switch/own', + method: 'post', + data + }) +} + +// 检查当前成员目标情况. +export function checkTarget(params) { + return request({ + url: '/team/check-target', + method: 'get', + params + }) +} + +// 查询当前成员修正幸运礼物后的目标情况. +export function checkTargetLuckyGift(params) { + return request({ + url: '/team/check-target-lucky-gift', + method: 'get', + params + }) +} + +// 重置用户目标. +export function resetUnpaidBillMemberTarget(data) { + return request({ + url: '/team/reset-target', + method: 'post', + data + }) +} + +// 重置用户目标. +export function resetUnpaidBillMemberTargetTmp(data) { + return request({ + url: '/team/reset-target-psg', + method: 'post', + data + }) +} + +// ////////////// 导出 ///////////////////////////// + +// 导出主播账单数据 +export function excelAnchorBill(params, excelName) { + return httpGetExport('/team/bill/excel', params, excelName) +} + +// ////////////// 将代理绑定到指定BD名下 ///////////////////////////// +export function teamBindBd(data) { + return request({ + url: '/team/bind/bd', + method: 'post', + data + }) +} + diff --git a/src/api/tools.js b/src/api/tools.js new file mode 100644 index 0000000..5a71580 --- /dev/null +++ b/src/api/tools.js @@ -0,0 +1,133 @@ +import request from '@/utils/request' + +// 获取枚举配置列表 +export function getAppEnumConfigCache() { + return request({ + url: '/tools/redis/enum/configs', + method: 'post' + }) +} + +// 获取产品配置列表 +export function getPlatformProductConfigCache(sysOrigin) { + return request({ + url: `/tools/redis/product/configs/${sysOrigin}`, + method: 'post' + }) +} + +// 获取礼物配置列表 +export function getGiftConfigCache(userId) { + return request({ + url: '/tools/redis/gift/configs', + method: 'post' + }) +} + +// 获取用户打卡天数 +export function getCheckInDaysCache(userId) { + return request({ + url: `/tools/redis/${userId}/check_in/days`, + method: 'post' + }) +} + +// 获取api签名 +export function requestApiSing(data) { + return request({ + url: '/tools/api_sing', + method: 'post', + data + }) +} + +// 分析金币来源 +export function goldAnalyze(params) { + return request({ + url: '/tools/gold_analyze', + method: 'get', + params + }) +} + +// 别名算法分析 +export function alisMethod(data) { + return request({ + url: '/tools/alis_method', + method: 'post', + data + }) +} + +// 用户账户调换-检测 +export function checkUserSwapUser(params) { + return request({ + url: '/tools/user-swap-user', + method: 'get', + params + }) +} + +// 用户账户调换-执行 +export function executeUserSwapUser(params) { + return request({ + url: '/tools/user-swap-user-execute', + method: 'get', + params + }) +} + +// 用户房间区域变动-执行 +export function updateUserRoomRegion(params) { + return request({ + url: '/tools/user-room-region-update', + method: 'post', + params + }) +} + +// 注销用户恢复-执行 +export function executeUserCancelAndRestore(params) { + return request({ + url: '/tools/user-cancel-and-restore-execute', + method: 'post', + params + }) +} + +// api请求日志 +export function listApiOperationLog(params) { + return request({ + url: '/tools/api-operation-log', + method: 'get', + params + }) +} + +// 获取token信息 +export function getAccessTokenByUserId(token) { + return request({ + url: '/tools/token-user', + method: 'get', + params: { token } + }) +} + +// 获取用户token +export function getUserToken(userId) { + return request({ + url: '/tools/user-token', + method: 'get', + params: { userId } + }) +} + +// 清理redis key. +export function clearRedisKey(key) { + return request({ + url: '/tools/clean-redis-key', + method: 'get', + params: { key } + }) +} + diff --git a/src/api/translate.js b/src/api/translate.js new file mode 100644 index 0000000..6c2ef7d --- /dev/null +++ b/src/api/translate.js @@ -0,0 +1,11 @@ + +import request from '@/utils/request' + +// 翻译为用户语言 +export function translateUserLangContent(params) { + return request({ + url: '/translation', + method: 'get', + params + }) +} diff --git a/src/api/user-activity-award-record.js b/src/api/user-activity-award-record.js new file mode 100644 index 0000000..984f521 --- /dev/null +++ b/src/api/user-activity-award-record.js @@ -0,0 +1,13 @@ +/** + * 用户活动领奖相关操作 + */ +import request from '@/utils/request' + +// 用户活动累计充值领奖记录 +export function pageRewardReceiveRecord(params) { + return request({ + url: '/user/activity/reward/receive/record/page', + method: 'get', + params + }) +} diff --git a/src/api/user-manager.js b/src/api/user-manager.js new file mode 100644 index 0000000..4a976fa --- /dev/null +++ b/src/api/user-manager.js @@ -0,0 +1,4 @@ +/** + * 用户管理相关操作 + */ +import request from '@/utils/request' diff --git a/src/api/user-special-id.js b/src/api/user-special-id.js new file mode 100644 index 0000000..c80dc42 --- /dev/null +++ b/src/api/user-special-id.js @@ -0,0 +1,77 @@ +import request from '@/utils/request' + +/** + * 数据查询. + */ +export function flow(params) { + return request({ + url: '/user-special-id/flow', + method: 'get', + params + }) +} + +/** + * 添加或修改. + */ +export function saveOrUpdate(data) { + return request({ + url: '/user-special-id/add-or-update', + method: 'post', + data + }) +} + +/** + * 修改有效时间靓号. + */ +export function updateExpiredTime(data) { + return request({ + url: '/user-special-id/expired-time', + method: 'post', + data + }) +} + +/** + * 移除. + */ +export function remove(data) { + return request({ + url: '/user-special-id/remove', + method: 'post', + data + }) +} + +/** + * 获取账号最新日志. + */ +export function listLatestLog(account) { + return request({ + url: '/user-special-id/latest-log', + method: 'get', + params: { account } + }) +} + +/** + * 修改靓号. + */ +export function updateAccount(data) { + return request({ + url: '/user-special-id/update-account', + method: 'post', + data + }) +} + +// 账号操作记录-分页查询. +export function specialIdLogTable(params) { + return request({ + url: '/user-special-id/page/latest-log', + method: 'get', + params + }) +} + diff --git a/src/api/user.js b/src/api/user.js new file mode 100644 index 0000000..7349b80 --- /dev/null +++ b/src/api/user.js @@ -0,0 +1,154 @@ +import request from '@/utils/request' + +export function login(data) { + return request({ + url: '/account/token', + method: 'post', + data + }) +} + +export function getInfo() { + return request({ + url: '/account/info', + method: 'get' + }) +} + +export function logout() { + return request({ + url: '/mock/user/logout', + method: 'post' + }) +} + +// 获取账号菜单 +export function getAccountMenus() { + return request({ + url: '/account/menus', + method: 'get' + }) +} + +// 获取按钮权限 +export function getButtonPermissions() { + return request({ + url: '/account/buttons/aliases', + method: 'get' + }) +} + +// 用户道具流水列表 +export function userPropsTable(params) { + return request({ + url: '/running/water/user/props/page', + method: 'get', + params + }) +} + +// 用户购买麦位类型流水列表 +export function userPropsMikeType(params) { + return request({ + url: '/room-mike-type/page', + method: 'get', + params + }) +} + +// 用户靓号申请列表 +export function userBeautifulNumberApplyTable(params) { + return request({ + url: '/beautiful/number/apply/page', + method: 'get', + params + }) +} + +// 处理靓号申请状态 +export function handleBeautifulNumberApplyState(id, state) { + return request({ + url: `/beautiful/number/apply/handle/${id}/${state}`, + method: 'get' + }) +} + +// ////////////////////////////////////////////////////// 用户银行卡 start //////////////////////////////////////////////////////////////// + +// 根据团队id获得银行卡列表. +export function listBankCardTable(userId) { + return request({ + url: '/user/bank-card/list/user-id/' + userId, + method: 'get' + }) +} + +// 团队通过银行卡. +export function listUserPassBankCards(userId) { + return request({ + url: '/user/bank-card/pass-list', + method: 'get', + params: { userId } + }) +} + +// 修改银行卡资料 +export function updateBankCard(data) { + return request({ + url: '/user/bank-card/update', + method: 'post', + data + }) +} + +// 添加银行卡资料 +export function addBankCard(data) { + return request({ + url: '/user/bank-card/add', + method: 'post', + data + }) +} + +// 根据银行卡id删除. +export function deleteBankCard(bankCardId) { + return request({ + url: '/user/bank-card/delete/' + bankCardId, + method: 'get' + }) +} + +// 切换使用中的银行卡. +export function useBankCard(bankCardId) { + return request({ + url: '/user/bank-card/use/' + bankCardId, + method: 'get' + }) +} + +// ////////////////////////////////////////////////////// 用户银行卡 end //////////////////////////////////////////////////////////////// + +// 用户密码日志列表 +export function userPasswordLog(params) { + return request({ + url: '/user-password-log/page', + method: 'get', + params + }) +} +// 用户上传专属礼物分页列表 +export function pageUserCustomGift(params) { + return request({ + url: '/user/custom-gift', + method: 'get', + params + }) +} + +// 切换用户上传专属礼物状态 +export function switchStatus(id, status) { + return request({ + url: `/user/custom-gift/${id}/${status}`, + method: 'get' + }) +} diff --git a/src/api/weekly-activity.js b/src/api/weekly-activity.js new file mode 100644 index 0000000..5e18dda --- /dev/null +++ b/src/api/weekly-activity.js @@ -0,0 +1,28 @@ + +import request from '@/utils/request' + +// 周星礼物列表-分页 +export function pageWeeklyGiftConfigTable(params) { + return request({ + url: '/activity/weekly/gift/config/page', + method: 'get', + params + }) +} + +// 周星礼物列表-添加或修改 +export function saveWeeklyGiftConfig(data) { + return request({ + url: '/activity/weekly/gift/config/save_or_update', + method: 'post', + data + }) +} + +// 周星礼物列表-删除 +export function delWeeklyGiftConfig(id) { + return request({ + url: `/activity/weekly/gift/config/del/${id}`, + method: 'get' + }) +} diff --git a/src/assets/401_images/401.gif b/src/assets/401_images/401.gif new file mode 100644 index 0000000..cd6e0d9 Binary files /dev/null and b/src/assets/401_images/401.gif differ diff --git a/src/assets/404_images/404.png b/src/assets/404_images/404.png new file mode 100644 index 0000000..3d8e230 Binary files /dev/null and b/src/assets/404_images/404.png differ diff --git a/src/assets/404_images/404_cloud.png b/src/assets/404_images/404_cloud.png new file mode 100644 index 0000000..c6281d0 Binary files /dev/null and b/src/assets/404_images/404_cloud.png differ diff --git a/src/assets/data/datav_geomap.json b/src/assets/data/datav_geomap.json new file mode 100644 index 0000000..d8dbeb5 --- /dev/null +++ b/src/assets/data/datav_geomap.json @@ -0,0 +1,239 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features": [ + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.20625,35.090973],[-2.008472,35.076637],[-1.764084,35.131248],[-1.555639,35.270916],[-1.382,35.313473],[-1.2585,35.399387],[-1.180056,35.588833],[-0.946056,35.729752],[-0.828389,35.773529],[-0.640667,35.717335],[-0.511833,35.788887],[-0.47975,35.876026],[-0.337555,35.912304],[-0.277528,35.826862],[-0.107945,35.794918],[0.036417,35.875221],[0.127444,36.044807],[0.339333,36.198166],[0.634111,36.311501],[0.901278,36.393696],[0.939583,36.449806],[1.194722,36.517666],[1.306028,36.518028],[1.352917,36.555637],[1.511694,36.532333],[1.649611,36.559082],[2.102194,36.584667],[2.321583,36.64164],[2.423917,36.597916],[2.612056,36.605778],[2.818611,36.711971],[2.904889,36.80611],[3.024417,36.81514],[3.143028,36.740917],[3.222917,36.774723],[3.490306,36.774113],[3.634639,36.827751],[3.716972,36.885471],[3.879611,36.923443],[3.938889,36.899944],[4.107777,36.895363],[4.291444,36.912083],[4.403583,36.896252],[4.72125,36.887417],[4.921333,36.854168],[5.037305,36.791805],[5.102416,36.701946],[5.268972,36.642666],[5.464556,36.669418],[5.575528,36.773888],[5.738722,36.834778],[5.797945,36.814529],[5.999389,36.847057],[6.21325,36.913193],[6.261917,37.025139],[6.335555,37.070557],[6.487944,37.090527],[6.572,36.987999],[6.714667,36.952526],[6.845806,36.961029],[6.917278,36.886082],[7.182833,36.931721],[7.277,37.072304],[7.506805,37.044861],[7.624833,36.969166],[7.75525,36.961529],[7.764139,36.882416],[7.852194,36.846554],[8.03525,36.873833],[8.236194,36.955528],[8.283861,36.920776],[8.50775,36.909222],[8.641972,36.946919],[8.579833,36.780613],[8.478417,36.776638],[8.483916,36.697861],[8.313472,36.551723],[8.154944,36.499443],[8.209222,36.450748],[8.409278,36.424835],[8.390001,36.309361],[8.345,36.276222],[8.339167,36.139637],[8.297305,36.029945],[8.301083,35.939919],[8.255555,35.76289],[8.359667,35.651054],[8.364278,35.5135],[8.318028,35.360138],[8.324139,35.291222],[8.4445,35.214943],[8.351416,35.091473],[8.262278,34.885918],[8.290417,34.758915],[8.251445,34.613693],[7.918944,34.418751],[7.848166,34.407749],[7.798306,34.21236],[7.636222,34.196335],[7.610917,34.10947],[7.540167,34.045971],[7.533555,33.793335],[7.580889,33.760807],[7.601,33.629471],[7.743639,33.427776],[7.738444,33.251362],[7.813667,33.172916],[7.896444,33.176193],[8.052834,33.098499],[8.115444,33.099361],[8.326445,32.809334],[8.326389,32.670723],[8.3535,32.515915],[9.071861,32.096722],[9.12925,32],[9.137111,31.876444],[9.3455,31.110666],[9.575334,30.240418],[9.395223,30.171223],[9.418528,30.055389],[9.549049,29.914858],[9.792983,29.430895],[9.877125,29.044134],[9.874373,28.659489],[9.835972,28.28989],[9.869641,28.144865],[9.961322,27.888329],[9.923803,27.700525],[9.850559,27.499243],[9.806441,27.47028],[9.773976,27.263884],[9.829903,27.142771],[9.841373,26.984644],[9.934465,26.842993],[9.908139,26.726736],[9.927657,26.642883],[9.876212,26.520399],[9.520966,26.374914],[9.387854,26.183851],[9.774089,25.689426],[10.041826,25.327713],[10.040716,24.877232],[10.185399,24.793644],[10.239261,24.611713],[10.396629,24.511049],[10.493262,24.488976],[10.694419,24.567823],[11.012614,24.460444],[11.124939,24.400797],[11.434692,24.190147],[11.606182,24.249044],[11.708302,24],[11.979548,23.525026],[11.432016,23.214809],[10.577701,22.716612],[10.051885,22.407286],[9.575288,22.129536],[9.071902,21.827499],[8.601714,21.544872],[8.002944,21.181105],[7.445678,20.842468],[7.160677,20.619377],[6.502543,20.046991],[5.817081,19.43771],[4.824817,19.252298],[4.242888,19.136717],[3.333774,18.960028],[3.121174,19.119499],[3.108515,19.179968],[3.197989,19.280701],[3.272079,19.409563],[3.212573,19.565798],[3.228661,19.825912],[3.180333,19.83275],[3.002442,19.936764],[2.811467,19.970337],[2.705234,20.004688],[2.578319,20.004887],[2.399215,20.071934],[2.33842,20.183811],[2.253289,20.264826],[2.186554,20.291985],[2.095358,20.212132],[2.045671,20.256464],[1.927599,20.238214],[1.876006,20.298286],[1.803177,20.296862],[1.671045,20.410471],[1.653113,20.552156],[1.592698,20.600473],[1.371349,20.665758],[1.305946,20.744158],[1.176954,20.733541],[1.158611,20.792984],[1.184915,20.903179],[1.187256,21.046377],[1.166675,21.118887],[0.411106,21.584263],[-0.000443,21.837215],[-0.027552,21.917942],[-0.750254,22.391735],[-1.134199,22.642967],[-1.669253,22.996471],[-2.156349,23.310476],[-2.712557,23.664427],[-3.315,24.042326],[-3.96104,24.445128],[-4.827675,24.996595],[-5.408522,25.36639],[-6.342108,25.939329],[-7,26.341364],[-7.894827,26.85379],[-8.673868,27.298073],[-8.670276,27.662115],[-8.672027,28.394119],[-8.669257,28.719862],[-8.52137,28.781076],[-8.213035,29.01915],[-8.082245,29.071899],[-7.864933,29.213688],[-7.640523,29.381409],[-7.475306,29.378208],[-7.343539,29.469461],[-7.171687,29.614714],[-7,29.644922],[-6.833464,29.634644],[-6.694647,29.58799],[-6.549977,29.587625],[-6.448217,29.700102],[-6.300618,29.717508],[-6.072353,29.711987],[-5.919113,29.790298],[-5.659026,29.818058],[-5.457848,29.895369],[-5.130539,29.999353],[-5.002056,30.166334],[-4.83825,30.628834],[-4.604417,30.697666],[-4.40575,30.705833],[-4.214361,30.743833],[-4.067222,30.844833],[-3.885167,30.896166],[-3.804722,30.873249],[-3.654139,30.922945],[-3.575695,30.915222],[-3.546472,30.970583],[-3.578445,31.046139],[-3.772972,31.117666],[-3.807278,31.222],[-3.766667,31.270277],[-3.763528,31.361584],[-3.651833,31.382278],[-3.66,31.595306],[-3.639667,31.627083],[-3.141889,31.715195],[-2.822972,31.781944],[-2.847389,31.88611],[-2.942722,32],[-2.924278,32.059807],[-2.843306,32.113861],[-2.577306,32.124363],[-2.456472,32.161915],[-2.286083,32.177471],[-1.957167,32.139946],[-1.675028,32.130859],[-1.545444,32.147221],[-1.3635,32.131111],[-1.267167,32.097832],[-1.192445,32.177555],[-1.255722,32.243999],[-1.250028,32.332333],[-1.184,32.410583],[-1.066833,32.455639],[-1.021222,32.539806],[-1.379334,32.739529],[-1.542222,32.9575],[-1.487056,32.978111],[-1.482722,33.081638],[-1.569111,33.14761],[-1.669278,33.282307],[-1.661389,33.386807],[-1.600528,33.514137],[-1.602361,33.621445],[-1.729445,33.735333],[-1.676889,33.776222],[-1.702778,33.872917],[-1.648472,34.108418],[-1.780722,34.397278],[-1.69175,34.497639],[-1.847195,34.625473],[-1.746417,34.754971],[-1.882778,34.812195],[-2.033278,34.932499],[-2.177111,35.023056],[-2.20625,35.090973]]]},"properties":{"name":"阿尔及利亚","name_en":"ALGERIA","id":"DZA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[9.603666,47.061554],[9.524639,47.106583],[9.492889,47.192139],[9.535916,47.273529],[9.618305,47.153641],[9.603666,47.061554]]]},"properties":{"name":"列支敦士登","name_en":"Liechtenstein","id":"LIE"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.62336,23.146889],[35.212166,22.787306],[34.951362,22.857584],[34.691944,22.297916],[34.160694,22.207083],[34.005222,21.772333],[33.564083,21.725389],[33.1665,22.006195],[32.541527,22.004333],[32.023193,22.003222],[31.412111,22.008139],[31.435528,22.081194],[31.512888,22.18075],[31.468805,22.222834],[31.356917,22.114973],[31.318527,22.006416],[30.639694,22.00675],[29.866083,22.004583],[29.317278,22.004333],[28.388334,22.007334],[27.633972,22.007639],[26.947445,22.005194],[26.054167,22.005695],[25.13925,22.004444],[25,21.999195],[25,22.415701],[25,23.332001],[25,23.9151],[25,24.664801],[25,25.4165],[25,25.999598],[25,26.582701],[25,27.666313],[25,28.332001],[24.999435,29.250158],[24.85772,29.548336],[24.895804,29.631365],[24.819407,29.789005],[24.813167,29.918915],[24.753334,30.095751],[24.698111,30.148834],[24.783083,30.331362],[24.926527,30.481138],[25.018278,30.777973],[24.877722,31.167084],[24.886917,31.303917],[24.861111,31.405916],[25.062555,31.541805],[25.090111,31.619583],[25.148056,31.648582],[25.190445,31.524166],[25.385139,31.49964],[25.506082,31.515499],[25.823639,31.612417],[25.915777,31.623777],[26.088945,31.594055],[26.337805,31.523527],[26.515722,31.491138],[26.739916,31.480417],[26.832361,31.441],[26.977583,31.440611],[27.084249,31.382111],[27.258694,31.354805],[27.344499,31.370001],[27.392,31.255972],[27.443445,31.216305],[27.730278,31.185778],[27.870195,31.233473],[27.901056,31.112389],[27.951166,31.092277],[28.157084,31.093611],[28.319916,31.067194],[28.42411,31.089361],[28.710388,31.003195],[28.910973,30.873751],[29.032667,30.820944],[29.189501,30.824389],[29.372944,30.886583],[29.556555,30.975416],[29.780001,31.129305],[29.82625,31.137333],[30.065834,31.32925],[30.161888,31.267666],[30.31325,31.350721],[30.371529,31.505583],[30.483194,31.452833],[30.612278,31.478582],[30.652916,31.390751],[30.817806,31.427361],[30.89575,31.411528],[30.979889,31.445139],[31.025084,31.514639],[31.093167,31.512138],[31.112778,31.601473],[31.26989,31.562555],[31.498362,31.457834],[31.585833,31.442556],[31.852444,31.510695],[31.871529,31.460501],[31.7955,31.287972],[31.833389,31.246305],[32.029026,31.220667],[32.050693,31.09339],[32.153694,31.122612],[32.122055,31.204916],[32.317276,31.098972],[32.405777,31.206167],[32.553333,31.066111],[32.781193,31.038221],[32.86314,31.085112],[32.97625,31.089167],[33.093498,31.183083],[33.159473,31.041082],[33.319363,31.099472],[33.390305,31.081028],[33.441471,31.136084],[33.545029,31.112499],[33.741665,31.12575],[34.060391,31.22475],[34.220386,31.322182],[34.242157,31.293322],[34.403622,30.856081],[34.496052,30.681513],[34.543316,30.412708],[34.611794,30.370937],[34.848514,29.759058],[34.866661,29.597183],[34.90321,29.491537],[34.742138,29.305222],[34.74139,29.218416],[34.698029,29.165861],[34.663834,29.04236],[34.62875,28.730278],[34.521862,28.551167],[34.410389,28.291529],[34.452278,28.158138],[34.434917,27.986639],[34.193779,27.782084],[34.059696,27.809999],[33.911446,27.940556],[33.879501,27.932611],[33.697723,28.097027],[33.56414,28.291695],[33.433083,28.364779],[33.365723,28.453388],[33.24136,28.552334],[33.197109,28.668556],[33.229526,28.764166],[33.171833,28.856501],[33.179027,29.000639],[32.950027,29.203695],[32.885472,29.233305],[32.826946,29.316055],[32.824028,29.382389],[32.747471,29.447083],[32.678082,29.657667],[32.697029,29.729],[32.609749,29.818417],[32.634918,29.86186],[32.558361,29.95789],[32.477527,29.936028],[32.485474,29.819778],[32.361,29.6805],[32.34164,29.595556],[32.590611,29.347529],[32.666752,29.096834],[32.620109,28.980833],[32.678196,28.883472],[32.813389,28.763166],[32.866138,28.571167],[32.927444,28.551861],[33.026165,28.462862],[33.11272,28.352222],[33.127998,28.292055],[33.334305,28.087166],[33.48814,27.984638],[33.56514,27.883028],[33.584,27.806999],[33.472584,27.812805],[33.546806,27.702194],[33.502109,27.659973],[33.626335,27.494417],[33.728054,27.310749],[33.838055,27.259222],[33.832749,27.110527],[33.906971,27.05164],[33.9515,26.847221],[33.93536,26.675888],[34.017692,26.612667],[34.113388,26.405056],[34.181027,26.329916],[34.223667,26.204639],[34.306526,26.087528],[34.418804,25.869556],[34.573387,25.693111],[34.638527,25.578722],[34.701168,25.39839],[34.813137,25.200138],[34.947887,25.002361],[34.997612,24.825611],[35.066444,24.761555],[35.102695,24.640722],[35.165832,24.567888],[35.138363,24.519443],[35.228527,24.409027],[35.314446,24.362333],[35.511696,24.111889],[35.584583,24.087973],[35.607918,24.02075],[35.722168,23.992834],[35.69439,23.911638],[35.510334,23.978666],[35.474835,23.804112],[35.516998,23.7605],[35.487388,23.492889],[35.534805,23.423889],[35.575916,23.213528],[35.62336,23.146889]]]},"properties":{"name":"埃及","name_en":"EGYPT","id":"EGY"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[92.608803,21.975861],[92.626663,21.884583],[92.601219,21.699223],[92.619446,21.496056],[92.673668,21.291277],[92.593559,21.245167],[92.543587,21.376055],[92.423836,21.379168],[92.388862,21.470362],[92.196808,21.316528],[92.218307,21.259556],[92.198029,21.154583],[92.254974,21.061527],[92.272942,20.906639],[92.211693,20.925278],[92.175278,21.027445],[92.053306,21.163166],[92.028862,21.340221],[91.953529,21.450222],[92.001915,21.516306],[91.999,21.574583],[92.040863,21.669001],[91.98175,21.655972],[91.950974,21.707666],[91.890251,22.015223],[91.781807,22.234333],[91.742142,22.409056],[91.599197,22.633389],[91.436859,22.777222],[91.34211,22.776445],[91.116386,22.811861],[91.028664,22.799639],[90.93753,22.856112],[90.77597,22.86075],[90.67308,22.989973],[90.623528,23.00436],[90.56633,23.10364],[90.652389,23.24225],[90.598663,23.339333],[90.585586,23.466944],[90.707474,23.493889],[90.707275,23.57325],[90.763885,23.643223],[90.759392,23.718527],[90.635002,23.679167],[90.553139,23.571501],[90.298637,23.764444],[90.221031,23.72164],[90.397583,23.602139],[90.427696,23.552805],[90.505363,23.57214],[90.567948,23.509777],[90.553947,23.426332],[90.420364,23.416111],[90.276497,23.450222],[90.164139,23.524195],[90.131058,23.590805],[89.970024,23.658138],[89.917946,23.721556],[89.791473,23.807722],[89.629692,23.845612],[89.53183,23.825472],[89.363587,23.951584],[89.223557,23.923805],[89.304695,23.869638],[89.402885,23.898834],[89.499558,23.778778],[89.592857,23.797472],[89.701668,23.776861],[89.856667,23.660473],[89.934609,23.643028],[90.002083,23.580917],[90.08297,23.573],[90.158974,23.482529],[90.169998,23.346611],[90.087082,23.272806],[90.202278,23.225555],[90.164719,23.187889],[90.219002,23.182945],[90.248527,23.162083],[90.309113,23.112806],[90.292969,22.948889],[90.355858,22.915056],[90.321304,22.850166],[90.373527,22.760195],[90.436607,22.760973],[90.572304,22.541],[90.612442,22.305889],[90.450691,22.077555],[90.373085,22.112833],[90.277809,22.05611],[90.246948,21.82011],[90.175552,21.78911],[90.081612,21.835472],[90.115837,21.887583],[90.081886,21.959778],[89.957863,21.978945],[89.890526,22.121056],[89.852837,22.067862],[89.885445,21.905527],[89.776169,21.830528],[89.675613,21.837668],[89.659225,21.751112],[89.569252,21.847918],[89.590111,21.938583],[89.525085,21.956333],[89.460693,21.852194],[89.484253,21.786444],[89.39064,21.708445],[89.292725,21.75639],[89.107941,21.810472],[89.083557,21.938555],[89.090721,22.009388],[89.049141,22.092501],[89.075974,22.199472],[89.00647,22.283277],[89.006638,22.422638],[88.942253,22.762417],[88.971611,22.844528],[88.911446,22.894945],[88.873169,23.078777],[88.948112,23.174862],[88.923248,23.232611],[88.727944,23.257416],[88.774361,23.443195],[88.64917,23.606972],[88.57061,23.6455],[88.613197,23.810499],[88.737641,23.905861],[88.760361,24.005083],[88.705307,24.086945],[88.731972,24.200083],[88.708031,24.316334],[88.547386,24.311251],[88.379837,24.395445],[88.341972,24.438],[88.20372,24.474777],[88.120613,24.521944],[88.083862,24.623806],[88.028335,24.688334],[88.16214,24.848694],[88.163528,24.944834],[88.221336,24.959917],[88.315918,24.881945],[88.444778,25.03775],[88.438698,25.182278],[88.708252,25.209499],[88.797142,25.174999],[88.835831,25.211527],[88.922165,25.172251],[88.946472,25.251249],[88.909554,25.320139],[88.834167,25.371277],[88.838974,25.459528],[88.759697,25.529194],[88.664612,25.476862],[88.548142,25.51689],[88.443581,25.605667],[88.446945,25.668222],[88.267998,25.788889],[88.11467,25.802055],[88.086502,25.931444],[88.170609,26.018723],[88.180359,26.144722],[88.351586,26.218555],[88.358803,26.301306],[88.445419,26.365999],[88.470497,26.465334],[88.345253,26.504723],[88.388306,26.599222],[88.523415,26.485027],[88.683113,26.414362],[88.721581,26.31925],[88.795639,26.31214],[88.857002,26.231806],[89.065781,26.2635],[88.919113,26.412222],[88.947723,26.439417],[89.100166,26.395971],[89.105003,26.283556],[89.16758,26.138639],[89.357391,26.008333],[89.469139,26.000444],[89.578056,26.025139],[89.64386,26.225721],[89.744141,26.156694],[89.800667,26.034277],[89.878334,25.924805],[89.838554,25.883139],[89.822556,25.73275],[89.869003,25.664862],[89.868637,25.582611],[89.815666,25.371639],[89.834473,25.296778],[89.952225,25.302029],[90.10778,25.2265],[90.31839,25.187361],[90.443169,25.145584],[90.648972,25.185888],[90.838859,25.153305],[90.957336,25.159527],[91.083809,25.196417],[91.261498,25.202389],[91.476471,25.135139],[91.584503,25.165583],[91.632385,25.122639],[91.759941,25.168777],[92.019531,25.184999],[92.122391,25.166222],[92.21875,25.100639],[92.340859,25.072889],[92.463219,24.959917],[92.489556,24.868139],[92.296585,24.850416],[92.203613,24.625639],[92.128807,24.513111],[92.137581,24.398834],[92.010498,24.383167],[91.920364,24.326416],[91.906113,24.145166],[91.757385,24.236305],[91.733948,24.135778],[91.652748,24.187529],[91.637863,24.105305],[91.536942,24.070972],[91.412666,24.108444],[91.370193,23.977583],[91.302475,23.987667],[91.227059,23.880777],[91.21933,23.74575],[91.162666,23.741945],[91.150948,23.641138],[91.197052,23.519527],[91.243416,23.484083],[91.319778,23.247305],[91.379776,23.175222],[91.427666,23.259056],[91.497307,23.186945],[91.54464,22.992584],[91.575279,22.963167],[91.71772,22.9855],[91.813141,23.068028],[91.770416,23.267611],[91.84214,23.399918],[91.935753,23.429806],[91.966553,23.487139],[91.938751,23.654139],[92.074112,23.645222],[92.143974,23.726528],[92.288086,23.697945],[92.272835,23.641195],[92.381027,23.30489],[92.349892,23.191195],[92.383308,23.073473],[92.374969,22.928528],[92.416,22.909166],[92.474609,22.745056],[92.516281,22.716249],[92.545219,22.46525],[92.606476,22.131945],[92.608803,21.975861]]],[[[90.666557,22.141916],[90.611054,22.158194],[90.670586,22.278444],[90.671417,22.473888],[90.587555,22.572222],[90.556946,22.693445],[90.659363,22.784611],[90.735527,22.766861],[90.785614,22.613111],[90.867806,22.51811],[90.888947,22.445],[90.819778,22.136],[90.674858,22.070723],[90.666557,22.141916]]],[[[90.437195,23.065195],[90.442085,23.019833],[90.331642,22.996916],[90.330971,23.104778],[90.214195,23.191528],[90.212364,23.255251],[90.333916,23.367361],[90.485916,23.261417],[90.437195,23.065195]]],[[[90.798096,22.77824],[90.934639,22.807388],[91.020164,22.715389],[91.053444,22.616222],[90.955025,22.548084],[90.849198,22.656944],[90.798096,22.77824]]],[[[91.179748,22.310389],[91.169777,22.205805],[91.065109,22.17086],[91.042808,22.221445],[91.04567,22.509695],[91.127472,22.483667],[91.179748,22.310389]]],[[[91.516197,22.359556],[91.400719,22.436111],[91.392609,22.554388],[91.450638,22.624695],[91.545441,22.469334],[91.516197,22.359556]]],[[[90.417252,22.91625],[90.38028,23.001862],[90.538887,22.957777],[90.545334,22.907723],[90.427803,22.841749],[90.417252,22.91625]]],[[[91.878364,21.540638],[91.884224,21.675388],[91.948387,21.693361],[91.989029,21.619612],[91.974136,21.509027],[91.878364,21.540638]]],[[[90.575859,22.80489],[90.529999,22.871695],[90.552109,22.90539],[90.557526,22.942278],[90.649559,22.894056],[90.575859,22.80489]]],[[[90.652779,23.603867],[90.694115,23.52861],[90.585113,23.488277],[90.570641,23.590584],[90.652779,23.603867]]],[[[90.180115,23.240917],[90.120865,23.292723],[90.180748,23.337778],[90.255722,23.311695],[90.180115,23.240917]]],[[[90.497925,23.179928],[90.493775,23.299028],[90.5495,23.289473],[90.497925,23.179928]]],[[[91.834747,21.716528],[91.840919,21.896278],[91.894028,21.858667],[91.834747,21.716528]]]]},"properties":{"name":"孟加拉国","name_en":"BANGLADESH","id":"BGD"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.605074,11.696975],[3.548418,11.743756],[3.468482,11.862899],[3.307631,11.887661],[3.260566,12.011599],[3.001497,12.272345],[2.866644,12.389774],[2.775167,12.411002],[2.663131,12.304181],[2.385481,12.235548],[2.399829,12.142663],[2.468418,11.99462],[2.405395,11.901612],[2.059467,12.35238],[2.152112,12.418606],[2.272632,12.426311],[2.217357,12.525085],[2.216766,12.604406],[2.122747,12.665193],[2.098688,12.726534],[1.986293,12.738781],[1.922387,12.701801],[1.873899,12.618222],[1.570111,12.631305],[1.051905,13.05794],[0.992786,13.059218],[0.991822,13.37092],[1.110174,13.323479],[1.14364,13.39312],[1.076902,13.440118],[1.005951,13.558324],[0.897423,13.624112],[0.781645,13.642696],[0.772605,13.692051],[0.635518,13.693429],[0.619368,13.777657],[0.526861,13.847084],[0.483209,13.951315],[0.398786,14.027875],[0.35735,14.139214],[0.391382,14.265839],[0.362986,14.33568],[0.288968,14.364031],[0.176769,14.492416],[0.166251,14.533439],[0.202613,14.762717],[0.235736,14.886071],[0.229351,14.989671],[0.401776,14.9696],[0.512085,15.001424],[0.694171,14.947373],[0.973189,14.97895],[1.32403,15.265145],[1.912566,15.306183],[2.62879,15.367121],[3.097902,15.341659],[3.527506,15.341487],[3.538171,15.488314],[3.60766,15.526161],[3.706119,15.639359],[3.872143,15.691882],[3.942026,15.935373],[4.004404,15.985981],[3.987742,16.060646],[4.076468,16.320419],[4.076758,16.91231],[4.241203,16.987701],[4.239104,17.495457],[4.241542,18.389225],[4.242888,19.136717],[4.824817,19.252298],[5.817081,19.43771],[6.502543,20.046991],[7.160677,20.619377],[7.445678,20.842468],[8.002944,21.181105],[8.601714,21.544872],[9.071902,21.827499],[9.575288,22.129536],[10.051885,22.407286],[10.577701,22.716612],[11.432016,23.214809],[11.979548,23.525026],[12.434785,23.422071],[13.397975,23.217527],[13.544736,23.157],[13.680397,23.072237],[14.189322,22.644482],[14.995867,23.001894],[15.138073,22.28812],[15.191867,21.989744],[15.19843,21.491306],[15.288579,21.432322],[15.625593,20.96324],[15.546157,20.880419],[15.590104,20.774473],[15.745673,20.629545],[15.865157,20.462461],[15.995643,20.348471],[15.753551,19.947784],[15.676233,19.359041],[15.593798,18.731867],[15.564957,18.146376],[15.539317,17.599869],[15.505546,16.897871],[14.956651,16.325327],[14.610407,15.956042],[14.384764,15.731555],[14.275917,15.588231],[13.970182,15.156531],[13.869507,15.042839],[13.789683,14.863215],[13.809959,14.721726],[13.677313,14.63656],[13.696021,14.551124],[13.640937,14.513723],[13.493393,14.474606],[13.485628,14.358273],[13.634547,13.710678],[13.341101,13.710021],[13.248272,13.613017],[13.20834,13.526626],[13.026216,13.530968],[12.874446,13.470367],[12.78741,13.361183],[12.676494,13.274291],[12.589194,13.277809],[12.55415,13.161355],[12.470857,13.063332],[12.287055,13.091961],[12.256981,13.114476],[12.104239,13.09346],[11.875435,13.249657],[11.695594,13.287005],[11.539631,13.347958],[11.395575,13.370079],[11.132577,13.375073],[10.669226,13.356901],[10.466419,13.282501],[10.207086,13.267818],[9.996533,13.163276],[9.650239,12.803607],[9.390266,12.823123],[9.305603,12.811205],[9.159983,12.833766],[8.956509,12.839922],[8.648481,12.938562],[8.564825,13.038271],[8.499374,13.067705],[8.415629,13.05485],[8.255923,13.207561],[8.067595,13.302458],[7.804099,13.33424],[7.426315,13.110494],[7.227887,13.110927],[7.151635,13.032304],[7.063073,13.000966],[6.928008,12.989853],[6.818586,13.117972],[6.677834,13.355463],[6.433632,13.591984],[6.283037,13.666857],[6.149414,13.642835],[6.084768,13.679957],[5.753158,13.794416],[5.526512,13.892007],[5.35497,13.844792],[5.270488,13.746101],[4.909519,13.748611],[4.870761,13.782478],[4.464738,13.703427],[4.212103,13.484127],[4.130281,13.472634],[4.129665,13.148302],[4.096463,12.996067],[3.942208,12.76419],[3.642556,12.520149],[3.657529,12.268548],[3.630781,12.11712],[3.667939,11.99166],[3.61767,11.916888],[3.622576,11.852487],[3.679195,11.758454],[3.605074,11.696975]]]},"properties":{"name":"尼日尔","name_en":"Niger","id":"NER"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[51.260124,24.609041],[51.099758,24.47333],[50.929451,24.548285],[50.833508,24.743839],[50.872444,24.764029],[50.857777,24.915527],[50.805473,24.97839],[50.82214,25.032194],[50.777,25.109806],[50.76339,25.498888],[50.943889,25.602638],[50.898918,25.70789],[50.999473,25.952389],[51.048832,26.037889],[51.246193,26.152195],[51.368557,26.098167],[51.365917,26.050417],[51.44014,25.947361],[51.516972,25.951055],[51.582638,25.908445],[51.571415,25.772223],[51.502472,25.602333],[51.481888,25.502945],[51.532165,25.436417],[51.528999,25.290556],[51.605915,25.266167],[51.627445,25.205528],[51.636639,25.014305],[51.522835,24.852806],[51.425835,24.633389],[51.354332,24.649834],[51.260124,24.609041]]]},"properties":{"name":"卡塔尔","name_en":"QATAR","id":"QAT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.000237,-24.752991],[19.999882,-25.383348],[19.998844,-26.266268],[19.997885,-27.275673],[19.997274,-27.906611],[19.996761,-28.433113],[19.872667,-28.442833],[19.80776,-28.507708],[19.729679,-28.489332],[19.670256,-28.534422],[19.562378,-28.531885],[19.492449,-28.677385],[19.40477,-28.739849],[19.295662,-28.736004],[19.240953,-28.815721],[19.208967,-28.940571],[19.111198,-28.97143],[18.94862,-28.864576],[18.732044,-28.841171],[18.559448,-28.860701],[18.434662,-28.901319],[18.265015,-28.883556],[18.17901,-28.915888],[18.083605,-28.876757],[17.920086,-28.771666],[17.696325,-28.751398],[17.610027,-28.759741],[17.597996,-28.700886],[17.409491,-28.722952],[17.417404,-28.567707],[17.329664,-28.471457],[17.403767,-28.41106],[17.374403,-28.28727],[17.311808,-28.225023],[17.220682,-28.251648],[17.179968,-28.204765],[17.193094,-28.129667],[17.083324,-28.037775],[17.001648,-28.077005],[16.899778,-28.071592],[16.817955,-28.272507],[16.774389,-28.441629],[16.732834,-28.492819],[16.634956,-28.489346],[16.565689,-28.555614],[16.47328,-28.583567],[16.444652,-28.629625],[16.273197,-28.503584],[16.033852,-28.27191],[15.88146,-28.158609],[15.70359,-27.990356],[15.674224,-27.900356],[15.545425,-27.7544],[15.522297,-27.65258],[15.416637,-27.483198],[15.298481,-27.328312],[15.259894,-27.191586],[15.220854,-26.927652],[15.151556,-26.909185],[15.077271,-26.676813],[15.160457,-26.636257],[15.119935,-26.449633],[14.97236,-26.347548],[14.945931,-26.282259],[14.977599,-26.102791],[14.954214,-25.996975],[14.908266,-25.926512],[14.911247,-25.858667],[14.829189,-25.745541],[14.879885,-25.572695],[14.809795,-25.375496],[14.801406,-25.29562],[14.877337,-25.089895],[14.793007,-24.912031],[14.796477,-24.838974],[14.726133,-24.704645],[14.615663,-24.587553],[14.60251,-24.441744],[14.485042,-24.17692],[14.457378,-24.068703],[14.459699,-23.962551],[14.498033,-23.924965],[14.513739,-23.630249],[14.439545,-23.418085],[14.502334,-23.379885],[14.49522,-23.287396],[14.408498,-23.010515],[14.540353,-22.897201],[14.52873,-22.638613],[14.3924,-22.279882],[14.291875,-22.1392],[14.120117,-21.932308],[13.956157,-21.783401],[13.971406,-21.714174],[13.881078,-21.588392],[13.85743,-21.504129],[13.577732,-21.13785],[13.515865,-20.985569],[13.38012,-20.801544],[13.356163,-20.671934],[13.240384,-20.463303],[13.22834,-20.324032],[13.189879,-20.23922],[13.048917,-20.098444],[13.007959,-19.949291],[12.923939,-19.777834],[12.707084,-19.394859],[12.702284,-19.33886],[12.561756,-19.084654],[12.491933,-19.023338],[12.462692,-18.926306],[12.29575,-18.712934],[12.081374,-18.541771],[12.024718,-18.478989],[11.953639,-18.249565],[11.863005,-18.143677],[11.832278,-18.036713],[11.755176,-17.897347],[11.733165,-17.810278],[11.715629,-17.548418],[11.757548,-17.252075],[11.82057,-17.263718],[11.947441,-17.182003],[12.083042,-17.144131],[12.167505,-17.158586],[12.243879,-17.234655],[12.41289,-17.20611],[12.441429,-17.26244],[12.565639,-17.242144],[12.809259,-17.111607],[12.880014,-17.042763],[12.992523,-16.981487],[13.142432,-16.959894],[13.271964,-16.995617],[13.378569,-16.975351],[13.460854,-17.013067],[13.52064,-17.085833],[13.510707,-17.135159],[13.677514,-17.246449],[13.880518,-17.350985],[13.956886,-17.433373],[14.094234,-17.442467],[14.214321,-17.384056],[14.638009,-17.390001],[15.149344,-17.389896],[17,-17.395887],[17.707592,-17.394087],[18.422714,-17.394428],[18.548374,-17.566753],[18.618503,-17.637251],[18.790915,-17.768038],[18.898995,-17.819267],[19.107678,-17.840012],[19.249422,-17.820696],[19.404259,-17.870722],[19.661925,-17.852718],[19.749449,-17.913738],[19.797365,-17.87714],[19.9128,-17.865885],[20.114037,-17.911909],[20.316831,-17.86517],[20.453274,-17.916662],[20.547609,-17.982574],[20.646261,-17.978453],[20.812008,-18.040735],[20.94434,-17.967434],[21.219751,-17.932116],[21.441834,-18.024166],[22.929178,-17.739391],[23.428154,-17.63928],[24.215244,-17.48214],[24.339825,-17.499388],[24.474314,-17.492106],[24.510254,-17.544741],[24.601843,-17.542686],[24.713196,-17.500038],[24.811829,-17.53731],[25.035522,-17.591057],[25.193281,-17.773207],[25.2567,-17.787922],[25.162907,-17.780813],[25.068766,-17.843815],[24.966269,-17.804184],[24.806965,-17.857407],[24.632158,-17.981754],[24.575153,-18.0651],[24.489399,-18.046997],[24.423664,-17.953142],[24.30723,-18.002279],[24.201082,-18.016554],[24.117397,-18.104357],[23.935255,-18.205763],[23.908863,-18.26354],[23.791918,-18.382067],[23.61286,-18.504047],[23.568802,-18.476692],[23.556379,-18.340744],[23.527056,-18.273859],[23.412929,-18.204363],[23.327844,-18.079741],[23.296621,-17.997524],[23.103615,-17.998858],[22.988407,-18.018293],[21.468939,-18.318029],[20.998827,-18.317877],[20.997557,-19.171883],[20.997273,-20],[20.99695,-20.957802],[21.001742,-22.003838],[20,-22.001778],[20,-23.000799],[20,-23.833797],[20.000237,-24.752991]]]},"properties":{"name":"纳米比亚","name_en":"NAMIBIA","id":"NAM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.359917,42.312176],[22.461,42.340885],[22.533724,42.420296],[22.55331,42.50034],[22.470329,42.560928],[22.486229,42.750229],[22.43973,42.806221],[22.586908,42.890301],[22.750811,42.889996],[22.78912,42.980614],[22.980762,43.111023],[22.985187,43.201569],[22.897867,43.224972],[22.827429,43.328751],[22.658491,43.42691],[22.534889,43.470406],[22.476745,43.656979],[22.408287,43.697819],[22.356945,43.812294],[22.408533,44.005283],[22.621105,44.062893],[22.611484,44.1133],[22.676144,44.21545],[22.939028,44.108612],[23.012167,44.023556],[22.892166,43.987389],[22.851973,43.896057],[22.886694,43.844917],[23.115612,43.811417],[23.262722,43.851418],[23.444334,43.862362],[23.623028,43.800083],[23.71875,43.814724],[23.894527,43.759472],[23.990055,43.751667],[24.180195,43.689751],[24.345278,43.702057],[24.551889,43.767502],[24.731527,43.716835],[24.993889,43.738029],[25.101584,43.693027],[25.265444,43.68922],[25.371555,43.62825],[25.584028,43.654194],[25.78861,43.720112],[25.959888,43.869057],[26.06214,43.913944],[26.136612,43.989529],[26.31864,44.039833],[26.609501,44.063446],[26.783445,44.093166],[26.904667,44.141224],[27.153473,44.148861],[27.286528,44.133026],[27.408638,44.028027],[27.619167,44.023861],[27.720972,43.969387],[27.845917,43.970112],[27.929277,44.00861],[28.006027,43.851196],[28.241694,43.774918],[28.477444,43.735249],[28.583778,43.737362],[28.573973,43.609665],[28.609278,43.525112],[28.531111,43.424221],[28.454222,43.381443],[28.365278,43.416668],[28.150194,43.407055],[28.097279,43.375252],[27.955999,43.164612],[27.899723,43.045723],[27.903279,42.707195],[27.735306,42.715443],[27.649666,42.642887],[27.643944,42.580891],[27.52025,42.560139],[27.456612,42.469723],[27.528639,42.437832],[27.654777,42.457806],[27.707306,42.429806],[27.763361,42.253113],[27.906,42.147694],[28.031334,41.987026],[27.872888,42.00964],[27.808527,41.958584],[27.704361,41.98489],[27.546444,41.923862],[27.381333,42.053612],[27.274334,42.107613],[27.21275,42.069695],[27.033945,42.084915],[26.971277,42.004444],[26.623833,41.968472],[26.535,41.83625],[26.381472,41.836056],[26.361889,41.719696],[26.177166,41.754581],[26.069279,41.715805],[26.189277,41.530693],[26.135,41.366112],[25.890362,41.30986],[25.830389,41.349415],[25.736889,41.322613],[25.564612,41.320999],[25.333529,41.244667],[25.237499,41.256638],[25.130945,41.345696],[24.931944,41.412193],[24.832611,41.404888],[24.606056,41.452751],[24.542305,41.57489],[24.371529,41.527138],[24.265444,41.580002],[24.068556,41.531307],[24.076111,41.471279],[23.911528,41.463749],[23.654888,41.381054],[23.543333,41.407917],[23.304556,41.409248],[23.237722,41.3405],[23.096945,41.323193],[22.944834,41.346783],[22.972889,41.559807],[22.960011,41.646831],[23.033573,41.708698],[22.970232,41.770435],[22.87335,41.936409],[22.867498,42.015656],[22.674755,42.065029],[22.52834,42.1399],[22.359917,42.312176]]]},"properties":{"name":"保加利亚","name_en":"Bulgaria","id":"BGR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.647076,-22.245634],[-62.794682,-22.162548],[-62.808063,-22.00444],[-63.935253,-22.002724],[-64.036491,-22.245047],[-64.078308,-22.292671],[-64.169571,-22.469729],[-64.207451,-22.495254],[-64.289848,-22.79612],[-64.424309,-22.674414],[-64.44558,-22.519482],[-64.57119,-22.363108],[-64.541176,-22.290604],[-64.65525,-22.191767],[-64.742165,-22.19471],[-64.871742,-22.12039],[-64.983742,-22.086403],[-65.47123,-22.091839],[-65.574562,-22.07744],[-65.656761,-22.111191],[-65.748398,-22.109356],[-65.81237,-22.069746],[-65.92617,-21.932043],[-66.043137,-21.916096],[-66.078705,-21.830694],[-66.221611,-21.781277],[-66.274422,-21.943729],[-66.288277,-22.081659],[-66.347893,-22.123537],[-66.675148,-22.204031],[-66.73935,-22.236582],[-66.782875,-22.429701],[-67.024536,-22.537531],[-67.013504,-22.644667],[-67.12217,-22.71084],[-67.177498,-22.804693],[-67.57222,-22.896133],[-67.7939,-22.873558],[-67.872421,-22.829714],[-67.88298,-22.686295],[-67.848099,-22.546459],[-67.946129,-22.32144],[-67.92083,-22.229277],[-67.963882,-22.048464],[-68.064438,-21.975716],[-68.059876,-21.758326],[-68.177132,-21.599545],[-68.172417,-21.296675],[-68.295502,-21.089737],[-68.400589,-20.937944],[-68.5047,-20.936312],[-68.548363,-20.866165],[-68.549171,-20.726265],[-68.502602,-20.670551],[-68.538551,-20.560022],[-68.678207,-20.498291],[-68.735451,-20.44245],[-68.741539,-20.364286],[-68.663246,-20.324041],[-68.712875,-20.239777],[-68.704674,-20.141741],[-68.780464,-20.082048],[-68.559662,-20.044783],[-68.523971,-19.927412],[-68.529846,-19.842819],[-68.606827,-19.818111],[-68.684624,-19.724897],[-68.595604,-19.638296],[-68.410347,-19.397928],[-68.507996,-19.31844],[-68.616211,-19.269604],[-68.669914,-19.188759],[-68.799461,-19.086332],[-68.897957,-19.031897],[-68.954407,-18.935547],[-68.909378,-18.87579],[-68.977989,-18.749912],[-69.023674,-18.455172],[-69.070061,-18.238306],[-69.135544,-18.165943],[-69.067223,-18.071812],[-69.104187,-18.029619],[-69.299141,-17.943911],[-69.308182,-17.801001],[-69.344681,-17.717327],[-69.461487,-17.605848],[-69.462647,-17.507553],[-69.462876,-17.375532],[-69.610977,-17.254417],[-69.551376,-17.161558],[-69.374825,-17.078199],[-69.391891,-17.020998],[-69.181992,-16.793577],[-69.1735,-16.740662],[-68.996452,-16.659943],[-69.031616,-16.560858],[-68.982368,-16.43272],[-68.817299,-16.342781],[-68.817986,-16.315249],[-68.962921,-16.188629],[-69.09922,-16.219093],[-69.235939,-16.143026],[-69.298004,-15.938698],[-69.413856,-15.62077],[-69.296959,-15.418922],[-69.264549,-15.335523],[-69.185593,-15.261448],[-69.190719,-15.163446],[-69.279549,-15.112489],[-69.374557,-14.954077],[-69.348762,-14.903423],[-69.352883,-14.793632],[-69.251694,-14.758834],[-69.236153,-14.601929],[-69.146095,-14.579051],[-69.153755,-14.512995],[-68.979767,-14.387169],[-68.981529,-14.236923],[-68.858139,-14.220421],[-68.854919,-14.121583],[-68.965302,-13.973227],[-68.959191,-13.882266],[-69.074356,-13.64808],[-68.997284,-13.652464],[-68.941727,-13.485863],[-68.964813,-13.194212],[-68.944115,-13.072187],[-68.970032,-13.000739],[-68.962212,-12.855412],[-68.874176,-12.750437],[-68.750259,-12.720067],[-68.753471,-12.592457],[-68.679298,-12.497149],[-68.92421,-11.993988],[-69.027916,-11.81721],[-69.566444,-10.956658],[-69.433586,-10.951978],[-69.148506,-10.96428],[-68.974594,-11.003974],[-68.750626,-11.006585],[-68.776924,-11.124155],[-68.738495,-11.143052],[-68.587486,-11.110317],[-68.512932,-11.045891],[-68.414558,-11.041128],[-68.289696,-10.990559],[-68.184837,-10.835507],[-68.059845,-10.679408],[-67.869614,-10.654002],[-67.734154,-10.716403],[-67.684845,-10.628266],[-67.588333,-10.518331],[-67.443138,-10.449774],[-67.406563,-10.369332],[-67.327187,-10.374251],[-67.315148,-10.316207],[-67.181442,-10.337565],[-67.134956,-10.287622],[-67.029045,-10.254179],[-66.883392,-10.080641],[-66.62069,-9.897965],[-66.397034,-9.865773],[-66.315124,-9.830495],[-66.205009,-9.827606],[-66.167313,-9.787003],[-66.064217,-9.772218],[-66.032013,-9.803523],[-65.920715,-9.76603],[-65.871674,-9.787895],[-65.669052,-9.778728],[-65.629997,-9.821809],[-65.504669,-9.788248],[-65.439896,-9.684632],[-65.359665,-9.715076],[-65.291023,-9.863836],[-65.32254,-9.902105],[-65.322853,-10.042677],[-65.284111,-10.236426],[-65.37365,-10.365348],[-65.431038,-10.479697],[-65.374863,-10.672103],[-65.389,-10.819226],[-65.314308,-10.873999],[-65.289299,-10.980406],[-65.327309,-11.02529],[-65.322304,-11.111896],[-65.390503,-11.166992],[-65.374626,-11.296089],[-65.287056,-11.511685],[-65.231316,-11.510736],[-65.180931,-11.609385],[-65.185036,-11.761492],[-65.0616,-11.742412],[-64.992996,-11.999366],[-64.787414,-12.041586],[-64.704163,-12.151756],[-64.611969,-12.212958],[-64.519432,-12.241677],[-64.468986,-12.29922],[-64.492973,-12.365522],[-64.394356,-12.455478],[-64.175133,-12.486083],[-64.024795,-12.533273],[-63.89912,-12.53395],[-63.864033,-12.467217],[-63.773636,-12.454474],[-63.660496,-12.470612],[-63.544666,-12.552314],[-63.481968,-12.557039],[-63.426514,-12.65101],[-63.326565,-12.704915],[-63.24511,-12.712902],[-63.134041,-12.63998],[-63.077675,-12.655174],[-63.058113,-12.743628],[-62.999924,-12.845116],[-62.909786,-12.864772],[-62.781326,-13.012926],[-62.68074,-12.966549],[-62.628777,-13.045328],[-62.486015,-13.065432],[-62.367844,-13.145263],[-62.279587,-13.150793],[-62.222023,-13.118057],[-62.108517,-13.148521],[-62.108082,-13.256899],[-62.008858,-13.351757],[-61.861839,-13.45059],[-61.824284,-13.539249],[-61.59861,-13.507357],[-61.495636,-13.553751],[-61.342575,-13.491897],[-61.254001,-13.522874],[-61.137001,-13.518427],[-60.968815,-13.537951],[-60.887669,-13.629843],[-60.737103,-13.693538],[-60.670754,-13.748438],[-60.478046,-13.802892],[-60.441448,-13.933],[-60.382343,-13.98168],[-60.421234,-14.069685],[-60.471111,-14.098206],[-60.48159,-14.181334],[-60.449173,-14.28937],[-60.38826,-14.368609],[-60.392593,-14.428671],[-60.337593,-14.554859],[-60.256886,-14.624276],[-60.252533,-15.10063],[-60.565289,-15.10499],[-60.235813,-15.476063],[-60.205994,-15.901564],[-60.172978,-16.264633],[-59.912891,-16.275444],[-59.357067,-16.279503],[-59.226883,-16.29031],[-58.47073,-16.324831],[-58.37162,-16.276375],[-58.308224,-16.276127],[-58.340462,-16.541655],[-58.455608,-16.657335],[-58.476498,-16.821632],[-58.47036,-16.938763],[-58.386475,-17.11743],[-58.392014,-17.199553],[-58.27055,-17.310669],[-58.255753,-17.354225],[-58.056191,-17.456871],[-58.002548,-17.519537],[-57.902039,-17.45998],[-57.803253,-17.521358],[-57.785053,-17.645491],[-57.714809,-17.733715],[-57.70229,-17.86034],[-57.611267,-18.021019],[-57.573059,-18.127602],[-57.470852,-18.231329],[-57.555351,-18.254503],[-57.601482,-18.363106],[-57.769115,-18.903246],[-57.7202,-18.91416],[-57.705193,-19.001463],[-57.777599,-19.035068],[-57.882301,-19.240784],[-58.134025,-19.76053],[-57.987908,-19.890718],[-57.877327,-19.96858],[-58.050934,-20.103136],[-58.163456,-20.162462],[-58.159119,-20.073216],[-58.201763,-19.887344],[-58.202518,-19.789989],[-58.442772,-19.665741],[-58.641697,-19.577969],[-59.119808,-19.347153],[-59.983578,-19.294041],[-60.599365,-19.454538],[-61.687523,-19.631702],[-61.766518,-19.681093],[-61.865788,-19.965008],[-61.935696,-20.112532],[-62.270019,-20.567064],[-62.258217,-21.062191],[-62.492615,-21.74123],[-62.647076,-22.245634]]]},"properties":{"name":"玻利维亚","name_en":"Bolivia","id":"BOL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-2.689926,9.488792],[-2.779201,9.585745],[-2.754237,9.642014],[-2.797213,9.741259],[-2.73741,9.834211],[-2.752376,9.948427],[-2.791758,10.05166],[-2.799592,10.180722],[-2.762533,10.238597],[-2.854034,10.318419],[-2.839497,10.376146],[-2.942349,10.612575],[-2.911277,10.686227],[-2.869361,10.878501],[-2.825063,10.913298],[-2.834325,11.004156],[-2.505444,10.98345],[-2.255023,10.988378],[-2.157987,10.97786],[-1.756003,10.982121],[-1.586861,11.01897],[-1.43178,11.018033],[-1.397374,10.990245],[-1.121862,10.982784],[-1.119552,11.00098],[-0.688957,10.990515],[-0.633894,10.938537],[-0.361798,11.070609],[-0.273275,11.173301],[-0.142006,11.138977],[-0.111697,11.090066],[0.022753,11.08191],[0.032068,10.984734],[-0.011677,10.956484],[-0.0263,10.825552],[-0.088137,10.714592],[-0.054059,10.631461],[0.047953,10.587811],[0.140989,10.515159],[0.169494,10.422465],[0.298845,10.391308],[0.359138,10.252584],[0.347782,10.095751],[0.349397,9.827542],[0.315031,9.724616],[0.377,9.589395],[0.235182,9.566727],[0.227102,9.455466],[0.330866,9.445063],[0.353735,9.491378],[0.447481,9.493739],[0.562796,9.40219],[0.547701,9.318223],[0.470399,9.14627],[0.456855,9.017996],[0.528812,8.875776],[0.49728,8.812919],[0.385897,8.786133],[0.381674,8.749467],[0.466131,8.606551],[0.643657,8.491966],[0.71428,8.384397],[0.725227,8.284056],[0.643356,8.258702],[0.594891,8.20557],[0.597387,7.9753],[0.622495,7.860689],[0.578013,7.616967],[0.518584,7.587568],[0.508634,7.522302],[0.545763,7.398911],[0.646166,7.390156],[0.65836,7.311095],[0.59894,7.132056],[0.599622,7.013436],[0.516299,6.966551],[0.557728,6.901708],[0.52804,6.843082],[0.576387,6.761607],[0.646373,6.741951],[0.637556,6.632189],[0.691153,6.579047],[0.749092,6.441485],[0.865912,6.370354],[0.903841,6.321336],[0.996295,6.323575],[1.091168,6.158789],[1.191649,6.155019],[1.191781,6.104417],[1.075264,6.035741],[0.99566,5.913476],[0.970048,5.820027],[0.907593,5.779448],[0.772489,5.760156],[0.286383,5.776534],[0.069419,5.689298],[0.023362,5.637641],[-0.212782,5.530945],[-0.334936,5.50529],[-0.466799,5.428956],[-0.495814,5.378695],[-0.7241,5.298331],[-0.809011,5.213572],[-1.092569,5.192522],[-1.246983,5.100543],[-1.593886,5.032567],[-1.705557,4.950351],[-1.748389,4.880177],[-1.915239,4.822995],[-1.984228,4.755443],[-2.068393,4.740294],[-2.244823,4.853806],[-2.269858,4.899023],[-2.3759,4.936214],[-2.695227,5.00833],[-3.032925,5.071231],[-3.110742,5.094452],[-3.016188,5.112076],[-2.817815,5.101753],[-2.727679,5.137735],[-2.787052,5.284192],[-2.727837,5.337746],[-2.770461,5.540581],[-2.762861,5.593544],[-2.856848,5.646993],[-2.928384,5.612217],[-2.956828,5.708756],[-3.025537,5.70755],[-3.018393,5.862218],[-3.079238,6.003701],[-3.104023,6.149232],[-3.173252,6.254988],[-3.236648,6.538785],[-3.248404,6.643607],[-3.197204,6.717654],[-3.229418,6.818001],[-3.090311,7.052661],[-2.954354,7.235056],[-2.97756,7.277253],[-2.934699,7.486559],[-2.923468,7.608614],[-2.830357,7.820105],[-2.673052,8.027001],[-2.592008,8.05263],[-2.619182,8.148513],[-2.494896,8.205227],[-2.504456,8.334058],[-2.58717,8.778668],[-2.664097,8.947576],[-2.658345,9.003489],[-2.777426,9.046278],[-2.769123,9.140379],[-2.674664,9.228584],[-2.718738,9.32986],[-2.684118,9.362149],[-2.689926,9.488792]]]},"properties":{"name":"加纳","name_en":"Ghana","id":"GHA"}}, + {"type":"Feature","geometry":null,"properties":{"name":"科科斯群岛(澳)","name_en":"Cocos Islands (AUS.)","id":"CCK"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[74.574114,37.033385],[74.647761,37.071204],[74.739151,37.027989],[74.934966,36.982639],[75.172014,37.013919],[75.175063,36.987451],[75.416929,36.949398],[75.438961,36.759779],[75.648241,36.771042],[75.871456,36.666449],[75.94638,36.589821],[76.032021,36.398116],[75.99126,36.331851],[76.055321,36.252774],[75.936337,36.134669],[75.968676,36.042101],[76.104151,36.018822],[76.16476,35.908885],[76.152676,35.829861],[76.431803,35.85178],[76.592418,35.906272],[76.571329,35.806439],[76.693142,35.747606],[76.75481,35.672983],[76.867099,35.647757],[76.966723,35.591746],[77.055027,35.597782],[77.185583,35.523025],[77.307738,35.540536],[77.441388,35.461072],[77.539449,35.481538],[77.690546,35.448246],[77.829831,35.50723],[77.8373,35.500337],[77.650559,35.367085],[77.15683,35.054695],[77.068359,35.024113],[77.010139,34.956276],[76.863136,34.970833],[76.738861,34.901916],[76.744697,34.844723],[76.671639,34.757416],[76.561806,34.758335],[76.469193,34.791668],[76.385948,34.735943],[76.157913,34.643417],[76.036469,34.670277],[75.749191,34.515835],[75.394974,34.548805],[75.142304,34.662418],[75.018753,34.641499],[74.893753,34.684502],[74.671303,34.700695],[74.58017,34.770111],[74.375557,34.803444],[74.30278,34.797527],[74.148971,34.695278],[73.96022,34.696667],[73.948059,34.573082],[73.89872,34.495777],[73.77697,34.416306],[73.763222,34.359638],[73.899414,34.359806],[73.976219,34.264805],[73.976585,34.211807],[73.904083,34.12225],[73.898171,34.032833],[74.214668,34.038555],[74.261109,33.924805],[74.170082,33.83989],[74.049057,33.808834],[73.966583,33.740391],[74.028442,33.574665],[74.088364,33.573193],[74.178169,33.481667],[74.185082,33.383499],[74.102974,33.270527],[74.082832,33.180752],[74.176247,33.107166],[74.205253,33.043304],[74.351692,33.013138],[74.318031,32.919693],[74.413887,32.903946],[74.466057,32.781361],[74.531525,32.740723],[74.614693,32.757668],[74.675636,32.665779],[74.642197,32.611057],[74.698418,32.484943],[74.856415,32.492668],[74.987892,32.449554],[75.082641,32.480057],[75.312233,32.344299],[75.456619,32.343849],[75.482582,32.287804],[75.395279,32.200222],[75.110558,32.073223],[75.029953,32.083328],[74.973946,32.035332],[74.819092,32.017616],[74.797363,31.953035],[74.60173,31.86496],[74.517754,31.754278],[74.641113,31.464695],[74.550247,31.294695],[74.545303,31.133612],[74.671776,31.100056],[74.573181,30.990892],[74.447762,30.961559],[74.326584,30.898104],[74.313011,30.806717],[74.182136,30.737759],[74.149483,30.660944],[74.019318,30.569868],[74.003387,30.459024],[73.921127,30.44602],[73.875305,30.361389],[73.956665,30.277471],[73.965248,30.191305],[73.803917,30.06986],[73.578224,30.010111],[73.39653,29.938999],[73.274803,29.556168],[73.096611,29.255388],[73.005753,29.156778],[72.94442,29.034111],[72.730194,28.950111],[72.506416,28.82275],[72.411415,28.786222],[72.301941,28.664806],[72.184418,28.358],[71.992027,28.203556],[71.922279,28.113972],[71.899582,27.964195],[71.674889,27.885529],[71.352531,27.866083],[71.221085,27.842751],[70.88533,27.705833],[70.76722,27.714945],[70.678413,27.839056],[70.672112,27.914333],[70.562637,28.019806],[70.47908,28.033751],[70.366165,28.008249],[70.207581,27.885389],[70.107803,27.766861],[70.016281,27.556],[69.936249,27.502111],[69.861969,27.402779],[69.58667,27.177999],[69.513191,27.016861],[69.483719,26.806223],[69.522415,26.736],[69.721863,26.653833],[69.855553,26.582916],[70.024864,26.598722],[70.167748,26.550751],[70.183891,26.486834],[70.172668,26.245083],[70.080444,26.058222],[70.091308,25.965166],[70.145027,25.868528],[70.27539,25.711306],[70.374641,25.681278],[70.526497,25.688528],[70.64003,25.715445],[70.672447,25.661417],[70.665886,25.395971],[70.752502,25.271723],[70.881249,25.145945],[70.917946,24.986389],[70.962502,24.887306],[71.086052,24.693361],[70.989387,24.603167],[71.000725,24.448889],[71.107361,24.433195],[71.050308,24.362249],[70.980858,24.363361],[70.872719,24.304945],[70.805748,24.222723],[70.593559,24.240278],[70.561386,24.358389],[70.57486,24.420305],[70.370308,24.353445],[70.110107,24.284889],[70.024086,24.169361],[69.724587,24.175083],[69.590111,24.286777],[69.504219,24.263],[69.31028,24.276695],[69.199776,24.235195],[69.085441,24.268278],[69.013725,24.229084],[68.939003,24.290861],[68.840309,24.228195],[68.764114,24.284111],[68.749252,23.962055],[68.334946,23.965445],[68.31958,23.920029],[68.286163,23.938305],[68.190391,23.851944],[68.134697,23.865889],[67.996246,23.786722],[67.871971,23.858639],[67.834167,23.8195],[67.652,23.794527],[67.632698,23.83375],[67.493637,23.899973],[67.334442,24.172527],[67.306725,24.314972],[67.369614,24.34775],[67.370163,24.53039],[67.315476,24.575361],[67.432526,24.698194],[67.335503,24.771639],[67.209969,24.811501],[67.056694,24.775499],[66.870308,24.85486],[66.65139,24.829361],[66.68692,24.892723],[66.70414,25.082611],[66.737274,25.196444],[66.678337,25.271111],[66.563225,25.350277],[66.588196,25.435249],[66.558586,25.531889],[66.505585,25.591278],[66.399086,25.583529],[66.29689,25.623917],[66.180748,25.583221],[66.149719,25.477444],[66.342857,25.55139],[66.50592,25.405306],[66.321915,25.466944],[66.125557,25.450722],[65.954941,25.413166],[65.859138,25.420084],[65.640976,25.350555],[65.371056,25.390249],[65.255142,25.382195],[65.226334,25.317249],[65.156418,25.306084],[64.995331,25.325195],[64.749885,25.320944],[64.671837,25.291222],[64.63697,25.212305],[64.543587,25.270472],[64.405975,25.238277],[64.223335,25.318001],[63.945972,25.335806],[63.675083,25.382668],[63.535641,25.345722],[63.474556,25.265833],[63.481861,25.198305],[63.1395,25.25775],[63.007111,25.210638],[62.830891,25.246222],[62.657665,25.261499],[62.494473,25.252861],[62.356224,25.169916],[62.217224,25.215195],[62.084888,25.188084],[62.098362,25.096167],[61.874695,25.102694],[61.844944,25.043444],[61.724167,25.054056],[61.785194,25.15675],[61.610443,25.194944],[61.655613,25.297501],[61.689194,25.799166],[61.768833,25.801777],[61.833027,26.171112],[61.870751,26.24675],[62.061138,26.315416],[62.128082,26.380362],[62.282501,26.35836],[62.264721,26.412695],[62.315056,26.528862],[62.434528,26.568138],[62.608139,26.584999],[62.778694,26.652277],[63.169193,26.647306],[63.199722,26.737972],[63.192139,26.8435],[63.275528,26.864779],[63.255916,27.082945],[63.299251,27.178917],[63.184223,27.241444],[63.05864,27.233194],[62.977249,27.19511],[62.821362,27.212334],[62.781471,27.251417],[62.855389,27.465139],[62.819805,27.805],[62.768223,28.032417],[62.796585,28.208944],[62.786946,28.281195],[62.592304,28.255138],[62.439667,28.407139],[62.296276,28.463444],[62.115776,28.485111],[61.957584,28.548695],[61.804165,28.640167],[61.681027,28.770584],[61.504307,29.007555],[61.503166,29.056417],[61.35775,29.282778],[61.377499,29.335306],[61.125862,29.572945],[60.878613,29.861778],[61.652527,29.625694],[62.455776,29.388971],[63.364498,29.47636],[63.590832,29.490417],[64.032364,29.417694],[64.105308,29.377472],[64.152336,29.449556],[64.266808,29.523834],[64.48761,29.571777],[64.63192,29.581083],[65.067055,29.536222],[65.781136,29.723749],[66.245636,29.85136],[66.358749,29.974445],[66.241669,30.055056],[66.316612,30.242861],[66.354111,30.427278],[66.281059,30.569279],[66.386582,30.933916],[66.562554,30.977612],[66.683166,31.074583],[66.731087,31.2125],[66.969109,31.312611],[67.044472,31.303833],[67.056168,31.230833],[67.166336,31.243389],[67.2715,31.205778],[67.390526,31.216583],[67.620415,31.276388],[67.789864,31.356611],[67.740944,31.414778],[67.66008,31.397223],[67.594696,31.434305],[67.569557,31.534695],[67.742058,31.533722],[67.84314,31.616528],[67.949913,31.633417],[68.064087,31.699389],[68.177498,31.814501],[68.286613,31.757],[68.423027,31.755362],[68.570137,31.827972],[68.701836,31.76989],[68.717003,31.696638],[68.804947,31.609972],[68.900642,31.60125],[69.02417,31.642111],[69.117943,31.703251],[69.197609,31.848389],[69.323502,31.944166],[69.272835,32.151001],[69.28083,32.356388],[69.240692,32.461388],[69.285225,32.53297],[69.385246,32.566555],[69.451225,32.663166],[69.395225,32.781582],[69.47422,32.851055],[69.507111,33.029026],[69.580055,33.097557],[69.722557,33.09314],[69.78653,33.127556],[69.875527,33.095695],[70.023087,33.143276],[70.067307,33.213554],[70.155746,33.221195],[70.326584,33.340473],[70.315392,33.395557],[70.173584,33.525055],[70.197029,33.63361],[70.13697,33.715057],[70.005638,33.733528],[69.865753,33.926918],[69.913498,34.037945],[70.046196,34.036724],[70.238831,33.973141],[70.46772,33.943333],[70.593887,33.964333],[70.767944,33.954861],[70.884941,33.976749],[71.076279,34.0625],[71.126083,34.162418],[71.122055,34.267193],[71.169472,34.363609],[71.08728,34.389137],[71.006805,34.461113],[70.995552,34.554779],[71.087082,34.590443],[71.095665,34.675529],[71.279442,34.805027],[71.30986,34.878834],[71.499252,34.963749],[71.530052,35.072361],[71.674889,35.196529],[71.555809,35.312862],[71.648941,35.452473],[71.593392,35.497528],[71.612221,35.573223],[71.499474,35.626415],[71.546669,35.720222],[71.376724,35.956112],[71.201416,36.035778],[71.245445,36.122776],[71.347443,36.172554],[71.524223,36.320862],[71.656197,36.478222],[71.795776,36.400585],[71.832054,36.505474],[71.935303,36.56089],[72.106224,36.605721],[72.102913,36.648556],[72.302559,36.744999],[72.495224,36.777557],[72.566109,36.832417],[72.656166,36.849834],[72.882637,36.841084],[73.071747,36.889057],[73.403137,36.899139],[73.527779,36.885555],[73.705055,36.912724],[73.84658,36.898613],[73.963196,36.837502],[74.127419,36.84811],[74.152031,36.909863],[74.264,36.904446],[74.427864,36.997639],[74.574114,37.033385]]],[[[68.084556,23.800861],[68.191277,23.787556],[68.137138,23.694695],[68.03511,23.721333],[68.084556,23.800861]]]]},"properties":{"name":"巴基斯坦","name_en":"PAKISTAN","id":"PAK"}}, + {"type":"Feature","geometry":null,"properties":{"name":"瓦利斯和富图纳","name_en":"WALLIS AND FUTUNA","id":"WLF"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.957981,29.357397],[34.994804,29.530916],[34.966332,29.547611],[35.032665,29.630722],[35.051277,29.820917],[35.080776,29.872305],[35.098446,30.022556],[35.175804,30.119139],[35.144474,30.239529],[35.186638,30.362223],[35.152001,30.418612],[35.201695,30.574528],[35.332974,30.808222],[35.360085,30.91386],[35.415001,30.948833],[35.408584,31.025612],[35.459778,31.120361],[35.394943,31.26461],[35.475056,31.41975],[35.478333,31.574333],[35.555721,31.758472],[35.523445,31.918112],[35.547832,31.968639],[35.525638,32.07225],[35.575443,32.206028],[35.565666,32.43325],[35.580002,32.632889],[35.638996,32.683472],[35.786285,32.747864],[35.935928,32.719036],[36.078518,32.512096],[36.19326,32.522442],[36.404884,32.377453],[36.837009,32.316189],[36.880394,32.352993],[37.750011,32.826427],[37.999924,32.953007],[38.789616,33.37125],[39.085998,32.501499],[39.017084,32.453483],[39.08646,32.320191],[39.278235,32.372718],[39.3291,32.347906],[39.351556,32.244066],[39.278111,32.176576],[39.201004,32.154324],[38.995915,31.996464],[38.243687,31.816307],[37.474442,31.619492],[37.000896,31.500114],[37.499954,31.006445],[37.744903,30.767195],[37.997158,30.500607],[37.665539,30.332651],[37.499115,29.999039],[36.753536,29.868496],[36.504536,29.499941],[36.070099,29.185036],[34.957981,29.357397]]]},"properties":{"name":"约旦","name_en":"Jordan","id":"JOR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-11.459169,6.929611],[-11.328998,7.077685],[-11.325629,7.163097],[-11.276511,7.228908],[-11.196867,7.251954],[-11.092366,7.389956],[-10.949237,7.496169],[-10.896043,7.510513],[-10.685807,7.739516],[-10.604134,7.770212],[-10.606035,8.032037],[-10.523996,8.124565],[-10.361211,8.144222],[-10.30478,8.201405],[-10.308256,8.327699],[-10.286861,8.484799],[-10.125528,8.525335],[-9.998657,8.439448],[-9.934474,8.491673],[-9.804309,8.502597],[-9.77296,8.551791],[-9.671058,8.493541],[-9.53331,8.383351],[-9.489279,8.264234],[-9.514802,8.175894],[-9.45926,8.105496],[-9.411833,7.97263],[-9.423477,7.862288],[-9.343918,7.748662],[-9.354559,7.625704],[-9.418715,7.471729],[-9.40558,7.420031],[-9.295266,7.422638],[-9.227325,7.389378],[-9.190242,7.303209],[-9.120646,7.276505],[-9.065999,7.20096],[-9.016803,7.243674],[-8.833481,7.283467],[-8.845829,7.347347],[-8.706717,7.514249],[-8.706784,7.64002],[-8.659362,7.696163],[-8.559732,7.69263],[-8.565241,7.625896],[-8.47218,7.554582],[-8.414106,7.493816],[-8.360893,7.242763],[-8.278384,7.185152],[-8.299383,7.088826],[-8.27361,7.006707],[-8.324889,6.966105],[-8.307361,6.848192],[-8.430481,6.656126],[-8.530358,6.592088],[-8.568663,6.518766],[-8.49027,6.432441],[-8.399074,6.423235],[-8.276216,6.319874],[-8.171672,6.275643],[-8.005302,6.315147],[-7.921579,6.288469],[-7.820578,6.193658],[-7.848288,6.094086],[-7.786833,6.074874],[-7.788074,5.983641],[-7.692999,5.90492],[-7.575215,5.897295],[-7.441317,5.753704],[-7.378784,5.623881],[-7.380093,5.529177],[-7.444848,5.420853],[-7.365113,5.327682],[-7.475037,5.224008],[-7.47092,5.150406],[-7.553314,5.0762],[-7.52655,4.91898],[-7.591789,4.905593],[-7.561555,4.788817],[-7.546407,4.60912],[-7.557402,4.393475],[-7.527073,4.357078],[-7.608779,4.353551],[-7.780731,4.390252],[-7.842424,4.463754],[-7.957705,4.511806],[-8.244678,4.574364],[-8.322339,4.631587],[-8.440235,4.671764],[-8.612378,4.781875],[-8.786593,4.852405],[-8.854879,4.916655],[-9.02896,4.976782],[-9.41849,5.269763],[-9.491062,5.373511],[-9.589618,5.471141],[-9.773951,5.60033],[-9.874138,5.708035],[-10.002837,5.813745],[-10.072068,5.922689],[-10.178464,5.980713],[-10.260666,6.067376],[-10.456098,6.174568],[-10.680434,6.230764],[-10.811682,6.308976],[-10.788362,6.355106],[-10.84514,6.447142],[-11.064385,6.581136],[-11.353787,6.707046],[-11.353433,6.780088],[-11.459169,6.929611]]]},"properties":{"name":"利比里亚","name_en":"Liberia","id":"LBR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25,21.999195],[25,21.582701],[25,20.749701],[25,20],[24,20],[24,19.508045],[23.935038,19.537603],[23.05508,19.995678],[22.517778,20.271395],[21.680883,20.705065],[20.921785,21.086548],[20,21.544849],[18.999725,22.033505],[18.243919,22.395874],[17.557297,22.72254],[16.981932,22.997187],[15.99817,23.450369],[15.441403,23.206142],[14.995867,23.001894],[14.189322,22.644482],[13.680397,23.072237],[13.544736,23.157],[13.397975,23.217527],[12.434785,23.422071],[11.979548,23.525026],[11.708302,24],[11.606182,24.249044],[11.434692,24.190147],[11.124939,24.400797],[11.012614,24.460444],[10.694419,24.567823],[10.493262,24.488976],[10.396629,24.511049],[10.239261,24.611713],[10.185399,24.793644],[10.040716,24.877232],[10.041826,25.327713],[9.774089,25.689426],[9.387854,26.183851],[9.520966,26.374914],[9.876212,26.520399],[9.927657,26.642883],[9.908139,26.726736],[9.934465,26.842993],[9.841373,26.984644],[9.829903,27.142771],[9.773976,27.263884],[9.806441,27.47028],[9.850559,27.499243],[9.923803,27.700525],[9.961322,27.888329],[9.869641,28.144865],[9.835972,28.28989],[9.874373,28.659489],[9.877125,29.044134],[9.792983,29.430895],[9.549049,29.914858],[9.418528,30.055389],[9.395223,30.171223],[9.575334,30.240418],[9.744278,30.315971],[9.888917,30.349194],[9.94725,30.393583],[10.019861,30.505528],[10.213223,30.713139],[10.307777,30.908972],[10.287639,31.082611],[10.147528,31.406973],[10.140611,31.493305],[10.291166,31.690111],[10.364889,31.734388],[10.529805,31.747305],[10.635305,31.86511],[10.639139,31.967945],[10.794695,32],[10.857945,32.11039],[10.982083,32.186722],[11.204166,32.276722],[11.366389,32.322361],[11.527333,32.402805],[11.598278,32.523556],[11.488806,32.667667],[11.507667,32.843193],[11.489223,32.892834],[11.566055,33.168999],[11.644778,33.106667],[11.891583,33.061832],[12.217527,32.872612],[12.313389,32.835472],[12.549472,32.799889],[12.758917,32.792667],[12.939861,32.816971],[13.237305,32.909557],[13.389611,32.900391],[13.588333,32.797974],[13.789139,32.801029],[13.9485,32.773666],[14.035611,32.728779],[14.189028,32.713528],[14.460055,32.527248],[14.643695,32.491055],[14.762305,32.441471],[14.869917,32.446194],[15.104222,32.415722],[15.221111,32.381054],[15.291111,32.312584],[15.366138,32.159805],[15.360972,31.994638],[15.407888,31.848555],[15.521528,31.626444],[15.654361,31.460388],[15.816749,31.365389],[16.031778,31.282249],[16.363806,31.223444],[16.751667,31.220722],[17.017305,31.165472],[17.302221,31.086639],[17.390083,31.081139],[17.457556,31.030666],[17.731193,30.940805],[17.847027,30.926472],[17.904417,30.857],[18.180055,30.787527],[18.408806,30.594194],[18.515778,30.53475],[18.67325,30.407223],[18.791,30.381945],[18.953501,30.28389],[19.183695,30.266083],[19.376473,30.314695],[19.579166,30.42025],[19.60811,30.411667],[19.772722,30.52525],[19.905222,30.655195],[20.055861,30.847834],[20.127833,30.979195],[20.173945,31.172028],[20.097,31.325111],[19.993611,31.478611],[19.924944,31.829721],[19.953722,31.987612],[20.034611,32.064056],[20.100529,32.188084],[20.373362,32.421501],[20.575695,32.552582],[20.900055,32.682083],[21.079805,32.764473],[21.367722,32.775166],[21.440556,32.796391],[21.631389,32.92522],[21.707972,32.938583],[21.928194,32.894196],[22.115055,32.929749],[22.211306,32.875832],[22.376472,32.868973],[22.490528,32.809944],[22.803722,32.722],[22.86725,32.693111],[23.111029,32.635666],[23.107973,32.517387],[23.159805,32.455387],[23.087389,32.36314],[23.20511,32.289528],[23.260305,32.210167],[23.371389,32.212334],[23.426861,32.180752],[23.669333,32.188362],[24.005751,32.099083],[24.085777,32.022251],[24.289139,31.993944],[24.599083,31.995556],[24.667694,32.027248],[25.001583,31.958555],[25.036249,31.839834],[25.111473,31.749277],[25.148056,31.648582],[25.090111,31.619583],[25.062555,31.541805],[24.861111,31.405916],[24.886917,31.303917],[24.877722,31.167084],[25.018278,30.777973],[24.926527,30.481138],[24.783083,30.331362],[24.698111,30.148834],[24.753334,30.095751],[24.813167,29.918915],[24.819407,29.789005],[24.895804,29.631365],[24.85772,29.548336],[24.999435,29.250158],[25,28.332001],[25,27.666313],[25,26.582701],[25,25.999598],[25,25.4165],[25,24.664801],[25,23.9151],[25,23.332001],[25,22.415701],[25,21.999195]]]},"properties":{"name":"利比亚","name_en":"LIBYA","id":"LBY"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.641747,2.081389],[109.646835,1.911667],[109.698471,1.848611],[109.839836,1.793167],[109.868363,1.733361],[109.944191,1.702694],[110.281524,1.7065],[110.347443,1.722139],[110.47197,1.646],[110.526054,1.580389],[110.598084,1.601778],[110.708221,1.556306],[110.78389,1.581167],[110.937248,1.520528],[110.986527,1.568889],[111.031113,1.67625],[111.117752,1.701611],[111.079697,1.765056],[111.167419,1.963944],[111.19397,2.070555],[111.172554,2.140083],[111.187195,2.380222],[111.229835,2.44025],[111.344887,2.3425],[111.383858,2.364333],[111.445137,2.359389],[111.406418,2.418278],[111.418831,2.488028],[111.390335,2.562583],[111.429558,2.705389],[111.603973,2.805694],[111.646278,2.851917],[111.966309,2.886694],[112.302612,2.974083],[112.496918,3.009889],[112.872666,3.103889],[113.016998,3.174111],[113.060112,3.281222],[113.152779,3.351],[113.365913,3.622444],[113.432335,3.765056],[113.550056,3.839944],[113.759308,4.03375],[113.803528,4.115778],[113.897858,4.222972],[113.962418,4.34],[113.991249,4.46175],[113.969696,4.559889],[114.071442,4.588861],[114.159614,4.571667],[114.25753,4.502722],[114.329888,4.342778],[114.315918,4.272417],[114.4235,4.249667],[114.49411,4.1475],[114.539581,4.127639],[114.613671,4.003083],[114.68853,4.024694],[114.790474,4.127361],[114.854027,4.271722],[114.880997,4.425722],[114.81472,4.488555],[114.798309,4.669111],[114.825447,4.747167],[114.887832,4.815111],[114.968308,4.811778],[115.006447,4.891528],[115.033554,4.797945],[115.044166,4.608944],[115.069694,4.571806],[115.110969,4.368222],[115.152748,4.379639],[115.35939,4.333944],[115.274246,4.441139],[115.283691,4.634389],[115.226997,4.811806],[115.152947,4.908167],[115.241638,4.921583],[115.316414,4.892667],[115.383583,4.91225],[115.418419,4.977361],[115.548836,5.081417],[115.56736,5.211805],[115.489365,5.207611],[115.365669,5.296528],[115.375,5.404389],[115.55825,5.55625],[115.796219,5.532917],[115.886169,5.625361],[115.899475,5.745611],[115.97889,5.780083],[116.041336,5.844222],[116.042274,5.954583],[116.12722,6.0665],[116.11486,6.122583],[116.234337,6.281861],[116.325279,6.308028],[116.311996,6.360194],[116.477669,6.475472],[116.575226,6.648667],[116.645805,6.716833],[116.639053,6.861805],[116.683441,6.891861],[116.753914,7.031222],[116.838417,6.946861],[116.853889,6.814528],[116.840248,6.746778],[116.753944,6.622083],[116.792252,6.560722],[116.975998,6.698361],[117.049278,6.833583],[117.031502,6.947083],[117.152946,7.006639],[117.242027,6.941528],[117.252251,6.865028],[117.216774,6.817972],[117.289307,6.615],[117.457863,6.558445],[117.518387,6.622889],[117.554306,6.541028],[117.627998,6.509167],[117.736916,6.420944],[117.703667,6.233028],[117.64283,6.250611],[117.590446,6.190611],[117.653252,6.072],[117.626556,6.040805],[117.715805,5.897861],[117.755608,5.940306],[117.89917,5.964139],[117.985496,6.061611],[118.122475,5.858528],[118.018776,5.788445],[117.904198,5.772861],[117.930641,5.692778],[117.990501,5.678834],[118.12236,5.725889],[118.158027,5.840722],[118.203278,5.851639],[118.384445,5.79575],[118.469696,5.751806],[118.657913,5.618111],[118.708885,5.55725],[118.860252,5.467972],[119.002083,5.410222],[119.092476,5.410111],[119.147003,5.448083],[119.237862,5.390917],[119.263496,5.210083],[119.166084,5.110417],[118.958527,5.048194],[118.726997,4.945722],[118.54039,4.957806],[118.47036,4.92375],[118.447167,4.988917],[118.327332,5.024222],[118.303558,4.964028],[118.206085,4.960611],[118.124916,4.878722],[118.192474,4.762639],[118.307831,4.628],[118.431526,4.596139],[118.528694,4.51925],[118.587776,4.508472],[118.635475,4.438639],[118.542198,4.366028],[118.168747,4.300611],[117.976998,4.222445],[117.876915,4.243361],[117.797638,4.331194],[117.75753,4.330806],[117.654137,4.408306],[117.613418,4.359167],[117.642586,4.253528],[117.585808,4.177528],[117.440308,4.194111],[117.364472,4.288778],[117.288193,4.316917],[117.238777,4.373806],[117.171723,4.336],[116.973747,4.344111],[116.906135,4.369805],[116.827637,4.332334],[116.751831,4.389639],[116.699585,4.338333],[116.429474,4.325778],[116.350944,4.390917],[116.276001,4.36325],[116.170082,4.387833],[116.078415,4.280667],[115.99717,4.350389],[115.923447,4.359722],[115.794502,4.229333],[115.702804,4.197139],[115.638222,3.971861],[115.559471,3.917917],[115.615029,3.874917],[115.574143,3.744472],[115.569748,3.650833],[115.604614,3.511778],[115.541611,3.359667],[115.512054,3.058167],[115.401222,2.987889],[115.248024,2.974972],[115.148529,2.914722],[115.089058,2.823333],[115.149696,2.793444],[115.095169,2.717417],[115.103805,2.5855],[115.164169,2.610861],[115.235863,2.53325],[115.193802,2.475556],[115.133919,2.479],[115.020584,2.364528],[114.943275,2.326639],[114.91217,2.261056],[114.811302,2.264972],[114.780945,2.195222],[114.804695,2.024361],[114.847359,1.948167],[114.790726,1.853083],[114.734413,1.871417],[114.709663,1.791528],[114.710281,1.678833],[114.610611,1.568389],[114.612472,1.504917],[114.56633,1.433472],[114.407219,1.519111],[114.21814,1.414944],[114.136917,1.464194],[113.943726,1.434278],[113.815666,1.366],[113.799278,1.294139],[113.701362,1.258806],[113.658165,1.210528],[113.576919,1.301528],[113.493164,1.315306],[113.439781,1.279944],[113.316498,1.37575],[113.144806,1.386222],[113.034226,1.469056],[113.057915,1.553806],[112.898392,1.5865],[112.812752,1.537417],[112.725807,1.563083],[112.492416,1.577361],[112.424141,1.522222],[112.315781,1.502833],[112.19767,1.432917],[112.221275,1.395111],[112.174835,1.305389],[112.144997,1.139944],[111.930527,1.114472],[111.828308,0.987667],[111.665695,1.039889],[111.517998,0.964222],[111.497864,1.021722],[111.383698,1.013056],[111.252808,1.064889],[110.907555,1.029778],[110.809135,0.907444],[110.717857,0.906694],[110.571915,0.855222],[110.477913,0.880639],[110.393891,0.992917],[110.279053,0.991222],[110.23925,1.110583],[110.15078,1.200111],[110.091194,1.196944],[110.052696,1.266194],[109.978722,1.297278],[109.95578,1.399861],[109.834053,1.421555],[109.79322,1.494028],[109.659226,1.619639],[109.67511,1.785472],[109.578003,1.810556],[109.536026,1.921444],[109.613525,1.984444],[109.641747,2.081389]]],[[[100.12117,6.422583],[100.159164,6.495306],[100.171387,6.68875],[100.293861,6.699695],[100.306946,6.601917],[100.36422,6.537472],[100.491028,6.5165],[100.661331,6.441945],[100.751167,6.460778],[100.817108,6.436167],[100.850754,6.231194],[101.094307,6.258889],[101.125893,6.108333],[101.085197,5.913195],[101.031754,5.918167],[100.984192,5.799278],[101.084084,5.709111],[101.127586,5.626861],[101.213669,5.6605],[101.262192,5.721917],[101.270164,5.810083],[101.348335,5.811028],[101.396889,5.876389],[101.482971,5.870361],[101.583969,5.933694],[101.656166,5.875167],[101.671112,5.791472],[101.821808,5.774556],[101.938332,5.871639],[101.940193,5.983111],[102.08786,6.143],[102.09214,6.243945],[102.145775,6.209445],[102.249809,6.214583],[102.352531,6.163389],[102.464859,5.93075],[102.705193,5.693389],[102.859581,5.566472],[102.978691,5.520861],[103.102303,5.404833],[103.328613,4.987667],[103.41275,4.844639],[103.477333,4.5485],[103.450386,4.473195],[103.499085,4.31375],[103.389274,4.109583],[103.421974,3.999694],[103.374809,3.909083],[103.341553,3.709805],[103.484802,3.506389],[103.434135,3.398778],[103.453308,3.146333],[103.436142,3.002917],[103.46447,2.859],[103.640976,2.664167],[103.783608,2.613],[103.82225,2.574139],[103.841698,2.442194],[103.964859,2.314361],[103.962723,2.21275],[104.125557,1.9545],[104.116859,1.870167],[104.194725,1.783944],[104.270447,1.611306],[104.261025,1.560806],[104.301003,1.445861],[104.289108,1.367806],[104.143997,1.340222],[104.045364,1.460778],[103.969803,1.424694],[103.800247,1.485194],[103.721192,1.470472],[103.673943,1.43375],[103.609802,1.343778],[103.521942,1.30725],[103.444664,1.324444],[103.375748,1.523833],[103.279503,1.594194],[103.16597,1.640722],[102.997665,1.744306],[102.943749,1.74225],[102.87989,1.822083],[102.805168,1.866333],[102.69117,1.867972],[102.520416,2.081139],[102.369362,2.137167],[102.206001,2.217111],[102.157333,2.220528],[102.064941,2.341361],[101.983666,2.369695],[101.934692,2.424833],[101.866806,2.426194],[101.804581,2.573583],[101.705414,2.596667],[101.483444,2.69325],[101.413719,2.801083],[101.302193,2.838639],[101.284057,2.904472],[101.36322,3.008222],[101.322723,3.109306],[101.303139,3.249194],[101.188248,3.352306],[101.097915,3.48525],[101.035698,3.621583],[100.879807,3.760417],[100.815971,3.779417],[100.816307,3.843583],[100.737557,3.854333],[100.700531,3.899028],[100.703857,3.981139],[100.771752,4.042444],[100.691086,4.161528],[100.617332,4.168556],[100.579025,4.307333],[100.627915,4.525306],[100.58561,4.576445],[100.584251,4.764139],[100.55278,4.871833],[100.444832,4.91825],[100.423164,4.996722],[100.36203,5.085583],[100.429169,5.2175],[100.40683,5.34425],[100.368332,5.395805],[100.374947,5.538611],[100.342613,5.569222],[100.371864,5.666222],[100.355225,5.948583],[100.238167,6.220667],[100.176445,6.280972],[100.12117,6.422583]]],[[[117.280388,7.353028],[117.224281,7.185917],[117.098892,7.138333],[117.05275,7.186389],[117.078445,7.3085],[117.234886,7.363389],[117.280388,7.353028]]],[[[111.284859,2.640083],[111.294693,2.775222],[111.376198,2.718667],[111.371025,2.491667],[111.400803,2.399611],[111.355141,2.348778],[111.335197,2.401083],[111.290863,2.439917],[111.284859,2.640083]]],[[[99.719917,6.349],[99.660194,6.361667],[99.645279,6.432],[99.894722,6.413667],[99.909836,6.328166],[99.811752,6.31675],[99.737778,6.261194],[99.719917,6.349]]],[[[100.281502,5.258417],[100.201942,5.3135],[100.209892,5.458583],[100.308556,5.463056],[100.321525,5.387361],[100.281502,5.258417]]],[[[117.895279,4.167695],[117.679558,4.165972],[117.625969,4.205722],[117.677002,4.264195],[117.748665,4.258611],[117.895279,4.167695]]]]},"properties":{"name":"马来西亚","name_en":"MALAYSIA","id":"MYS"}}, + {"type":"Feature","geometry":null,"properties":{"name":"英属印度洋领地","name_en":"BRITISH INDIAN OCEAN TERRITORY","id":"IOT"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-65.828919,18.053289],[-65.921761,17.974072],[-66.021561,17.978548],[-66.14634,17.930754],[-66.249931,17.93195],[-66.326805,17.979036],[-66.386681,17.941834],[-66.460205,17.987747],[-66.676697,17.97035],[-66.77121,18.007675],[-66.822121,17.957001],[-66.95504,17.933657],[-66.991768,17.972679],[-67.097565,17.950834],[-67.2089,17.956461],[-67.181664,18.170206],[-67.152664,18.214083],[-67.262116,18.373953],[-67.153229,18.433327],[-67.110985,18.518082],[-66.912582,18.487123],[-66.790039,18.498283],[-66.702667,18.479801],[-66.623192,18.499861],[-66.452324,18.477159],[-66.396172,18.496958],[-65.98455,18.444136],[-65.89399,18.454849],[-65.658783,18.369205],[-65.627869,18.234894],[-65.733299,18.181957],[-65.828919,18.053289]]],[[[-65.569183,18.096003],[-65.578781,18.125692],[-65.411697,18.167435],[-65.42556,18.097311],[-65.569183,18.096003]]]]},"properties":{"name":"波多黎各","name_en":"PUERTO RICO","id":"PRI"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.100502,-12.680855],[45.235592,-12.759208],[45.144291,-12.916172],[45.101254,-12.812452],[45.039322,-12.747174],[45.100502,-12.680855]]]},"properties":{"name":"马约特","name_en":"MAYOTTE","id":"MYT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[130.640205,42.422693],[130.645669,42.426408],[130.741589,42.344577],[130.621475,42.272057],[130.486725,42.337139],[130.402023,42.330528],[130.36908,42.234974],[130.281754,42.214668],[130.193085,42.106834],[129.979141,41.979195],[129.896866,41.902248],[129.868576,41.792137],[129.759506,41.755554],[129.650162,41.549446],[129.660385,41.466415],[129.799637,41.368752],[129.734589,41.243195],[129.720718,41.016777],[129.765106,40.938362],[129.733917,40.854637],[129.561386,40.830307],[129.220642,40.698971],[129.102173,40.49411],[128.959854,40.451195],[128.809143,40.351696],[128.696976,40.332306],[128.61853,40.276501],[128.666229,40.206223],[128.287674,40.041248],[127.986275,40.028221],[127.885224,39.966835],[127.871109,39.90097],[127.776108,39.847389],[127.635834,39.823277],[127.541389,39.774555],[127.488029,39.662804],[127.575447,39.585667],[127.514503,39.506],[127.501831,39.427193],[127.370972,39.413918],[127.374474,39.204693],[127.444305,39.152443],[127.744858,39.127361],[127.85228,38.977028],[128.010254,38.850304],[128.091034,38.835056],[128.185059,38.74836],[128.356033,38.67886],[128.359909,38.612446],[128.315109,38.586334],[128.2892,38.434418],[128.137726,38.328304],[128.046951,38.305],[127.797165,38.33614],[127.586083,38.333111],[127.498917,38.297806],[127.390526,38.331943],[127.132332,38.304943],[127.016586,38.237415],[126.966888,38.138943],[126.89225,38.099194],[126.783996,37.967945],[126.682861,37.945332],[126.677109,37.821804],[126.595833,37.770054],[126.340805,37.877388],[126.267387,37.840473],[126.152916,37.833752],[126.097725,37.757137],[125.976196,37.889889],[125.901833,37.838333],[125.743057,38.016083],[125.617668,37.851471],[125.605637,37.7575],[125.49308,37.777473],[125.466972,37.721333],[125.359947,37.710167],[125.430031,37.825138],[125.240608,37.815971],[125.243057,37.902111],[125.131721,37.863304],[125.031914,37.897335],[125.111664,38.044418],[124.886559,38.124832],[124.762497,38.095001],[124.866219,38.237583],[124.857918,38.344002],[125.000946,38.474918],[124.991531,38.589359],[125.086281,38.562111],[125.189308,38.649418],[125.282249,38.687557],[125.136719,38.805721],[125.195526,38.987667],[125.302498,39.172165],[125.412666,39.264637],[125.419388,39.309807],[125.337586,39.452],[125.387032,39.488445],[125.182419,39.593555],[124.927719,39.651638],[124.770111,39.730721],[124.756691,39.664333],[124.63942,39.589722],[124.638863,39.691082],[124.572136,39.718777],[124.557137,39.796001],[124.16645,39.826628],[124.243101,39.928901],[124.359153,39.990345],[124.347142,40.079713],[124.621525,40.290676],[124.722726,40.321808],[124.755415,40.381862],[124.91024,40.48397],[125.190098,40.615169],[125.455338,40.678702],[125.709928,40.868658],[125.87499,40.908349],[125.936391,40.879083],[126.190351,41.118048],[126.274645,41.157306],[126.436529,41.352572],[126.481085,41.371253],[126.581644,41.560221],[126.570005,41.621711],[126.88853,41.792379],[127.05013,41.744731],[127.039436,41.672038],[127.154943,41.588756],[127.17462,41.540289],[127.350829,41.46539],[127.499088,41.47837],[127.630908,41.418393],[127.871637,41.41785],[127.953669,41.438014],[128.130206,41.382816],[128.208315,41.411914],[128.317726,41.574334],[128.24844,41.681526],[128.169777,41.71511],[128.103789,41.843177],[128.090764,42.022766],[128.463963,42.020495],[128.580108,41.999408],[128.738024,42.050224],[128.918848,42.01608],[128.9493,42.078891],[129.188478,42.195701],[129.181009,42.258293],[129.340633,42.444688],[129.452331,42.440997],[129.554464,42.360224],[129.597235,42.409704],[129.710863,42.429042],[129.796869,42.68186],[129.764872,42.722497],[129.897144,43.001703],[130.034521,42.967753],[130.115344,42.98842],[130.136023,42.903483],[130.277418,42.893147],[130.241992,42.73876],[130.398426,42.606208],[130.513505,42.627485],[130.58118,42.435626],[130.640205,42.422693]]]},"properties":{"name":"朝鲜","name_en":"Democratic People's Republic of Korea","id":"PRK"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[29.391476,-4.44525],[29.655046,-4.445394],[29.756708,-4.464615],[29.814556,-4.359261],[29.868317,-4.374803],[30.049816,-4.255608],[30.07534,-4.165472],[30.127422,-4.137979],[30.21981,-4.026513],[30.259924,-3.887548],[30.390545,-3.715807],[30.487581,-3.511953],[30.666921,-3.420379],[30.677912,-3.321291],[30.836933,-3.25414],[30.847717,-3.163778],[30.743656,-2.996557],[30.571642,-2.897041],[30.485052,-2.947957],[30.407255,-2.856773],[30.457598,-2.692539],[30.419981,-2.657842],[30.516453,-2.4687],[30.564408,-2.417881],[30.65958,-2.410769],[30.713615,-2.356321],[30.765104,-2.388607],[30.848717,-2.314381],[30.842756,-2.230204],[30.895958,-2.078556],[30.8053,-1.928111],[30.828257,-1.856863],[30.81222,-1.733731],[30.830462,-1.64703],[30.74449,-1.526573],[30.732616,-1.447708],[30.559937,-1.339275],[30.47368,-1.12594],[30.476864,-1.062396],[30.653826,-1.066406],[30.756544,-0.994824],[31.583847,-0.99282],[32.331135,-0.993421],[33.340839,-0.993952],[33.924828,-0.994076],[34.023949,-0.994239],[34.116413,-1.030674],[34.937767,-1.499582],[35.466335,-1.79688],[35.952713,-2.067483],[36.276619,-2.255034],[37.156788,-2.747987],[37.45781,-2.91102],[37.675323,-3.056956],[37.715523,-3.295478],[37.591641,-3.440391],[37.749371,-3.544616],[37.811276,-3.689159],[38.406338,-4.11486],[38.76236,-4.355931],[39.221806,-4.678047],[39.220303,-4.84135],[39.145378,-4.973761],[39.140537,-5.117373],[38.993675,-5.484263],[38.896377,-5.70787],[38.839405,-5.800281],[38.782276,-6.058964],[38.851757,-6.160577],[38.842705,-6.332637],[38.912975,-6.443186],[39.050251,-6.473227],[39.220783,-6.6646],[39.245381,-6.749691],[39.309639,-6.816546],[39.477066,-6.86719],[39.552441,-7.021945],[39.498398,-7.191718],[39.353462,-7.340338],[39.300995,-7.484533],[39.273094,-7.622545],[39.321671,-7.734695],[39.444416,-7.818012],[39.406978,-7.915187],[39.447899,-8],[39.339397,-8.24986],[39.268246,-8.322478],[39.309895,-8.430273],[39.300449,-8.496765],[39.364506,-8.635034],[39.371205,-8.715554],[39.430969,-8.743644],[39.517613,-8.900652],[39.48473,-8.990038],[39.484051,-9.100556],[39.601532,-9.130302],[39.638611,-9.180066],[39.652939,-9.359317],[39.606964,-9.411256],[39.678543,-9.496485],[39.727486,-9.610531],[39.748985,-9.754321],[39.803673,-9.868871],[39.738174,-9.980696],[39.818054,-9.984512],[39.913795,-10.049897],[39.974934,-10.125702],[40.126007,-10.17632],[40.129204,-10.254212],[40.290672,-10.26962],[40.327076,-10.356595],[40.420616,-10.389206],[40.394444,-10.517681],[40.339947,-10.576442],[40.233543,-10.607371],[39.991428,-10.81613],[39.887905,-10.845959],[39.785889,-10.910685],[39.529575,-10.985414],[39.365524,-11.084299],[39.241627,-11.179976],[39.135853,-11.151134],[39.045071,-11.174488],[38.884743,-11.175511],[38.744179,-11.278317],[38.652092,-11.278788],[38.486149,-11.4149],[38.378235,-11.383034],[38.261925,-11.288426],[38.113094,-11.259668],[37.927895,-11.290549],[37.85817,-11.340202],[37.787922,-11.572027],[37.641636,-11.652708],[37.559902,-11.649964],[37.442734,-11.734662],[37.331894,-11.687695],[37.281612,-11.707168],[37.133213,-11.689842],[37.041145,-11.580296],[36.888679,-11.606109],[36.810833,-11.587023],[36.719498,-11.692884],[36.56031,-11.745696],[36.501423,-11.692849],[36.377873,-11.684204],[36.201259,-11.716186],[36.172279,-11.589557],[36.123909,-11.551973],[35.956997,-11.483055],[35.941891,-11.424907],[35.823818,-11.406803],[35.776859,-11.471077],[35.639271,-11.58572],[35.575569,-11.603462],[35.389797,-11.580019],[35.340698,-11.556542],[34.962151,-11.571553],[34.925709,-11.41508],[34.882683,-11.3552],[34.804882,-11.321221],[34.686054,-11.141225],[34.628342,-11.102043],[34.604225,-10.989516],[34.636486,-10.94684],[34.651936,-10.757631],[34.555122,-10.549005],[34.541611,-10.415602],[34.56984,-10.307633],[34.55476,-10.188474],[34.517357,-10.097792],[34.501526,-9.976361],[34.344544,-9.8065],[34.306023,-9.740206],[34.036301,-9.49193],[33.96476,-9.52838],[33.967117,-9.62705],[33.921345,-9.709304],[33.763893,-9.582588],[33.684872,-9.608034],[33.592926,-9.581412],[33.519829,-9.626969],[33.440281,-9.612694],[33.329735,-9.491529],[33.210243,-9.508881],[33.079613,-9.449467],[32.990806,-9.368879],[32.956554,-9.400114],[32.867374,-9.373852],[32.751926,-9.28485],[32.540909,-9.254656],[32.4314,-9.118252],[32.267021,-9.133573],[32.161392,-9.061675],[32.060913,-9.051372],[31.996113,-9.076138],[31.936659,-9.018008],[31.947081,-8.9368],[31.821665,-8.89028],[31.734747,-8.923262],[31.584745,-8.838832],[31.570476,-8.709552],[31.458731,-8.640335],[31.211452,-8.587496],[31.136458,-8.632804],[31.028078,-8.592154],[30.807409,-8.310655],[30.774246,-8.22436],[30.738659,-8.109818],[30.651621,-7.980675],[30.522249,-7.619986],[30.422859,-7.418212],[30.358889,-7.247829],[30.238564,-7.021798],[30.08506,-6.836075],[29.906258,-6.708418],[29.791624,-6.60899],[29.655048,-6.413446],[29.594871,-6.252271],[29.57818,-5.962874],[29.607328,-5.768335],[29.575602,-5.555771],[29.529745,-5.415081],[29.410162,-5.12354],[29.337156,-4.853596],[29.327167,-4.698912],[29.386379,-4.540749],[29.391476,-4.44525]]],[[[39.193512,-6.023887],[39.193085,-5.897975],[39.279411,-5.860292],[39.298325,-5.783555],[39.35976,-5.795042],[39.357945,-5.910748],[39.438156,-6.164707],[39.529278,-6.176177],[39.538509,-6.291076],[39.579086,-6.387093],[39.51292,-6.476135],[39.34454,-6.298573],[39.26437,-6.306314],[39.214268,-6.25059],[39.21336,-6.078589],[39.193512,-6.023887]]],[[[39.862823,-5.159421],[39.811207,-5.368388],[39.718594,-5.440928],[39.649353,-5.427458],[39.648171,-5.341656],[39.728306,-5.234021],[39.688591,-5.099518],[39.674721,-4.92614],[39.741577,-4.907417],[39.850677,-4.958329],[39.826813,-5.102522],[39.862823,-5.159421]]],[[[39.765854,-7.807635],[39.80064,-7.755458],[39.896843,-7.748231],[39.850567,-7.881094],[39.770386,-7.905172],[39.652527,-7.995886],[39.606171,-7.962514],[39.765854,-7.807635]]]]},"properties":{"name":"坦桑尼亚","name_en":"TANZANIA","id":"TZA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.799806,41.909584],[-8.627556,42.048443],[-8.3315,42.090305],[-8.187333,42.142613],[-8.081445,42.016418],[-8.211861,41.908138],[-8.095388,41.801445],[-7.969333,41.869472],[-7.835667,41.862026],[-7.684306,41.903446],[-7.5665,41.830891],[-7.494027,41.871971],[-7.396111,41.819473],[-7.191723,41.88636],[-7.144806,41.989807],[-7.051139,41.94886],[-6.882722,41.938526],[-6.589333,41.947418],[-6.517333,41.869251],[-6.545166,41.690861],[-6.273417,41.655277],[-6.182694,41.578388],[-6.308111,41.424137],[-6.428389,41.315556],[-6.570472,41.237667],[-6.668917,41.221863],[-6.823083,41.037224],[-6.926333,41.018776],[-6.804611,40.878029],[-6.827194,40.753166],[-6.793194,40.641277],[-6.837778,40.568554],[-6.795055,40.512249],[-6.840389,40.447056],[-6.789694,40.331249],[-6.857945,40.266945],[-7.0055,40.221916],[-7.009139,40.137001],[-6.941222,40.112999],[-6.863889,40.013],[-6.902555,39.867363],[-6.9835,39.804668],[-7.012056,39.672054],[-7.251889,39.666248],[-7.313527,39.647667],[-7.466028,39.666054],[-7.504695,39.609554],[-7.371917,39.4855],[-7.300611,39.461082],[-7.329778,39.385223],[-7.230167,39.276695],[-7.237778,39.213638],[-7.144167,39.1745],[-7.144778,39.11628],[-7.035722,39.116806],[-6.953556,39.022583],[-7.08475,38.821304],[-7.254806,38.718834],[-7.240889,38.623749],[-7.327944,38.44136],[-7.142722,38.268444],[-7.082611,38.176193],[-6.933861,38.211193],[-6.993639,38.02811],[-7.250833,37.986168],[-7.274389,37.878834],[-7.415916,37.757195],[-7.453028,37.647083],[-7.520833,37.557221],[-7.464361,37.488888],[-7.457417,37.410221],[-7.401583,37.177444],[-7.490278,37.171196],[-7.783889,37.016224],[-7.998944,37.008415],[-8.19175,37.088612],[-8.297806,37.071499],[-8.623417,37.126026],[-8.681472,37.082806],[-8.975833,37.024723],[-8.859667,37.260418],[-8.786417,37.531528],[-8.814722,37.593918],[-8.787416,37.717194],[-8.802028,37.912972],[-8.851084,37.992832],[-8.771417,38.199585],[-8.772056,38.283138],[-8.823861,38.416805],[-8.813805,38.483444],[-8.897778,38.516918],[-9.062417,38.432278],[-9.216723,38.417332],[-9.1815,38.485668],[-9.202611,38.590137],[-9.259472,38.659527],[-9.045028,38.714249],[-8.920222,38.769165],[-9.022306,38.884418],[-9.11975,38.709026],[-9.318639,38.673443],[-9.483889,38.707638],[-9.495944,38.779499],[-9.409278,38.949085],[-9.420667,39.070332],[-9.333667,39.270111],[-9.364805,39.344776],[-9.228444,39.427834],[-9.093194,39.555862],[-9.047361,39.714249],[-8.926084,39.965721],[-8.855445,40.147945],[-8.908834,40.187637],[-8.839278,40.336498],[-8.743749,40.643082],[-8.645084,41.013416],[-8.669917,41.139],[-8.717527,41.205612],[-8.825778,41.676777],[-8.873722,41.753193],[-8.859694,41.867138],[-8.799806,41.909584]]],[[[-25.318195,37.856304],[-25.148777,37.844917],[-25.143639,37.759861],[-25.377306,37.708389],[-25.509028,37.704418],[-25.621084,37.745529],[-25.690001,37.728584],[-25.818306,37.803833],[-25.856056,37.856998],[-25.785584,37.906113],[-25.68,37.832054],[-25.560888,37.811974],[-25.411083,37.82103],[-25.318195,37.856304]]],[[[-28.422667,38.562416],[-28.173389,38.458668],[-28.086527,38.401028],[-28.446362,38.420334],[-28.523056,38.45364],[-28.504223,38.555862],[-28.422667,38.562416]]],[[[-27.093471,38.780472],[-27.04114,38.703167],[-27.082806,38.639973],[-27.297582,38.656361],[-27.37089,38.701363],[-27.363945,38.785389],[-27.199778,38.801556],[-27.093471,38.780472]]],[[[-28.11739,38.69389],[-28.019083,38.67189],[-27.766277,38.558834],[-27.828251,38.531055],[-27.944306,38.588554],[-28.188278,38.66386],[-28.11739,38.69389]]],[[[-28.810972,38.611332],[-28.711222,38.646137],[-28.602694,38.595779],[-28.634251,38.526085],[-28.720417,38.517776],[-28.810972,38.611332]]],[[[-31.158251,39.507637],[-31.121861,39.462944],[-31.168417,39.378613],[-31.248806,39.378777],[-31.255528,39.495472],[-31.158251,39.507637]]],[[[-16.859194,32.806278],[-16.748417,32.753307],[-16.829389,32.635971],[-16.939833,32.629391],[-17.208221,32.731583],[-17.256445,32.804417],[-17.177028,32.870056],[-17.052,32.805889],[-16.906973,32.833057],[-16.859194,32.806278]]]]},"properties":{"name":"葡萄牙","name_en":"PORTUGAL","id":"PRT"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.128044,-9.433906],[124.971001,-9.274391],[125.019699,-9.167853],[125.139999,-9.150401],[125.165901,-9.109211],[125.1399,-9.024118],[124.965302,-9.037271],[124.950561,-8.964142],[125.013862,-8.862473],[125.076164,-8.829945],[125.128502,-8.647166],[125.411888,-8.569],[125.46975,-8.577056],[125.631859,-8.536056],[125.693642,-8.543667],[125.843475,-8.485139],[125.945526,-8.486111],[126.076386,-8.526111],[126.237167,-8.505917],[126.354637,-8.43725],[126.440697,-8.424528],[126.563309,-8.483277],[126.736664,-8.40475],[126.790726,-8.422833],[126.959274,-8.329861],[127.126198,-8.375],[127.191391,-8.33975],[127.302444,-8.435111],[127.119614,-8.578083],[127.021248,-8.688472],[126.94397,-8.696444],[126.851112,-8.758722],[126.666191,-8.773639],[126.554748,-8.838],[126.470138,-8.951611],[126.307831,-8.982278],[126.186165,-8.981167],[125.945419,-9.140195],[125.852669,-9.134055],[125.671219,-9.209666],[125.6185,-9.189305],[125.392136,-9.270278],[125.274025,-9.354472],[125.214996,-9.420972],[125.128044,-9.433906]]],[[[124.048874,-9.348348],[124.167252,-9.30025],[124.181137,-9.266444],[124.313393,-9.207861],[124.463577,-9.178817],[124.449303,-9.282654],[124.340401,-9.46166],[124.249397,-9.404364],[124.118797,-9.432285],[124.048874,-9.348348]]]]},"properties":{"name":"东帝汶","name_en":"EAST TIMOR","id":"TMP"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-56.345139,46.930981],[-56.399181,47.065357],[-56.270191,47.063103],[-56.345139,46.930981]]]},"properties":{"name":"圣皮埃尔和密克隆","name_en":"SAINT PIERRE AND MIQUELON","id":"SPM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-54.596363,-25.594971],[-54.593636,-25.668255],[-54.656265,-25.702965],[-54.590351,-25.838356],[-54.675156,-25.985432],[-54.645748,-26.075251],[-54.665486,-26.178944],[-54.631092,-26.231852],[-54.700329,-26.440239],[-54.795929,-26.529539],[-54.814026,-26.673847],[-54.938946,-26.693182],[-54.961952,-26.790579],[-55.060379,-26.804615],[-55.135178,-26.866289],[-55.131454,-26.94475],[-55.201389,-26.972109],[-55.273838,-26.946413],[-55.431095,-27.008717],[-55.456573,-27.102175],[-55.540974,-27.108486],[-55.617344,-27.209044],[-55.580315,-27.251814],[-55.595532,-27.337038],[-55.725994,-27.439798],[-55.828491,-27.43322],[-55.877544,-27.36194],[-56.059593,-27.304419],[-56.143482,-27.312521],[-56.282654,-27.408508],[-56.28965,-27.488049],[-56.364822,-27.598721],[-56.487972,-27.575657],[-56.519691,-27.506001],[-56.598835,-27.447981],[-56.703979,-27.462017],[-56.737278,-27.559475],[-56.833344,-27.601109],[-57,-27.510633],[-57.288254,-27.421616],[-57.545567,-27.430344],[-57.702507,-27.333624],[-58.021065,-27.263735],[-58.243351,-27.249126],[-58.376415,-27.279015],[-58.606579,-27.29512],[-58.594391,-27.232431],[-58.663143,-27.175026],[-58.560227,-27.108776],[-58.548298,-27.041265],[-58.478283,-26.994698],[-58.491913,-26.935892],[-58.370426,-26.868376],[-58.245926,-26.742037],[-58.253117,-26.653145],[-58.191021,-26.647156],[-58.219624,-26.532639],[-58.177403,-26.452932],[-58.200439,-26.374983],[-58.120442,-26.244438],[-58.102596,-26.132643],[-57.849354,-26.006014],[-57.883339,-25.939693],[-57.856541,-25.86091],[-57.796757,-25.829599],[-57.751072,-25.662785],[-57.679382,-25.66235],[-57.56253,-25.545593],[-57.556614,-25.44768],[-57.762298,-25.218542],[-57.788227,-25.154484],[-57.874336,-25.08222],[-57.985916,-25.083776],[-58.14843,-24.977417],[-58.246483,-24.93379],[-58.327259,-24.99917],[-58.423958,-24.89085],[-58.566032,-24.82617],[-58.654743,-24.833561],[-58.711945,-24.784903],[-58.795845,-24.774811],[-58.940216,-24.681837],[-59.109066,-24.623266],[-59.181454,-24.569651],[-59.352993,-24.484718],[-59.494984,-24.325083],[-60.046623,-24.012131],[-60.116696,-24.039494],[-60.32008,-24.048523],[-60.469322,-23.960856],[-60.584038,-23.945009],[-60.734867,-23.87643],[-60.825005,-23.873764],[-60.931942,-23.804802],[-61.002472,-23.794148],[-61.100117,-23.660902],[-61.092274,-23.620857],[-61.235249,-23.551317],[-61.358478,-23.448719],[-61.495605,-23.418417],[-61.611473,-23.285118],[-61.739323,-23.239704],[-61.757999,-23.181223],[-61.863735,-23.08939],[-61.989818,-23.02355],[-62.012165,-22.933062],[-62.136288,-22.789499],[-62.239956,-22.53739],[-62.297283,-22.482727],[-62.390091,-22.452646],[-62.636395,-22.298166],[-62.647076,-22.245634],[-62.492615,-21.74123],[-62.258217,-21.062191],[-62.270019,-20.567064],[-61.935696,-20.112532],[-61.865788,-19.965008],[-61.766518,-19.681093],[-61.687523,-19.631702],[-60.599365,-19.454538],[-59.983578,-19.294041],[-59.119808,-19.347153],[-58.641697,-19.577969],[-58.442772,-19.665741],[-58.202518,-19.789989],[-58.201763,-19.887344],[-58.159119,-20.073216],[-58.163456,-20.162462],[-58.087341,-20.273268],[-58.077415,-20.379519],[-58.004292,-20.425907],[-58.015442,-20.607986],[-57.916241,-20.669224],[-57.87056,-20.730869],[-57.860371,-20.850998],[-57.920692,-20.883846],[-57.81876,-20.983967],[-57.865738,-21.04134],[-57.846878,-21.101675],[-57.859402,-21.313473],[-57.963459,-21.551794],[-57.915996,-21.589968],[-57.896862,-21.702597],[-57.920807,-21.875381],[-57.980866,-22.088306],[-57.921314,-22.122072],[-57.756363,-22.133574],[-57.701481,-22.092377],[-57.616417,-22.096186],[-57.584022,-22.167046],[-57.250164,-22.242943],[-57.000504,-22.22545],[-56.831131,-22.300434],[-56.753551,-22.236839],[-56.642826,-22.261166],[-56.51894,-22.103062],[-56.403347,-22.077505],[-56.341457,-22.20598],[-56.208412,-22.280878],[-56.060722,-22.293249],[-55.861675,-22.279097],[-55.789662,-22.382105],[-55.73975,-22.396128],[-55.724373,-22.547979],[-55.627357,-22.62142],[-55.614643,-22.720478],[-55.666988,-22.862513],[-55.683384,-22.982328],[-55.619824,-23.048544],[-55.589966,-23.146784],[-55.539509,-23.165785],[-55.520016,-23.261765],[-55.549183,-23.316954],[-55.50182,-23.382042],[-55.537644,-23.44735],[-55.535293,-23.61376],[-55.477386,-23.643694],[-55.44265,-23.734026],[-55.441601,-23.9123],[-55.354263,-23.991728],[-55.314892,-23.95894],[-55.23098,-24.011406],[-55.112206,-23.962997],[-54.932472,-23.964281],[-54.904907,-23.908594],[-54.676044,-23.816378],[-54.483372,-23.88471],[-54.319702,-24.011835],[-54.28434,-24.085796],[-54.331337,-24.15107],[-54.324097,-24.245342],[-54.262371,-24.375605],[-54.333027,-24.492779],[-54.335812,-24.649237],[-54.405255,-24.836107],[-54.465706,-25.079164],[-54.437,-25.146608],[-54.496696,-25.280205],[-54.616024,-25.457193],[-54.596363,-25.594971]]]},"properties":{"name":"巴拉圭","name_en":"Paraguay","id":"PRY"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[41.765415,16.897612],[41.847832,16.847027],[41.882221,16.764999],[42.016972,16.742722],[42.086693,16.821167],[42.152863,16.724001],[42.156471,16.590166],[42.053055,16.701555],[41.948029,16.678583],[41.830082,16.768055],[41.765415,16.897612]]],[[[42.778252,16.369194],[42.77272,16.478445],[42.705917,16.584444],[42.729637,16.67775],[42.663723,16.790417],[42.573307,16.844418],[42.549915,17.004139],[42.460472,17.047751],[42.415638,17.148527],[42.332138,17.211584],[42.318748,17.427555],[42.235363,17.515722],[42.015751,17.704834],[41.829304,17.820694],[41.707111,17.925806],[41.639252,18.054722],[41.584026,18.094473],[41.56889,18.165222],[41.480141,18.286278],[41.417835,18.514444],[41.349834,18.581444],[41.252918,18.618029],[41.202526,18.720417],[41.23325,18.842945],[41.156502,18.887417],[41.140778,18.976778],[41.155666,19.090389],[41.068749,19.125584],[41.047806,19.251194],[40.953804,19.349472],[40.95961,19.468555],[40.917641,19.534834],[40.814529,19.574778],[40.788971,19.726223],[40.732498,19.801111],[40.627777,19.779388],[40.534001,19.904333],[40.536221,19.967112],[40.411194,20.053417],[40.290249,20.096445],[40.059582,20.283722],[39.914917,20.265806],[39.789166,20.342251],[39.659973,20.449583],[39.614918,20.561472],[39.563721,20.596972],[39.456139,20.741194],[39.362999,20.902306],[39.307888,20.926416],[39.239918,21.072834],[39.195526,21.095222],[39.158695,21.228472],[39.10664,21.297361],[39.191166,21.408388],[39.180473,21.481306],[39.113415,21.531611],[39.084751,21.696417],[39.034473,21.795166],[38.971027,21.855583],[39.009529,21.920944],[38.974945,21.972805],[39.04322,22.05489],[39.034248,22.195084],[39.076416,22.255194],[39.068722,22.408722],[39.081695,22.550806],[39.004501,22.720972],[38.810165,22.992332],[38.799332,23.124584],[38.697639,23.257639],[38.593277,23.543612],[38.485638,23.653694],[38.46075,23.764029],[38.288528,23.93314],[38.027474,24.068861],[37.936138,24.137362],[37.863666,24.147888],[37.709556,24.259583],[37.688026,24.295528],[37.575195,24.243944],[37.518917,24.270306],[37.423832,24.392889],[37.462387,24.43314],[37.296585,24.671223],[37.224888,24.70825],[37.224751,24.838833],[37.285583,24.987862],[37.244778,25.07725],[37.251972,25.160944],[37.089611,25.344889],[37.07486,25.439888],[37.009388,25.490499],[36.935665,25.647028],[36.821751,25.746529],[36.712776,25.747389],[36.649113,25.857056],[36.703304,25.933945],[36.70686,26.022112],[36.581722,26.057444],[36.498165,26.115555],[36.483555,26.18],[36.347557,26.404249],[36.289749,26.538305],[36.167667,26.677305],[35.998444,26.908751],[35.804779,27.113222],[35.803417,27.235666],[35.739723,27.321972],[35.667057,27.356806],[35.546112,27.50975],[35.530498,27.6005],[35.424835,27.774221],[35.266361,27.951],[35.164612,28.010361],[35.05611,28.116249],[34.930138,28.077723],[34.81139,28.111029],[34.758915,28.096083],[34.609944,28.141445],[34.666889,28.222639],[34.755001,28.443361],[34.806252,28.523556],[34.775776,28.66375],[34.834083,28.811445],[34.832195,28.92075],[34.895195,29.183805],[34.940918,29.241751],[34.957981,29.357397],[36.070099,29.185036],[36.504536,29.499941],[36.753536,29.868496],[37.499115,29.999039],[37.665539,30.332651],[37.997158,30.500607],[37.744903,30.767195],[37.499954,31.006445],[37.000896,31.500114],[37.474442,31.619492],[38.243687,31.816307],[38.995915,31.996464],[39.201004,32.154324],[40.413376,31.948038],[41.440872,31.373175],[42.08564,31.111668],[42.948715,30.499443],[43.626511,30.009001],[44.285503,29.524055],[44.721935,29.198486],[45.667633,29.125029],[46.426117,29.061209],[46.556461,29.102682],[47.460556,29.000444],[47.592529,28.824612],[47.607334,28.662945],[47.704945,28.524611],[48.431473,28.535639],[48.501278,28.491611],[48.545696,28.399805],[48.515305,28.337278],[48.635193,28.197527],[48.631916,28.073416],[48.888779,27.833139],[48.817276,27.817083],[48.821583,27.694529],[48.972637,27.621027],[49.04636,27.560223],[49.259224,27.524084],[49.291084,27.436306],[49.197582,27.442944],[49.213779,27.370916],[49.325359,27.323668],[49.334473,27.17614],[49.403278,27.193501],[49.589832,27.089277],[49.684555,26.969639],[49.775028,26.903778],[50.001472,26.819361],[50.078888,26.722279],[49.992584,26.717445],[50.019165,26.544195],[50.07447,26.458944],[50.193443,26.407167],[50.2365,26.338194],[50.222832,26.174667],[50.159111,26.072721],[50.03014,26.186445],[49.995251,26.116083],[50.003361,26.009527],[50.111527,25.982195],[50.117222,25.876583],[50.246418,25.685556],[50.201221,25.659611],[50.31361,25.542862],[50.498417,25.399166],[50.562279,25.188168],[50.552696,25.131889],[50.737,24.863138],[50.756027,24.771278],[50.833508,24.743839],[50.929451,24.548285],[51.099758,24.47333],[51.114973,24.383453],[51.214055,24.17895],[51.769437,23.874715],[52.583302,22.9389],[55.141727,22.634071],[55.210827,22.705933],[55.666698,22],[55.422539,21.267551],[55,20],[52,19],[51.375828,18.865965],[50.504108,18.672577],[50.190682,18.656646],[49.533079,18.567981],[49.252304,18.516259],[49.001085,18.442371],[48.786809,18.353705],[48.29176,18.087708],[47.999644,17.79167],[47.737426,17.439225],[47.562865,17.118158],[47.472468,16.984121],[47.333232,16.881079],[47.160753,16.834498],[47.017364,16.884372],[46.864623,17.111924],[46.75864,17.177384],[46.403285,17.164916],[46.111831,17.169072],[45.791803,17.185697],[45.60893,17.223103],[45.459307,17.277133],[45.255653,17.389351],[45.172529,17.405976],[44.366196,17.390028],[44.176334,17.391277],[44.109444,17.344862],[44.009445,17.388166],[43.933499,17.302279],[43.7705,17.37561],[43.711834,17.365473],[43.462166,17.555222],[43.362,17.588722],[43.305832,17.575666],[43.234974,17.464611],[43.235973,17.386305],[43.337082,17.310583],[43.232582,17.272194],[43.180054,17.162806],[43.181946,16.856028],[43.265862,16.809889],[43.273418,16.750584],[43.148304,16.679722],[43.117443,16.542694],[42.978806,16.505806],[42.952862,16.401083],[42.778252,16.369194]]]]},"properties":{"name":"沙特阿拉伯","name_en":"SAUDI ARABIA","id":"SAU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.624397,33.242092],[35.564861,33.273888],[35.503124,33.090099],[35.348534,33.059299],[35.31694,33.104366],[35.114876,33.094154],[35.211361,33.207054],[35.215527,33.265472],[35.299835,33.466362],[35.358112,33.514973],[35.422779,33.689693],[35.492417,33.825554],[35.482723,33.904221],[35.579861,33.908165],[35.644054,33.992554],[35.636639,34.1535],[35.664391,34.285557],[35.733807,34.365917],[35.823276,34.410973],[35.997391,34.549446],[35.980759,34.643566],[36.03484,34.627728],[36.367176,34.642578],[36.460274,34.602558],[36.448593,34.506393],[36.55547,34.415066],[36.594059,34.183727],[36.512913,34.094605],[36.425854,34.054649],[36.308426,33.947758],[36.367283,33.818352],[36.244446,33.852966],[36.069172,33.820259],[36.014786,33.768749],[35.974773,33.637848],[36.059624,33.585522],[35.949238,33.472729],[35.841835,33.40696],[35.815289,33.357662],[35.624397,33.242092]]]},"properties":{"name":"黎巴嫩","name_en":"Lebanon","id":"LBN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.590361,45.485695],[13.721084,45.594471],[13.869084,45.593277],[13.907334,45.62925],[13.793028,45.740196],[13.5975,45.807472],[13.593083,45.896137],[13.497361,46.055138],[13.659194,46.155666],[13.491667,46.2285],[13.387167,46.303555],[13.44875,46.365501],[13.676056,46.439304],[13.715639,46.524029],[13.92975,46.518471],[14.120139,46.477665],[14.159056,46.437084],[14.424833,46.449444],[14.483139,46.416222],[14.657111,46.447334],[14.817056,46.509304],[14.868195,46.606834],[14.980722,46.601418],[15.039,46.652638],[15.205944,46.644749],[15.54925,46.670502],[15.670861,46.706696],[15.834945,46.718887],[15.952027,46.686474],[15.991083,46.835388],[16.111889,46.871498],[16.281445,46.873138],[16.344584,46.830112],[16.320917,46.753918],[16.384916,46.64275],[16.517723,46.549499],[16.566,46.483723],[16.423695,46.533611],[16.312916,46.530556],[16.328583,46.424446],[16.257583,46.393391],[16.08939,46.386166],[16.010889,46.307167],[15.809278,46.232555],[15.619695,46.190666],[15.625194,46.101639],[15.712028,46.064529],[15.717556,45.947971],[15.659639,45.837112],[15.576056,45.836777],[15.467472,45.767418],[15.310667,45.716332],[15.326639,45.561085],[15.394944,45.52161],[15.340083,45.458584],[15.145695,45.415249],[15.074278,45.48875],[14.945861,45.532639],[14.811584,45.470333],[14.579555,45.622082],[14.527111,45.491943],[14.339,45.460415],[14.064111,45.494751],[13.956944,45.45639],[13.658944,45.430279],[13.590361,45.485695]]]},"properties":{"name":"斯洛文尼亚","name_en":"Slovenia","id":"SVN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.912155,10.99649],[0.656307,10.997355],[0.494682,10.930997],[0.500708,11.009109],[-0.142006,11.138977],[-0.273275,11.173301],[-0.361798,11.070609],[-0.633894,10.938537],[-0.688957,10.990515],[-1.119552,11.00098],[-1.121862,10.982784],[-1.397374,10.990245],[-1.43178,11.018033],[-1.586861,11.01897],[-1.756003,10.982121],[-2.157987,10.97786],[-2.255023,10.988378],[-2.505444,10.98345],[-2.834325,11.004156],[-2.825063,10.913298],[-2.869361,10.878501],[-2.911277,10.686227],[-2.942349,10.612575],[-2.839497,10.376146],[-2.854034,10.318419],[-2.762533,10.238597],[-2.799592,10.180722],[-2.791758,10.05166],[-2.752376,9.948427],[-2.73741,9.834211],[-2.797213,9.741259],[-2.754237,9.642014],[-2.779201,9.585745],[-2.689926,9.488792],[-2.763182,9.401108],[-2.901227,9.531004],[-3.017246,9.743342],[-3.066193,9.72327],[-3.120558,9.839613],[-3.184156,9.842895],[-3.214314,9.920918],[-3.278865,9.853049],[-3.397239,9.916536],[-3.599318,9.919691],[-3.708624,9.94252],[-3.80917,9.888268],[-3.900427,9.900579],[-4.042902,9.801636],[-4.123398,9.831653],[-4.267178,9.737292],[-4.29085,9.637924],[-4.394384,9.596963],[-4.437621,9.662397],[-4.522059,9.705264],[-4.707962,9.687995],[-4.786805,9.830224],[-4.940853,9.87955],[-4.987827,9.984365],[-4.971672,10.042246],[-5.076528,10.10658],[-5.07473,10.182901],[-5.165216,10.244073],[-5.144166,10.291904],[-5.278549,10.315695],[-5.365123,10.287499],[-5.472611,10.352205],[-5.518916,10.433264],[-5.477374,10.546459],[-5.473898,10.758454],[-5.42231,10.8526],[-5.486852,10.970378],[-5.490751,11.071919],[-5.3414,11.136602],[-5.272127,11.234489],[-5.259377,11.368348],[-5.216318,11.395703],[-5.203893,11.529202],[-5.241263,11.604878],[-5.299405,11.62681],[-5.26539,11.743023],[-5.267698,11.835576],[-5.156523,11.947792],[-4.856637,12.014473],[-4.734348,11.996787],[-4.658313,12.053868],[-4.586606,12.196486],[-4.514452,12.25422],[-4.393459,12.531888],[-4.477875,12.63396],[-4.489498,12.710483],[-4.36959,12.731423],[-4.294473,12.69924],[-4.227244,12.801613],[-4.230222,12.937223],[-4.353298,13.116335],[-4.25833,13.229729],[-4.133372,13.311843],[-4.092478,13.395359],[-3.973802,13.393786],[-3.797708,13.358526],[-3.722646,13.283198],[-3.599841,13.202238],[-3.464799,13.158044],[-3.419592,13.193504],[-3.42477,13.267199],[-3.256077,13.283864],[-3.282,13.534143],[-3.260583,13.575739],[-3.261594,13.718467],[-3.185615,13.685327],[-3.107286,13.695428],[-2.959428,13.630571],[-2.871966,13.655334],[-2.903039,13.724443],[-2.895913,13.825576],[-2.832427,13.997855],[-2.837031,14.06063],[-2.672331,14.134245],[-2.476468,14.297865],[-2.291982,14.252217],[-2.10582,14.150282],[-1.993668,14.195762],[-1.975368,14.480876],[-1.757676,14.482295],[-1.674909,14.506894],[-1.314944,14.733589],[-1.08786,14.790123],[-0.720203,15.07991],[-0.462075,15.082593],[-0.376423,15.011415],[-0.231751,15.071436],[-0.009211,14.985179],[0.229351,14.989671],[0.235736,14.886071],[0.202613,14.762717],[0.166251,14.533439],[0.176769,14.492416],[0.288968,14.364031],[0.362986,14.33568],[0.391382,14.265839],[0.35735,14.139214],[0.398786,14.027875],[0.483209,13.951315],[0.526861,13.847084],[0.619368,13.777657],[0.635518,13.693429],[0.772605,13.692051],[0.781645,13.642696],[0.897423,13.624112],[1.005951,13.558324],[1.076902,13.440118],[1.14364,13.39312],[1.110174,13.323479],[0.991822,13.37092],[0.992786,13.059218],[1.051905,13.05794],[1.570111,12.631305],[1.873899,12.618222],[1.922387,12.701801],[1.986293,12.738781],[2.098688,12.726534],[2.122747,12.665193],[2.216766,12.604406],[2.217357,12.525085],[2.272632,12.426311],[2.152112,12.418606],[2.059467,12.35238],[2.405395,11.901612],[2.372374,11.793143],[2.299218,11.720811],[2.305729,11.674421],[2.18544,11.597241],[2.019249,11.427713],[1.872681,11.445773],[1.714145,11.42913],[1.599717,11.394748],[1.578893,11.44347],[1.443134,11.472229],[1.317959,11.359073],[1.325122,11.289876],[1.273934,11.259864],[1.159523,11.261173],[1.150468,11.175611],[1.086619,11.113338],[1.009168,11.085727],[0.912155,10.99649]]]},"properties":{"name":"布基纳法索","name_en":"Burkina Faso","id":"BFA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[17.162722,48.008083],[17.090666,48.04525],[17.061251,48.137306],[16.84775,48.372055],[16.867472,48.462418],[16.943832,48.520721],[16.936333,48.616859],[17.028862,48.766083],[17.210028,48.860668],[17.359083,48.815167],[17.561916,48.81889],[17.697945,48.867111],[17.758862,48.931446],[17.857584,48.944889],[18.097,49.081722],[18.192362,49.280388],[18.375528,49.322418],[18.54225,49.474918],[18.850611,49.521305],[18.968222,49.509834],[18.981083,49.398804],[19.199888,49.416889],[19.238832,49.512138],[19.372168,49.54361],[19.452833,49.60236],[19.528,49.570721],[19.634333,49.403694],[19.793556,49.401638],[19.843805,49.190418],[19.930416,49.232082],[20.081167,49.176277],[20.105055,49.252918],[20.218639,49.35014],[20.338833,49.404026],[20.482361,49.411804],[20.575027,49.377861],[20.727028,49.42178],[20.826834,49.330112],[20.977167,49.30936],[21.132,49.434166],[21.282,49.45639],[21.44375,49.413696],[21.638445,49.445915],[21.961695,49.349861],[22.045166,49.221779],[22.415945,49.105888],[22.570444,49.086723],[22.559973,49.036861],[22.442612,48.941223],[22.36064,48.770748],[22.357056,48.699333],[22.178556,48.588444],[22.130362,48.381889],[22.038889,48.39114],[21.729555,48.355167],[21.627056,48.509861],[21.511612,48.561306],[21.323444,48.556862],[21.138527,48.499722],[20.842667,48.58511],[20.653944,48.566528],[20.511917,48.507084],[20.419056,48.421333],[20.328028,48.279778],[20.26,48.287972],[19.932083,48.13028],[19.800667,48.157417],[19.764111,48.216389],[19.636555,48.244221],[19.546778,48.217445],[19.49575,48.102612],[18.832306,48.043724],[18.793333,47.98164],[18.761444,47.813694],[18.68,47.751999],[18.447195,47.760639],[18.29575,47.728111],[18.09639,47.751835],[17.784861,47.735332],[17.579916,47.812363],[17.370278,47.975166],[17.251556,48.01939],[17.162722,48.008083]]]},"properties":{"name":"斯洛伐克","name_en":"Slovakia","id":"SVK"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-17.051847,20.774158],[-17.066372,20.923],[-16.939714,21.326639],[-15.877051,21.341213],[-14.828249,21.343588],[-13.748062,21.339378],[-13.00176,21.330809],[-13.054846,21.840038],[-13.145754,22.731411],[-13.085238,22.994518],[-12.957145,23.213079],[-12.807095,23.361746],[-12.740399,23.391354],[-12,23.454517],[-12,24],[-12.006257,24.786568],[-12.004815,25.259245],[-12.003894,25.998621],[-8.674157,25.997614],[-8.673868,27.298073],[-7.894827,26.85379],[-7,26.341364],[-6.342108,25.939329],[-5.408522,25.36639],[-4.827675,24.996595],[-5.946241,25],[-6.564405,25],[-6.497154,24.412174],[-6.432614,23.789545],[-6.335372,22.997618],[-6.304999,22.709013],[-6.225174,22.035221],[-6.166103,21.513216],[-6.091492,20.863914],[-5.996458,20.0413],[-5.91681,19.34955],[-5.85655,18.807566],[-5.761994,17.955072],[-5.656397,16.984648],[-5.6028,16.499434],[-5.327115,16.333138],[-5.506424,15.507971],[-5.998634,15.494625],[-6.90346,15.496966],[-7.667353,15.499676],[-8.244932,15.497197],[-9.328486,15.496246],[-9.311138,15.666197],[-9.44287,15.597577],[-9.40824,15.434369],[-9.697563,15.427493],[-9.793501,15.372715],[-9.998299,15.356557],[-10.131493,15.367039],[-10.320598,15.431158],[-10.507583,15.440048],[-10.729488,15.424356],[-10.717824,15.367619],[-10.829273,15.268967],[-10.902922,15.103617],[-10.998527,15.238161],[-11.240499,15.410787],[-11.428817,15.645388],[-11.567466,15.57635],[-11.628531,15.522169],[-11.714702,15.526494],[-11.771095,15.337064],[-11.838077,15.171913],[-11.846905,15.048355],[-11.792294,15.025212],[-11.806098,14.901631],[-11.978932,14.761557],[-12.241923,14.76061],[-12.403065,14.84775],[-12.452863,14.896153],[-12.468734,14.98527],[-12.617969,15.083086],[-12.701784,15.091796],[-12.89517,15.244122],[-12.86528,15.321995],[-12.943282,15.357313],[-12.968536,15.501324],[-13.060057,15.472794],[-13.09695,15.577058],[-13.255259,15.661987],[-13.216077,15.693663],[-13.284422,15.786712],[-13.374041,15.972376],[-13.3739,16.054352],[-13.488503,16.079823],[-13.576699,16.135065],[-13.677233,16.094675],[-13.745336,16.149332],[-13.845071,16.110891],[-13.951496,16.307236],[-14.195078,16.529514],[-14.332907,16.642593],[-14.497192,16.620464],[-14.749763,16.632645],[-14.81144,16.656029],[-14.943501,16.635187],[-15.000518,16.680454],[-15.138327,16.589573],[-15.232772,16.56377],[-15.313324,16.585203],[-15.405613,16.543444],[-15.468549,16.59667],[-15.549723,16.516355],[-15.730167,16.489618],[-15.896758,16.518282],[-16.044954,16.478445],[-16.11635,16.556532],[-16.189356,16.516907],[-16.28293,16.508194],[-16.351439,16.270952],[-16.451342,16.179411],[-16.442513,16.109158],[-16.505772,16.062185],[-16.510229,16.308125],[-16.448194,16.487677],[-16.436182,16.625006],[-16.353277,16.845474],[-16.119761,17.398684],[-16.072523,17.570389],[-16.044348,17.743229],[-16.024036,17.994257],[-16.055721,18.455385],[-16.135222,18.659996],[-16.178835,18.89708],[-16.260395,19.080305],[-16.347519,19.187498],[-16.470169,19.261173],[-16.510454,19.353415],[-16.348555,19.440939],[-16.439112,19.470457],[-16.34194,19.660078],[-16.247463,19.78166],[-16.307314,19.907679],[-16.232653,19.980497],[-16.25174,20.125202],[-16.199513,20.204422],[-16.232481,20.283091],[-16.30282,20.333153],[-16.384556,20.538368],[-16.526396,20.738047],[-16.539465,20.563555],[-16.680219,20.684074],[-16.690174,20.750765],[-16.755129,20.847464],[-16.779636,20.935146],[-16.85816,21.034874],[-16.807682,21.110125],[-16.862354,21.167889],[-16.856001,21.234682],[-16.923943,21.260122],[-16.94587,21.13002],[-16.980494,21.114132],[-17.027905,20.8438],[-17.051847,20.774158]]],[[[-16.43183,19.59631],[-16.45104,19.691595],[-16.41464,19.815355],[-16.348312,19.842802],[-16.376265,19.69623],[-16.43183,19.59631]]]]},"properties":{"name":"毛里塔尼亚","name_en":"MAURITANIA","id":"MRT"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[19.017055,44.855431],[18.838472,44.864498],[18.798611,44.949276],[18.667029,45.060444],[18.581556,45.091946],[18.500973,45.056557],[18.426834,45.102138],[18.222778,45.138416],[18.127111,45.081501],[18.014833,45.141945],[17.885111,45.051109],[17.810749,45.049473],[17.694361,45.110832],[17.517195,45.103527],[17.45814,45.155361],[17.359083,45.135944],[17.285055,45.17189],[17.163944,45.151695],[16.946362,45.239193],[16.734444,45.195641],[16.539362,45.226528],[16.481111,45.186916],[16.374361,45.03186],[16.31311,44.99511],[16.134945,45.084946],[15.978556,45.201389],[15.903334,45.219028],[15.764389,45.182529],[15.721694,44.950943],[15.755639,44.788082],[15.914194,44.725498],[16.088583,44.555195],[16.146194,44.470222],[16.13975,44.388],[16.213028,44.357224],[16.224528,44.212502],[16.358917,44.089863],[16.480638,44.021778],[16.597639,43.914112],[16.766834,43.814693],[17.073973,43.554054],[17.254194,43.470055],[17.316833,43.297249],[17.543722,43.134918],[17.684778,43.011971],[17.587584,42.932415],[17.524555,42.946888],[17.337778,43.109722],[17.116138,43.204498],[16.944584,43.358612],[16.87475,43.396278],[16.645222,43.43811],[16.531694,43.499554],[16.412251,43.504665],[16.364222,43.551724],[16.262222,43.498028],[16.117556,43.472805],[15.962584,43.511417],[15.923722,43.559696],[15.948694,43.64875],[15.844778,43.776001],[15.701333,43.771973],[15.659166,43.823029],[15.458083,43.924946],[15.306389,44.039501],[15.158472,44.184418],[15.277917,44.359974],[15.102305,44.50536],[14.987194,44.576832],[14.894889,44.696667],[14.878583,44.82489],[14.92325,44.950333],[14.845889,45.097557],[14.741861,45.142223],[14.562639,45.272499],[14.331555,45.354305],[14.280194,45.299889],[14.228306,45.146252],[14.088555,44.964085],[13.991055,44.889057],[13.944528,44.807972],[13.829028,44.843887],[13.759222,44.987583],[13.610945,45.109222],[13.585972,45.298279],[13.54475,45.333527],[13.507778,45.476749],[13.590361,45.485695],[13.658944,45.430279],[13.956944,45.45639],[14.064111,45.494751],[14.339,45.460415],[14.527111,45.491943],[14.579555,45.622082],[14.811584,45.470333],[14.945861,45.532639],[15.074278,45.48875],[15.145695,45.415249],[15.340083,45.458584],[15.394944,45.52161],[15.326639,45.561085],[15.310667,45.716332],[15.467472,45.767418],[15.576056,45.836777],[15.659639,45.837112],[15.717556,45.947971],[15.712028,46.064529],[15.625194,46.101639],[15.619695,46.190666],[15.809278,46.232555],[16.010889,46.307167],[16.08939,46.386166],[16.257583,46.393391],[16.328583,46.424446],[16.312916,46.530556],[16.423695,46.533611],[16.566,46.483723],[16.671362,46.458],[16.728445,46.389946],[16.871445,46.349445],[16.942833,46.241306],[17.156084,46.170029],[17.298639,46.001389],[17.381111,45.933693],[17.575916,45.935665],[17.658527,45.846973],[17.836361,45.79353],[18.124222,45.786583],[18.404612,45.74361],[18.5725,45.801529],[18.677,45.914806],[18.795084,45.879807],[18.889885,45.920891],[18.908695,45.744385],[18.96822,45.648125],[18.89846,45.580593],[19.010475,45.496754],[19.024706,45.424751],[18.970595,45.378552],[19.119509,45.290562],[19.249031,45.24403],[19.421972,45.232319],[19.441498,45.169437],[19.188095,45.166916],[19.105688,45.078972],[19.092125,44.971352],[19.139517,44.940189],[19.017055,44.855431]]],[[[18.522282,42.423962],[18.271084,42.530334],[18.198,42.62339],[18.08025,42.644749],[17.806612,42.806641],[17.720751,42.793472],[17.436722,42.874832],[17.210861,42.979527],[17.326056,42.99461],[17.508612,42.908779],[17.653723,42.886501],[17.695389,42.920612],[17.844389,42.900806],[17.934278,42.831165],[18.225416,42.657501],[18.376444,42.649471],[18.456474,42.560223],[18.433981,42.483604],[18.522282,42.423962]]],[[[14.800417,45],[14.709167,44.94186],[14.623333,45.017693],[14.491834,45.029751],[14.4285,45.082974],[14.584222,45.23336],[14.800417,45]]],[[[14.417389,45],[14.527778,44.628361],[14.455861,44.625526],[14.387527,44.707306],[14.356556,44.817501],[14.384639,44.903973],[14.350445,45.055279],[14.274,45.125278],[14.329528,45.17614],[14.417389,45]]],[[[16.467056,43.352612],[16.549833,43.388943],[16.815306,43.353222],[16.857555,43.270889],[16.551417,43.266304],[16.467056,43.352612]]],[[[16.686972,43.120861],[16.545195,43.140362],[16.498777,43.211277],[16.661528,43.216946],[16.698444,43.163193],[16.870306,43.163502],[17.167139,43.117668],[16.686972,43.120861]]],[[[15,44.479221],[15.114,44.438915],[15.20875,44.310974],[15.104139,44.319363],[14.976666,44.458],[14.93475,44.466557],[14.862611,44.595306],[14.954278,44.582085],[15,44.479221]]],[[[16.851639,42.895863],[16.669722,42.926613],[16.671499,42.992416],[16.866861,42.956585],[16.851639,42.895863]]]]},"properties":{"name":"克罗地亚","name_en":"CROATIA","id":"HRV"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-70.374191,-18.349728],[-70.304688,-18.305538],[-70.190735,-18.319216],[-69.936157,-18.237185],[-69.818909,-18.118589],[-69.746956,-17.939104],[-69.792396,-17.869772],[-69.821335,-17.701181],[-69.794884,-17.647888],[-69.661903,-17.657827],[-69.462647,-17.507553],[-69.461487,-17.605848],[-69.344681,-17.717327],[-69.308182,-17.801001],[-69.299141,-17.943911],[-69.104187,-18.029619],[-69.067223,-18.071812],[-69.135544,-18.165943],[-69.070061,-18.238306],[-69.023674,-18.455172],[-68.977989,-18.749912],[-68.909378,-18.87579],[-68.954407,-18.935547],[-68.897957,-19.031897],[-68.799461,-19.086332],[-68.669914,-19.188759],[-68.616211,-19.269604],[-68.507996,-19.31844],[-68.410347,-19.397928],[-68.595604,-19.638296],[-68.684624,-19.724897],[-68.606827,-19.818111],[-68.529846,-19.842819],[-68.523971,-19.927412],[-68.559662,-20.044783],[-68.780464,-20.082048],[-68.704674,-20.141741],[-68.712875,-20.239777],[-68.663246,-20.324041],[-68.741539,-20.364286],[-68.735451,-20.44245],[-68.678207,-20.498291],[-68.538551,-20.560022],[-68.502602,-20.670551],[-68.549171,-20.726265],[-68.548363,-20.866165],[-68.5047,-20.936312],[-68.400589,-20.937944],[-68.295502,-21.089737],[-68.172417,-21.296675],[-68.177132,-21.599545],[-68.059876,-21.758326],[-68.064438,-21.975716],[-67.963882,-22.048464],[-67.92083,-22.229277],[-67.946129,-22.32144],[-67.848099,-22.546459],[-67.88298,-22.686295],[-67.872421,-22.829714],[-67.7939,-22.873558],[-67.57222,-22.896133],[-67.177498,-22.804693],[-66.987938,-22.992395],[-67.297752,-23.96011],[-67.341629,-24.036823],[-68.064438,-24.32423],[-68.374672,-24.470804],[-68.567375,-24.747684],[-68.571693,-24.834064],[-68.514877,-24.861332],[-68.422028,-24.992365],[-68.337402,-25.072287],[-68.467529,-25.092192],[-68.546036,-25.192289],[-68.527306,-25.309963],[-68.597511,-25.398954],[-68.543045,-25.583937],[-68.486931,-25.657089],[-68.39045,-26.190495],[-68.570381,-26.306953],[-68.5877,-26.509184],[-68.305054,-26.897072],[-68.336052,-27.055141],[-68.480553,-27.06377],[-68.544136,-27.187799],[-68.625977,-27.156485],[-68.684471,-27.083498],[-68.768951,-27.103754],[-68.848656,-27.204268],[-68.855728,-27.319948],[-68.987549,-27.57058],[-69.061546,-27.642384],[-69.062919,-27.725559],[-69.104164,-27.888725],[-69.211533,-27.972349],[-69.31057,-28.138365],[-69.379478,-28.204693],[-69.452988,-28.189651],[-69.472633,-28.301847],[-69.530991,-28.319555],[-69.649391,-28.443064],[-69.633858,-28.519854],[-69.706009,-28.682852],[-69.672333,-28.772778],[-69.752876,-28.895847],[-69.784836,-29.108662],[-69.949768,-29.169048],[-70.017029,-29.353312],[-69.94387,-29.531094],[-69.940033,-29.610571],[-69.884644,-29.679398],[-69.920479,-29.764109],[-69.877609,-29.866741],[-69.923897,-29.998541],[-69.923546,-30.107632],[-69.839821,-30.116407],[-69.806625,-30.186663],[-69.910675,-30.350355],[-69.9869,-30.402155],[-70.14122,-30.346703],[-70.129204,-30.456715],[-70.219864,-30.617956],[-70.219612,-30.713327],[-70.276665,-30.788624],[-70.304954,-30.891106],[-70.266884,-31.023941],[-70.354973,-31.100309],[-70.439453,-31.090776],[-70.51078,-31.163219],[-70.538849,-31.338072],[-70.553299,-31.559795],[-70.457832,-31.722223],[-70.446503,-31.836527],[-70.352738,-31.890758],[-70.268265,-31.896347],[-70.202438,-31.970144],[-70.34008,-32.081158],[-70.29689,-32.154602],[-70.32045,-32.254688],[-70.221748,-32.338692],[-70.233589,-32.432499],[-70.141541,-32.48386],[-70.167641,-32.603004],[-70.148582,-32.721821],[-70.050758,-32.863895],[-70,-32.895165],[-70.050018,-33.020634],[-70.092903,-33.041874],[-70.027001,-33.30611],[-69.963577,-33.321411],[-69.902565,-33.224133],[-69.77652,-33.336834],[-69.743721,-33.426136],[-69.825226,-33.484676],[-69.87117,-33.566509],[-69.892029,-33.800228],[-69.819321,-34.231419],[-69.918579,-34.295567],[-70.01841,-34.28281],[-70.011452,-34.401867],[-70.127617,-34.487751],[-70.227257,-34.63306],[-70.223549,-34.672535],[-70.311028,-34.768803],[-70.273567,-34.839767],[-70.340095,-34.932755],[-70.371979,-35.048973],[-70.357483,-35.132595],[-70.416901,-35.192352],[-70.54834,-35.205906],[-70.578438,-35.272091],[-70.436409,-35.327026],[-70.442078,-35.44968],[-70.388748,-35.523598],[-70.40316,-35.632866],[-70.325722,-35.81065],[-70.419304,-35.902214],[-70.372971,-36.037285],[-70.419083,-36.145332],[-70.471458,-36.171188],[-70.558922,-36.125549],[-70.630394,-36.226131],[-70.698784,-36.254688],[-70.682335,-36.39777],[-70.852142,-36.397709],[-70.955719,-36.483677],[-71.038315,-36.471249],[-71.050797,-36.598354],[-71.11483,-36.663666],[-71.128929,-36.792564],[-71.166657,-36.833256],[-71.101624,-36.943192],[-71.155792,-37.000141],[-71.14325,-37.207165],[-71.212784,-37.297554],[-71.117562,-37.481075],[-71.139191,-37.593075],[-71.203217,-37.680099],[-71.13633,-37.818851],[-71.190865,-37.863625],[-70.998756,-38.094086],[-71.035599,-38.250286],[-71.002281,-38.410442],[-70.832413,-38.557713],[-70.947517,-38.745373],[-71.054352,-38.740444],[-71.422371,-38.923977],[-71.436882,-39.033859],[-71.388367,-39.29612],[-71.454399,-39.371887],[-71.466744,-39.483807],[-71.530289,-39.517231],[-71.492462,-39.617439],[-71.716011,-39.646912],[-71.68512,-39.848144],[-71.589058,-39.897068],[-71.684151,-40.025879],[-71.671257,-40.104076],[-71.788536,-40.078152],[-71.829582,-40.226128],[-71.654076,-40.368649],[-71.719292,-40.438099],[-71.804535,-40.41164],[-71.852653,-40.563309],[-71.841286,-40.645409],[-71.94577,-40.729645],[-71.852036,-40.949478],[-71.842438,-41.256382],[-71.906403,-41.360573],[-71.818878,-41.571144],[-71.854843,-41.60268],[-71.745583,-41.827698],[-71.759193,-42.020691],[-71.732208,-42.120995],[-71.919235,-42.187328],[-72.028374,-42.141361],[-72.124382,-42.312515],[-72.049866,-42.37751],[-72.031189,-42.501446],[-72.119308,-42.562008],[-72.102127,-42.779175],[-72.110352,-42.914524],[-71.989342,-43.029675],[-71.984543,-43.078144],[-71.739624,-43.171421],[-71.73008,-43.31081],[-71.881821,-43.325768],[-71.931549,-43.448067],[-71.84613,-43.484837],[-71.61586,-43.705292],[-71.751595,-43.801361],[-71.662109,-43.957974],[-71.782761,-44.090073],[-71.84404,-44.105453],[-71.792457,-44.205601],[-71.817497,-44.265503],[-71.786011,-44.406277],[-71.415588,-44.394634],[-71.211403,-44.427586],[-71.110161,-44.523029],[-71.209473,-44.605823],[-71.254868,-44.785973],[-71.380379,-44.801044],[-71.486885,-44.735222],[-71.600212,-44.778576],[-71.770569,-44.753147],[-71.835762,-44.793674],[-72.06971,-44.768257],[-72.033218,-44.906269],[-71.876633,-44.941013],[-71.746491,-44.926163],[-71.560181,-44.979729],[-71.438545,-45.155949],[-71.378357,-45.172764],[-71.297264,-45.300262],[-71.35881,-45.352138],[-71.504921,-45.398579],[-71.466019,-45.496326],[-71.732903,-45.545612],[-71.771622,-45.737423],[-71.731453,-45.848095],[-71.629807,-45.888493],[-71.59771,-45.964981],[-71.722778,-46.087795],[-71.884018,-46.1409],[-71.776871,-46.189213],[-71.732636,-46.355713],[-71.665047,-46.507393],[-71.645851,-46.682537],[-71.819725,-46.79002],[-71.931313,-46.811447],[-71.946053,-46.926724],[-71.903953,-47.101181],[-71.844215,-47.168274],[-72.106133,-47.3297],[-72.137566,-47.403217],[-72.297645,-47.427711],[-72.287376,-47.618694],[-72.383476,-47.647015],[-72.519943,-47.925236],[-72.453262,-47.95467],[-72.334343,-48.073906],[-72.289246,-48.356899],[-72.357346,-48.354946],[-72.451164,-48.490639],[-72.597732,-48.48259],[-72.546745,-48.677059],[-72.549667,-48.790794],[-72.72451,-48.91275],[-72.916809,-48.943043],[-73.081108,-49.083401],[-73.092819,-49.134388],[-73.473251,-49.157078],[-73.493286,-49.259033],[-73.451874,-49.311657],[-73.496895,-49.500999],[-73.562538,-49.515186],[-73.45034,-49.739178],[-73.442314,-49.837971],[-73.545097,-49.924343],[-73.499855,-50.057159],[-73.572502,-50.280235],[-73.437622,-50.430923],[-73.121872,-50.695133],[-73.000648,-50.748379],[-72.863823,-50.656197],[-72.737602,-50.616367],[-72.615212,-50.674858],[-72.473717,-50.602665],[-72.27935,-50.661705],[-72.326858,-50.744709],[-72.230858,-50.855255],[-72.250389,-51.025475],[-72.329018,-51.03997],[-72.402039,-51.118649],[-72.364647,-51.183125],[-72.260322,-51.234177],[-72.321228,-51.304031],[-72.350235,-51.485554],[-72.423439,-51.536034],[-72.342331,-51.597576],[-72.293373,-51.698967],[-72.117935,-51.753063],[-71.95533,-51.868038],[-71.910797,-51.998844],[-71.07354,-51.999367],[-70.019356,-51.998188],[-69.450455,-52.153999],[-69.218902,-52.149467],[-68.989647,-52.206451],[-68.824051,-52.278217],[-68.426735,-52.334953],[-68.439857,-52.400147],[-68.497116,-52.335861],[-69,-52.282593],[-69.204468,-52.196648],[-69.447128,-52.263668],[-69.550247,-52.469326],[-69.700767,-52.549004],[-69.851997,-52.490017],[-69.928413,-52.529331],[-70.324173,-52.6399],[-70.43116,-52.692318],[-70.57103,-52.669342],[-70.799919,-52.763611],[-70.87355,-52.90799],[-70.816872,-53.015442],[-70.932381,-53.172749],[-70.936874,-53.321659],[-70.983139,-53.382309],[-70.906982,-53.627239],[-70.96228,-53.788792],[-71.166466,-53.875916],[-71.296516,-53.901745],[-71.429054,-53.849518],[-71.686005,-53.811985],[-71.90197,-53.715202],[-72.094986,-53.69886],[-72.400803,-53.499706],[-72.463143,-53.425564],[-72.442627,-53.341621],[-72.273209,-53.243488],[-71.698143,-53.216034],[-71.585549,-53.16716],[-71.400833,-53.137608],[-71.258377,-53.028309],[-71.246979,-52.980816],[-71.121857,-52.895767],[-71.180756,-52.815544],[-71.349899,-52.806747],[-71.396393,-52.716053],[-71.529144,-52.576714],[-71.929466,-52.534332],[-72.045189,-52.552929],[-72.164322,-52.51511],[-72.363449,-52.563438],[-72.477798,-52.649105],[-72.576248,-52.573463],[-72.70211,-52.544426],[-72.875587,-52.579552],[-72.68235,-52.668259],[-72.891525,-52.810272],[-73.033455,-52.849445],[-72.95813,-53.028515],[-73.10244,-53.100327],[-73.320274,-53.080921],[-73.444992,-53.005768],[-73.277008,-52.926582],[-73.392349,-52.874191],[-73.318703,-52.794605],[-73.323227,-52.732864],[-73.248528,-52.631275],[-73.615395,-52.651428],[-73.682045,-52.632267],[-73.558083,-52.465504],[-73.670013,-52.447151],[-73.595764,-52.351231],[-73.652855,-52.129349],[-73.516212,-52.21172],[-73.385307,-52.237583],[-73.251503,-52.222599],[-73.240295,-52.1227],[-73.178902,-52.1264],[-73.058632,-52.091488],[-72.943436,-52.206509],[-72.960137,-52.059551],[-72.870766,-51.967445],[-72.726944,-52.015244],[-72.731598,-52.069855],[-72.62104,-52.117859],[-72.541733,-52.212936],[-72.620209,-52.36573],[-72.523666,-52.347366],[-72.47609,-52.212772],[-72.669861,-52.047684],[-72.661819,-51.954227],[-72.560532,-51.976246],[-72.449638,-51.917397],[-72.555931,-51.781944],[-72.656143,-51.842777],[-72.776825,-51.821827],[-72.86911,-51.76585],[-72.976761,-51.77903],[-72.917191,-51.87162],[-73.13594,-51.951817],[-73.179718,-52.112587],[-73.275925,-52.11647],[-73.317787,-52.182053],[-73.592545,-52.022598],[-73.569328,-51.986412],[-73.821152,-51.649746],[-73.882111,-51.635059],[-73.959435,-51.419083],[-73.819992,-51.401054],[-73.651451,-51.511223],[-73.725189,-51.315853],[-73.780411,-51.216534],[-73.90509,-51.265747],[-73.94957,-51.21656],[-74.086044,-51.215282],[-74.157951,-51.06971],[-74.230186,-51.033894],[-74.230301,-50.920364],[-74.123443,-50.872776],[-73.972977,-50.893345],[-73.805031,-50.805386],[-73.787292,-50.693626],[-73.64756,-50.630066],[-73.744827,-50.566509],[-73.801742,-50.61586],[-73.833862,-50.781235],[-73.938957,-50.848232],[-74.111679,-50.790066],[-74.374367,-50.381496],[-74.446694,-50.375404],[-74.558464,-50.248539],[-74.699394,-50.20422],[-74.565361,-50.070637],[-74.353241,-50.009213],[-74.264633,-49.799236],[-74.320572,-49.635605],[-74.222946,-49.569118],[-74.093719,-49.53849],[-74.071526,-49.274845],[-73.954071,-49.191055],[-73.989876,-49.116352],[-74.130501,-49.270538],[-74.174439,-49.415947],[-74.175682,-49.527489],[-74.384712,-49.415825],[-74.383286,-49.109036],[-74.454643,-49.069523],[-74.398056,-48.993481],[-74.437546,-48.800766],[-74.329285,-48.73658],[-74.373375,-48.67749],[-74.360557,-48.589233],[-74.225441,-48.497116],[-74.040703,-48.535538],[-74.018524,-48.50983],[-74.027756,-48.451664],[-74.057045,-48.399372],[-74.259209,-48.325127],[-74.260734,-48.275456],[-74.43351,-48.190788],[-74.512589,-48.103615],[-74.598679,-48.102428],[-74.655022,-48.01918],[-74.533371,-47.941662],[-74.331963,-48.015682],[-74.138847,-48.002388],[-73.971657,-48.055962],[-73.903381,-48.036072],[-73.592941,-48.150875],[-73.650421,-47.893478],[-73.584869,-47.807365],[-73.712601,-47.770676],[-73.941254,-47.829193],[-74.03437,-47.783916],[-74.1856,-47.792973],[-74.380737,-47.740074],[-74.500298,-47.784969],[-74.665665,-47.756092],[-74.730896,-47.697956],[-74.592285,-47.546982],[-74.418182,-47.536858],[-74.38295,-47.673225],[-74.275353,-47.616745],[-74.334953,-47.551315],[-74.507751,-47.445541],[-74.47628,-47.364708],[-74.303536,-47.203476],[-74.188919,-47.195831],[-74.231064,-47.09507],[-74.146134,-46.950573],[-74.275154,-46.820301],[-74.247787,-46.772175],[-74.445923,-46.755535],[-74.492279,-46.857185],[-74.660599,-46.884823],[-74.734001,-46.819263],[-74.976006,-46.760414],[-75.13913,-46.605824],[-75.371864,-46.656498],[-75.427803,-46.699284],[-75.30265,-46.854595],[-75.307625,-46.897644],[-75.452194,-46.951961],[-75.550377,-46.939884],[-75.6865,-46.800602],[-75.69078,-46.717972],[-75.614899,-46.55537],[-75.514046,-46.569996],[-75.308701,-46.394348],[-75.132523,-46.328209],[-75.059578,-46.225712],[-74.950035,-46.246582],[-74.789718,-46.119682],[-75.066841,-46.09935],[-75.02079,-46.006763],[-75.095421,-45.891666],[-74.97393,-45.894474],[-74.797493,-45.863949],[-74.699104,-45.816803],[-74.526237,-45.843037],[-74.346275,-45.799431],[-74.265648,-45.834042],[-74.08889,-45.819923],[-73.948982,-46.079082],[-73.738258,-46.277069],[-73.794548,-46.389496],[-73.913711,-46.484982],[-73.960213,-46.566635],[-73.828338,-46.586102],[-73.676094,-46.314949],[-73.614319,-46.064331],[-73.642631,-45.986286],[-73.524803,-45.852455],[-73.553764,-45.788609],[-73.497452,-45.469784],[-73.29213,-45.317825],[-73.164902,-45.306225],[-73.105255,-45.394177],[-73.011627,-45.389729],[-73.201469,-45.242817],[-73.321617,-45.290657],[-73.427635,-45.274818],[-73.432732,-45.1884],[-73.314049,-45.202045],[-73.281746,-45.149567],[-73.386566,-45.025372],[-73.360443,-44.961864],[-73.100151,-44.95068],[-72.929176,-44.863651],[-72.750725,-44.74276],[-72.667503,-44.53738],[-72.675842,-44.498333],[-72.816971,-44.382683],[-72.985825,-44.281433],[-73.190018,-44.247692],[-73.259049,-44.196117],[-73.27771,-44.114136],[-73.132942,-44.014641],[-73.066826,-43.861511],[-73.006821,-43.839241],[-72.946251,-43.636539],[-73.002075,-43.591827],[-73.093857,-43.445366],[-73.065689,-43.330994],[-72.888855,-43.25005],[-72.912964,-43.125725],[-72.856697,-43.025543],[-72.793968,-43.030129],[-72.722854,-42.914673],[-72.838867,-42.835995],[-72.85598,-42.777302],[-72.798149,-42.684052],[-72.859993,-42.622177],[-72.792183,-42.508942],[-72.59417,-42.559143],[-72.766136,-42.380257],[-72.774681,-42.250874],[-72.602638,-42.196945],[-72.527298,-42.293339],[-72.444939,-42.270088],[-72.469177,-42.121841],[-72.534294,-42.039402],[-72.739082,-42.003876],[-72.812012,-41.968147],[-72.789444,-41.842575],[-72.626991,-41.712276],[-72.66906,-41.62355],[-72.797035,-41.510929],[-72.93779,-41.478493],[-73.045708,-41.532539],[-73.068237,-41.620251],[-73.039467,-41.703537],[-73.156296,-41.771561],[-73.258812,-41.787163],[-73.376152,-41.766232],[-73.480614,-41.797131],[-73.735382,-41.738079],[-73.689194,-41.632122],[-73.861961,-41.4669],[-73.834549,-41.346539],[-73.923233,-41.145985],[-73.944077,-40.976643],[-73.847046,-40.911266],[-73.890144,-40.866192],[-73.814331,-40.696129],[-73.719818,-40.537529],[-73.768318,-40.473682],[-73.757424,-40.305164],[-73.724823,-40.210373],[-73.664955,-40.162308],[-73.655762,-40.088337],[-73.713211,-40.006905],[-73.432655,-39.860683],[-73.366386,-39.684998],[-73.284721,-39.58622],[-73.203911,-39.369186],[-73.289871,-39.066364],[-73.396088,-38.831436],[-73.489067,-38.659374],[-73.533486,-38.38686],[-73.515266,-38.278572],[-73.450508,-38.119583],[-73.489967,-37.965939],[-73.648285,-37.729588],[-73.678612,-37.62846],[-73.59671,-37.535038],[-73.590416,-37.463215],[-73.654755,-37.298206],[-73.645256,-37.200558],[-73.437401,-37.238419],[-73.276573,-37.228935],[-73.198403,-37.174366],[-73.145088,-37.064571],[-73.190399,-37.003677],[-73.160194,-36.827496],[-73.216591,-36.774479],[-73.097351,-36.726471],[-72.992409,-36.730686],[-72.902817,-36.450703],[-72.812301,-36.274872],[-72.817741,-36.09317],[-72.78804,-35.978149],[-72.703018,-35.917519],[-72.561958,-35.766144],[-72.63871,-35.598282],[-72.493065,-35.455006],[-72.499176,-35.391266],[-72.40448,-35.305008],[-72.385384,-35.216934],[-72.192917,-35.081436],[-72.180741,-34.899544],[-72.074135,-34.731892],[-72.048294,-34.659088],[-72.054024,-34.431122],[-71.97287,-34.329563],[-72.010147,-34.124058],[-71.886337,-33.986305],[-71.781983,-33.770496],[-71.691605,-33.740089],[-71.637795,-33.672638],[-71.600822,-33.539471],[-71.709488,-33.429672],[-71.654747,-33.304943],[-71.719879,-33.210484],[-71.661278,-33.023506],[-71.578842,-33.022221],[-71.525894,-32.87635],[-71.556656,-32.791393],[-71.500557,-32.772797],[-71.438599,-32.633057],[-71.48687,-32.52557],[-71.444,-32.498905],[-71.410828,-32.386353],[-71.478149,-32.340385],[-71.477928,-32.271435],[-71.543556,-32.188129],[-71.49498,-31.969685],[-71.522385,-31.922859],[-71.511742,-31.757345],[-71.573296,-31.582073],[-71.572029,-31.501232],[-71.618309,-31.399376],[-71.630783,-31.264803],[-71.671463,-31.148979],[-71.65345,-30.975666],[-71.68486,-30.915403],[-71.714348,-30.607197],[-71.688461,-30.401609],[-71.64875,-30.265589],[-71.517029,-30.287418],[-71.448738,-30.168804],[-71.373192,-30.084927],[-71.40271,-29.993759],[-71.293686,-29.949915],[-71.277069,-29.86113],[-71.328873,-29.733454],[-71.291962,-29.598825],[-71.329041,-29.546419],[-71.30854,-29.417505],[-71.339638,-29.33061],[-71.459991,-29.249556],[-71.502846,-29.136234],[-71.466354,-29.106268],[-71.521286,-28.918993],[-71.495201,-28.855608],[-71.397675,-28.805878],[-71.310089,-28.691565],[-71.256569,-28.46587],[-71.165916,-28.354269],[-71.198257,-28.294283],[-71.156921,-28.218754],[-71.168648,-28.124285],[-71.145096,-27.980751],[-71.079605,-27.782762],[-71.041038,-27.718294],[-70.937584,-27.660307],[-70.89843,-27.459124],[-70.961159,-27.369854],[-70.931107,-27.32222],[-70.969795,-27.168865],[-70.930862,-27.111956],[-70.810997,-27.054606],[-70.789505,-26.995893],[-70.829361,-26.882401],[-70.686539,-26.567955],[-70.709396,-26.533894],[-70.693962,-26.387878],[-70.628136,-26.336615],[-70.673683,-26.1672],[-70.631065,-25.991175],[-70.694786,-25.898334],[-70.731201,-25.782654],[-70.627884,-25.511461],[-70.533531,-25.475935],[-70.448425,-25.351143],[-70.437042,-25.247848],[-70.460159,-25.146439],[-70.506798,-25.094564],[-70.471863,-25.029057],[-70.517212,-24.930416],[-70.580208,-24.715754],[-70.55574,-24.5819],[-70.577293,-24.55208],[-70.541405,-24.409035],[-70.500687,-24.159311],[-70.499878,-23.809366],[-70.446465,-23.742126],[-70.391304,-23.612078],[-70.42984,-23.496792],[-70.50489,-23.462009],[-70.546623,-23.534206],[-70.61837,-23.494831],[-70.578247,-23.32517],[-70.599358,-23.273315],[-70.557396,-23.18116],[-70.577103,-23.100414],[-70.478691,-23.098124],[-70.358566,-23.042793],[-70.28524,-22.898123],[-70.312775,-22.801929],[-70.237167,-22.489925],[-70.23957,-22.378578],[-70.212196,-22.099932],[-70.142006,-21.829452],[-70.157974,-21.762474],[-70.143013,-21.630339],[-70.092224,-21.586267],[-70.056274,-21.433865],[-70.067276,-21.313402],[-70.126312,-21.087496],[-70.178429,-21.022894],[-70.133888,-20.95211],[-70.147117,-20.865828],[-70.194199,-20.816425],[-70.181419,-20.655951],[-70.199753,-20.529623],[-70.163902,-20.483795],[-70.182953,-20.356306],[-70.144112,-20.322222],[-70.158516,-20.215],[-70.123901,-20.095613],[-70.12281,-19.994055],[-70.156418,-19.823904],[-70.170784,-19.6521],[-70.205414,-19.58465],[-70.224449,-19.404289],[-70.282601,-19.285336],[-70.267654,-19.143249],[-70.359596,-18.795505],[-70.346992,-18.650425],[-70.305214,-18.436741],[-70.374191,-18.349728]]],[[[-68.604751,-52.665375],[-68.609894,-53.375065],[-68.606651,-53.94672],[-68.610581,-54.895893],[-68.859337,-54.952789],[-69.079247,-54.959709],[-69.595688,-54.834175],[-69.864784,-54.824184],[-70.008888,-54.852474],[-70.292976,-54.857929],[-70.549156,-54.791],[-70.808113,-54.835716],[-70.79039,-54.7635],[-70.965439,-54.722382],[-71.001259,-54.620243],[-71.164726,-54.70451],[-71.281814,-54.673626],[-71.261177,-54.556465],[-71.374016,-54.548035],[-71.389725,-54.659855],[-71.669678,-54.61768],[-71.800308,-54.650124],[-72.015053,-54.519749],[-71.943787,-54.445736],[-71.837845,-54.471847],[-71.800064,-54.53867],[-71.689079,-54.533699],[-71.632225,-54.456959],[-71.331802,-54.373905],[-71.18119,-54.423309],[-70.968628,-54.453999],[-70.925125,-54.365143],[-70.84021,-54.326641],[-70.572723,-54.351349],[-70.520073,-54.300346],[-70.822647,-54.273838],[-70.900062,-54.152191],[-70.82132,-54.146214],[-70.365791,-54.317287],[-70.205864,-54.397961],[-70.062401,-54.252144],[-69.851807,-54.434753],[-69.857414,-54.295631],[-69.617775,-54.364342],[-69.545578,-54.336407],[-69.214249,-54.455078],[-69.167069,-54.385853],[-69.28244,-54.332645],[-69.666718,-54.212532],[-69.919075,-54.164017],[-70.046166,-54.104549],[-70.08033,-53.992863],[-70.181236,-53.833858],[-70.146462,-53.743393],[-70.019325,-53.725693],[-69.914284,-53.655922],[-69.788521,-53.663116],[-69.38327,-53.526138],[-69.315453,-53.484051],[-69.378792,-53.353523],[-69.589584,-53.345387],[-69.957741,-53.390747],[-70.204109,-53.481209],[-70.341682,-53.39135],[-70.460937,-53.363369],[-70.469666,-53.254654],[-70.42791,-53.016777],[-70.253784,-53.055962],[-70.128616,-53.002205],[-70.095749,-52.930187],[-70.269898,-52.868336],[-70.347015,-52.745312],[-70.133751,-52.73315],[-70.030495,-52.826641],[-69.901055,-52.840271],[-69.693931,-52.749157],[-69.58638,-52.632034],[-69.615967,-52.563038],[-69.559799,-52.511482],[-69.394119,-52.468517],[-69.214791,-52.676544],[-69.127907,-52.704674],[-68.811852,-52.610935],[-68.77887,-52.541115],[-68.604751,-52.665375]]],[[[-74.121689,-43.358574],[-74.308876,-43.322601],[-74.408432,-43.238297],[-74.173729,-42.897144],[-74.171402,-42.775646],[-74.134186,-42.633495],[-74.194679,-42.442387],[-74.14769,-42.319363],[-74.166305,-42.248859],[-74.062218,-42.138695],[-74.057549,-41.989368],[-74.006119,-41.884689],[-74.063454,-41.834915],[-74.003098,-41.774982],[-73.768143,-41.86372],[-73.673134,-41.80006],[-73.540291,-41.800499],[-73.506104,-41.853016],[-73.546638,-41.930199],[-73.420029,-42.069126],[-73.488235,-42.149181],[-73.363937,-42.210419],[-73.352341,-42.332474],[-73.445373,-42.322468],[-73.627991,-42.366837],[-73.672379,-42.404606],[-73.64817,-42.428482],[-73.683243,-42.479309],[-73.587799,-42.535942],[-73.729187,-42.564926],[-73.787163,-42.613472],[-73.482086,-42.803726],[-73.459167,-42.88253],[-73.607674,-42.895325],[-73.594566,-42.959938],[-73.478119,-43.117428],[-73.635628,-43.122685],[-73.755203,-43.203438],[-73.670067,-43.321529],[-73.804207,-43.315529],[-73.800423,-43.415733],[-73.923386,-43.381928],[-74.121689,-43.358574]]],[[[-74.726875,-49.449547],[-74.810028,-49.469471],[-74.954796,-49.557079],[-74.997574,-49.749821],[-74.92141,-49.798729],[-75.002869,-49.872032],[-75.116539,-49.875893],[-75.221436,-49.699669],[-75.299309,-49.61935],[-75.34993,-49.492161],[-75.441521,-49.447983],[-75.447861,-49.299351],[-75.298737,-49.260544],[-75.206139,-49.305607],[-75.028557,-49.256523],[-74.887939,-49.338894],[-74.822151,-49.105724],[-75.067825,-48.847095],[-75.041839,-48.795605],[-74.737221,-48.676094],[-74.592216,-48.741669],[-74.520843,-48.711948],[-74.505272,-48.901298],[-74.446625,-48.975407],[-74.484428,-49.065517],[-74.440834,-49.108315],[-74.414879,-49.306389],[-74.469116,-49.497948],[-74.457649,-49.62368],[-74.388962,-49.689182],[-74.401199,-49.901638],[-74.626038,-50.066242],[-74.857018,-50.036022],[-74.905594,-49.943523],[-74.831787,-49.81974],[-74.881203,-49.798012],[-74.914253,-49.674591],[-74.878532,-49.543674],[-74.726875,-49.449547]]],[[[-72.965256,-53.179794],[-72.884674,-53.054878],[-72.972405,-52.92897],[-72.920044,-52.835548],[-72.767822,-52.785019],[-72.711151,-52.713287],[-72.531151,-52.835495],[-72.229446,-52.705696],[-72.165466,-52.651009],[-71.823768,-52.697212],[-71.487793,-52.645306],[-71.407806,-52.725513],[-71.402122,-52.799706],[-71.562401,-52.873379],[-71.910759,-53.001659],[-72.023186,-53.128159],[-72.140137,-53.13269],[-72.239014,-53.049606],[-72.341293,-53.103825],[-72.204132,-53.18832],[-72.523132,-53.291191],[-72.508156,-53.400948],[-72.383034,-53.532082],[-72.523094,-53.549763],[-72.801933,-53.430641],[-72.901031,-53.353416],[-73.171578,-53.265831],[-73.293358,-53.180241],[-72.965256,-53.179794]]],[[[-68.395569,-54.954002],[-68.334908,-55.076229],[-68.528587,-55.107838],[-68.590515,-55.158142],[-68.352463,-55.182026],[-68.244118,-55.282414],[-68.32473,-55.348904],[-68.297463,-55.401165],[-68.14135,-55.387447],[-68.151802,-55.476387],[-67.97332,-55.628056],[-68.112007,-55.702324],[-68.144264,-55.612904],[-68.337563,-55.472511],[-68.633652,-55.467941],[-68.83419,-55.50975],[-68.973457,-55.432678],[-68.862808,-55.377468],[-68.8834,-55.271053],[-69.029388,-55.275547],[-69.254082,-55.207676],[-69.434898,-55.258434],[-69.219139,-55.392471],[-69.250733,-55.489021],[-69.414009,-55.468849],[-69.5,-55.376072],[-69.830414,-55.272881],[-69.83841,-55.211971],[-69.957138,-55.15723],[-69.86219,-55.061863],[-69.67511,-55.057972],[-69.381134,-55.020428],[-69.283501,-54.98682],[-68.816849,-54.985512],[-68.718041,-54.947376],[-68.492325,-54.92527],[-68.395569,-54.954002]]],[[[-72.601456,-53.56197],[-72.441208,-53.589226],[-72.372582,-53.684681],[-72.140984,-53.794182],[-72.353432,-53.983574],[-72.534798,-54.096752],[-72.880066,-54.049995],[-72.823753,-53.861362],[-73.024467,-53.888165],[-73.105484,-53.934578],[-73.246086,-53.935196],[-73.319694,-53.844456],[-73.266853,-53.758507],[-73.324921,-53.708641],[-73.508637,-53.726753],[-73.481117,-53.66069],[-73.625839,-53.618164],[-73.41658,-53.563454],[-73.311828,-53.579906],[-73.431671,-53.481472],[-73.418991,-53.448383],[-73.291672,-53.483173],[-72.919159,-53.438576],[-72.796402,-53.466202],[-72.712776,-53.597652],[-72.601456,-53.56197]]],[[[-67.992508,-54.903873],[-67.638275,-54.919933],[-67.30204,-54.920383],[-67.184662,-54.950928],[-67.035774,-55.122402],[-67.078949,-55.203529],[-67.21447,-55.310066],[-67.433525,-55.294044],[-67.495163,-55.174583],[-67.572891,-55.181747],[-67.657181,-55.274448],[-67.881775,-55.182766],[-68.057198,-55.236176],[-68.158104,-55.189877],[-68.162575,-55.00148],[-68.308685,-55.004967],[-68.369545,-54.943268],[-68.19397,-54.901009],[-67.992508,-54.903873]]],[[[-72.899956,-44.458431],[-72.75486,-44.476742],[-72.698525,-44.532536],[-72.808029,-44.642677],[-72.820923,-44.72789],[-72.906448,-44.757752],[-73.042549,-44.871906],[-73.21302,-44.934956],[-73.295029,-44.92091],[-73.326317,-44.818687],[-73.434158,-44.726135],[-73.452248,-44.634762],[-73.406471,-44.572594],[-73.31604,-44.60247],[-73.250893,-44.432411],[-73.094475,-44.375755],[-72.972534,-44.372524],[-72.899956,-44.458431]]],[[[-70.663856,-53.694534],[-70.558418,-53.620319],[-70.484856,-53.677635],[-70.412758,-53.807846],[-70.449242,-53.897289],[-70.33699,-54.009228],[-70.559173,-54.060062],[-70.529472,-54.205643],[-70.637924,-54.211918],[-70.842095,-54.119087],[-70.891655,-53.893406],[-70.701736,-53.789425],[-70.663856,-53.694534]]],[[[-73.812141,-53.059685],[-73.547974,-53.156773],[-73.432152,-53.146648],[-73.172211,-53.330952],[-73.338257,-53.352615],[-73.431008,-53.308952],[-73.57505,-53.339439],[-73.617546,-53.232571],[-73.776047,-53.172066],[-73.855644,-53.0835],[-74.320778,-53.118839],[-74.421417,-52.990681],[-74.577896,-52.95211],[-74.651031,-52.840755],[-74.749153,-52.758812],[-74.698517,-52.725178],[-74.37561,-52.937321],[-74.026062,-52.966614],[-73.812141,-53.059685]]],[[[-71.402138,-54.124203],[-71.489204,-54.187664],[-71.505066,-54.27914],[-71.660919,-54.220425],[-71.680725,-54.146008],[-71.632355,-54.129627],[-71.601799,-54.088345],[-71.602112,-53.965389],[-71.267311,-54.002724],[-71.241287,-54.105862],[-71.080368,-54.066948],[-70.984772,-54.103931],[-70.966538,-54.271503],[-71.081245,-54.387264],[-71.135864,-54.393829],[-71.316254,-54.31171],[-71.438759,-54.210644],[-71.402138,-54.124203]]],[[[-71.816338,-54.153957],[-71.713333,-54.248558],[-71.956047,-54.334015],[-71.92865,-54.246201],[-72.064545,-54.192734],[-72.236664,-54.073525],[-72.194221,-54.014515],[-72.24466,-53.918121],[-72.037437,-53.940933],[-71.909279,-53.854649],[-71.80613,-53.927635],[-71.63932,-53.933861],[-71.699325,-54.002487],[-71.606262,-54.094139],[-71.696281,-54.153469],[-71.816338,-54.153957]]],[[[-75.266571,-48.166016],[-75.26709,-48.228252],[-75.198563,-48.344261],[-75.075126,-48.488041],[-75.05191,-48.608967],[-75.236069,-48.714813],[-75.285843,-48.610493],[-75.280388,-48.592045],[-75.293533,-48.535225],[-75.315521,-48.494526],[-75.280807,-48.463974],[-75.334488,-48.410606],[-75.531769,-48.443214],[-75.548523,-48.301681],[-75.474602,-48.256931],[-75.5896,-48.111858],[-75.549477,-48.073093],[-75.331368,-48.054829],[-75.266571,-48.166016]]],[[[-75.403938,-50.187782],[-75.173149,-50.263256],[-75.147255,-50.19627],[-75.320625,-50.135979],[-75.397415,-50.037739],[-75.28373,-50.004913],[-75.120636,-50.0341],[-74.985054,-50.158672],[-74.874763,-50.126583],[-74.768982,-50.155716],[-74.818047,-50.230179],[-74.903046,-50.233227],[-75.194908,-50.441666],[-75.31588,-50.443993],[-75.282402,-50.357529],[-75.463699,-50.315361],[-75.391754,-50.252178],[-75.403938,-50.187782]]],[[[-75,-48.489929],[-74.921852,-48.428577],[-74.812172,-48.405884],[-74.768288,-48.177643],[-74.69648,-48.147213],[-74.672005,-48.301338],[-74.5886,-48.392155],[-74.642449,-48.436527],[-74.608246,-48.560307],[-74.504334,-48.684788],[-74.602493,-48.710896],[-74.724503,-48.645031],[-74.955292,-48.628418],[-75.006973,-48.600655],[-75,-48.489929]]],[[[-74.699875,-51.101643],[-74.872826,-51.034954],[-74.877037,-50.88287],[-74.785202,-50.912365],[-74.609329,-50.91452],[-74.650894,-50.88335],[-74.602661,-50.722271],[-74.406342,-50.822468],[-74.364044,-51.040226],[-74.50782,-51.032677],[-74.699875,-51.101643]]],[[[-73.794571,-45],[-73.737328,-45.049164],[-73.68399,-45.17638],[-73.734383,-45.230904],[-73.986336,-45.250999],[-74.015549,-45.194531],[-74.215759,-45.171005],[-74.229683,-45.077846],[-74.165291,-45.032253],[-74.039886,-45.038975],[-73.876671,-44.98798],[-73.794571,-45]]],[[[-75,-48.114101],[-74.891449,-48.180103],[-74.783684,-48.204365],[-74.885498,-48.381039],[-75.003807,-48.467148],[-75.150055,-48.331692],[-75.219025,-48.143539],[-75.066742,-48.097839],[-75,-48.114101]]],[[[-70.543114,-55.131275],[-70.706871,-55.076241],[-70.886902,-55.087494],[-70.997559,-55.041328],[-70.980354,-54.957016],[-70.510864,-54.966854],[-70.452812,-55.035736],[-70.281891,-55.029827],[-70.239243,-55.109428],[-70.446426,-55.192657],[-70.543114,-55.131275]]],[[[-74.527153,-50.701138],[-74.518814,-50.599098],[-74.386688,-50.534309],[-74.239357,-50.650711],[-74.165169,-50.767338],[-74.348518,-50.845119],[-74.527153,-50.701138]]],[[[-69.468368,-55],[-69.728424,-55.044624],[-69.894921,-55.044064],[-69.906883,-54.886616],[-69.606209,-54.868713],[-69.312836,-54.925823],[-69.261787,-54.971626],[-69.468368,-55]]],[[[-74.356575,-47.823986],[-74.267677,-47.792656],[-73.88147,-47.879742],[-73.811386,-47.937347],[-74.314774,-47.975002],[-74.500206,-47.903526],[-74.356575,-47.823986]]],[[[-74.222931,-44.715252],[-74.398437,-44.702221],[-74.39547,-44.623436],[-74.125984,-44.595833],[-73.964539,-44.60181],[-73.880394,-44.652016],[-74.096138,-44.773067],[-74.241722,-44.809502],[-74.321693,-44.791603],[-74.349365,-44.719028],[-74.222931,-44.715252]]],[[[-73.717789,-46.031219],[-73.651283,-46.090618],[-73.731567,-46.209553],[-73.800766,-46.191704],[-73.92852,-46.091976],[-73.897064,-45.889477],[-73.772568,-45.856121],[-73.665085,-45.891769],[-73.664383,-46.01899],[-73.717789,-46.031219]]],[[[-74.818222,-51.460823],[-74.942016,-51.413628],[-74.983131,-51.347633],[-74.799888,-51.218678],[-74.722694,-51.200439],[-74.671974,-51.221626],[-74.599281,-51.20142],[-74.515679,-51.290829],[-74.626869,-51.367989],[-74.695725,-51.337624],[-74.818222,-51.460823]]],[[[-75.483452,-48.484337],[-75.419838,-48.434376],[-75.332664,-48.491653],[-75.287018,-48.598686],[-75.399353,-48.674339],[-75.511063,-48.719585],[-75.611488,-48.681637],[-75.664772,-48.58234],[-75.618652,-48.458683],[-75.483452,-48.484337]]],[[[-75.472061,-49.727165],[-75.559883,-49.702061],[-75.553581,-49.631184],[-75.408699,-49.63031],[-75.280525,-49.680279],[-75.164955,-49.859161],[-75.319016,-49.889423],[-75.370941,-49.820572],[-75.508568,-49.819302],[-75.472061,-49.727165]]],[[[-75.26844,-50.761238],[-75.31588,-50.807167],[-75.456779,-50.766579],[-75.470329,-50.709667],[-75.42363,-50.473614],[-75.062424,-50.508556],[-75.179062,-50.599697],[-75.265694,-50.599411],[-75.26844,-50.761238]]],[[[-74.271614,-45.50029],[-74.186035,-45.617909],[-74.212013,-45.690449],[-74.305061,-45.708206],[-74.369675,-45.772545],[-74.49131,-45.620327],[-74.398117,-45.444687],[-74.271614,-45.50029]]],[[[-75.487709,-49.055771],[-75.624687,-48.978546],[-75.657662,-48.907017],[-75.58522,-48.850628],[-75.400917,-48.833118],[-75.267502,-48.878529],[-75.173309,-49.026951],[-75.265824,-49.087906],[-75.316925,-48.962315],[-75.487709,-49.055771]]],[[[-73.755608,-52.420361],[-73.675331,-52.487278],[-73.759735,-52.588123],[-73.746956,-52.648266],[-73.825394,-52.718201],[-73.964447,-52.703163],[-74.063492,-52.586639],[-73.930657,-52.526592],[-73.864281,-52.456085],[-73.755608,-52.420361]]],[[[-75,-51.90049],[-74.774139,-51.659393],[-74.762077,-51.829433],[-74.878311,-52.066006],[-74.987999,-52.11248],[-75.076378,-51.999455],[-75,-51.90049]]],[[[-75,-49.055233],[-74.862457,-49.09079],[-74.892754,-49.298336],[-75.090805,-49.175362],[-75.229355,-49.153084],[-75.113136,-49.017674],[-75,-49.055233]]],[[[-73.618378,-45.639713],[-73.585594,-45.688637],[-73.63163,-45.773884],[-73.803047,-45.652069],[-73.730484,-45.476177],[-73.67556,-45.438362],[-73.557823,-45.467777],[-73.618378,-45.639713]]],[[[-74.273727,-52.16177],[-74.123688,-52.178604],[-73.95488,-52.322403],[-73.982712,-52.376198],[-74.19825,-52.407497],[-74.273727,-52.16177]]],[[[-75,-51.343727],[-75.135544,-51.479385],[-75.134346,-51.573353],[-75.203621,-51.634708],[-75.300026,-51.645153],[-75.320999,-51.554401],[-75.193039,-51.498962],[-75.233894,-51.454288],[-75.21798,-51.338928],[-75.106476,-51.296112],[-75,-51.343727]]],[[[-74.028442,-45],[-74.180008,-45.004898],[-74.248009,-45.03516],[-74.382088,-45.002987],[-74.173836,-44.871696],[-73.961044,-44.898113],[-73.898247,-44.963547],[-74.028442,-45]]],[[[-75.482307,-49.276794],[-75.626312,-49.234291],[-75.569923,-49.131302],[-75.431511,-49.081097],[-75.316246,-48.977081],[-75.262573,-49.106308],[-75.412369,-49.185326],[-75.482307,-49.276794]]],[[[-74.121849,-52.013275],[-74.045746,-51.911755],[-73.767273,-52.079716],[-73.820351,-52.150974],[-74.121849,-52.013275]]],[[[-74.143432,-45.235435],[-74.02919,-45.201427],[-73.979881,-45.261406],[-73.81015,-45.250507],[-73.771652,-45.35252],[-73.969154,-45.368561],[-74.129593,-45.327873],[-74.143432,-45.235435]]],[[[-75,-47.996815],[-75.131966,-48.015026],[-75.245018,-47.975746],[-75.054634,-47.909],[-74.97776,-47.98304],[-74.801048,-48.048859],[-74.908279,-48.144932],[-75.106682,-48.075436],[-75,-47.996815]]],[[[-74.748963,-50.691429],[-74.750466,-50.768604],[-74.646736,-50.838779],[-74.688949,-50.903435],[-74.775086,-50.899227],[-74.942085,-50.850021],[-74.958824,-50.746994],[-74.891144,-50.674004],[-74.748963,-50.691429]]],[[[-74.384102,-51.787601],[-74.18119,-51.840683],[-74.146622,-51.967945],[-74.361092,-51.903748],[-74.384102,-51.787601]]],[[[-74.127297,-51.604332],[-74.049629,-51.550804],[-73.975456,-51.81469],[-74.201065,-51.749432],[-74.234085,-51.701511],[-74.122589,-51.655006],[-74.127297,-51.604332]]],[[[-73.567734,-53.379524],[-73.426994,-53.387405],[-73.464844,-53.460522],[-73.388481,-53.530216],[-73.498451,-53.584328],[-73.692291,-53.487324],[-73.567734,-53.379524]]],[[[-73.615173,-44.669571],[-73.66954,-44.741592],[-73.749909,-44.748383],[-73.884651,-44.601807],[-73.696228,-44.529808],[-73.620514,-44.560852],[-73.615173,-44.669571]]],[[[-74.728332,-51.883789],[-74.659485,-51.990231],[-74.731834,-52.075127],[-74.855255,-52.059669],[-74.791489,-51.902065],[-74.728332,-51.883789]]],[[[-71.246048,-54.829582],[-70.930367,-54.882324],[-71.049812,-54.961601],[-71.235252,-54.884605],[-71.311424,-54.957451],[-71.40786,-54.94474],[-71.390709,-54.823616],[-71.246048,-54.829582]]],[[[-74.098045,-52.161751],[-74.000961,-52.176682],[-73.789345,-52.27533],[-73.747055,-52.395454],[-73.985657,-52.292641],[-74.098045,-52.161751]]],[[[-73.870132,-45.639736],[-73.887146,-45.711605],[-73.98024,-45.737408],[-74.05616,-45.704601],[-74.103683,-45.597477],[-73.991127,-45.541077],[-73.893822,-45.580379],[-73.870132,-45.639736]]],[[[-67.317581,-55.794067],[-67.500633,-55.72776],[-67.532776,-55.681171],[-67.401649,-55.577522],[-67.231705,-55.720829],[-67.317581,-55.794067]]],[[[-74.552429,-48.183353],[-74.454155,-48.191265],[-74.357002,-48.273834],[-74.52713,-48.356075],[-74.590759,-48.277435],[-74.552429,-48.183353]]],[[[-74.388298,-44.441143],[-74.319504,-44.397038],[-74.210953,-44.466457],[-74.381134,-44.543186],[-74.527931,-44.524326],[-74.499138,-44.429714],[-74.388298,-44.441143]]],[[[-74.057175,-45.450481],[-73.781365,-45.466698],[-73.847122,-45.576408],[-74.04467,-45.521957],[-74.057175,-45.450481]]],[[[-75.463509,-48.709343],[-75.326805,-48.636234],[-75.26487,-48.725365],[-75.533707,-48.807816],[-75.634407,-48.786625],[-75.639862,-48.719501],[-75.547562,-48.721897],[-75.503372,-48.743855],[-75.463509,-48.709343]]],[[[-72.454506,-54.181591],[-72.40461,-54.088913],[-72.307945,-54.057365],[-72.229515,-54.10313],[-72.312576,-54.259441],[-72.502312,-54.244751],[-72.454506,-54.181591]]],[[[-74.903969,-47.837772],[-74.801048,-47.826351],[-74.829292,-47.942966],[-74.889084,-48.007572],[-74.987892,-47.959595],[-74.903969,-47.837772]]],[[[-74.032906,-43.901417],[-74.163048,-43.860603],[-74.059547,-43.808983],[-73.960281,-43.847458],[-73.856804,-43.776615],[-73.792557,-43.83181],[-74.032906,-43.901417]]],[[[-75.167145,-49.019115],[-75.240585,-48.920258],[-75.262741,-48.803226],[-75.09153,-48.866787],[-75.037445,-48.968079],[-75.167145,-49.019115]]],[[[-75.28659,-47.72633],[-75.205994,-47.743671],[-75.110512,-47.697964],[-75.051437,-47.787128],[-75.169769,-47.849239],[-75.28659,-47.72633]]],[[[-74.283531,-45.311371],[-74.376419,-45.276752],[-74.3871,-45.185806],[-74.205223,-45.217644],[-74.191406,-45.319038],[-74.283531,-45.311371]]],[[[-75.053993,-48.743492],[-75.110214,-48.848911],[-75.256386,-48.777252],[-75.050934,-48.622364],[-75.053993,-48.743492]]],[[[-74.46965,-51.080124],[-74.381943,-51.11911],[-74.395706,-51.213432],[-74.567368,-51.163658],[-74.593651,-51.071178],[-74.46965,-51.080124]]],[[[-67.003403,-55.351746],[-67.058846,-55.274483],[-66.863403,-55.220997],[-66.817284,-55.296848],[-66.875786,-55.348873],[-67.003403,-55.351746]]],[[[-74.823631,-43.56723],[-74.732193,-43.533909],[-74.564911,-43.623409],[-74.759674,-43.681587],[-74.823631,-43.56723]]],[[[-74.341896,-49.593369],[-74.429337,-49.609184],[-74.461029,-49.507435],[-74.411804,-49.418232],[-74.30661,-49.485329],[-74.2668,-49.560184],[-74.341896,-49.593369]]],[[[-74.249832,-51.264137],[-74.322067,-51.056358],[-74.215012,-51.105358],[-74.249832,-51.264137]]],[[[-74.269478,-48.484211],[-74.486976,-48.375496],[-74.351952,-48.288849],[-74.282982,-48.318325],[-74.269478,-48.484211]]],[[[-73.116028,-52.10083],[-73.134735,-52.029221],[-73.044357,-51.937519],[-72.948448,-51.962593],[-73.001846,-52.063042],[-73.116028,-52.10083]]],[[[-74.051811,-51.398342],[-74.114243,-51.319553],[-74.110108,-51.242126],[-73.955917,-51.247898],[-73.934883,-51.332966],[-74.051811,-51.398342]]],[[[-73.7995,-52.901676],[-73.587792,-52.849403],[-73.362808,-52.902084],[-73.451576,-52.968254],[-73.570488,-52.885201],[-73.7995,-52.901676]]],[[[-74.414482,-45.389465],[-74.48571,-45.29097],[-74.365402,-45.289482],[-74.2696,-45.407276],[-74.414482,-45.389465]]],[[[-74.752075,-50.521057],[-74.790192,-50.489121],[-74.684891,-50.355759],[-74.539551,-50.414104],[-74.752075,-50.521057]]],[[[-70.284393,-54.2868],[-70.428116,-54.254444],[-70.498451,-54.143772],[-70.236076,-54.224144],[-70.284393,-54.2868]]],[[[-74.695297,-52.232674],[-74.665489,-52.312916],[-74.760246,-52.330662],[-74.853302,-52.226315],[-74.695297,-52.232674]]],[[[-74.55674,-45.654709],[-74.574967,-45.753979],[-74.690613,-45.730778],[-74.65036,-45.626057],[-74.55674,-45.654709]]],[[[-74.000092,-44.320633],[-74.064644,-44.301346],[-74.111648,-44.197327],[-74.026512,-44.136917],[-73.972786,-44.198097],[-74.000092,-44.320633]]],[[[-75,-51.871952],[-75.130813,-51.825787],[-75.080322,-51.760593],[-74.957832,-51.741318],[-75,-51.871952]]],[[[-73.866928,-44.850609],[-73.741783,-44.880402],[-73.765633,-44.953587],[-73.887985,-44.916565],[-73.866928,-44.850609]]],[[[-70.688278,-54.847153],[-70.578728,-54.821323],[-70.391442,-54.845726],[-70.565491,-54.91288],[-70.688278,-54.847153]]],[[[-74.006195,-45.93858],[-74.046356,-45.840343],[-74.030922,-45.740456],[-73.931648,-45.772755],[-73.937164,-45.870148],[-74.006195,-45.93858]]],[[[-73.179611,-54.049088],[-73.30143,-54.130642],[-73.39109,-54.016857],[-73.179611,-54.049088]]],[[[-74.442398,-48.510902],[-74.491547,-48.397236],[-74.279732,-48.488377],[-74.442398,-48.510902]]],[[[-66.579224,-55.289558],[-66.629135,-55.204456],[-66.448791,-55.191273],[-66.497208,-55.2756],[-66.579224,-55.289558]]],[[[-109.291283,-27.094322],[-109.352241,-27.17058],[-109.455894,-27.185175],[-109.404724,-27.071665],[-109.291283,-27.094322]]],[[[-74.052582,-48.514153],[-74.188408,-48.454708],[-74.164307,-48.369026],[-74.043198,-48.436253],[-74.052582,-48.514153]]],[[[-74.156982,-44.448338],[-73.973724,-44.452934],[-73.928711,-44.538647],[-74.100571,-44.545952],[-74.156982,-44.448338]]],[[[-73.262764,-43.964363],[-73.241989,-43.916191],[-73.117623,-43.930454],[-73.153969,-44.019485],[-73.262764,-43.964363]]],[[[-75,-48.626621],[-74.806366,-48.677345],[-74.991539,-48.767662],[-75.038437,-48.739536],[-75,-48.626621]]],[[[-74.398369,-47.133221],[-74.481712,-47.073322],[-74.365692,-47.034771],[-74.305778,-47.088623],[-74.398369,-47.133221]]],[[[-73.833534,-51.372494],[-73.908341,-51.298641],[-73.822121,-51.25576],[-73.738579,-51.29903],[-73.748718,-51.379311],[-73.833534,-51.372494]]],[[[-73.393906,-42.592899],[-73.524178,-42.483673],[-73.642303,-42.46064],[-73.607811,-42.437519],[-73.653114,-42.403469],[-73.584831,-42.386097],[-73.527466,-42.402107],[-73.508484,-42.466522],[-73.395218,-42.545143],[-73.393906,-42.592899]]],[[[-73.899254,-53.529068],[-73.85189,-53.454266],[-73.689148,-53.534313],[-73.856239,-53.60416],[-73.899254,-53.529068]]],[[[-75.073036,-44.931416],[-75.153129,-44.823151],[-75.076233,-44.785202],[-75.014725,-44.850555],[-75.073036,-44.931416]]],[[[-73.785347,-53.227585],[-73.973663,-53.128456],[-73.892067,-53.095287],[-73.785347,-53.227585]]],[[[-73.78698,-51.915791],[-73.706009,-51.996719],[-73.783043,-52.026024],[-73.878845,-51.96603],[-73.78698,-51.915791]]],[[[-74.671272,-51.208107],[-74.76728,-51.175484],[-74.606918,-51.106663],[-74.578804,-51.159718],[-74.671272,-51.208107]]],[[[-75,-51.212513],[-74.852638,-51.174522],[-74.850296,-51.249428],[-75,-51.212513]]],[[[-74.738602,-45.717838],[-74.868622,-45.643414],[-74.797966,-45.607876],[-74.738602,-45.717838]]]]},"properties":{"name":"智利","name_en":"CHILE","id":"CHL"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.775382,21.564084],[112.705933,21.679209],[112.821071,21.653688],[112.775382,21.564084]]],[[[110.106537,20.026789],[110.144386,20.074357],[110.293254,20.059667],[110.387387,20.113474],[110.526615,20.075272],[110.562274,20.10976],[110.717286,20.148705],[110.744635,20.073938],[110.871471,20.011507],[110.969567,20.010133],[111.06868,19.651707],[110.920754,19.552646],[110.844054,19.450178],[110.730004,19.378841],[110.619267,19.152093],[110.577905,18.784701],[110.500741,18.752745],[110.495308,18.64998],[110.24622,18.609604],[110.116578,18.506573],[110.090514,18.399291],[110.022741,18.360016],[109.919641,18.37554],[109.783398,18.337448],[109.749839,18.193339],[109.584484,18.143659],[109.355849,18.21496],[109.288069,18.264919],[109.138682,18.26782],[109.108313,18.323894],[108.94462,18.313898],[108.881219,18.416563],[108.709977,18.44411],[108.644951,18.486701],[108.664098,18.673383],[108.652575,18.740514],[108.593168,18.809475],[108.637872,18.924608],[108.598307,19.055811],[108.605713,19.264649],[108.644784,19.349277],[108.747652,19.391718],[109.048579,19.619992],[109.093647,19.68983],[109.155027,19.710301],[109.166622,19.804778],[109.30812,19.917852],[109.498675,19.873398],[109.585352,19.988208],[109.712236,20.017388],[109.761758,19.981307],[109.965245,19.993613],[110.106537,20.026789]]],[[[113.896965,7.607029],[114.029056,7.669886],[114.20756,7.782506],[114.268229,7.870723],[114.41466,7.952783],[114.540759,7.945563],[114.540487,7.861958],[114.420082,7.76572],[114.368451,7.638626],[114.157594,7.561438],[113.987173,7.536241],[113.896965,7.607029]]],[[[115.167365,8.386298],[115.299485,8.370478],[115.284952,8.315018],[115.180916,8.345804],[115.167365,8.386298]]],[[[109.463995,7.344631],[109.535894,7.448747],[109.653004,7.559515],[109.722344,7.575819],[109.904787,7.551634],[109.654108,7.479424],[109.51325,7.320242],[109.463995,7.344631]]],[[[110.03301,7.944484],[110.050192,7.846475],[109.948032,7.815688],[109.952812,7.888619],[110.03301,7.944484]]],[[[115.837513,9.709603],[115.870765,9.778706],[115.925583,9.781499],[115.89482,9.657434],[115.837513,9.709603]]],[[[117.266845,10.691691],[117.369261,10.742468],[117.404756,10.670848],[117.266845,10.691691]]],[[[108.030641,21.546017],[107.956102,21.535993],[107.891895,21.622462],[107.80809,21.655447],[107.707302,21.614104],[107.500336,21.593064],[107.477355,21.660112],[107.377863,21.594501],[107.315938,21.726627],[107.199433,21.718726],[107.088077,21.805151],[107.011756,21.82624],[107.05562,21.921139],[106.923317,21.96867],[106.806249,21.978955],[106.706509,22.021558],[106.715545,22.089881],[106.673397,22.182833],[106.705477,22.21667],[106.663352,22.330689],[106.588988,22.375268],[106.562284,22.462426],[106.614482,22.602065],[106.726831,22.614281],[106.787288,22.811086],[106.605798,22.925599],[106.504558,22.910438],[106.353988,22.855545],[106.287197,22.866975],[106.206822,22.978414],[106.073213,22.99058],[105.99529,22.937698],[105.894195,22.936496],[105.833969,22.990228],[105.649047,23.078553],[105.579043,23.066546],[105.565992,23.152574],[105.432092,23.296953],[105.323955,23.388953],[105.242266,23.273811],[105.081873,23.260426],[104.938398,23.159701],[104.804967,23.098659],[104.86262,22.964176],[104.778583,22.9012],[104.737697,22.826037],[104.61486,22.813146],[104.59547,22.846276],[104.382293,22.695168],[104.271696,22.739029],[104.269652,22.837558],[104.121674,22.809601],[104.042453,22.720083],[104.00631,22.517136],[103.947695,22.521318],[103.823116,22.618816],[103.643451,22.794601],[103.572769,22.709867],[103.528402,22.593231],[103.437831,22.695713],[103.441891,22.752222],[103.320198,22.777295],[103.284426,22.680987],[103.167323,22.610173],[103.18341,22.55797],[103.083485,22.508425],[103.026261,22.444052],[102.927609,22.485546],[102.830614,22.621845],[102.454957,22.754954],[102.401643,22.626605],[102.302517,22.527691],[102.270226,22.419599],[102.148016,22.399899],[102.040065,22.45814],[101.907931,22.437204],[101.879347,22.384243],[101.774356,22.506212],[101.677936,22.477192],[101.671843,22.372729],[101.619032,22.276154],[101.547654,22.231156],[101.573965,22.115097],[101.624164,22.013186],[101.610906,21.971616],[101.774485,21.831547],[101.746105,21.742609],[101.798721,21.57362],[101.74108,21.48287],[101.730299,21.336948],[101.834511,21.24689],[101.740741,21.14177],[101.601545,21.233171],[101.532649,21.252391],[101.290232,21.178266],[101.222503,21.230016],[101.244729,21.302228],[101.151117,21.3898],[101.195046,21.444376],[101.208903,21.557304],[101.159158,21.559456],[101.153381,21.668632],[101.089454,21.773706],[101.014942,21.707118],[100.870556,21.672573],[100.723321,21.514067],[100.56864,21.449918],[100.477501,21.463113],[100.432682,21.535671],[100.351055,21.529376],[100.246748,21.465152],[100.206425,21.50931],[100.127979,21.507238],[100.111997,21.600106],[100.168718,21.664389],[100.119814,21.703406],[100.041298,21.671563],[99.992826,21.7028],[99.944208,21.821323],[99.999861,21.972997],[99.972055,22.052435],[99.896041,22.066676],[99.830585,22.033379],[99.648797,22.100586],[99.516562,22.099555],[99.471945,22.130921],[99.391244,22.098947],[99.263801,22.10098],[99.170192,22.14632],[99.233525,22.246005],[99.250971,22.384514],[99.380092,22.504957],[99.385903,22.571197],[99.327211,22.7513],[99.386281,22.762361],[99.452587,22.858277],[99.537637,22.898912],[99.519301,23.071038],[99.43338,23.081097],[99.343318,23.13037],[99.255402,23.077937],[99.047154,23.120594],[99.060109,23.155659],[98.88455,23.18579],[98.935447,23.307766],[98.874825,23.483286],[98.813076,23.5526],[98.847271,23.631895],[98.797704,23.772365],[98.696411,23.784386],[98.699639,23.950075],[98.900026,24.108063],[98.716554,24.127588],[98.611986,24.085342],[98.549509,24.126656],[98.360401,24.096851],[98.221391,24.113659],[98.110469,24.092733],[97.922123,24.020539],[97.763849,23.907214],[97.642968,23.858025],[97.528087,23.927303],[97.729303,24.119527],[97.729912,24.227044],[97.767531,24.259106],[97.662307,24.339088],[97.716431,24.365088],[97.669776,24.452832],[97.530656,24.434304],[97.563091,24.559319],[97.56933,24.708376],[97.547272,24.738863],[97.700734,24.83823],[97.730311,24.907937],[97.727375,25.042017],[97.841466,25.270128],[97.942493,25.215478],[98.005258,25.295151],[98.143283,25.383703],[98.134929,25.501957],[98.2477,25.607772],[98.320186,25.551913],[98.401418,25.593472],[98.485681,25.792594],[98.544721,25.844683],[98.633393,25.800176],[98.704597,25.85229],[98.663138,25.953421],[98.620779,25.969258],[98.575301,26.117888],[98.63081,26.145604],[98.720054,26.127054],[98.735219,26.186546],[98.67709,26.238094],[98.733501,26.350872],[98.753574,26.559296],[98.781926,26.619073],[98.746061,26.698976],[98.761695,26.799981],[98.697087,27.212317],[98.740802,27.328376],[98.687078,27.425208],[98.704974,27.518798],[98.646159,27.564213],[98.465962,27.641712],[98.429214,27.548816],[98.316942,27.520723],[98.284492,27.651173],[98.235004,27.689469],[98.204906,27.890407],[98.140571,27.951897],[98.15965,28.08259],[98.140098,28.141685],[98.015858,28.235934],[97.907756,28.363357],[97.800877,28.326668],[97.736534,28.417452],[97.722132,28.489062],[97.569542,28.541557],[97.519767,28.437494],[97.482137,28.282527],[97.378901,28.234174],[97.30617,28.0722],[97.412952,28.013566],[97.38615,27.886055],[97.24861,27.888665],[97.061953,27.745898],[97.061301,27.748659],[97.060405,27.751364],[97.049357,27.814106],[96.912642,27.883719],[96.860292,27.872523],[96.622531,28.025547],[96.510706,28.0777],[96.452634,28.151839],[96.368937,28.118417],[96.296901,28.141401],[96.275458,28.228138],[96.013653,28.190054],[95.907801,28.241575],[95.874324,28.297593],[95.648995,28.240549],[95.39689,28.142368],[95.286519,27.940024],[95.048918,27.835703],[94.780998,27.699332],[94.534226,27.600123],[94.287281,27.584143],[93.970826,27.305225],[93.862213,27.187205],[93.84211,27.045832],[93.62539,26.95557],[93.539304,26.935144],[93.232584,26.906783],[93.111322,26.880233],[92.93657,26.911478],[92.773717,26.903163],[92.665571,26.95235],[92.549198,26.941607],[92.122734,26.856386],[92.111133,26.868391],[92.124747,26.960047],[92.029726,27.078702],[92.03785,27.17489],[92.121503,27.27046],[92.019016,27.469116],[91.839223,27.489671],[91.733345,27.462891],[91.581302,27.547421],[91.563722,27.639445],[91.628352,27.701498],[91.629844,27.802445],[91.551858,27.817149],[91.589046,27.900521],[91.484004,27.943351],[91.456988,28.005883],[91.351077,28.045448],[91.251746,27.970392],[91.16099,27.968082],[91.111267,27.846141],[91.031093,27.855674],[90.782287,28.039599],[90.695783,28.076907],[90.594933,28.021816],[90.557365,28.048778],[90.37894,28.062105],[90.296686,28.154272],[90.173321,28.184127],[90.043137,28.136076],[89.987409,28.183786],[89.895096,28.187657],[89.788566,28.236965],[89.723545,28.170224],[89.607165,28.162536],[89.484432,28.053118],[89.363822,27.868088],[89.24497,27.801003],[89.226718,27.725292],[89.141528,27.642652],[89.096472,27.491844],[89.182472,27.377855],[89.026287,27.225426],[88.925323,27.269088],[88.901394,27.327345],[88.784556,27.458868],[88.792134,27.572807],[88.87043,27.733174],[88.86467,27.921355],[88.844245,27.987983],[88.759039,28.070006],[88.645144,28.111344],[88.487274,28.037557],[88.401091,27.97676],[88.255047,27.939749],[88.156567,27.957913],[88.137605,27.878514],[87.987579,27.884293],[87.846801,27.945548],[87.718592,27.804548],[87.598193,27.814466],[87.564182,27.863579],[87.455994,27.820487],[87.419388,27.85673],[87.231514,27.816044],[87.121248,27.837196],[87.076467,27.917232],[86.932365,27.957862],[86.864433,28.022457],[86.756856,28.033003],[86.729713,28.096619],[86.537685,28.044797],[86.514494,27.955012],[86.409234,27.907142],[86.224937,27.986273],[86.199153,28.142978],[86.106042,28.088749],[86.083607,28.010526],[86.123129,27.923373],[86.052157,27.900579],[85.949635,27.937904],[85.972478,27.996536],[85.824606,28.186011],[85.76081,28.218585],[85.716717,28.380053],[85.643927,28.276105],[85.526887,28.324264],[85.415923,28.321217],[85.275647,28.282648],[85.205927,28.337001],[85.117853,28.337548],[85.108517,28.461217],[85.189835,28.544812],[85.196192,28.617215],[85.10765,28.680402],[84.992492,28.603462],[84.857171,28.567769],[84.696426,28.640838],[84.641199,28.723998],[84.49041,28.733362],[84.412626,28.845483],[84.227209,28.897026],[84.248601,29.007638],[84.190904,29.070414],[84.167646,29.180801],[84.194579,29.240664],[84.025806,29.287536],[83.97963,29.326679],[83.825686,29.297604],[83.800429,29.249425],[83.660924,29.1767],[83.555482,29.200803],[83.451384,29.303552],[83.418681,29.416876],[83.275947,29.505994],[83.27462,29.564709],[83.137425,29.621629],[82.830681,29.687573],[82.774261,29.726615],[82.704106,29.847588],[82.625606,29.833949],[82.56118,29.955352],[82.495384,29.950866],[82.398547,30.017878],[82.253837,30.069604],[82.186801,30.065899],[82.188837,30.185622],[82.11052,30.230196],[82.120495,30.324507],[81.990979,30.322698],[81.758799,30.385657],[81.63018,30.446596],[81.400101,30.319514],[81.3979,30.20643],[81.288768,30.122],[81.225727,30.005532],[81.140725,30.01313],[81.039356,30.19988],[81.013171,30.259912],[80.827916,30.317539],[80.665856,30.441782],[80.558595,30.451329],[80.421558,30.517839],[80.205291,30.582304],[80.124744,30.558593],[80.057757,30.59671],[79.972843,30.702055],[79.890625,30.85511],[79.820838,30.857861],[79.680548,30.976027],[79.596154,30.935465],[79.504804,31.028394],[79.316504,31.003417],[79.095059,30.995071],[79.016187,31.04237],[78.997697,31.158877],[78.916562,31.252886],[78.786206,31.308487],[78.75537,31.355748],[78.791905,31.436142],[78.729988,31.478226],[78.752476,31.537107],[78.845706,31.609926],[78.762895,31.668611],[78.654736,31.819119],[78.768535,31.94086],[78.51996,32.123644],[78.459081,32.132881],[78.430705,32.212159],[78.508485,32.297827],[78.465934,32.44487],[78.398513,32.522044],[78.581261,32.633293],[78.741674,32.70361],[78.776275,32.615124],[78.764988,32.544215],[78.810483,32.436515],[78.991666,32.366064],[79.071106,32.379935],[79.122153,32.449784],[79.25582,32.520707],[79.308466,32.60805],[79.301187,32.728984],[79.22729,32.7897],[79.239899,32.954165],[79.181236,32.980398],[79.14781,33.079401],[79.160515,33.172364],[79.072296,33.228503],[79.033317,33.31377],[78.841787,33.425291],[78.741984,33.553378],[78.692016,33.676499],[78.778133,33.74299],[78.744518,33.984979],[78.652726,34.035438],[78.871455,34.163884],[78.922832,34.151147],[78.983606,34.318499],[78.952862,34.3856],[78.878273,34.391455],[78.711286,34.519815],[78.544658,34.573453],[78.286721,34.620216],[78.276455,34.683019],[78.207783,34.728337],[78.236234,34.844822],[78.19894,34.977796],[78.15059,35.001721],[78.124679,35.108303],[78.065407,35.108299],[78.014169,35.247011],[78.014144,35.366529],[78.107113,35.437237],[78.131854,35.495863],[77.845737,35.496236],[77.829831,35.50723],[77.690546,35.448246],[77.539449,35.481538],[77.441388,35.461072],[77.307738,35.540536],[77.185583,35.523025],[77.055027,35.597782],[76.966723,35.591746],[76.867099,35.647757],[76.75481,35.672983],[76.693142,35.747606],[76.571329,35.806439],[76.592418,35.906272],[76.431803,35.85178],[76.152676,35.829861],[76.16476,35.908885],[76.104151,36.018822],[75.968676,36.042101],[75.936337,36.134669],[76.055321,36.252774],[75.99126,36.331851],[76.032021,36.398116],[75.94638,36.589821],[75.871456,36.666449],[75.648241,36.771042],[75.438961,36.759779],[75.416929,36.949398],[75.175063,36.987451],[75.172014,37.013919],[74.934966,36.982639],[74.739151,37.027989],[74.647761,37.071204],[74.574114,37.033385],[74.465027,37.146915],[74.519117,37.242815],[74.665697,37.235763],[74.727347,37.282856],[74.87801,37.22397],[74.927113,37.277622],[75.119092,37.316905],[75.153245,37.409406],[75.080791,37.507091],[74.940473,37.559134],[74.897823,37.672886],[75.006547,37.771006],[74.917473,37.845069],[74.911236,37.967042],[74.821672,38.10304],[74.790825,38.332909],[74.868216,38.403896],[74.864526,38.46858],[74.79294,38.536098],[74.708724,38.549276],[74.514428,38.635926],[74.166956,38.669214],[74.011803,38.524922],[73.79916,38.611069],[73.770844,38.771123],[73.699342,38.857703],[73.736573,38.923038],[73.846409,38.96234],[73.768499,39.026235],[73.639492,39.22049],[73.542432,39.269661],[73.610675,39.465853],[73.823727,39.470834],[73.953572,39.600233],[73.92483,39.716959],[73.841807,39.75631],[73.862134,39.849193],[74.039518,40.091969],[74.263271,40.125071],[74.356668,40.08928],[74.645988,40.27277],[74.70681,40.346572],[74.911653,40.345272],[74.801515,40.437591],[74.844505,40.521297],[75.004022,40.45784],[75.221483,40.44734],[75.432372,40.563322],[75.514832,40.627098],[75.636871,40.624503],[75.646197,40.516689],[75.733073,40.474252],[75.669922,40.363823],[75.704903,40.307833],[75.890403,40.309359],[75.959024,40.359506],[76.100233,40.391321],[76.176363,40.381508],[76.275232,40.438019],[76.36524,40.380432],[76.437476,40.387882],[76.539485,40.464003],[76.552327,40.531498],[76.66007,40.627851],[76.644354,40.749458],[76.731505,40.819082],[76.76201,40.953981],[76.854321,40.982562],[77.002191,41.073454],[77.169344,41.009098],[77.274535,41.005413],[77.376354,41.039189],[77.488584,40.997826],[77.780487,41.023011],[77.807702,41.123418],[77.904789,41.185207],[77.96348,41.173188],[78.129129,41.228231],[78.159725,41.377088],[78.384377,41.394566],[78.650497,41.467272],[78.710725,41.549552],[78.803839,41.565389],[78.9598,41.652505],[79.218912,41.726431],[79.322764,41.806288],[79.462676,41.84852],[79.54237,41.833785],[79.641037,41.884793],[79.780008,41.898429],[79.923856,42.042274],[80.157556,42.037836],[80.193474,42.081458],[80.139622,42.151205],[80.23315,42.210225],[80.240799,42.213514],[80.248391,42.217587],[80.255761,42.221575],[80.275619,42.326493],[80.229954,42.356203],[80.210414,42.469558],[80.268959,42.512335],[80.187234,42.578408],[80.263942,42.829124],[80.37851,42.830266],[80.593206,42.921661],[80.394095,43.000207],[80.407981,43.052055],[80.615212,43.13884],[80.788814,43.135795],[80.77694,43.308013],[80.692727,43.320416],[80.760953,43.446504],[80.754913,43.494176],[80.632432,43.663392],[80.522909,43.821851],[80.458593,44.045821],[80.395525,44.11906],[80.406355,44.295156],[80.352763,44.463043],[80.410987,44.604075],[80.339125,44.690815],[80.115742,44.815218],[79.999416,44.793854],[79.969131,44.877593],[79.895337,44.914147],[80.056913,45.017044],[80.396843,45.046162],[80.504859,45.118146],[80.583767,45.107476],[80.72655,45.177026],[80.906177,45.131179],[81.070916,45.178057],[81.116745,45.221299],[81.501715,45.27986],[81.645085,45.359304],[81.780004,45.383488],[81.920709,45.233334],[82.072613,45.253333],[82.109472,45.211383],[82.285028,45.247015],[82.478789,45.182347],[82.582862,45.219299],[82.601014,45.34621],[82.564667,45.399534],[82.282001,45.542305],[82.29576,45.727134],[82.34027,45.772534],[82.346131,45.94374],[82.461516,45.979995],[82.518326,46.153824],[82.727235,46.495487],[82.829778,46.772665],[83.00951,47.104455],[83.029959,47.219573],[83.154817,47.236089],[83.46328,47.132074],[83.610936,47.05211],[83.76654,47.027003],[83.932973,46.969998],[84.115563,46.96683],[84.195106,47.003512],[84.449554,47.006416],[84.496865,46.979159],[84.748027,47.009848],[84.849394,46.95694],[84.934473,46.863985],[85.281414,47.069048],[85.335493,47.047133],[85.54572,47.057967],[85.581851,47.141351],[85.701112,47.288487],[85.701506,47.384278],[85.610204,47.510201],[85.617689,47.550715],[85.533255,48.046856],[85.557498,48.143924],[85.794572,48.41907],[85.916656,48.437933],[86.154853,48.436667],[86.305196,48.491884],[86.415859,48.481796],[86.580777,48.539798],[86.644816,48.629956],[86.780981,48.73275],[86.821561,48.849775],[86.757157,48.895363],[86.732582,48.995412],[86.836104,49.05108],[86.889051,49.13256],[87.147669,49.154146],[87.30484,49.112314],[87.321533,49.109083],[87.327073,49.108139],[87.436643,49.075253],[87.5056,49.142816],[87.793078,49.18234],[87.831294,49.148277],[87.876505,48.949192],[87.758373,48.923502],[87.799295,48.818273],[88.022225,48.753098],[88.093192,48.698883],[87.973089,48.575997],[88.196708,48.493946],[88.360509,48.462852],[88.443749,48.391472],[88.519523,48.40567],[88.606067,48.337828],[88.606251,48.21706],[88.824468,48.106807],[88.930566,48.119458],[89.078437,47.986985],[89.278178,47.993651],[89.384156,48.046635],[89.586175,48.031617],[89.59425,47.983872],[89.796187,47.837727],[89.937918,47.836051],[90.06634,47.883684],[90.104495,47.750116],[90.342032,47.676288],[90.398285,47.547664],[90.468182,47.497659],[90.489246,47.323943],[90.670934,47.093996],[90.795959,46.995778],[90.906787,46.951664],[91.046791,46.692038],[91.017855,46.582315],[91.075956,46.549132],[90.983608,46.374864],[90.900461,46.312246],[91.017984,46.128787],[91.028274,46.023087],[90.850122,45.888005],[90.707576,45.691747],[90.676888,45.582542],[90.684559,45.477746],[90.772352,45.432745],[90.855106,45.291708],[90.961605,45.201377],[91.145518,45.208628],[91.264896,45.135401],[91.37739,45.11107],[91.449143,45.15664],[91.575868,45.082096],[91.676523,45.066462],[92.056613,45.086755],[92.265075,45.020614],[92.547883,45.018312],[92.790717,45.045454],[93.100037,45.007361],[93.173971,45.015263],[93.509411,44.968223],[93.736333,44.860269],[94.16919,44.680027],[94.414241,44.517813],[94.574208,44.458226],[94.768084,44.340555],[95.066754,44.261853],[95.398297,44.294551],[95.326665,44.028741],[95.526831,44.007412],[95.771609,43.541597],[95.858051,43.417653],[95.885469,43.271265],[95.921409,43.22966],[96.363631,42.900534],[96.386194,42.727772],[96.758654,42.75641],[96.982694,42.75741],[97.226991,42.788694],[98.145679,42.660769],[98.546621,42.638213],[99.455013,42.571302],[99.532239,42.57114],[100.004523,42.648667],[100.26091,42.637123],[100.325468,42.690024],[100.726368,42.677129],[100.952661,42.653986],[101.581682,42.525253],[101.803732,42.503711],[102.093764,42.223617],[102.44899,42.144061],[102.541009,42.162279],[102.712017,42.152803],[103.001603,42.036485],[103.418502,41.882359],[103.86888,41.802588],[104.07975,41.804945],[104.530151,41.87489],[104.524287,41.661916],[104.68893,41.645314],[104.90788,41.656011],[104.965682,41.623298],[105.009684,41.583214],[105.230836,41.751132],[105.340158,41.773089],[105.676185,41.924867],[106.013209,42.032083],[106.517673,42.209729],[106.785905,42.291466],[107.028792,42.316158],[107.275642,42.373041],[107.304146,42.412654],[107.466245,42.458832],[107.574543,42.413035],[107.926524,42.404623],[108.248282,42.459897],[108.471451,42.443635],[108.845642,42.395742],[109.025756,42.45855],[109.291583,42.435784],[109.486804,42.458632],[109.882722,42.628537],[110.108467,42.642747],[110.139447,42.674731],[110.396376,42.764336],[110.58958,42.910623],[110.736518,43.089594],[111.064449,43.352253],[111.354098,43.436114],[111.466654,43.493608],[111.564588,43.490333],[111.794261,43.671906],[111.955484,43.70477],[111.96671,43.8033],[111.870359,43.94026],[111.662998,44.061196],[111.550122,44.188582],[111.506813,44.294175],[111.426747,44.327589],[111.478402,44.488807],[111.56103,44.565846],[111.601267,44.736066],[111.764521,44.969337],[112.002761,45.090785],[112.163838,45.071731],[112.415907,45.073031],[112.586308,44.946809],[112.712154,44.879381],[112.839674,44.844588],[113.115196,44.799801],[113.661393,44.759074],[113.903532,44.907499],[114.065247,44.9312],[114.178281,45.03616],[114.35893,45.13103],[114.519593,45.283729],[114.551156,45.387578],[114.745125,45.438314],[114.974127,45.377035],[115.136881,45.39459],[115.36467,45.39236],[115.640798,45.450313],[115.739839,45.488697],[116.048538,45.688229],[116.174347,45.68858],[116.286866,45.775145],[116.255877,45.927374],[116.414126,46.134059],[116.608995,46.305973],[116.758705,46.329848],[116.864312,46.378286],[117.022168,46.365031],[117.363439,46.361759],[117.420104,46.582071],[117.622961,46.595948],[117.681445,46.527036],[117.828909,46.532262],[117.91453,46.607941],[118.289037,46.723416],[118.787964,46.687045],[118.84527,46.771876],[118.927499,46.724416],[119.011352,46.745698],[119.134855,46.651776],[119.646368,46.625706],[119.68306,46.59375],[119.911789,46.669764],[119.938215,46.804783],[119.869269,46.953495],[119.80618,47.003197],[119.715543,47.195969],[119.489991,47.324812],[119.329836,47.436184],[119.365842,47.477406],[119.205226,47.520267],[119.117289,47.67021],[118.773181,47.771149],[118.56803,47.992146],[118.306264,48.005734],[118.15904,48.044245],[117.997652,48.009772],[117.810391,48.014138],[117.5097,47.761153],[117.493614,47.758427],[117.384169,47.641229],[117.179714,47.769008],[117.094763,47.823946],[116.879114,47.893901],[116.669987,47.890623],[116.452857,47.837554],[116.265761,47.87671],[116.11089,47.811763],[115.939058,47.683109],[115.580535,47.921772],[115.539386,48.104675],[115.529317,48.1552],[115.822844,48.259422],[115.799316,48.515086],[116.06943,48.811344],[116.048557,48.873451],[116.7252,49.855546],[117.044934,49.706815],[117.278113,49.636393],[117.477063,49.63282],[117.813813,49.520547],[117.866441,49.592101],[118.082777,49.616623],[118.237403,49.738754],[118.481221,49.837249],[118.570528,49.929665],[118.931034,49.989357],[119.092435,49.986208],[119.347447,50.167762],[119.318821,50.218921],[119.358366,50.358974],[119.158509,50.36016],[119.263037,50.468228],[119.296893,50.577907],[119.434702,50.685725],[119.521364,50.791373],[119.491316,50.878924],[119.596063,50.982602],[119.764666,51.09886],[119.760426,51.213741],[119.944713,51.366682],[119.985509,51.503784],[120.052198,51.553619],[120.057618,51.631647],[120.361975,51.789152],[120.402194,51.833759],[120.659053,51.928025],[120.768498,52.111778],[120.756497,52.257707],[120.627512,52.323985],[120.734115,52.53997],[120.443829,52.641115],[120.286357,52.62296],[120.194848,52.578924],[120.072221,52.58708],[120.031463,52.772765],[120.297093,52.869923],[120.544236,53.072425],[120.640099,53.103991],[120.690484,53.174798],[120.840533,53.273457],[120.956871,53.298542],[121.234552,53.280999],[121.337016,53.325742],[121.589907,53.350946],[121.686541,53.388898],[121.987584,53.429458],[122.097023,53.423225],[122.346264,53.505505],[122.39443,53.463364],[122.826833,53.457203],[123.247567,53.55657],[123.454169,53.536539],[123.484781,53.499243],[123.671863,53.528086],[123.702829,53.496034],[123.894077,53.481309],[124.12431,53.348395],[124.239412,53.379643],[124.371576,53.262719],[124.519587,53.203605],[124.688386,53.205396],[124.734396,53.146678],[124.905802,53.12412],[125.030634,53.201757],[125.163984,53.20129],[125.47138,53.1054],[125.624266,53.078682],[125.736885,52.949836],[125.836193,52.898817],[126.061768,52.673415],[125.969318,52.642468],[126.20804,52.533226],[126.338093,52.412115],[126.306981,52.205728],[126.560247,52.133868],[126.461866,52.035986],[126.462494,51.948489],[126.563302,51.86216],[126.740352,51.648294],[126.698634,51.576916],[126.842428,51.533063],[126.784226,51.448087],[126.899316,51.409648],[126.984025,51.318788],[126.903244,51.188236],[126.922887,51.061833],[127.144189,50.910229],[127.370711,50.581242],[127.296356,50.460614],[127.364642,50.438404],[127.333173,50.348864],[127.40378,50.282008],[127.603199,50.239444],[127.599303,50.160136],[127.501816,50.056736],[127.56401,49.793468],[127.659842,49.778958],[127.678002,49.697824],[127.810692,49.596809],[128.001387,49.592291],[128.18575,49.539363],[128.389875,49.590089],[128.566174,49.601381],[128.722938,49.566405],[128.754957,49.489518],[128.888097,49.490935],[129.013602,49.457273],[129.084982,49.359903],[129.248856,49.399542],[129.37913,49.367136],[129.422287,49.442102],[129.539849,49.406609],[129.596163,49.279858],[129.730438,49.288302],[129.766577,49.196805],[129.861585,49.172818],[129.937322,49.040413],[130.020967,49.021088],[130.269082,48.865697],[130.444561,48.90998],[130.534743,48.858019],[130.690677,48.869653],[130.536628,48.627455],[130.605722,48.594074],[130.677774,48.493653],[130.779689,48.491372],[130.747719,48.404411],[130.845023,48.305505],[130.765904,48.18925],[130.666369,48.105074],[130.871178,47.943132],[130.961662,47.82796],[130.97032,47.725785],[131.079681,47.689805],[131.292875,47.737665],[131.533543,47.738365],[131.590428,47.660815],[131.713867,47.711158],[131.970569,47.671547],[131.999143,47.711023],[132.24262,47.710024],[132.344574,47.767198],[132.57049,47.721094],[132.685709,47.888386],[132.882619,48.002301],[132.979726,48.031368],[133.066598,48.116975],[133.154034,48.136982],[133.302052,48.103012],[133.531075,48.116331],[133.572918,48.18202],[133.701837,48.192406],[133.824125,48.277319],[134.011266,48.31003],[134.239305,48.381926],[134.35055,48.378633],[134.533481,48.417766],[134.80417,48.371749],[134.895417,48.442542],[135.09567,48.437525],[135.07277,48.391317],[134.864069,48.332408],[134.676594,48.234103],[134.67291,48.149654],[134.549843,47.991305],[134.666246,47.89479],[134.678553,47.819253],[134.777268,47.713789],[134.567987,47.477894],[134.493659,47.446849],[134.32792,47.438044],[134.180459,47.329568],[134.157156,47.259063],[134.230194,47.182248],[134.14805,47.096215],[134.021552,46.826415],[134.052149,46.776451],[134.011214,46.638106],[133.908678,46.567615],[133.850737,46.477947],[133.949087,46.40104],[133.878439,46.333854],[133.917385,46.265516],[133.857661,46.211054],[133.689741,46.14797],[133.746704,46.07076],[133.67268,45.940309],[133.62404,45.943794],[133.467802,45.835038],[133.483206,45.692974],[133.387917,45.575873],[133.218786,45.516577],[133.148556,45.436126],[133.106746,45.314859],[133.130954,45.127865],[132.9753,45.023869],[132.851584,45.063198],[131.995368,45.258749],[131.91516,45.340012],[131.788489,45.2459],[131.684345,45.21622],[131.685074,45.115576],[131.464516,44.963448],[131.353237,44.982713],[131.294281,44.92894],[130.987195,44.867668],[131.111529,44.710111],[131.310655,44.046589],[131.25106,44.013347],[131.25431,43.894051],[131.211076,43.78701],[131.232967,43.635811],[131.200326,43.532715],[131.275946,43.495563],[131.314129,43.392472],[131.255166,43.265141],[131.206156,43.237112],[131.21796,43.14777],[131.10245,43.022269],[131.144347,42.939773],[131.018194,42.915438],[130.891672,42.852954],[130.667374,42.848096],[130.466672,42.772587],[130.465126,42.688317],[130.592251,42.671286],[130.634789,42.599988],[130.565601,42.50647],[130.642302,42.427813],[130.640205,42.422693],[130.58118,42.435626],[130.513505,42.627485],[130.398426,42.606208],[130.241992,42.73876],[130.277418,42.893147],[130.136023,42.903483],[130.115344,42.98842],[130.034521,42.967753],[129.897144,43.001703],[129.764872,42.722497],[129.796869,42.68186],[129.710863,42.429042],[129.597235,42.409704],[129.554464,42.360224],[129.452331,42.440997],[129.340633,42.444688],[129.181009,42.258293],[129.188478,42.195701],[128.9493,42.078891],[128.918848,42.01608],[128.738024,42.050224],[128.580108,41.999408],[128.463963,42.020495],[128.090764,42.022766],[128.103789,41.843177],[128.169777,41.71511],[128.24844,41.681526],[128.317726,41.574334],[128.208315,41.411914],[128.130206,41.382816],[127.953669,41.438014],[127.871637,41.41785],[127.630908,41.418393],[127.499088,41.47837],[127.350829,41.46539],[127.17462,41.540289],[127.154943,41.588756],[127.039436,41.672038],[127.05013,41.744731],[126.88853,41.792379],[126.570005,41.621711],[126.581644,41.560221],[126.481085,41.371253],[126.436529,41.352572],[126.274645,41.157306],[126.190351,41.118048],[125.936391,40.879083],[125.87499,40.908349],[125.709928,40.868658],[125.455338,40.678702],[125.190098,40.615169],[124.91024,40.48397],[124.755415,40.381862],[124.722726,40.321808],[124.621525,40.290676],[124.347142,40.079713],[124.359153,39.990345],[124.243101,39.928901],[124.16645,39.826628],[124.00269,39.800356],[123.828941,39.831425],[123.612562,39.774964],[123.383519,39.766552],[123.28212,39.741908],[123.207817,39.670203],[123.010723,39.65517],[122.979046,39.616376],[122.850505,39.604034],[122.714434,39.546349],[122.532954,39.420129],[122.33947,39.378193],[122.242947,39.267794],[122.117361,39.214025],[122.127409,39.144896],[122.071443,39.074125],[121.989478,39.063604],[121.863218,38.942488],[121.738258,38.999121],[121.702549,38.867715],[121.567893,38.875749],[121.509684,38.817817],[121.359434,38.822354],[121.214204,38.73352],[121.112258,38.776065],[121.127721,38.959013],[121.280095,38.973721],[121.373787,39.062288],[121.507807,39.034109],[121.619063,39.115863],[121.598766,39.279166],[121.474869,39.296211],[121.433137,39.357313],[121.252143,39.427399],[121.225798,39.515762],[121.278675,39.599306],[121.450213,39.625105],[121.502733,39.70333],[121.461751,39.749555],[121.530212,39.851502],[121.699817,39.937345],[121.764457,39.933475],[121.805529,40.010656],[122.009787,40.148849],[122.026902,40.244991],[122.250975,40.445779],[122.245641,40.519722],[122.066168,40.648625],[121.95129,40.680774],[121.934213,40.798201],[121.852643,40.82105],[121.793759,40.895946],[121.68267,40.829633],[121.499623,40.87983],[121.335833,40.900671],[121.126194,40.86915],[121.010997,40.78465],[121.032321,40.709058],[120.858512,40.684565],[120.822708,40.594111],[120.615717,40.453328],[120.602337,40.360922],[120.537508,40.32539],[120.465161,40.178756],[120.371733,40.174533],[120.272936,40.127176],[119.955878,40.046698],[119.918361,39.989939],[119.816883,39.978203],[119.69784,39.92362],[119.541025,39.888112],[119.35814,39.721873],[119.267695,39.492784],[119.314812,39.413306],[119.191919,39.369323],[119.096052,39.241967],[118.88404,39.150111],[118.760734,39.133491],[118.637305,39.157387],[118.527152,39.101557],[118.604461,38.971483],[118.491056,38.909063],[118.319248,39.009532],[118.224999,39.034807],[118.12114,39.186067],[118.056966,39.219943],[117.871652,39.122578],[117.837386,39.057018],[117.847379,38.855626],[117.654655,38.84206],[117.646433,38.788856],[117.741262,38.753942],[117.729061,38.680055],[117.639026,38.626713],[117.64788,38.508701],[117.781216,38.373831],[117.937468,38.387744],[117.896685,38.279603],[118.08944,38.157576],[118.504499,38.113918],[118.726425,38.154256],[118.853686,38.154994],[118.974084,38.094145],[119.004577,37.992271],[119.110573,37.921364],[119.12829,37.814396],[119.217578,37.810242],[119.260074,37.702405],[119.080139,37.696375],[118.997216,37.632598],[118.939646,37.527058],[118.983129,37.350017],[119.054164,37.254944],[119.298388,37.197352],[119.327896,37.115815],[119.489766,37.134468],[119.568714,37.100139],[119.740283,37.133783],[119.892168,37.263891],[119.836985,37.346478],[119.949893,37.420047],[120.144357,37.481909],[120.246771,37.556602],[120.227226,37.693611],[120.36821,37.697986],[120.471995,37.757609],[120.579944,37.760862],[120.753408,37.8379],[120.935755,37.822375],[121.037704,37.718567],[121.139838,37.723038],[121.1537,37.613954],[121.215905,37.583118],[121.354824,37.596166],[121.565321,37.440396],[121.665743,37.473455],[121.923956,37.473079],[122.017286,37.530913],[122.133538,37.556453],[122.167198,37.438091],[122.252631,37.467875],[122.337014,37.41443],[122.553623,37.406924],[122.594816,37.34797],[122.567166,37.261149],[122.58107,37.147719],[122.481153,37.117815],[122.546567,36.9235],[122.341328,36.82901],[122.245869,36.835432],[122.119698,36.892095],[122.037272,36.89581],[122.014943,36.95781],[121.767688,36.874839],[121.628483,36.797308],[121.599689,36.745597],[121.482263,36.773551],[121.251873,36.671338],[121.175755,36.659112],[121.028957,36.573179],[120.962199,36.562779],[120.963591,36.464327],[120.881031,36.370136],[120.82848,36.466646],[120.75946,36.462609],[120.663003,36.331779],[120.707267,36.165052],[120.599825,36.101812],[120.424869,36.055358],[120.289894,36.059271],[120.362336,36.196137],[120.181541,36.203959],[120.10862,36.127427],[120.244952,36.020429],[120.209284,35.917623],[120.078719,35.885758],[120.020197,35.722241],[119.927896,35.645755],[119.665755,35.570248],[119.579138,35.357625],[119.476529,35.308338],[119.411297,35.231623],[119.398581,35.094504],[119.27943,35.071084],[119.211334,34.981698],[119.200878,34.840558],[119.238578,34.799557],[119.378483,34.764537],[119.459512,34.77111],[119.522816,34.722314],[119.468137,34.67129],[119.811597,34.485543],[119.962556,34.458895],[120.29284,34.318098],[120.367576,34.091434],[120.590141,33.648859],[120.587136,33.598389],[120.716493,33.419743],[120.740985,33.337633],[120.821788,33.29857],[120.843934,33.100437],[120.905937,33.030138],[120.926727,32.880049],[120.966772,32.769937],[120.90104,32.723454],[120.916056,32.64212],[121.153122,32.52927],[121.351935,32.474269],[121.42547,32.431028],[121.468831,32.239768],[121.524016,32.137617],[121.759073,32.059393],[121.856004,31.955225],[121.970295,31.718874],[121.995716,31.4931],[121.882098,31.42866],[121.819179,31.438211],[121.54768,31.531128],[121.43422,31.590338],[121.343498,31.512056],[121.521232,31.394788],[121.722514,31.303514],[121.946794,31.065888],[121.998493,30.899961],[121.904465,30.814152],[121.681193,30.818403],[121.601328,30.805082],[121.426361,30.730284],[121.361894,30.679523],[121.257036,30.673646],[121.058357,30.564021],[121.183193,30.434344],[121.272329,30.37488],[121.350516,30.380091],[121.497785,30.258609],[121.626044,30.077708],[121.725012,29.992219],[121.784029,29.993502],[121.919531,29.920819],[121.967995,29.956524],[122.048566,29.826047],[121.833536,29.653125],[121.966078,29.635846],[122.000285,29.582426],[121.992065,29.461392],[121.937716,29.384106],[121.981082,29.284083],[121.966131,29.05287],[121.884488,29.105449],[121.659915,29.118346],[121.658959,29.058511],[121.772031,28.898356],[121.704732,28.804652],[121.689435,28.71916],[121.557106,28.644995],[121.634225,28.562704],[121.687131,28.400887],[121.624201,28.250493],[121.499326,28.305944],[121.372129,28.131281],[121.261178,28.034422],[121.140996,28.031405],[121.059107,28.096365],[120.991841,27.949746],[121.055907,27.900142],[121.157912,27.910305],[121.184354,27.814091],[121.027817,27.832612],[120.941778,27.8968],[120.797715,27.779573],[120.634875,27.577264],[120.702822,27.47872],[120.657057,27.352318],[120.580318,27.321389],[120.545954,27.15681],[120.461656,27.142565],[120.392078,27.08127],[120.30659,27.087972],[120.223009,26.91427],[120.117138,26.914853],[120.037904,26.860222],[120.16576,26.731506],[120.059954,26.62591],[119.867006,26.508875],[119.851973,26.595385],[119.956911,26.628543],[119.899173,26.693175],[119.711074,26.686627],[119.660757,26.705956],[119.60796,26.594067],[119.727911,26.614151],[119.78837,26.58323],[119.835655,26.4377],[119.900364,26.357098],[119.7977,26.268219],[119.67625,26.263063],[119.605299,26.169731],[119.667131,26.028948],[119.72362,26.01152],[119.695191,25.904398],[119.6232,25.834038],[119.635503,25.746116],[119.583323,25.679127],[119.634422,25.475185],[119.714354,25.521056],[119.683781,25.595918],[119.77928,25.637219],[119.887286,25.552419],[119.814538,25.529395],[119.826511,25.465286],[119.764261,25.433365],[119.68109,25.450325],[119.636033,25.338643],[119.578882,25.400775],[119.519943,25.376897],[119.442797,25.47256],[119.355545,25.429168],[119.162984,25.440505],[119.144882,25.388015],[119.299004,25.328844],[119.378271,25.248915],[119.269351,25.15998],[119.182447,25.178223],[119.1469,25.050754],[119.035701,25.125793],[118.984411,25.195468],[118.905073,25.060506],[118.989718,24.97407],[118.86473,24.887381],[118.731416,24.840679],[118.783094,24.776672],[118.703437,24.66543],[118.680325,24.582261],[118.579944,24.507208],[118.518567,24.605919],[118.444639,24.61495],[118.346847,24.53054],[118.242893,24.512498],[118.169397,24.559232],[118.121371,24.569856],[118.084675,24.529921],[118.049015,24.418307],[118.088608,24.406168],[118.155495,24.258723],[118.001401,24.176852],[117.910649,24.011799],[117.864905,24.004789],[117.762577,23.886962],[117.67194,23.878056],[117.660289,23.789106],[117.61297,23.713388],[117.502648,23.704618],[117.463735,23.585202],[117.3824,23.553509],[117.291259,23.571187],[117.044776,23.539694],[117.01026,23.502691],[116.909697,23.52853],[116.871295,23.413023],[116.782778,23.313825],[116.799849,23.244213],[116.665291,23.158176],[116.55227,23.114523],[116.563059,23.000726],[116.505567,22.930864],[116.382668,22.919198],[116.306894,22.952763],[116.226952,22.914481],[116.106875,22.817885],[116.070521,22.843564],[115.883322,22.785361],[115.829284,22.734703],[115.755915,22.837332],[115.632475,22.860042],[115.570337,22.786523],[115.589076,22.724307],[115.537794,22.662928],[115.471717,22.697829],[115.381386,22.683967],[115.337976,22.776697],[115.227985,22.82526],[115.066922,22.785607],[115.008521,22.698052],[114.875153,22.590342],[114.747387,22.58162],[114.735307,22.724438],[114.686,22.765234],[114.601733,22.730757],[114.603134,22.638748],[114.559736,22.573182],[114.611432,22.482043],[114.525434,22.440581],[114.398342,22.602858],[114.25917,22.545807],[114.31378,22.480035],[114.406142,22.433139],[114.395975,22.386139],[114.288661,22.389964],[114.317619,22.295897],[114.257978,22.223443],[114.139771,22.245442],[114.070062,22.327074],[114.004443,22.240702],[113.857381,22.192772],[113.842951,22.226634],[113.941393,22.35527],[113.856557,22.539622],[113.803409,22.593188],[113.733739,22.736386],[113.685285,22.717725],[113.740462,22.534268],[113.624811,22.442974],[113.669345,22.416272],[113.590108,22.293902],[113.567229,22.209825],[113.603872,22.132865],[113.442179,22.009505],[113.330164,21.961613],[113.282351,21.877763],[113.235205,21.887783],[113.092061,22.065326],[112.989648,21.869543],[112.893544,21.844309],[112.840902,21.920504],[112.792306,21.921299],[112.651698,21.762115],[112.535625,21.754096],[112.477721,21.795637],[112.415773,21.734788],[112.26025,21.698058],[112.183878,21.796366],[112.036412,21.761402],[111.95595,21.710555],[111.92153,21.599515],[111.868678,21.559193],[111.794414,21.611302],[111.693764,21.590368],[111.67737,21.529731],[111.452384,21.515193],[111.382496,21.495533],[111.061315,21.449225],[110.929121,21.376036],[110.796344,21.374769],[110.626364,21.215699],[110.501127,21.217526],[110.422356,21.190729],[110.401239,21.131072],[110.296934,21.093792],[110.180779,20.981734],[110.184217,20.891735],[110.269002,20.839724],[110.393698,20.816674],[110.407399,20.732111],[110.466116,20.680238],[110.551727,20.462979],[110.452265,20.311225],[110.327533,20.251539],[110.216481,20.250512],[110.117949,20.219751],[110.082539,20.258693],[109.909484,20.23723],[109.915835,20.316886],[109.861269,20.376688],[109.895581,20.427533],[109.839908,20.489495],[109.793325,20.615656],[109.745078,20.621142],[109.711762,20.774688],[109.655642,20.929244],[109.674912,21.136602],[109.763982,21.226272],[109.757473,21.346766],[109.868816,21.365799],[109.903798,21.442179],[109.704207,21.462608],[109.633621,21.540275],[109.580954,21.548003],[109.541029,21.466108],[109.448487,21.44267],[109.245786,21.425689],[109.138862,21.38898],[109.046641,21.424451],[109.0579,21.480786],[109.142155,21.51205],[109.142739,21.564389],[108.938092,21.589711],[108.735895,21.629233],[108.591682,21.677222],[108.492598,21.55481],[108.338575,21.541213],[108.205305,21.59777],[108.133645,21.505017],[108.030641,21.546017]]],[[[110.545,21.083872],[110.506514,21.209773],[110.631581,21.19085],[110.545,21.083872]]],[[[110.517599,21.078937],[110.560065,21.061379],[110.53584,20.922998],[110.472903,20.983136],[110.347695,20.984743],[110.214488,20.937697],[110.205312,20.978551],[110.306119,21.088097],[110.398559,21.096275],[110.437898,21.058929],[110.517599,21.078937]]],[[[120.443536,22.441261],[120.297201,22.531331],[120.200415,22.721097],[120.134733,22.994006],[120.029564,23.048636],[120.023208,23.107655],[120.107847,23.341264],[120.121753,23.504658],[120.094834,23.587456],[120.102762,23.70097],[120.175354,23.807398],[120.245762,23.840532],[120.278257,23.927783],[120.392037,24.118245],[120.451468,24.182705],[120.546295,24.370432],[120.642772,24.49016],[120.688678,24.600694],[120.823767,24.68831],[120.892275,24.767526],[120.908484,24.851995],[121.024684,25.040488],[121.209299,25.127094],[121.371868,25.159867],[121.44444,25.270605],[121.535062,25.307528],[121.623027,25.294676],[121.750539,25.16071],[121.917094,25.137894],[121.947419,25.031961],[122.012201,25.001451],[121.845043,24.836255],[121.838006,24.760162],[121.892504,24.617927],[121.885457,24.529684],[121.826735,24.423573],[121.809157,24.339072],[121.643848,24.09773],[121.65937,24.006899],[121.621616,23.920742],[121.523092,23.538694],[121.479542,23.322306],[121.415005,23.195986],[121.430318,23.137206],[121.370406,23.084368],[121.324684,22.945684],[121.170547,22.723142],[121.033278,22.650704],[120.981659,22.528288],[120.91493,22.302712],[120.907333,22.033206],[120.86649,21.984376],[120.872886,21.897387],[120.701551,21.927083],[120.65144,22.033162],[120.640508,22.241367],[120.569889,22.361731],[120.443536,22.441261]]],[[[122.163065,30.329821],[122.221624,30.32464],[122.231354,30.23375],[122.146345,30.246255],[122.163065,30.329821]]],[[[121.876514,30.086526],[121.932832,29.994787],[121.850875,29.969645],[121.876514,30.086526]]],[[[117.14541,23.456114],[117.142934,23.400436],[116.964692,23.416361],[117.064476,23.475669],[117.14541,23.456114]]],[[[118.204456,24.504797],[118.143225,24.42084],[118.069016,24.467728],[118.089058,24.532537],[118.142533,24.561609],[118.204456,24.504797]]],[[[122.182321,29.650753],[122.095939,29.716473],[122.141393,29.757798],[122.21143,29.688237],[122.182321,29.650753]]],[[[122.430413,30.408641],[122.280389,30.420352],[122.287596,30.477403],[122.402453,30.458283],[122.430413,30.408641]]],[[[122.256905,30.065098],[122.344306,29.995278],[122.324129,29.941291],[122.108823,30.004941],[122.026432,29.992441],[121.981237,30.048833],[121.955151,30.184024],[122.256905,30.065098]]],[[[122.518653,23.460785],[122.499257,23.465664],[122.779218,24.578553],[122.798614,24.573674],[122.518653,23.460785]]],[[[121.172026,20.805459],[121.156682,20.818287],[121.894044,21.700262],[121.909388,21.687433],[121.172026,20.805459]]],[[[119.473662,18.007073],[119.456084,18.016614],[120.00812,19.033579],[120.025697,19.024038],[119.473662,18.007073]]],[[[119.072676,15.040985],[119.052676,15.041059],[119.052676,16.043885],[119.072676,16.043885],[119.072676,15.040985]]],[[[118.686467,11.189592],[118.855579,11.613671],[118.969805,11.991519],[118.98895,11.985731],[118.874316,11.606662],[118.704762,11.181475],[118.542425,10.905335],[118.525187,10.915478],[118.686467,11.189592]]],[[[115.544669,7.146723],[115.529413,7.159656],[116.23523,7.992212],[116.250486,7.979279],[115.544669,7.146723]]],[[[112.307052,3.534873],[112.515016,3.597533],[112.843614,3.750696],[112.852064,3.732569],[112.522814,3.579102],[112.311817,3.515445],[111.791326,3.397368],[111.786901,3.416873],[112.307052,3.534873]]],[[[108.26056,6.089125],[108.196797,6.537606],[108.198768,6.950725],[108.218763,6.949641],[108.2168,6.538165],[108.256117,6.227526],[108.26056,6.089125]]],[[[110.128228,11.368945],[110.239823,11.610665],[110.284855,11.787051],[110.308355,11.948035],[110.312278,12.239982],[110.332274,12.240384],[110.328328,11.946854],[110.304363,11.782612],[110.259018,11.604996],[110.145415,11.358705],[110.128228,11.368945]]],[[[109.829516,15.228968],[109.77065,15.444688],[109.672646,15.665615],[109.515744,15.910958],[109.29314,16.194919],[109.30888,16.207258],[109.531666,15.923065],[109.690661,15.674324],[109.789239,15.452106],[109.829516,15.228968]]]]},"properties":{"name":"中国","name_en":"People's Republic of China","id":"CHN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-62.827106,17.331114],[-62.815277,17.420118],[-62.705406,17.340567],[-62.778271,17.296432],[-62.827106,17.331114]]]},"properties":{"name":"圣基茨和尼维斯","name_en":"ST.KITTS AND NEVIS","id":"KNA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.567879,17.865377],[-77.7407,17.85424],[-77.836044,17.947165],[-77.833908,18.006697],[-77.939484,18.033657],[-78.025192,18.125731],[-78.064591,18.210361],[-78.236038,18.193384],[-78.346535,18.238291],[-78.334717,18.349531],[-78.211037,18.459997],[-77.954651,18.446739],[-77.849922,18.526495],[-77.685066,18.48819],[-77.536522,18.491503],[-77.355553,18.45941],[-77.219177,18.453608],[-77.103821,18.40563],[-77.019333,18.417511],[-76.892571,18.381445],[-76.778252,18.271404],[-76.679184,18.262228],[-76.566948,18.202671],[-76.479301,18.205048],[-76.348099,18.14966],[-76.270538,18.044241],[-76.238823,17.947603],[-76.180321,17.913284],[-76.341537,17.856607],[-76.397896,17.876804],[-76.543732,17.857876],[-76.610771,17.871731],[-76.665054,17.935963],[-76.792282,17.961393],[-76.835312,17.995071],[-76.899941,17.872438],[-76.995476,17.839603],[-77.076035,17.907932],[-77.14711,17.869898],[-77.126091,17.721371],[-77.176933,17.703554],[-77.405868,17.860914],[-77.509583,17.839605],[-77.567879,17.865377]]]},"properties":{"name":"牙买加","name_en":"JAMAICA","id":"JAM"}}, + {"type":"Feature","geometry":null,"properties":{"name":"直布罗陀","name_en":"Gibraltar","id":"GIB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[43.254696,11.469584],[42.961639,10.984417],[42.796028,10.985528],[42.746307,11.072194],[42.640946,11.088305],[42.499306,11.0325],[42.424137,10.980083],[42.372806,10.996111],[42.207027,10.960195],[42.142666,10.976666],[42.002972,10.916417],[41.791363,10.973194],[41.807724,11.31825],[41.775501,11.472722],[41.836861,11.727972],[41.977833,11.8345],[42.257721,12.255028],[42.317223,12.304639],[42.405029,12.462055],[42.463974,12.523945],[42.567081,12.475972],[42.68811,12.362278],[42.822166,12.442555],[42.795918,12.503],[42.858444,12.550389],[42.887722,12.624389],[43.13464,12.706833],[43.16489,12.631945],[43.355804,12.383028],[43.416054,12.149611],[43.366638,11.979083],[43.181694,11.946722],[43.051556,11.810638],[42.946362,11.766556],[42.875832,11.78],[42.771752,11.733666],[42.703415,11.637111],[42.660252,11.519305],[42.803665,11.583528],[43.156807,11.593445],[43.254696,11.469584]]]},"properties":{"name":"吉布提","name_en":"DJIBOUTI","id":"DJI"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.47218,7.554582],[-8.565241,7.625896],[-8.559732,7.69263],[-8.659362,7.696163],[-8.706784,7.64002],[-8.706717,7.514249],[-8.845829,7.347347],[-8.833481,7.283467],[-9.016803,7.243674],[-9.065999,7.20096],[-9.120646,7.276505],[-9.190242,7.303209],[-9.227325,7.389378],[-9.295266,7.422638],[-9.40558,7.420031],[-9.418715,7.471729],[-9.354559,7.625704],[-9.343918,7.748662],[-9.423477,7.862288],[-9.411833,7.97263],[-9.45926,8.105496],[-9.514802,8.175894],[-9.489279,8.264234],[-9.53331,8.383351],[-9.671058,8.493541],[-9.77296,8.551791],[-9.804309,8.502597],[-9.934474,8.491673],[-9.998657,8.439448],[-10.125528,8.525335],[-10.286861,8.484799],[-10.385975,8.492885],[-10.445746,8.40347],[-10.553535,8.307663],[-10.673992,8.340906],[-10.649591,8.476318],[-10.582313,8.591388],[-10.469391,8.67458],[-10.586903,8.804345],[-10.598166,8.959005],[-10.584805,9.0432],[-10.729929,9.079186],[-10.723477,9.183494],[-10.663737,9.210006],[-10.66884,9.309297],[-10.730983,9.380188],[-10.816586,9.391906],[-10.830964,9.520646],[-10.967905,9.673737],[-11.038712,9.797737],[-11.160159,9.890504],[-11.205948,9.999999],[-11.885845,9.997462],[-11.906583,9.935805],[-12.120018,9.871853],[-12.227111,9.92465],[-12.431741,9.881639],[-12.490178,9.825997],[-12.657488,9.539166],[-12.685502,9.430789],[-12.757756,9.388422],[-12.794126,9.297476],[-12.93508,9.286657],[-12.954154,9.189799],[-13.002149,9.097373],[-13.087619,9.048372],[-13.15146,9.085881],[-13.24758,9.075135],[-13.30763,9.037539],[-13.248967,9.144483],[-13.325908,9.179667],[-13.30989,9.24067],[-13.397079,9.272508],[-13.432567,9.351791],[-13.603511,9.562349],[-13.632637,9.63385],[-13.624261,9.723735],[-13.760041,9.779703],[-13.734065,9.862679],[-13.826658,9.8463],[-13.878177,9.906113],[-14.067138,10.028629],[-14.137604,10.047069],[-14.379205,10.233049],[-14.458368,10.211534],[-14.463447,10.339284],[-14.535105,10.391025],[-14.554556,10.468782],[-14.669163,10.513751],[-14.617375,10.598509],[-14.617349,10.680809],[-14.706498,10.634888],[-14.7751,10.724383],[-14.754131,10.836192],[-14.804094,10.852631],[-14.926618,11.054542],[-14.82301,11.24971],[-14.768075,11.382429],[-14.665382,11.506736],[-14.516198,11.498796],[-14.319524,11.603085],[-14.268074,11.678388],[-14.137654,11.6643],[-14.08898,11.630502],[-13.999959,11.644928],[-13.829716,11.708626],[-13.713426,11.709823],[-13.713782,12.008871],[-13.941764,12.135917],[-13.922398,12.236045],[-13.823918,12.260558],[-13.732078,12.249406],[-13.666206,12.311992],[-13.638774,12.466333],[-13.677485,12.527891],[-13.709032,12.67622],[-13.350903,12.659568],[-13.05673,12.619293],[-13.076587,12.529708],[-13.050984,12.473949],[-12.968648,12.461672],[-12.922525,12.53701],[-12.781557,12.476256],[-12.737633,12.429408],[-12.621739,12.426272],[-12.564578,12.368556],[-12.474139,12.399061],[-12.343632,12.307308],[-12.15919,12.368048],[-12.096836,12.421313],[-12.01676,12.396586],[-11.893945,12.427207],[-11.761611,12.387862],[-11.663826,12.423407],[-11.459713,12.44149],[-11.379462,12.413562],[-11.441846,12.357652],[-11.433674,12.29738],[-11.497769,12.209526],[-11.464109,12.133606],[-11.257467,11.992477],[-11.192021,12.014527],[-11.134319,12.095125],[-11.015382,12.205572],[-10.932803,12.223346],[-10.787433,12.104979],[-10.795091,12.037599],[-10.735487,11.919329],[-10.672222,11.893876],[-10.620753,11.969213],[-10.532685,12.031708],[-10.50314,12.121775],[-10.4564,12.116529],[-10.309394,12.21875],[-10.090956,12.179743],[-10.06709,12.139131],[-9.914441,12.098484],[-9.876602,12.055242],[-9.699758,12.023816],[-9.680815,12.116345],[-9.630399,12.172826],[-9.541409,12.192676],[-9.479281,12.245822],[-9.365627,12.24496],[-9.318829,12.277027],[-9.312466,12.369452],[-9.404638,12.461496],[-9.362003,12.495671],[-9.161708,12.486217],[-9.045705,12.428452],[-8.968898,12.348446],[-8.978591,12.192906],[-8.895484,12.146585],[-8.912936,12.041155],[-8.80539,12.005167],[-8.794912,11.923866],[-8.854325,11.628344],[-8.690624,11.587486],[-8.654133,11.499261],[-8.502104,11.399284],[-8.396869,11.382313],[-8.467066,11.289152],[-8.486457,11.221963],[-8.566328,11.204655],[-8.6175,11.124911],[-8.680631,10.967072],[-8.59049,10.950238],[-8.515064,10.972018],[-8.482444,11.065073],[-8.381933,11.075978],[-8.28708,10.995128],[-8.275602,10.853077],[-8.301474,10.636234],[-8.231598,10.416276],[-8.006831,10.343048],[-7.948704,10.251501],[-7.978548,10.175111],[-8.016502,10.097103],[-8.106679,10.046897],[-8.1373,9.992202],[-8.101483,9.832644],[-8.152925,9.589112],[-8.149226,9.532056],[-8.060329,9.401764],[-7.968117,9.396002],[-7.883122,9.435632],[-7.866493,9.375353],[-7.925727,9.217309],[-7.881877,9.157667],[-7.787999,9.106079],[-7.918283,9.004011],[-7.954822,8.869361],[-7.947045,8.786557],[-7.772655,8.767118],[-7.687555,8.544791],[-7.679962,8.454887],[-7.641071,8.377432],[-7.751742,8.378922],[-7.788409,8.46371],[-7.852424,8.420016],[-8.065125,8.506608],[-8.24243,8.456877],[-8.219083,8.233978],[-8.068926,8.161512],[-8.010641,8.09395],[-8.114659,7.84477],[-8.071771,7.808341],[-8.094036,7.722039],[-8.139861,7.693283],[-8.172627,7.581657],[-8.214911,7.533727],[-8.302776,7.601425],[-8.47218,7.554582]]],[[[-15,10.953174],[-14.904609,10.926887],[-15.014639,10.777631],[-15.077992,10.890241],[-15,10.953174]]]]},"properties":{"name":"几内亚","name_en":"GUINEA","id":"GIN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.801805,60.549389],[27.734472,60.488945],[27.226305,60.512638],[27.067806,60.535111],[26.670055,60.428528],[26.509611,60.4515],[26.412083,60.408054],[26.172722,60.39661],[26.039083,60.417999],[25.775722,60.248165],[25.674694,60.276306],[25.210278,60.255638],[25.185083,60.195862],[24.844084,60.177361],[24.521139,60.008026],[24.102556,60.032639],[23.849556,59.997749],[23.727306,59.938972],[23.383722,59.934944],[23.23986,59.896999],[23.248527,59.843613],[22.991583,59.848473],[22.867777,59.971027],[23.032305,59.987862],[22.876278,60.198833],[23.012112,60.28986],[22.881195,60.308613],[22.658306,60.241085],[22.47139,60.280556],[22.591667,60.353195],[22.449528,60.41161],[22.300388,60.386417],[22.200388,60.446777],[21.770861,60.504723],[21.470556,60.581276],[21.366057,60.686279],[21.469166,60.719471],[21.400944,60.820332],[21.257139,60.923222],[21.413805,60.964249],[21.538029,61.402832],[21.530306,61.591415],[21.590528,61.659695],[21.445334,61.917362],[21.292055,61.989193],[21.392666,62.268833],[21.311777,62.368332],[21.134083,62.470333],[21.167305,62.717278],[21.123028,62.794418],[21.405416,62.870609],[21.49011,63.006527],[21.616638,63.079277],[21.532667,63.238888],[21.749556,63.225498],[21.9265,63.269028],[22.135834,63.235943],[22.244694,63.251778],[22.3815,63.347946],[22.202278,63.453529],[22.40925,63.474335],[22.493111,63.534668],[22.511334,63.647999],[22.720194,63.712696],[22.820723,63.66964],[23.074556,63.881527],[23.269945,63.907223],[23.376972,63.961918],[23.38514,64.061943],[23.619972,64.04483],[23.640112,64.124054],[23.919195,64.285225],[24.031666,64.417114],[24.380362,64.55278],[24.443501,64.69236],[24.578945,64.793251],[24.759777,64.877861],[25.127916,64.919975],[25.21789,64.872223],[25.377832,64.881531],[25.321583,64.992752],[25.359583,65.108086],[25.232221,65.124168],[25.329361,65.26564],[25.235916,65.33342],[25.364195,65.41925],[25.319916,65.48317],[25.049889,65.621864],[24.659861,65.693192],[24.490668,65.773865],[24.155945,65.818192],[24.115778,65.919136],[23.943167,66.083359],[23.932362,66.149971],[23.719305,66.222969],[23.655416,66.306725],[23.642639,66.435913],[23.889029,66.572891],[23.894361,66.759277],[24.011055,66.830475],[23.579195,67.162582],[23.624472,67.269997],[23.758667,67.282692],[23.786388,67.427864],[23.414194,67.508667],[23.556278,67.627525],[23.482639,67.724052],[23.506361,67.870865],[23.661972,67.936722],[23.40711,68.046143],[23.29586,68.152611],[23.056694,68.307358],[22.340584,68.474052],[22.03764,68.480782],[21.904556,68.576279],[21.720167,68.588081],[21.581333,68.670753],[21.418583,68.699387],[21.142139,68.855972],[20.848778,68.931252],[20.764668,69.037918],[20.556944,69.0625],[20.720501,69.121361],[21.060333,69.044334],[21.128055,69.103943],[21.04075,69.234024],[21.287138,69.307976],[21.644028,69.270081],[22.174749,68.96122],[22.3365,68.83197],[22.373945,68.720497],[22.521334,68.74408],[22.798334,68.691109],[23.041556,68.697029],[23.160749,68.629059],[23.446138,68.697418],[23.664499,68.713364],[23.767916,68.822365],[23.874027,68.839447],[24.152472,68.796585],[24.141138,68.759003],[24.653084,68.683556],[24.916082,68.609833],[25.124,68.646309],[25.142139,68.796471],[25.488527,68.905556],[25.624556,68.889809],[25.783417,69.020248],[25.706833,69.205696],[25.836916,69.392693],[25.850584,69.547028],[25.950416,69.580498],[25.99711,69.721947],[26.163723,69.753639],[26.395916,69.86161],[26.464695,69.93911],[26.849193,69.961525],[27.03789,69.910278],[27.289055,69.963303],[27.58264,70.075447],[27.977778,70.092613],[28.117971,69.953308],[28.352611,69.881279],[28.428472,69.821083],[29.135084,69.696892],[29.336166,69.484413],[29.223305,69.410584],[28.824556,69.229195],[28.807751,69.127419],[28.926945,69.057388],[28.43475,68.908417],[28.803528,68.874947],[28.718416,68.739471],[28.450361,68.547668],[28.659805,68.195114],[29.334667,68.074692],[29.694529,67.793747],[30.034527,67.669357],[29.959168,67.517334],[29.540222,67.28772],[29.051889,66.976753],[29.086277,66.82428],[29.476805,66.541748],[29.669861,66.291946],[29.917528,66.127891],[30.064695,65.913391],[30.127777,65.734917],[29.734417,65.627914],[29.881222,65.564087],[29.741972,65.46608],[29.768583,65.334114],[29.61861,65.273392],[29.657694,65.227753],[29.877583,65.213249],[29.822889,65.140419],[29.622833,65.059166],[29.632694,64.890167],[29.754417,64.788055],[30.045666,64.792168],[30.143,64.652748],[30.018278,64.591721],[30.052999,64.404251],[30.484972,64.254913],[30.550306,64.125893],[30.526167,64.04908],[30.239805,63.818279],[29.980944,63.754471],[30.505139,63.461861],[30.790861,63.404556],[31.231251,63.225834],[31.258556,63.135639],[31.504528,62.998554],[31.580944,62.908028],[31.435028,62.780251],[31.3745,62.662693],[31.229834,62.507057],[30.718805,62.212891],[29.876833,61.687721],[29.628973,61.497696],[29.490944,61.44614],[29.245556,61.273418],[28.828861,61.125832],[28.655722,60.952721],[28.527666,60.953278],[28.111918,60.733166],[27.801805,60.549389]]],[[[19.806168,60.396305],[19.890751,60.42511],[20.123695,60.347362],[20.263056,60.257195],[20.244278,60.204918],[20.054832,60.155613],[20.048778,60.07914],[19.743778,60.113415],[19.69861,60.201],[19.896944,60.266861],[19.806168,60.396305]]],[[[22.461695,60],[22.368444,60.084167],[22.552694,60.206028],[22.865583,60.243305],[22.879999,60.135529],[22.745111,60.013363],[22.461695,60]]],[[[24.882029,65],[24.640194,64.96389],[24.559223,65.041527],[24.649416,65.082748],[24.864805,65.08886],[24.882029,65]]],[[[21.201279,63.231499],[21.390722,63.27953],[21.457722,63.20586],[21.274639,63.155613],[21.201279,63.231499]]],[[[21.995001,60.341835],[21.796749,60.402889],[21.89575,60.476223],[21.995001,60.341835]]]]},"properties":{"name":"芬兰","name_en":"FINLAND","id":"FIN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-58.134205,-33.025967],[-58.113113,-32.937977],[-58.155197,-32.62112],[-58.20097,-32.462345],[-58.188702,-32.398201],[-58.099659,-32.275284],[-58.18216,-32.144722],[-58.139122,-32.023018],[-58.195049,-31.84952],[-58.082661,-31.816376],[-57.980534,-31.57951],[-58.086422,-31.469915],[-57.999565,-31.40596],[-57.938259,-31.273186],[-57.91288,-31.129105],[-57.862183,-31.032894],[-57.910683,-30.913601],[-57.824959,-30.909866],[-57.797497,-30.784666],[-57.813191,-30.68292],[-57.884033,-30.58581],[-57.847679,-30.47401],[-57.646957,-30.349277],[-57.608025,-30.242327],[-57.617966,-30.179155],[-57.395607,-30.302553],[-57.313053,-30.259735],[-57.206776,-30.281454],[-57.1101,-30.114731],[-56.835793,-30.091099],[-56.48867,-30.394119],[-56.416271,-30.429598],[-56.142773,-30.679335],[-56.130997,-30.735497],[-56.037586,-30.772165],[-55.987007,-30.859661],[-56.01556,-30.93992],[-56.007816,-31.062643],[-55.869793,-31.079561],[-55.697609,-30.958279],[-55.651089,-30.951311],[-55.601116,-30.846632],[-55.382534,-31.0308],[-55.340149,-31.126091],[-55.245102,-31.256735],[-55.115879,-31.321836],[-55.021843,-31.287167],[-54.828682,-31.448027],[-54.590782,-31.448469],[-54.49112,-31.540012],[-54.465691,-31.665781],[-54.095509,-31.905582],[-54.022469,-31.892797],[-53.857674,-31.995565],[-53.829624,-32.054203],[-53.742176,-32.082027],[-53.632419,-32.384529],[-53.520458,-32.487171],[-53.459667,-32.479908],[-53.419075,-32.564148],[-53.169754,-32.663624],[-53.086254,-32.727371],[-53.094597,-32.783741],[-53.280746,-32.899349],[-53.243133,-32.935848],[-53.433838,-33.053841],[-53.508282,-33.149422],[-53.505119,-33.355026],[-53.52446,-33.689034],[-53.371609,-33.750534],[-53.495556,-33.88475],[-53.538711,-34.07238],[-53.627953,-34.13665],[-53.752472,-34.265759],[-53.788856,-34.411262],[-53.98323,-34.510574],[-54.190006,-34.676739],[-54.441311,-34.766113],[-54.921005,-34.961838],[-55.054127,-34.888481],[-55.232685,-34.908955],[-55.329006,-34.817883],[-55.53381,-34.802975],[-55.60318,-34.779987],[-55.782444,-34.780632],[-55.89719,-34.815559],[-56.018898,-34.883652],[-56.146732,-34.920532],[-56.257267,-34.912533],[-56.384544,-34.855675],[-56.449043,-34.762608],[-56.553261,-34.770027],[-56.63908,-34.729939],[-56.815426,-34.697189],[-57.04419,-34.547565],[-57.126473,-34.461384],[-57.61393,-34.440453],[-57.766529,-34.48365],[-57.856297,-34.484989],[-57.992897,-34.272038],[-58.109764,-34.174084],[-58.207744,-34.166901],[-58.231216,-34.071026],[-58.415001,-33.911079],[-58.429626,-33.514465],[-58.346756,-33.3241],[-58.36039,-33.153626],[-58.310367,-33.112217],[-58.173924,-33.119019],[-58.134205,-33.025967]]]},"properties":{"name":"乌拉圭","name_en":"Uruguay","id":"URY"}}, + {"type":"Feature","geometry":null,"properties":{"name":"梵蒂冈","name_en":"Vatican City","id":"VAT"}}, + {"type":"Feature","geometry":null,"properties":{"name":"塞舌尔","name_en":"SEYCHELLES","id":"SYC"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[81.039356,30.19988],[81.140725,30.01313],[81.225727,30.005532],[81.288768,30.122],[81.3979,30.20643],[81.400101,30.319514],[81.63018,30.446596],[81.758799,30.385657],[81.990979,30.322698],[82.120495,30.324507],[82.11052,30.230196],[82.188837,30.185622],[82.186801,30.065899],[82.253837,30.069604],[82.398547,30.017878],[82.495384,29.950866],[82.56118,29.955352],[82.625606,29.833949],[82.704106,29.847588],[82.774261,29.726615],[82.830681,29.687573],[83.137425,29.621629],[83.27462,29.564709],[83.275947,29.505994],[83.418681,29.416876],[83.451384,29.303552],[83.555482,29.200803],[83.660924,29.1767],[83.800429,29.249425],[83.825686,29.297604],[83.97963,29.326679],[84.025806,29.287536],[84.194579,29.240664],[84.167646,29.180801],[84.190904,29.070414],[84.248601,29.007638],[84.227209,28.897026],[84.412626,28.845483],[84.49041,28.733362],[84.641199,28.723998],[84.696426,28.640838],[84.857171,28.567769],[84.992492,28.603462],[85.10765,28.680402],[85.196192,28.617215],[85.189835,28.544812],[85.108517,28.461217],[85.117853,28.337548],[85.205927,28.337001],[85.275647,28.282648],[85.415923,28.321217],[85.526887,28.324264],[85.643927,28.276105],[85.716717,28.380053],[85.76081,28.218585],[85.824606,28.186011],[85.972478,27.996536],[85.949635,27.937904],[86.052157,27.900579],[86.123129,27.923373],[86.083607,28.010526],[86.106042,28.088749],[86.199153,28.142978],[86.224937,27.986273],[86.409234,27.907142],[86.514494,27.955012],[86.537685,28.044797],[86.729713,28.096619],[86.756856,28.033003],[86.864433,28.022457],[86.932365,27.957862],[87.076467,27.917232],[87.121248,27.837196],[87.231514,27.816044],[87.419388,27.85673],[87.455994,27.820487],[87.564182,27.863579],[87.598193,27.814466],[87.718592,27.804548],[87.846801,27.945548],[87.987579,27.884293],[88.137605,27.878514],[88.193749,27.854805],[88.115975,27.622417],[88.039558,27.485806],[88.064163,27.443195],[87.984306,27.113167],[88.106224,26.992332],[88.168526,26.872417],[88.18853,26.766861],[88.159859,26.639139],[88.109169,26.572779],[88.09053,26.433584],[88.024055,26.365778],[87.91336,26.432777],[87.784226,26.469166],[87.600975,26.382473],[87.494637,26.438168],[87.404808,26.42675],[87.350113,26.361445],[87.249191,26.414888],[87.140472,26.41361],[87.007446,26.533695],[86.927307,26.515917],[86.838142,26.443916],[86.734947,26.427221],[86.575333,26.496695],[86.539108,26.538694],[86.340858,26.621889],[86.139359,26.614973],[86.031777,26.670555],[85.866249,26.569944],[85.731613,26.658361],[85.716392,26.825916],[85.616669,26.882],[85.458969,26.790251],[85.330948,26.747084],[85.17997,26.805056],[85.187332,26.8745],[84.968025,26.917055],[84.960197,26.962889],[84.841919,27.01436],[84.748108,27.010584],[84.644218,27.049139],[84.68808,27.226389],[84.627724,27.328222],[84.286308,27.389166],[84.256859,27.445139],[84.098358,27.514166],[84.022552,27.434917],[83.834663,27.428862],[83.864029,27.351889],[83.624138,27.467417],[83.389114,27.480305],[83.408333,27.41386],[83.339447,27.334778],[83.156418,27.458528],[82.957886,27.467388],[82.923279,27.504305],[82.762169,27.510778],[82.756775,27.585556],[82.700973,27.722027],[82.461082,27.682501],[82.067475,27.924389],[81.966415,27.930277],[81.890274,27.858528],[81.700279,27.989639],[81.642555,27.996195],[81.480804,28.0795],[81.445442,28.160389],[81.337974,28.182417],[81.234528,28.279945],[81.212608,28.35836],[81.016502,28.410805],[80.708115,28.570833],[80.666222,28.635723],[80.532837,28.687639],[80.453087,28.624277],[80.372582,28.629278],[80.114281,28.829472],[80.056274,28.916861],[80.131111,29.002388],[80.144775,29.1],[80.268417,29.139862],[80.313278,29.312611],[80.250443,29.448973],[80.405472,29.597889],[80.363167,29.745527],[80.552223,29.849527],[80.59864,29.956917],[80.671524,29.95925],[80.81086,30.093973],[80.949028,30.18339],[81.039356,30.19988]]]},"properties":{"name":"尼泊尔","name_en":"Nepal","id":"NPL"}}, + {"type":"Feature","geometry":null,"properties":{"name":"圣诞岛(澳)","name_en":"Christmas Island (AUS.)","id":"CXR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-8.670276,27.662115],[-9.631425,27.665733],[-10.708385,27.665819],[-11.545901,27.665588],[-12.499719,27.668228],[-13.168586,27.667019],[-13.04553,27.754557],[-12.958003,27.920315],[-12.911704,27.952435],[-12.554612,27.993979],[-12.054925,28.091312],[-12.027032,28.11224],[-11.698596,28.242908],[-11.567678,28.27857],[-11.450017,28.343645],[-11.309136,28.524506],[-11.106047,28.690144],[-11.038872,28.761753],[-10.635715,28.952415],[-10.435158,29.097603],[-10.325971,29.231434],[-10.222154,29.308588],[-10.083365,29.500618],[-10.051832,29.588547],[-9.967676,29.694836],[-9.791988,29.863714],[-9.646639,30.158138],[-9.603167,30.395916],[-9.663417,30.442305],[-9.701639,30.533806],[-9.792666,30.609306],[-9.894305,30.643917],[-9.808695,30.818333],[-9.841888,31.142305],[-9.799334,31.316223],[-9.837861,31.412417],[-9.681084,31.621445],[-9.675944,31.699444],[-9.324833,32.074001],[-9.254334,32.202526],[-9.242695,32.307919],[-9.285,32.380474],[-9.233945,32.460724],[-9.274612,32.554722],[-9.113361,32.673916],[-9.012861,32.774666],[-8.904639,32.849804],[-8.706833,33.034084],[-8.606389,33.193249],[-8.515,33.264778],[-8.452889,33.262806],[-8.299639,33.380138],[-8.121,33.427555],[-7.779222,33.55386],[-7.652556,33.622196],[-7.5855,33.614918],[-7.376,33.717415],[-7.217361,33.811668],[-7.127306,33.834251],[-6.96325,33.928806],[-6.831139,34.044167],[-6.725722,34.165943],[-6.625389,34.342083],[-6.562472,34.416668],[-6.378556,34.722752],[-6.149166,35.213417],[-6.079833,35.400417],[-6.019583,35.506748],[-5.898611,35.813],[-5.777861,35.792667],[-5.718361,35.841194],[-5.5875,35.841641],[-5.453889,35.921165],[-5.336972,35.877388],[-5.315166,35.69614],[-5.274111,35.67236],[-5.234472,35.557446],[-5.170972,35.538082],[-5.05675,35.412945],[-4.910306,35.316387],[-4.713944,35.219776],[-4.359639,35.153168],[-4.276889,35.189919],[-4.109472,35.214554],[-3.920805,35.270943],[-3.8845,35.214054],[-3.796278,35.212666],[-3.6995,35.297112],[-3.598861,35.241112],[-3.338083,35.195667],[-3.09675,35.283054],[-2.951139,35.442417],[-2.971222,35.29036],[-2.902694,35.21764],[-2.897472,35.154583],[-2.813028,35.116196],[-2.739528,35.133446],[-2.6315,35.09914],[-2.533417,35.101418],[-2.426222,35.161888],[-2.20625,35.090973],[-2.177111,35.023056],[-2.033278,34.932499],[-1.882778,34.812195],[-1.746417,34.754971],[-1.847195,34.625473],[-1.69175,34.497639],[-1.780722,34.397278],[-1.648472,34.108418],[-1.702778,33.872917],[-1.676889,33.776222],[-1.729445,33.735333],[-1.602361,33.621445],[-1.600528,33.514137],[-1.661389,33.386807],[-1.669278,33.282307],[-1.569111,33.14761],[-1.482722,33.081638],[-1.487056,32.978111],[-1.542222,32.9575],[-1.379334,32.739529],[-1.021222,32.539806],[-1.066833,32.455639],[-1.184,32.410583],[-1.250028,32.332333],[-1.255722,32.243999],[-1.192445,32.177555],[-1.267167,32.097832],[-1.3635,32.131111],[-1.545444,32.147221],[-1.675028,32.130859],[-1.957167,32.139946],[-2.286083,32.177471],[-2.456472,32.161915],[-2.577306,32.124363],[-2.843306,32.113861],[-2.924278,32.059807],[-2.942722,32],[-2.847389,31.88611],[-2.822972,31.781944],[-3.141889,31.715195],[-3.639667,31.627083],[-3.66,31.595306],[-3.651833,31.382278],[-3.763528,31.361584],[-3.766667,31.270277],[-3.807278,31.222],[-3.772972,31.117666],[-3.578445,31.046139],[-3.546472,30.970583],[-3.575695,30.915222],[-3.654139,30.922945],[-3.804722,30.873249],[-3.885167,30.896166],[-4.067222,30.844833],[-4.214361,30.743833],[-4.40575,30.705833],[-4.604417,30.697666],[-4.83825,30.628834],[-5.002056,30.166334],[-5.130539,29.999353],[-5.457848,29.895369],[-5.659026,29.818058],[-5.919113,29.790298],[-6.072353,29.711987],[-6.300618,29.717508],[-6.448217,29.700102],[-6.549977,29.587625],[-6.694647,29.58799],[-6.833464,29.634644],[-7,29.644922],[-7.171687,29.614714],[-7.343539,29.469461],[-7.475306,29.378208],[-7.640523,29.381409],[-7.864933,29.213688],[-8.082245,29.071899],[-8.213035,29.01915],[-8.52137,28.781076],[-8.669257,28.719862],[-8.672027,28.394119],[-8.670276,27.662115]]]},"properties":{"name":"摩洛哥","name_en":"MOROCCO","id":"MAR"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[52,19],[53.10706,16.654402],[52.928082,16.602362],[52.451832,16.422138],[52.277721,16.257999],[52.203499,16.132944],[52.150749,15.934944],[52.225361,15.627889],[51.953835,15.522833],[51.823555,15.453305],[51.649334,15.3845],[51.59264,15.329194],[51.224251,15.188556],[50.719807,15.064611],[50.469971,15.018583],[50.188278,14.862001],[50.023887,14.816028],[49.940861,14.847167],[49.837197,14.80325],[49.634194,14.755028],[49.272167,14.5955],[49.148945,14.518],[49.114971,14.524861],[49.004418,14.398417],[48.956554,14.30625],[48.835835,14.15975],[48.686474,14.039028],[48.555168,14.037723],[48.495529,14.001],[48.338055,14.017667],[48.192585,13.975472],[48.142502,14.020028],[48.035,14.052139],[47.967972,14.043972],[47.802834,13.922472],[47.63789,13.862889],[47.471195,13.703722],[47.383751,13.644055],[47.080166,13.562612],[46.928417,13.538555],[46.813083,13.467195],[46.689556,13.423945],[46.615223,13.434944],[46.441582,13.40325],[46.246418,13.426611],[46.045334,13.416445],[45.669445,13.346833],[45.5685,13.267555],[45.381443,13.054167],[45.148724,12.988417],[45.104416,12.945444],[45.027721,12.750028],[44.927471,12.819917],[44.842693,12.722445],[44.674,12.804222],[44.56311,12.807834],[44.399388,12.681027],[44.285667,12.628389],[44.156582,12.654944],[44.05439,12.602417],[43.92614,12.599222],[43.914639,12.634194],[43.797085,12.69],[43.592583,12.744667],[43.528221,12.679389],[43.460861,12.674528],[43.490501,12.816305],[43.410915,12.936667],[43.238945,13.254027],[43.253502,13.456611],[43.28997,13.676861],[43.236168,13.805528],[43.232166,13.886306],[43.173054,13.93875],[43.102779,14.06425],[43.071724,14.230084],[42.975166,14.467139],[43.012138,14.559472],[42.928555,14.805833],[42.948418,14.871],[42.919418,14.967833],[42.873779,15.014417],[42.867195,15.112306],[42.830555,15.161695],[42.660641,15.232667],[42.724835,15.274722],[42.805527,15.2775],[42.768528,15.467334],[42.731388,15.536222],[42.687473,15.695806],[42.808666,15.868444],[42.833862,16.074583],[42.778252,16.369194],[42.952862,16.401083],[42.978806,16.505806],[43.117443,16.542694],[43.148304,16.679722],[43.273418,16.750584],[43.265862,16.809889],[43.181946,16.856028],[43.180054,17.162806],[43.232582,17.272194],[43.337082,17.310583],[43.235973,17.386305],[43.234974,17.464611],[43.305832,17.575666],[43.362,17.588722],[43.462166,17.555222],[43.711834,17.365473],[43.7705,17.37561],[43.933499,17.302279],[44.009445,17.388166],[44.109444,17.344862],[44.176334,17.391277],[44.366196,17.390028],[45.172529,17.405976],[45.255653,17.389351],[45.459307,17.277133],[45.60893,17.223103],[45.791803,17.185697],[46.111831,17.169072],[46.403285,17.164916],[46.75864,17.177384],[46.864623,17.111924],[47.017364,16.884372],[47.160753,16.834498],[47.333232,16.881079],[47.472468,16.984121],[47.562865,17.118158],[47.737426,17.439225],[47.999644,17.79167],[48.29176,18.087708],[48.786809,18.353705],[49.001085,18.442371],[49.252304,18.516259],[49.533079,18.567981],[50.190682,18.656646],[50.504108,18.672577],[51.375828,18.865965],[52,19]]],[[[54.514721,12.542472],[54.403641,12.466416],[54.260693,12.441083],[54.134167,12.349444],[54.032223,12.350194],[53.751694,12.300389],[53.545582,12.340722],[53.464973,12.442361],[53.305695,12.53125],[53.396137,12.571611],[53.396416,12.655945],[53.547138,12.714472],[53.646057,12.703584],[53.769749,12.616445],[53.84586,12.604],[54.085861,12.702194],[54.303223,12.610917],[54.514721,12.542472]]],[[[42.761749,13.904805],[42.678307,14.010972],[42.779335,14.046805],[42.761749,13.904805]]]]},"properties":{"name":"也门","name_en":"YEMEN","id":"YEM"}}, + {"type":"Feature","geometry":null,"properties":{"name":"布维岛","name_en":"Bouvet Island","id":"BVT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.47328,-28.583567],[16.565689,-28.555614],[16.634956,-28.489346],[16.732834,-28.492819],[16.774389,-28.441629],[16.817955,-28.272507],[16.899778,-28.071592],[17.001648,-28.077005],[17.083324,-28.037775],[17.193094,-28.129667],[17.179968,-28.204765],[17.220682,-28.251648],[17.311808,-28.225023],[17.374403,-28.28727],[17.403767,-28.41106],[17.329664,-28.471457],[17.417404,-28.567707],[17.409491,-28.722952],[17.597996,-28.700886],[17.610027,-28.759741],[17.696325,-28.751398],[17.920086,-28.771666],[18.083605,-28.876757],[18.17901,-28.915888],[18.265015,-28.883556],[18.434662,-28.901319],[18.559448,-28.860701],[18.732044,-28.841171],[18.94862,-28.864576],[19.111198,-28.97143],[19.208967,-28.940571],[19.240953,-28.815721],[19.295662,-28.736004],[19.40477,-28.739849],[19.492449,-28.677385],[19.562378,-28.531885],[19.670256,-28.534422],[19.729679,-28.489332],[19.80776,-28.507708],[19.872667,-28.442833],[19.996761,-28.433113],[19.997274,-27.906611],[19.997885,-27.275673],[19.998844,-26.266268],[19.999882,-25.383348],[20.000237,-24.752991],[20.100008,-24.861414],[20.262606,-24.923923],[20.379141,-25.02891],[20.449368,-25.194851],[20.604252,-25.419411],[20.664507,-25.444359],[20.63496,-25.527288],[20.692467,-25.582077],[20.67572,-25.67518],[20.790977,-25.81407],[20.817104,-26.008024],[20.856417,-26.12151],[20.808558,-26.236876],[20.613188,-26.474308],[20.6306,-26.594332],[20.629326,-26.792376],[20.71534,-26.87553],[20.901016,-26.795942],[21.021229,-26.849274],[21.142774,-26.874027],[21.344994,-26.827532],[21.529533,-26.862078],[21.709557,-26.855158],[21.777607,-26.804663],[21.803705,-26.668253],[21.940552,-26.673384],[22.047277,-26.6343],[22.160805,-26.507757],[22.19812,-26.398323],[22.255602,-26.351967],[22.354528,-26.329348],[22.423691,-26.228924],[22.546673,-26.230106],[22.721285,-26.022978],[22.748837,-25.916185],[22.747722,-25.803312],[22.828911,-25.682386],[22.818863,-25.584007],[22.912861,-25.418163],[22.970869,-25.380434],[23.011873,-25.293407],[23.069225,-25.328613],[23.198879,-25.272528],[23.357767,-25.282133],[23.501781,-25.328074],[23.87843,-25.579035],[24.051641,-25.651358],[24.188961,-25.619722],[24.277634,-25.719799],[24.375656,-25.764351],[24.477379,-25.749683],[24.689182,-25.823545],[24.904604,-25.813339],[25.049675,-25.721783],[25.125158,-25.758045],[25.344751,-25.767704],[25.583933,-25.633175],[25.651346,-25.505018],[25.708468,-25.281441],[25.75116,-25.223713],[25.891159,-24.855516],[25.862369,-24.764309],[26.01186,-24.720598],[26.417473,-24.637251],[26.475348,-24.587776],[26.520382,-24.485598],[26.604006,-24.40733],[26.676968,-24.377745],[26.71221,-24.3174],[26.854487,-24.269775],[26.88909,-24.087807],[26.954559,-23.877975],[26.950745,-23.813849],[27.005674,-23.647842],[27.148449,-23.575371],[27.195028,-23.505138],[27.276621,-23.479561],[27.320471,-23.41893],[27.419752,-23.428123],[27.563444,-23.353874],[27.607531,-23.222671],[27.719958,-23.240841],[27.787735,-23.150734],[27.934854,-23.058393],[27.965166,-22.962706],[28.054338,-22.891514],[28.043553,-22.851852],[28.163746,-22.752768],[28.202177,-22.670803],[28.346271,-22.576941],[28.512844,-22.587025],[28.629023,-22.559301],[28.707148,-22.513985],[28.916361,-22.459597],[28.960966,-22.333405],[29.03338,-22.217081],[29.150719,-22.214146],[29.189134,-22.185123],[29.360781,-22.196627],[29.571091,-22.142317],[29.763764,-22.141073],[30.011082,-22.230425],[30.124254,-22.308514],[30.223144,-22.29368],[30.275095,-22.345486],[30.483663,-22.314335],[30.698719,-22.315447],[30.809565,-22.292717],[30.931383,-22.300178],[31.085495,-22.344564],[31.165174,-22.328463],[31.251581,-22.357615],[31.311272,-22.417738],[31.309528,-22.434252],[31.558735,-23.178864],[31.545723,-23.403368],[31.565075,-23.484558],[31.689427,-23.619413],[31.695379,-23.720554],[31.76206,-23.880665],[31.874819,-23.950802],[31.913469,-24.190847],[31.987942,-24.304213],[32.011543,-24.478369],[32.000892,-24.679853],[32.044392,-25.128454],[32.025043,-25.373081],[31.984806,-25.460144],[32.012565,-25.637625],[31.938053,-25.830791],[31.982126,-25.952051],[31.869557,-25.998686],[31.424511,-25.719648],[31.320356,-25.744032],[31.261383,-25.816864],[31.142904,-25.90716],[31.118486,-25.985323],[30.967462,-26.259403],[30.897085,-26.322174],[30.820875,-26.444782],[30.795559,-26.565128],[30.812158,-26.825508],[30.910788,-26.847151],[30.98609,-26.931973],[30.976425,-27.01502],[31.157711,-27.199575],[31.502174,-27.315453],[31.975315,-27.31699],[31.983065,-27.061487],[32.013824,-26.811199],[32.133663,-26.834974],[32.353603,-26.860994],[32.847698,-26.868052],[32.895973,-26.856844],[32.844185,-27.108438],[32.691738,-27.483528],[32.608242,-27.812796],[32.561504,-28.140387],[32.429142,-28.391659],[32.423588,-28.4695],[32.369427,-28.565798],[32.017128,-28.878822],[31.793789,-28.945524],[31.559898,-29.176371],[31.34161,-29.37715],[31.190445,-29.571197],[31.037277,-29.814121],[31.064814,-29.878721],[30.897633,-30.04674],[30.733314,-30.341732],[30.628418,-30.50938],[30.321407,-30.922863],[30.304236,-30.95945],[29.998564,-31.308634],[29.840311,-31.435171],[29.772384,-31.443853],[29.682146,-31.54183],[29.545647,-31.644831],[29.402138,-31.689499],[29.218222,-31.939272],[29.00951,-32.13446],[28.866694,-32.292149],[28.602266,-32.504147],[28.502049,-32.612595],[28.419493,-32.641197],[28.367823,-32.709042],[28.141741,-32.803394],[28.069643,-32.917015],[27.899923,-33.045853],[27.728193,-33.122265],[27.473188,-33.308594],[27.310591,-33.39003],[27.105545,-33.529755],[26.844946,-33.639687],[26.728819,-33.662449],[26.562994,-33.754585],[26.457144,-33.7798],[26.284666,-33.774563],[26.051071,-33.713276],[25.883533,-33.721775],[25.677671,-33.812912],[25.607777,-33.921944],[25.702246,-34.030785],[25.592131,-34.052528],[25.397987,-34.034863],[25.280628,-33.985645],[25.108881,-33.961475],[24.928467,-34.011353],[24.920753,-34.083805],[24.79981,-34.199966],[24.500378,-34.171429],[24.377748,-34.107597],[24.181398,-34.06205],[23.785677,-34.007683],[23.651117,-33.97847],[23.416439,-34.016491],[23.3631,-34.102455],[23.130766,-34.076721],[23.033838,-34.036198],[22.976563,-34.076637],[22.780737,-34.025227],[22.571941,-33.996723],[22.486236,-34.048336],[22.264307,-34.051434],[22.132214,-34.110023],[22.093533,-34.205917],[21.988251,-34.215473],[21.909836,-34.272831],[21.908068,-34.340153],[21.730103,-34.399818],[21.539904,-34.358646],[21.428017,-34.377602],[21.290709,-34.440601],[21.143507,-34.389587],[20.970434,-34.365505],[20.880062,-34.381229],[20.841093,-34.474693],[20.641575,-34.452],[20.52681,-34.471401],[20.391972,-34.57378],[20.073421,-34.742233],[20.005331,-34.839828],[19.870424,-34.770405],[19.69163,-34.767193],[19.637974,-34.789654],[19.522049,-34.677601],[19.403595,-34.613712],[19.36134,-34.497055],[19.274288,-34.417675],[19.118221,-34.417404],[19.106321,-34.368782],[18.984997,-34.346916],[18.819183,-34.381943],[18.807997,-34.295063],[18.857718,-34.158649],[18.798675,-34.088375],[18.631371,-34.069187],[18.443096,-34.12952],[18.475183,-34.237549],[18.398148,-34.305664],[18.364161,-34.189728],[18.320887,-34.146042],[18.312447,-34.038361],[18.394081,-33.895557],[18.482556,-33.853653],[18.402416,-33.631401],[18.245339,-33.417015],[18.157845,-33.334064],[18.097735,-33.228066],[17.954674,-33.105614],[17.937254,-33.038059],[17.87195,-32.998146],[17.865202,-32.89193],[17.897621,-32.749638],[17.978721,-32.726387],[18.067554,-32.785248],[18.137888,-32.776714],[18.251495,-32.673954],[18.313212,-32.565273],[18.330561,-32.479954],[18.312141,-32.323826],[18.340115,-32.287109],[18.297804,-32.126007],[18.310375,-32.080803],[18.26775,-31.938627],[18.281973,-31.895456],[18.217566,-31.742725],[18.110678,-31.574118],[17.906855,-31.359808],[17.877483,-31.281733],[17.716206,-31.091675],[17.672655,-30.993931],[17.60029,-30.91169],[17.51621,-30.7216],[17.35824,-30.48131],[17.274914,-30.326298],[17.263605,-30.255558],[17.197206,-30.132997],[17.160902,-30],[17.101427,-29.889164],[17.053558,-29.693359],[16.968151,-29.437796],[16.838888,-29.212664],[16.813251,-29.093887],[16.725685,-29.019758],[16.681223,-28.923809],[16.601667,-28.875423],[16.557846,-28.722761],[16.459741,-28.640917],[16.47328,-28.583567]],[[29.331476,-29.577871],[29.30431,-29.493626],[29.428307,-29.431124],[29.465761,-29.352537],[29.335032,-29.08956],[29.269436,-29.090086],[29.220833,-29.030283],[29.000067,-28.91365],[28.915852,-28.795219],[28.828716,-28.757931],[28.806705,-28.701939],[28.714657,-28.66769],[28.653728,-28.572058],[28.587454,-28.602716],[28.407772,-28.624048],[28.370455,-28.695318],[28.171726,-28.702597],[28.06484,-28.811581],[28.039974,-28.872669],[27.941822,-28.851755],[27.875183,-28.91486],[27.773493,-28.922087],[27.660343,-29.040596],[27.682646,-29.074057],[27.529251,-29.216652],[27.545919,-29.253979],[27.414375,-29.36746],[27.407375,-29.412704],[27.275549,-29.526136],[27.162746,-29.556047],[27.029068,-29.646015],[27.123323,-29.755333],[27.238377,-30.00544],[27.312315,-30.068523],[27.378599,-30.200623],[27.394827,-30.318567],[27.47546,-30.31086],[27.571276,-30.400795],[27.620197,-30.482807],[27.765417,-30.599461],[27.926603,-30.640964],[28.083595,-30.649305],[28.162355,-30.559061],[28.158861,-30.453718],[28.278935,-30.35499],[28.221047,-30.295361],[28.31644,-30.253115],[28.417265,-30.14097],[28.555681,-30.118107],[28.68417,-30.138027],[28.848639,-30.09454],[29.174768,-29.914503],[29.134035,-29.853235],[29.183498,-29.665516],[29.295099,-29.630909],[29.331476,-29.577871]]]},"properties":{"name":"南非","name_en":"SOUTH AFRICA","id":"ZAF"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-87.314613,12.982411],[-87.063492,12.996887],[-86.982261,13.01507],[-86.933312,13.12109],[-86.907913,13.256348],[-86.819229,13.306297],[-86.761772,13.268625],[-86.706543,13.295381],[-86.751465,13.635921],[-86.785034,13.656704],[-86.76284,13.773121],[-86.534477,13.79787],[-86.499069,13.769221],[-86.352074,13.759555],[-86.302765,13.841557],[-86.185905,13.955145],[-86.150467,14.032482],[-86.0065,14.070836],[-86.015449,13.989798],[-85.920044,13.907865],[-85.764259,13.879313],[-85.75914,13.958324],[-85.576477,14.062426],[-85.405274,14.124769],[-85.338715,14.244608],[-85.183571,14.250559],[-85.157913,14.293488],[-85.225494,14.366777],[-85.137642,14.51722],[-85.025177,14.601975],[-85.028137,14.698014],[-84.903412,14.807712],[-84.79287,14.809473],[-84.746796,14.711536],[-84.498039,14.621012],[-84.383171,14.677254],[-84.254478,14.674626],[-84.077568,14.752398],[-83.980293,14.739974],[-83.763397,14.802092],[-83.671493,14.871219],[-83.563637,14.909992],[-83.545334,14.967436],[-83.407265,15.021278],[-83.291008,14.98288],[-83.157807,14.992083],[-83.257706,14.928975],[-83.313629,14.769161],[-83.276825,14.592591],[-83.203766,14.33587],[-83.302811,14.115594],[-83.452194,13.928029],[-83.486267,13.818035],[-83.560242,13.451672],[-83.576027,13.27559],[-83.550186,13.047319],[-83.50898,12.886611],[-83.550629,12.632723],[-83.49736,12.383944],[-83.607994,12.371936],[-83.682709,12.219031],[-83.694672,11.997448],[-83.729721,11.889275],[-83.679359,11.750721],[-83.647865,11.602798],[-83.757286,11.557597],[-83.806923,11.439228],[-83.873894,11.373322],[-83.868919,11.239627],[-83.798294,11.028584],[-83.693535,10.937606],[-83.67791,10.793752],[-83.792694,10.76838],[-83.935989,10.708432],[-84.008095,10.764044],[-84.126655,10.769733],[-84.22879,10.801864],[-84.226738,10.869056],[-84.326645,10.912962],[-84.363762,10.992626],[-84.426132,10.954812],[-84.488121,11.000677],[-84.680985,11.079316],[-84.914108,10.941321],[-85.206848,11.049742],[-85.357674,11.124355],[-85.520577,11.162541],[-85.609756,11.216819],[-85.698433,11.07388],[-85.781387,11.102144],[-85.820839,11.177663],[-85.956009,11.32544],[-86.000374,11.345782],[-86.17823,11.517226],[-86.348991,11.626193],[-86.518509,11.774832],[-86.614304,11.897234],[-86.735336,12.088712],[-86.771797,12.194439],[-87.120361,12.422359],[-87.245682,12.550185],[-87.362778,12.625437],[-87.495956,12.795206],[-87.687035,12.903604],[-87.661156,12.986566],[-87.556023,13.048003],[-87.405327,12.911468],[-87.314613,12.982411]]]},"properties":{"name":"尼加拉瓜","name_en":"NICARAGUA","id":"NIC"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.250687,16.510776],[122.205559,16.439417],[122.234863,16.380028],[122.220497,16.276251],[122.175468,16.218805],[122.019386,16.178167],[121.745583,16.071501],[121.552307,15.898],[121.57283,15.755333],[121.632309,15.753111],[121.618774,15.657361],[121.494835,15.522388],[121.473274,15.417222],[121.371559,15.319083],[121.411392,15.226389],[121.481781,15.18075],[121.5,15.072445],[121.571556,14.944944],[121.599167,14.834972],[121.726333,14.707472],[121.627831,14.685445],[121.607307,14.602056],[121.654915,14.405528],[121.755142,14.250417],[121.742142,14.156389],[121.921806,14.002306],[122.039307,13.947083],[122.20533,13.904889],[122.303139,13.973416],[122.263252,14.050694],[122.163307,14.134],[122.21447,14.190111],[122.264358,14.131194],[122.346306,14.122027],[122.330475,14.201028],[122.375862,14.272305],[122.507583,14.346528],[122.630249,14.28],[122.709831,14.3365],[122.864502,14.268722],[122.913055,14.191694],[123.030777,14.102555],[123.077003,13.989917],[123.052139,13.765111],[123.128525,13.728833],[123.267723,13.745833],[123.321281,13.815306],[123.252502,14.000667],[123.275749,14.072],[123.38636,14.035584],[123.414581,13.931806],[123.551865,13.932584],[123.610336,13.893361],[123.753441,13.871667],[123.812332,13.830305],[123.946694,13.786972],[123.805611,13.687722],[123.59433,13.727861],[123.535446,13.624888],[123.623726,13.492389],[123.677864,13.478027],[123.741608,13.325694],[123.815888,13.286944],[123.755302,13.175722],[123.838638,13.087139],[123.903084,13.142612],[124.093582,13.01225],[124.157165,12.992861],[124.157417,12.83725],[124.081696,12.538639],[123.996475,12.542833],[123.861114,12.693055],[123.83197,12.839778],[123.877136,12.875417],[124.016281,12.880083],[124.02903,12.969944],[123.88253,12.936584],[123.79567,12.866167],[123.730553,12.849361],[123.679749,12.92675],[123.634834,12.891778],[123.531861,12.938806],[123.401497,13.046611],[123.318108,13.009611],[123.289528,13.149138],[123.327004,13.193916],[123.238609,13.287889],[123.190941,13.429167],[122.973557,13.519278],[122.817192,13.645833],[122.834274,13.735917],[122.651337,13.820222],[122.62867,13.883166],[122.537781,13.956917],[122.448059,13.907972],[122.496864,13.8435],[122.522331,13.733833],[122.497582,13.647695],[122.610306,13.516277],[122.667473,13.405916],[122.698913,13.219973],[122.59639,13.159667],[122.51503,13.256361],[122.519058,13.338722],[122.48542,13.410722],[122.331085,13.556806],[122.201225,13.634111],[122.09861,13.776111],[122.054359,13.772833],[121.973442,13.840361],[121.902664,13.857445],[121.815636,13.940583],[121.719666,13.972417],[121.475693,13.839889],[121.434364,13.76175],[121.469498,13.686666],[121.393974,13.6705],[121.287552,13.596611],[121.178497,13.644861],[121.035751,13.6335],[121.047806,13.762806],[120.929947,13.775278],[120.912056,13.877],[120.742775,13.937028],[120.651054,13.849584],[120.623947,13.897166],[120.627304,14.055695],[120.586365,14.216666],[120.651085,14.285944],[120.766807,14.327639],[120.883972,14.453417],[120.975502,14.477305],[120.995331,14.527194],[120.961136,14.634833],[120.844971,14.752361],[120.654861,14.765862],[120.57164,14.848805],[120.536972,14.803722],[120.547752,14.684389],[120.579193,14.65775],[120.610054,14.507167],[120.540108,14.417417],[120.387443,14.460694],[120.390976,14.580277],[120.253387,14.680972],[120.294418,14.797389],[120.21933,14.880222],[120.171776,14.7415],[120.08828,14.782444],[120.049446,14.893389],[120.062164,15.048805],[120.010582,15.272278],[119.901916,15.408889],[119.965225,15.519361],[119.902084,15.61725],[119.886917,15.802555],[119.911446,15.836611],[119.848083,15.965667],[119.747719,15.973583],[119.780113,16.130028],[119.756836,16.167418],[119.786003,16.322332],[119.898865,16.390472],[119.93142,16.36064],[119.898086,16.243834],[119.952698,16.233473],[120.103332,16.138779],[120.101524,16.058695],[120.232414,16.033417],[120.36425,16.092945],[120.425751,16.172833],[120.397553,16.251638],[120.343056,16.293362],[120.327942,16.475639],[120.297859,16.601055],[120.333557,16.673944],[120.325363,16.797277],[120.440391,16.96475],[120.448219,17.019833],[120.406197,17.205778],[120.457192,17.416],[120.419998,17.518139],[120.334473,17.569166],[120.368385,17.682556],[120.436165,17.737249],[120.455666,17.822666],[120.43808,17.926361],[120.498138,17.997833],[120.470642,18.085251],[120.593086,18.320999],[120.562805,18.487778],[120.630775,18.547222],[120.727028,18.527222],[120.852081,18.647667],[120.906998,18.567583],[121.137611,18.630388],[121.192169,18.612499],[121.348526,18.504805],[121.628502,18.363556],[121.898941,18.268417],[121.996781,18.28125],[122.132248,18.386168],[122.162109,18.518862],[122.239586,18.512751],[122.26503,18.428278],[122.338028,18.308195],[122.302948,18.21789],[122.168694,18.081139],[122.173889,17.894251],[122.13858,17.792223],[122.163635,17.618639],[122.249168,17.365223],[122.315109,17.331888],[122.412445,17.332083],[122.455887,17.108862],[122.511833,17.040472],[122.468391,16.967638],[122.460998,16.866694],[122.301697,16.551722],[122.250687,16.510776]]],[[[126.572281,7.723444],[126.553749,7.635944],[126.597748,7.512528],[126.556442,7.444139],[126.551415,7.314556],[126.598999,7.274972],[126.535614,7.2105],[126.443107,7.018944],[126.320503,6.990833],[126.281525,6.920084],[126.190247,6.945],[126.183945,6.848],[126.255585,6.752528],[126.218002,6.637389],[126.218918,6.439639],[126.121246,6.445944],[126.082031,6.531055],[126.088608,6.685556],[126.07267,6.854556],[125.997948,6.896222],[125.984474,7.013444],[125.882195,7.124306],[125.816307,7.367],[125.694809,7.291695],[125.645302,7.222084],[125.660225,7.127639],[125.610726,7.056167],[125.556915,7.049056],[125.486054,6.9785],[125.487892,6.919222],[125.390358,6.802916],[125.371719,6.727972],[125.38414,6.60175],[125.562752,6.528833],[125.582252,6.438445],[125.634865,6.368306],[125.699837,6.217195],[125.711746,6.113222],[125.658585,5.922083],[125.564613,5.816528],[125.411415,5.572694],[125.292473,5.583028],[125.27317,5.711167],[125.171417,5.800889],[125.287865,5.983083],[125.271774,6.082],[125.153915,6.093945],[125.131859,6.015028],[125.04142,5.856278],[124.923836,5.859],[124.530441,6.019722],[124.415497,6.093639],[124.318054,6.120444],[124.17614,6.221],[124.033363,6.422222],[124.022614,6.535333],[124.049637,6.599778],[124.016998,6.731],[123.961693,6.801028],[123.956474,6.911111],[123.99308,7.021972],[124.063973,7.143667],[124.150414,7.175972],[124.254166,7.351889],[124.244415,7.407472],[124.13897,7.436056],[124.100639,7.530416],[124.012306,7.646944],[123.918083,7.691805],[123.781113,7.704889],[123.692475,7.810805],[123.542748,7.853667],[123.422752,7.775306],[123.481781,7.730195],[123.457832,7.629778],[123.381248,7.605694],[123.338112,7.548417],[123.437309,7.449639],[123.409668,7.358583],[123.288391,7.463278],[123.300858,7.52925],[123.22467,7.536639],[123.158501,7.495111],[123.103836,7.553111],[123.191635,7.584333],[123.127197,7.666389],[123.042778,7.649833],[123.02536,7.541139],[122.984612,7.460389],[122.919723,7.535778],[122.84108,7.436306],[122.780136,7.502056],[122.80658,7.581833],[122.784416,7.677084],[122.812752,7.746305],[122.723999,7.783222],[122.566887,7.744833],[122.429802,7.581722],[122.448029,7.500028],[122.361137,7.474889],[122.364365,7.344167],[122.287666,7.305528],[122.246223,7.19025],[122.250221,7.105222],[122.180191,6.9535],[122.108696,6.885639],[121.928276,6.971111],[121.89447,7.076445],[121.921837,7.192389],[122.033806,7.324972],[122.071915,7.51675],[122.140747,7.574],[122.099503,7.759417],[122.161026,7.862528],[122.229637,7.922028],[122.251053,7.987333],[122.46125,8.073277],[122.572113,8.078777],[122.653419,8.144444],[122.710136,8.115556],[122.917557,8.149],[122.989166,8.200833],[122.949417,8.282473],[122.99028,8.347889],[122.981087,8.412778],[123.062637,8.518084],[123.207001,8.53275],[123.265915,8.51475],[123.329246,8.551666],[123.354919,8.634417],[123.477058,8.683389],[123.506081,8.626083],[123.619194,8.649111],[123.694809,8.636389],[123.776169,8.55575],[123.842888,8.427],[123.872665,8.172055],[123.758781,8.057],[124.029274,8.199917],[124.16217,8.189611],[124.230278,8.218638],[124.310448,8.531138],[124.448334,8.622084],[124.573448,8.522889],[124.655525,8.516916],[124.706886,8.474361],[124.772003,8.592527],[124.743195,8.695945],[124.791695,8.874833],[124.774475,8.964306],[124.876358,9.008583],[125.028748,8.918917],[125.08403,8.827945],[125.167359,8.853778],[125.188248,8.948889],[125.185081,9.072222],[125.285553,8.991028],[125.425415,8.976084],[125.522751,9.016556],[125.53286,9.192333],[125.471191,9.365916],[125.391693,9.657111],[125.400475,9.768361],[125.461304,9.801639],[125.542053,9.777945],[125.638474,9.614528],[125.861946,9.540611],[125.920639,9.495139],[125.894859,9.427278],[125.986252,9.347806],[126.049805,9.236028],[126.198692,9.271778],[126.160698,9.111944],[126.310501,8.954917],[126.336975,8.844],[126.292359,8.77175],[126.145638,8.675056],[126.091247,8.608027],[126.141746,8.531889],[126.212028,8.560416],[126.388252,8.518084],[126.317886,8.35625],[126.381889,8.292],[126.322471,8.236889],[126.34092,8.190084],[126.446777,8.214833],[126.410141,8.008778],[126.359581,7.907889],[126.381363,7.831389],[126.442803,7.809972],[126.495415,7.741694],[126.572281,7.723444]]],[[[123.346466,10.394544],[123.33017,10.257556],[123.284248,10.131611],[123.136253,9.830973],[123.163528,9.709695],[123.115776,9.652361],[123.127892,9.543889],[123.31633,9.318194],[123.287834,9.208056],[123.181358,9.091222],[123.018837,9.036667],[122.940277,9.077306],[122.874664,9.245444],[122.873337,9.321362],[122.809502,9.360723],[122.674469,9.383945],[122.610108,9.423722],[122.487274,9.564333],[122.410889,9.705833],[122.39917,9.852222],[122.451584,9.975722],[122.696693,9.99075],[122.786781,10.066083],[122.863526,10.091972],[122.842476,10.297194],[122.868027,10.36375],[122.812111,10.509167],[122.919808,10.612416],[122.964722,10.739361],[122.944809,10.848166],[122.997253,10.916833],[123.070809,10.914166],[123.189331,11.002055],[123.318168,10.953278],[123.509445,10.940444],[123.56189,10.778334],[123.517639,10.726055],[123.464081,10.523528],[123.359169,10.437056],[123.346466,10.394544]]],[[[125.579109,11.108973],[125.517998,11.119223],[125.409775,11.083722],[125.271835,11.141],[125.211029,11.098666],[125.171166,11.245277],[125.086861,11.297222],[125.028694,11.275084],[124.972137,11.313],[124.985443,11.423083],[124.822693,11.518833],[124.884392,11.57975],[124.952026,11.576472],[125.012832,11.784862],[124.912697,11.742139],[124.834198,11.837222],[124.748581,11.897139],[124.722114,11.973722],[124.644775,12.045722],[124.534637,12.061],[124.399887,12.184556],[124.33889,12.317945],[124.320641,12.429833],[124.264252,12.565695],[124.35389,12.540861],[124.498169,12.541083],[124.613556,12.516277],[124.855026,12.534083],[124.961472,12.586638],[125.023918,12.534389],[125.157585,12.573778],[125.293976,12.460889],[125.292198,12.307138],[125.441414,12.273389],[125.520943,12.187805],[125.440193,12.130417],[125.505249,12.062805],[125.425499,11.935166],[125.438721,11.830667],[125.491165,11.672055],[125.475441,11.541528],[125.55883,11.409583],[125.631081,11.364361],[125.548447,11.264916],[125.579109,11.108973]]],[[[121.887413,11.900583],[121.945663,11.920611],[122.107193,11.826445],[122.169807,11.827306],[122.311386,11.740472],[122.374443,11.741278],[122.497833,11.59875],[122.634582,11.520528],[122.726196,11.610167],[122.83342,11.598361],[122.940025,11.480083],[123.007942,11.492528],[123.128052,11.572139],[123.167137,11.474195],[123.098114,11.331583],[123.094864,11.156861],[123.029221,11.16775],[123.011643,11.095361],[122.941719,11.026834],[122.875137,11.030806],[122.759751,10.949195],[122.782608,10.851666],[122.732361,10.78525],[122.678696,10.799444],[122.588081,10.747528],[122.582611,10.690945],[122.476303,10.689528],[122.276306,10.657028],[122.09642,10.576667],[122.065636,10.504528],[121.96347,10.417277],[121.91597,10.449],[121.979668,10.633805],[121.966751,10.725472],[121.92733,10.762222],[121.990608,10.935083],[122.052498,11.033806],[122.035469,11.202611],[122.053665,11.260083],[122.051087,11.425389],[122.084831,11.514806],[122.101303,11.653334],[122.070168,11.744416],[121.921501,11.770583],[121.880081,11.812195],[121.887413,11.900583]]],[[[119.440361,10.779639],[119.414108,10.856611],[119.347664,10.872389],[119.306892,10.962417],[119.42189,11.090305],[119.390419,11.181084],[119.415336,11.309444],[119.463806,11.356639],[119.551552,11.340028],[119.56292,11.264806],[119.50042,11.131222],[119.564224,11.001667],[119.492302,10.993278],[119.51178,10.831778],[119.598663,10.814667],[119.587418,10.687083],[119.716331,10.517528],[119.528335,10.365972],[119.456497,10.376445],[119.366997,10.344],[119.291863,10.283055],[119.230248,10.177527],[119.21508,10.077111],[119.153893,10.027972],[118.857941,9.976084],[118.769638,9.93725],[118.740669,9.845222],[118.771004,9.793667],[118.751358,9.665834],[118.569054,9.442862],[118.516441,9.341666],[118.368752,9.217361],[118.221497,9.157139],[118.121025,9.141666],[118.103165,9.057555],[118.00283,8.881778],[117.880363,8.817278],[117.739586,8.684694],[117.626999,8.655611],[117.563774,8.671889],[117.500725,8.505389],[117.370247,8.494139],[117.214806,8.349417],[117.216835,8.525278],[117.360809,8.742056],[117.399055,8.748055],[117.54847,8.956583],[117.618751,8.996278],[117.691864,9.088862],[117.746666,9.06925],[117.781998,9.174973],[117.922806,9.266861],[117.990196,9.241583],[118.125893,9.346444],[118.212196,9.4915],[118.329636,9.584611],[118.433388,9.718722],[118.506058,9.758223],[118.641357,9.93375],[118.64389,9.992917],[118.768997,10.103639],[118.862694,10.210167],[118.927529,10.202111],[118.948891,10.267138],[119.092804,10.420445],[119.183136,10.42975],[119.320725,10.626862],[119.341247,10.738611],[119.234947,10.844361],[119.440361,10.779639]]],[[[121.37822,12.296639],[121.275253,12.285556],[121.207253,12.23925],[121.117752,12.24225],[121.082031,12.330472],[120.977196,12.422389],[120.916778,12.52925],[120.935997,12.58125],[120.858665,12.718028],[120.79422,12.725139],[120.762169,13.008056],[120.640442,13.193277],[120.544136,13.229777],[120.478531,13.294389],[120.459999,13.415195],[120.345413,13.381194],[120.30703,13.421611],[120.349831,13.509833],[120.667862,13.492695],[120.74617,13.466945],[120.920776,13.514584],[121.057747,13.405666],[121.203445,13.424583],[121.299225,13.3515],[121.437447,13.160666],[121.508331,13.151305],[121.557503,13.095472],[121.484802,13.013945],[121.498497,12.943694],[121.476334,12.7785],[121.547363,12.678638],[121.558472,12.617833],[121.489891,12.536972],[121.435753,12.518444],[121.37822,12.296639]]],[[[125.129974,10.165278],[125.086197,10.218667],[125.022331,10.372723],[124.98864,10.248917],[125.031975,10.041583],[124.982223,10.036805],[124.887474,10.127528],[124.782669,10.137555],[124.755753,10.172222],[124.791695,10.332611],[124.727112,10.399333],[124.725052,10.485473],[124.770302,10.545584],[124.806663,10.66525],[124.791527,10.762834],[124.686386,10.933306],[124.585442,11.010417],[124.535385,10.890445],[124.488251,10.863694],[124.401413,10.973723],[124.375114,11.064972],[124.405197,11.121223],[124.389748,11.244139],[124.341942,11.318666],[124.28936,11.497056],[124.314942,11.565583],[124.452835,11.416695],[124.527252,11.435306],[124.585503,11.308333],[124.701309,11.304694],[124.809281,11.386528],[124.918114,11.411195],[124.971558,11.366639],[124.965973,11.2735],[125.028526,11.202333],[125.037834,10.93925],[125.004135,10.818889],[125.016586,10.748028],[125.09008,10.715612],[125.194969,10.580444],[125.166557,10.532111],[125.182503,10.436306],[125.263054,10.371972],[125.259003,10.262694],[125.135193,10.279388],[125.129974,10.165278]]],[[[123.422722,9.511611],[123.348694,9.416139],[123.301865,9.517305],[123.370026,9.860889],[123.404274,9.902223],[123.410416,10.04325],[123.517281,10.150167],[123.583725,10.273778],[123.588081,10.341194],[123.715637,10.50125],[123.742111,10.632167],[123.866417,10.813611],[123.935417,10.992888],[123.953781,11.198722],[123.999611,11.273278],[124.063332,11.281055],[124.036636,11.14875],[124.055275,10.885389],[124.005417,10.75775],[124.03775,10.594611],[124.020279,10.387195],[123.837639,10.234555],[123.799584,10.238639],[123.651779,10.089222],[123.618141,9.997278],[123.609612,9.874306],[123.515442,9.739195],[123.471222,9.571195],[123.422722,9.511611]]],[[[124.340248,10.120306],[124.389748,10.11225],[124.57122,10.021722],[124.554253,9.929667],[124.604225,9.799444],[124.579697,9.733723],[124.486137,9.760056],[124.401192,9.661777],[124.27742,9.604195],[124.096054,9.591666],[123.98822,9.601444],[123.858864,9.640389],[123.864525,9.712806],[123.794998,9.735861],[123.787476,9.791861],[123.869721,9.914778],[124.051781,9.992333],[124.061859,10.063334],[124.148552,10.150473],[124.319138,10.164695],[124.340248,10.120306]]],[[[123.92392,11.869083],[123.851669,11.909],[123.72525,11.933111],[123.728859,11.987638],[123.614388,12.089194],[123.535385,12.211306],[123.4225,12.199028],[123.298164,12.024028],[123.167,11.90775],[123.217026,12.132028],[123.279945,12.159111],[123.251915,12.246611],[123.28408,12.421056],[123.248474,12.47225],[123.233253,12.582417],[123.315666,12.577806],[123.366531,12.50275],[123.445389,12.519972],[123.642998,12.351389],[123.699669,12.331472],[123.767609,12.227611],[123.901337,12.196944],[123.98053,12.084167],[124.07003,11.858889],[124.011558,11.791389],[123.92392,11.869083]]],[[[124.209419,13.541639],[124.060417,13.611972],[124.033608,13.652083],[124.127914,13.771111],[124.146751,13.928278],[124.12278,14.051861],[124.214081,14.083445],[124.26342,14.032917],[124.288475,13.945666],[124.338081,13.940889],[124.417893,13.850166],[124.389557,13.733639],[124.41011,13.666639],[124.264809,13.595056],[124.209419,13.541639]]],[[[121.878502,6.659361],[122.008782,6.743639],[122.062332,6.748917],[122.137802,6.675167],[122.301865,6.644306],[122.300224,6.589583],[122.214027,6.58075],[122.193558,6.466389],[122.042999,6.409444],[121.95314,6.406778],[121.795113,6.597667],[121.808166,6.662083],[121.878502,6.659361]]],[[[120,12.261111],[120.127976,12.143695],[120.187668,12.115528],[120.300858,12.11575],[120.341774,12.008083],[120.225891,11.985528],[120.130386,12.030444],[120.077667,12.000139],[119.979942,12.005167],[119.85833,12.256416],[120,12.261111]]],[[[121.998413,13.202917],[121.868385,13.28275],[121.822334,13.340222],[121.81308,13.457639],[121.863197,13.53775],[121.998306,13.523194],[122.150612,13.367639],[122.07447,13.306084],[121.998413,13.202917]]],[[[121.391136,6.009833],[121.429359,5.967222],[121.271385,5.864305],[121.191475,5.949695],[121.061584,5.882778],[121.030807,5.926111],[120.936585,5.890639],[120.876915,5.920445],[120.89164,6.004944],[121.015724,6.085417],[121.154053,6.078333],[121.249031,6.016944],[121.391136,6.009833]]],[[[125.643387,10.24825],[125.663635,10.116],[125.691864,10.084444],[125.646751,9.931945],[125.573891,10.067833],[125.483803,10.10825],[125.527389,10.283611],[125.599915,10.367084],[125.677414,10.374028],[125.643387,10.24825]]],[[[121.976974,12.402111],[122.013863,12.4885],[121.998802,12.594222],[122.115501,12.655417],[122.116531,12.516611],[122.096886,12.361055],[122.002808,12.125972],[121.960251,12.190139],[122.013306,12.239639],[121.946388,12.295417],[121.976974,12.402111]]],[[[121.828834,15],[121.957191,15.05675],[122.016892,14.91675],[122.01236,14.675834],[121.937836,14.627389],[121.915275,14.788417],[121.83358,14.93425],[121.828834,15]]],[[[120,5.157028],[119.971664,5.086916],[119.82222,5.056806],[119.815918,5.127889],[120.029167,5.231555],[120.173058,5.343611],[120.255249,5.267972],[120.213501,5.11675],[120.121475,5.1905],[120,5.157028]]],[[[122.718392,10.680388],[122.727753,10.62],[122.645553,10.453917],[122.522553,10.408889],[122.526802,10.617861],[122.609779,10.681556],[122.659805,10.757889],[122.718392,10.680388]]],[[[124.419472,11.70725],[124.535362,11.677861],[124.607308,11.490639],[124.478615,11.463111],[124.392136,11.56025],[124.361336,11.653194],[124.419472,11.70725]]],[[[122.616417,12.493305],[122.697723,12.398889],[122.634277,12.284667],[122.430252,12.41575],[122.482941,12.500861],[122.616417,12.493305]]],[[[126.087135,10],[126.122719,9.840889],[126.11264,9.749945],[126.012726,9.762861],[125.950554,9.83675],[126.022331,9.979722],[126.087135,10]]],[[[123.348778,12.710694],[123.284668,12.809667],[123.196587,12.844722],[123.074166,12.959888],[122.985863,13.009611],[122.930779,13.10925],[122.993584,13.158472],[123.132752,13.008917],[123.180275,12.91575],[123.276474,12.892138],[123.285973,12.823],[123.348778,12.710694]]],[[[120,11.910361],[120.071525,11.867056],[120.02536,11.702778],[119.955918,11.662278],[119.86628,11.903277],[119.879303,11.977667],[120,11.910361]]],[[[123.716057,12.4345],[123.581169,12.634472],[123.659386,12.652805],[123.724861,12.616917],[123.792946,12.409695],[123.716057,12.4345]]],[[[120,10.559917],[119.815415,10.445861],[119.78289,10.559444],[119.836807,10.622472],[119.988281,10.596973],[120,10.559917]]],[[[123.690636,9.219944],[123.689331,9.123917],[123.562615,9.100833],[123.460861,9.179306],[123.649056,9.282111],[123.690636,9.219944]]],[[[116.954308,8.005611],[116.999779,8.063861],[117.072441,8.074056],[117.088249,7.900694],[117.057083,7.834417],[116.995415,7.834722],[116.948136,7.928417],[116.954308,8.005611]]],[[[124.671997,9.12925],[124.632942,9.183166],[124.678833,9.2575],[124.784248,9.200139],[124.802582,9.105805],[124.671997,9.12925]]],[[[125.771698,6.911583],[125.723641,6.960972],[125.708946,7.072222],[125.662972,7.109944],[125.692665,7.186222],[125.796608,7.117],[125.771698,6.911583]]],[[[125.129974,10.165278],[125.214859,10.131056],[125.301392,9.936806],[125.266807,9.907917],[125.185608,10.042222],[125.137497,10.067139],[125.129974,10.165278]]],[[[121.458694,19.267445],[121.403503,19.292084],[121.393112,19.391027],[121.492447,19.371056],[121.540031,19.269444],[121.458694,19.267445]]],[[[120.283806,13.70225],[120.101502,13.78475],[120.08947,13.867084],[120.248528,13.793138],[120.283806,13.70225]]],[[[122.923446,7.369694],[122.899414,7.320694],[122.802887,7.289139],[122.783554,7.361444],[122.807747,7.42725],[122.923446,7.369694]]],[[[121.856476,18.881027],[121.867058,18.971945],[121.943779,19.002056],[121.986946,18.942694],[121.892998,18.869556],[121.856476,18.881027]]],[[[125.940666,9.563556],[125.895302,9.631111],[125.909302,9.72475],[125.957054,9.736972],[125.987831,9.646194],[125.940666,9.563556]]],[[[117.276863,8.194139],[117.273781,8.321667],[117.343613,8.306],[117.347168,8.210222],[117.276863,8.194139]]],[[[123.724281,11.135834],[123.687859,11.222083],[123.751892,11.282416],[123.807335,11.168111],[123.724281,11.135834]]],[[[124.515976,10.677083],[124.409332,10.627361],[124.428887,10.719194],[124.515976,10.677083]]],[[[124.290222,10.625556],[124.310471,10.701834],[124.378914,10.686472],[124.38372,10.62425],[124.290222,10.625556]]],[[[121.312386,18.840944],[121.415642,18.907167],[121.44603,18.856083],[121.312386,18.840944]]],[[[123.770302,9.547],[123.74839,9.601528],[123.845696,9.644222],[123.872139,9.603416],[123.770302,9.547]]],[[[121.352219,12.117361],[121.423363,12.01775],[121.379364,11.996445],[121.352219,12.117361]]]]},"properties":{"name":"菲律宾","name_en":"PHILIPPINES","id":"PHL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.627816,6.225748],[1.434466,6.182848],[1.191781,6.104417],[1.191649,6.155019],[1.091168,6.158789],[0.996295,6.323575],[0.903841,6.321336],[0.865912,6.370354],[0.749092,6.441485],[0.691153,6.579047],[0.637556,6.632189],[0.646373,6.741951],[0.576387,6.761607],[0.52804,6.843082],[0.557728,6.901708],[0.516299,6.966551],[0.599622,7.013436],[0.59894,7.132056],[0.65836,7.311095],[0.646166,7.390156],[0.545763,7.398911],[0.508634,7.522302],[0.518584,7.587568],[0.578013,7.616967],[0.622495,7.860689],[0.597387,7.9753],[0.594891,8.20557],[0.643356,8.258702],[0.725227,8.284056],[0.71428,8.384397],[0.643657,8.491966],[0.466131,8.606551],[0.381674,8.749467],[0.385897,8.786133],[0.49728,8.812919],[0.528812,8.875776],[0.456855,9.017996],[0.470399,9.14627],[0.547701,9.318223],[0.562796,9.40219],[0.447481,9.493739],[0.353735,9.491378],[0.330866,9.445063],[0.227102,9.455466],[0.235182,9.566727],[0.377,9.589395],[0.315031,9.724616],[0.349397,9.827542],[0.347782,10.095751],[0.359138,10.252584],[0.298845,10.391308],[0.169494,10.422465],[0.140989,10.515159],[0.047953,10.587811],[-0.054059,10.631461],[-0.088137,10.714592],[-0.0263,10.825552],[-0.011677,10.956484],[0.032068,10.984734],[0.022753,11.08191],[-0.111697,11.090066],[-0.142006,11.138977],[0.500708,11.009109],[0.494682,10.930997],[0.656307,10.997355],[0.912155,10.99649],[0.873821,10.804958],[0.808246,10.731894],[0.806258,10.578075],[0.774575,10.384764],[1.138571,10.126467],[1.355205,10],[1.366062,9.611395],[1.341589,9.54626],[1.390208,9.497304],[1.42092,9.307435],[1.559118,9.170154],[1.6176,9.070923],[1.629744,8.999118],[1.6302,8.449511],[1.636264,7.988421],[1.631449,7.661111],[1.652931,7.534023],[1.63522,7.379399],[1.642032,6.994573],[1.557832,6.997486],[1.605068,6.905774],[1.609801,6.605819],[1.700774,6.536752],[1.773097,6.419726],[1.799336,6.280558],[1.627816,6.225748]]]},"properties":{"name":"多哥","name_en":"Togo","id":"TGO"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-64.749397,17.71377],[-64.899849,17.695658],[-64.89566,17.7624],[-64.787186,17.79137],[-64.749397,17.71377]]]},"properties":{"name":"美属维尔京群岛","name_en":"VIRGIN ISLANDS,U.S.","id":"VIR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[35.980759,34.643566],[35.88036,34.909637],[35.897335,35.107723],[35.963028,35.200722],[35.928665,35.275417],[35.924168,35.423611],[35.743446,35.564972],[35.774334,35.662918],[35.854137,35.755859],[35.817196,35.836887],[35.921722,35.9305],[36.183056,35.835583],[36.212723,35.9515],[36.317196,36.004112],[36.397835,36.083752],[36.376694,36.169388],[36.54261,36.238056],[36.609249,36.217529],[36.706028,36.255165],[36.593223,36.394222],[36.553028,36.50111],[36.604168,36.579056],[36.623974,36.747082],[36.739029,36.824196],[36.944363,36.78125],[37.126835,36.661667],[37.266445,36.664944],[37.46114,36.638138],[37.65514,36.731415],[37.908028,36.785694],[38.200474,36.908001],[38.407833,36.89539],[38.563389,36.838833],[38.731472,36.707474],[39.020222,36.703304],[39.22736,36.665001],[39.841835,36.755333],[40.180863,36.878693],[40.461834,37.014862],[40.546276,37.026722],[40.781723,37.120583],[40.921082,37.12711],[41.285973,37.080139],[41.500862,37.079555],[41.97514,37.159584],[42.10611,37.21286],[42.193943,37.282196],[42.357418,37.227528],[42.363182,37.119049],[42.365383,37.062817],[41.876636,36.631981],[41.813816,36.587322],[41.396603,36.521912],[41.2813,36.350033],[41.253185,36.057495],[41.366165,35.840164],[41.369408,35.624329],[41.262325,35.474613],[41.261246,35.37109],[41.216598,35.249428],[41.206741,35.142288],[41.230854,34.781715],[41.12508,34.660854],[41.001579,34.420136],[40.958046,34.382568],[40.667431,34.333775],[40.014939,34.001919],[39.499912,33.739162],[38.789616,33.37125],[37.999924,32.953007],[37.750011,32.826427],[36.880394,32.352993],[36.837009,32.316189],[36.404884,32.377453],[36.19326,32.522442],[36.078518,32.512096],[35.935928,32.719036],[35.786285,32.747864],[35.638996,32.683472],[35.662453,32.776878],[35.621735,32.918068],[35.669933,33.152874],[35.624397,33.242092],[35.815289,33.357662],[35.841835,33.40696],[35.949238,33.472729],[36.059624,33.585522],[35.974773,33.637848],[36.014786,33.768749],[36.069172,33.820259],[36.244446,33.852966],[36.367283,33.818352],[36.308426,33.947758],[36.425854,34.054649],[36.512913,34.094605],[36.594059,34.183727],[36.55547,34.415066],[36.448593,34.506393],[36.460274,34.602558],[36.367176,34.642578],[36.03484,34.627728],[35.980759,34.643566]]]},"properties":{"name":"叙利亚","name_en":"Syria","id":"SYR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-157.327423,1.815951],[-157.194382,1.765255],[-157.24971,1.699423],[-157.364288,1.771672],[-157.442886,1.784049],[-157.412704,1.915256],[-157.428665,1.984732],[-157.343735,1.984293],[-157.364624,1.899733],[-157.327423,1.815951]]]},"properties":{"name":"基里巴斯","name_en":"KIRIBATI","id":"KIR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.52075,35.895416],[14.535611,35.810276],[14.430611,35.827499],[14.344,35.880085],[14.341611,35.967999],[14.482972,35.940834],[14.52075,35.895416]]]},"properties":{"name":"马耳他","name_en":"MALTA","id":"MLT"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[87.30484,49.112314],[87.147669,49.154146],[86.889051,49.13256],[86.836104,49.05108],[86.732582,48.995412],[86.757157,48.895363],[86.821561,48.849775],[86.780981,48.73275],[86.644816,48.629956],[86.580777,48.539798],[86.415859,48.481796],[86.305196,48.491884],[86.154853,48.436667],[85.916656,48.437933],[85.794572,48.41907],[85.557498,48.143924],[85.533255,48.046856],[85.617689,47.550715],[85.610204,47.510201],[85.701506,47.384278],[85.701112,47.288487],[85.581851,47.141351],[85.54572,47.057967],[85.335493,47.047133],[85.281414,47.069048],[84.934473,46.863985],[84.849394,46.95694],[84.748027,47.009848],[84.496865,46.979159],[84.449554,47.006416],[84.195106,47.003512],[84.115563,46.96683],[83.932973,46.969998],[83.76654,47.027003],[83.610936,47.05211],[83.46328,47.132074],[83.154817,47.236089],[83.029959,47.219573],[83.00951,47.104455],[82.829778,46.772665],[82.727235,46.495487],[82.518327,46.153824],[82.461516,45.979995],[82.346131,45.94374],[82.34027,45.772534],[82.29576,45.727134],[82.282001,45.542305],[82.564667,45.399534],[82.601014,45.34621],[82.582862,45.219299],[82.478789,45.182347],[82.285028,45.247015],[82.109472,45.211383],[82.072613,45.253333],[81.920709,45.233334],[81.780004,45.383488],[81.645085,45.359304],[81.501715,45.27986],[81.116745,45.221299],[81.070916,45.178057],[80.906177,45.131179],[80.72655,45.177026],[80.583767,45.107476],[80.504859,45.118146],[80.396843,45.046162],[80.056913,45.017044],[79.895337,44.914147],[79.969131,44.877593],[79.999416,44.793854],[80.115742,44.815218],[80.339125,44.690815],[80.410987,44.604075],[80.352763,44.463043],[80.406355,44.295156],[80.395525,44.11906],[80.458593,44.045821],[80.522909,43.821851],[80.632432,43.663392],[80.754914,43.494176],[80.760953,43.446504],[80.692727,43.320416],[80.77694,43.308013],[80.788814,43.135795],[80.615212,43.13884],[80.407981,43.052055],[80.394095,43.000207],[80.593206,42.921661],[80.37851,42.830266],[80.263942,42.829124],[80.187234,42.578408],[80.268959,42.512335],[80.210414,42.469558],[80.229954,42.356203],[80.275619,42.326493],[80.255761,42.221575],[80.248392,42.217587],[80.245636,42.22089],[80.227364,42.220139],[80.197167,42.231361],[80.13353,42.203556],[80.084747,42.328362],[79.982559,42.375278],[79.951637,42.429554],[79.753052,42.454056],[79.509445,42.45636],[79.370224,42.580444],[79.251503,42.632221],[79.166305,42.748806],[78.937027,42.77475],[78.692306,42.82061],[78.491608,42.903778],[78.317833,42.856415],[78.171997,42.877193],[78.058998,42.838333],[77.727196,42.904888],[77.450333,42.935696],[77.223419,42.92189],[77.175804,42.959835],[76.846191,42.982555],[76.723221,42.905193],[76.509056,42.917416],[76.323135,42.866028],[76.268471,42.919224],[76.035469,42.909916],[75.933029,42.952583],[75.815086,42.933693],[75.716278,42.797195],[75.613976,42.820805],[75.415695,42.824471],[75.322029,42.856472],[75.157303,42.849918],[74.911667,42.98275],[74.740471,42.994389],[74.580002,43.141109],[74.437027,43.1875],[74.194527,43.233112],[74.051918,43.158165],[73.954391,43.191971],[73.870636,43.098167],[73.778305,43.108776],[73.571304,43.034248],[73.500168,42.906918],[73.50367,42.783222],[73.427887,42.640583],[73.443275,42.501915],[73.511086,42.416222],[73.346169,42.427223],[73.298111,42.506084],[73.091141,42.536362],[72.901108,42.537304],[72.744278,42.638916],[72.498947,42.685139],[72.282028,42.759277],[72.120361,42.7365],[71.86364,42.832806],[71.57061,42.77486],[71.517609,42.809082],[71.295776,42.781139],[71.165413,42.609417],[71.05378,42.600807],[70.935028,42.393696],[70.871864,42.320057],[70.940224,42.259193],[70.800942,42.209862],[70.693581,42.126835],[70.626976,42.000832],[70.433304,42.130085],[70.322609,42.034363],[70.330887,41.975613],[70.240303,41.941166],[70.159752,41.844307],[69.984558,41.780804],[69.95211,41.718807],[69.832802,41.719082],[69.621086,41.658028],[69.406387,41.504444],[69.307442,41.450863],[69.231476,41.461723],[69.033249,41.342167],[68.988197,41.253193],[68.829529,41.116222],[68.744804,40.987446],[68.652679,40.940998],[68.435278,41.094722],[68.371389,41.045],[68.445555,40.916111],[68.451944,40.769167],[68.423055,40.705556],[68.617222,40.613333],[68.443611,40.596111],[68.061945,40.771111],[67.985556,40.846667],[67.975278,40.909722],[68.030555,41.0775],[67.918611,41.156945],[67.743469,41.201946],[67.311165,41.211807],[66.60611,41.251415],[66.530746,41.896305],[66.008552,41.943501],[66.016441,42.378418],[66.105667,42.347332],[66.099198,42.962196],[65.827194,42.868137],[65.651085,43.303528],[65.294136,43.545277],[65.17025,43.743557],[65.010246,43.766861],[64.53653,43.603306],[63.911888,43.628082],[63.388889,43.672863],[63.208057,43.6525],[62.028694,43.486527],[61.975639,43.512279],[61.413582,44.016445],[61.121418,44.268665],[61.111194,44.35775],[60.001514,44.999783],[59.099235,45.341999],[58.578686,45.599289],[57.990749,45.449139],[57.356388,45.310917],[55.998112,45],[55.998501,44.221279],[55.998833,43.743832],[55.999416,42.944363],[56.000084,42.017166],[56.00061,41.318054],[55.867416,41.322056],[55.779804,41.294693],[55.466141,41.275696],[55.28336,41.415806],[55.146057,41.576637],[55.07122,41.708778],[54.968529,41.801445],[54.957722,41.909637],[54.835998,42.022388],[54.483612,42.208721],[54.189057,42.341473],[53.922474,42.333473],[53.586113,42.292667],[53.420193,42.258804],[52.959415,42.103249],[52.441444,41.765446],[52.489834,41.94064],[52.418945,42.082527],[52.433998,42.160973],[52.568611,42.310749],[52.727859,42.596195],[52.739807,42.718193],[52.609833,42.803917],[52.430752,42.838638],[52.332165,42.822361],[52.130249,42.875057],[51.89397,42.841331],[51.774555,43.014168],[51.666,43.093472],[51.652054,43.177612],[51.268276,43.151165],[51.311111,43.334084],[51.307167,43.469307],[51.266693,43.561333],[51.154804,43.625557],[51.016472,43.805332],[50.992306,43.930862],[50.863609,44.027416],[50.871223,44.093613],[50.772915,44.235306],[50.590443,44.28289],[50.403667,44.293446],[50.264805,44.351582],[50.235584,44.395832],[50.232861,44.539276],[50.308723,44.644585],[50.729862,44.606415],[50.899502,44.611557],[51.086861,44.476276],[51.193554,44.474751],[51.304138,44.587471],[51.167667,44.741749],[51,44.828804],[50.874748,44.81139],[50.866554,44.896168],[50.960919,44.982613],[51.045223,44.988998],[51.172054,45.064751],[51.282307,45.24828],[51.407776,45.357723],[51.541248,45.343472],[51.691445,45.398418],[51.735138,45.445251],[51.964889,45.392418],[52.304916,45.410446],[52.438332,45.435638],[52.570778,45.420834],[52.623611,45.368027],[52.775249,45.367722],[52.716667,45.44239],[52.778362,45.571751],[52.72464,45.617973],[52.810249,45.682999],[52.818027,45.832722],[52.905445,45.911362],[52.823776,46.064026],[52.832138,46.145473],[52.897694,46.177082],[52.976082,46.348415],[53.069279,46.417],[52.990582,46.479137],[52.985138,46.67786],[52.726112,46.752693],[52.655251,46.863472],[52.474445,46.851276],[52.34172,46.764057],[51.957359,46.810722],[51.642193,46.881001],[51.510666,46.983139],[51.37997,47.009445],[51.206665,47.008804],[51.102806,46.938137],[50.913029,46.958168],[50.79039,46.922611],[50.735027,46.854363],[50.604443,46.846027],[50.499554,46.787277],[50.217224,46.750195],[50.11964,46.686306],[50.035446,46.58139],[49.966862,46.594196],[49.882027,46.49128],[49.636444,46.346333],[49.454334,46.343639],[49.361999,46.297279],[49.312195,46.416557],[49.166805,46.359612],[48.816223,46.480167],[48.77589,46.535889],[48.558693,46.608276],[48.480694,46.657665],[48.511501,46.733223],[48.656971,46.771278],[48.751335,46.687862],[48.914055,46.693138],[49.005333,46.767166],[48.970974,46.83514],[48.781334,47.010887],[48.661388,47.209057],[48.60775,47.414471],[48.380695,47.433582],[48.182304,47.678055],[48.05825,47.760639],[47.666778,47.747417],[47.406666,47.812584],[47.371277,47.676918],[47.174305,47.76075],[47.161862,47.836834],[47.017639,48],[47.139416,48.039944],[47.097111,48.104916],[47.113777,48.265499],[46.771831,48.356224],[46.491859,48.443001],[46.7785,48.938526],[46.937611,49.003666],[47.052833,49.164917],[47.021446,49.208889],[46.782665,49.332668],[46.819889,49.556946],[46.859585,49.60825],[46.892887,49.839306],[47.108665,49.903137],[47.22414,49.966362],[47.339359,50.105278],[47.260918,50.198917],[47.319611,50.331779],[47.509498,50.456165],[47.62389,50.438332],[47.816555,50.331306],[48.096474,50.091389],[48.130165,50.002445],[48.216888,49.909363],[48.433251,49.837971],[48.735001,49.92675],[48.877556,50.023361],[48.761891,50.101917],[48.779388,50.180222],[48.716835,50.256027],[48.636055,50.542252],[48.700527,50.623165],[48.824749,50.600334],[48.938667,50.658779],[49.092972,50.783474],[49.410915,50.858418],[49.324779,50.989582],[49.420502,51.129581],[49.736,51.114723],[49.952278,51.240582],[50.220306,51.294277],[50.367638,51.340305],[50.362251,51.436584],[50.46064,51.439335],[50.514195,51.601276],[50.567638,51.642445],[50.716805,51.628445],[50.743084,51.764862],[50.86264,51.739418],[50.889526,51.6805],[51.061668,51.667778],[51.266777,51.689724],[51.358555,51.653332],[51.364193,51.576721],[51.275638,51.500305],[51.42889,51.482582],[51.585998,51.533916],[51.649113,51.468723],[51.793945,51.530666],[51.761528,51.602749],[51.857334,51.683277],[52.037918,51.652863],[52.141167,51.667999],[52.354305,51.759777],[52.383,51.656807],[52.504276,51.547001],[52.545639,51.467361],[52.802113,51.504971],[52.958222,51.471863],[53.148445,51.525471],[53.27425,51.491554],[53.363529,51.517612],[53.570251,51.431641],[53.614723,51.292805],[53.749916,51.203499],[53.90625,51.197109],[54.129528,51.118805],[54.166027,51.020168],[54.315498,50.878613],[54.443279,50.872002],[54.47311,50.788944],[54.425751,50.619362],[54.508083,50.540028],[54.625,50.550835],[54.728638,50.634582],[54.655388,50.810528],[54.711918,50.891499],[55,50.905613],[55.061112,50.832638],[55.354946,50.659943],[55.499085,50.646526],[55.709446,50.55825],[56.132889,50.721668],[56.173916,50.918583],[56.38364,50.926029],[56.442307,50.969891],[56.4245,51.044834],[56.513168,51.066971],[56.633083,50.993195],[56.73914,50.969833],[56.906834,51.048695],[57.105057,51.071835],[57.293945,51.029804],[57.315529,50.939888],[57.493526,50.879334],[57.580002,50.922554],[57.739776,50.931973],[57.756584,51.104084],[58.170361,51.067722],[58.25,51.149029],[58.357334,51.090752],[58.490807,51.081501],[58.507389,50.981083],[58.605835,50.831471],[58.776249,50.805222],[58.84689,50.727112],[59.028332,50.700249],[59.286304,50.634666],[59.442001,50.635082],[59.531334,50.514473],[59.832722,50.584305],[60.00375,50.828972],[60.069,50.865582],[60.354915,50.679359],[60.827915,50.660999],[61.007973,50.686085],[61.450833,50.807304],[61.579834,51.232029],[61.676334,51.264805],[61.552696,51.340332],[61.510502,51.41386],[61.002724,51.465111],[60.90514,51.614113],[60.598557,51.615196],[60.435249,51.630943],[60.356224,51.688499],[60.519417,51.798557],[60.403805,51.813526],[60.180862,51.903557],[60.071056,51.858307],[60.010502,51.989029],[60.2715,52.012333],[60.298,52.05439],[60.484806,52.144333],[60.724251,52.169445],[60.797249,52.232193],[60.964306,52.273613],[61.070167,52.33461],[60.972279,52.418446],[60.981666,52.483891],[60.845722,52.527168],[60.843555,52.619694],[60.722557,52.632389],[60.71925,52.742332],[60.823612,52.762722],[60.852612,52.834667],[61.071945,52.921696],[61.239193,53.032585],[61.373638,52.987446],[61.462029,53.035805],[61.660194,52.961418],[61.717278,52.998054],[61.895279,53.011307],[62.010334,52.952389],[62.13961,53.006527],[62.112972,53.117584],[61.801361,53.161667],[61.669639,53.25264],[61.612141,53.216026],[61.465248,53.224556],[61.39761,53.267918],[61.185082,53.296944],[61.163418,53.39286],[61.303696,53.507999],[61.483639,53.462112],[61.581333,53.501167],[61.558334,53.575668],[61.174583,53.568638],[60.918304,53.6175],[61.110806,53.71611],[61.218334,53.815887],[61.027721,53.951889],[61.275722,53.984806],[61.331333,54.079777],[61.461056,54.083973],[61.58147,53.995388],[61.73761,54.029362],[61.949585,53.945778],[62.042221,53.970638],[62.08839,54.057861],[62.346054,54.035778],[62.454082,53.925945],[62.851334,54.112335],[63.062137,54.100418],[63.161778,54.126751],[63.168335,54.192444],[63.478695,54.203835],[63.880417,54.285862],[64.030747,54.281502],[64.597054,54.374889],[64.732803,54.356667],[64.977943,54.419613],[65.120781,54.337776],[65.240196,54.367474],[65.200775,54.524582],[65.357803,54.580891],[65.446083,54.570137],[65.501304,54.651165],[65.74189,54.602974],[65.832497,54.688389],[65.970726,54.692249],[66.020058,54.618084],[66.405441,54.696835],[66.951919,54.778694],[67.048447,54.774166],[67.380669,54.850388],[67.552528,54.83836],[67.752334,54.878723],[67.884392,54.978584],[68.102165,54.917694],[68.285278,55.064445],[68.176918,55.182304],[68.557442,55.200974],[68.81414,55.352974],[69.010361,55.309082],[68.92025,55.428917],[69.139725,55.389252],[69.185692,55.339195],[69.330192,55.362583],[69.668053,55.342945],[69.831497,55.302387],[69.919609,55.21561],[70.228584,55.136333],[70.411469,55.209167],[70.471031,55.280582],[70.647697,55.262779],[70.820198,55.297974],[70.944832,55.131943],[71.018082,55.10014],[70.961166,54.997112],[70.966469,54.874554],[71.136887,54.708248],[71.297165,54.665474],[71.198914,54.585278],[71.226112,54.362915],[71.092972,54.277111],[71.072998,54.216084],[71.210388,54.110889],[71.354027,54.183498],[71.49147,54.159363],[71.524918,54.108639],[71.655639,54.102695],[71.746559,54.138527],[71.767113,54.248554],[72.082169,54.235889],[72.177223,54.358749],[72.263275,54.320026],[72.298531,54.195641],[72.418137,54.149529],[72.377525,53.953304],[72.493362,53.913807],[72.554138,53.989582],[72.519753,54.050083],[72.600944,54.133999],[72.98114,54.098305],[73.084389,53.990501],[73.28933,53.953335],[73.631363,54.042362],[73.750359,54.054333],[73.691307,53.86211],[73.474335,53.882862],[73.456169,53.813526],[73.347557,53.792805],[73.329475,53.687916],[73.245972,53.575249],[73.400802,53.531639],[73.448974,53.444805],[73.649414,53.559277],[73.674888,53.624332],[73.833695,53.586304],[73.903359,53.648445],[74.07447,53.625526],[74.15139,53.551109],[74.403946,53.461082],[74.484833,53.580055],[74.471863,53.683666],[74.641281,53.667],[74.758469,53.732388],[74.803169,53.815918],[75.039391,53.791],[75.463585,53.978332],[75.40725,54.085194],[75.600861,54.105057],[76.227303,54.274334],[76.234024,54.356056],[76.504112,54.326805],[76.651779,54.346359],[76.745163,54.419724],[76.912971,54.457863],[76.842529,54.234585],[76.748642,54.160362],[76.426697,54.168167],[76.583832,53.967751],[76.762031,53.869141],[77.570335,53.480946],[77.911529,53.278526],[78.249947,52.95425],[78.624725,52.545582],[79.094414,52.031471],[79.610863,51.364334],[79.968498,50.891056],[80.091972,50.831696],[80.192642,50.832027],[80.250999,50.927055],[80.468834,50.974445],[80.474441,51.10125],[80.440888,51.205833],[80.622444,51.206944],[80.682419,51.30814],[80.922142,51.254082],[81.069252,51.172028],[81.157524,51.187721],[81.074303,50.945415],[81.403809,50.982334],[81.479195,50.820805],[81.593002,50.753113],[81.882446,50.810974],[82.007698,50.799721],[82.177803,50.738277],[82.309418,50.773945],[82.471969,50.746166],[82.568695,50.759029],[82.722504,50.842472],[82.764114,50.937752],[82.952225,50.893696],[83.076752,50.95303],[83.120804,51.019749],[83.382141,51.001167],[83.490723,50.95575],[83.640999,50.947723],[83.694054,50.90036],[83.832306,50.874695],[83.964081,50.786556],[83.939445,50.741749],[84.218887,50.532276],[84.21125,50.471443],[84.262558,50.269665],[84.329887,50.225887],[84.465859,50.245918],[84.650001,50.212696],[84.834221,50.096695],[84.998024,50.056084],[84.981026,49.920807],[85.104774,49.874722],[85.196525,49.73761],[85.212303,49.626804],[85.287941,49.588028],[85.604721,49.605667],[85.651276,49.561165],[85.931335,49.552418],[85.979668,49.486168],[86.155441,49.500832],[86.25003,49.587807],[86.426499,49.638695],[86.623611,49.773167],[86.803223,49.803165],[86.783417,49.710999],[86.617996,49.631638],[86.634163,49.581665],[86.796059,49.547554],[86.821442,49.444527],[86.908775,49.414165],[86.902001,49.350777],[87.047112,49.254696],[87.17189,49.251751],[87.281387,49.202778],[87.308777,49.125389],[87.321534,49.109083],[87.30484,49.112314]]],[[[50.364445,45],[50.269779,44.899113],[50.216805,45.03653],[50.350388,45.065277],[50.364445,45]]],[[[52.680779,45.37011],[52.546249,45.479694],[52.669724,45.519444],[52.706055,45.430752],[52.680779,45.37011]]]]},"properties":{"name":"哈萨克斯坦","name_en":"KAZAKHSTAN","id":"KAZ"}}, + {"type":"Feature","geometry":null,"properties":{"name":"特克斯和凯科斯群岛","name_en":"TURKS AND CAICOS ISLANDS","id":"TCA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-149.128662,-17.81337],[-149.153244,-17.877192],[-149.251312,-17.859816],[-149.314987,-17.76528],[-149.458771,-17.782341],[-149.579239,-17.744019],[-149.622055,-17.562103],[-149.486115,-17.499495],[-149.343857,-17.54217],[-149.302307,-17.605635],[-149.307282,-17.717199],[-149.160339,-17.754774],[-149.128662,-17.81337]]],[[[-140,-8.825965],[-139.99382,-8.905535],[-140.173874,-8.977388],[-140.227402,-8.859693],[-140.160065,-8.806317],[-140.038925,-8.843479],[-140,-8.825965]]],[[[-138.854675,-9.78633],[-138.916489,-9.812822],[-139.038056,-9.810848],[-139.133713,-9.83286],[-139.158188,-9.776894],[-139.038498,-9.706912],[-138.902069,-9.737718],[-138.854675,-9.78633]]],[[[-151.423447,-16.762966],[-151.355011,-16.853847],[-151.472672,-16.90691],[-151.494522,-16.792147],[-151.423447,-16.762966]]],[[[-140.036408,-9.361355],[-140.032272,-9.455051],[-140.090759,-9.448942],[-140.128739,-9.386571],[-140.036408,-9.361355]]]]},"properties":{"name":"法属玻利尼西亚","name_en":"FRENCH POLYNESIA","id":"PYF"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-169.923599,-19.023535],[-169.879639,-18.956306],[-169.805878,-18.964272],[-169.775177,-19.061155],[-169.843018,-19.143307],[-169.915649,-19.138311],[-169.923599,-19.023535]]]},"properties":{"name":"纽埃","name_en":"Niue","id":"NIU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.294743,15.542881],[-61.251945,15.476926],[-61.244152,15.320584],[-61.268395,15.240901],[-61.364632,15.20169],[-61.402843,15.345878],[-61.47683,15.488223],[-61.467373,15.626283],[-61.294743,15.542881]]]},"properties":{"name":"多米尼克","name_en":"Dominica","id":"DMA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-4.067056,52.925056],[-4.231139,52.921444],[-4.590556,52.826138],[-4.771222,52.798027],[-4.652805,52.908585],[-4.523639,52.943832],[-4.360944,53.035526],[-4.355639,53.109055],[-4.131333,53.240139],[-4.016778,53.247334],[-3.783139,53.330582],[-3.606695,53.295582],[-3.387694,53.350639],[-3.150805,53.263611],[-3.204584,53.390335],[-3.046917,53.441307],[-3.108083,53.557083],[-2.961389,53.706001],[-3.0605,53.771362],[-3.046333,53.925693],[-2.869722,53.965584],[-2.926972,54.034027],[-2.822139,54.092388],[-2.868278,54.184502],[-3.168722,54.083138],[-3.243556,54.109974],[-3.420278,54.281139],[-3.426861,54.337223],[-3.642583,54.518501],[-3.578222,54.645084],[-3.438861,54.76025],[-3.403611,54.870056],[-3.289778,54.940613],[-3.329306,54.978249],[-3.581167,54.962276],[-3.599889,54.875221],[-3.730917,54.881138],[-3.964306,54.77536],[-4.09725,54.768585],[-4.267139,54.837082],[-4.357194,54.813915],[-4.409861,54.680637],[-4.816139,54.866722],[-5.008833,54.780834],[-5.138055,54.851639],[-5.185556,54.976807],[-5.060917,55.026779],[-4.997194,55.119389],[-4.862028,55.230999],[-4.841472,55.332138],[-4.770222,55.406696],[-4.653167,55.447945],[-4.626806,55.508751],[-4.700472,55.609055],[-4.90725,55.700748],[-4.861222,55.747276],[-4.89875,55.894585],[-4.820389,55.963028],[-4.894306,55.998417],[-4.978695,55.862694],[-5.188194,55.946777],[-5.344722,55.888111],[-5.320695,55.770779],[-5.449667,55.711224],[-5.470861,55.584057],[-5.550305,55.420582],[-5.517445,55.373054],[-5.602305,55.309917],[-5.804361,55.303139],[-5.796028,55.396027],[-5.715528,55.456501],[-5.717389,55.570805],[-5.558222,55.780083],[-5.664972,55.801056],[-5.689222,55.911304],[-5.636472,56.056057],[-5.520167,56.17197],[-5.608806,56.302307],[-5.434972,56.526165],[-5.248639,56.709389],[-5.493639,56.610085],[-5.64975,56.512501],[-5.939806,56.571693],[-6.011916,56.64764],[-6.207944,56.695999],[-6.142167,56.764668],[-5.839917,56.779141],[-5.892361,56.877056],[-5.797611,57.066723],[-5.637083,57.202862],[-5.649361,57.287613],[-5.825444,57.368057],[-5.875222,57.475639],[-5.812611,57.662693],[-5.807695,57.861832],[-5.549139,57.897362],[-5.195222,57.912334],[-5.190333,57.955723],[-5.423611,58.038277],[-5.29075,58.080944],[-5.284889,58.137943],[-5.40675,58.237835],[-5.113361,58.272057],[-5.178056,58.349667],[-5.08375,58.395916],[-5.114389,58.523556],[-5.012389,58.627224],[-4.834833,58.599335],[-4.609806,58.52961],[-4.524944,58.580112],[-4.364139,58.538918],[-4.05325,58.574139],[-3.755444,58.578278],[-3.662194,58.621113],[-3.374194,58.594696],[-3.350166,58.64764],[-3.026583,58.64275],[-3.1365,58.503334],[-3.053389,58.451027],[-3.211806,58.311165],[-3.382167,58.271],[-3.518972,58.168362],[-3.852333,58.0075],[-3.992472,57.965752],[-3.974194,57.844944],[-3.873417,57.823307],[-3.978972,57.69614],[-4.09475,57.667057],[-4.242417,57.504002],[-3.838389,57.597694],[-3.674944,57.662498],[-3.279945,57.725445],[-3.03725,57.666832],[-2.918917,57.700222],[-2.546944,57.671501],[-2.129861,57.701695],[-1.924583,57.675945],[-1.832361,57.618362],[-1.785167,57.46389],[-1.988806,57.320946],[-2.081944,57.18111],[-2.054056,57.129028],[-2.210444,56.971085],[-2.203194,56.910362],[-2.33025,56.800362],[-2.443306,56.753387],[-2.546611,56.571083],[-2.726556,56.496693],[-2.868833,56.365749],[-2.596083,56.282166],[-2.848111,56.185974],[-2.978611,56.206974],[-3.128055,56.122807],[-3.295417,55.98114],[-3.159055,55.985001],[-3.072583,55.946335],[-2.914611,55.977638],[-2.805083,56.067696],[-2.665472,56.061249],[-2.285667,55.926193],[-2.136778,55.910667],[-1.984222,55.751751],[-1.834139,55.641361],[-1.645028,55.586472],[-1.592028,55.493694],[-1.502306,55.198944],[-1.496305,55.105667],[-1.356805,54.966694],[-1.307778,54.777832],[-1.163917,54.651112],[-1.003139,54.596249],[-0.779972,54.561138],[-0.575806,54.482693],[-0.475806,54.398224],[-0.373028,54.249695],[-0.243167,54.165638],[-0.099,54.131222],[-0.215472,54.063583],[-0.158417,53.901138],[0.10325,53.67625],[-0.063167,53.631668],[-0.065333,53.584446],[0.145917,53.494835],[0.318833,53.273724],[0.3395,53.103111],[0.0985,52.977249],[0.028639,52.899334],[0.166028,52.876778],[0.210556,52.821056],[0.364028,52.800499],[0.53875,52.978554],[0.690028,52.99036],[0.898889,52.96561],[0.990222,52.98011],[1.255945,52.942806],[1.404917,52.894806],[1.687778,52.732277],[1.739805,52.632332],[1.758028,52.489918],[1.726,52.399113],[1.624028,52.273804],[1.579722,52.096554],[1.459167,52.047195],[1.224945,51.862751],[1.229055,51.820499],[1.037583,51.772194],[0.982139,51.823917],[0.856305,51.771915],[0.944194,51.723141],[0.924472,51.595833],[0.777222,51.523277],[0.547611,51.55014],[0.553833,51.400196],[0.890333,51.34375],[1.197084,51.382389],[1.424611,51.394333],[1.373917,51.282528],[1.373028,51.143028],[1.026944,51.048805],[0.965667,50.997417],[0.963778,50.914028],[0.774306,50.937389],[0.655417,50.871971],[0.359667,50.817944],[0.255861,50.740196],[-0.104556,50.818001],[-0.248722,50.833084],[-0.569556,50.80389],[-0.756917,50.766861],[-1.048472,50.798473],[-1.347666,50.789944],[-1.576583,50.719639],[-1.690083,50.740696],[-1.890833,50.71825],[-1.962306,50.679249],[-1.957694,50.599972],[-2.4385,50.638779],[-2.475945,50.585251],[-2.627889,50.663361],[-2.910056,50.737835],[-2.98525,50.709641],[-3.258972,50.678223],[-3.443194,50.60239],[-3.558472,50.449165],[-3.519667,50.352222],[-3.615666,50.320168],[-3.725639,50.204472],[-3.828667,50.219002],[-3.921722,50.298305],[-4.052667,50.297222],[-4.193222,50.36961],[-4.442666,50.363167],[-4.481,50.335667],[-4.758083,50.333946],[-4.787055,50.248001],[-4.958833,50.202694],[-5.109972,50.095585],[-5.070639,50.037724],[-5.24825,49.985943],[-5.335139,50.092277],[-5.529667,50.127445],[-5.552806,50.064693],[-5.679695,50.036446],[-5.714,50.129139],[-5.541889,50.217388],[-5.442222,50.195446],[-5.250139,50.2845],[-5.139084,50.409943],[-5.04175,50.450832],[-5.028806,50.544388],[-4.791278,50.60564],[-4.762889,50.668529],[-4.56475,50.790916],[-4.573333,50.906582],[-4.529472,51.025471],[-4.319778,50.997112],[-4.222639,51.079304],[-4.209805,51.202641],[-3.775583,51.240749],[-3.541028,51.23436],[-3.41,51.185749],[-3.272861,51.183582],[-3.006222,51.222832],[-2.966805,51.369888],[-2.805167,51.487804],[-2.722528,51.50375],[-2.717167,51.585667],[-3.117833,51.495056],[-3.170722,51.40889],[-3.401778,51.384556],[-3.560361,51.403473],[-3.654278,51.479557],[-3.747056,51.502419],[-3.866833,51.623474],[-4.012361,51.570835],[-4.278833,51.559193],[-4.238139,51.643696],[-4.392833,51.731583],[-4.5645,51.746418],[-4.699222,51.720249],[-4.720389,51.661804],[-4.865583,51.649639],[-4.925389,51.601196],[-5.061,51.624943],[-5.034611,51.700195],[-5.212027,51.739223],[-5.105417,51.815193],[-5.134611,51.865917],[-5.280278,51.91489],[-4.796555,52.058861],[-4.73225,52.119389],[-4.502222,52.144054],[-4.386278,52.214863],[-4.211861,52.265415],[-4.129944,52.342609],[-4.057944,52.482224],[-4.13375,52.615776],[-4.05825,52.723221],[-4.149139,52.805805],[-4.149639,52.88475],[-4.067056,52.925056]]],[[[-6.266083,54.0965],[-6.403555,54.064499],[-6.645472,54.047806],[-6.645,54.167751],[-6.822139,54.221973],[-6.884,54.348057],[-7.05625,54.411972],[-7.184583,54.334415],[-7.149806,54.225723],[-7.334694,54.144611],[-7.60175,54.141083],[-7.691278,54.203804],[-7.866556,54.218639],[-8.160944,54.436779],[-8.0205,54.539585],[-7.857361,54.53186],[-7.775916,54.62125],[-7.918472,54.669029],[-7.641472,54.750305],[-7.447667,54.872417],[-7.405222,54.944584],[-7.259472,55.042526],[-7.048917,55.050529],[-6.970278,55.141918],[-6.752722,55.168751],[-6.485667,55.253387],[-6.140222,55.226528],[-6.030611,55.159054],[-6.060389,55.061806],[-5.968222,55.050446],[-5.934722,54.968613],[-5.710195,54.749195],[-5.897305,54.674778],[-5.577417,54.676277],[-5.461722,54.49786],[-5.677,54.584721],[-5.630139,54.456444],[-5.649166,54.367416],[-5.540972,54.338974],[-5.604694,54.261917],[-5.826222,54.245777],[-5.904555,54.102585],[-6.066194,54.024666],[-6.266083,54.0965]]],[[[-6.729944,57.954861],[-6.672111,57.881779],[-6.876695,57.777332],[-6.998361,57.748333],[-7.021972,57.838554],[-6.88475,57.935612],[-7.07325,57.967277],[-7.040667,58.053944],[-7.132639,58.123474],[-7.049222,58.232555],[-6.812806,58.253277],[-6.809417,58.302807],[-6.551389,58.366501],[-6.278778,58.496056],[-6.184723,58.466221],[-6.192444,58.351139],[-6.397833,58.205223],[-6.369722,58.019779],[-6.471917,57.941307],[-6.589417,57.914585],[-6.729944,57.954861]]],[[[-6.236306,57.637165],[-6.142584,57.550945],[-6.149056,57.375252],[-5.995444,57.27261],[-5.743723,57.277863],[-5.67025,57.211388],[-5.799083,57.163528],[-5.923778,57.047863],[-6.039611,57.050221],[-5.93825,57.178501],[-6.113028,57.191723],[-6.318778,57.161556],[-6.566917,57.343498],[-6.730889,57.386612],[-6.749806,57.501362],[-6.386667,57.522251],[-6.430389,57.640972],[-6.314583,57.709999],[-6.236306,57.637165]]],[[[-6.275472,56.481194],[-6.321111,56.605778],[-6.149778,56.656471],[-6.061139,56.635307],[-5.955417,56.524307],[-5.801,56.520111],[-5.654555,56.457359],[-5.672028,56.393391],[-5.847278,56.314751],[-5.904944,56.352585],[-6.041778,56.297611],[-6.268028,56.320915],[-6.123417,56.45364],[-6.275472,56.481194]]],[[[-1.211333,60.481056],[-1.08375,60.373474],[-1.156806,60.284973],[-1.217028,59.998695],[-1.382389,59.890472],[-1.274194,60.128639],[-1.369528,60.214359],[-1.498972,60.156502],[-1.577222,60.293446],[-1.451917,60.345859],[-1.275583,60.471889],[-1.211333,60.481056]]],[[[-4.574778,53.271946],[-4.570722,53.410473],[-4.433944,53.433556],[-4.283056,53.406418],[-4.220806,53.30164],[-4.094389,53.264751],[-4.366417,53.13361],[-4.574778,53.271946]]],[[[-6.317306,55.720528],[-6.495056,55.719166],[-6.455333,55.85564],[-6.136722,55.894333],[-6.032667,55.680111],[-6.2695,55.583527],[-6.332806,55.6245],[-6.317306,55.720528]]],[[[-3.201972,59.156082],[-3.009833,59.074444],[-3.066666,59.023945],[-2.723833,58.938889],[-2.8255,58.88961],[-2.971139,58.935196],[-3.136945,58.918694],[-3.356778,58.966278],[-3.316222,59.139278],[-3.201972,59.156082]]],[[[-4.3835,54.325943],[-4.314667,54.303196],[-4.471334,54.144444],[-4.682861,54.06514],[-4.752694,54.109859],[-4.723111,54.213001],[-4.600027,54.286945],[-4.548139,54.363583],[-4.367139,54.418861],[-4.3835,54.325943]]],[[[-5.158528,55.587223],[-5.084445,55.556999],[-5.083694,55.457027],[-5.175194,55.436916],[-5.313389,55.467556],[-5.373944,55.673],[-5.282528,55.722137],[-5.162472,55.68214],[-5.158528,55.587223]]],[[[-5.789972,56.018776],[-5.966583,55.794388],[-6.091472,55.834915],[-6.095778,55.895168],[-5.965778,56.031639],[-5.748861,56.141277],[-5.689972,56.117279],[-5.789972,56.018776]]],[[[-1.115611,50.698696],[-1.184194,50.607361],[-1.300861,50.57925],[-1.514139,50.67461],[-1.317111,50.771805],[-1.115611,50.698696]]],[[[-7.320055,57.512917],[-7.522305,57.603863],[-7.1915,57.699528],[-7.06375,57.641888],[-7.135416,57.55611],[-7.320055,57.512917]]],[[[-7.422806,57.392944],[-7.326584,57.400528],[-7.201861,57.309055],[-7.272889,57.217445],[-7.208917,57.118999],[-7.371806,57.106335],[-7.430222,57.233334],[-7.422806,57.392944]]],[[[-1.176722,60.507637],[-1.192972,60.634251],[-1.115583,60.729916],[-1.020889,60.726833],[-0.994778,60.635639],[-1.041083,60.499805],[-1.176722,60.507637]]],[[[-1.358833,60.537918],[-1.329556,60.450779],[-1.577778,60.477665],[-1.440889,60.580471],[-1.358833,60.537918]]],[[[-3.234111,58.784916],[-3.298722,58.783417],[-3.413417,58.915859],[-3.213,58.879471],[-3.234111,58.784916]]],[[[-0.772056,60.829582],[-0.820333,60.738724],[-0.95925,60.792667],[-0.772056,60.829582]]],[[[-5.175917,55.925083],[-5.024222,55.84486],[-5.116556,55.773804],[-5.175917,55.925083]]],[[[-6.332278,57.059444],[-6.26475,56.96175],[-6.375889,56.954361],[-6.449306,57.010471],[-6.332278,57.059444]]],[[[-2.035056,49.199055],[-2.233917,49.180416],[-2.15425,49.265057],[-2.035056,49.199055]]],[[[-7.346111,57.495193],[-7.226028,57.473167],[-7.238333,57.40411],[-7.391056,57.425251],[-7.346111,57.495193]]],[[[-7.255222,55.067112],[-7.405222,54.944584],[-7.392778,55.022583],[-7.255222,55.067112]]]]},"properties":{"name":"英国","name_en":"UNITED KINGDOM","id":"GBR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.912155,10.99649],[1.009168,11.085727],[1.086619,11.113338],[1.150468,11.175611],[1.159523,11.261173],[1.273934,11.259864],[1.325122,11.289876],[1.317959,11.359073],[1.443134,11.472229],[1.578893,11.44347],[1.599717,11.394748],[1.714145,11.42913],[1.872681,11.445773],[2.019249,11.427713],[2.18544,11.597241],[2.305729,11.674421],[2.299218,11.720811],[2.372374,11.793143],[2.405395,11.901612],[2.468418,11.99462],[2.399829,12.142663],[2.385481,12.235548],[2.663131,12.304181],[2.775167,12.411002],[2.866644,12.389774],[3.001497,12.272345],[3.260566,12.011599],[3.307631,11.887661],[3.468482,11.862899],[3.548418,11.743756],[3.605074,11.696975],[3.56596,11.616995],[3.495874,11.292326],[3.691927,11.128139],[3.716902,11.024343],[3.771224,10.93077],[3.749201,10.837516],[3.797159,10.735463],[3.840979,10.704922],[3.8517,10.605787],[3.786002,10.405383],[3.687709,10.456362],[3.646044,10.435143],[3.584172,10.278366],[3.678951,10.169748],[3.611497,10.062435],[3.595776,9.945736],[3.529646,9.862082],[3.456388,9.861171],[3.329655,9.798798],[3.348598,9.685226],[3.271623,9.659],[3.133371,9.426089],[3.158344,9.291413],[3.083539,9.097911],[2.984103,9.072345],[2.780915,9.065208],[2.788786,8.970237],[2.728413,8.772683],[2.750379,8.700289],[2.761885,8.522547],[2.706947,8.420317],[2.698124,8.307178],[2.754102,8.211312],[2.695501,7.930818],[2.675814,7.893206],[2.732406,7.772228],[2.730281,7.580174],[2.798191,7.482555],[2.747578,7.417439],[2.74946,7.261153],[2.784869,7.159227],[2.750653,7.105764],[2.792603,7.041275],[2.72064,6.986536],[2.747873,6.928291],[2.732744,6.778647],[2.789703,6.738933],[2.731428,6.630785],[2.709604,6.36882],[2.327578,6.33918],[1.870626,6.278502],[1.627816,6.225748],[1.799336,6.280558],[1.773097,6.419726],[1.700774,6.536752],[1.609801,6.605819],[1.605068,6.905774],[1.557832,6.997486],[1.642032,6.994573],[1.63522,7.379399],[1.652931,7.534023],[1.631449,7.661111],[1.636264,7.988421],[1.6302,8.449511],[1.629744,8.999118],[1.6176,9.070923],[1.559118,9.170154],[1.42092,9.307435],[1.390208,9.497304],[1.341589,9.54626],[1.366062,9.611395],[1.355205,10],[1.138571,10.126467],[0.774575,10.384764],[0.806258,10.578075],[0.808246,10.731894],[0.873821,10.804958],[0.912155,10.99649]]]},"properties":{"name":"贝宁","name_en":"Benin","id":"BEN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[8.527482,4.726633],[8.45983,4.700802],[8.397238,4.735682],[8.300244,4.85112],[8.329824,4.64332],[8.279236,4.538615],[8.124584,4.546533],[7.884963,4.531165],[7.685815,4.500555],[7.574171,4.454332],[7.308086,4.422989],[7.141837,4.384405],[7.140978,4.476191],[7.02634,4.436544],[6.996282,4.372845],[6.87045,4.394064],[6.859226,4.360168],[6.633316,4.330724],[6.090231,4.277144],[5.881078,4.378965],[5.67419,4.554421],[5.566684,4.694172],[5.458873,4.881326],[5.418634,5.038253],[5.354375,5.164655],[5.322959,5.354897],[5.364914,5.392932],[5.243128,5.444513],[5.180882,5.509887],[5.173783,5.578264],[5.074298,5.70889],[4.962613,5.909716],[4.909046,5.975481],[4.693125,6.177058],[4.529322,6.304786],[4.361388,6.36992],[4.044346,6.419989],[3.772736,6.432116],[3.409288,6.408894],[3.355219,6.396335],[2.90488,6.391888],[2.709604,6.36882],[2.731428,6.630785],[2.789703,6.738933],[2.732744,6.778647],[2.747873,6.928291],[2.72064,6.986536],[2.792603,7.041275],[2.750653,7.105764],[2.784869,7.159227],[2.74946,7.261153],[2.747578,7.417439],[2.798191,7.482555],[2.730281,7.580174],[2.732406,7.772228],[2.675814,7.893206],[2.695501,7.930818],[2.754102,8.211312],[2.698124,8.307178],[2.706947,8.420317],[2.761885,8.522547],[2.750379,8.700289],[2.728413,8.772683],[2.788786,8.970237],[2.780915,9.065208],[2.984103,9.072345],[3.083539,9.097911],[3.158344,9.291413],[3.133371,9.426089],[3.271623,9.659],[3.348598,9.685226],[3.329655,9.798798],[3.456388,9.861171],[3.529646,9.862082],[3.595776,9.945736],[3.611497,10.062435],[3.678951,10.169748],[3.584172,10.278366],[3.646044,10.435143],[3.687709,10.456362],[3.786002,10.405383],[3.8517,10.605787],[3.840979,10.704922],[3.797159,10.735463],[3.749201,10.837516],[3.771224,10.93077],[3.716902,11.024343],[3.691927,11.128139],[3.495874,11.292326],[3.56596,11.616995],[3.605074,11.696975],[3.679195,11.758454],[3.622576,11.852487],[3.61767,11.916888],[3.667939,11.99166],[3.630781,12.11712],[3.657529,12.268548],[3.642556,12.520149],[3.942208,12.76419],[4.096463,12.996067],[4.129665,13.148302],[4.130281,13.472634],[4.212103,13.484127],[4.464738,13.703427],[4.870761,13.782478],[4.909519,13.748611],[5.270488,13.746101],[5.35497,13.844792],[5.526512,13.892007],[5.753158,13.794416],[6.084768,13.679957],[6.149414,13.642835],[6.283037,13.666857],[6.433632,13.591984],[6.677834,13.355463],[6.818586,13.117972],[6.928008,12.989853],[7.063073,13.000966],[7.151635,13.032304],[7.227887,13.110927],[7.426315,13.110494],[7.804099,13.33424],[8.067595,13.302458],[8.255923,13.207561],[8.415629,13.05485],[8.499374,13.067705],[8.564825,13.038271],[8.648481,12.938562],[8.956509,12.839922],[9.159983,12.833766],[9.305603,12.811205],[9.390266,12.823123],[9.650239,12.803607],[9.996533,13.163276],[10.207086,13.267818],[10.466419,13.282501],[10.669226,13.356901],[11.132577,13.375073],[11.395575,13.370079],[11.539631,13.347958],[11.695594,13.287005],[11.875435,13.249657],[12.104239,13.09346],[12.256981,13.114476],[12.287055,13.091961],[12.470857,13.063332],[12.55415,13.161355],[12.589194,13.277809],[12.676494,13.274291],[12.78741,13.361183],[12.874446,13.470367],[13.026216,13.530968],[13.20834,13.526626],[13.248272,13.613017],[13.341101,13.710021],[13.634547,13.710678],[13.889293,13.346123],[14.085435,13.078056],[14.183825,12.529738],[14.17308,12.405099],[14.23111,12.359889],[14.331361,12.369403],[14.471932,12.351458],[14.557986,12.241094],[14.678668,12.151195],[14.623024,12.017862],[14.657855,11.95501],[14.607347,11.869814],[14.610156,11.780306],[14.552478,11.717728],[14.640045,11.637633],[14.637239,11.528798],[14.451527,11.458627],[14.424033,11.409377],[14.248029,11.332401],[14.209159,11.28358],[14.099639,11.251909],[13.974329,11.302997],[13.884984,11.125968],[13.791492,11.006275],[13.694741,10.966833],[13.674624,10.858866],[13.608165,10.764787],[13.52994,10.599565],[13.553229,10.489459],[13.527234,10.462906],[13.509507,10.30734],[13.417121,10.132173],[13.315537,10.109896],[13.250367,10],[13.225207,9.887774],[13.297945,9.796989],[13.265844,9.754754],[13.247878,9.604168],[13.219328,9.542589],[13.043342,9.505481],[12.854769,9.384972],[12.90244,9.352381],[12.903889,9.232388],[12.878726,9.150407],[12.878328,9.031342],[12.790296,8.917268],[12.808941,8.789384],[12.713238,8.730866],[12.710772,8.686963],[12.588799,8.597906],[12.480326,8.622396],[12.411486,8.483343],[12.237027,8.428885],[12.2255,8.375038],[12.257716,8.170435],[12.206108,8.088713],[12.221887,8],[12.152971,7.886088],[12.096502,7.83629],[12.042321,7.731847],[12.022875,7.638774],[12.039431,7.523089],[11.950711,7.487838],[11.849199,7.372818],[11.804248,7.27753],[11.827908,7.061654],[11.71543,7.054757],[11.626058,6.972342],[11.574129,6.852613],[11.549453,6.658053],[11.520921,6.609883],[11.433358,6.599607],[11.429532,6.530623],[11.100942,6.541077],[11.104791,6.682182],[10.919593,6.708948],[10.910949,6.767983],[10.818045,6.85579],[10.845936,6.928679],[10.768116,6.954013],[10.681619,7.041804],[10.601228,7.075843],[10.543153,6.941086],[10.471073,6.915554],[10.217493,6.891087],[10.154898,7.03955],[9.972618,6.874411],[9.879952,6.769824],[9.796952,6.786587],[9.709181,6.516276],[9.597155,6.52829],[9.542637,6.447016],[9.466175,6.449895],[9.433845,6.315772],[9.353183,6.351203],[9.265648,6.184101],[9.213355,6.169007],[9.152337,6.090145],[8.841041,5.824076],[8.869446,5.793393],[8.822163,5.689244],[8.904513,5.567508],[8.838064,5.439343],[8.814024,5.29102],[8.816417,5.184829],[8.721836,5.0738],[8.699067,4.990426],[8.604893,4.884876],[8.629453,4.826164],[8.539079,4.793683],[8.527482,4.726633]]]},"properties":{"name":"尼日利亚","name_en":"NIGERIA","id":"NGA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.546944,51.092804],[2.86675,51.210888],[3.076833,51.304333],[3.369472,51.374611],[3.364639,51.298862],[3.530056,51.250694],[3.604028,51.303585],[3.790917,51.26236],[3.913028,51.209751],[4.117889,51.269638],[4.238889,51.352165],[4.248806,51.376221],[4.432972,51.377251],[4.378139,51.444473],[4.540361,51.482388],[4.556695,51.427502],[4.829778,51.423695],[5.076528,51.392277],[5.22475,51.270248],[5.4185,51.267277],[5.485167,51.302139],[5.604722,51.198917],[5.79425,51.176945],[5.818389,51.129055],[5.757027,50.955193],[5.6465,50.873138],[5.751681,50.744003],[6.025333,50.75425],[6.112583,50.723057],[6.227889,50.496471],[6.376917,50.450085],[6.278,50.268806],[6.16825,50.225666],[6.138028,50.132915],[6.02025,50.184696],[5.904611,50.119999],[5.780139,49.960693],[5.747889,49.844029],[5.900055,49.669418],[5.816611,49.546612],[5.649917,49.55022],[5.480139,49.503029],[5.433528,49.594002],[5.307389,49.673752],[5.164,49.695526],[4.990055,49.801361],[4.876333,49.795471],[4.884639,49.903694],[4.799056,49.957111],[4.843917,50.099693],[4.705056,50.098972],[4.680639,49.999474],[4.456695,49.941696],[4.307639,49.970696],[4.194778,49.960888],[4.142556,50.028889],[4.231139,50.078945],[4.130222,50.13475],[4.217611,50.261196],[4.020805,50.355389],[3.659694,50.365639],[3.659583,50.453724],[3.292972,50.522278],[3.214695,50.712639],[3.139944,50.790722],[2.795445,50.726501],[2.7175,50.816002],[2.635861,50.816944],[2.629583,50.951611],[2.546944,51.092804]]]},"properties":{"name":"比利时","name_en":"Belgium","id":"BEL"}}, + {"type":"Feature","geometry":null,"properties":{"name":"蒙特塞拉特","name_en":"Montserrat","id":"MSR"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.213278,53.238529],[7.253111,53.333332],[7.001667,53.361057],[7.034056,53.489887],[7.180389,53.640278],[7.339584,53.689919],[7.527278,53.673111],[7.8665,53.717804],[8.035361,53.704529],[8.16425,53.549305],[8.066305,53.476776],[8.205527,53.405972],[8.313056,53.455139],[8.308111,53.619778],[8.458944,53.559723],[8.575639,53.545696],[8.485222,53.682999],[8.556501,53.818195],[8.665055,53.89336],[8.779612,53.839668],[8.912723,53.831223],[8.960305,53.902832],[8.846139,54.036251],[8.978528,54.017471],[8.972861,54.13414],[8.811306,54.176888],[8.857028,54.261585],[8.584084,54.322083],[8.642138,54.399834],[8.897862,54.416721],[8.967444,54.514889],[8.820056,54.661999],[8.717139,54.725304],[8.611972,54.844055],[8.651444,54.91],[8.769333,54.913807],[9.154583,54.872723],[9.275556,54.819084],[9.472139,54.847443],[9.561389,54.854832],[9.959945,54.782028],[10.033778,54.659695],[10.01225,54.476276],[10.134945,54.486721],[10.23075,54.416195],[10.393306,54.426888],[10.615666,54.361416],[10.710639,54.306305],[10.933806,54.383862],[11.077556,54.377583],[11.099806,54.200165],[10.755834,54.037666],[10.894639,53.951389],[11.090972,54.012611],[11.178416,54.014084],[11.251695,53.939335],[11.452778,53.911221],[11.492639,53.992111],[11.586083,54.040249],[11.691139,54.153778],[11.854417,54.144638],[12.139916,54.191387],[12.344528,54.300972],[12.501306,54.475029],[12.686306,54.444138],[12.814611,54.350193],[12.960111,54.424137],[13.022778,54.41],[13.124666,54.272999],[13.291777,54.232666],[13.436722,54.129971],[13.698083,54.149502],[13.802861,54.103169],[13.760056,54.027584],[13.912334,53.927917],[13.811167,53.858028],[13.969472,53.773277],[14.268666,53.696529],[14.450723,53.263557],[14.378389,53.201695],[14.342334,53.052055],[14.147861,52.963417],[14.123,52.84111],[14.350972,52.753918],[14.462444,52.663666],[14.638223,52.577332],[14.608889,52.46611],[14.533889,52.391251],[14.598639,52.274334],[14.690861,52.258141],[14.690166,52.105473],[14.757167,52.069027],[14.689695,51.901054],[14.587694,51.837028],[14.657889,51.733223],[14.753472,51.660557],[14.735778,51.525585],[14.962083,51.452915],[14.962278,51.35947],[15.028167,51.293388],[14.991028,51.120918],[14.892917,50.945389],[14.825222,50.874001],[14.77425,50.822556],[14.618611,50.862694],[14.649222,50.931667],[14.498584,51.030582],[14.312834,51.058887],[14.260278,50.988529],[14.394,50.943695],[14.207084,50.856583],[13.986722,50.819305],[13.853,50.728333],[13.557972,50.71439],[13.4655,50.600861],[13.399361,50.63736],[13.19825,50.506138],[13.061667,50.500389],[12.942056,50.407276],[12.823472,50.457863],[12.698611,50.400833],[12.509973,50.390472],[12.333805,50.232918],[12.210694,50.270222],[12.161083,50.226501],[12.211445,50.109028],[12.467195,49.998001],[12.551528,49.911888],[12.469528,49.789471],[12.403167,49.754528],[12.521167,49.689919],[12.575,49.560833],[12.64375,49.521751],[12.660333,49.433556],[12.784083,49.34539],[12.948916,49.343777],[13.175305,49.141193],[13.283139,49.120277],[13.400139,49.050083],[13.404278,48.986305],[13.492861,48.942444],[13.583472,48.968582],[13.676251,48.880028],[13.735666,48.882526],[13.842389,48.773666],[13.805722,48.580502],[13.71375,48.516583],[13.5175,48.595501],[13.453362,48.512943],[13.413389,48.378723],[13.249556,48.293362],[13.019167,48.258804],[12.877778,48.204445],[12.761833,48.128807],[12.760167,48.073029],[12.855722,48.017834],[13.011945,47.850082],[12.944111,47.756748],[13.075528,47.689835],[13.099361,47.636665],[13.005,47.473446],[12.781195,47.583637],[12.743055,47.678055],[12.600889,47.671665],[12.500417,47.626915],[12.416945,47.698891],[12.165277,47.701889],[12.135639,47.609749],[11.913584,47.6185],[11.607,47.586113],[11.588333,47.531361],[11.419306,47.514305],[11.226334,47.404083],[10.987167,47.401554],[10.901167,47.533722],[10.797722,47.520695],[10.607472,47.568943],[10.429472,47.505722],[10.473695,47.442665],[10.342778,47.319668],[10.230556,47.280529],[10.1005,47.434418],[9.957611,47.537334],[9.544333,47.542557],[9.25225,47.662056],[9.013389,47.684223],[8.895167,47.65564],[8.816,47.721806],[8.720278,47.736168],[8.569472,47.805332],[8.422694,47.708084],[8.433389,47.573166],[8.202806,47.623112],[8.020166,47.553806],[7.904444,47.586582],[7.670222,47.53989],[7.580917,47.58239],[7.521139,47.668835],[7.528666,47.781361],[7.611055,48],[7.581028,48.121029],[7.669139,48.219944],[7.843528,48.645084],[8.108723,48.825554],[8.207139,48.971054],[7.943278,49.056473],[7.678972,49.047359],[7.567722,49.081276],[7.434166,49.18214],[7.298194,49.11536],[7.050833,49.117527],[7.014861,49.189499],[6.852306,49.219807],[6.732139,49.168083],[6.669194,49.280224],[6.591916,49.318001],[6.555306,49.42186],[6.374583,49.458832],[6.364528,49.570667],[6.515306,49.728001],[6.518556,49.81189],[6.408444,49.819054],[6.263,49.883778],[6.142334,50],[6.138028,50.132915],[6.16825,50.225666],[6.278,50.268806],[6.376917,50.450085],[6.227889,50.496471],[6.112583,50.723057],[6.025333,50.75425],[6.025778,50.849609],[6.085084,50.924305],[5.904722,50.999805],[5.865639,51.050026],[6.0985,51.138889],[6.076722,51.24575],[6.225333,51.361195],[6.208416,51.524612],[6.098333,51.605141],[6.112833,51.660557],[5.960111,51.752804],[5.953722,51.814026],[6.059472,51.853195],[6.302611,51.867805],[6.409972,51.828056],[6.549583,51.885639],[6.787861,51.927166],[6.827306,51.993027],[6.75325,52.033443],[6.762667,52.122166],[6.856889,52.124722],[6.990333,52.229111],[7.076083,52.356304],[6.942389,52.439499],[6.702389,52.489056],[6.683445,52.554863],[6.7795,52.652363],[7.056472,52.643501],[7.089417,52.850777],[7.216583,53.004971],[7.213278,53.238529]]],[[[13.377444,54.553055],[13.279388,54.565777],[13.297,54.674667],[13.391666,54.651333],[13.467778,54.571388],[13.642333,54.585724],[13.671333,54.521973],[13.57275,54.469612],[13.684195,54.350334],[13.509277,54.34486],[13.320723,54.237999],[13.115417,54.334251],[13.232889,54.369888],[13.223056,54.511639],[13.377444,54.553055]]],[[[14.224361,53.926529],[14.212889,53.864777],[14.037833,53.873249],[13.897555,53.972168],[14.04825,53.994083],[14.224361,53.926529]]],[[[11.079972,54.447083],[11.068861,54.535721],[11.244695,54.497276],[11.315444,54.402973],[11.079972,54.447083]]]]},"properties":{"name":"德国","name_en":"GERMANY","id":"DEU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.966637,8.979278],[81.148582,8.764389],[81.226692,8.6475],[81.206108,8.464306],[81.283112,8.503166],[81.352974,8.490916],[81.43586,8.145722],[81.491806,8.009778],[81.565834,7.9275],[81.592972,7.829972],[81.713142,7.73975],[81.793198,7.5985],[81.825249,7.436555],[81.868385,7.329694],[81.860695,7.093667],[81.881279,7.026667],[81.827919,6.758639],[81.700302,6.481972],[81.559975,6.36125],[81.328499,6.194472],[81.201225,6.160778],[81.133583,6.117417],[81.01667,6.107083],[80.82547,6.041472],[80.794586,6.012861],[80.58683,5.916833],[80.471138,5.935917],[80.241943,6.008555],[80.119194,6.116889],[80.061752,6.192306],[79.98114,6.5075],[79.868698,6.805666],[79.843086,6.933333],[79.871246,6.975555],[79.81897,7.193417],[79.845642,7.270555],[79.80275,7.482584],[79.806198,7.651694],[79.742638,8],[79.833779,8.139611],[79.802887,8.226666],[79.836197,8.301111],[79.867836,8.527722],[79.914192,8.545999],[79.953247,8.730139],[79.92022,8.817083],[79.912025,8.927361],[80.040336,9.013278],[80.117302,9.20725],[80.127777,9.290584],[80.067642,9.32875],[80.059166,9.395389],[80.186081,9.482722],[80.079109,9.584473],[80.052025,9.645667],[79.943665,9.691112],[79.909859,9.758667],[79.977196,9.803278],[80.253914,9.8185],[80.365669,9.660334],[80.668587,9.421889],[80.811691,9.290944],[80.888832,9.116806],[80.966637,8.979278]]]},"properties":{"name":"斯里兰卡","name_en":"SRILANKA","id":"LKA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-59.130108,-52.225475],[-59.404209,-52.129559],[-59.420414,-52.239487],[-59.580086,-52.262009],[-59.642334,-52.162781],[-59.582359,-52.080646],[-59.590813,-51.906357],[-59.5028,-51.846916],[-59.385425,-51.847309],[-59.207695,-51.722569],[-59.040108,-51.707581],[-59.011616,-51.671707],[-59.160305,-51.599094],[-59.027954,-51.49419],[-59.000954,-51.393467],[-58.869427,-51.392704],[-58.830372,-51.297714],[-58.711983,-51.333195],[-58.526135,-51.30447],[-58.413536,-51.323971],[-58.267456,-51.399544],[-57.939236,-51.367878],[-57.850533,-51.418331],[-57.818909,-51.553726],[-57.991966,-51.507542],[-58.143364,-51.561577],[-57.776917,-51.625736],[-57.819046,-51.725399],[-58.225922,-51.795406],[-58.237534,-51.847725],[-58.384781,-51.90332],[-58.633179,-51.908402],[-58.634159,-52.046028],[-58.97895,-52.091934],[-59.132721,-51.995674],[-59.053444,-52.202866],[-59.130108,-52.225475]]],[[[-60.685223,-51.987488],[-60.564354,-51.990261],[-60.280735,-51.760117],[-60.373379,-51.721294],[-60.435288,-51.777576],[-60.534538,-51.78199],[-60.633976,-51.733486],[-60.385429,-51.679493],[-60.284183,-51.686768],[-60.225525,-51.616566],[-60.508759,-51.532105],[-60.413612,-51.461693],[-60.594547,-51.44128],[-60.52927,-51.372692],[-60.242088,-51.498043],[-60.082539,-51.490299],[-60.069248,-51.426937],[-59.889347,-51.388199],[-59.731316,-51.464924],[-59.5868,-51.440895],[-59.446533,-51.462532],[-59.405304,-51.345818],[-59.242874,-51.395607],[-59.274239,-51.48111],[-59.434891,-51.639629],[-59.533985,-51.637085],[-59.627224,-51.760597],[-59.744461,-51.822529],[-59.854206,-51.966179],[-59.987595,-52.00745],[-60.267387,-51.998577],[-60.257217,-52.092663],[-60.361881,-52.176094],[-60.462208,-52.176907],[-60.613037,-52.260452],[-60.686096,-52.214954],[-60.713516,-52.116795],[-60.833755,-52.130581],[-60.944313,-52.090447],[-60.685223,-51.987488]]],[[[-61.058369,-51.937428],[-61.136631,-51.836639],[-61.021744,-51.785065],[-60.934212,-51.825344],[-60.880783,-51.92577],[-60.995888,-51.990345],[-61.058369,-51.937428]]],[[[-60.190159,-51.408211],[-60.281021,-51.376751],[-60.086586,-51.308006],[-60.079281,-51.385258],[-60.190159,-51.408211]]]]},"properties":{"name":"马尔维纳斯群岛(阿根、英争议)(英称福克兰群岛)","name_en":"IS.MALVINAS(CLAIMED BY ARG.&U.K.) (FALKLAND IS.)","id":"FLK"}}, + {"type":"Feature","geometry":null,"properties":{"name":"皮特凯恩","name_en":"PITCAIRN","id":"PCN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-56.480251,1.941472],[-56.591675,1.915002],[-56.723507,1.919642],[-56.800163,1.863873],[-56.914501,1.91795],[-56.986225,1.910692],[-57.122406,2.014143],[-57.253845,1.94511],[-57.302399,1.990076],[-57.423721,1.904481],[-57.544678,1.700689],[-57.639664,1.689638],[-57.770401,1.718252],[-57.817326,1.678573],[-57.933014,1.644896],[-58,1.665301],[-58.008511,1.500673],[-58.142136,1.507995],[-58.319176,1.591944],[-58.376362,1.544452],[-58.390087,1.465866],[-58.502628,1.444474],[-58.467083,1.350642],[-58.507111,1.264406],[-58.692009,1.288506],[-58.746651,1.198208],[-58.796116,1.175265],[-58.90361,1.233826],[-58.913772,1.29851],[-59.15567,1.34835],[-59.25275,1.397388],[-59.336929,1.51743],[-59.378975,1.518101],[-59.548702,1.728509],[-59.618408,1.729299],[-59.680107,1.783654],[-59.752274,1.910222],[-59.722469,2.236561],[-59.908672,2.392423],[-59.931755,2.563535],[-59.988399,2.677524],[-59.982208,2.928601],[-59.959,3.062944],[-59.899025,3.164808],[-59.869877,3.270085],[-59.800755,3.352131],[-59.834896,3.440711],[-59.804379,3.495798],[-59.865101,3.560974],[-59.84499,3.603479],[-59.661907,3.711654],[-59.66592,3.776826],[-59.593632,3.795994],[-59.577999,3.891215],[-59.516312,3.939903],[-59.655487,4.077602],[-59.628399,4.137568],[-59.713608,4.170061],[-59.717998,4.29601],[-59.671257,4.376557],[-59.786167,4.443121],[-60.160118,4.518154],[-60.16016,4.566962],[-60.080876,4.607619],[-60.029011,4.708317],[-60.033901,4.788908],[-59.969417,5.073079],[-60.085426,5.148698],[-60.121933,5.243932],[-60.212326,5.264453],[-60.329174,5.199076],[-60.438046,5.176927],[-60.571815,5.189377],[-60.661682,5.221684],[-60.74411,5.209053],[-61.341549,5.884916],[-61.321731,5.976629],[-61.25217,6.116779],[-61.19294,6.125062],[-61.116566,6.202493],[-61.098583,6.262039],[-61.156727,6.324182],[-61.128258,6.450874],[-61.211571,6.573552],[-61.165306,6.687773],[-60.999878,6.728868],[-60.961922,6.713494],[-60.795097,6.800455],[-60.736336,6.754724],[-60.638012,6.829365],[-60.485924,6.883407],[-60.431152,6.937792],[-60.359009,6.942416],[-60.354885,7.003864],[-60.26543,7.076883],[-60.373222,7.172708],[-60.465176,7.187464],[-60.546459,7.126907],[-60.647652,7.224684],[-60.607143,7.339094],[-60.731052,7.533752],[-60.637848,7.58463],[-60.526531,7.81613],[-60.351086,7.828707],[-60.112366,8.030521],[-59.997864,8.068531],[-59.984154,8.159368],[-59.936058,8.217115],[-59.842701,8.233445],[-59.806301,8.304035],[-59.995861,8.535299],[-59.997871,8.557567],[-59.855545,8.376879],[-59.779503,8.340066],[-59.757519,8.401295],[-59.299599,8.145272],[-59.112667,8.02145],[-59.065552,7.954308],[-58.85133,7.774278],[-58.744022,7.630472],[-58.672093,7.610239],[-58.476528,7.351345],[-58.466087,7.124435],[-58.479496,7.012125],[-58.550167,6.936289],[-58.59203,6.79748],[-58.612995,6.616428],[-58.563858,6.640471],[-58.473255,6.811151],[-58.412354,6.871654],[-58.333065,6.895006],[-58.148773,6.835972],[-58.039875,6.818614],[-57.857998,6.660056],[-57.744202,6.545288],[-57.639851,6.472836],[-57.530678,6.27791],[-57.45372,6.325026],[-57.336506,6.266688],[-57.182041,6.111328],[-57.145504,5.998998],[-57.141129,5.816273],[-57.144067,5.67347],[-57.184519,5.544529],[-57.257183,5.477449],[-57.260929,5.402171],[-57.330596,5.326148],[-57.240328,5.270838],[-57.175155,5.174053],[-57.273289,5.177783],[-57.321607,5.085654],[-57.292766,5.044998],[-57.408504,4.99166],[-57.667636,5.008351],[-57.833335,4.926891],[-57.923089,4.809968],[-57.83161,4.682296],[-57.838082,4.618462],[-57.959983,4.3801],[-57.945959,4.340552],[-57.988894,4.239487],[-58.056641,4.160741],[-58.01047,3.97313],[-57.923305,3.904114],[-57.84175,3.7672],[-57.817154,3.656118],[-57.739914,3.626841],[-57.648866,3.548912],[-57.627722,3.455914],[-57.6644,3.387887],[-57.477974,3.333537],[-57.305061,3.373516],[-57.29459,3.129192],[-57.213672,3.068398],[-57.225842,2.902034],[-57.207619,2.841797],[-57.109787,2.770451],[-57.059872,2.644254],[-56.996029,2.553908],[-56.994816,2.503534],[-56.825649,2.270658],[-56.819576,2.204659],[-56.707043,2.033958],[-56.555508,2.009795],[-56.480251,1.941472]]],[[[-58.56052,6.727367],[-58.519489,6.879983],[-58.474419,6.877604],[-58.56052,6.727367]]],[[[-58.50943,6.904744],[-58.426201,7.034512],[-58.390518,7.004378],[-58.50943,6.904744]]]]},"properties":{"name":"圭亚那","name_en":"GUYANA","id":"GUY"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.698433,11.07388],[-85.609756,11.216819],[-85.520577,11.162541],[-85.357674,11.124355],[-85.206848,11.049742],[-84.914108,10.941321],[-84.680985,11.079316],[-84.488121,11.000677],[-84.426132,10.954812],[-84.363762,10.992626],[-84.326645,10.912962],[-84.226738,10.869056],[-84.22879,10.801864],[-84.126655,10.769733],[-84.008095,10.764044],[-83.935989,10.708432],[-83.792694,10.76838],[-83.67791,10.793752],[-83.693535,10.937606],[-83.610962,10.849256],[-83.557823,10.668111],[-83.428596,10.400169],[-83.114548,10.008715],[-83.031754,9.995268],[-83.013374,9.934473],[-82.780533,9.654745],[-82.628998,9.632731],[-82.563103,9.566999],[-82.611656,9.502308],[-82.693931,9.508739],[-82.7454,9.57808],[-82.853714,9.615466],[-82.937561,9.473368],[-82.936188,9.103702],[-82.741608,8.981502],[-82.715706,8.925186],[-82.852463,8.853965],[-82.917137,8.744999],[-82.82785,8.626787],[-82.858879,8.44946],[-82.928246,8.434606],[-83.050148,8.339612],[-82.937759,8.269567],[-82.891182,8.111118],[-82.896828,8.032975],[-82.907402,8.108037],[-82.977646,8.235364],[-83.141327,8.349911],[-83.09893,8.45247],[-83.145561,8.515991],[-83.14064,8.585712],[-83.334076,8.677285],[-83.379334,8.73134],[-83.474388,8.692978],[-83.437874,8.625309],[-83.288315,8.531821],[-83.294975,8.371211],[-83.439453,8.431993],[-83.56781,8.438021],[-83.743919,8.608003],[-83.715225,8.672541],[-83.655579,8.69341],[-83.612678,8.952724],[-83.628571,9.04349],[-83.782135,9.188356],[-83.902473,9.275899],[-84.087143,9.368005],[-84.255127,9.471023],[-84.47757,9.525939],[-84.535797,9.516808],[-84.616554,9.576889],[-84.673233,9.658486],[-84.636795,9.778238],[-84.703667,9.864102],[-84.744926,9.96275],[-84.852509,9.984711],[-85.085106,10.160644],[-85.211204,10.174849],[-85.244858,10.104391],[-85.115845,9.972708],[-85.056038,9.971144],[-84.935715,9.884528],[-84.900452,9.80391],[-84.961136,9.723008],[-85.068977,9.647669],[-85.094818,9.568435],[-85.203537,9.671162],[-85.274963,9.780372],[-85.364571,9.837344],[-85.629311,9.885548],[-85.789955,10.089196],[-85.83783,10.197399],[-85.858307,10.341015],[-85.777351,10.44657],[-85.79921,10.501471],[-85.6558,10.590613],[-85.634277,10.634109],[-85.686355,10.799423],[-85.927757,10.897052],[-85.820854,10.940354],[-85.725288,10.930593],[-85.756424,11.022374],[-85.698433,11.07388]]]},"properties":{"name":"哥斯达黎加","name_en":"COSTA RICA","id":"CRI"}}, + {"type":"Feature","geometry":null,"properties":{"name":"库克群岛","name_en":"COOK ISLANDS","id":"COK"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.267302,46.117104],[20.358917,46.168056],[20.442389,46.147388],[20.55825,46.175251],[20.636223,46.136055],[20.857584,46.285667],[21.071583,46.247944],[21.173195,46.300499],[21.218445,46.405083],[21.299473,46.41589],[21.270889,46.50386],[21.333166,46.625557],[21.415361,46.622223],[21.540056,46.727055],[21.545389,46.842693],[21.608028,46.863804],[21.667084,47.028194],[21.793222,47.112473],[21.874222,47.206444],[21.887056,47.306026],[22.026056,47.394112],[22.022194,47.508278],[22.197056,47.630695],[22.331667,47.759445],[22.433445,47.743862],[22.479999,47.806862],[22.65661,47.778278],[22.778944,47.89061],[22.906,47.959057],[23.03814,47.991501],[23.129639,48.087944],[23.278639,48.087387],[23.403166,48],[23.766445,47.997334],[23.890778,47.934666],[23.974527,47.964279],[24.234693,47.905888],[24.476778,47.969891],[24.633472,47.946751],[24.727388,47.841331],[24.822971,47.81839],[24.910055,47.722332],[25.120666,47.757916],[25.235666,47.883194],[25.487112,47.945362],[25.834972,47.983002],[26.199638,48.000057],[26.324638,48.155613],[26.47875,48.222805],[26.623611,48.2505],[26.806776,48.254253],[26.955359,48.137775],[27.030018,48.124352],[27.200195,47.901856],[27.214844,47.821209],[27.314922,47.643333],[27.424568,47.584026],[27.476286,47.485062],[27.569775,47.449085],[27.633261,47.303246],[27.728165,47.295414],[27.798065,47.14193],[28.081345,46.989815],[28.125244,46.8531],[28.251585,46.611618],[28.208956,46.50589],[28.25798,46.461529],[28.192288,46.3232],[28.106605,46.222298],[28.143055,46.179649],[28.086071,46.009232],[28.105808,45.859272],[28.172953,45.648014],[28.092764,45.598167],[28.215105,45.466881],[28.354445,45.323639],[28.573223,45.25536],[28.736584,45.229916],[28.826834,45.336334],[28.931444,45.284863],[28.996805,45.355972],[29.249195,45.429863],[29.429777,45.444084],[29.570723,45.406944],[29.657417,45.343807],[29.675722,45.216915],[29.678694,45.139832],[29.627806,44.898388],[29.564277,44.834499],[29.175693,44.789391],[29.043444,44.723251],[28.835472,44.481361],[28.634556,44.310471],[28.653223,44.059113],[28.677111,44.009804],[28.606138,43.872665],[28.583778,43.737362],[28.477444,43.735249],[28.241694,43.774918],[28.006027,43.851196],[27.929277,44.00861],[27.845917,43.970112],[27.720972,43.969387],[27.619167,44.023861],[27.408638,44.028027],[27.286528,44.133026],[27.153473,44.148861],[26.904667,44.141224],[26.783445,44.093166],[26.609501,44.063446],[26.31864,44.039833],[26.136612,43.989529],[26.06214,43.913944],[25.959888,43.869057],[25.78861,43.720112],[25.584028,43.654194],[25.371555,43.62825],[25.265444,43.68922],[25.101584,43.693027],[24.993889,43.738029],[24.731527,43.716835],[24.551889,43.767502],[24.345278,43.702057],[24.180195,43.689751],[23.990055,43.751667],[23.894527,43.759472],[23.71875,43.814724],[23.623028,43.800083],[23.444334,43.862362],[23.262722,43.851418],[23.115612,43.811417],[22.886694,43.844917],[22.851973,43.896057],[22.892166,43.987389],[23.012167,44.023556],[22.939028,44.108612],[22.676144,44.21545],[22.67008,44.284798],[22.566397,44.303169],[22.465515,44.443966],[22.582167,44.548164],[22.693169,44.516361],[22.712875,44.599995],[22.580832,44.632389],[22.464455,44.714977],[22.27734,44.628353],[22.180405,44.480103],[22.042631,44.537945],[21.990036,44.633564],[21.629421,44.659836],[21.552271,44.769863],[21.397186,44.778271],[21.367008,44.866585],[21.559759,44.888809],[21.546654,44.930595],[21.40622,44.977875],[21.456003,45.041126],[21.482658,45.191627],[21.202452,45.264881],[21.176018,45.32515],[20.950686,45.373135],[20.766083,45.612164],[20.802914,45.738106],[20.700541,45.750069],[20.660127,45.829185],[20.404493,45.964695],[20.267302,46.117104]]]},"properties":{"name":"罗马尼亚","name_en":"ROMANIA","id":"ROM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[144.62056,13.437417],[144.76709,13.479667],[144.862701,13.652333],[144.911606,13.599334],[144.921051,13.516806],[144.793808,13.423667],[144.763306,13.278889],[144.674301,13.252111],[144.62056,13.437417]]]},"properties":{"name":"北马里亚纳","name_en":"NORTHERN MARIANA ISLANDS","id":"MNP"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.331476,-29.577871],[29.295099,-29.630909],[29.183498,-29.665516],[29.134035,-29.853235],[29.174768,-29.914503],[28.848639,-30.09454],[28.68417,-30.138027],[28.555681,-30.118107],[28.417265,-30.14097],[28.31644,-30.253115],[28.221047,-30.295361],[28.278935,-30.35499],[28.158861,-30.453718],[28.162355,-30.559061],[28.083595,-30.649305],[27.926603,-30.640964],[27.765417,-30.599461],[27.620197,-30.482807],[27.571276,-30.400795],[27.47546,-30.31086],[27.394827,-30.318567],[27.378599,-30.200623],[27.312315,-30.068523],[27.238377,-30.00544],[27.123323,-29.755333],[27.029068,-29.646015],[27.162746,-29.556047],[27.275549,-29.526136],[27.407375,-29.412704],[27.414375,-29.36746],[27.545919,-29.253979],[27.529251,-29.216652],[27.682646,-29.074057],[27.660343,-29.040596],[27.773493,-28.922087],[27.875183,-28.91486],[27.941822,-28.851755],[28.039974,-28.872669],[28.06484,-28.811581],[28.171726,-28.702597],[28.370455,-28.695318],[28.407772,-28.624048],[28.587454,-28.602716],[28.653728,-28.572058],[28.714657,-28.66769],[28.806705,-28.701939],[28.828716,-28.757931],[28.915852,-28.795219],[29.000067,-28.91365],[29.220833,-29.030283],[29.269436,-29.090086],[29.335032,-29.08956],[29.465761,-29.352537],[29.428307,-29.431124],[29.30431,-29.493626],[29.331476,-29.577871]]]},"properties":{"name":"莱索托","name_en":"Lesotho","id":"LSO"}}, + {"type":"Feature","geometry":null,"properties":{"name":"托克劳","name_en":"TOKELAU","id":"TKL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[52.441444,41.765446],[52.959415,42.103249],[53.420193,42.258804],[53.586113,42.292667],[53.922474,42.333473],[54.189057,42.341473],[54.483612,42.208721],[54.835998,42.022388],[54.957722,41.909637],[54.968529,41.801445],[55.07122,41.708778],[55.146057,41.576637],[55.28336,41.415806],[55.466141,41.275696],[55.779804,41.294693],[55.867416,41.322056],[56.00061,41.318054],[56.432529,41.299915],[57.042415,41.263222],[57.086555,41.374889],[57.031639,41.445862],[57.01989,41.586418],[56.972195,41.672359],[56.967583,41.804554],[57.001526,41.896],[57.129971,41.943584],[57.214111,42.068417],[57.312805,42.137806],[57.521694,42.174084],[57.67561,42.151974],[57.835472,42.172943],[57.847195,42.246307],[57.928528,42.24514],[57.947304,42.371639],[57.915138,42.457222],[58.053276,42.504471],[58.134724,42.442528],[58.201195,42.467388],[58.323444,42.448082],[58.306473,42.548248],[58.154778,42.609722],[58.297165,42.689445],[58.472668,42.650307],[58.59536,42.665943],[58.702499,42.726528],[58.934696,42.54364],[59.047833,42.510723],[59.169472,42.528027],[59.277443,42.438835],[59.270638,42.39286],[59.419251,42.276554],[59.717609,42.285973],[59.827972,42.306305],[60.039139,42.195915],[59.970196,42.128223],[60.029999,42.009724],[60.045056,41.916416],[60.258389,41.815418],[60.231472,41.765751],[60.083637,41.809334],[60.068584,41.7285],[60.16375,41.609528],[60.111889,41.548138],[60.093723,41.43211],[60.131249,41.394833],[60.505585,41.216473],[61.046055,41.234695],[61.171333,41.173248],[61.299805,41.145222],[61.379917,41.16489],[61.421554,41.285889],[61.626888,41.264999],[61.882668,41.118805],[61.97089,41.019138],[62.000111,40.820332],[62.113083,40.596111],[62.207722,40.50853],[62.349472,40.438305],[62.333248,40.383446],[62.393166,40.31078],[62.413776,40.1735],[62.3965,40.099278],[62.487946,39.951389],[62.797974,39.775749],[63.170418,39.574112],[63.539139,39.383583],[63.745388,39.206722],[64.177109,38.959194],[64.331024,38.985863],[64.522835,38.838223],[64.826195,38.679749],[65.025024,38.612473],[65.300552,38.408501],[65.481362,38.319],[65.797447,38.235863],[65.851501,38.274082],[66.245529,38.154026],[66.400002,38.032471],[66.496559,38.041862],[66.620193,38.014027],[66.676636,37.961971],[66.548226,37.791779],[66.538277,37.579472],[66.637054,37.483944],[66.63958,37.439529],[66.530746,37.402973],[66.52597,37.347584],[66.300415,37.323334],[66.132667,37.387722],[66.098503,37.429443],[65.877052,37.472611],[65.798309,37.538223],[65.697586,37.528362],[65.643692,37.431137],[65.624191,37.319611],[65.524307,37.234165],[65.263359,37.23275],[65.228058,37.250168],[64.982613,37.212944],[64.756615,37.106472],[64.795441,36.936001],[64.605194,36.626556],[64.622948,36.472721],[64.604332,36.4035],[64.448807,36.237],[64.082222,36.112751],[64.065224,36.00172],[63.976223,36.041943],[63.815277,35.99889],[63.57447,35.956417],[63.547195,35.913307],[63.30011,35.864529],[63.129223,35.869305],[63.140556,35.775639],[63.244251,35.686611],[63.119751,35.645084],[63.127224,35.549721],[63.096359,35.427723],[62.926388,35.382446],[62.747833,35.265194],[62.569916,35.23439],[62.466835,35.284306],[62.309807,35.142944],[62.248139,35.308807],[62.143444,35.344776],[62.057388,35.437473],[61.964279,35.453583],[61.766998,35.414501],[61.599861,35.436474],[61.384834,35.569611],[61.276638,35.613167],[61.222889,35.660362],[61.259972,35.812916],[61.234001,35.915501],[61.159279,35.989613],[61.229221,36.17239],[61.17025,36.340332],[61.190971,36.567722],[61.140251,36.662056],[60.634777,36.627556],[60.370667,36.624248],[60.17675,36.842415],[60.084332,36.978527],[60.004417,37.039665],[59.938751,37.027779],[59.833057,37.092083],[59.699555,37.128193],[59.553833,37.122528],[59.551998,37.166248],[59.402001,37.306252],[59.40311,37.426029],[59.347832,37.515446],[59.27628,37.497307],[59.047611,37.612751],[58.851387,37.680279],[58.742249,37.62989],[58.577221,37.692749],[58.459835,37.625057],[58.237335,37.673473],[58.211887,37.760113],[58.049362,37.795307],[57.787193,37.893082],[57.589249,37.924641],[57.524971,37.91486],[57.359138,37.974445],[57.380585,38.072945],[57.293694,38.150249],[57.245109,38.261696],[57.160499,38.256527],[57.089359,38.180946],[56.856083,38.211529],[56.754665,38.272583],[56.604084,38.223415],[56.567665,38.254028],[56.417057,38.24036],[56.327221,38.16489],[56.339195,38.070641],[56.173195,38.082527],[55.980778,38.065029],[55.813362,38.111526],[55.474194,38.084332],[55.406444,38.040279],[55.129333,37.950973],[55.027943,37.86311],[54.823833,37.725224],[54.784,37.632694],[54.797779,37.523056],[54.653252,37.430721],[54.583027,37.455444],[54.358971,37.344196],[54.243584,37.309193],[53.897804,37.340805],[53.88525,37.502972],[53.814167,37.814693],[53.82214,38.034138],[53.852333,38.141029],[53.869778,38.375668],[53.833721,38.492943],[53.860416,38.649529],[53.918304,38.739029],[53.981529,38.933304],[53.90361,38.961113],[53.878224,39.024166],[53.741333,39.051418],[53.571861,39.188057],[53.537472,39.298027],[53.464779,39.335777],[53.230221,39.393055],[53.158943,39.339554],[53.096306,39.433083],[53.236194,39.545193],[53.483639,39.569473],[53.615582,39.652168],[53.46014,39.676529],[53.437805,39.806194],[53.495083,39.928028],[53.424721,39.986279],[53.289223,39.955582],[53.174499,40.005638],[53.068611,39.978779],[52.875279,40.021526],[52.772057,40],[52.735863,40.081333],[52.768528,40.159668],[52.706028,40.288055],[52.736721,40.49564],[52.862778,40.6735],[52.869721,40.782749],[52.940193,40.947304],[52.936695,41.018806],[52.846332,41.083832],[52.856583,41.167473],[52.767277,41.389252],[52.555137,41.540585],[52.581085,41.687027],[52.441444,41.765446]]]},"properties":{"name":"土库曼斯坦","name_en":"TURKMENISTAN","id":"TKM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-60.994808,10.13063],[-61.147095,10.073399],[-61.271335,10.079462],[-61.567989,10.065782],[-61.625362,10.048928],[-61.818077,10.126215],[-61.701714,10.156534],[-61.627438,10.241794],[-61.523575,10.229135],[-61.455841,10.296699],[-61.486424,10.374846],[-61.460774,10.5303],[-61.481678,10.60034],[-61.611126,10.744004],[-61.45829,10.762031],[-61.359863,10.808898],[-61.187458,10.794438],[-61.008057,10.840741],[-60.911148,10.834352],[-61.036789,10.655908],[-61.009273,10.528756],[-61.039638,10.507644],[-60.998024,10.29187],[-60.994808,10.13063]]],[[[-60.76947,11.219088],[-60.694584,11.28274],[-60.532383,11.338342],[-60.529797,11.248864],[-60.654987,11.186686],[-60.739872,11.17235],[-60.76947,11.219088]]]]},"properties":{"name":"特立尼达和多巴哥","name_en":"TRINIDAD AND TOBAGO","id":"TTO"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-23.444019,15],[-23.522278,14.893254],[-23.705301,14.950906],[-23.789324,15.089748],[-23.771452,15.286448],[-23.630054,15.225281],[-23.444019,15]]],[[[-25,17.122772],[-24.999462,17.050348],[-25.10507,17.000576],[-25.179274,16.923718],[-25.292208,16.907898],[-25.33642,17.092325],[-25.085161,17.195282],[-25,17.122772]]],[[[-22.796131,16.22731],[-22.725323,16.204407],[-22.669443,16.097849],[-22.68841,16.043392],[-22.814945,15.973827],[-22.945572,16.005407],[-22.961245,16.085352],[-22.910143,16.118927],[-22.916223,16.225061],[-22.796131,16.22731]]],[[[-24.3116,15],[-24.292349,14.87378],[-24.331049,14.824425],[-24.425949,14.813921],[-24.509911,14.878852],[-24.499228,14.976125],[-24.381996,15.045925],[-24.3116,15]]],[[[-24.308065,16.648993],[-24.07822,16.607679],[-24.11783,16.549284],[-24.242472,16.591503],[-24.323792,16.479443],[-24.430815,16.644165],[-24.347431,16.678803],[-24.308065,16.648993]]],[[[-23.174566,15.328452],[-23.137766,15.309758],[-23.099419,15.165393],[-23.165088,15.112122],[-23.253924,15.160149],[-23.242298,15.257349],[-23.174566,15.328452]]],[[[-25,16.902435],[-24.922575,16.880268],[-24.870727,16.814282],[-24.998257,16.770885],[-25.084263,16.859297],[-25,16.902435]]],[[[-22.918222,16.853725],[-22.891405,16.704281],[-22.988674,16.72933],[-22.986389,16.823051],[-22.918222,16.853725]]]]},"properties":{"name":"佛得角","name_en":"CAPE VERDE","id":"CPV"}}, + {"type":"Feature","geometry":null,"properties":{"name":"百慕大","name_en":"BERMUDA","id":"BMU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[73.654633,-53.144527],[73.482002,-53.189896],[73.40789,-53.128139],[73.387855,-53.02475],[73.58268,-53.017281],[73.749008,-53.111927],[73.654633,-53.144527]]]},"properties":{"name":"赫德岛和麦克唐纳岛","name_en":"HEARD ISLAND AND MCDONALD ISLANDS","id":"HMD"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[15.507478,7.527468],[15.570912,7.586626],[15.591115,7.776183],[15.510758,7.796198],[15.390954,8.040917],[15.39823,8.088196],[15.286306,8.309217],[15.207611,8.610803],[15.106936,8.673421],[15.034539,8.670677],[14.900419,8.806685],[14.753565,8.820168],[14.380765,9.196904],[14.385775,9.288627],[14.317408,9.366744],[14.250465,9.391513],[14.191053,9.478121],[14.135877,9.508166],[14.022067,9.647088],[14.024951,9.705729],[14.177625,9.900284],[14.236409,9.997405],[14.4847,10.010209],[14.835981,9.924493],[15.002891,10.001306],[15.101449,9.963863],[15.236097,9.996444],[15.435013,9.933312],[15.600526,9.960324],[15.649034,10.025911],[15.486175,10.118977],[15.45156,10.187865],[15.355698,10.290752],[15.310207,10.307446],[15.241114,10.470723],[15.145935,10.538351],[15.157494,10.622524],[15.069408,10.805375],[15.093485,10.866066],[15.037062,11.071456],[15.026545,11.278427],[15.058736,11.410053],[15.142291,11.557837],[15.097768,11.588992],[15.06564,11.710726],[15.116418,11.797949],[15.042094,11.898723],[15.061104,12.041591],[15.009346,12.112401],[14.933575,12.1139],[14.892467,12.167798],[14.910468,12.379228],[14.848965,12.456382],[14.831535,12.628499],[14.771552,12.631318],[14.706207,12.724774],[14.585725,12.747368],[14.551725,12.785794],[14.568749,12.891757],[14.45988,13.0745],[14.085435,13.078056],[13.889293,13.346123],[13.634547,13.710678],[13.485628,14.358273],[13.493393,14.474606],[13.640937,14.513723],[13.696021,14.551124],[13.677313,14.63656],[13.809959,14.721726],[13.789683,14.863215],[13.869507,15.042839],[13.970182,15.156531],[14.275917,15.588231],[14.384764,15.731555],[14.610407,15.956042],[14.956651,16.325327],[15.505546,16.897871],[15.539317,17.599869],[15.564957,18.146376],[15.593798,18.731867],[15.676233,19.359041],[15.753551,19.947784],[15.995643,20.348471],[15.865157,20.462461],[15.745673,20.629545],[15.590104,20.774473],[15.546157,20.880419],[15.625593,20.96324],[15.288579,21.432322],[15.19843,21.491306],[15.191867,21.989744],[15.138073,22.28812],[14.995867,23.001894],[15.441403,23.206142],[15.99817,23.450369],[16.981932,22.997187],[17.557297,22.72254],[18.243919,22.395874],[18.999725,22.033505],[20,21.544849],[20.921785,21.086548],[21.680883,20.705065],[22.517778,20.271395],[23.05508,19.995678],[23.935038,19.537603],[24,19.508045],[24,18.9],[24,18.4],[24,17.6],[24,16.6],[24.001585,15.704918],[23.805841,15.742705],[23.578144,15.753811],[23.416468,15.693098],[23.333431,15.686207],[23.12228,15.709895],[23.004742,15.589433],[22.930586,15.550809],[22.932901,15.464097],[22.990156,15.415928],[22.999733,15.237209],[22.870703,15.083105],[22.75691,14.972213],[22.759361,14.917297],[22.671072,14.848719],[22.717203,14.686426],[22.411163,14.595858],[22.384214,14.506743],[22.449614,14.472433],[22.437609,14.275731],[22.479246,14.232004],[22.558164,14.229709],[22.536352,14.118576],[22.392715,14.049981],[22.231857,13.947371],[22.092207,13.776198],[22.142582,13.629091],[22.213734,13.566467],[22.220997,13.451769],[22.284214,13.349694],[22.127871,13.164268],[22.020376,13.139103],[21.925674,13.046878],[21.850737,12.871535],[21.857975,12.734151],[21.934244,12.639363],[22.032839,12.637202],[22.195063,12.706912],[22.287437,12.696554],[22.458885,12.619767],[22.372139,12.441509],[22.421904,12.387854],[22.443953,12.272038],[22.492457,12.148483],[22.491672,12.020497],[22.551409,12.052981],[22.635042,12.026801],[22.554052,11.687226],[22.566088,11.620659],[22.662172,11.515491],[22.754213,11.475113],[22.789005,11.403181],[22.945282,11.417245],[22.986078,11.199601],[22.881338,10.930898],[22.734318,10.974495],[22.520679,11.007569],[22.326904,10.95578],[22.151804,10.876024],[22.081616,10.894969],[21.933977,10.853364],[21.87825,10.867855],[21.791242,10.798094],[21.788591,10.669397],[21.733631,10.653979],[21.717541,10.507866],[21.766628,10.404025],[21.67569,10.23764],[21.561285,10.210389],[21.468077,10.152206],[21.453438,10.083075],[21.340611,9.963696],[21.262831,9.99369],[21.133072,9.847903],[21.115307,9.791945],[21.030533,9.728498],[20.978334,9.61715],[20.760815,9.401124],[20.662766,9.395308],[20.637863,9.317802],[20.528635,9.337067],[20.455925,9.173464],[20.353203,9.128198],[20.238687,9.145899],[20.057752,9.141662],[19.927143,9.060796],[19.772879,9.057358],[19.671989,9.020756],[19.401062,9.025985],[19.30924,9.007809],[19.218359,9.031472],[19.077679,9.014913],[18.992731,8.979239],[18.868301,8.875699],[18.922976,8.800428],[19.019634,8.761438],[19.120653,8.668692],[19.065844,8.637378],[19.042257,8.554285],[18.98904,8.510682],[18.850935,8.305436],[18.804415,8.260713],[18.673633,8.212172],[18.601605,8.04674],[18.031982,8.009303],[17.921644,7.95861],[17.671673,7.982768],[17.648878,7.945733],[17.314695,7.828386],[17.169182,7.70687],[17.160448,7.666746],[16.905294,7.61625],[16.843849,7.529787],[16.726784,7.650231],[16.667234,7.668666],[16.668024,7.738216],[16.594477,7.768879],[16.583725,7.833888],[16.516056,7.842938],[16.375481,7.665937],[16.235464,7.606656],[16.056677,7.577589],[15.974808,7.483338],[15.809591,7.441068],[15.727948,7.519134],[15.546547,7.511202],[15.507478,7.527468]]]},"properties":{"name":"乍得","name_en":"Chad","id":"TCD"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[45.004055,41.301418],[44.94603,41.258583],[44.711693,41.208195],[44.610943,41.234974],[44.438667,41.186806],[44.171833,41.237667],[44.169224,41.199471],[43.853248,41.166306],[43.729668,41.11375],[43.541363,41.148861],[43.471279,41.129806],[43.355362,41.201248],[43.231777,41.192749],[43.199001,41.303585],[43.024776,41.37825],[42.969582,41.4515],[42.866196,41.499111],[42.783611,41.57822],[42.677834,41.597252],[42.58411,41.570251],[42.510113,41.468613],[42.407665,41.466583],[42.183887,41.5145],[42.053585,41.495499],[41.955193,41.524639],[41.823112,41.434612],[41.708832,41.497723],[41.547001,41.526501],[41.586029,41.621193],[41.667668,41.654915],[41.770611,41.811306],[41.758335,42.009277],[41.661556,42.11911],[41.603085,42.351387],[41.551418,42.399582],[41.474609,42.682026],[41.371944,42.766335],[41.111362,42.836472],[41.064083,42.969307],[40.967999,42.98072],[40.817249,43.083668],[40.581085,43.092083],[40.528111,43.135918],[40.280109,43.186779],[40.256054,43.298973],[40.01025,43.383251],[40.092304,43.554501],[40.282696,43.570999],[40.571834,43.516109],[40.668777,43.558193],[40.948971,43.422112],[41.139194,43.394585],[41.333168,43.335415],[41.42025,43.353111],[41.582501,43.23539],[41.814751,43.203804],[41.878193,43.246082],[42.038582,43.196835],[42.323891,43.214722],[42.439888,43.255749],[42.488529,43.206306],[42.681721,43.173721],[42.893471,43.179085],[43.038582,43.09061],[43.026611,43.049862],[43.192081,42.934444],[43.34314,42.889999],[43.561695,42.866085],[43.64489,42.799862],[43.790859,42.750084],[43.731388,42.627556],[43.770168,42.587666],[43.948082,42.558472],[44.034721,42.605026],[44.209026,42.626751],[44.323002,42.713333],[44.503471,42.701332],[44.523304,42.751167],[44.66214,42.750252],[44.798195,42.631721],[44.87825,42.746918],[45.035057,42.701248],[45.176529,42.690693],[45.349998,42.529026],[45.470859,42.555195],[45.69561,42.484833],[45.772888,42.436333],[45.713555,42.290554],[45.64072,42.289391],[45.60614,42.218971],[45.768696,42.125832],[46.014832,42.042057],[46.226166,42.001804],[46.418083,41.90564],[46.365528,41.798862],[46.304974,41.789165],[46.248165,41.659527],[46.35186,41.492638],[46.609138,41.389221],[46.712139,41.283474],[46.651611,41.203918],[46.650639,41.127724],[46.563221,41.114639],[46.514446,41.05761],[46.369526,41.094112],[46.253223,41.169918],[45.943916,41.180416],[45.717224,41.264751],[45.705471,41.340363],[45.436943,41.449196],[45.306862,41.468113],[45.178665,41.40786],[45.091194,41.332722],[45.004055,41.301418]]]},"properties":{"name":"格鲁吉亚","name_en":"Georgia","id":"GEO"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.079126,42.555374],[20.001982,42.509529],[19.829828,42.466656],[19.743681,42.544456],[19.774328,42.592098],[19.72286,42.660915],[19.617376,42.541431],[19.426697,42.371231],[19.42235,42.326996],[19.281677,42.180126],[19.403046,42.102585],[19.344768,41.912312],[19.371851,41.853134],[19.176945,41.937027],[19.151751,42.038944],[18.905945,42.216305],[18.855055,42.279499],[18.776528,42.267361],[18.709917,42.322418],[18.68039,42.46175],[18.522282,42.423962],[18.433981,42.483604],[18.456474,42.560223],[18.523996,42.619247],[18.56698,42.721474],[18.474421,42.754711],[18.459971,42.821522],[18.487425,42.963879],[18.540522,43.031643],[18.663155,43.036831],[18.648796,43.147041],[18.731859,43.280121],[18.914617,43.359463],[19.012468,43.262333],[19.042267,43.363689],[19.045939,43.505505],[19.232298,43.525471],[19.244335,43.469654],[19.44722,43.386131],[19.508838,43.279224],[19.634527,43.171955],[19.775926,43.159775],[19.848837,43.100098],[19.966637,43.079643],[20.070423,43.012154],[20.349821,42.896553],[20.202166,42.754593],[20.071377,42.777054],[19.988537,42.692959],[20.111206,42.654873],[20.079126,42.555374]]]},"properties":{"name":"黑山共和国","name_en":"MONTENEGRO","id":"MNE"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.7252,49.855546],[116.048557,48.873451],[116.06943,48.811344],[115.799316,48.515086],[115.822844,48.259422],[115.529317,48.1552],[115.539386,48.104675],[115.580535,47.921773],[115.939058,47.683109],[116.11089,47.811763],[116.265761,47.87671],[116.452857,47.837554],[116.669987,47.890623],[116.879114,47.893901],[117.094763,47.823946],[117.179714,47.769008],[117.38417,47.641229],[117.5097,47.761153],[117.810391,48.014138],[117.997652,48.009772],[118.15904,48.044245],[118.306264,48.005734],[118.56803,47.992146],[118.773181,47.771149],[119.117289,47.67021],[119.205226,47.520267],[119.365842,47.477407],[119.329836,47.436184],[119.489991,47.324812],[119.715543,47.195969],[119.80618,47.003197],[119.869269,46.953495],[119.938215,46.804783],[119.911789,46.669764],[119.68306,46.59375],[119.646368,46.625706],[119.134855,46.651776],[119.011352,46.745698],[118.927499,46.724416],[118.84527,46.771876],[118.787964,46.687045],[118.289037,46.723416],[117.91453,46.607941],[117.828909,46.532262],[117.681445,46.527036],[117.622961,46.595948],[117.420104,46.582071],[117.363439,46.361759],[117.022168,46.365031],[116.864312,46.378286],[116.758705,46.329848],[116.608995,46.305973],[116.414126,46.134059],[116.255877,45.927374],[116.286866,45.775145],[116.174347,45.68858],[116.048538,45.688229],[115.739839,45.488697],[115.640798,45.450313],[115.36467,45.39236],[115.136881,45.39459],[114.974127,45.377035],[114.745125,45.438314],[114.551156,45.387578],[114.519593,45.283729],[114.35893,45.13103],[114.178281,45.03616],[114.065247,44.9312],[113.903532,44.907499],[113.661393,44.759074],[113.115196,44.799801],[112.839674,44.844588],[112.712154,44.879381],[112.586308,44.946809],[112.415907,45.073031],[112.163838,45.071731],[112.002761,45.090785],[111.764521,44.969337],[111.601267,44.736066],[111.56103,44.565846],[111.478402,44.488807],[111.426747,44.327589],[111.506813,44.294175],[111.550122,44.188582],[111.662998,44.061196],[111.870359,43.94026],[111.96671,43.8033],[111.955484,43.70477],[111.794261,43.671906],[111.564588,43.490333],[111.466654,43.493608],[111.354098,43.436114],[111.064449,43.352253],[110.736518,43.089594],[110.58958,42.910623],[110.396376,42.764336],[110.139447,42.674731],[110.108467,42.642747],[109.882722,42.628537],[109.486804,42.458632],[109.291583,42.435784],[109.025756,42.45855],[108.845642,42.395742],[108.471451,42.443635],[108.248282,42.459897],[107.926524,42.404623],[107.574543,42.413035],[107.466245,42.458832],[107.304146,42.412654],[107.275642,42.373041],[107.028792,42.316158],[106.785906,42.291466],[106.517673,42.209729],[106.013209,42.032083],[105.676185,41.924867],[105.340158,41.773089],[105.230836,41.751132],[105.009684,41.583215],[104.965682,41.623298],[104.90788,41.656011],[104.68893,41.645314],[104.524287,41.661916],[104.530151,41.87489],[104.07975,41.804945],[103.86888,41.802588],[103.418502,41.882359],[103.001603,42.036485],[102.712017,42.152803],[102.541009,42.162279],[102.44899,42.144062],[102.093764,42.223617],[101.803732,42.503711],[101.581682,42.525253],[100.952661,42.653986],[100.726368,42.677129],[100.325468,42.690024],[100.26091,42.637123],[100.004523,42.648667],[99.532239,42.57114],[99.455013,42.571302],[98.546621,42.638213],[98.145679,42.660769],[97.226991,42.788694],[96.982694,42.75741],[96.758654,42.75641],[96.386194,42.727772],[96.363631,42.900534],[95.921409,43.22966],[95.885469,43.271265],[95.858051,43.417653],[95.771609,43.541597],[95.526831,44.007412],[95.326665,44.028741],[95.398297,44.294551],[95.066754,44.261853],[94.768084,44.340555],[94.574208,44.458226],[94.414241,44.517813],[94.16919,44.680027],[93.736333,44.860269],[93.509411,44.968223],[93.173971,45.015263],[93.100037,45.007361],[92.790717,45.045454],[92.547883,45.018312],[92.265075,45.020614],[92.056613,45.086755],[91.676523,45.066462],[91.575868,45.082096],[91.449143,45.15664],[91.37739,45.11107],[91.264896,45.135401],[91.145518,45.208628],[90.961605,45.201377],[90.855106,45.291708],[90.772352,45.432745],[90.684559,45.477746],[90.676888,45.582542],[90.707576,45.691747],[90.850122,45.888005],[91.028274,46.023087],[91.017984,46.128787],[90.900461,46.312246],[90.983608,46.374864],[91.075956,46.549132],[91.017855,46.582315],[91.046791,46.692038],[90.906787,46.951664],[90.795959,46.995778],[90.670934,47.093996],[90.489246,47.323943],[90.468182,47.497659],[90.398285,47.547664],[90.342032,47.676288],[90.104495,47.750116],[90.06634,47.883684],[89.937918,47.836051],[89.796187,47.837727],[89.59425,47.983872],[89.586175,48.031617],[89.384156,48.046635],[89.278178,47.993651],[89.078437,47.986985],[88.930566,48.119458],[88.824468,48.106807],[88.606251,48.21706],[88.606067,48.337828],[88.519523,48.40567],[88.443749,48.391472],[88.360509,48.462852],[88.196708,48.493946],[87.973089,48.575997],[88.093192,48.698883],[88.022225,48.753098],[87.799295,48.818273],[87.758373,48.923502],[87.876505,48.949192],[87.831294,49.148277],[87.994331,49.186359],[88.055275,49.266361],[88.196777,49.287334],[88.102974,49.365528],[88.223221,49.489861],[88.339836,49.508057],[88.445274,49.48011],[88.649971,49.520084],[88.679001,49.474998],[88.81514,49.466194],[88.891113,49.555805],[88.96386,49.484612],[89.099502,49.499779],[89.226639,49.559193],[89.223526,49.646332],[89.369698,49.595943],[89.444725,49.658833],[89.681831,49.709721],[89.738526,49.794498],[89.636719,49.831749],[89.62072,49.973999],[89.753082,49.99836],[89.90078,49.984554],[90.086723,50.037613],[90.287552,50.032307],[90.368225,50.144417],[90.542168,50.177555],[90.662529,50.163555],[90.775002,50.288471],[90.66803,50.336777],[90.737724,50.487915],[91.139275,50.45789],[91.25708,50.48439],[91.444305,50.465389],[91.446441,50.549641],[91.657944,50.583832],[91.662781,50.666832],[91.756638,50.720417],[91.883919,50.730415],[92.022835,50.683529],[92.195778,50.684834],[92.305084,50.744141],[92.325302,50.88636],[92.400665,50.882889],[92.471138,50.776749],[92.602608,50.766861],[92.607086,50.715527],[92.748024,50.709332],[92.843887,50.794109],[93.032997,50.762943],[92.982445,50.658196],[93.104027,50.566807],[93.402748,50.585472],[93.669723,50.577835],[93.956802,50.591221],[94.223663,50.582722],[94.303413,50.552055],[94.348641,50.464806],[94.398865,50.234112],[94.51078,50.169445],[94.608803,50.038723],[94.819084,50.060139],[94.991302,50.05336],[95.129555,49.948917],[95.334137,49.951443],[95.477806,49.922359],[95.723969,49.961918],[95.818497,50.038528],[95.973778,49.979752],[96.095802,50.019474],[96.302002,49.987141],[96.408279,49.902306],[96.611748,49.981998],[96.716919,49.90786],[96.839447,49.943584],[97.002976,49.914501],[97.193726,49.774696],[97.316193,49.757389],[97.42997,49.788113],[97.765526,49.984249],[97.862724,49.947887],[98.116165,50.103943],[98.278053,50.311974],[98.256668,50.411056],[98.32447,50.538971],[98.132637,50.59639],[98.048859,50.652805],[97.955025,50.78186],[98.012863,50.874138],[97.867279,50.949806],[97.867668,51.045471],[97.941307,51.207943],[97.944885,51.322861],[98.048195,51.437889],[98.234253,51.462223],[98.240524,51.566612],[98.315224,51.717834],[98.696304,51.820362],[98.852608,52.041027],[98.871445,52.129223],[98.953697,52.147888],[99.048531,52.071972],[99.273171,52.020111],[99.294777,51.975224],[99.770615,51.881748],[99.833084,51.823807],[99.993469,51.753307],[100.124641,51.760502],[100.447586,51.740444],[100.51564,51.750389],[100.94339,51.626251],[101.160919,51.542305],[101.258636,51.539417],[101.347916,51.47039],[101.541275,51.503166],[101.641998,51.456612],[102.068779,51.39711],[102.208641,51.329445],[102.151253,51.264],[102.201637,51.059334],[102.266892,50.965527],[102.240692,50.818474],[102.355057,50.750252],[102.293198,50.650276],[102.32061,50.584084],[102.505165,50.540859],[102.642113,50.429417],[102.824608,50.378612],[102.980721,50.304279],[103.204613,50.312695],[103.287224,50.219139],[103.475113,50.205223],[103.690476,50.137249],[103.757553,50.194054],[103.854805,50.202862],[104.060997,50.154362],[104.250946,50.201889],[104.405113,50.305],[104.589142,50.313583],[104.911781,50.388416],[105.151863,50.400028],[105.286804,50.468029],[105.387695,50.479221],[105.611832,50.432362],[105.842941,50.430527],[106.080055,50.393833],[106.09214,50.351028],[106.279198,50.295696],[106.507774,50.342472],[106.757889,50.321415],[106.9245,50.247471],[107.130753,50.026917],[107.254669,49.992554],[107.704475,49.956085],[107.75322,49.980583],[107.946999,49.855473],[107.958885,49.667],[108.151527,49.55489],[108.284225,49.528751],[108.368141,49.442917],[108.55558,49.334332],[108.9655,49.359444],[109.042473,49.336113],[109.184471,49.360279],[109.329109,49.341499],[109.489472,49.285],[109.571083,49.222584],[109.70153,49.231609],[110.234108,49.165112],[110.399475,49.258415],[110.596252,49.162083],[110.766281,49.145111],[110.992248,49.19986],[111.16983,49.300335],[111.392303,49.373112],[111.501892,49.34375],[111.662475,49.396305],[111.934502,49.395527],[112.110886,49.431278],[112.513168,49.546471],[112.716309,49.491833],[112.966141,49.586529],[113.087418,49.608139],[113.186333,49.800861],[113.230247,49.834946],[113.795555,50.094082],[113.868805,50.08461],[114.034416,50.185638],[114.349053,50.282917],[114.507248,50.23711],[114.672249,50.256248],[115.004059,50.177387],[115.237915,49.979389],[115.374641,49.907833],[115.720947,49.884583],[116.02597,49.998333],[116.20517,50.031723],[116.44767,49.963028],[116.606697,49.940334],[116.7252,49.855546]]]},"properties":{"name":"蒙古","name_en":"Mongolia","id":"MNG"}}, + {"type":"Feature","geometry":null,"properties":{"name":"马绍尔群岛","name_en":"MARSHALL ISLANDS","id":"MHL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.025291,14.817301],[-60.91507,14.759952],[-60.878391,14.614707],[-60.818977,14.460038],[-61.086865,14.46724],[-61.058582,14.552905],[-61.188259,14.700502],[-61.230118,14.809225],[-61.155949,14.878205],[-61.025291,14.817301]]]},"properties":{"name":"马提尼克","name_en":"MARTINIQUE","id":"MTQ"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.93882,15.890036],[-89.055634,15.912284],[-89.150368,15.894055],[-89.224815,15.925535],[-89.189072,16.409548],[-89.145714,17.048967],[-89.146866,17.8174],[-89.14537,17.944826],[-89.021934,18.000355],[-88.880333,17.906065],[-88.699089,18.063341],[-88.591042,18.304064],[-88.548134,18.346989],[-88.512932,18.462267],[-88.305504,18.485069],[-88.376823,18.392904],[-88.338921,18.341772],[-88.199982,18.335409],[-88.093933,18.373152],[-88.080856,18.204525],[-88.116905,18.042723],[-88.20179,17.882656],[-88.223595,17.715574],[-88.285584,17.605188],[-88.279572,17.563755],[-88.18721,17.519302],[-88.247841,17.458065],[-88.295158,17.259747],[-88.292702,17.134119],[-88.238937,17.065985],[-88.210556,16.967264],[-88.275146,16.884306],[-88.305275,16.647701],[-88.339684,16.62484],[-88.479324,16.351189],[-88.532219,16.278334],[-88.72522,16.232891],[-88.74649,16.136383],[-88.924835,15.992282],[-88.93882,15.890036]]]},"properties":{"name":"伯利兹","name_en":"BELIZE","id":"BLZ"}}, + {"type":"Feature","geometry":null,"properties":{"name":"诺福克岛(澳)","name_en":"Norfolk Island (AUS.)","id":"NFK"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[74.574114,37.033385],[74.427864,36.997639],[74.264,36.904446],[74.152031,36.909863],[74.127419,36.84811],[73.963196,36.837502],[73.84658,36.898613],[73.705055,36.912724],[73.527779,36.885555],[73.403137,36.899139],[73.071747,36.889057],[72.882637,36.841084],[72.656166,36.849834],[72.566109,36.832417],[72.495224,36.777557],[72.302559,36.744999],[72.102913,36.648556],[72.106224,36.605721],[71.935303,36.56089],[71.832054,36.505474],[71.795776,36.400585],[71.656197,36.478222],[71.524223,36.320862],[71.347443,36.172554],[71.245445,36.122776],[71.201416,36.035778],[71.376724,35.956112],[71.546669,35.720222],[71.499474,35.626415],[71.612221,35.573223],[71.593392,35.497528],[71.648941,35.452473],[71.555809,35.312862],[71.674889,35.196529],[71.530052,35.072361],[71.499252,34.963749],[71.30986,34.878834],[71.279442,34.805027],[71.095665,34.675529],[71.087082,34.590443],[70.995552,34.554779],[71.006805,34.461113],[71.08728,34.389137],[71.169472,34.363609],[71.122055,34.267193],[71.126083,34.162418],[71.076279,34.0625],[70.884941,33.976749],[70.767944,33.954861],[70.593887,33.964333],[70.46772,33.943333],[70.238831,33.973141],[70.046196,34.036724],[69.913498,34.037945],[69.865753,33.926918],[70.005638,33.733528],[70.13697,33.715057],[70.197029,33.63361],[70.173584,33.525055],[70.315392,33.395557],[70.326584,33.340473],[70.155746,33.221195],[70.067307,33.213554],[70.023087,33.143276],[69.875527,33.095695],[69.78653,33.127556],[69.722557,33.09314],[69.580055,33.097557],[69.507111,33.029026],[69.47422,32.851055],[69.395225,32.781582],[69.451225,32.663166],[69.385246,32.566555],[69.285225,32.53297],[69.240692,32.461388],[69.28083,32.356388],[69.272835,32.151001],[69.323502,31.944166],[69.197609,31.848389],[69.117943,31.703251],[69.02417,31.642111],[68.900642,31.60125],[68.804947,31.609972],[68.717003,31.696638],[68.701836,31.76989],[68.570137,31.827972],[68.423027,31.755362],[68.286613,31.757],[68.177498,31.814501],[68.064087,31.699389],[67.949913,31.633417],[67.84314,31.616528],[67.742058,31.533722],[67.569557,31.534695],[67.594696,31.434305],[67.66008,31.397223],[67.740944,31.414778],[67.789864,31.356611],[67.620415,31.276388],[67.390526,31.216583],[67.2715,31.205778],[67.166336,31.243389],[67.056168,31.230833],[67.044472,31.303833],[66.969109,31.312611],[66.731087,31.2125],[66.683166,31.074583],[66.562554,30.977612],[66.386582,30.933916],[66.281059,30.569279],[66.354111,30.427278],[66.316612,30.242861],[66.241669,30.055056],[66.358749,29.974445],[66.245636,29.85136],[65.781136,29.723749],[65.067055,29.536222],[64.63192,29.581083],[64.48761,29.571777],[64.266808,29.523834],[64.152336,29.449556],[64.105308,29.377472],[64.032364,29.417694],[63.590832,29.490417],[63.364498,29.47636],[62.455776,29.388971],[61.652527,29.625694],[60.878613,29.861778],[61.293999,30.307028],[61.803528,30.84086],[61.78661,30.927195],[61.845696,31.040833],[61.756443,31.332611],[61.682999,31.384556],[60.856888,31.491667],[60.829834,31.666471],[60.823555,31.88925],[60.834278,32.054165],[60.877251,32.198833],[60.819,32.479252],[60.718277,32.688778],[60.647915,32.961304],[60.586113,33.143112],[60.62764,33.223915],[60.869999,33.424667],[60.901138,33.536915],[60.716251,33.528557],[60.643223,33.56461],[60.549583,33.730221],[60.567306,33.817307],[60.482582,34.062222],[60.590946,34.212723],[60.694222,34.311165],[60.86686,34.30661],[60.854305,34.409557],[60.745693,34.522972],[60.900471,34.571777],[60.997971,34.632694],[61.002419,34.704334],[61.07711,34.839027],[61.075249,34.932529],[61.144611,35.130138],[61.090668,35.171696],[61.093029,35.261055],[61.190887,35.28997],[61.173416,35.349304],[61.271641,35.521721],[61.276638,35.613167],[61.384834,35.569611],[61.599861,35.436474],[61.766998,35.414501],[61.964279,35.453583],[62.057388,35.437473],[62.143444,35.344776],[62.248139,35.308807],[62.309807,35.142944],[62.466835,35.284306],[62.569916,35.23439],[62.747833,35.265194],[62.926388,35.382446],[63.096359,35.427723],[63.127224,35.549721],[63.119751,35.645084],[63.244251,35.686611],[63.140556,35.775639],[63.129223,35.869305],[63.30011,35.864529],[63.547195,35.913307],[63.57447,35.956417],[63.815277,35.99889],[63.976223,36.041943],[64.065224,36.00172],[64.082222,36.112751],[64.448807,36.237],[64.604332,36.4035],[64.622948,36.472721],[64.605194,36.626556],[64.795441,36.936001],[64.756615,37.106472],[64.982613,37.212944],[65.228058,37.250168],[65.263359,37.23275],[65.524307,37.234165],[65.624191,37.319611],[65.643692,37.431137],[65.697586,37.528362],[65.798309,37.538223],[65.877052,37.472611],[66.098503,37.429443],[66.132667,37.387722],[66.300415,37.323334],[66.52597,37.347584],[66.683365,37.337223],[66.971359,37.386749],[67.098335,37.330387],[67.26397,37.188499],[67.440308,37.233139],[67.633331,37.248444],[67.789833,37.184776],[67.786529,37.093945],[67.899055,37.06422],[67.903999,37.019222],[68.023834,36.928276],[68.436531,37.148777],[68.639053,37.207249],[68.680496,37.276165],[68.887337,37.27314],[69.007942,37.300777],[69.126472,37.17186],[69.248833,37.097305],[69.398415,37.172722],[69.417137,37.234806],[69.367164,37.405499],[69.524246,37.584999],[69.818192,37.573834],[69.908081,37.616779],[69.953888,37.563972],[70.102142,37.524666],[70.250053,37.611973],[70.306137,37.695915],[70.281113,37.811554],[70.196747,37.842529],[70.174668,37.92189],[70.278053,37.940861],[70.365364,38.051777],[70.502777,38.127945],[70.605972,38.34325],[70.678108,38.407166],[70.993057,38.481667],[71.162918,38.379276],[71.181747,38.338249],[71.327446,38.294529],[71.371361,38.207554],[71.26017,37.93375],[71.326836,37.885139],[71.529389,37.954166],[71.578247,37.927891],[71.589081,37.796501],[71.493942,37.538139],[71.523026,37.478222],[71.473114,37.384056],[71.499001,37.308193],[71.446442,37.173973],[71.427193,37.055111],[71.560585,36.756695],[71.666832,36.67786],[71.830223,36.687054],[72.047142,36.834026],[72.318726,36.977055],[72.675636,37.026222],[72.817802,37.229279],[73.075302,37.317638],[73.156059,37.407833],[73.308418,37.462418],[73.367691,37.437973],[73.510086,37.47036],[73.569916,37.44175],[73.755974,37.435001],[73.766586,37.338585],[73.660614,37.30661],[73.627335,37.244335],[73.752083,37.222832],[73.963501,37.292168],[74.222252,37.348026],[74.344696,37.416332],[74.424614,37.388222],[74.544052,37.398556],[74.706802,37.380501],[74.829696,37.329166],[74.87801,37.22397],[74.727347,37.282856],[74.665697,37.235763],[74.519117,37.242815],[74.465027,37.146915],[74.574114,37.033385]]]},"properties":{"name":"阿富汗","name_en":"Afghanistan","id":"AFG"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.391476,-4.44525],[29.382076,-4.210762],[29.347843,-4.041376],[29.25371,-3.918101],[29.231802,-3.790512],[29.238214,-3.521051],[29.200918,-3.308666],[29.242169,-3.053818],[29.084665,-2.929805],[29.081457,-2.881034],[28.994848,-2.789144],[29.032165,-2.749662],[29.04664,-2.622728],[29.076717,-2.592048],[29.33,-2.657213],[29.352738,-2.811218],[29.451219,-2.801625],[29.533583,-2.835705],[29.759825,-2.768976],[29.867145,-2.76578],[29.931513,-2.649629],[29.918833,-2.574545],[29.960922,-2.492749],[29.945093,-2.378495],[30.02434,-2.349601],[30.105845,-2.432224],[30.184278,-2.41847],[30.248987,-2.364304],[30.362087,-2.352499],[30.39336,-2.310553],[30.564408,-2.417881],[30.516453,-2.4687],[30.419981,-2.657842],[30.457598,-2.692539],[30.407255,-2.856773],[30.485052,-2.947957],[30.571642,-2.897041],[30.743656,-2.996557],[30.847717,-3.163778],[30.836933,-3.25414],[30.677912,-3.321291],[30.666921,-3.420379],[30.487581,-3.511953],[30.390545,-3.715807],[30.259924,-3.887548],[30.21981,-4.026513],[30.127422,-4.137979],[30.07534,-4.165472],[30.049816,-4.255608],[29.868317,-4.374803],[29.814556,-4.359261],[29.756708,-4.464615],[29.655046,-4.445394],[29.391476,-4.44525]]]},"properties":{"name":"布隆迪","name_en":"Burundi","id":"BDI"}}, + {"type":"Feature","geometry":null,"properties":{"name":"英属维尔京群岛","name_en":"Virgin Islands(U.K.)","id":"VGB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[23.630833,51.496861],[23.545639,51.605999],[23.53739,51.74511],[23.643389,51.804112],[23.612417,51.873695],[23.696112,51.999054],[23.654417,52.077221],[23.453388,52.184113],[23.213833,52.2215],[23.176889,52.282585],[23.290695,52.446804],[23.407389,52.548389],[23.562639,52.606277],[23.924542,52.669956],[23.938612,53.018776],[23.876499,53.083889],[23.920221,53.158249],[23.778639,53.306305],[23.638222,53.583557],[23.610945,53.742443],[23.505945,53.966583],[23.63611,53.916668],[23.935749,53.966557],[23.997389,53.939724],[24.15525,53.961666],[24.246639,53.919109],[24.43325,53.909222],[24.632223,54.006084],[24.759064,53.954456],[24.841938,54.01965],[24.821545,54.122993],[24.954099,54.162746],[25.077656,54.141216],[25.242239,54.264301],[25.52899,54.295162],[25.586712,54.249744],[25.542711,54.158524],[25.665045,54.140579],[25.796822,54.204521],[25.693129,54.320606],[25.559239,54.346996],[25.722933,54.573635],[25.754044,54.815327],[25.867794,54.922829],[26.221972,55.002514],[26.276138,55.091167],[26.372444,55.152748],[26.61511,55.142445],[26.693501,55.164307],[26.810556,55.322834],[26.558945,55.390388],[26.549889,55.489887],[26.628389,55.580776],[26.619667,55.674362],[26.879417,55.717251],[27.008055,55.831528],[27.175917,55.853222],[27.299667,55.791195],[27.388472,55.813473],[27.602972,55.786472],[27.665167,55.935391],[27.9365,56.06461],[27.969166,56.117554],[28.151333,56.165806],[28.298027,56.068417],[28.402167,56.104557],[28.676195,56.091305],[28.737749,55.966862],[28.851,55.972],[29.103945,56.055363],[29.229195,55.987583],[29.425638,55.964359],[29.372333,55.752666],[29.501304,55.701248],[29.602722,55.768528],[29.812221,55.792389],[30.013056,55.878056],[30.100695,55.834946],[30.201222,55.86525],[30.615305,55.739887],[30.760973,55.603333],[30.939945,55.616612],[30.956499,55.493832],[30.928612,55.38475],[30.840056,55.338028],[30.984417,55.18689],[31.026028,55.068222],[30.943777,54.95961],[30.840805,54.908001],[30.760027,54.807693],[31.100529,54.664806],[31.216278,54.638668],[31.087944,54.50161],[31.236889,54.465195],[31.304167,54.363693],[31.323334,54.256668],[31.553862,54.1395],[31.893168,54.03775],[31.795334,53.808193],[31.904499,53.781776],[32.131443,53.815418],[32.275391,53.776333],[32.439751,53.662777],[32.479668,53.552223],[32.663277,53.464668],[32.761002,53.46339],[32.728779,53.327221],[32.512611,53.269054],[32.307861,53.12936],[32.155388,53.078999],[31.827639,53.118584],[31.755362,53.191502],[31.439501,53.208111],[31.328167,53.038555],[31.389278,52.929112],[31.52339,52.802307],[31.609833,52.531361],[31.572027,52.48811],[31.635944,52.405472],[31.609112,52.319973],[31.712028,52.274918],[31.796806,52.107361],[31.395361,52.135361],[31.280027,52.042473],[31.137417,52.094055],[30.99711,52.0755],[30.715555,51.870361],[30.591,51.661194],[30.522667,51.605083],[30.593361,51.504002],[30.593139,51.428471],[30.663445,51.380085],[30.574194,51.262554],[30.343222,51.357224],[30.256361,51.482224],[30.161611,51.510418],[29.904194,51.484085],[29.784695,51.448334],[29.715805,51.519527],[29.63525,51.505474],[29.526167,51.41478],[29.27475,51.391972],[29.211083,51.565304],[29.22864,51.62714],[29.11175,51.648724],[28.999527,51.565666],[28.911388,51.590637],[28.74939,51.463139],[28.524027,51.586388],[28.404249,51.546165],[28.309889,51.620224],[28.190083,51.651806],[28.018583,51.561863],[27.845083,51.603943],[27.840666,51.544693],[27.749916,51.474998],[27.682278,51.503193],[27.720638,51.62236],[27.265306,51.629307],[27.198778,51.680832],[27.191834,51.784832],[26.79439,51.783974],[26.630612,51.832001],[26.515066,51.800957],[26.416723,51.863937],[26.183575,51.87941],[26.096281,51.925819],[25.831667,51.933777],[25.680445,51.914196],[25.399555,51.927723],[25.297833,51.974972],[25.142084,51.969776],[25.027834,51.918304],[24.394579,51.920864],[24.372898,51.785358],[24.223841,51.655273],[24.000672,51.581779],[23.930443,51.634117],[23.739084,51.660027],[23.649639,51.629112],[23.688667,51.535221],[23.630833,51.496861]]]},"properties":{"name":"白俄罗斯","name_en":"Belarus","id":"BLR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.635475,12.222718],[-61.599243,12.173481],[-61.633442,12.044937],[-61.759617,11.993994],[-61.759583,12.082984],[-61.71809,12.189194],[-61.635475,12.222718]]]},"properties":{"name":"格林纳达","name_en":"GRENADA","id":"GRD"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[20.008398,39.692974],[20.190916,39.644882],[20.390425,39.788277],[20.415417,39.842533],[20.31226,39.990509],[20.395424,39.998947],[20.449659,40.073456],[20.549414,40.063492],[20.677456,40.099098],[20.707558,40.268444],[20.789446,40.361271],[20.844213,40.480377],[20.948006,40.466446],[21.04219,40.557953],[21.057282,40.667602],[20.983522,40.738068],[20.980568,40.855221],[21.259954,40.859878],[21.417091,40.918034],[21.524864,40.909939],[21.567787,40.866589],[21.800362,40.974838],[21.913334,41.051079],[21.931063,41.103779],[22.067457,41.156757],[22.260443,41.166184],[22.416825,41.119354],[22.61149,41.12944],[22.666767,41.186508],[22.747747,41.16547],[22.764927,41.323154],[22.944834,41.346783],[23.096945,41.323193],[23.237722,41.3405],[23.304556,41.409248],[23.543333,41.407917],[23.654888,41.381054],[23.911528,41.463749],[24.076111,41.471279],[24.068556,41.531307],[24.265444,41.580002],[24.371529,41.527138],[24.542305,41.57489],[24.606056,41.452751],[24.832611,41.404888],[24.931944,41.412193],[25.130945,41.345696],[25.237499,41.256638],[25.333529,41.244667],[25.564612,41.320999],[25.736889,41.322613],[25.830389,41.349415],[25.890362,41.30986],[26.135,41.366112],[26.189277,41.530693],[26.069279,41.715805],[26.177166,41.754581],[26.361889,41.719696],[26.596138,41.615471],[26.636862,41.356083],[26.507555,41.335361],[26.311777,41.182499],[26.357277,40.965832],[26.222973,40.89053],[26.132805,40.76189],[26.04114,40.745529],[25.984583,40.83675],[25.92436,40.855835],[25.562723,40.864971],[25.329167,40.950333],[25.134167,40.959667],[25.047028,41.005722],[24.980139,40.932362],[24.891972,40.919888],[24.803139,40.852638],[24.622778,40.885166],[24.54525,40.962387],[24.401832,40.938389],[24.311417,40.822807],[24.077999,40.726944],[23.851223,40.794918],[23.739666,40.754696],[23.703583,40.699085],[23.841,40.528557],[23.870388,40.422085],[23.975,40.387333],[24.192249,40.354862],[24.387138,40.197613],[24.289499,40.168835],[24.16964,40.288582],[24.041861,40.302029],[23.969555,40.35239],[23.852806,40.374863],[23.715611,40.341641],[23.707611,40.284863],[23.787695,40.19714],[23.999111,40.120724],[24.031445,40.024612],[23.936167,39.93911],[23.820168,40.030613],[23.779972,40.122971],[23.663973,40.231304],[23.408556,40.285221],[23.34075,40.220638],[23.369638,40.155499],[23.48636,40.051834],[23.67625,39.974888],[23.596195,39.920361],[23.390194,40.007862],[23.314833,40.105526],[23.323694,40.226696],[23.037111,40.328804],[22.914667,40.387165],[22.836945,40.514946],[22.966862,40.530918],[22.961861,40.625305],[22.755833,40.570137],[22.618416,40.415001],[22.667723,40.360443],[22.556973,40.163055],[22.597889,40.023224],[22.703222,39.961334],[22.721583,39.881584],[22.854389,39.798],[22.939138,39.572613],[23.074278,39.517639],[23.272611,39.326916],[23.353167,39.189667],[23.220333,39.19236],[23.121166,39.308666],[23.016306,39.324554],[22.830584,39.282307],[22.855722,39.159332],[22.995028,39.075638],[23.016945,38.985527],[22.918028,38.924946],[22.759695,38.871777],[22.617445,38.912109],[22.586639,38.828194],[22.705917,38.839695],[22.972084,38.747833],[23.038473,38.75639],[23.150528,38.649418],[23.314556,38.644943],[23.333694,38.538445],[23.420723,38.498249],[23.589056,38.47789],[23.682028,38.344334],[23.772972,38.344028],[23.966362,38.283722],[24.072889,38.205891],[24.057917,38.145054],[23.981666,38.101917],[24.030972,37.997082],[24.020861,37.897335],[24.08725,37.796276],[24.063778,37.678082],[23.946333,37.671528],[23.901167,37.776833],[23.78211,37.811138],[23.672277,37.948307],[23.608999,37.962807],[23.592611,38.040554],[23.459473,38.026749],[23.378055,37.974224],[23.230278,37.975777],[23.143028,37.922806],[23.012472,37.919998],[23.011334,37.84914],[23.11525,37.849972],[23.179472,37.806862],[23.121084,37.748974],[23.174028,37.703194],[23.163305,37.617554],[23.329666,37.533554],[23.322056,37.609779],[23.500416,37.473446],[23.405277,37.403111],[23.26725,37.401165],[23.181917,37.28997],[23.073778,37.354],[23.132584,37.440361],[23.011389,37.46336],[22.976166,37.516693],[22.85375,37.5145],[22.785055,37.587418],[22.721333,37.561779],[22.757166,37.401443],[22.952889,37.121498],[22.994473,36.978584],[23.113083,36.776943],[23.030945,36.73489],[23.032862,36.632416],[23.130917,36.558167],[22.972445,36.524834],[22.832666,36.689083],[22.782055,36.802193],[22.62775,36.808861],[22.565916,36.771221],[22.480083,36.611305],[22.503056,36.447498],[22.390667,36.467751],[22.355139,36.695473],[22.226444,36.895748],[22.134527,36.913445],[22.14839,37.021111],[22.076778,37.034168],[21.932667,36.984417],[21.933666,36.757362],[21.883,36.720333],[21.816833,36.809528],[21.707945,36.816834],[21.7085,36.949223],[21.573111,37.063778],[21.590389,37.207611],[21.669332,37.25811],[21.693417,37.3475],[21.569805,37.53825],[21.408306,37.642277],[21.300278,37.672359],[21.303528,37.757168],[21.121416,37.840721],[21.129194,37.940723],[21.290611,37.988834],[21.361084,38.166721],[21.458529,38.198776],[21.598362,38.145943],[21.662695,38.166889],[21.741945,38.277111],[21.850639,38.339638],[22.017361,38.311943],[22.163973,38.208111],[22.335306,38.179085],[22.415667,38.13372],[22.492277,38.140026],[22.727638,38.038223],[22.797751,37.972946],[22.912834,37.939304],[22.902834,38.023029],[22.951916,38.083832],[23.056223,38.057693],[23.218695,38.107166],[23.116333,38.209332],[22.906529,38.191528],[22.889694,38.235474],[22.459667,38.423779],[22.357471,38.34864],[22.228722,38.356972],[22.183611,38.325974],[22.050806,38.395916],[21.832916,38.389832],[21.77161,38.332165],[21.637251,38.354637],[21.485611,38.351749],[21.341362,38.396778],[21.169584,38.298443],[21.129223,38.397415],[21.01375,38.533474],[21.025583,38.598694],[20.919056,38.671696],[20.8795,38.784557],[20.769806,38.758083],[20.735001,38.795666],[20.752138,38.920444],[20.982306,38.945],[21.067943,38.88028],[21.139305,38.928944],[21.118445,39.041248],[21.038334,39.006748],[20.897861,39.034222],[20.765862,39.033611],[20.484778,39.213554],[20.464167,39.273998],[20.343695,39.289639],[20.282499,39.33186],[20.269306,39.450028],[20.161833,39.535168],[20.188667,39.611057],[20.008398,39.692974]]],[[[26.271166,35.213223],[26.317028,35.185165],[26.235056,35.03611],[26.094444,35],[25.941778,35.037777],[25.801556,35.000889],[25.609556,35.011196],[25.503967,34.981251],[25.380671,34.998657],[25.100954,34.931526],[24.845055,34.942444],[24.738556,34.925167],[24.762277,35.012112],[24.72839,35.090752],[24.563334,35.105583],[24.391306,35.193806],[24.021999,35.200474],[23.83289,35.25264],[23.619583,35.231335],[23.5215,35.299526],[23.571527,35.447109],[23.724417,35.518196],[23.713806,35.662361],[23.768083,35.655777],[23.793833,35.544056],[23.960112,35.516304],[24.051333,35.527054],[24.119749,35.607555],[24.178249,35.590946],[24.244862,35.477779],[24.274639,35.363472],[24.359167,35.353054],[24.610666,35.393555],[24.700945,35.427891],[24.850416,35.409637],[24.971861,35.428417],[25.050112,35.348721],[25.379473,35.342251],[25.440971,35.296555],[25.665556,35.349609],[25.733612,35.305557],[25.730278,35.140415],[25.825722,35.119972],[25.903166,35.184696],[26.031918,35.232113],[26.164362,35.202751],[26.271166,35.213223]]],[[[23.032639,38.88525],[22.960611,38.841331],[22.853361,38.870804],[23.075722,38.94289],[23.095444,38.986668],[23.287611,39.042583],[23.43025,38.961887],[23.444027,38.87114],[23.589417,38.772415],[23.706888,38.7715],[23.757473,38.712418],[23.955139,38.664555],[24.038305,38.686668],[24.150944,38.657612],[24.126528,38.59425],[24.231194,38.528641],[24.185888,38.396473],[24.260139,38.283443],[24.251556,38.235306],[24.354834,38.159473],[24.562973,38.146862],[24.593472,38.06514],[24.557112,37.980526],[24.484112,37.95647],[24.40914,38.014446],[24.351528,37.980526],[24.280361,38.0895],[24.207083,38.090721],[24.209999,38.180778],[24.121416,38.225193],[24.052195,38.39175],[23.806583,38.390141],[23.625334,38.431751],[23.636278,38.508583],[23.594667,38.573444],[23.202,38.836555],[23.060083,38.851528],[23.032639,38.88525]]],[[[26.332527,38.979137],[26.111805,39.071945],[26.278555,39.163555],[26.16725,39.199112],[26.055528,39.093777],[25.873806,39.156502],[25.856527,39.257332],[26.157833,39.325306],[26.182028,39.3825],[26.310639,39.376972],[26.42036,39.34111],[26.378945,39.283249],[26.529917,39.176277],[26.618473,39.036999],[26.542166,38.991112],[26.419167,38.965473],[26.332527,38.979137]]],[[[28.221889,36.457832],[28.244528,36.382389],[28.176695,36.249584],[28.07011,36.11639],[27.956139,36.046417],[27.898028,35.963917],[27.805611,35.895332],[27.726749,35.943111],[27.762528,36.092777],[27.696916,36.162499],[27.769751,36.191971],[27.795584,36.257195],[27.880138,36.32439],[28.221889,36.457832]]],[[[25.990612,38.3955],[25.831278,38.541584],[25.881416,38.592499],[26.001694,38.605667],[26.157139,38.555111],[26.135916,38.408974],[26.157278,38.309334],[26.104166,38.216167],[26.012806,38.153584],[25.891388,38.225693],[25.963806,38.303165],[25.990612,38.3955]]],[[[20.491028,38.132751],[20.338444,38.191696],[20.400778,38.345528],[20.505194,38.320362],[20.632778,38.326195],[20.816805,38.120029],[20.711666,38.070446],[20.613251,38.120499],[20.491028,38.132751]]],[[[19.938055,39.74511],[19.840445,39.700027],[19.938305,39.475056],[19.871889,39.457306],[19.846834,39.553223],[19.675751,39.679359],[19.633139,39.754581],[19.671028,39.797833],[19.800362,39.792778],[19.842472,39.823307],[19.938055,39.74511]]],[[[25.104221,40],[25.229084,40.007889],[25.355583,39.899029],[25.336306,39.787029],[25.250723,39.854557],[25.163723,39.799694],[25.065777,39.843555],[25.047611,39.979637],[25.104221,40]]],[[[26.750694,37.69986],[26.6395,37.701084],[26.600805,37.763973],[26.74214,37.81461],[26.91025,37.77639],[27.017445,37.782806],[27.069723,37.722752],[26.800888,37.642918],[26.750694,37.69986]]],[[[25.448694,36.921196],[25.365723,37.029335],[25.379334,37.114334],[25.538166,37.205471],[25.600639,37.080639],[25.545639,36.956001],[25.448694,36.921196]]],[[[20.99025,37.698555],[20.909195,37.739113],[20.837278,37.686306],[20.696444,37.74675],[20.625944,37.821167],[20.633694,37.884056],[20.705139,37.930557],[20.769083,37.844612],[20.909416,37.806999],[20.99025,37.698555]]],[[[24.61175,40.615723],[24.534056,40.631584],[24.536055,40.722279],[24.654444,40.806194],[24.722334,40.792557],[24.786472,40.634388],[24.654972,40.583973],[24.61175,40.615723]]],[[[24.993999,37.771751],[24.888611,37.763889],[24.710945,37.87814],[24.69739,37.972305],[24.752556,37.99736],[24.941084,37.852333],[24.993999,37.771751]]],[[[20.60511,38.785915],[20.711722,38.830418],[20.737862,38.733196],[20.68325,38.606224],[20.585056,38.619141],[20.559361,38.685638],[20.60511,38.785915]]],[[[27.14261,35.399082],[27.087778,35.451279],[27.116472,35.548248],[27.058834,35.605305],[27.123972,35.647888],[27.223555,35.547306],[27.14261,35.399082]]],[[[27.355888,36.872055],[27.169472,36.805279],[27.105472,36.758083],[26.997473,36.775166],[27.078194,36.853085],[27.277361,36.917389],[27.355888,36.872055]]],[[[23.057443,36.221748],[23.049,36.136971],[22.944471,36.160583],[22.917444,36.301224],[23.005222,36.31086],[23.057443,36.221748]]],[[[26.355167,37.692139],[26.234278,37.574696],[25.988945,37.555889],[26.052278,37.621307],[26.221195,37.636749],[26.355167,37.692139]]],[[[24.594139,38.785027],[24.4835,38.857582],[24.45075,38.950668],[24.58614,38.926777],[24.655556,38.83625],[24.594139,38.785027]]],[[[25,37.670387],[25.051945,37.679863],[25.257279,37.602139],[25.192862,37.527363],[25.06189,37.597332],[25,37.670387]]],[[[25.179611,36.980888],[25.104334,37.015667],[25.160639,37.126057],[25.26989,37.130779],[25.280167,37.063583],[25.179611,36.980888]]],[[[25.61364,40.512779],[25.696083,40.431305],[25.593361,40.402527],[25.460583,40.476387],[25.61364,40.512779]]],[[[24.333805,36.648777],[24.341333,36.744446],[24.495445,36.667721],[24.333805,36.648777]]],[[[24.409889,37.647999],[24.296862,37.527889],[24.271084,37.61647],[24.349695,37.688557],[24.409889,37.647999]]],[[[26.961527,36.927166],[26.922111,36.959026],[26.959139,37.066418],[27.036722,37.018276],[27.044611,36.960556],[26.961527,36.927166]]],[[[24.375223,37.304943],[24.385361,37.450779],[24.471361,37.427696],[24.447167,37.348305],[24.375223,37.304943]]],[[[23.602556,39.189919],[23.742971,39.136082],[23.665056,39.090946],[23.602556,39.189919]]],[[[23.485111,37.677528],[23.421833,37.762749],[23.565001,37.770527],[23.485111,37.677528]]]]},"properties":{"name":"希腊","name_en":"GREECE","id":"GRC"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-52.112854,64.441772],[-52.129166,64.533257],[-52.013061,64.594795],[-52.155182,64.678505],[-51.975456,64.769341],[-51.680076,64.859222],[-51.814678,64.929771],[-51.882446,64.824776],[-51.989338,64.790924],[-52.222217,64.873703],[-52.054672,64.960266],[-52.29142,65.080429],[-52.191193,65.178246],[-52.336727,65.286034],[-52.504665,65.270386],[-52.587933,65.316895],[-52.436085,65.423119],[-52.804329,65.530769],[-52.807797,65.665581],[-53.175923,65.660339],[-53.161011,65.780418],[-53.203224,65.925247],[-53.483841,65.954025],[-53.450211,66.047241],[-52.995327,66.169403],[-52.762974,66.254021],[-52.704147,66.324951],[-52.41235,66.428268],[-52.087623,66.484413],[-51.931068,66.626518],[-51.581875,66.710159],[-51.666092,66.738335],[-52.014847,66.642929],[-52.156593,66.505615],[-52.424049,66.455467],[-52.734798,66.346817],[-52.80542,66.274155],[-53.062443,66.177292],[-53.348301,66.104782],[-53.559402,66.094757],[-53.580216,66.195198],[-53.709538,66.332977],[-53.651283,66.463585],[-53.565216,66.525574],[-53.171078,66.491837],[-53.204285,66.540504],[-53.431881,66.566925],[-53.476235,66.643578],[-53.310558,66.692749],[-53.015167,66.670021],[-52.753254,66.80732],[-53.063324,66.840614],[-52.603726,66.868629],[-52.564827,66.917],[-52.824326,66.882957],[-52.926228,66.905418],[-53.236351,66.92308],[-53.65065,66.907097],[-53.940376,67.116913],[-53.795582,67.181366],[-53.543755,67.199112],[-53.291145,67.248489],[-53.086647,67.245285],[-52.825184,67.296875],[-52.138741,67.371475],[-52.163978,67.401146],[-53.148403,67.278816],[-53.866589,67.238907],[-53.837528,67.403389],[-53.685669,67.467484],[-53.242271,67.563385],[-53.076168,67.689232],[-52.829815,67.72403],[-52.718002,67.694336],[-52.526485,67.768021],[-52.089642,67.717567],[-51.793217,67.62645],[-51.328732,67.678406],[-50.805058,67.765808],[-50.867195,67.812782],[-51.179543,67.75042],[-51.579441,67.741806],[-51.71899,67.686539],[-51.864967,67.747498],[-52.279488,67.770721],[-52.478558,67.808571],[-52.983604,67.759811],[-53.243587,67.62397],[-53.656063,67.493675],[-53.745758,67.600922],[-53.546734,67.709274],[-53.697605,67.804573],[-53.280972,67.875565],[-53.209313,67.952469],[-53.262203,68.011833],[-53.078873,68.058815],[-53.077267,68.189133],[-52.778233,68.119286],[-52.59433,68.193573],[-52.188999,68.084259],[-51.859592,68.035805],[-51.181995,68.064217],[-51.036934,68.007431],[-50.496407,67.92849],[-50.702503,68.035072],[-50.944313,68.042252],[-51.401295,68.172546],[-51.227711,68.205749],[-51.128479,68.362801],[-51.176811,68.411446],[-51.473255,68.396072],[-51.239105,68.285667],[-51.701698,68.269829],[-52.466038,68.172523],[-52.527824,68.247162],[-52.756691,68.22213],[-52.863422,68.265694],[-52.825787,68.390572],[-52.604633,68.464363],[-52.415291,68.561882],[-51.653278,68.522911],[-51.060761,68.594299],[-50.926056,68.692444],[-51.201134,68.802795],[-51.208088,68.91732],[-51.105946,68.955635],[-51.154724,69.030289],[-51.098827,69.136879],[-50.761974,69.126404],[-50.321144,69.135773],[-50.58382,69.224861],[-50.933388,69.177277],[-51.140633,69.197403],[-51.021038,69.324982],[-50.928646,69.35199],[-50.901848,69.512329],[-50.805187,69.570267],[-50.739147,69.724113],[-50.621769,69.784752],[-50.246094,69.755402],[-50.344113,69.880455],[-50.623978,69.924339],[-50.507862,70.044617],[-50.932529,69.970024],[-51.166393,69.963692],[-51.091549,70.073578],[-51.286419,70.067055],[-51.448094,69.970413],[-51.758629,70.017487],[-51.97419,70.010887],[-52.11845,70.051689],[-52.345184,70.0504],[-52.704796,70.230675],[-53.207485,70.344223],[-53.895073,70.382515],[-54.048065,70.415245],[-54.319691,70.57048],[-54.592026,70.677307],[-54.582207,70.717926],[-54.283302,70.803871],[-54.012089,70.832573],[-53.478317,70.758041],[-53.101994,70.777252],[-52.67688,70.741585],[-51.778584,70.473793],[-51.547974,70.424927],[-50.622292,70.325493],[-50.778034,70.417061],[-51.021156,70.423645],[-51.369476,70.556313],[-51.19656,70.579346],[-50.925564,70.517639],[-50.870106,70.68454],[-51.449459,70.707481],[-51.295963,70.806435],[-50.766148,70.78598],[-50.895244,70.863716],[-51.203647,70.854927],[-51.273899,70.890236],[-51.619266,70.928818],[-51.967071,71.028175],[-51.842636,71.07489],[-51.577919,71.015312],[-51.232472,71.015007],[-51.876522,71.135361],[-52.04752,71.098625],[-52.264622,71.123695],[-51.870655,71.252853],[-51.63448,71.247475],[-51.586491,71.317863],[-51.80347,71.342636],[-52.089687,71.234917],[-52.265247,71.294563],[-52.349053,71.389397],[-52.666786,71.375549],[-52.995873,71.423897],[-52.726845,71.52124],[-52.459168,71.561493],[-51.85965,71.595291],[-51.65284,71.714096],[-52.168301,71.616241],[-52.579891,71.634186],[-52.563606,71.681946],[-53.263889,71.710846],[-53.267574,71.81002],[-53.468761,71.806549],[-53.667591,71.748474],[-53.733143,71.655624],[-53.994312,71.610741],[-53.850037,71.547989],[-53.892609,71.450798],[-54.321449,71.381096],[-54.794281,71.361092],[-54.979305,71.441147],[-55.164482,71.389496],[-55.347641,71.403267],[-55.520008,71.469475],[-55.685985,71.641243],[-55.88459,71.690857],[-55.757908,71.759453],[-55.401009,71.811958],[-55.327095,71.878647],[-55.007656,71.892044],[-55.536171,71.992714],[-55.573334,72.047493],[-54.933338,72.246407],[-54.960316,72.412392],[-55.502808,72.394691],[-55.647099,72.45253],[-55.479542,72.526047],[-54.941654,72.481865],[-54.794849,72.492302],[-54.753601,72.671898],[-55.082031,72.723373],[-54.868134,72.80484],[-54.605286,72.829254],[-54.675682,72.90197],[-54.942795,73.000237],[-55.701458,73.092583],[-55.400345,73.148354],[-55.46841,73.270195],[-55.158665,73.420326],[-55.424118,73.453636],[-55.603447,73.563919],[-56.073361,73.656815],[-55.897194,73.843994],[-55.603699,73.866501],[-56.092072,73.962677],[-56.0737,74.04364],[-56.337738,74.086823],[-56.158985,74.202774],[-57.153435,74.104248],[-57.270729,74.137032],[-56.659855,74.210373],[-56.544262,74.287811],[-56.658833,74.360603],[-56.119377,74.376053],[-56.282432,74.482948],[-56.2295,74.536468],[-56.841061,74.70195],[-57.139793,74.73616],[-56.851616,74.813217],[-57.056446,74.923897],[-57.27079,74.903542],[-57.603161,75.006165],[-57.838703,75.019463],[-58.126285,75.104813],[-57.955311,75.144752],[-58.226303,75.202187],[-58.428898,75.299271],[-58.330509,75.341942],[-58.605297,75.396935],[-58.212837,75.437927],[-58.137161,75.518845],[-58.419231,75.588295],[-58.559422,75.663895],[-59.179874,75.798065],[-59.242447,75.882332],[-59.647801,75.831985],[-59.668358,75.970039],[-59.971657,75.962303],[-60.095871,76.030388],[-60.490677,76.045425],[-60.724575,76.0018],[-60.92868,76.168823],[-61.491016,76.171616],[-61.835914,76.20105],[-62.233551,76.289001],[-62.810364,76.221932],[-62.818737,76.307281],[-63.417183,76.382492],[-63.691712,76.188034],[-63.969025,76.137375],[-64.20015,76.242973],[-64.385322,76.255402],[-64.879334,76.187325],[-65.429405,76.027588],[-65.88517,76.101425],[-65.740791,76.152245],[-65.740334,76.277428],[-66.060944,76.257256],[-66.520073,76.103462],[-66.641548,76.209061],[-66.991226,76.2724],[-67.263992,76.201515],[-67.01564,76.139473],[-66.912834,76.06234],[-66.439934,75.927277],[-67.556107,76.032791],[-68.387291,76.080452],[-68.769073,76.162086],[-68.983246,76.26928],[-69.636162,76.375488],[-69.585998,76.430397],[-69.069847,76.480743],[-68.719231,76.589142],[-68.009399,76.581818],[-68.166946,76.691238],[-68.517014,76.664932],[-69.291107,76.680435],[-70.346497,76.802437],[-70.633949,76.795692],[-71.383904,77.016037],[-71.145042,77.141083],[-70.725311,77.16069],[-70.631508,77.208031],[-70.183311,77.245438],[-69.507851,77.23053],[-68.37339,77.170479],[-68.346184,77.206474],[-69.007675,77.254784],[-68.458908,77.366142],[-67.584183,77.391624],[-66.719742,77.358055],[-66.442802,77.44326],[-66.060257,77.443481],[-66.19059,77.599007],[-66.659096,77.678825],[-66.999268,77.689407],[-67.177437,77.594131],[-67.600441,77.524788],[-68.609009,77.514862],[-69.180893,77.459579],[-70.235077,77.588806],[-70.303245,77.664772],[-70.653778,77.684738],[-70.359657,77.764397],[-70.650627,77.786316],[-71.266647,77.7668],[-71.598289,77.857811],[-71.897888,77.890259],[-72.77137,78.108933],[-72.772331,78.364037],[-72.467301,78.529892],[-71.842949,78.563271],[-71.630218,78.6213],[-71.236572,78.643776],[-70.775421,78.624321],[-70.740608,78.688942],[-69.968033,78.752693],[-69.834618,78.800323],[-69.22673,78.815567],[-69.069794,78.955154],[-68.55481,79.042229],[-67.8228,79.056145],[-67.175384,79.151154],[-66.055161,79.115913],[-65.654091,79.215042],[-65.422661,79.322166],[-65.140854,79.373703],[-64.811905,79.537056],[-65.01297,79.866371],[-64.968666,79.975433],[-64.536408,80.022095],[-65.224449,80.078384],[-65.642151,80],[-66.050163,80],[-66.213226,80.069244],[-66.988281,80.044273],[-67.080154,80.139488],[-67.38533,80.17028],[-67.374496,80.348198],[-66.891548,80.40741],[-65.854683,80.666573],[-65.019882,80.76577],[-64.702797,80.961952],[-63.844875,81.059197],[-63.003014,81.204239],[-62.299061,81.185883],[-61.576817,81.058327],[-60.931263,81.166321],[-61.340576,81.346649],[-60.942585,81.43071],[-60.978848,81.54129],[-61.447563,81.737778],[-61.230545,81.81974],[-60.095665,81.938446],[-58.817452,81.83535],[-58.693909,81.673691],[-57.877464,81.581482],[-58.738541,81.903526],[-59.424721,81.966492],[-59.440865,82.007095],[-58.603546,82.104904],[-57.202091,82.176392],[-56.142815,82.246361],[-55.208294,82.250412],[-55.231808,82.314842],[-54.496807,82.364525],[-54.130249,82.311386],[-53.599476,82.11454],[-53.532299,81.922577],[-53.635631,81.797966],[-53.877876,81.692848],[-53.793068,81.546974],[-53.501373,81.557999],[-53.592354,81.661102],[-52.965309,81.829651],[-52.922359,82.030388],[-51.886856,81.921219],[-51.39579,81.90287],[-50.993923,81.95018],[-49.930256,81.865402],[-49.576702,81.955429],[-50.09803,82.02816],[-50.813766,82.211769],[-50.890324,82.369858],[-51.169598,82.502327],[-50.244243,82.525505],[-49.363461,82.48764],[-48.6441,82.33033],[-47.875587,82.262527],[-47.570686,82.186592],[-46.372265,82.095993],[-45.865444,81.9412],[-45.176716,81.781082],[-44.73436,81.768219],[-44.348835,81.815628],[-44.490116,81.942108],[-44.979847,82.026482],[-44.499767,82.108078],[-44.880508,82.190475],[-44.659099,82.281311],[-43.866955,82.329857],[-43.936154,82.418343],[-44.445068,82.486794],[-44.6558,82.564827],[-45.687607,82.724823],[-45.176052,82.787262],[-44.265946,82.761528],[-42.62793,82.781883],[-41.348667,82.715065],[-40.714932,82.576439],[-40.053875,82.548088],[-39.93391,82.62101],[-40.165081,82.718796],[-40.661186,82.718109],[-41.060642,82.783035],[-41.829075,82.841484],[-42.788238,82.85923],[-43.510525,82.843384],[-44.782032,82.858505],[-45.086075,82.934174],[-45.008209,83.001884],[-45.487087,83.100891],[-44.652134,83.169319],[-43.213265,83.124939],[-43.793034,83.220268],[-42.71637,83.27951],[-41.771969,83.187767],[-40.637142,82.972809],[-39.505627,82.962235],[-38.774555,83.013039],[-38.779686,83.076195],[-37.394489,83.149528],[-37.995567,83.205925],[-38.601223,83.201767],[-38.912739,83.434883],[-38.186794,83.403107],[-38.035553,83.495399],[-36.952,83.519699],[-36.44117,83.564423],[-35.327057,83.543434],[-34.746529,83.604172],[-31.842724,83.610184],[-31.245642,83.565903],[-30.314526,83.599258],[-29.235708,83.526337],[-28.602205,83.408806],[-27.835802,83.476509],[-27.380281,83.468132],[-26.284233,83.390656],[-25.718378,83.295662],[-26.144419,83.205177],[-26.989712,83.147133],[-27.666626,83.137436],[-29.339807,83.181854],[-30.353008,83.169342],[-31.763689,83.062096],[-32.539852,83.0504],[-33.845543,82.974587],[-33.638203,82.944572],[-32.088181,82.993584],[-31.684733,82.989677],[-30.145271,83.123077],[-29.454998,83.136452],[-28.347692,83.091667],[-26.863224,83.056519],[-26.104902,83.122093],[-25.171331,83.162064],[-24.766746,83.011635],[-25.11233,82.891434],[-24.551598,82.90284],[-23.415816,82.854385],[-22.8549,82.769287],[-22.550139,82.793266],[-21.455179,82.635002],[-21.330143,82.585014],[-21.841099,82.482307],[-22.379217,82.424446],[-22.556694,82.324356],[-23.168377,82.284325],[-23.688627,82.297745],[-25.082655,82.155357],[-27.623695,82.197853],[-29.180504,82.145493],[-29.640118,82.155418],[-30.00392,82.085571],[-31.363541,81.975014],[-32.688732,81.833221],[-32.650963,81.64621],[-32.111874,81.661118],[-32.068512,81.716614],[-31.49473,81.816101],[-30.034693,81.921349],[-29.234827,81.948998],[-28.82173,81.995689],[-27.73156,82.039909],[-26.801475,82.037788],[-24.55974,81.995125],[-24.570906,81.799538],[-25.073132,81.707642],[-26.70882,81.528236],[-26.445271,81.430016],[-24.95931,81.589722],[-24.272436,81.636864],[-24.249695,81.676773],[-23.220177,81.722992],[-23.298256,81.940247],[-23.128214,82.005226],[-22.357317,82.048965],[-21.256104,82.072388],[-21.004084,81.933029],[-20.998423,81.729431],[-21.314426,81.456314],[-21.661404,81.31797],[-22.683559,81.019814],[-23.3038,80.887695],[-23.14724,80.824356],[-23.608318,80.674835],[-23.223312,80.680092],[-22.834583,80.813484],[-22.886662,80.893341],[-22.400232,80.926056],[-21.303467,81.18132],[-20.687714,81.276917],[-20.592047,81.37722],[-19.836687,81.52874],[-19.229948,81.544067],[-19.366621,81.363457],[-18.451387,81.490639],[-17.067843,81.38076],[-17.146425,81.458229],[-16.854685,81.491402],[-16.967485,81.584274],[-16.423216,81.69059],[-16.467222,81.755524],[-15.856987,81.75425],[-15.62531,81.830948],[-14.649543,81.788338],[-14.140628,81.812874],[-13.572548,81.782982],[-13.092935,81.711449],[-11.959966,81.604042],[-11.728493,81.505775],[-11.312319,81.456688],[-11.564418,81.376907],[-12.280693,81.277069],[-12.818263,81.169373],[-13.343597,81.012192],[-14.316968,81.015167],[-14.447675,80.954514],[-14.102736,80.838867],[-14.536272,80.741966],[-15.210116,80.722099],[-15.472354,80.615913],[-16.047434,80.606682],[-17.068006,80.661064],[-17.666189,80.620316],[-17.974115,80.564026],[-18.49609,80.528091],[-17.988636,80.469261],[-17.381338,80.490662],[-16.985264,80.542053],[-15.792177,80.441338],[-15.841755,80.3685],[-16.196724,80.32312],[-16.270925,80.25647],[-17.005463,80.166054],[-18.063301,80.161667],[-19.406416,80.2556],[-19.937407,80.11132],[-20.119312,79.963631],[-20.447452,79.839012],[-19.938147,79.804855],[-19.726656,79.936867],[-18.975527,80.054657],[-18.630354,80.024567],[-17.694794,80.084282],[-17.372391,80.060379],[-17.311113,79.969475],[-17.64592,79.777603],[-17.942806,79.694008],[-18.212803,79.675713],[-19.009247,79.730629],[-19.373342,79.602737],[-19.334303,79.519165],[-19.600752,79.403549],[-19.438389,79.293961],[-18.829043,79.24707],[-19.351725,79.172043],[-19.355942,79.101715],[-19.95476,79.022064],[-19.725428,78.901192],[-19.951359,78.819183],[-20.456644,78.853195],[-20.866272,78.799751],[-20.949053,78.719238],[-20.789192,78.560318],[-21.266844,78.273613],[-21.208801,78.177475],[-21.438225,78.017738],[-21.669367,77.972168],[-21.951441,77.637878],[-21.378525,77.638199],[-21.350449,77.760948],[-21.012688,77.929565],[-20.616974,77.889748],[-20.056858,77.796394],[-19.264132,77.728287],[-18.998318,77.609688],[-19.290739,77.532936],[-20.015587,77.675995],[-20.261,77.687065],[-20.856687,77.630142],[-20.356884,77.564331],[-20.269115,77.503365],[-20.48805,77.428848],[-20.063429,77.411499],[-20.33474,77.337563],[-19.739826,77.346855],[-19.324419,77.223366],[-19.078543,77.190338],[-19.031689,77.323662],[-18.358563,77.22831],[-18.237753,77.127098],[-18.223978,76.900505],[-18.315125,76.827057],[-18.687523,76.750198],[-18.93589,76.799919],[-19.422216,76.820656],[-19.815214,76.908226],[-20.552708,76.892456],[-20.965498,76.859261],[-20.982681,76.777771],[-21.304117,76.772675],[-21.397621,76.697304],[-21.73329,76.630966],[-22.06946,76.818947],[-22.385885,76.802788],[-22.698996,76.692963],[-22.305717,76.589981],[-21.860041,76.59623],[-21.733875,76.437813],[-21.579319,76.378357],[-21.675686,76.240112],[-21.009474,76.30117],[-20.462429,76.20887],[-20.005474,76.25106],[-19.75491,76.109901],[-20.424234,75.97673],[-20.33861,75.91748],[-19.986235,75.938042],[-19.801088,75.899445],[-19.557419,75.766434],[-19.603248,75.681618],[-19.387241,75.536613],[-19.393608,75.263802],[-19.626618,75.138725],[-19.901764,75.145866],[-20.063259,75.210854],[-19.971188,75.276566],[-20.326218,75.331612],[-20.889706,75.245079],[-20.592905,75.189873],[-20.707699,75.108803],[-20.645529,75.012322],[-20.766731,74.857674],[-20.622219,74.733337],[-20.759891,74.682335],[-20.132196,74.673714],[-19.831112,74.58567],[-19.45355,74.68399],[-19.317818,74.661339],[-19.243019,74.509033],[-18.976839,74.483383],[-19.180485,74.347336],[-19.376742,74.272827],[-19.645615,74.236206],[-20.201357,74.283073],[-20.272749,74.390305],[-20.557657,74.40332],[-20.364508,74.237022],[-20.21578,74.162727],[-21.108028,74.092308],[-21.82987,74.184288],[-21.995238,74.224541],[-22.243021,74.156242],[-22.28042,74.016243],[-22.051882,74.00856],[-21.7461,74.058907],[-21.136667,73.941986],[-20.620745,73.881203],[-20.275026,73.875008],[-20.305637,73.790665],[-20.535252,73.722542],[-20.446264,73.630356],[-20.521482,73.573456],[-20.415912,73.484863],[-20.577042,73.445572],[-21.324757,73.453896],[-21.966101,73.339188],[-22.174103,73.259125],[-22.451714,73.258179],[-22.954355,73.330399],[-23.40139,73.418655],[-24.027903,73.600822],[-24.133749,73.813194],[-24.492922,73.715241],[-24.474486,73.605713],[-24.749086,73.577416],[-24.739937,73.500298],[-25.412365,73.450615],[-25.451271,73.357971],[-25.783068,73.251518],[-26.178385,73.243248],[-26.422417,73.336136],[-26.755184,73.332024],[-26.977049,73.379311],[-27.198809,73.489204],[-27.430105,73.460968],[-27.11406,73.35762],[-26.816601,73.29451],[-26.434866,73.285019],[-26.725595,73.145096],[-27.0674,73.185921],[-27.132418,73.143425],[-26.720501,73.098267],[-26.458868,73.186653],[-26.089525,73.199501],[-25.775166,73.1325],[-25.288469,73.071991],[-25.118015,73.074173],[-25.004503,72.997414],[-25.177904,72.92617],[-25.640926,72.895226],[-25.942871,72.807289],[-26.2444,72.774628],[-26.541939,72.825394],[-26.637228,72.722511],[-26.333118,72.746468],[-26.260385,72.706482],[-25.88203,72.741219],[-25.613892,72.828209],[-25.259676,72.803597],[-25.032219,72.730164],[-24.715492,72.688293],[-24.659842,72.525169],[-25.039333,72.394485],[-24.55699,72.417862],[-24.369871,72.332695],[-23.914701,72.270988],[-23.556023,72.147888],[-23.102077,72.058617],[-23.056578,72.017288],[-22.506103,71.91082],[-22.760149,71.85257],[-22.757511,71.788231],[-22.998844,71.730362],[-22.675644,71.642624],[-22.508692,71.629372],[-22.112289,71.703423],[-22.232004,71.591278],[-22.523714,71.548279],[-22.455652,71.246674],[-22.353842,71.258102],[-22.302423,71.423134],[-22.097033,71.493378],[-21.729669,71.434311],[-21.839596,71.276184],[-21.653858,71.185974],[-21.724983,71.145271],[-21.676968,71.011551],[-21.585253,70.95179],[-21.772049,70.865486],[-21.648659,70.692459],[-21.627272,70.592232],[-21.519121,70.521072],[-21.653059,70.435043],[-21.822201,70.441086],[-22.064983,70.502113],[-22.397224,70.456039],[-22.471264,70.697289],[-22.658421,70.713531],[-22.561531,70.566124],[-22.610844,70.448273],[-23.092981,70.425735],[-23.372076,70.448807],[-23.837238,70.574692],[-24.082794,70.693718],[-24.221943,70.90049],[-24.200256,71.003647],[-24.283758,71.083885],[-24.675203,71.266685],[-25.076786,71.287254],[-25.262003,71.349663],[-25.392557,71.44342],[-25.624874,71.533836],[-26.013352,71.554161],[-26.11598,71.584869],[-26.622273,71.542412],[-26.860998,71.5578],[-27.194496,71.675316],[-27.213274,71.729736],[-27.647753,71.864235],[-27.889152,71.973915],[-28.074377,71.96727],[-28.349052,72.014061],[-28.46534,71.927368],[-28.101124,71.91098],[-27.622248,71.767319],[-27.377941,71.721367],[-27.344454,71.59034],[-26.684934,71.474342],[-26.45875,71.50473],[-26.193329,71.479172],[-25.757158,71.471001],[-25.442182,71.347328],[-25.427525,71.271599],[-25.66255,71.145699],[-26.046486,71.059982],[-26.270212,71.043961],[-26.512295,70.963768],[-26.8039,70.933914],[-27.487459,70.942474],[-27.845663,71.151253],[-27.931469,71.13514],[-27.672369,70.938873],[-28.059778,70.993462],[-28.206037,70.970886],[-27.919817,70.856537],[-28.050388,70.715309],[-28.339512,70.556557],[-28.633871,70.508385],[-28.793413,70.521118],[-29.260515,70.454689],[-29.204266,70.390152],[-28.922911,70.447701],[-28.512814,70.496498],[-28.350738,70.48867],[-28.243572,70.3648],[-27.598209,70.425835],[-27.183348,70.450592],[-27.038877,70.436028],[-26.772547,70.4785],[-26.524704,70.468391],[-26.347611,70.362198],[-26.755739,70.292297],[-26.950178,70.322403],[-27.344683,70.239487],[-27.450895,70.180588],[-27.901224,70.096931],[-28.128311,70.143745],[-28.325052,70.13726],[-28.568956,70.052231],[-28.130156,70.075203],[-27.970345,70.010551],[-27.53244,70.057449],[-27.47364,69.963875],[-27.313446,69.979836],[-27.205957,70.160675],[-26.915594,70.250061],[-26.649679,70.242355],[-26.32789,70.199944],[-25.312044,70.412392],[-25.357389,70.303627],[-25.21442,70.279137],[-25.033888,70.360664],[-24.600164,70.26236],[-23.92082,70.152016],[-23.355503,70.104019],[-22.748108,70.078148],[-22.079143,70.134949],[-22.310446,69.997391],[-22.577442,69.9366],[-22.840248,69.960739],[-23.084064,69.918503],[-22.898218,69.817413],[-23.048664,69.758438],[-23.335588,69.763519],[-23.711115,69.72374],[-23.586025,69.621803],[-23.785877,69.512962],[-24.052132,69.550865],[-24.134146,69.411522],[-24.270477,69.441048],[-24.607187,69.284187],[-24.834705,69.251175],[-25.074633,69.298744],[-25.281402,69.226692],[-24.984159,69.211388],[-25.037485,69.115311],[-25.215782,69.056915],[-25.467098,69.055504],[-25.665724,69.005066],[-25.610489,68.91378],[-25.852774,68.884735],[-25.878795,68.816483],[-26.085827,68.778206],[-26.275215,68.789833],[-26.300736,68.69529],[-26.456487,68.655563],[-26.959557,68.655113],[-27.071537,68.582893],[-27.254841,68.534943],[-27.455641,68.530502],[-27.648913,68.473198],[-28.25456,68.427742],[-28.449121,68.45076],[-28.840353,68.377106],[-28.880036,68.321365],[-29.097582,68.321098],[-29.17301,68.272758],[-29.495508,68.212173],[-29.792191,68.326714],[-29.8472,68.408829],[-30.091123,68.316231],[-29.978386,68.255257],[-30.099155,68.21627],[-30.00774,68.137154],[-30.444281,68.065414],[-30.941815,68.08197],[-31.132204,68.054901],[-31.303757,68.093651],[-31.605997,68.070938],[-31.7605,68.200302],[-32.022514,68.269958],[-32.085884,68.360733],[-32.444184,68.501114],[-32.581844,68.480064],[-32.474564,68.389015],[-32.219658,68.340744],[-32.008953,68.082207],[-32.153522,68.038269],[-32.121216,67.927818],[-32.648891,67.824341],[-32.693646,67.763885],[-32.948223,67.679947],[-33.158074,67.699806],[-33.094174,67.601028],[-33.456009,67.392082],[-33.442577,67.269814],[-33.556293,67.15358],[-33.679764,67.093376],[-33.721806,67.002449],[-33.840229,66.98114],[-34.059368,66.802299],[-34.140209,66.658516],[-34.355808,66.593315],[-34.519173,66.506599],[-34.538017,66.451187],[-34.711693,66.339981],[-34.832535,66.353607],[-35.136558,66.235031],[-35.396923,66.284706],[-35.567043,66.28273],[-35.559601,66.12851],[-35.816101,66.136703],[-35.944454,66.066299],[-35.916142,65.999329],[-36.087155,65.917618],[-36.523457,65.975403],[-36.834423,65.937462],[-37.203827,65.753052],[-37.58511,65.902565],[-37.818859,65.918015],[-37.822041,66.024551],[-37.202099,66.33979],[-37.408996,66.309944],[-37.6283,66.31308],[-37.821922,66.360039],[-38.108635,66.380928],[-38.154045,66.332413],[-37.803883,66.296165],[-37.712258,66.26046],[-37.990288,66.092865],[-37.975418,65.960648],[-38.163944,65.893356],[-38.458801,65.907578],[-38.097309,65.792267],[-38.210617,65.637863],[-38.349831,65.646408],[-38.506096,65.595039],[-39.060295,65.551689],[-39.214939,65.59507],[-39.468315,65.531029],[-39.554546,65.634697],[-39.668522,65.671043],[-39.794212,65.584427],[-39.801533,65.493973],[-40.070641,65.570419],[-40.214623,65.474686],[-39.947266,65.420143],[-39.961708,65.344948],[-39.862343,65.291206],[-39.924644,65.18116],[-40.1278,65.160446],[-40.253647,65.029869],[-40.449547,65.03698],[-40.595848,65.097839],[-40.853867,65.045082],[-41.140865,65.098015],[-40.985889,64.97921],[-41.160401,64.938591],[-41.082233,64.87661],[-40.614754,64.639229],[-40.57753,64.503235],[-40.415634,64.421745],[-40.457291,64.353958],[-40.742684,64.400322],[-41.071911,64.310959],[-41.358364,64.355171],[-41.535797,64.325653],[-41.555881,64.260239],[-41.38784,64.173149],[-40.998356,64.15036],[-40.745003,64.171722],[-40.550812,64.092659],[-40.73621,63.955914],[-40.634884,63.893188],[-40.536656,63.737915],[-40.581814,63.669422],[-40.894909,63.650139],[-40.748123,63.576267],[-40.776794,63.487843],[-40.989388,63.510494],[-41.15847,63.471401],[-41.279881,63.366341],[-41.525452,63.417133],[-41.727375,63.512421],[-41.912277,63.461014],[-41.833401,63.379894],[-41.764256,63.370136],[-41.488174,63.213188],[-41.570377,63.018066],[-41.737915,63.010273],[-41.622501,62.922188],[-41.844276,62.806042],[-42.030441,62.772964],[-42.37365,62.842049],[-42.695244,62.666302],[-42.37965,62.554794],[-42.253716,62.386196],[-42.314736,62.348484],[-42.588818,62.420094],[-42.725792,62.408268],[-42.630898,62.32151],[-42.420177,62.333107],[-42.25832,62.214245],[-42.292194,62.105869],[-42.420693,62.029491],[-42.112084,62.001976],[-42.244721,61.900192],[-42.200542,61.843121],[-42.280789,61.772915],[-42.518524,61.719906],[-42.318626,61.621853],[-42.420536,61.551689],[-42.616928,61.513805],[-42.412113,61.424068],[-42.571445,61.315517],[-42.69109,61.287678],[-42.640537,61.21674],[-42.747646,61.137901],[-42.976505,61.097546],[-42.662636,61.017776],[-42.783634,60.973656],[-42.855537,60.828655],[-42.927475,60.780399],[-42.755821,60.724285],[-42.843681,60.565624],[-43.065204,60.510944],[-43.444019,60.385571],[-43.107742,60.305485],[-43.102482,60.175796],[-43.296085,60.082809],[-43.485756,60.120617],[-44.181183,60.181038],[-44.43705,60.155075],[-44.533611,60.018681],[-44.614403,59.976711],[-44.761696,59.986885],[-44.864994,60.071476],[-45.143749,60.106659],[-45.216698,60.182987],[-45.093613,60.275288],[-44.971779,60.310577],[-44.893971,60.407536],[-44.957703,60.457855],[-45.283371,60.442356],[-45.239689,60.541264],[-45.358314,60.601284],[-45.474075,60.575356],[-45.567314,60.472969],[-45.741257,60.570721],[-45.726181,60.733452],[-45.826294,60.83844],[-46.007385,60.783344],[-46.016792,60.720306],[-46.233284,60.739326],[-46.059517,60.906086],[-46.13232,61.003452],[-46.266189,60.980583],[-46.337685,61.047035],[-46.580929,61.001839],[-46.573788,60.9035],[-46.733177,60.833328],[-46.975952,60.797897],[-47.074406,60.860943],[-46.977448,60.949455],[-47.279141,60.913883],[-47.348328,60.849552],[-47.668018,60.80405],[-47.863495,60.83675],[-48.213593,60.801239],[-48.197582,60.860901],[-47.847126,60.943737],[-48.05426,60.971684],[-48.021862,61.037846],[-48.225696,61.177387],[-48.552506,61.185497],[-48.641529,61.225704],[-48.468044,61.359615],[-48.653019,61.435711],[-48.821369,61.368427],[-48.898556,61.399132],[-48.551567,61.502914],[-48.250969,61.523239],[-48.34766,61.592209],[-48.559398,61.531914],[-48.898846,61.47197],[-49.123543,61.486954],[-49.163914,61.5858],[-49.03196,61.610702],[-49.186516,61.7365],[-49.267872,61.707523],[-49.432388,61.839313],[-49.359654,61.94202],[-49.145741,61.965748],[-48.94458,62.059383],[-49.156944,62.076828],[-49.179428,62.003941],[-49.392346,61.974018],[-49.724018,61.996246],[-49.468861,62.134907],[-49.619949,62.161751],[-49.618629,62.246845],[-49.88269,62.27832],[-50.209526,62.395672],[-50.326683,62.490513],[-50.213451,62.670216],[-50.330654,62.73114],[-50.276741,62.801689],[-50.422825,62.927635],[-50.624767,63.02309],[-50.439602,63.16938],[-50.73291,63.200996],[-50.914303,63.122631],[-51.061577,63.175068],[-51.00729,63.273689],[-51.106007,63.303471],[-51.179409,63.467232],[-51.392231,63.558319],[-51.356316,63.586483],[-51.558967,63.736042],[-51.408611,63.777973],[-51.409439,63.922028],[-51.614384,63.984482],[-51.605095,64.032806],[-51.25182,64.0709],[-50.870506,64.091278],[-50.896313,64.142204],[-51.423599,64.08017],[-51.57914,64.084587],[-51.709217,64.178169],[-51.417858,64.217323],[-51.284153,64.168755],[-51.115711,64.204826],[-50.907349,64.401573],[-50.662373,64.474815],[-50.657226,64.569542],[-50.877632,64.622757],[-50.505047,64.703728],[-50.276951,64.650734],[-50.20237,64.517822],[-50.122166,64.467529],[-49.723099,64.338745],[-49.68943,64.420174],[-49.991604,64.485672],[-50.138511,64.613884],[-50.053257,64.657623],[-50.229973,64.721359],[-50.565796,64.756989],[-50.6446,64.824394],[-50.819168,64.711235],[-51.214932,64.620132],[-51.074612,64.743759],[-51.210182,64.767357],[-51.403332,64.635811],[-51.462471,64.491249],[-51.556973,64.446159],[-51.752533,64.253578],[-52.013233,64.214531],[-52.042541,64.357307],[-52.112854,64.441772]]],[[[-53.629257,70.248573],[-53.290218,70.200012],[-53.053074,70.116661],[-52.732956,69.925751],[-52.52565,69.87458],[-52.021465,69.813698],[-51.852867,69.633636],[-52.068287,69.513947],[-52.233013,69.459076],[-52.79702,69.363182],[-53.000347,69.347595],[-53.562428,69.232307],[-53.853424,69.263267],[-53.907558,69.320831],[-54.160503,69.336494],[-54.284199,69.429459],[-53.962223,69.443169],[-53.923306,69.546684],[-54.675423,69.576691],[-54.989739,69.695412],[-54.799152,69.78598],[-54.943428,69.839127],[-54.755291,69.966606],[-54.85009,70.192551],[-54.762169,70.244003],[-54.348583,70.324692],[-53.629257,70.248573]]],[[[-22.647222,72.361595],[-22.259491,72.285004],[-22.123232,72.170303],[-22.380121,72.12117],[-22.697765,72.172226],[-22.948299,72.242012],[-23.16745,72.341827],[-23.950575,72.4673],[-24.134966,72.561745],[-24.407644,72.611755],[-24.515894,72.846466],[-24.071937,72.883736],[-23.472359,72.839951],[-23.155861,72.837265],[-23.015457,72.74398],[-22.702734,72.636764],[-22.334373,72.582924],[-21.925478,72.481079],[-21.989414,72.396782],[-22.663261,72.468201],[-22.647222,72.361595]]],[[[-47.607597,82.610153],[-46.726704,82.67691],[-46.194489,82.659554],[-44.971989,82.502632],[-44.416344,82.347374],[-45.123287,82.218842],[-44.704769,82.101753],[-45.104885,82.063255],[-45.407093,82.174042],[-46.777504,82.343544],[-47.607597,82.610153]]],[[[-25.697182,71.017433],[-25.422644,70.925903],[-25.291021,70.660362],[-25.816135,70.608154],[-25.909357,70.558762],[-26.151378,70.544212],[-26.261518,70.588875],[-26.587654,70.52475],[-27.886503,70.430435],[-28.145277,70.454941],[-27.98395,70.521515],[-28.071739,70.584953],[-27.924795,70.642723],[-27.719295,70.644569],[-27.565302,70.723976],[-27.308018,70.787987],[-27.042366,70.895363],[-26.780165,70.882187],[-26.486439,70.90667],[-25.72813,71.085686],[-25.697182,71.017433]]],[[[-25,73.307411],[-23.824116,73.199738],[-23.358988,73.192337],[-22.923191,73.143478],[-23.063162,73.097076],[-24.466669,73.025513],[-24.925413,73.071198],[-25.050024,73.113991],[-25.424603,73.111984],[-25.692928,73.166252],[-25.269127,73.407921],[-24.701975,73.432831],[-23.881281,73.37339],[-23.531332,73.323936],[-23.35136,73.22654],[-23.942932,73.247635],[-24.219076,73.294411],[-24.938578,73.325256],[-25,73.307411]]],[[[-23.654419,73.029144],[-23.325418,73.063896],[-22.517628,73.012421],[-21.982985,72.923836],[-22.027317,72.847824],[-21.886231,72.711487],[-22.491255,72.718704],[-22.619984,72.695702],[-22.908371,72.844727],[-23.38554,72.879814],[-24.176796,72.914375],[-24.518582,72.893921],[-24.573473,72.982414],[-23.654419,73.029144]]],[[[-18.263001,75],[-18.452231,74.965782],[-18.903379,75.005615],[-18.832603,75.195717],[-18.853924,75.304634],[-18.526974,75.370331],[-18.331947,75.30394],[-17.882305,75.361008],[-17.850044,75.282135],[-18.056095,75.218575],[-17.895073,75.104134],[-17.331408,75.141563],[-17.363583,75.026077],[-17.515032,74.993446],[-17.902785,75.026756],[-18.263001,75]]],[[[-53.283871,82.292572],[-52.765758,82.305084],[-52.494034,82.193863],[-51.911087,82.1409],[-51.195179,81.991013],[-51.982357,81.98436],[-53.187076,82.110916],[-53.369045,82.180679],[-53.283871,82.292572]]],[[[-45.691956,82.881615],[-46.103718,82.846115],[-46.869839,82.951805],[-46.58897,83.053123],[-45.989369,83.092606],[-45.151787,82.974617],[-45.165951,82.906532],[-45.691956,82.881615]]],[[[-18.909958,76.678986],[-18.722414,76.570183],[-18.79174,76.480118],[-18.457056,76.079216],[-18.656313,76.058998],[-18.847652,76.257339],[-19.175638,76.495873],[-19.045799,76.57856],[-19.146849,76.660248],[-18.909958,76.678986]]],[[[-20.019625,75],[-19.992081,74.917946],[-19.769983,74.831848],[-20.074219,74.705078],[-20.491228,74.744385],[-20.676382,74.81385],[-20.556877,74.90757],[-20.599287,74.983017],[-20.398233,75.038963],[-20.019625,75]]],[[[-19.024799,82.028374],[-18.617922,81.840157],[-19.000128,81.80838],[-19.507128,81.983192],[-19.024799,82.028374]]],[[[-51.238625,69.926193],[-51.049301,69.930542],[-50.674004,69.859306],[-50.723351,69.806549],[-50.984455,69.741005],[-50.969513,69.56617],[-51.153687,69.510582],[-51.262093,69.566124],[-51.393478,69.724243],[-51.213219,69.840691],[-51.238625,69.926193]]],[[[-37.482342,65.694572],[-37.405495,65.618294],[-37.771191,65.553894],[-37.947395,65.590469],[-38.006787,65.715019],[-37.972416,65.790512],[-37.701107,65.903824],[-37.411125,65.813843],[-37.348614,65.765137],[-37.482342,65.694572]]],[[[-53.171352,71.337921],[-52.976398,71.382187],[-52.546955,71.343582],[-52.344616,71.28054],[-52.632382,71.223495],[-52.669594,71.163315],[-52.942924,71.149658],[-53.118,71.199829],[-53.171352,71.337921]]],[[[-40,83.155174],[-39.32864,83.099785],[-39.556995,83.001396],[-40.408379,83.09111],[-40,83.155174]]],[[[-40,82.977486],[-40.611767,83.008377],[-41.472511,83.180382],[-40.979523,83.174713],[-40,82.977486]]],[[[-53.949276,71.16938],[-53.596184,71.313499],[-53.419479,71.171638],[-53.390537,71.093056],[-53.673897,71.030151],[-53.948258,71.103577],[-53.949276,71.16938]]],[[[-43.517502,60],[-43.588326,59.906601],[-43.820774,59.954056],[-43.958496,60.037327],[-44.12553,60.096733],[-44.107979,60.171303],[-43.478634,60.09346],[-43.175823,60.064838],[-43.175354,59.993141],[-43.454453,60.047623],[-43.517502,60]]],[[[-71.752785,77.41272],[-71.369927,77.360962],[-71.700729,77.313805],[-72.134895,77.319031],[-72.556305,77.415337],[-72.347717,77.456413],[-71.752785,77.41272]]],[[[-19.60109,80.022133],[-19.523687,80.165382],[-19.168959,80.208885],[-18.704449,80.117638],[-19.60109,80.022133]]],[[[-55.247189,72.837067],[-55.073898,72.783333],[-55.514942,72.564171],[-55.665512,72.68119],[-55.247189,72.837067]]],[[[-17.586735,77.805252],[-17.842306,77.634552],[-18.219593,77.63401],[-17.98764,77.772675],[-17.586735,77.805252]]],[[[-20,77.92466],[-19.660881,77.846176],[-19.309269,77.851906],[-19.254349,77.757957],[-19.747484,77.786362],[-20.337532,77.880905],[-20,77.92466]]],[[[-40.793827,64.922226],[-40.602718,64.850418],[-40.38747,64.644318],[-40.463474,64.553848],[-40.298462,64.535072],[-40.272827,64.454544],[-40.534538,64.496384],[-40.506443,64.599434],[-40.872375,64.884583],[-40.793827,64.922226]]],[[[-48.277809,82.891975],[-47.500133,82.814621],[-48.336483,82.777534],[-48.277809,82.891975]]],[[[-41.346066,63.347343],[-41.154446,63.268494],[-41.258175,63.198525],[-41.459061,63.22744],[-41.674709,63.352856],[-41.881401,63.432953],[-41.808929,63.481522],[-41.696587,63.485008],[-41.604072,63.412056],[-41.346066,63.347343]]],[[[-17.509397,81.644577],[-17.67452,81.571434],[-18.226839,81.709],[-17.725342,81.71891],[-17.509397,81.644577]]],[[[-19.009138,78.716118],[-19.39551,78.681702],[-19.610401,78.738144],[-19.258827,78.889931],[-19.009138,78.716118]]],[[[-17.63455,79.022026],[-17.938738,79.015373],[-17.608982,79.17083],[-17.368208,79.110657],[-17.63455,79.022026]]],[[[-71.012039,77.372894],[-71.256836,77.455261],[-70.648582,77.46064],[-70.251511,77.396606],[-71.012039,77.372894]]],[[[-55,72.380005],[-55.126842,72.274803],[-55.46933,72.164894],[-55.706325,72.211983],[-55.072121,72.393112],[-55,72.380005]]],[[[-53.445488,71.66674],[-53.310959,71.684998],[-52.843948,71.628716],[-53.137268,71.54171],[-53.456161,71.571373],[-53.445488,71.66674]]],[[[-52.147736,68.714592],[-52.315952,68.640305],[-52.74667,68.628151],[-53.116463,68.568398],[-53.088089,68.637604],[-52.57412,68.71286],[-52.147736,68.714592]]],[[[-50.817223,64.519608],[-50.838318,64.459457],[-50.982521,64.407257],[-51.149589,64.249557],[-51.348427,64.23275],[-51.077797,64.434914],[-51.037948,64.534348],[-50.817223,64.519608]]],[[[-56.624043,73.881844],[-56.14941,73.885246],[-56.249061,73.78907],[-56.624043,73.881844]]],[[[-52.034138,68.116097],[-52.173588,68.113327],[-52.264576,68.187424],[-51.809444,68.217445],[-51.796513,68.177498],[-52.034138,68.116097]]],[[[-43.915092,59.777401],[-44.128483,59.804867],[-44.13308,59.869686],[-43.997521,59.972694],[-43.740296,59.909676],[-43.705833,59.860271],[-43.915092,59.777401]]],[[[-27.476028,70.888756],[-27.394964,70.809441],[-27.662937,70.749741],[-27.753897,70.877113],[-27.476028,70.888756]]],[[[-51.945385,70.865059],[-52.189247,70.881569],[-52.149613,70.96685],[-51.825901,70.94561],[-51.571488,70.875259],[-51.666832,70.840263],[-51.945385,70.865059]]],[[[-56.783783,74.552994],[-56.788582,74.499161],[-57.18951,74.475525],[-57.259377,74.511719],[-56.783783,74.552994]]],[[[-19.21282,74.573425],[-18.88958,74.669876],[-18.750894,74.650146],[-18.814281,74.533066],[-19.21282,74.573425]]],[[[-48.068989,60.812058],[-47.777031,60.802887],[-47.866783,60.695198],[-48.070343,60.680893],[-48.20776,60.7939],[-48.068989,60.812058]]],[[[-20,81.553268],[-19.697628,81.645523],[-19.35725,81.581284],[-20,81.553268]]],[[[-42.461418,62.737629],[-42.378109,62.785984],[-42.184284,62.788227],[-41.997291,62.754688],[-42.031445,62.693169],[-42.370624,62.692013],[-42.461418,62.737629]]],[[[-25,72.902054],[-24.85487,72.790955],[-25.195164,72.821281],[-25,72.902054]]],[[[-46.586033,60.828674],[-46.298908,60.925217],[-46.351742,60.827766],[-46.784451,60.734798],[-46.741211,60.795853],[-46.586033,60.828674]]],[[[-51.878601,68.100166],[-51.441643,68.151375],[-51.294533,68.095581],[-51.794167,68.062676],[-51.878601,68.100166]]],[[[-20.751976,76.407791],[-21.138014,76.4123],[-20.950415,76.50351],[-20.751976,76.407791]]],[[[-56.081787,72.665978],[-56.194569,72.719788],[-55.747776,72.785881],[-55.707443,72.7183],[-56.081787,72.665978]]],[[[-51.255863,64.525604],[-51.202911,64.425407],[-51.316643,64.360184],[-51.43045,64.406273],[-51.255863,64.525604]]],[[[-45.243351,60.351158],[-45.183743,60.259331],[-45.347229,60.186157],[-45.402874,60.228409],[-45.372715,60.368038],[-45.243351,60.351158]]],[[[-44.443329,60],[-44.451489,60.125706],[-44.279957,60.117672],[-44.208969,60.029648],[-44.422344,59.937119],[-44.443329,60]]],[[[-44.006188,60],[-44.125969,59.906734],[-44.304062,59.860321],[-44.362522,59.919636],[-44.175278,60.017807],[-44.006188,60]]],[[[-53.073933,65.633667],[-52.851364,65.6035],[-53.032486,65.535889],[-53.242275,65.596008],[-53.073933,65.633667]]],[[[-23.229647,69.696831],[-23.31538,69.641708],[-23.61076,69.716103],[-23.314054,69.753441],[-23.229647,69.696831]]],[[[-53.032108,68.469444],[-52.868248,68.450653],[-52.988808,68.367439],[-53.244717,68.414566],[-53.032108,68.469444]]],[[[-51.454212,70.641365],[-51.924572,70.658249],[-51.92778,70.732765],[-51.704472,70.729576],[-51.454212,70.641365]]],[[[-55.430203,71.891075],[-55.572727,71.829346],[-55.762283,71.908386],[-55.536747,71.944527],[-55.430203,71.891075]]],[[[-40.820129,64.314674],[-40.721905,64.232193],[-41.040302,64.213997],[-40.988182,64.292053],[-40.820129,64.314674]]],[[[-55,70.486145],[-54.664028,70.408501],[-54.977779,70.390251],[-55,70.486145]]],[[[-51.921848,68.654961],[-51.976673,68.59639],[-52.123905,68.567741],[-52.33984,68.580582],[-52.248077,68.65255],[-51.984321,68.619774],[-51.921848,68.654961]]],[[[-52.883182,66.889679],[-53.000282,66.879097],[-53.218578,66.814903],[-53.244282,66.887383],[-52.883182,66.889679]]]]},"properties":{"name":"格陵兰(丹)","name_en":"Greenland (Den.)","id":"GRL"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-5.709515,-15.897677],[-5.639012,-15.944615],[-5.749873,-16.020315],[-5.792052,-15.989304],[-5.709515,-15.897677]]],[[[-12.297626,-37.061115],[-12.213977,-37.117291],[-12.272548,-37.168121],[-12.352997,-37.118221],[-12.297626,-37.061115]]]]},"properties":{"name":"圣赫勒拿","name_en":"SAINT HELENA","id":"SHN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[1.439916,42.606499],[1.554417,42.658695],[1.690195,42.634918],[1.77,42.57164],[1.7235,42.50386],[1.515417,42.435081],[1.452528,42.448277],[1.439916,42.606499]]]},"properties":{"name":"安道尔","name_en":"Andorra","id":"AND"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[29.032165,-2.749662],[28.895725,-2.663625],[28.890863,-2.48307],[28.867539,-2.428291],[28.949511,-2.377315],[29.009407,-2.290667],[29.087776,-2.280179],[29.1686,-2.147989],[29.176296,-2.095814],[29.126463,-1.882589],[29.244518,-1.704179],[29.265423,-1.638326],[29.356497,-1.519772],[29.454336,-1.501625],[29.5194,-1.419934],[29.595316,-1.392395],[29.702852,-1.35485],[29.877251,-1.369634],[29.913498,-1.483161],[30.159571,-1.349256],[30.171145,-1.304084],[30.339556,-1.13228],[30.348373,-1.068344],[30.476864,-1.062396],[30.47368,-1.12594],[30.559937,-1.339275],[30.732616,-1.447708],[30.74449,-1.526573],[30.830462,-1.64703],[30.81222,-1.733731],[30.828257,-1.856863],[30.8053,-1.928111],[30.895958,-2.078556],[30.842756,-2.230204],[30.848717,-2.314381],[30.765104,-2.388607],[30.713615,-2.356321],[30.65958,-2.410769],[30.564408,-2.417881],[30.39336,-2.310553],[30.362087,-2.352499],[30.248987,-2.364304],[30.184278,-2.41847],[30.105845,-2.432224],[30.02434,-2.349601],[29.945093,-2.378495],[29.960922,-2.492749],[29.918833,-2.574545],[29.931513,-2.649629],[29.867145,-2.76578],[29.759825,-2.768976],[29.533583,-2.835705],[29.451219,-2.801625],[29.352738,-2.811218],[29.33,-2.657213],[29.076717,-2.592048],[29.04664,-2.622728],[29.032165,-2.749662]]]},"properties":{"name":"卢旺达","name_en":"Rwanda","id":"RWA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[74.87801,37.22397],[74.829696,37.329166],[74.706802,37.380501],[74.544052,37.398556],[74.424614,37.388222],[74.344696,37.416332],[74.222252,37.348026],[73.963501,37.292168],[73.752083,37.222832],[73.627335,37.244335],[73.660614,37.30661],[73.766586,37.338585],[73.755974,37.435001],[73.569916,37.44175],[73.510086,37.47036],[73.367691,37.437973],[73.308418,37.462418],[73.156059,37.407833],[73.075302,37.317638],[72.817802,37.229279],[72.675636,37.026222],[72.318726,36.977055],[72.047142,36.834026],[71.830223,36.687054],[71.666832,36.67786],[71.560585,36.756695],[71.427193,37.055111],[71.446442,37.173973],[71.499001,37.308193],[71.473114,37.384056],[71.523026,37.478222],[71.493942,37.538139],[71.589081,37.796501],[71.578247,37.927891],[71.529389,37.954166],[71.326836,37.885139],[71.26017,37.93375],[71.371361,38.207554],[71.327446,38.294529],[71.181747,38.338249],[71.162918,38.379276],[70.993057,38.481667],[70.678108,38.407166],[70.605972,38.34325],[70.502777,38.127945],[70.365364,38.051777],[70.278053,37.940861],[70.174668,37.92189],[70.196747,37.842529],[70.281113,37.811554],[70.306137,37.695915],[70.250053,37.611973],[70.102142,37.524666],[69.953888,37.563972],[69.908081,37.616779],[69.818192,37.573834],[69.524246,37.584999],[69.367164,37.405499],[69.417137,37.234806],[69.398415,37.172722],[69.248833,37.097305],[69.126472,37.17186],[69.007942,37.300777],[68.887337,37.27314],[68.680496,37.276165],[68.639053,37.207249],[68.436531,37.148777],[68.023834,36.928276],[67.903999,37.019222],[67.899055,37.06422],[67.786529,37.093945],[67.789833,37.184776],[67.820778,37.234806],[67.828361,37.463276],[67.938751,37.640278],[68.042724,37.736584],[68.128754,37.877277],[68.270279,37.90939],[68.284553,37.984028],[68.369919,38.078472],[68.402641,38.195],[68.320335,38.292526],[68.233582,38.32864],[68.196747,38.406055],[68.068474,38.540668],[68.127693,38.741196],[68.072975,38.803501],[68.196976,38.851307],[68.199081,38.926109],[68.115364,39.010029],[67.975693,39.033333],[67.715362,38.999668],[67.677864,39.144001],[67.462082,39.203194],[67.39228,39.299835],[67.518974,39.338696],[67.425468,39.496971],[67.498726,39.571861],[67.628166,39.600029],[67.713692,39.656445],[67.796776,39.654362],[68.034142,39.576111],[68.514893,39.534084],[68.62664,39.650749],[68.591888,39.724304],[68.716247,39.869335],[68.912941,39.904335],[68.812385,40],[68.889389,40.068028],[69.014221,40.080223],[68.977386,40.151669],[68.872864,40.146362],[68.608414,40.091778],[68.53833,40.14061],[68.77533,40.197723],[68.999473,40.220528],[69.316139,40.201584],[69.259247,40.248196],[69.338997,40.347889],[69.273941,40.495361],[69.363388,40.615528],[69.348358,40.712082],[69.40097,40.782028],[69.547859,40.753502],[69.667664,40.629944],[69.767555,40.688778],[69.922752,40.703888],[70.080277,40.765167],[70.155197,40.834332],[70.21492,40.826305],[70.370476,40.928944],[70.440529,41.041222],[70.534553,40.992085],[70.673836,40.848389],[70.654724,40.761528],[70.789665,40.72514],[70.735496,40.657585],[70.630333,40.620918],[70.494835,40.511391],[70.332664,40.449249],[70.385223,40.376499],[70.550529,40.34589],[70.570999,40.244694],[70.645614,40.165028],[70.967613,40.2285],[70.962692,40.158112],[70.82428,40.159752],[70.759056,40.089863],[70.565086,40.020695],[70.26886,40.131722],[70.215164,40.128334],[70.039948,40.23875],[69.701279,40.116417],[69.562553,40.103832],[69.507057,40.033833],[69.533081,39.932919],[69.426003,39.906113],[69.373085,40.020443],[69.276611,39.791138],[69.320305,39.709473],[69.340195,39.539249],[69.483276,39.524887],[69.626137,39.585167],[69.712113,39.59325],[69.867332,39.523445],[69.932053,39.577084],[70.013168,39.539555],[70.108498,39.584],[70.272781,39.527279],[70.374947,39.590973],[70.484779,39.612583],[70.660614,39.565971],[70.761444,39.462471],[70.768028,39.399361],[70.912414,39.383305],[71.066055,39.414223],[71.089668,39.499168],[71.258583,39.548916],[71.551025,39.58736],[71.562447,39.454861],[71.786469,39.443417],[71.75267,39.323971],[71.802025,39.273693],[71.918747,39.280277],[72.035637,39.366501],[72.106697,39.264637],[72.263031,39.210861],[72.349525,39.330002],[72.595108,39.357307],[72.690971,39.384445],[72.785751,39.342888],[73.095696,39.373444],[73.212997,39.356224],[73.238777,39.405693],[73.355141,39.39753],[73.390114,39.451248],[73.610675,39.465853],[73.542432,39.269661],[73.639492,39.22049],[73.768499,39.026235],[73.846409,38.96234],[73.736573,38.923038],[73.699342,38.857703],[73.770844,38.771123],[73.79916,38.611069],[74.011803,38.524922],[74.166956,38.669214],[74.514428,38.635926],[74.708724,38.549276],[74.79294,38.536098],[74.864526,38.46858],[74.868216,38.403896],[74.790825,38.332909],[74.821672,38.10304],[74.911236,37.967042],[74.917473,37.845069],[75.006547,37.771006],[74.897823,37.672886],[74.940473,37.559134],[75.080791,37.507091],[75.153245,37.409406],[75.119092,37.316905],[74.927113,37.277622],[74.87801,37.22397]]],[[[70.673615,39.895248],[70.725441,39.849972],[70.627976,39.798695],[70.506302,39.894859],[70.673615,39.895248]]]]},"properties":{"name":"塔吉克斯坦","name_en":"TAJIKISTAN","id":"TJK"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.09214,6.243945],[102.08786,6.143],[101.940193,5.983111],[101.938332,5.871639],[101.821808,5.774556],[101.671112,5.791472],[101.656166,5.875167],[101.583969,5.933694],[101.482971,5.870361],[101.396889,5.876389],[101.348335,5.811028],[101.270164,5.810083],[101.262192,5.721917],[101.213669,5.6605],[101.127586,5.626861],[101.084084,5.709111],[100.984192,5.799278],[101.031754,5.918167],[101.085197,5.913195],[101.125893,6.108333],[101.094307,6.258889],[100.850754,6.231194],[100.817108,6.436167],[100.751167,6.460778],[100.661331,6.441945],[100.491028,6.5165],[100.36422,6.537472],[100.306946,6.601917],[100.293861,6.699695],[100.171387,6.68875],[100.159164,6.495306],[100.12117,6.422583],[100.097191,6.545361],[100.049858,6.515778],[99.777527,6.83725],[99.715942,6.85475],[99.74128,6.953055],[99.673248,7.027528],[99.743164,7.122778],[99.616058,7.134111],[99.530304,7.249444],[99.428886,7.299333],[99.344276,7.373528],[99.351166,7.435278],[99.258003,7.629528],[99.165726,7.731222],[99.098083,7.685083],[99.020973,7.755084],[99.084892,7.889555],[99.075165,7.945806],[98.97258,7.930861],[98.905251,8.039861],[98.763359,8.039945],[98.752083,8.184083],[98.705192,8.311222],[98.62664,8.283472],[98.631363,8.378805],[98.48642,8.31625],[98.470001,8.222834],[98.407333,8.136583],[98.28183,8.251416],[98.207581,8.553083],[98.244247,8.595417],[98.235809,8.717055],[98.265526,8.852083],[98.33242,8.972667],[98.32161,9.030666],[98.379364,9.069111],[98.318054,9.203389],[98.362587,9.227305],[98.399803,9.401195],[98.439476,9.504027],[98.504585,9.55425],[98.466446,9.607611],[98.559135,9.734055],[98.519219,9.850472],[98.587944,9.944861],[98.691834,10.162806],[98.681747,10.177584],[98.756164,10.385361],[98.821724,10.526694],[98.775665,10.629194],[98.791832,10.68225],[98.927887,10.822278],[99.001747,10.831555],[99.032417,10.965138],[99.17453,11.040083],[99.325165,11.27625],[99.32122,11.311973],[99.409805,11.396639],[99.402611,11.460944],[99.457695,11.493389],[99.467583,11.589306],[99.570579,11.625417],[99.639892,11.728389],[99.662781,11.827111],[99.583725,11.905583],[99.60128,11.970222],[99.553055,12.010445],[99.559891,12.145833],[99.504753,12.182889],[99.415169,12.472083],[99.443916,12.581639],[99.254997,12.721027],[99.188225,12.917417],[99.204697,12.958472],[99.111443,13.073778],[99.141167,13.195528],[99.209724,13.197083],[99.214226,13.455944],[99.181274,13.579056],[99.176613,13.715305],[99.132942,13.763473],[99.058609,13.935389],[99.028778,13.946389],[98.963608,14.097278],[98.890915,14.116583],[98.70211,14.266528],[98.610443,14.314639],[98.604332,14.366889],[98.426918,14.623722],[98.303306,14.739417],[98.256142,14.815],[98.254837,14.907639],[98.218529,14.988472],[98.237831,15.035944],[98.190613,15.111055],[98.204941,15.218083],[98.26889,15.237139],[98.319779,15.308139],[98.506836,15.381722],[98.583641,15.362028],[98.592087,15.436861],[98.559723,15.598056],[98.579613,15.784194],[98.614136,15.857028],[98.58783,15.908139],[98.617302,16.051445],[98.70208,16.144417],[98.806,16.115278],[98.847031,16.141472],[98.855614,16.238832],[98.900001,16.264723],[98.917503,16.394751],[98.819031,16.380861],[98.674858,16.285917],[98.643692,16.408472],[98.662972,16.452667],[98.578529,16.56275],[98.572639,16.624584],[98.467888,16.7255],[98.537918,16.888584],[98.456779,17.0165],[98.349831,17.041416],[98.293694,17.14986],[98.178002,17.255388],[97.998024,17.504694],[97.802193,17.674973],[97.777695,17.750805],[97.678528,17.867001],[97.742027,17.978582],[97.623192,18.216333],[97.62986,18.309834],[97.560944,18.337055],[97.507309,18.264528],[97.453667,18.384445],[97.449142,18.493805],[97.671524,18.577833],[97.76767,18.579222],[97.773445,18.691278],[97.747803,18.842251],[97.671165,18.945444],[97.738502,19.031195],[97.832031,19.098972],[97.841973,19.295584],[97.804253,19.406473],[97.887001,19.505611],[97.863556,19.573639],[98.028275,19.640806],[98.045166,19.808584],[98.171142,19.77014],[98.248527,19.679806],[98.515221,19.716055],[98.582527,19.707527],[98.710335,19.760361],[98.778473,19.757694],[98.833748,19.809944],[98.924584,19.744139],[99.003555,19.775249],[99.034943,19.843666],[99.026642,19.931139],[99.070725,20.088499],[99.167809,20.127945],[99.251724,20.1145],[99.330475,20.064112],[99.429192,20.08639],[99.537277,20.144751],[99.521858,20.361221],[99.688667,20.315472],[99.826111,20.348917],[99.883919,20.442139],[99.949448,20.449444],[100.093056,20.355749],[100.106247,20.252832],[100.17897,20.2405],[100.271164,20.394278],[100.362946,20.369249],[100.421837,20.248556],[100.52739,20.140167],[100.553337,20.028584],[100.508637,19.884445],[100.454529,19.843277],[100.411804,19.746889],[100.487419,19.55261],[100.577637,19.502056],[100.642525,19.558083],[100.756584,19.512806],[100.826584,19.535278],[100.892975,19.628639],[101.034447,19.630472],[101.123886,19.575277],[101.246559,19.602751],[101.286613,19.567333],[101.271141,19.487556],[101.21878,19.472528],[101.208946,19.349833],[101.256447,19.240168],[101.258583,19.128166],[101.355247,19.046667],[101.250915,18.893694],[101.270531,18.697027],[101.188057,18.562471],[101.110558,18.52725],[101.058052,18.428778],[101.18,18.342306],[101.150559,18.256277],[101.169998,18.097834],[101.088806,17.9235],[100.98336,17.757389],[101.017364,17.693472],[100.960083,17.57214],[101.051834,17.545334],[101.166557,17.466833],[101.267059,17.595667],[101.47097,17.751778],[101.574364,17.801556],[101.626053,17.890722],[101.737472,17.918222],[101.787865,18.06875],[101.892365,18.026916],[102.084419,18.219749],[102.146858,18.215473],[102.292748,18.058222],[102.475525,17.967972],[102.587387,17.966723],[102.589996,17.845917],[102.667526,17.806862],[102.690414,17.871555],[102.938805,18.003305],[103.045082,17.984777],[103.082054,18.037472],[103.087608,18.135555],[103.155281,18.177778],[103.178863,18.26425],[103.287277,18.29875],[103.243248,18.367222],[103.31472,18.435694],[103.513664,18.437471],[103.644501,18.388527],[103.700775,18.344473],[103.819275,18.33939],[103.879417,18.291916],[103.934136,18.333918],[104.004975,18.305529],[104.106804,18.116888],[104.225525,17.981277],[104.261414,17.895222],[104.346558,17.833944],[104.466919,17.667223],[104.689026,17.542862],[104.802971,17.400139],[104.819809,17.254028],[104.79583,17.13611],[104.733276,17.017027],[104.774475,16.711584],[104.737747,16.565889],[104.844887,16.456167],[104.897224,16.348362],[105.012413,16.249306],[105.051865,16.117556],[105.210831,16.050528],[105.414055,16.013166],[105.345802,15.920777],[105.399361,15.800777],[105.463608,15.746667],[105.51461,15.761917],[105.602806,15.718528],[105.637863,15.657805],[105.593414,15.419639],[105.496559,15.38275],[105.474671,15.334278],[105.583969,15.313167],[105.499641,15.201056],[105.468636,15.123056],[105.583778,14.998362],[105.55014,14.924694],[105.57972,14.8795],[105.514252,14.801111],[105.535057,14.552806],[105.432663,14.415334],[105.360054,14.373362],[105.213165,14.336],[105.134941,14.224444],[105.051888,14.214222],[104.997887,14.30575],[105.000809,14.368111],[104.805336,14.434334],[104.759056,14.406333],[104.64611,14.421333],[104.578026,14.354389],[104.476776,14.344666],[104.205696,14.400611],[104.023865,14.332889],[103.854195,14.366667],[103.532723,14.408916],[103.469002,14.36225],[103.272224,14.3455],[103.092697,14.292639],[102.961304,14.201278],[102.902496,14.054444],[102.794998,13.932305],[102.727531,13.763611],[102.609085,13.699695],[102.567558,13.577027],[102.45314,13.557917],[102.371193,13.574945],[102.351585,13.297778],[102.406524,13.146389],[102.499969,13.016666],[102.48967,12.946889],[102.543304,12.813778],[102.506302,12.692639],[102.64328,12.603416],[102.719223,12.523861],[102.792221,12.406111],[102.744636,12.368861],[102.715614,12.172611],[102.781387,12.048333],[102.783722,11.980361],[102.853058,11.828806],[102.916969,11.746],[102.919525,11.636111],[102.907837,11.724722],[102.772087,11.913667],[102.763611,12.0315],[102.550919,12.203305],[102.563553,12.113694],[102.368362,12.186666],[102.292557,12.185611],[102.264252,12.304055],[102.13092,12.405583],[102.093361,12.462222],[101.981056,12.541667],[101.943642,12.531278],[101.860695,12.646277],[101.785469,12.697778],[101.68158,12.692445],[101.648247,12.648806],[101.453476,12.629723],[101.423943,12.586695],[101.28939,12.651],[101.106781,12.676389],[100.972999,12.643611],[100.863441,12.648861],[100.839722,12.727695],[100.913803,12.825639],[100.864113,12.925083],[100.929863,12.994111],[100.882889,13.104806],[100.942307,13.203611],[100.913254,13.286667],[100.989113,13.383139],[100.962387,13.467305],[100.702248,13.500195],[100.618332,13.53375],[100.558723,13.503472],[100.25383,13.476944],[100.079308,13.421223],[99.952835,13.308722],[99.949997,13.265028],[100.074059,13.1495],[100.098198,13.044945],[100.042168,12.963889],[99.972473,12.771778],[99.954086,12.590361],[99.997696,12.385222],[99.971886,12.272028],[100.020752,12.187222],[99.961167,12.085667],[99.877609,12.010612],[99.822471,11.901139],[99.807503,11.7415],[99.733193,11.689584],[99.67022,11.577416],[99.563141,11.334222],[99.553276,11.25375],[99.488136,11.111861],[99.504135,11.006528],[99.497109,10.873777],[99.442833,10.868972],[99.379524,10.708417],[99.311859,10.658611],[99.243698,10.540916],[99.231163,10.459306],[99.283028,10.409139],[99.148476,10.347],[99.219719,10.226973],[99.149918,10.119389],[99.180946,10.024777],[99.153053,9.988889],[99.166832,9.85625],[99.141052,9.792027],[99.164948,9.676111],[99.263138,9.450556],[99.306526,9.406],[99.220779,9.336139],[99.224029,9.255139],[99.366692,9.191334],[99.49453,9.208333],[99.52478,9.277028],[99.612137,9.267445],[99.687081,9.33525],[99.80497,9.300667],[99.883583,9.208278],[99.909447,9.096472],[99.917335,8.882527],[99.956528,8.619333],[100.045975,8.526389],[100.080643,8.430611],[100.146698,8.37675],[100.222221,8.426389],[100.294914,8.181472],[100.377724,7.757111],[100.472999,7.408056],[100.539719,7.273139],[100.637085,7.172833],[100.78389,6.969306],[100.854889,6.955833],[101.018555,6.850028],[101.148636,6.855472],[101.367081,6.899222],[101.533386,6.860389],[101.570778,6.832944],[101.771385,6.511806],[101.967247,6.324305],[102.09214,6.243945]]],[[[98.301331,7.75325],[98.26197,7.920084],[98.293609,8.013139],[98.27433,8.076389],[98.347778,8.115306],[98.424141,8.04575],[98.390778,7.957611],[98.421913,7.898889],[98.301331,7.75325]]],[[[100,9.570806],[100.053833,9.557639],[100.055611,9.468361],[100.011307,9.421],[99.938721,9.428722],[99.921059,9.573389],[100,9.570806]]],[[[102.436806,11.949333],[102.30497,11.97125],[102.25222,12.132055],[102.354889,12.107972],[102.436806,11.949333]]],[[[99.612946,6.614722],[99.679581,6.686139],[99.698135,6.543417],[99.644836,6.514278],[99.612946,6.614722]]],[[[100,9.790139],[100.06311,9.785277],[100.07978,9.681084],[99.990608,9.706722],[100,9.790139]]]]},"properties":{"name":"泰国","name_en":"THAILAND","id":"THA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.754051,18.030148],[-71.924667,18.187084],[-72.05796,18.235636],[-72.194778,18.220591],[-72.330986,18.230953],[-72.549339,18.224146],[-72.632195,18.187496],[-72.743927,18.179031],[-72.812866,18.138159],[-73.006462,18.188679],[-73.170715,18.213902],[-73.332298,18.220705],[-73.385841,18.274424],[-73.606323,18.214378],[-73.699959,18.215466],[-73.833595,18.13467],[-73.781349,18.047737],[-73.897644,18.029169],[-73.981743,18.168074],[-74.092331,18.250193],[-74.22316,18.312107],[-74.365997,18.296494],[-74.44487,18.351299],[-74.476806,18.430822],[-74.414017,18.583742],[-74.421044,18.62442],[-74.298088,18.667784],[-74.133827,18.669861],[-74.032669,18.608053],[-73.850296,18.575283],[-73.78656,18.539303],[-73.662018,18.554794],[-73.582619,18.505823],[-73.518234,18.532768],[-73.179489,18.492615],[-73.092323,18.449367],[-73.012428,18.470299],[-72.719116,18.429539],[-72.617927,18.555952],[-72.404221,18.556944],[-72.312401,18.663589],[-72.45829,18.753977],[-72.538208,18.776049],[-72.643639,18.916502],[-72.723442,18.952284],[-72.811455,19.032562],[-72.767494,19.092602],[-72.703415,19.099062],[-72.792465,19.212177],[-72.754532,19.325781],[-72.678528,19.413267],[-72.762779,19.451195],[-72.86541,19.538334],[-73.050728,19.631779],[-73.180305,19.643095],[-73.36245,19.625431],[-73.432869,19.667532],[-73.447998,19.761913],[-73.344772,19.839575],[-73.147301,19.92852],[-72.99559,19.916996],[-72.778541,19.949974],[-72.573929,19.891077],[-72.469925,19.821732],[-72.30246,19.76137],[-72.242119,19.786381],[-72.009277,19.696667],[-71.948151,19.728029],[-71.757805,19.702724],[-71.738747,19.584814],[-71.675033,19.441677],[-71.764893,19.315668],[-71.747078,19.279165],[-71.613357,19.201639],[-71.633957,19.129425],[-71.815666,18.991751],[-71.716957,18.825472],[-71.737732,18.730448],[-71.807724,18.636812],[-71.965851,18.653511],[-71.95224,18.581852],[-71.877922,18.505085],[-71.900253,18.458145],[-71.786385,18.37888],[-71.692856,18.341171],[-71.779861,18.175028],[-71.731537,18.080132],[-71.754051,18.030148]]],[[[-73.163887,18.956203],[-72.930961,18.856237],[-72.848358,18.836039],[-72.79808,18.749256],[-72.831978,18.720102],[-73,18.745632],[-73.122116,18.822262],[-73.211731,18.837269],[-73.299515,18.923508],[-73.252724,18.966366],[-73.163887,18.956203]]],[[[-72.620659,20],[-72.718414,19.998737],[-72.876617,20.030142],[-72.799957,20.08782],[-72.620659,20]]]]},"properties":{"name":"海地","name_en":"HAITI","id":"HTI"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-59.605137,13.326565],[-59.52911,13.218512],[-59.420376,13.14501],[-59.449798,13.087955],[-59.530632,13.041735],[-59.610634,13.071812],[-59.648922,13.275335],[-59.605137,13.326565]]]},"properties":{"name":"巴巴多斯","name_en":"Barbados","id":"BRB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-68.963417,12.111581],[-69.062241,12.177007],[-69.149795,12.280807],[-69.153953,12.364897],[-69.071136,12.34196],[-69.029945,12.241128],[-68.976387,12.1955],[-68.854317,12.16936],[-68.733948,12.041252],[-68.811157,12.035646],[-68.963417,12.111581]]],[[[-68.386688,12.303404],[-68.268806,12.228322],[-68.19989,12.217768],[-68.19294,12.130725],[-68.276604,12.144246],[-68.306717,12.192942],[-68.405403,12.220654],[-68.386688,12.303404]]]]},"properties":{"name":"库拉索(荷)","name_en":"Curacao (Neth.)","id":"ANT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-60.931648,14.102997],[-60.886337,14.042995],[-60.877358,13.863449],[-60.942463,13.704778],[-61.067062,13.784461],[-61.061997,13.913797],[-60.931648,14.102997]]]},"properties":{"name":"圣卢西亚","name_en":"St. Lucia","id":"LCA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[68.31958,23.920029],[68.334946,23.965445],[68.749252,23.962055],[68.764114,24.284111],[68.840309,24.228195],[68.939003,24.290861],[69.013725,24.229084],[69.085441,24.268278],[69.199776,24.235195],[69.31028,24.276695],[69.504219,24.263],[69.590111,24.286777],[69.724587,24.175083],[70.024086,24.169361],[70.110107,24.284889],[70.370308,24.353445],[70.57486,24.420305],[70.561386,24.358389],[70.593559,24.240278],[70.805748,24.222723],[70.872719,24.304945],[70.980858,24.363361],[71.050308,24.362249],[71.107361,24.433195],[71.000725,24.448889],[70.989387,24.603167],[71.086052,24.693361],[70.962502,24.887306],[70.917946,24.986389],[70.881249,25.145945],[70.752502,25.271723],[70.665886,25.395971],[70.672447,25.661417],[70.64003,25.715445],[70.526497,25.688528],[70.374641,25.681278],[70.27539,25.711306],[70.145027,25.868528],[70.091308,25.965166],[70.080444,26.058222],[70.172668,26.245083],[70.183891,26.486834],[70.167748,26.550751],[70.024864,26.598722],[69.855553,26.582916],[69.721863,26.653833],[69.522415,26.736],[69.483719,26.806223],[69.513191,27.016861],[69.58667,27.177999],[69.861969,27.402779],[69.936249,27.502111],[70.016281,27.556],[70.107803,27.766861],[70.207581,27.885389],[70.366165,28.008249],[70.47908,28.033751],[70.562637,28.019806],[70.672112,27.914333],[70.678413,27.839056],[70.76722,27.714945],[70.88533,27.705833],[71.221085,27.842751],[71.352531,27.866083],[71.674889,27.885529],[71.899582,27.964195],[71.922279,28.113972],[71.992027,28.203556],[72.184418,28.358],[72.301941,28.664806],[72.411415,28.786222],[72.506416,28.82275],[72.730194,28.950111],[72.94442,29.034111],[73.005753,29.156778],[73.096611,29.255388],[73.274803,29.556168],[73.39653,29.938999],[73.578224,30.010111],[73.803917,30.06986],[73.965248,30.191305],[73.956665,30.277471],[73.875305,30.361389],[73.921127,30.44602],[74.003387,30.459024],[74.019318,30.569868],[74.149483,30.660944],[74.182136,30.737759],[74.313011,30.806717],[74.326584,30.898104],[74.447762,30.961559],[74.573181,30.990892],[74.671776,31.100056],[74.545303,31.133612],[74.550247,31.294695],[74.641113,31.464695],[74.517754,31.754278],[74.60173,31.86496],[74.797363,31.953035],[74.819092,32.017616],[74.973946,32.035332],[75.029953,32.083328],[75.110558,32.073223],[75.395279,32.200222],[75.482582,32.287804],[75.456619,32.343849],[75.312233,32.344299],[75.082641,32.480057],[74.987892,32.449554],[74.856415,32.492668],[74.698418,32.484943],[74.642197,32.611057],[74.675636,32.665779],[74.614693,32.757668],[74.531525,32.740723],[74.466057,32.781361],[74.413887,32.903946],[74.318031,32.919693],[74.351692,33.013138],[74.205253,33.043304],[74.176247,33.107166],[74.082832,33.180752],[74.102974,33.270527],[74.185082,33.383499],[74.178169,33.481667],[74.088364,33.573193],[74.028442,33.574665],[73.966583,33.740391],[74.049057,33.808834],[74.170082,33.83989],[74.261109,33.924805],[74.214668,34.038555],[73.898171,34.032833],[73.904083,34.12225],[73.976585,34.211807],[73.976219,34.264805],[73.899414,34.359806],[73.763222,34.359638],[73.77697,34.416306],[73.89872,34.495777],[73.948059,34.573082],[73.96022,34.696667],[74.148971,34.695278],[74.30278,34.797527],[74.375557,34.803444],[74.58017,34.770111],[74.671303,34.700695],[74.893753,34.684502],[75.018753,34.641499],[75.142304,34.662418],[75.394974,34.548805],[75.749191,34.515835],[76.036469,34.670277],[76.157913,34.643417],[76.385948,34.735943],[76.469193,34.791668],[76.561806,34.758335],[76.671639,34.757416],[76.744697,34.844723],[76.738861,34.901916],[76.863136,34.970833],[77.010139,34.956276],[77.068359,35.024113],[77.15683,35.054695],[77.650559,35.367085],[77.8373,35.500337],[77.845737,35.496236],[78.131854,35.495863],[78.107113,35.437237],[78.014144,35.366529],[78.014169,35.247011],[78.065407,35.108299],[78.124679,35.108303],[78.15059,35.001721],[78.19894,34.977796],[78.236234,34.844822],[78.207783,34.728337],[78.276455,34.683019],[78.286721,34.620216],[78.544658,34.573453],[78.711286,34.519815],[78.878273,34.391455],[78.952862,34.3856],[78.983606,34.318499],[78.922832,34.151147],[78.871455,34.163884],[78.652726,34.035438],[78.744518,33.984979],[78.778133,33.74299],[78.692016,33.676499],[78.741984,33.553378],[78.841787,33.425291],[79.033317,33.31377],[79.072296,33.228503],[79.160515,33.172364],[79.14781,33.079401],[79.181236,32.980398],[79.239899,32.954165],[79.22729,32.7897],[79.301187,32.728984],[79.308466,32.60805],[79.25582,32.520707],[79.122153,32.449784],[79.071106,32.379935],[78.991666,32.366064],[78.810483,32.436515],[78.764988,32.544215],[78.776275,32.615124],[78.741674,32.70361],[78.581261,32.633293],[78.398513,32.522044],[78.465934,32.44487],[78.508485,32.297827],[78.430705,32.212159],[78.459081,32.132881],[78.51996,32.123644],[78.768535,31.94086],[78.654736,31.819119],[78.762895,31.668611],[78.845706,31.609926],[78.752476,31.537107],[78.729988,31.478226],[78.791905,31.436142],[78.75537,31.355748],[78.786206,31.308487],[78.916562,31.252886],[78.997697,31.158877],[79.016187,31.04237],[79.095059,30.995071],[79.316504,31.003417],[79.504804,31.028394],[79.596154,30.935465],[79.680548,30.976027],[79.820838,30.857861],[79.890625,30.85511],[79.972843,30.702055],[80.057757,30.59671],[80.124744,30.558593],[80.205291,30.582304],[80.421558,30.517839],[80.558595,30.451329],[80.665856,30.441782],[80.827916,30.317539],[81.013171,30.259912],[81.039356,30.19988],[80.949028,30.18339],[80.81086,30.093973],[80.671524,29.95925],[80.59864,29.956917],[80.552223,29.849527],[80.363167,29.745527],[80.405472,29.597889],[80.250443,29.448973],[80.313278,29.312611],[80.268417,29.139862],[80.144775,29.1],[80.131111,29.002388],[80.056274,28.916861],[80.114281,28.829472],[80.372582,28.629278],[80.453087,28.624277],[80.532837,28.687639],[80.666222,28.635723],[80.708115,28.570833],[81.016502,28.410805],[81.212608,28.35836],[81.234528,28.279945],[81.337974,28.182417],[81.445442,28.160389],[81.480804,28.0795],[81.642555,27.996195],[81.700279,27.989639],[81.890274,27.858528],[81.966415,27.930277],[82.067475,27.924389],[82.461082,27.682501],[82.700973,27.722027],[82.756775,27.585556],[82.762169,27.510778],[82.923279,27.504305],[82.957886,27.467388],[83.156418,27.458528],[83.339447,27.334778],[83.408333,27.41386],[83.389114,27.480305],[83.624138,27.467417],[83.864029,27.351889],[83.834663,27.428862],[84.022552,27.434917],[84.098358,27.514166],[84.256859,27.445139],[84.286308,27.389166],[84.627724,27.328222],[84.68808,27.226389],[84.644218,27.049139],[84.748108,27.010584],[84.841919,27.01436],[84.960197,26.962889],[84.968025,26.917055],[85.187332,26.8745],[85.17997,26.805056],[85.330948,26.747084],[85.458969,26.790251],[85.616669,26.882],[85.716392,26.825916],[85.731613,26.658361],[85.866249,26.569944],[86.031777,26.670555],[86.139359,26.614973],[86.340858,26.621889],[86.539108,26.538694],[86.575333,26.496695],[86.734947,26.427221],[86.838142,26.443916],[86.927307,26.515917],[87.007446,26.533695],[87.140472,26.41361],[87.249191,26.414888],[87.350113,26.361445],[87.404808,26.42675],[87.494637,26.438168],[87.600975,26.382473],[87.784226,26.469166],[87.91336,26.432777],[88.024055,26.365778],[88.09053,26.433584],[88.109169,26.572779],[88.159859,26.639139],[88.18853,26.766861],[88.168526,26.872417],[88.106224,26.992332],[87.984306,27.113167],[88.064163,27.443195],[88.039558,27.485806],[88.115975,27.622417],[88.193749,27.854805],[88.137605,27.878514],[88.156567,27.957913],[88.255047,27.939749],[88.401091,27.97676],[88.487274,28.037557],[88.645144,28.111344],[88.759039,28.070006],[88.844245,27.987983],[88.86467,27.921355],[88.87043,27.733174],[88.792134,27.572807],[88.784556,27.458868],[88.901394,27.327345],[88.925323,27.269088],[88.809196,27.205111],[88.805222,27.101833],[88.878525,27.068277],[88.875084,26.992332],[88.947746,26.935083],[89.013916,26.938499],[89.093475,26.889],[89.137054,26.810362],[89.265083,26.821638],[89.370972,26.860611],[89.482475,26.808277],[89.63636,26.782278],[89.666275,26.739973],[89.828392,26.71525],[90.170166,26.765278],[90.232414,26.860916],[90.300087,26.854221],[90.416695,26.903528],[90.537331,26.820999],[90.657028,26.778084],[91.04525,26.786861],[91.088028,26.815861],[91.262665,26.807194],[91.334526,26.777361],[91.417915,26.860806],[91.500252,26.873388],[91.549751,26.803167],[91.715332,26.795555],[91.838913,26.861944],[92.009247,26.850416],[92.111133,26.868391],[92.122734,26.856386],[92.549198,26.941607],[92.665571,26.95235],[92.773717,26.903163],[92.93657,26.911478],[93.111322,26.880233],[93.232584,26.906783],[93.539304,26.935144],[93.62539,26.95557],[93.84211,27.045832],[93.862213,27.187205],[93.970826,27.305225],[94.287281,27.584143],[94.534226,27.600123],[94.780998,27.699332],[95.048918,27.835703],[95.286519,27.940024],[95.39689,28.142368],[95.648995,28.240549],[95.874324,28.297593],[95.907801,28.241575],[96.013653,28.190054],[96.275458,28.228138],[96.296901,28.141401],[96.368937,28.118417],[96.452634,28.151839],[96.510706,28.0777],[96.622531,28.025547],[96.860292,27.872523],[96.912642,27.883719],[97.049357,27.814106],[97.060405,27.751364],[97.061301,27.74866],[97.047234,27.744946],[97.035164,27.742556],[97.027168,27.742916],[97.017807,27.738472],[96.967026,27.663723],[96.89183,27.616167],[96.922584,27.511667],[96.901253,27.458471],[97.167053,27.126194],[97.125725,27.088306],[96.871391,27.183083],[96.887085,27.252445],[96.783691,27.349056],[96.628365,27.366138],[96.563835,27.303362],[96.292168,27.288195],[96.094025,27.224277],[96.035332,27.187389],[95.923363,27.032417],[95.808807,27.00964],[95.747749,26.910639],[95.668747,26.896],[95.598503,26.809166],[95.500946,26.802334],[95.425636,26.69364],[95.275413,26.64325],[95.240776,26.680334],[95.154747,26.621334],[95.072418,26.457556],[95.072166,26.337723],[95.115692,26.112167],[95.183418,26.063583],[95.091698,25.956139],[95.023834,25.924583],[95.042862,25.768223],[94.807724,25.504473],[94.679581,25.454611],[94.631165,25.387306],[94.579056,25.210527],[94.608666,25.170639],[94.733497,25.12925],[94.73967,25.022112],[94.644806,24.837139],[94.60286,24.708389],[94.545891,24.6975],[94.513558,24.60111],[94.4505,24.556917],[94.395226,24.462723],[94.374809,24.370472],[94.318276,24.307917],[94.255806,24.152445],[94.255447,24.081862],[94.165779,23.928612],[94.160698,23.855473],[93.933167,23.949888],[93.812309,23.928944],[93.761024,24],[93.616554,24],[93.500252,23.952694],[93.384277,24.084694],[93.331253,23.98311],[93.390808,23.92436],[93.399864,23.749861],[93.436752,23.685278],[93.366333,23.276611],[93.384666,23.21839],[93.312859,23.018499],[93.240028,23.003639],[93.131302,23.043972],[93.138557,22.901167],[93.099915,22.779417],[93.113113,22.52739],[93.178917,22.422361],[93.195724,22.251167],[93.048752,22.199499],[92.993721,22.050362],[92.930275,22.002138],[92.865219,22.058916],[92.694359,22.147388],[92.676086,22.013195],[92.608803,21.975861],[92.606476,22.131945],[92.545219,22.46525],[92.516281,22.716249],[92.474609,22.745056],[92.416,22.909166],[92.374969,22.928528],[92.383308,23.073473],[92.349892,23.191195],[92.381027,23.30489],[92.272835,23.641195],[92.288086,23.697945],[92.143974,23.726528],[92.074112,23.645222],[91.938751,23.654139],[91.966553,23.487139],[91.935753,23.429806],[91.84214,23.399918],[91.770416,23.267611],[91.813141,23.068028],[91.71772,22.9855],[91.575279,22.963167],[91.54464,22.992584],[91.497307,23.186945],[91.427666,23.259056],[91.379776,23.175222],[91.319778,23.247305],[91.243416,23.484083],[91.197052,23.519527],[91.150948,23.641138],[91.162666,23.741945],[91.21933,23.74575],[91.227059,23.880777],[91.302475,23.987667],[91.370193,23.977583],[91.412666,24.108444],[91.536942,24.070972],[91.637863,24.105305],[91.652748,24.187529],[91.733948,24.135778],[91.757385,24.236305],[91.906113,24.145166],[91.920364,24.326416],[92.010498,24.383167],[92.137581,24.398834],[92.128807,24.513111],[92.203613,24.625639],[92.296585,24.850416],[92.489556,24.868139],[92.463219,24.959917],[92.340859,25.072889],[92.21875,25.100639],[92.122391,25.166222],[92.019531,25.184999],[91.759941,25.168777],[91.632385,25.122639],[91.584503,25.165583],[91.476471,25.135139],[91.261498,25.202389],[91.083809,25.196417],[90.957336,25.159527],[90.838859,25.153305],[90.648972,25.185888],[90.443169,25.145584],[90.31839,25.187361],[90.10778,25.2265],[89.952225,25.302029],[89.834473,25.296778],[89.815666,25.371639],[89.868637,25.582611],[89.869003,25.664862],[89.822556,25.73275],[89.838554,25.883139],[89.878334,25.924805],[89.800667,26.034277],[89.744141,26.156694],[89.64386,26.225721],[89.578056,26.025139],[89.469139,26.000444],[89.357391,26.008333],[89.16758,26.138639],[89.105003,26.283556],[89.100166,26.395971],[88.947723,26.439417],[88.919113,26.412222],[89.065781,26.2635],[88.857002,26.231806],[88.795639,26.31214],[88.721581,26.31925],[88.683113,26.414362],[88.523415,26.485027],[88.388306,26.599222],[88.345253,26.504723],[88.470497,26.465334],[88.445419,26.365999],[88.358803,26.301306],[88.351586,26.218555],[88.180359,26.144722],[88.170609,26.018723],[88.086502,25.931444],[88.11467,25.802055],[88.267998,25.788889],[88.446945,25.668222],[88.443581,25.605667],[88.548142,25.51689],[88.664612,25.476862],[88.759697,25.529194],[88.838974,25.459528],[88.834167,25.371277],[88.909554,25.320139],[88.946472,25.251249],[88.922165,25.172251],[88.835831,25.211527],[88.797142,25.174999],[88.708252,25.209499],[88.438698,25.182278],[88.444778,25.03775],[88.315918,24.881945],[88.221336,24.959917],[88.163528,24.944834],[88.16214,24.848694],[88.028335,24.688334],[88.083862,24.623806],[88.120613,24.521944],[88.20372,24.474777],[88.341972,24.438],[88.379837,24.395445],[88.547386,24.311251],[88.708031,24.316334],[88.731972,24.200083],[88.705307,24.086945],[88.760361,24.005083],[88.737641,23.905861],[88.613197,23.810499],[88.57061,23.6455],[88.64917,23.606972],[88.774361,23.443195],[88.727944,23.257416],[88.923248,23.232611],[88.948112,23.174862],[88.873169,23.078777],[88.911446,22.894945],[88.971611,22.844528],[88.942253,22.762417],[89.006638,22.422638],[89.00647,22.283277],[89.075974,22.199472],[89.049141,22.092501],[89.090721,22.009388],[89.083557,21.938555],[89.031303,21.907055],[89.024559,21.801361],[89.101418,21.661806],[89.016724,21.600805],[88.93792,21.640694],[88.724251,21.680471],[88.720886,22.004888],[88.643837,22.045944],[88.609581,21.9095],[88.46228,21.823444],[88.429191,21.765917],[88.344475,21.804083],[88.260948,21.7875],[88.306725,21.671778],[88.306419,21.561527],[88.262642,21.557528],[88.203499,21.845583],[88.163475,21.893612],[88.187363,22.090529],[88.057304,22.003056],[87.951942,21.823555],[87.828552,21.722195],[87.662056,21.649918],[87.458778,21.605528],[87.366028,21.560917],[87.262222,21.560305],[87.127892,21.515306],[86.972778,21.394056],[86.864998,21.262138],[86.824249,21.172056],[86.873001,21.014833],[86.970138,20.849083],[86.97583,20.767973],[87.037613,20.690639],[86.81089,20.536556],[86.735809,20.449055],[86.767555,20.326305],[86.541832,20.184723],[86.418526,20.038029],[86.406609,19.971556],[86.265587,19.909779],[86.065445,19.847221],[85.850861,19.799305],[85.688004,19.745806],[85.328087,19.566944],[85.122391,19.41975],[85.086914,19.368723],[84.869858,19.213945],[84.692863,18.95789],[84.600609,18.868166],[84.563469,18.790417],[84.457192,18.685112],[84.365082,18.553417],[84.166611,18.378695],[84.091805,18.278389],[83.903,18.200083],[83.686386,18.085945],[83.57547,18.009472],[83.524391,17.934917],[83.413498,17.840221],[83.352638,17.732084],[83.172974,17.565777],[83.022858,17.508778],[82.993919,17.473249],[82.736389,17.358862],[82.493614,17.21211],[82.319389,17.051916],[82.252914,16.918612],[82.380501,16.84086],[82.355889,16.712805],[82.300446,16.581722],[82.187447,16.510639],[81.956528,16.403694],[81.73217,16.313528],[81.532501,16.358999],[81.330666,16.315222],[81.253754,16.25964],[81.201775,16.179001],[81.156029,15.975306],[81.049888,15.904889],[80.990448,15.825167],[81.01136,15.743834],[80.836334,15.696917],[80.811081,15.837],[80.747002,15.876555],[80.605362,15.875611],[80.436111,15.809361],[80.293587,15.704667],[80.249359,15.633389],[80.199608,15.462277],[80.119614,15.364195],[80.090973,15.204278],[80.045693,15.087556],[80.110497,14.746889],[80.189636,14.57175],[80.169472,14.349055],[80.126335,14.206917],[80.148865,14.035528],[80.255836,13.78],[80.232941,13.645528],[80.310364,13.451389],[80.346443,13.304028],[80.279556,13.049945],[80.247414,12.853806],[80.247642,12.753305],[80.145386,12.445361],[80.036392,12.300555],[79.88192,12.051111],[79.785774,11.754889],[79.760086,11.539111],[79.818611,11.42625],[79.859749,11.177694],[79.855194,10.656278],[79.872582,10.28475],[79.809059,10.268945],[79.390663,10.318694],[79.271004,10.23025],[79.230751,10.144806],[79.252693,10.026361],[79.129585,9.886833],[78.938248,9.601583],[78.904587,9.467334],[78.990807,9.352222],[79.075111,9.292334],[78.911499,9.245139],[78.873276,9.252556],[78.676415,9.190666],[78.578415,9.126278],[78.400413,9.098361],[78.217636,8.957222],[78.173973,8.87925],[78.158226,8.707472],[78.132225,8.669361],[78.127113,8.480416],[78.059448,8.364972],[77.804054,8.233611],[77.738251,8.169084],[77.593803,8.139916],[77.540642,8.074056],[77.307442,8.124583],[76.977058,8.387555],[76.620552,8.843139],[76.546364,8.8985],[76.475304,9.119695],[76.365837,9.341473],[76.311638,9.523167],[76.26403,9.854083],[76.082496,10.425028],[75.968582,10.656445],[75.906777,10.807584],[75.843224,11.068444],[75.747642,11.312],[75.686584,11.435278],[75.617447,11.474389],[75.530502,11.702666],[75.315887,11.904944],[75.167748,12.066972],[75.068947,12.3265],[75.008919,12.425361],[74.807587,12.892972],[74.769943,13.078167],[74.688751,13.367666],[74.665665,13.638056],[74.605782,13.852305],[74.565003,13.946555],[74.498223,14.020917],[74.464028,14.187166],[74.435608,14.227305],[74.353996,14.508972],[74.309944,14.516556],[74.276947,14.674139],[74.240028,14.740945],[74.134086,14.777833],[74.091248,14.8945],[74.038834,14.915556],[74.021584,15.005694],[73.91497,15.087833],[73.940003,15.1395],[73.845001,15.449083],[73.764275,15.488556],[73.684082,15.720223],[73.583809,15.907722],[73.50711,15.937139],[73.456253,16.058083],[73.469803,16.093527],[73.368752,16.399889],[73.311554,16.540277],[73.328056,16.648027],[73.276032,16.892611],[73.2845,17.078056],[73.21328,17.273001],[73.225418,17.335833],[73.119835,17.694084],[73.135559,17.716972],[73.078499,17.876028],[73.036163,17.939888],[73.027336,18.029306],[72.972138,18.124695],[72.990059,18.283361],[72.910637,18.367611],[72.89711,18.45475],[72.920196,18.547945],[72.856308,18.688389],[72.862808,18.794527],[72.906914,18.886473],[73.006058,19.004999],[72.809586,18.982944],[72.824776,19.087],[72.786331,19.138639],[72.779915,19.280445],[72.723808,19.546556],[72.731308,19.607416],[72.692307,19.747528],[72.680054,19.925667],[72.722389,20.003195],[72.749031,20.281834],[72.818306,20.365667],[72.826195,20.442389],[72.881111,20.506695],[72.91008,20.744612],[72.83403,20.883751],[72.814308,21.119083],[72.701385,21.102751],[72.649193,21.23686],[72.671913,21.492889],[72.821663,21.62186],[72.738914,21.686056],[72.54303,21.656361],[72.631225,21.808834],[72.707359,21.979639],[72.540497,21.900249],[72.504913,21.940083],[72.547111,22.157167],[72.609863,22.215084],[72.746529,22.176722],[72.757057,22.214333],[72.628807,22.275862],[72.56147,22.268028],[72.414085,22.191444],[72.345864,22.223944],[72.320862,22.137888],[72.241997,22.003584],[72.258553,21.879889],[72.235085,21.744417],[72.303024,21.631805],[72.240997,21.4695],[72.096527,21.307888],[72.107086,21.203806],[72.003029,21.139944],[71.806335,21.068306],[71.636803,20.974501],[71.516808,20.948195],[71.478668,20.88925],[71.214165,20.804111],[71.148003,20.758055],[70.995781,20.731916],[70.975281,20.700556],[70.826919,20.688333],[70.540169,20.799612],[70.338059,20.914249],[70.219139,21.002222],[69.987274,21.216083],[69.73703,21.49925],[69.228638,21.943916],[68.957359,22.238194],[68.936165,22.297056],[69.002113,22.430195],[69.091774,22.389917],[69.191193,22.417473],[69.159332,22.315277],[69.216331,22.261305],[69.334473,22.317083],[69.474335,22.332027],[69.520226,22.37789],[69.652,22.362499],[69.707031,22.45825],[69.794304,22.399694],[69.983139,22.543139],[70.177864,22.560444],[70.383225,22.91036],[70.442886,22.959639],[70.486473,23.05261],[70.371475,23.05875],[70.371887,22.992167],[70.291695,22.943445],[70.227554,22.972139],[70.093331,22.902166],[69.851555,22.859417],[69.738945,22.792166],[69.706169,22.736666],[69.513832,22.788666],[69.17675,22.842777],[68.746109,23.088499],[68.718636,23.14189],[68.623886,23.186222],[68.540642,23.26675],[68.473778,23.386334],[68.385086,23.448528],[68.470833,23.636694],[68.545723,23.712917],[68.432861,23.733778],[68.361252,23.59],[68.298637,23.56625],[68.189476,23.711639],[68.20475,23.826361],[68.31958,23.920029]]],[[[92.837586,13.220667],[92.840195,13.356722],[92.883614,13.467806],[92.995224,13.564611],[93.052719,13.521],[93.044556,13.420333],[93.08622,13.333445],[93.055664,13.254556],[93.038254,13.06375],[92.914169,13.000806],[92.862053,12.910055],[92.932053,12.885722],[92.976524,12.733723],[92.963028,12.616361],[92.982803,12.530778],[92.881775,12.351861],[92.878754,12.226584],[92.734444,11.987361],[92.793472,11.932278],[92.798859,11.855695],[92.73642,11.517944],[92.683693,11.502666],[92.61911,11.602056],[92.606415,11.709861],[92.525971,11.844916],[92.558914,11.915639],[92.62442,11.92025],[92.630859,12.092167],[92.669586,12.216166],[92.711975,12.256861],[92.702614,12.507889],[92.742615,12.63025],[92.72728,12.815778],[92.808807,12.89525],[92.803139,13.080916],[92.837586,13.220667]]],[[[93.684113,7.182556],[93.829803,7.230389],[93.882141,7.197028],[93.891167,7.094861],[93.934082,6.977305],[93.907364,6.89975],[93.91375,6.802472],[93.820358,6.754334],[93.791389,6.876833],[93.747719,6.958528],[93.660416,7.044806],[93.684113,7.182556]]],[[[92.36747,10.527416],[92.400085,10.613778],[92.364281,10.668445],[92.358528,10.774028],[92.506363,10.895166],[92.576447,10.779305],[92.582802,10.701834],[92.530083,10.626667],[92.55114,10.57475],[92.510307,10.512639],[92.36747,10.527416]]],[[[93.40361,8],[93.459252,7.929945],[93.381973,7.875639],[93.313248,7.954861],[93.40361,8]]],[[[93.665108,7.258806],[93.623581,7.36875],[93.707748,7.396695],[93.733864,7.321472],[93.665108,7.258806]]],[[[88.133804,21.728001],[88.150253,21.633444],[88.049583,21.652306],[88.133804,21.728001]]],[[[92.734642,9.118389],[92.712219,9.210861],[92.804695,9.216389],[92.796448,9.120361],[92.734642,9.118389]]],[[[88.172531,21.718973],[88.105469,21.800556],[88.179085,21.823889],[88.172531,21.718973]]],[[[92.696808,12.990334],[92.726364,12.87425],[92.659554,12.85875],[92.696808,12.990334]]]]},"properties":{"name":"印度","name_en":"INDIA","id":"IND"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.071417,56.063446],[20.980862,56.227665],[20.974278,56.36911],[21.003834,56.559307],[21.064556,56.690777],[21.066029,56.833248],[21.241972,56.907944],[21.41686,57.049835],[21.429527,57.292137],[21.558666,57.393307],[21.695944,57.562],[21.968389,57.597057],[22.590221,57.761665],[22.591333,57.630833],[22.8475,57.497471],[22.951139,57.418835],[23.137972,57.362499],[23.242416,57.112251],[23.380777,57.045834],[23.498722,57.035778],[23.5695,56.978611],[23.770166,56.969082],[23.999805,57.029945],[24.149695,57.092529],[24.408972,57.254028],[24.405361,57.383888],[24.340889,57.700474],[24.356222,57.87814],[24.591499,57.959389],[24.700806,57.950474],[25.002916,58.008335],[25.117361,58.081806],[25.301695,57.999943],[25.56864,57.970585],[25.859056,57.861916],[26.049917,57.848526],[26.021361,57.779556],[26.185167,57.73],[26.276861,57.603222],[26.604834,57.520222],[26.909416,57.641277],[27.091667,57.570305],[27.322111,57.548389],[27.512751,57.541054],[27.539612,57.434193],[27.839445,57.316582],[27.821472,57.159668],[27.726862,57.099609],[27.708778,56.855],[27.846333,56.875668],[27.971806,56.823776],[27.920473,56.736057],[27.98325,56.708057],[28.039778,56.595055],[28.184334,56.441112],[28.164862,56.380085],[28.241139,56.275555],[28.151333,56.165806],[27.969166,56.117554],[27.9365,56.06461],[27.665167,55.935391],[27.602972,55.786472],[27.388472,55.813473],[27.299667,55.791195],[27.175917,55.853222],[27.008055,55.831528],[26.879417,55.717251],[26.619667,55.674362],[26.379167,55.703999],[26.279388,55.758972],[26.206638,55.856304],[26.02,55.968918],[25.683166,56.09914],[25.685,56.138973],[25.307167,56.148834],[25.097416,56.186501],[24.874083,56.416389],[24.652916,56.370945],[24.561388,56.283028],[24.438833,56.258583],[24.329001,56.298527],[24.157612,56.256668],[24.014778,56.330029],[23.776777,56.365696],[23.536139,56.332863],[23.366388,56.381111],[23.174723,56.364361],[23.015583,56.392139],[22.637611,56.365196],[22.583111,56.39072],[22,56.414806],[21.697556,56.310917],[21.605667,56.322166],[21.329971,56.213055],[21.194584,56.075832],[21.071417,56.063446]]]},"properties":{"name":"拉脱维亚","name_en":"Latvia","id":"LVA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[88.925323,27.269088],[89.026287,27.225426],[89.182472,27.377855],[89.096472,27.491844],[89.141528,27.642652],[89.226718,27.725292],[89.24497,27.801003],[89.363822,27.868088],[89.484432,28.053118],[89.607165,28.162536],[89.723545,28.170224],[89.788566,28.236965],[89.895096,28.187657],[89.987409,28.183786],[90.043137,28.136076],[90.173321,28.184127],[90.296686,28.154272],[90.37894,28.062105],[90.557365,28.048778],[90.594933,28.021816],[90.695783,28.076907],[90.782287,28.039599],[91.031093,27.855674],[91.111267,27.846141],[91.16099,27.968082],[91.251746,27.970392],[91.351077,28.045448],[91.456988,28.005883],[91.484004,27.943351],[91.589046,27.900521],[91.551858,27.817149],[91.629844,27.802445],[91.628352,27.701498],[91.563722,27.639445],[91.581302,27.547421],[91.733345,27.462891],[91.839223,27.489671],[92.019016,27.469116],[92.121503,27.27046],[92.03785,27.17489],[92.029726,27.078702],[92.124747,26.960047],[92.111133,26.868391],[92.009247,26.850416],[91.838913,26.861944],[91.715332,26.795555],[91.549751,26.803167],[91.500252,26.873388],[91.417915,26.860806],[91.334526,26.777361],[91.262665,26.807194],[91.088028,26.815861],[91.04525,26.786861],[90.657028,26.778084],[90.537331,26.820999],[90.416695,26.903528],[90.300087,26.854221],[90.232414,26.860916],[90.170166,26.765278],[89.828392,26.71525],[89.666275,26.739973],[89.63636,26.782278],[89.482475,26.808277],[89.370972,26.860611],[89.265083,26.821638],[89.137054,26.810362],[89.093475,26.889],[89.013916,26.938499],[88.947746,26.935083],[88.875084,26.992332],[88.878525,27.068277],[88.805222,27.101833],[88.809196,27.205111],[88.925323,27.269088]]]},"properties":{"name":"不丹","name_en":"Bhutan","id":"BTN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-61.196995,13.365639],[-61.143845,13.373411],[-61.118248,13.237165],[-61.148087,13.14293],[-61.228119,13.134382],[-61.278759,13.198918],[-61.260079,13.281299],[-61.196995,13.365639]]]},"properties":{"name":"圣文森特和格林纳丁斯","name_en":"SAINT VINCENT AND THE GRENADINES","id":"VCT"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[108.030641,21.546017],[107.969864,21.484612],[107.916885,21.523722],[107.791054,21.524305],[107.752113,21.405027],[107.639031,21.357973],[107.608948,21.296333],[107.485916,21.3015],[107.384834,21.27125],[107.399696,21.17725],[107.342636,21.002167],[107.232002,20.993528],[107.196358,20.944195],[107.014748,20.961195],[106.892365,20.913195],[106.80072,20.937277],[106.740669,20.879028],[106.769165,20.711695],[106.650581,20.630083],[106.577751,20.553499],[106.595055,20.421028],[106.57103,20.283138],[106.496697,20.218861],[106.390862,20.204555],[106.211914,20.008778],[106.070969,19.965611],[106.033447,19.995222],[105.959198,19.917694],[105.938415,19.796278],[105.863914,19.716639],[105.819916,19.577778],[105.81778,19.311556],[105.742836,19.220694],[105.72747,19.105722],[105.650253,19.076834],[105.618446,18.992472],[105.639694,18.90361],[105.696335,18.87475],[105.790726,18.734222],[105.864861,18.537582],[105.943748,18.464445],[106.08567,18.290806],[106.257553,18.214945],[106.33847,18.120972],[106.424469,18.098362],[106.515137,17.935972],[106.447861,17.861],[106.464302,17.761499],[106.594414,17.539888],[106.709198,17.394167],[106.820663,17.294666],[107.119247,17.084194],[107.114441,17.014555],[107.229668,16.869389],[107.574165,16.601999],[107.656914,16.51436],[107.754753,16.453751],[107.804642,16.390194],[107.824776,16.288389],[108.046333,16.305056],[108.053108,16.218111],[108.17247,16.208056],[108.127525,16.123278],[108.256668,16.036556],[108.295303,15.961583],[108.405418,15.870055],[108.495109,15.671722],[108.629196,15.505417],[108.694778,15.481722],[108.762665,15.382],[108.83342,15.372972],[108.908775,15.249528],[108.906441,15.085944],[108.951614,14.931222],[109.079247,14.695888],[109.073303,14.552],[109.126419,14.437388],[109.125084,14.368639],[109.191834,14.273306],[109.194695,14.186139],[109.259529,14.017889],[109.261391,13.912306],[109.301277,13.865972],[109.303139,13.765917],[109.219086,13.745417],[109.232002,13.634528],[109.285225,13.568361],[109.221664,13.443139],[109.322197,13.250527],[109.304947,13.124028],[109.459137,12.90725],[109.36486,12.82725],[109.195862,12.635333],[109.193611,12.571111],[109.299667,12.4675],[109.296997,12.341166],[109.194389,12.396222],[109.220581,12.290972],[109.203003,12.072139],[109.250915,11.976944],[109.117279,11.870722],[109.183083,11.844334],[109.237946,11.733723],[109.179917,11.676306],[109.140274,11.583889],[109.030113,11.579056],[109.022278,11.355111],[108.965805,11.31425],[108.88678,11.33325],[108.756416,11.278389],[108.731415,11.180583],[108.588333,11.177694],[108.521004,11.13925],[108.476555,11.044444],[108.374779,11.025778],[108.344559,10.952556],[108.220726,10.946028],[108.082725,10.901444],[107.994469,10.700139],[107.885803,10.719028],[107.772247,10.647195],[107.578552,10.571139],[107.514664,10.5005],[107.326164,10.449833],[107.263497,10.385361],[107.206253,10.402805],[107.11261,10.360473],[107.09922,10.429916],[107.003998,10.498222],[106.942802,10.469111],[106.974113,10.404388],[106.788528,10.393194],[106.78389,10.284555],[106.710861,10.197583],[106.792915,10.150028],[106.773193,10.078806],[106.677498,10.055417],[106.643082,9.966139],[106.699387,9.876805],[106.612892,9.810445],[106.516724,9.803778],[106.580475,9.679806],[106.533974,9.574361],[106.382362,9.528389],[106.347,9.576639],[106.211807,9.485639],[106.147164,9.356527],[105.897392,9.266],[105.519806,9.114111],[105.407913,8.990111],[105.336334,8.807694],[105.198776,8.721723],[105.132004,8.633583],[105.015976,8.588],[104.880165,8.559611],[104.761696,8.581],[104.772888,8.621834],[104.920609,8.747222],[104.889748,8.7905],[104.793556,8.79725],[104.810692,8.896334],[104.807831,9.171278],[104.827835,9.313889],[104.843613,9.617917],[104.876976,9.771556],[105.055611,9.940611],[105.079392,10.006028],[104.990471,10.096027],[104.889664,10.084611],[104.784164,10.210444],[104.717835,10.219916],[104.618416,10.142361],[104.571945,10.271944],[104.445274,10.421],[104.543808,10.453222],[104.593025,10.52975],[104.863357,10.521667],[104.937859,10.614722],[105.08664,10.706611],[105.034363,10.87925],[105.060943,10.927944],[105.361862,10.882861],[105.429581,10.966473],[105.544777,10.950222],[105.777527,11.026472],[105.928558,10.835139],[105.970779,10.896528],[106.094749,10.805833],[106.192497,10.829],[106.146332,10.968083],[106.207664,10.983806],[106.186279,11.058194],[106.10717,11.073389],[106.006805,11.190556],[105.920944,11.225417],[105.871559,11.294],[105.886749,11.358361],[105.877167,11.548528],[105.811302,11.598083],[105.893585,11.673778],[105.958809,11.641723],[106.03672,11.77525],[106.26564,11.722028],[106.30661,11.672305],[106.387665,11.699555],[106.467224,11.867473],[106.463219,11.982445],[106.722031,11.968583],[106.783997,12.066778],[106.937859,12.062388],[106.997559,12.088722],[107.14389,12.227333],[107.153053,12.266501],[107.350334,12.3255],[107.40847,12.25025],[107.546028,12.345472],[107.591614,12.55275],[107.552635,12.819583],[107.496559,12.891417],[107.496193,13.027833],[107.627724,13.366111],[107.618469,13.516084],[107.528916,13.748333],[107.455444,13.791],[107.477417,13.850028],[107.448387,13.995806],[107.367722,14.011306],[107.340584,14.118806],[107.411781,14.264694],[107.395248,14.317972],[107.490364,14.40275],[107.556694,14.6175],[107.544609,14.686],[107.514915,14.7925],[107.600807,14.871195],[107.483498,14.957417],[107.471474,15.006528],[107.647614,15.114028],[107.696747,15.259861],[107.528664,15.407917],[107.523636,15.47725],[107.396667,15.493972],[107.349945,15.608611],[107.282082,15.631278],[107.221916,15.725166],[107.223053,15.822056],[107.355225,15.892],[107.397667,15.889417],[107.467667,16.015223],[107.461777,16.064945],[107.33361,16.060194],[107.245583,16.139],[107.153892,16.178028],[107.153862,16.268639],[107.089584,16.308611],[106.977142,16.302389],[106.898109,16.3965],[106.892387,16.515055],[106.817642,16.487833],[106.745697,16.413361],[106.692253,16.44025],[106.588364,16.616722],[106.555031,16.701195],[106.553413,16.993334],[106.439194,16.996166],[106.308304,17.264749],[106.250809,17.246471],[106.073997,17.376249],[105.868111,17.624777],[105.763138,17.669361],[105.618416,17.89875],[105.645058,17.992277],[105.447304,18.218973],[105.369026,18.161388],[105.191109,18.326195],[105.108643,18.448999],[105.119026,18.538584],[105.200973,18.649221],[105.150581,18.702194],[104.955414,18.740499],[104.926476,18.789944],[104.745445,18.806278],[104.586502,18.905472],[104.546913,18.976444],[104.451057,18.986278],[104.370308,19.074806],[104.314499,19.091749],[104.187668,19.197639],[104.077164,19.246639],[103.968361,19.253084],[103.894943,19.331194],[104.053337,19.426333],[104.11142,19.570749],[104.043335,19.626139],[104.226059,19.710917],[104.348198,19.689083],[104.419891,19.709749],[104.464615,19.653639],[104.574913,19.618639],[104.652473,19.654945],[104.726944,19.763584],[104.839531,19.801777],[104.799637,19.917194],[104.897415,19.998222],[104.957863,19.99036],[104.989197,20.088945],[104.952362,20.172277],[104.839501,20.229973],[104.727363,20.200527],[104.671806,20.222445],[104.662193,20.363083],[104.620163,20.422556],[104.476524,20.409639],[104.378998,20.4725],[104.481529,20.536417],[104.549164,20.521194],[104.644607,20.664194],[104.497086,20.721806],[104.411141,20.782862],[104.298363,20.915388],[104.123085,20.981832],[104.032692,20.907722],[103.969025,20.911528],[103.783081,20.812111],[103.796166,20.755028],[103.668999,20.701973],[103.59539,20.749916],[103.515114,20.755333],[103.453613,20.824751],[103.366692,20.809223],[103.190277,20.844862],[103.116363,20.901583],[103.035416,21.05986],[102.963608,21.082777],[102.91114,21.227972],[102.866585,21.256306],[102.917473,21.504583],[102.993751,21.587833],[102.990471,21.67725],[102.826553,21.735945],[102.743469,21.660973],[102.676972,21.659389],[102.650192,21.733139],[102.647278,21.861723],[102.608696,21.922417],[102.517525,21.967916],[102.520111,22.019251],[102.429863,22.117584],[102.191971,22.303972],[102.148016,22.399899],[102.270226,22.419599],[102.302517,22.527691],[102.401643,22.626605],[102.454957,22.754954],[102.830614,22.621845],[102.927609,22.485546],[103.026261,22.444052],[103.083485,22.508425],[103.18341,22.55797],[103.167323,22.610173],[103.284426,22.680987],[103.320198,22.777295],[103.441891,22.752222],[103.437831,22.695713],[103.528402,22.593231],[103.572769,22.709867],[103.643451,22.794601],[103.823116,22.618816],[103.947695,22.521318],[104.00631,22.517136],[104.042453,22.720083],[104.121674,22.809601],[104.269652,22.837558],[104.271696,22.739029],[104.382293,22.695168],[104.59547,22.846276],[104.61486,22.813146],[104.737697,22.826037],[104.778583,22.9012],[104.86262,22.964176],[104.804967,23.098659],[104.938398,23.159701],[105.081873,23.260426],[105.242266,23.273811],[105.323955,23.388953],[105.432092,23.296953],[105.565992,23.152574],[105.579043,23.066546],[105.649047,23.078553],[105.833969,22.990228],[105.894195,22.936496],[105.99529,22.937698],[106.073213,22.99058],[106.206822,22.978414],[106.287197,22.866975],[106.353988,22.855545],[106.504558,22.910438],[106.605798,22.925599],[106.787288,22.811086],[106.726831,22.614281],[106.614482,22.602065],[106.562284,22.462426],[106.588988,22.375268],[106.663352,22.330689],[106.705477,22.21667],[106.673397,22.182833],[106.715545,22.089881],[106.706509,22.021558],[106.806249,21.978955],[106.923317,21.96867],[107.05562,21.921139],[107.011756,21.82624],[107.088077,21.805151],[107.199433,21.718726],[107.315938,21.726627],[107.377863,21.594501],[107.477355,21.660112],[107.500336,21.593064],[107.707302,21.614104],[107.80809,21.655447],[107.891895,21.622462],[107.956102,21.535993],[108.030641,21.546017]]],[[[103.914802,10.286722],[103.859253,10.302139],[104.008614,10.441527],[104.075333,10.370556],[104.080559,10.2365],[104.020302,10.076528],[103.914802,10.286722]]],[[[107.577415,21.204306],[107.547584,21.146778],[107.387612,21.044277],[107.418198,21.180805],[107.475441,21.270027],[107.577415,21.204306]]],[[[107.085472,20.785973],[106.990639,20.736528],[106.926636,20.849083],[107.030998,20.861805],[107.085472,20.785973]]]]},"properties":{"name":"越南","name_en":"VIET NAM","id":"VNM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[30.835388,69.785225],[30.931334,69.686775],[30.945555,69.58622],[30.820139,69.541664],[30.5355,69.541473],[30.365778,69.617111],[30.152222,69.637108],[30.19186,69.535057],[29.971138,69.411835],[29.83036,69.418663],[29.547222,69.315277],[29.342112,69.310417],[29.258861,69.119804],[29.093805,69.032219],[28.926945,69.057388],[28.807751,69.127419],[28.824556,69.229195],[29.223305,69.410584],[29.336166,69.484413],[29.135084,69.696892],[28.428472,69.821083],[28.352611,69.881279],[28.117971,69.953308],[27.977778,70.092613],[27.58264,70.075447],[27.289055,69.963303],[27.03789,69.910278],[26.849193,69.961525],[26.464695,69.93911],[26.395916,69.86161],[26.163723,69.753639],[25.99711,69.721947],[25.950416,69.580498],[25.850584,69.547028],[25.836916,69.392693],[25.706833,69.205696],[25.783417,69.020248],[25.624556,68.889809],[25.488527,68.905556],[25.142139,68.796471],[25.124,68.646309],[24.916082,68.609833],[24.653084,68.683556],[24.141138,68.759003],[24.152472,68.796585],[23.874027,68.839447],[23.767916,68.822365],[23.664499,68.713364],[23.446138,68.697418],[23.160749,68.629059],[23.041556,68.697029],[22.798334,68.691109],[22.521334,68.74408],[22.373945,68.720497],[22.3365,68.83197],[22.174749,68.96122],[21.644028,69.270081],[21.287138,69.307976],[21.04075,69.234024],[21.128055,69.103943],[21.060333,69.044334],[20.720501,69.121361],[20.556944,69.0625],[20.061222,69.059639],[20.337055,68.930389],[20.347195,68.813972],[20.202168,68.675163],[19.971527,68.561142],[20.263916,68.491028],[19.95875,68.351112],[18.989389,68.519997],[18.618723,68.507835],[18.417805,68.584389],[18.125055,68.538307],[18.106945,68.409668],[18.155582,68.203445],[17.901583,67.968864],[17.638001,68.048248],[17.283167,68.120194],[17.141556,68.047333],[16.741167,67.92086],[16.57711,67.663361],[16.42086,67.535721],[16.169251,67.517891],[16.10075,67.433777],[16.409305,67.20417],[16.397528,67.045387],[16.056084,66.910858],[15.625472,66.590195],[15.376166,66.484863],[15.494972,66.281692],[15.021722,66.14547],[14.517445,66.133469],[14.623417,65.809334],[14.535833,65.69278],[14.503972,65.48008],[14.511945,65.304726],[14.391945,65.251167],[14.340584,65.118614],[14.108389,64.957527],[13.637305,64.585747],[14.100111,64.467247],[14.132389,64.192307],[13.956223,64.011971],[13.200306,64.097778],[12.919833,64.056999],[12.687361,63.980026],[12.148501,63.596359],[12.214972,63.483501],[11.979555,63.269917],[12.224778,63.002945],[12.076,62.903389],[12.139667,62.762611],[12.053139,62.610168],[12.310555,62.266029],[12.131889,61.725777],[12.423695,61.561638],[12.575,61.571362],[12.874028,61.360279],[12.78975,61.192528],[12.676416,61.060585],[12.394944,61.045193],[12.220472,61.012138],[12.322667,60.911778],[12.40625,60.729973],[12.5125,60.651974],[12.612194,60.506306],[12.605361,60.406887],[12.497027,60.323444],[12.538667,60.186916],[12.458889,60.052555],[12.17675,59.893223],[11.95375,59.901001],[11.848611,59.839001],[11.933473,59.797943],[11.941694,59.696888],[11.699473,59.591778],[11.828,59.33186],[11.779667,59.089169],[11.687223,58.944084],[11.5465,58.878944],[11.459695,58.89286],[11.471806,58.993362],[11.335639,59.105888],[11.207723,59.086613],[11.172028,59.158638],[10.953195,59.138973],[10.771583,59.226917],[10.769028,59.303333],[10.667722,59.331638],[10.687333,59.510113],[10.5885,59.762974],[10.671556,59.915611],[10.517583,59.876751],[10.489611,59.822056],[10.535973,59.686832],[10.631722,59.595249],[10.473778,59.51614],[10.298778,59.541752],[10.529111,59.309387],[10.450528,59.172001],[10.362167,59.184582],[10.241417,59.104721],[10.229999,59.032139],[10.045056,59.010418],[9.961194,58.963501],[9.707666,58.97728],[9.511222,58.93],[9.419389,58.867474],[9.427527,58.800777],[9.246417,58.724167],[9.231027,58.684582],[9.048,58.612694],[8.888556,58.499054],[8.713862,58.43161],[8.712751,58.372307],[8.300695,58.213749],[8.242556,58.120666],[8.042694,58.144112],[7.918361,58.071445],[7.800917,58.077332],[7.616917,58.010082],[7.341111,58.031193],[7.109278,58.026527],[7.012194,58.063946],[6.728389,58.062168],[6.597528,58.12925],[6.649444,58.234001],[6.377584,58.277054],[6.258111,58.329834],[6.02975,58.385082],[5.983194,58.466694],[5.885917,58.462501],[5.71,58.530834],[5.54575,58.671528],[5.488889,58.752804],[5.582611,58.876945],[5.561861,59.012611],[5.981361,58.940777],[5.888139,59.071918],[6.161806,59.260223],[5.961555,59.353138],[5.748722,59.331696],[5.488,59.273613],[5.333944,59.320557],[5.219083,59.502777],[5.310583,59.622833],[5.469472,59.713333],[5.757916,59.654472],[5.858639,59.73061],[5.769972,59.918388],[5.912083,59.954807],[6.02475,60.062416],[6.171195,60.127556],[6.091167,60.188805],[6.193861,60.227722],[6.356722,60.348946],[6.030639,60.273666],[5.900278,60.136723],[5.924028,60.044529],[5.763083,59.983528],[5.708056,60.048752],[5.764917,60.135944],[5.619916,60.266834],[5.420722,60.165527],[5.283667,60.209415],[5.174722,60.368668],[5.293389,60.390751],[5.263528,60.503113],[5.384611,60.501667],[5.512583,60.42511],[5.742778,60.468224],[5.742,60.683639],[5.654278,60.730167],[5.582833,60.696529],[5.582972,60.663029],[5.381528,60.566502],[5.236916,60.562778],[5.123083,60.65136],[5.18875,60.846748],[5.102389,60.831249],[5.008306,60.950832],[5.095056,61.073612],[5.282306,61.069084],[5.459694,61.031555],[5.647528,61.10136],[5.827278,61.090279],[5.901778,61.12936],[6.189361,61.118862],[6.345889,61.071888],[6.585834,61.09536],[6.691167,61.157223],[6.860166,61.143307],[6.921833,61.077389],[7.0355,61.108055],[7.324278,61.123638],[7.324639,61.160278],[6.959389,61.115417],[6.842167,61.189251],[6.595056,61.210499],[6.5455,61.139416],[6.384139,61.110363],[6.217222,61.162277],[5.731361,61.168194],[5.404584,61.070332],[5.08575,61.168026],[4.986361,61.284863],[5.112861,61.328751],[5.082417,61.450943],[5.332861,61.46114],[5.202361,61.633499],[5.021389,61.633057],[4.96875,61.72464],[5.168334,61.81036],[5.280944,61.824501],[5.315166,61.908722],[5.119195,61.919777],[5.167361,61.98814],[5.331695,62.000027],[5.330305,62.116943],[5.465083,62.195305],[5.609556,62.168415],[5.913472,62.200722],[6.013167,62.279026],[6.250028,62.364723],[6.564639,62.417416],[6.571389,62.544472],[6.292722,62.528332],[6.269084,62.586613],[6.757222,62.657333],[7.086139,62.652889],[7.362278,62.608139],[7.455972,62.682362],[7.420917,62.762001],[7.022972,62.72364],[7.032055,62.840832],[6.968278,62.901249],[7.047778,62.976223],[7.290028,63.016804],[7.519555,62.912861],[7.666611,62.970833],[7.966472,62.97139],[7.970139,63.08939],[8.091166,63.122307],[8.185889,63.030083],[8.341167,62.959057],[8.431194,62.865665],[8.535916,62.879417],[8.312,63.013805],[8.175083,63.129971],[8.265417,63.155251],[8.541611,63.140221],[8.618333,63.17511],[8.524667,63.294556],[8.753,63.341499],[8.670694,63.416443],[8.985611,63.431194],[9.181444,63.416611],[9.217917,63.521832],[9.553028,63.574501],[9.726778,63.651943],[9.823889,63.51886],[9.980695,63.449139],[10.189167,63.456001],[10.763695,63.439415],[10.783362,63.543972],[10.678555,63.585251],[10.931472,63.696361],[11.208195,63.720554],[11.218111,63.760918],[11.461889,63.801556],[11.298,63.871887],[11.28075,64.038582],[11.025056,63.958027],[11.048028,63.886639],[10.944555,63.741974],[10.623722,63.671055],[10.572889,63.630779],[10.112278,63.498474],[9.917167,63.533779],[9.789722,63.710918],[9.585472,63.687332],[9.562667,63.778831],[9.765333,63.871777],[9.941194,63.877777],[10.022667,64.080055],[10.2115,64.207748],[10.446028,64.308861],[10.444167,64.345444],[10.931666,64.572777],[11.074583,64.655441],[11.242833,64.613419],[11.428083,64.711052],[11.618556,64.769806],[11.25625,64.826836],[11.403639,64.922112],[11.720695,65.016525],[11.858833,65.11647],[12.207111,65.216248],[12.263416,65.277641],[12.126611,65.35247],[12.241167,65.473114],[12.269333,65.581802],[12.614445,65.807808],[12.664833,65.922417],[12.901611,65.986137],[12.949944,66.050278],[12.701445,66.055748],[13.206195,66.283775],[13.004194,66.333885],[13.133083,66.436668],[12.966917,66.52578],[13.191861,66.564583],[13.162249,66.661919],[13.290472,66.699692],[13.561556,66.717026],[13.528806,66.810722],[13.692862,66.878555],[13.552083,66.945305],[14.0255,67.025307],[14.213834,66.998085],[14.356334,67.212334],[14.488973,67.238029],[14.725862,67.217636],[14.714861,67.293808],[14.403528,67.290802],[14.611333,67.383331],[14.634806,67.475029],[15.171695,67.635498],[15.039444,67.685776],[14.768556,67.662834],[14.90675,67.893219],[15.273,67.888107],[15.460778,67.936165],[15.967972,67.98539],[15.92875,68.036194],[15.489,68.056747],[15.339778,68.108696],[15.4785,68.157913],[15.711945,68.114441],[15.887222,68.140442],[16.050249,68.264114],[16.13825,68.172447],[16.08,68.05233],[16.250223,68.004974],[16.383972,68.03347],[16.235416,68.140358],[16.477222,68.191887],[16.248972,68.275665],[16.274861,68.376335],[16.63114,68.424446],[16.89514,68.38839],[17.246666,68.398308],[17.281361,68.473],[16.934833,68.513138],[16.862417,68.470779],[16.519083,68.449364],[16.525583,68.483109],[16.455749,68.512276],[16.590555,68.633247],[16.72986,68.675278],[17.116417,68.714943],[17.632528,68.895248],[17.503695,68.905472],[17.472195,68.99736],[17.785999,69.121582],[18.048805,69.185196],[17.984945,69.310608],[18.162916,69.390053],[18.152555,69.446808],[18.671194,69.327004],[18.449499,69.51783],[18.850834,69.557137],[19.100361,69.735558],[19.694416,69.817169],[19.857027,69.772392],[20.049305,69.84211],[20.265028,69.97522],[20.40375,69.891281],[20.306778,69.770142],[20.224362,69.575333],[20.328806,69.460136],[20.532694,69.767586],[20.762638,69.816635],[20.985611,69.823303],[21.183639,69.887276],[21.238388,70.01442],[21.431,70.018219],[21.579722,69.911781],[21.862249,69.845947],[21.910999,69.951614],[21.717556,70.058365],[21.464611,70.099251],[21.173027,70.218498],[21.566416,70.286552],[21.75639,70.252556],[21.938,70.332001],[22.348667,70.26239],[22.9725,70.190582],[22.971916,70.034447],[23.137861,69.968002],[23.465139,69.978973],[23.148056,70.083031],[23.382444,70.123413],[23.215584,70.222946],[23.478277,70.352364],[24.038555,70.514641],[24.456167,70.744782],[24.255777,70.771584],[24.554111,70.866333],[24.53136,70.971779],[24.812555,70.945663],[24.993555,70.977997],[25.337778,70.833054],[25.426222,70.965309],[25.907723,70.868752],[25.683639,70.744942],[25.424028,70.673058],[25.041361,70.508415],[25.240194,70.464752],[25.050751,70.356194],[25.176306,70.301224],[24.939222,70.232529],[25.071611,70.090027],[25.231472,70.098694],[25.289833,70.183502],[25.525305,70.318497],[25.441055,70.371719],[25.673778,70.499054],[25.978222,70.610336],[26.021723,70.706055],[26.564527,70.951447],[26.72625,70.934891],[26.643667,70.647026],[26.516777,70.440331],[26.691166,70.41822],[26.955862,70.549332],[27.277277,70.762444],[27.292139,70.830254],[27.146055,70.979805],[27.272862,71.046219],[27.502028,71.08886],[27.87414,71.039665],[28.023138,71.08075],[28.295918,71.000557],[28.548694,70.978249],[28.426472,70.859055],[28.239639,70.789444],[28.277306,70.635246],[27.939388,70.484802],[28.39986,70.543861],[28.562778,70.695915],[28.526306,70.73008],[28.833305,70.87661],[29.228721,70.849892],[29.347666,70.760223],[29.300083,70.681168],[29.782612,70.728691],[30.087166,70.704224],[30.331249,70.545364],[30.913221,70.450531],[31.026972,70.394165],[31.056305,70.286583],[30.526472,70.243385],[30.363501,70.143471],[30.073805,70.082169],[29.830444,70.064331],[29.136999,70.129997],[28.875279,70.077835],[29.377111,70.021194],[29.636778,69.95417],[29.771694,69.836609],[29.617001,69.750305],[30.196888,69.771721],[30.426805,69.809525],[30.835388,69.785225]]],[[[16.416252,68.567673],[16.1175,68.538918],[15.999,68.410751],[15.708055,68.38092],[15.638194,68.32653],[15.406083,68.35836],[14.978861,68.316917],[15.252472,68.484222],[15.2325,68.581581],[15.499389,68.648613],[15.440194,68.703392],[15.463695,68.81958],[15.688916,68.965553],[15.920305,68.955391],[16.088112,68.826309],[16.287277,68.882858],[16.599833,68.800415],[16.607889,68.674248],[16.416252,68.567673]]],[[[17.519138,69.535614],[17.698639,69.592194],[17.868639,69.582802],[18.065722,69.491081],[18.081778,69.355469],[17.934584,69.34317],[17.946028,69.178139],[17.623333,69.150917],[17.39636,69.161499],[17.032223,69.057167],[16.771833,69.101387],[16.991028,69.153305],[16.878584,69.236114],[17.220777,69.467003],[17.519138,69.535614]]],[[[22.628944,70.650192],[22.676666,70.743248],[23.033417,70.720779],[23.328667,70.736893],[23.053028,70.571945],[22.835972,70.520836],[22.160084,70.487556],[22.254889,70.567139],[22.226778,70.640335],[22.542694,70.71933],[22.628944,70.650192]]],[[[15.166917,68.980415],[15.398945,68.846748],[15.312,68.768555],[15.379222,68.669083],[15.030694,68.580948],[14.849722,68.589111],[14.831472,68.656197],[14.524417,68.605225],[14.388611,68.66758],[14.452556,68.781723],[14.626306,68.832558],[14.742972,68.773003],[14.962806,68.815224],[15.166917,68.980415]]],[[[18.399084,69.635414],[18.300278,69.767441],[18.539444,69.795387],[18.809139,69.878113],[19.05225,69.774864],[18.780083,69.678947],[18.748888,69.560249],[18.213806,69.520195],[18.005888,69.566475],[18.163,69.633392],[18.399084,69.635414]]],[[[18.807138,70],[19.102306,70.080391],[19.522944,70.049973],[19.670833,70.001892],[19.355388,69.827194],[19.075777,69.792252],[18.7115,69.921555],[18.807138,70]]],[[[23.488167,70.394554],[23.147528,70.276138],[22.883306,70.373581],[22.863138,70.447334],[23.129305,70.553696],[23.368889,70.552803],[23.623417,70.507919],[23.625473,70.43808],[23.488167,70.394554]]],[[[15.710611,68.995834],[15.578139,68.931892],[15.424861,68.982834],[15.564472,69.106972],[15.758805,69.15242],[15.839084,69.245163],[16.117584,69.327332],[16.180639,69.289948],[16.099251,69.158806],[15.824333,69.015976],[15.710611,68.995834]]],[[[15,68.386223],[14.945027,68.337914],[14.662333,68.243225],[14.402917,68.218887],[14.337167,68.34864],[14.602555,68.439613],[15.189695,68.465584],[15,68.386223]]],[[[25.492195,70.952194],[25.254694,71.027664],[25.308306,71.098114],[25.650694,71.174362],[25.840529,71.072083],[26.04475,71.012001],[25.906416,70.967918],[25.492195,70.952194]]],[[[14.267695,68.288254],[14.056501,68.207665],[13.630055,68.109917],[13.495944,68.173248],[13.664611,68.315613],[13.90825,68.347168],[14.232138,68.327278],[14.267695,68.288254]]],[[[8.733306,63.561306],[8.72725,63.63586],[9.085417,63.607529],[9.145805,63.539196],[8.847417,63.48064],[8.398583,63.432083],[8.321278,63.506474],[8.418722,63.551666],[8.733306,63.561306]]],[[[23.727306,70.546776],[23.641445,70.609833],[23.672527,70.747223],[24.057028,70.681557],[24.138695,70.611946],[23.901528,70.508835],[23.727306,70.546776]]],[[[20.665527,70.233803],[20.799999,70.215279],[20.744528,70.105141],[20.575722,70.03508],[20.36039,70.086746],[20.412001,70.182137],[20.665527,70.233803]]],[[[22.874472,70.317665],[22.740749,70.248947],[22.395527,70.298721],[22.354278,70.350944],[22.773527,70.393143],[22.874472,70.317665]]],[[[5.496583,60.52589],[5.443777,60.564751],[5.589584,60.621529],[5.618333,60.696583],[5.7285,60.686085],[5.710083,60.469444],[5.503833,60.443554],[5.496583,60.52589]]],[[[20,70.122307],[19.964611,70.053863],[19.735167,70.05867],[19.654722,70.173691],[20,70.122307]]],[[[11.019305,64.925499],[11.156806,64.980782],[11.283834,64.908608],[11.146112,64.825775],[10.977611,64.88311],[11.019305,64.925499]]],[[[13.180667,68.026169],[13.028277,67.888832],[12.888555,67.924751],[12.964722,68.034943],[13.180667,68.026169]]],[[[16.123083,68.38961],[16.154528,68.499443],[16.377666,68.556946],[16.505362,68.481697],[16.401527,68.420525],[16.123083,68.38961]]],[[[8.017639,63.326584],[7.828195,63.363945],[7.803361,63.417778],[8.101222,63.472057],[8.218778,63.380749],[8.017639,63.326584]]],[[[5.337111,59.874722],[5.461528,59.936554],[5.526833,59.804138],[5.448722,59.750084],[5.32275,59.797863],[5.337111,59.874722]]],[[[19.833805,70],[19.887917,69.974609],[19.726528,69.853554],[19.414223,69.836693],[19.546167,69.927414],[19.833805,70]]],[[[17.181418,68.919945],[17.376472,68.924362],[17.460472,68.858803],[17.279917,68.80175],[17.181418,68.919945]]],[[[12.757083,65.971916],[12.469973,65.858276],[12.382556,65.907692],[12.605723,66.025276],[12.757083,65.971916]]],[[[5.407722,60],[5.553583,60.068085],[5.696944,60.077221],[5.70425,60.003777],[5.540583,59.895611],[5.407722,60]]],[[[5.795556,62.320946],[5.86425,62.411804],[6.010583,62.424641],[6.126889,62.352917],[5.901444,62.25436],[5.795556,62.320946]]],[[[7.436111,63.034279],[7.611805,63.066444],[7.727139,62.998974],[7.5,62.938],[7.353917,62.988056],[7.436111,63.034279]]],[[[5.194,59.284863],[5.333,59.239918],[5.315306,59.168415],[5.17275,59.179165],[5.194,59.284863]]],[[[5.22925,59.851276],[5.340917,59.756168],[5.162,59.717445],[5.100472,59.786499],[5.22925,59.851276]]],[[[5.079083,60.364529],[5.166611,60.222389],[4.982056,60.230804],[5.079083,60.364529]]],[[[12.656083,66.116386],[12.546972,66.060387],[12.389861,66.080887],[12.548333,66.162529],[12.656083,66.116386]]],[[[5,61.78614],[4.884305,61.85014],[4.942611,61.910778],[5.122556,61.836861],[5,61.78614]]],[[[5.745333,62.205418],[5.581833,62.197361],[5.565639,62.298084],[5.801833,62.293999],[5.745333,62.205418]]],[[[13.184028,68.024056],[13.317667,68.179749],[13.453028,68.154945],[13.394417,68.068306],[13.184028,68.024056]]],[[[12,65.67878],[11.920722,65.59375],[11.759722,65.620331],[11.827306,65.697113],[12,65.67878]]],[[[17.056278,68.845108],[17.180084,68.769722],[16.826834,68.726753],[16.951639,68.834831],[17.056278,68.845108]]],[[[8.485444,63.159779],[8.271222,63.226418],[8.451917,63.28664],[8.576028,63.186028],[8.485444,63.159779]]],[[[15,68.554138],[14.763223,68.497864],[14.675583,68.589775],[15,68.554138]]],[[[5,61.094723],[4.836056,61.07439],[4.826639,61.16536],[4.980222,61.205833],[5,61.094723]]],[[[18.727028,70],[18.785499,70.104721],[18.986584,70.079056],[18.727028,70]]],[[[8.198556,63.165974],[7.967389,63.153778],[7.932833,63.193943],[8.141472,63.244667],[8.198556,63.165974]]],[[[5,60.5485],[5.219,60.487167],[5.165445,60.39386],[5,60.5485]]]]},"properties":{"name":"挪威","name_en":"NORWAY","id":"NOR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[14.825222,50.874001],[14.995,50.871223],[14.987001,51.01236],[15.172361,51.020248],[15.294249,50.956085],[15.309556,50.865639],[15.421473,50.807556],[15.699083,50.739834],[15.815222,50.753555],[15.860695,50.674862],[15.957833,50.693611],[16.058195,50.615833],[16.187916,50.626251],[16.236666,50.672722],[16.34989,50.658196],[16.446222,50.580139],[16.392389,50.524612],[16.202334,50.448723],[16.279417,50.369194],[16.356472,50.377167],[16.555361,50.224804],[16.564333,50.162109],[16.71261,50.098972],[16.84314,50.208637],[16.9575,50.227974],[16.912167,50.445168],[17.184111,50.370193],[17.360584,50.277306],[17.652945,50.274944],[17.756111,50.204556],[17.593056,50.165028],[17.734667,50.100418],[17.833944,49.984501],[18.002001,50.017582],[18.415945,49.933166],[18.581694,49.909695],[18.574194,49.834332],[18.632444,49.717251],[18.80825,49.677029],[18.850611,49.521305],[18.54225,49.474918],[18.375528,49.322418],[18.192362,49.280388],[18.097,49.081722],[17.857584,48.944889],[17.758862,48.931446],[17.697945,48.867111],[17.561916,48.81889],[17.359083,48.815167],[17.210028,48.860668],[17.028862,48.766083],[16.936333,48.616859],[16.903139,48.71389],[16.796722,48.703388],[16.668751,48.770889],[16.536417,48.807026],[16.381472,48.726971],[16.038723,48.757946],[15.915556,48.83725],[15.776611,48.874443],[15.683583,48.857361],[15.367833,48.980335],[15.167334,48.952946],[15.026694,49.017056],[14.9545,48.791611],[14.822861,48.785194],[14.7355,48.701695],[14.717556,48.609028],[14.50175,48.619999],[14.35575,48.570667],[14.064777,48.601776],[14.056806,48.66864],[13.842389,48.773666],[13.735666,48.882526],[13.676251,48.880028],[13.583472,48.968582],[13.492861,48.942444],[13.404278,48.986305],[13.400139,49.050083],[13.283139,49.120277],[13.175305,49.141193],[12.948916,49.343777],[12.784083,49.34539],[12.660333,49.433556],[12.64375,49.521751],[12.575,49.560833],[12.521167,49.689919],[12.403167,49.754528],[12.469528,49.789471],[12.551528,49.911888],[12.467195,49.998001],[12.211445,50.109028],[12.161083,50.226501],[12.210694,50.270222],[12.333805,50.232918],[12.509973,50.390472],[12.698611,50.400833],[12.823472,50.457863],[12.942056,50.407276],[13.061667,50.500389],[13.19825,50.506138],[13.399361,50.63736],[13.4655,50.600861],[13.557972,50.71439],[13.853,50.728333],[13.986722,50.819305],[14.207084,50.856583],[14.394,50.943695],[14.260278,50.988529],[14.312834,51.058887],[14.498584,51.030582],[14.649222,50.931667],[14.618611,50.862694],[14.77425,50.822556],[14.825222,50.874001]]]},"properties":{"name":"捷克","name_en":"Czech Republic","id":"CZE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[69.596771,-49.130108],[69.449486,-49.144199],[69.447525,-49.263584],[69.596519,-49.278934],[69.7071,-49.254124],[69.858986,-49.266315],[69.888573,-49.197475],[70.060722,-49.123508],[70.220131,-49.163162],[70.322731,-49.054611],[70.524399,-49.107628],[70.555779,-49.203243],[70.534355,-49.307014],[70.44738,-49.383869],[70.30265,-49.38895],[70.110245,-49.34573],[69.819359,-49.415726],[69.758644,-49.468933],[69.792831,-49.533375],[69.956604,-49.596085],[70.141106,-49.510933],[70.301804,-49.551155],[70.291397,-49.62759],[70.218277,-49.685852],[70.077835,-49.735184],[69.840874,-49.685322],[69.770218,-49.590496],[69.665894,-49.671772],[69.436394,-49.642345],[69.360664,-49.572586],[69.260666,-49.568199],[69.093262,-49.637535],[68.984139,-49.722538],[68.793617,-49.731831],[68.766632,-49.60709],[68.902824,-49.453667],[68.806915,-49.373592],[68.764984,-49.201675],[68.818268,-49.15419],[68.739349,-49.073132],[68.863205,-48.937859],[68.790009,-48.853325],[68.937866,-48.781452],[68.952782,-48.70446],[69.050789,-48.667816],[69.061821,-48.771118],[69.155228,-48.850834],[69.082222,-48.910858],[69.176391,-49.033039],[69.198921,-49.120804],[69.319115,-49.101158],[69.360817,-49.086658],[69.542015,-48.961555],[69.631515,-49.04697],[69.596771,-49.130108]]],[[[69.309372,-48.959671],[69.35939,-48.99596],[69.289162,-49.102646],[69.205795,-49.105656],[69.22216,-49.074154],[69.200356,-48.997463],[69.309372,-48.959671]]],[[[51.694004,-46.375053],[51.76088,-46.347855],[51.853348,-46.399258],[51.835018,-46.471199],[51.681767,-46.433533],[51.694004,-46.375053]]]]},"properties":{"name":"法属南部领地","name_en":"FRENCH SOUTHERN TERRITORIES","id":"ATF"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-61.841709,17.169622],[-61.77816,17.114969],[-61.683063,17.102003],[-61.674389,17.045736],[-61.828461,17.004234],[-61.887505,17.023874],[-61.89909,17.119459],[-61.841709,17.169622]]],[[[-61.736412,17.575119],[-61.832157,17.598425],[-61.830929,17.682653],[-61.744659,17.645418],[-61.736412,17.575119]]]]},"properties":{"name":"安提瓜和巴布达","name_en":"ANTIGUA AND BARBUDA","id":"ATG"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[177.836059,-17.430334],[177.943024,-17.426416],[178.023834,-17.365528],[178.119278,-17.364027],[178.193329,-17.321888],[178.33461,-17.451529],[178.42456,-17.563999],[178.579895,-17.64311],[178.544281,-17.762444],[178.62384,-17.849388],[178.5802,-17.904222],[178.676056,-18.055166],[178.588257,-18.129278],[178.559006,-18.095417],[178.328644,-18.118917],[178.153977,-18.259388],[178.104645,-18.242916],[177.897781,-18.271555],[177.76741,-18.217777],[177.545532,-18.166973],[177.458283,-18.164499],[177.338196,-18.117527],[177.252716,-17.956944],[177.442139,-17.754028],[177.394837,-17.684084],[177.621857,-17.453806],[177.836059,-17.430334]]],[[[178.893524,-16.572584],[178.969772,-16.483778],[179.181702,-16.419222],[179.287811,-16.423195],[179.44902,-16.304111],[179.738159,-16.195972],[180,-16.146166],[180,-16.169556],[179.840805,-16.275555],[179.745529,-16.455111],[179.582413,-16.548111],[179.568466,-16.600111],[179.480896,-16.696388],[179.486633,-16.77],[179.617523,-16.7295],[179.796997,-16.541027],[179.936218,-16.485056],[179.850189,-16.64325],[179.899002,-16.715889],[179.716507,-16.716083],[179.613022,-16.776112],[179.515839,-16.802084],[179.340134,-16.801834],[179.365494,-16.738722],[179.269333,-16.696833],[179.201218,-16.699917],[179.10553,-16.797445],[179.047562,-16.822166],[179.012024,-16.919277],[178.876144,-16.856083],[178.808243,-16.91061],[178.799912,-16.987778],[178.716248,-17.01025],[178.677368,-16.965889],[178.633774,-16.818361],[178.543396,-16.735361],[178.57959,-16.626667],[178.70166,-16.683527],[178.856995,-16.556944],[178.893524,-16.572584]]],[[[178.371216,-18.940445],[178.479813,-18.979918],[178.471054,-19.027277],[178.371826,-19.061361],[178.269531,-18.998861],[178.371216,-18.940445]]],[[[-180,-16.966169],[-180,-16.9179],[-180,-16.8346],[-180,-16.797264],[-180,-16.796429],[-180,-16.795683],[-180,-16.795305],[-180,-16.79493],[-180,-16.794559],[-180,-16.794182],[-180,-16.793806],[-180,-16.793343],[-180,-16.792967],[-180,-16.792595],[-180,-16.792219],[-180,-16.791843],[-180,-16.791471],[-179.861648,-16.69158],[-179.843704,-16.795307],[-179.874039,-16.857214],[-180,-16.966169]]],[[[179.364273,-18.062611],[179.2612,-18.01475],[179.306397,-17.94389],[179.364273,-18.062611]]],[[[180,-16.97839],[179.930283,-17.009527],[179.894363,-16.946833],[179.95845,-16.885471],[180,-16.799667],[180,-16.97839]]],[[[179.406174,-17.247223],[179.446747,-17.3195],[179.389145,-17.398027],[179.352387,-17.262167],[179.406174,-17.247223]]]]},"properties":{"name":"斐济","name_en":"Fiji","id":"FJI"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.349945,14.421761],[-89.350082,14.464952],[-89.238724,14.577447],[-89.15538,14.572211],[-89.133965,14.699716],[-89.22393,14.839644],[-89.158333,14.978539],[-89.148735,15.069331],[-88.96711,15.137063],[-88.826164,15.255234],[-88.682518,15.337831],[-88.354828,15.603988],[-88.223198,15.720082],[-88.147842,15.674684],[-88.044617,15.780216],[-87.951271,15.804731],[-87.872337,15.883358],[-87.710426,15.913925],[-87.47554,15.774061],[-87.370911,15.842174],[-87.201607,15.79353],[-86.921486,15.749856],[-86.784607,15.792389],[-86.683006,15.782731],[-86.484322,15.808521],[-86.359627,15.778431],[-86.221626,15.867708],[-86.120667,15.902122],[-86.008324,15.899949],[-85.933693,15.926001],[-85.919182,15.994694],[-85.714569,15.963709],[-85.586258,15.889447],[-85.454743,15.860279],[-85.24807,15.883985],[-85.038086,15.990301],[-84.644272,15.857615],[-84.416496,15.818281],[-84.30397,15.815433],[-84.033493,15.580437],[-83.828766,15.422765],[-83.722145,15.389128],[-83.605805,15.324308],[-83.423462,15.26674],[-83.356483,15.200663],[-83.282089,15.060738],[-83.157807,14.992083],[-83.291008,14.98288],[-83.407265,15.021278],[-83.545334,14.967436],[-83.563637,14.909992],[-83.671493,14.871219],[-83.763397,14.802092],[-83.980293,14.739974],[-84.077568,14.752398],[-84.254478,14.674626],[-84.383171,14.677254],[-84.498039,14.621012],[-84.746796,14.711536],[-84.79287,14.809473],[-84.903412,14.807712],[-85.028137,14.698014],[-85.025177,14.601975],[-85.137642,14.51722],[-85.225494,14.366777],[-85.157913,14.293488],[-85.183571,14.250559],[-85.338715,14.244608],[-85.405274,14.124769],[-85.576477,14.062426],[-85.75914,13.958324],[-85.764259,13.879313],[-85.920044,13.907865],[-86.015449,13.989798],[-86.0065,14.070836],[-86.150467,14.032482],[-86.185905,13.955145],[-86.302765,13.841557],[-86.352074,13.759555],[-86.499069,13.769221],[-86.534477,13.79787],[-86.76284,13.773121],[-86.785034,13.656704],[-86.751465,13.635921],[-86.706543,13.295381],[-86.761772,13.268625],[-86.819229,13.306297],[-86.907913,13.256348],[-86.933312,13.12109],[-86.982261,13.01507],[-87.063492,12.996887],[-87.314613,12.982411],[-87.30867,13.019609],[-87.426872,13.128426],[-87.482712,13.25407],[-87.477356,13.360032],[-87.581451,13.303],[-87.60199,13.392227],[-87.744331,13.348759],[-87.818245,13.401186],[-87.7257,13.437925],[-87.722595,13.498605],[-87.791412,13.518681],[-87.710319,13.809786],[-87.799873,13.889174],[-88.015617,13.886432],[-88.064247,13.951336],[-88.206673,13.936996],[-88.353256,13.86536],[-88.494804,13.858118],[-88.497643,13.956601],[-88.628532,14.019085],[-88.687706,14.015684],[-88.755898,14.084363],[-88.819939,14.083601],[-88.864639,14.178296],[-88.956139,14.202767],[-89.092484,14.346227],[-89.176208,14.343449],[-89.349945,14.421761]]]},"properties":{"name":"洪都拉斯","name_en":"HONDURAS","id":"HND"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[57.637848,-20],[57.753021,-20.128334],[57.793148,-20.291676],[57.721108,-20.424898],[57.663868,-20.484186],[57.527878,-20.525717],[57.345902,-20.485966],[57.358269,-20.292501],[57.422031,-20.180031],[57.495975,-20.149952],[57.505329,-20.080153],[57.584423,-19.991669],[57.637848,-20]]],[[[63.452763,-19.664032],[63.458061,-19.738146],[63.356747,-19.759409],[63.333737,-19.715328],[63.452763,-19.664032]]]]},"properties":{"name":"毛里求斯","name_en":"MAURITIUS","id":"MUS"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-112.86068,-74.684776],[-112.648132,-74.74601],[-112.814873,-74.847008],[-112.328575,-74.832359],[-112.125908,-74.796242],[-111.403244,-74.7808],[-111.224892,-74.716393],[-111.551765,-74.685867],[-111.739502,-74.574913],[-111.464905,-74.502739],[-111.445145,-74.421478],[-111.650177,-74.287926],[-111.567383,-74.21096],[-111.11499,-74.204346],[-110.678169,-74.269585],[-110.202522,-74.274994],[-110.052246,-74.386108],[-109.805489,-74.651787],[-109.224159,-74.593369],[-109.042892,-74.665894],[-109.044342,-74.738327],[-108.761627,-74.809273],[-108.588288,-74.720726],[-108.31488,-74.706863],[-108.222656,-74.597008],[-107.96257,-74.620483],[-107.329529,-74.564476],[-107.191795,-74.750313],[-106.550888,-74.813087],[-106.666107,-74.898308],[-106.604721,-74.970406],[-106.667732,-75.0877],[-106.856094,-75.252632],[-106.562462,-75.291443],[-106.2388,-75.286041],[-105.397209,-75.187149],[-105.264832,-75.127808],[-105.302826,-74.94767],[-105.175278,-74.794685],[-104.980454,-74.687973],[-104.683029,-74.723404],[-104.298439,-74.694534],[-103.961494,-74.747932],[-103.380974,-74.740791],[-103.146195,-74.849167],[-102.267563,-74.990532],[-102.073006,-75.03714],[-101.978744,-75.14389],[-101.99292,-75.261566],[-101.092323,-75.203987],[-100.424187,-75.124146],[-100.578308,-74.960922],[-100.826141,-74.856018],[-101.497543,-74.616608],[-101.709107,-74.510254],[-101.667213,-74.443611],[-101.181358,-74.338356],[-100.926231,-74.259598],[-100.474167,-74.282372],[-100.496498,-74.129547],[-101.009483,-73.920265],[-101.001755,-73.870033],[-102.083618,-73.827011],[-102.159516,-73.75029],[-102.095413,-73.658028],[-102.285072,-73.564652],[-101.825546,-73.530777],[-101.383461,-73.537338],[-101.186844,-73.581398],[-100.845894,-73.572662],[-100.471252,-73.613075],[-100.015304,-73.510323],[-99.989716,-73.331375],[-100.372643,-73.258713],[-100.800674,-73.135864],[-101.181824,-73.133446],[-101.512093,-73.297325],[-102.661079,-73.383331],[-102.810646,-73.352867],[-103.007027,-73.243507],[-103.188965,-73.227394],[-103.331215,-73.052292],[-103.506119,-72.953819],[-103.47316,-72.874138],[-103.066322,-72.787071],[-102.831665,-72.821747],[-102.251648,-72.826172],[-102.058273,-72.930405],[-102.183815,-73.001472],[-101.734795,-73.080238],[-101.089561,-73.005714],[-100.661759,-72.992516],[-100.388061,-73.050636],[-99.952492,-73.177589],[-98.832695,-72.982094],[-98.495163,-72.938255],[-98.033249,-72.909195],[-97.735969,-72.976387],[-97.553474,-73.12117],[-97.233246,-73.158386],[-96.687897,-73.268051],[-96.269043,-73.288063],[-95.966087,-73.347404],[-95.844635,-73.258232],[-95.258575,-73.194763],[-94.818687,-73.231667],[-94.405662,-73.143707],[-94.381943,-73.078247],[-94.479202,-72.925247],[-94.353767,-72.905197],[-94.111023,-73.027344],[-93.993118,-73.026604],[-93.886818,-73.195038],[-93.575989,-73.172142],[-92.699837,-73.181397],[-92.52018,-73.155502],[-91.931557,-73.208694],[-91.758507,-73.246094],[-91.462845,-73.240486],[-90.989494,-73.297295],[-90.597954,-73.259911],[-90.326347,-73.154785],[-89.791824,-73.167427],[-89.406593,-73.045845],[-89.292236,-72.893349],[-89.30954,-72.782318],[-89.548424,-72.619164],[-89.142258,-72.598503],[-88.70919,-72.65596],[-88.553452,-72.646797],[-88.214081,-72.704689],[-88.118355,-72.772484],[-88.202957,-72.859612],[-88.615135,-73.02253],[-88.600029,-73.059013],[-88.113442,-73.125],[-87.937683,-73.07589],[-87.396477,-73.160278],[-87.050133,-73.291321],[-86.76342,-73.328461],[-86.210037,-73.237129],[-85.973129,-73.160934],[-85.729553,-73.154854],[-85.57093,-73.234093],[-85.421982,-73.412422],[-84.742279,-73.521675],[-84.206985,-73.521759],[-83.319611,-73.53923],[-83.306595,-73.614662],[-82.73597,-73.761345],[-82.207634,-73.872398],[-82.010285,-73.935272],[-81.79612,-73.88308],[-81.362976,-73.866295],[-80.820793,-73.764557],[-80.792808,-73.646484],[-81.08136,-73.509132],[-81.046135,-73.286987],[-80.668129,-73.279297],[-80.418915,-73.375771],[-80.236473,-73.401154],[-80.066177,-73.339973],[-80.161575,-73.234833],[-80.349899,-73.12941],[-80.241852,-73.005966],[-79.395897,-73.111511],[-78.895844,-73.31778],[-78.635429,-73.369247],[-78.510048,-73.486008],[-78.621903,-73.631454],[-78.398201,-73.640251],[-77.41182,-73.524055],[-77.124985,-73.559395],[-76.752381,-73.525452],[-76.590729,-73.591858],[-76.755516,-73.716347],[-77.128075,-73.831268],[-76.932755,-73.876846],[-76.492714,-73.785339],[-76.342415,-73.837509],[-76.111977,-73.823517],[-75.758011,-73.738594],[-75.13028,-73.655243],[-74.750404,-73.733879],[-74.197059,-73.677353],[-73.982315,-73.718643],[-73.629684,-73.552719],[-73.301407,-73.535034],[-73.17247,-73.489021],[-72.64798,-73.479668],[-72.353668,-73.424622],[-71.909485,-73.384834],[-71.535828,-73.393806],[-71.162315,-73.282043],[-70.751045,-73.270569],[-70.400764,-73.297775],[-69.979339,-73.233673],[-69.335144,-73.181664],[-69.20475,-73.1362],[-68.589089,-73.052711],[-68.509125,-73.000839],[-68.174828,-72.947449],[-68.047089,-72.892792],[-67.574234,-72.837456],[-67.345741,-72.588219],[-66.862617,-72.412308],[-66.995911,-72.218216],[-67.000977,-72.086319],[-66.916489,-71.883316],[-67.159592,-71.699181],[-67.343407,-71.672729],[-67.628021,-71.465767],[-67.655586,-71.386459],[-67.532783,-71.289482],[-67.410973,-71.000587],[-67.787766,-70.64521],[-67.731812,-70.55658],[-67.856873,-70.500633],[-68.004135,-70.259491],[-68.223686,-70.222855],[-68.42955,-70.127457],[-68.489456,-69.919067],[-68.380211,-69.875343],[-68.383575,-69.660835],[-68.498909,-69.633049],[-68.599762,-69.521881],[-68.852516,-69.430923],[-68.715309,-69.3778],[-68.329209,-69.383972],[-68.325157,-69.283417],[-67.902023,-69.355721],[-67.333672,-69.343369],[-66.769333,-69.043503],[-67.021385,-68.955666],[-67.357742,-68.917366],[-67.506821,-68.847359],[-67.377564,-68.788597],[-67.150025,-68.804184],[-66.936798,-68.751976],[-67.202797,-68.52607],[-67.015137,-68.459824],[-66.936882,-68.306595],[-66.743774,-68.302643],[-66.632034,-68.242821],[-66.725082,-68.187958],[-66.956284,-68.220467],[-67.134682,-68.096863],[-67.278831,-67.94413],[-66.893639,-67.915794],[-66.84758,-67.873489],[-67.016678,-67.77034],[-66.980102,-67.666855],[-66.778206,-67.580772],[-66.76033,-67.491096],[-67.027397,-67.466698],[-67.501022,-67.555954],[-67.647499,-67.438904],[-67.51146,-67.325714],[-67.585113,-67.271225],[-67.498787,-67.21019],[-67.544189,-67.137093],[-67.498009,-67.045654],[-67.312492,-67.045128],[-67.262222,-66.985313],[-67.058083,-66.917648],[-66.906906,-66.952759],[-66.954498,-67.08271],[-66.859238,-67.19339],[-66.494919,-67.216194],[-66.467415,-67.166214],[-66.62352,-67.031952],[-66.483261,-66.850563],[-66.596512,-66.646355],[-66.534363,-66.614258],[-66.184136,-66.592621],[-65.996826,-66.677391],[-65.804428,-66.629143],[-65.735115,-66.48761],[-65.617325,-66.401619],[-65.839905,-66.2714],[-65.704224,-66.2407],[-65.63562,-66.09864],[-65.223084,-66.173599],[-65.176163,-66.108429],[-65.359077,-66.034035],[-65.230164,-65.956413],[-64.99884,-65.920525],[-64.793587,-65.940147],[-64.732109,-66.008759],[-64.497002,-65.981667],[-64.487312,-65.930893],[-64.715439,-65.825088],[-64.646789,-65.720902],[-64.396446,-65.789642],[-64.375328,-65.690193],[-64.469543,-65.625664],[-64.103539,-65.598442],[-64.109802,-65.503311],[-63.820034,-65.525337],[-63.758091,-65.459999],[-64.088394,-65.410271],[-64.006531,-65.30883],[-64.114044,-65.278748],[-64.085892,-65.160942],[-63.847702,-65.027809],[-63.692314,-65.037697],[-63.513256,-65.094238],[-63.061874,-65.076469],[-63.266064,-64.948158],[-63.093204,-64.894768],[-62.89183,-64.902878],[-62.879806,-64.818779],[-62.759907,-64.799355],[-62.650562,-64.916687],[-62.535656,-64.857506],[-62.699925,-64.771919],[-62.560711,-64.73954],[-62.592953,-64.622314],[-62.433735,-64.593811],[-62.382587,-64.675087],[-62.222366,-64.736855],[-61.975048,-64.676132],[-61.93742,-64.56852],[-61.737343,-64.534569],[-61.630005,-64.649002],[-61.529778,-64.592422],[-61.606365,-64.427902],[-61.358303,-64.4179],[-61.160824,-64.345413],[-60.845387,-64.143463],[-60.965393,-64.042328],[-60.739483,-64.064323],[-60.299729,-63.917644],[-60.056511,-63.952038],[-59.913174,-63.866226],[-59.609016,-63.887859],[-59.453213,-63.844173],[-59.230125,-63.67749],[-59.11776,-63.716019],[-58.964161,-63.639622],[-58.947719,-63.562988],[-58.702442,-63.495884],[-58.399555,-63.44133],[-58.141911,-63.452404],[-57.886646,-63.301861],[-57.477062,-63.265354],[-57.318699,-63.221195],[-57.074329,-63.246464],[-56.939327,-63.42646],[-56.981712,-63.473316],[-56.787895,-63.533775],[-56.863094,-63.652367],[-56.97311,-63.615128],[-57.139416,-63.648651],[-57.113747,-63.53709],[-57.223358,-63.465458],[-57.407734,-63.474255],[-57.409702,-63.534512],[-57.682205,-63.557995],[-57.690056,-63.626751],[-57.93956,-63.67627],[-58.080093,-63.665775],[-58.268398,-63.728825],[-58.473457,-63.921337],[-58.68206,-64.007965],[-58.656536,-64.102776],[-58.854309,-64.236885],[-58.757507,-64.300217],[-58.944027,-64.368927],[-58.815243,-64.400558],[-58.830536,-64.526405],[-59.027416,-64.50946],[-59.327694,-64.441788],[-59.448433,-64.324608],[-59.687191,-64.337845],[-59.715549,-64.393158],[-59.983452,-64.402763],[-60.420318,-64.626709],[-60.620296,-64.665291],[-60.717373,-64.719872],[-60.748039,-64.809372],[-60.877464,-64.857124],[-61.059887,-65.019402],[-61.194168,-64.973686],[-61.353542,-65.045464],[-61.593781,-65.095192],[-61.617252,-65.2351],[-61.774037,-65.249649],[-61.88319,-65.19017],[-62.205284,-65.323517],[-62.120262,-65.406952],[-61.93436,-65.468269],[-61.947495,-65.545586],[-62.091862,-65.597252],[-62.12326,-65.719399],[-62.302887,-65.753235],[-62.3997,-65.830704],[-62.396103,-65.931892],[-62.131321,-66.024788],[-62.045406,-66.1166],[-61.820946,-66.161774],[-61.590698,-66.023087],[-61.347672,-66.075806],[-61.380638,-65.962303],[-61.159218,-65.960381],[-61.012474,-65.921783],[-60.650463,-65.928673],[-60.595184,-65.997147],[-60.725193,-66.112236],[-60.853176,-66.151703],[-60.961357,-66.257782],[-61.14912,-66.335045],[-61.202397,-66.245453],[-61.364696,-66.122307],[-61.485695,-66.136604],[-61.494961,-66.227043],[-61.661148,-66.22609],[-61.702816,-66.364822],[-61.929699,-66.255043],[-62.173775,-66.182495],[-62.435681,-66.179855],[-62.713234,-66.205536],[-62.917248,-66.269341],[-62.574951,-66.368538],[-62.424866,-66.439453],[-62.616032,-66.489159],[-62.698521,-66.548927],[-62.473583,-66.695091],[-62.616738,-66.741409],[-62.739723,-66.693298],[-62.755581,-66.591415],[-62.888775,-66.483742],[-63.194298,-66.336838],[-63.253884,-66.280563],[-63.447517,-66.259369],[-63.555103,-66.207466],[-63.78511,-66.271004],[-63.765774,-66.336548],[-63.963081,-66.461662],[-63.839272,-66.560852],[-64.131325,-66.589989],[-64.1772,-66.744591],[-63.838097,-66.774788],[-63.712658,-66.865585],[-63.890453,-66.93026],[-64.400894,-66.894508],[-64.869232,-66.957085],[-64.949631,-67.046135],[-64.73378,-67.083015],[-64.847145,-67.167374],[-65.021385,-67.190521],[-65.086411,-67.34742],[-65.310265,-67.393837],[-65.397774,-67.34536],[-65.625038,-67.49202],[-65.398117,-67.602989],[-65.425033,-67.692535],[-65.637329,-67.740997],[-65.61039,-67.946709],[-65.450233,-67.942985],[-65.371269,-68.008408],[-65.615074,-68.03019],[-65.729706,-68.125061],[-65.297218,-68.17688],[-65.029961,-68.069977],[-64.793823,-68.095291],[-64.812866,-68.17514],[-65.390869,-68.301826],[-65.458733,-68.381744],[-65.078339,-68.36174],[-64.979073,-68.408913],[-65.20961,-68.509209],[-65.236542,-68.623962],[-64.937096,-68.644348],[-64.694664,-68.686188],[-64.482903,-68.760864],[-64.275826,-68.773933],[-64.030525,-68.739418],[-64.236465,-68.666672],[-63.966446,-68.558998],[-63.92284,-68.505707],[-63.63055,-68.434456],[-63.359695,-68.430687],[-62.944191,-68.490585],[-63.095593,-68.53569],[-63.217541,-68.491409],[-63.676712,-68.560806],[-63.841785,-68.700401],[-63.415241,-68.765778],[-63.38554,-68.929932],[-63.712322,-68.954399],[-63.813362,-69.039993],[-63.327019,-69.087921],[-63.580845,-69.1996],[-63.381771,-69.235954],[-63.245495,-69.159508],[-63.080887,-69.259155],[-63.115192,-69.306313],[-62.963875,-69.378876],[-62.721573,-69.353554],[-62.592934,-69.47847],[-62.428032,-69.506584],[-62.396874,-69.632767],[-62.43985,-69.758514],[-62.673592,-69.814262],[-62.528557,-69.869781],[-62.34959,-69.994476],[-61.974728,-70.065079],[-61.887516,-70.206123],[-62.208168,-70.328835],[-62.473934,-70.378319],[-62.410286,-70.464905],[-62.205254,-70.539612],[-61.490921,-70.487801],[-61.389942,-70.590195],[-61.68943,-70.623642],[-61.664406,-70.697876],[-61.956173,-70.756538],[-62.123394,-70.873848],[-62.072304,-70.925568],[-61.834961,-70.927071],[-61.724876,-70.856247],[-61.505001,-70.813965],[-61.304024,-70.914597],[-61.453953,-71.037689],[-60.944126,-71.191132],[-61.061642,-71.264908],[-61.002369,-71.365532],[-61.222172,-71.355804],[-61.23531,-71.453621],[-61.456425,-71.451302],[-61.431381,-71.578285],[-61.191525,-71.529358],[-61.057678,-71.605606],[-60.817245,-71.664261],[-60.925434,-71.756714],[-61.350639,-71.877434],[-61.745041,-71.876327],[-61.947849,-71.935684],[-61.829365,-72.056007],[-61.516769,-72.095184],[-61.123055,-72.036377],[-60.665791,-72.002754],[-60.733402,-72.121315],[-60.899017,-72.125748],[-60.684719,-72.273918],[-60.957203,-72.292389],[-60.999645,-72.375694],[-60.720497,-72.376427],[-60.717926,-72.438721],[-60.932812,-72.483383],[-61.400192,-72.416428],[-61.476448,-72.486679],[-61.360802,-72.614716],[-61.194973,-72.681175],[-60.915527,-72.70443],[-60.729195,-72.641594],[-60.552261,-72.670563],[-60.480492,-72.953796],[-60.136547,-72.988602],[-60.117497,-72.916687],[-59.807655,-72.899933],[-59.796719,-72.990486],[-59.935978,-73.144516],[-59.866421,-73.239555],[-60.261971,-73.31398],[-60.435104,-73.174614],[-60.570458,-73.187836],[-60.633938,-73.42366],[-60.7775,-73.52475],[-60.782387,-73.646576],[-60.678432,-73.706963],[-60.926964,-73.814285],[-60.750336,-74.100105],[-60.996921,-74.090385],[-61.331856,-74.250412],[-61.681339,-74.308243],[-61.528233,-74.347931],[-61.00494,-74.28775],[-60.669289,-74.296608],[-60.745522,-74.377068],[-61.084503,-74.414154],[-61.000931,-74.509201],[-61.341801,-74.546722],[-61.686256,-74.528145],[-61.936764,-74.583519],[-62.102859,-74.664101],[-61.918773,-74.801971],[-62.218952,-74.975403],[-62.556854,-75.012527],[-62.844917,-75.138489],[-63.082256,-75.140488],[-64.029167,-75.21003],[-64.396889,-75.268967],[-64.338837,-75.344048],[-63.91634,-75.320679],[-63.317127,-75.32058],[-63.260689,-75.416344],[-64.045235,-75.624802],[-64.997414,-75.780525],[-65.250442,-75.778877],[-65.755241,-75.923851],[-66.693344,-76.02243],[-67.152214,-76.102364],[-67.477768,-76.130104],[-67.862816,-76.209602],[-68.544464,-76.292587],[-69.715889,-76.386009],[-69.809807,-76.493431],[-69.184776,-76.587555],[-68.976769,-76.683952],[-68.411308,-76.727089],[-67.791916,-76.836853],[-67.635208,-76.894768],[-67.684059,-77.032921],[-67.54998,-77.343124],[-67.564987,-77.542572],[-67.642212,-77.627647],[-67.96405,-77.767845],[-68.285667,-77.823082],[-68.49662,-77.984001],[-69.132301,-78.094757],[-69.618195,-78.112793],[-70.428635,-78.07299],[-71.523949,-78.067215],[-72.791535,-77.948441],[-73.825081,-77.822601],[-74.439079,-77.682259],[-74.824097,-77.525208],[-75.078239,-77.381096],[-75.695534,-77.172829],[-75.75769,-77.033386],[-75.756599,-76.644867],[-77.116783,-76.715836],[-78.275741,-76.797791],[-78.939346,-76.85759],[-80.890312,-76.967705],[-81.064125,-76.999023],[-80.85527,-77.169846],[-81.21038,-77.408875],[-81.502365,-77.44162],[-81.659859,-77.321884],[-81.97422,-77.178726],[-81.954918,-77.083649],[-83.216095,-77.151436],[-82.719315,-77.266045],[-82.710571,-77.39193],[-82.523743,-77.449547],[-82.243614,-77.716881],[-81.990257,-77.895561],[-81.936119,-78.034203],[-82.323715,-78.100975],[-81.897568,-78.17791],[-82.066422,-78.340652],[-81.917366,-78.430222],[-81.371758,-78.5326],[-81.054329,-78.687759],[-81.421982,-78.875992],[-81.312447,-78.985626],[-81.031563,-79.074707],[-81.466873,-79.19445],[-81.276604,-79.270569],[-81.146248,-79.451347],[-80.817848,-79.537926],[-80.466919,-79.734764],[-80.018234,-79.651993],[-79.994232,-79.571075],[-80.370186,-79.318924],[-79.894241,-79.252701],[-79.402672,-79.318764],[-78.692543,-79.453796],[-79.014542,-79.501701],[-78.75518,-79.612289],[-77.855789,-79.809845],[-77.330147,-79.984039],[-77.989754,-80.036751],[-78.829552,-80.005051],[-79.691658,-79.943802],[-79.529808,-80.0242],[-79.078201,-80.092651],[-77.703285,-80.180946],[-77.16481,-80.158768],[-76.895912,-80.184097],[-76.982552,-80.281036],[-76.227585,-80.464249],[-75.479965,-80.59967],[-74.599922,-80.688965],[-73.098411,-80.755005],[-72.070908,-80.772865],[-71.437088,-80.744949],[-70.066536,-80.730095],[-68.830322,-80.676949],[-66.887367,-80.608383],[-65.898773,-80.539268],[-65.319801,-80.51902],[-62.681358,-80.334152],[-60.847385,-80.252586],[-59.885826,-80.155075],[-59.49963,-79.984802],[-59.50211,-79.858994],[-59.259022,-79.705276],[-58.895756,-79.622894],[-57.210854,-79.51078],[-56.042992,-79.448914],[-54.867245,-79.332596],[-54.20277,-79.230156],[-53.688061,-79],[-53.550453,-78.967934],[-53.239708,-78.700264],[-53.040379,-78.634605],[-51.828766,-78.441429],[-51.002674,-78.251167],[-50.544445,-78.163574],[-49.3783,-77.797073],[-48.868381,-77.709801],[-48.348144,-77.722954],[-48.068626,-77.763733],[-46.480255,-77.93866],[-45.881981,-78.080154],[-45.52359,-78.263733],[-44.990398,-78.44458],[-44.906734,-78.53878],[-45.365112,-78.622078],[-46.144382,-78.680756],[-47.552872,-78.731422],[-48.158722,-78.778236],[-48.4991,-78.861244],[-48.305946,-78.938171],[-47.850662,-78.932434],[-46.997379,-78.867989],[-46.469559,-78.860558],[-45.62096,-78.777878],[-45.238487,-78.767433],[-44.499988,-78.797256],[-44.227981,-78.845703],[-44.055328,-79.045876],[-44.308666,-79.139122],[-45.000427,-79.180718],[-45.345173,-79.178185],[-46.440643,-79.255127],[-46.380856,-79.41906],[-45.99749,-79.483162],[-44.395828,-79.395187],[-44.059425,-79.339935],[-43.209621,-79.333626],[-42.890358,-79.399269],[-42.873654,-79.496605],[-43.131996,-79.709221],[-42.965843,-79.862289],[-43.092529,-79.946648],[-43.550316,-79.976479],[-44.830231,-79.865265],[-44.992435,-79.930595],[-44.820732,-80.017952],[-44.443821,-80.056679],[-44.273003,-80.171669],[-44.917797,-80.391113],[-45.48098,-80.488297],[-48.872276,-80.724876],[-49.478336,-80.740257],[-51.101364,-80.726341],[-51.782673,-80.670731],[-52.765919,-80.460045],[-53.36816,-80.253212],[-54.002754,-80.076637],[-54.693947,-79.977608],[-55.701988,-80.058022],[-56.38966,-80.144005],[-58.43475,-80.454102],[-59.422993,-80.69371],[-59.81913,-80.75882],[-59.978371,-80.849739],[-60.771858,-81.03344],[-61.37265,-81.082138],[-62.185047,-81.099129],[-63.184685,-81.155251],[-64.768143,-81.174461],[-65.556687,-81.198959],[-66.360138,-81.19413],[-66.86306,-81.216301],[-68.275879,-81.228409],[-70.014969,-81.26973],[-70.588677,-81.296394],[-71.328277,-81.373871],[-71.725395,-81.439865],[-71.941048,-81.530113],[-72.01828,-81.723015],[-71.52993,-81.925247],[-71.040893,-82.029961],[-70.134842,-82.167732],[-67.832886,-82.410332],[-65.795013,-82.505058],[-62.983784,-82.499619],[-60.244488,-82.41832],[-59.178669,-82.581795],[-59.01096,-82.677368],[-59.344185,-82.929031],[-59.062469,-83.016335],[-58.430279,-83.010292],[-58.032783,-82.960426],[-56.139191,-82.43457],[-55.704933,-82.35511],[-54.15176,-82.151886],[-53.023781,-82.052719],[-52.033589,-81.891586],[-51.403412,-81.812157],[-50.495659,-81.765442],[-48.683212,-81.753044],[-47.297092,-81.716286],[-46.06963,-81.726456],[-45.239162,-81.704659],[-43.411148,-81.577499],[-41.52742,-81.37011],[-39.757275,-81.10025],[-37.927124,-80.838966],[-36.557919,-80.55452],[-36.176208,-80.424736],[-35.614712,-80.312187],[-34.581654,-80.207428],[-33.892578,-80.170006],[-32.419563,-80.130692],[-31.847652,-80.139221],[-32.066723,-80.374023],[-31.464666,-80.446739],[-30.733128,-80.434265],[-30.788008,-80.30796],[-30.253153,-80.198166],[-30.079935,-80.041092],[-30.41555,-79.800491],[-30.379698,-79.722366],[-30.759092,-79.573898],[-30.653702,-79.504288],[-29.94154,-79.38736],[-29.960686,-79.281387],[-30.331461,-79.220894],[-31.476963,-79.18486],[-32.126305,-79.192101],[-33.084202,-79.166588],[-33.727528,-79.172768],[-34.321941,-79.075913],[-34.926594,-79.032013],[-35.294609,-78.978729],[-35.820644,-78.949875],[-36.342526,-78.831314],[-36.53619,-78.701592],[-36.372551,-78.526733],[-36.378593,-78.346725],[-35.611446,-78.104202],[-35.641525,-77.980476],[-35.513504,-77.866104],[-35.2915,-77.807892],[-34.860352,-77.815773],[-34.603058,-77.786354],[-34.257298,-77.635231],[-33.222775,-77.450317],[-32.951542,-77.38488],[-32.133003,-77.278656],[-31.458967,-77.21949],[-31.322187,-77.141281],[-30.109398,-76.818626],[-29.074942,-76.587929],[-28.692562,-76.516792],[-28.430515,-76.429192],[-28.782791,-76.387009],[-28.856356,-76.32193],[-28.205586,-76.265358],[-26.962271,-76.084587],[-26.946745,-75.997986],[-26.449625,-76.089867],[-25.990681,-75.975273],[-25.19643,-75.84655],[-24.767305,-75.757507],[-24.218853,-75.57415],[-23.663458,-75.33992],[-23.452599,-75.224602],[-23.161882,-74.986618],[-23.131828,-74.903748],[-22.861622,-74.681549],[-22.567608,-74.581421],[-21.556688,-74.434914],[-20.752064,-74.208695],[-20.130922,-74.047699],[-19.375694,-73.808868],[-18.754062,-73.626282],[-18.385771,-73.534676],[-17.322823,-73.330894],[-16.957398,-73.267952],[-15.799231,-73.024429],[-15.109383,-72.903435],[-14.745883,-72.865204],[-14.087823,-72.928902],[-13.749988,-72.900047],[-12.300952,-72.635918],[-11.680268,-72.442375],[-11.420054,-72.304207],[-11.102003,-72.002449],[-11.144448,-71.829575],[-11.579174,-71.791504],[-11.791572,-71.750534],[-12.12666,-71.605759],[-12.247278,-71.482239],[-12.21779,-71.326286],[-11.906576,-71.269783],[-11.61404,-71.287476],[-11.732841,-71.377426],[-11.646266,-71.453552],[-11.39189,-71.514633],[-11.163302,-71.613487],[-11.073594,-71.725304],[-10.863623,-71.673363],[-10.751154,-71.460693],[-10.59976,-71.345413],[-10.173756,-71.169731],[-10.10486,-71.068977],[-10.414853,-71.02533],[-10.478554,-70.966667],[-10.21551,-70.922188],[-9.653218,-70.903366],[-9.517257,-70.930511],[-9.6596,-71.044113],[-9.284404,-71.103012],[-9.11726,-71.152519],[-8.872411,-71.298546],[-8.760009,-71.474342],[-8.757584,-71.689941],[-8.5208,-71.814659],[-8.365425,-71.819893],[-7.919158,-71.704758],[-7.489008,-71.712189],[-7.376194,-71.657349],[-7.759317,-71.495277],[-7.715773,-71.381142],[-7.461397,-71.260216],[-7.311452,-71.134712],[-7.32567,-71.038033],[-7.625534,-70.921722],[-7.653324,-70.839706],[-7.389567,-70.760849],[-6.892009,-70.687218],[-6.085425,-70.662094],[-5.819308,-70.711937],[-5.837062,-70.816849],[-5.682252,-70.952034],[-5.792706,-71.013954],[-5.817398,-71.123611],[-6.202703,-71.322762],[-5.95564,-71.422531],[-5.759005,-71.428253],[-5.173861,-71.369026],[-4.745536,-71.285065],[-4.373038,-71.329964],[-3.987629,-71.257065],[-3.827115,-71.258461],[-3.71004,-71.339958],[-3.017567,-71.263283],[-3.196497,-71.205528],[-3.698745,-71.132812],[-3.663524,-71.037766],[-3.415133,-70.907265],[-3.422555,-70.790291],[-3.516415,-70.737358],[-3.524432,-70.551765],[-3.428406,-70.424202],[-3.263417,-70.326965],[-2.90502,-70.295586],[-2.760457,-70.321709],[-2.691788,-70.425407],[-2.816946,-70.496727],[-3.166512,-70.599403],[-3.054866,-70.696899],[-2.658804,-70.762634],[-2.000521,-70.827072],[-2.074218,-70.875496],[-2.506574,-70.940392],[-2.552975,-71.125397],[-2.419912,-71.276253],[-2.203604,-71.376961],[-2.257475,-71.440048],[-1.598193,-71.443848],[-1.297107,-71.302277],[-1.131318,-71.286423],[-0.91709,-71.326927],[-0.836053,-71.39875],[-0.968875,-71.591095],[-0.634235,-71.661758],[-0.373568,-71.668793],[0.006792,-71.445084],[0.529505,-71.258392],[0.968488,-71.166428],[1.330734,-71.120338],[1.943621,-70.997368],[2.305983,-70.898094],[2.557212,-70.776985],[2.8432,-70.563744],[3.153486,-70.457527],[3.608668,-70.361176],[4.08288,-70.283684],[4.436983,-70.250549],[4.808955,-70.263588],[5.100822,-70.378403],[5.388072,-70.448853],[5.670683,-70.461403],[6.019381,-70.445351],[6.562304,-70.380547],[7.019185,-70.262894],[7.541822,-70.20446],[8.05108,-70.167511],[8.592954,-70.166283],[9.494116,-70.196289],[10.139199,-70.302017],[10.547966,-70.417],[10.928493,-70.56028],[11.423033,-70.553123],[11.779801,-70.626991],[11.987875,-70.602951],[12.089977,-70.44175],[12.293175,-70.330574],[12.83244,-70.293678],[13.928384,-70.323616],[14.452013,-70.313316],[15.352566,-70.271469],[16.075079,-70.192223],[16.405962,-70.192932],[16.815759,-70.22068],[17.321152,-70.218521],[18.308195,-70.234795],[19.133995,-70.331757],[19.635301,-70.356216],[20.090876,-70.40773],[21.236208,-70.363899],[23.027307,-70.510117],[23.411146,-70.518898],[24.296041,-70.477493],[24.720345,-70.422829],[25.431669,-70.282684],[26.142999,-70.270386],[26.769632,-70.213249],[27.60021,-70.106529],[28.261644,-70.029785],[28.832317,-69.924942],[29.572719,-69.860107],[30.190588,-69.838577],[31.010508,-69.771935],[31.405027,-69.673004],[31.958155,-69.616447],[32.315147,-69.625015],[32.817223,-69.691109],[33.067093,-69.691254],[33.435547,-69.634232],[33.52261,-69.557953],[33.373306,-69.294334],[33.59111,-69.179077],[33.443104,-69.146767],[33.187515,-69.009911],[33.261886,-68.756165],[33.420208,-68.679497],[33.723114,-68.605926],[34.257889,-68.598122],[34.429249,-68.670929],[34.638825,-68.869499],[34.942375,-68.976463],[35.420792,-69.066261],[35.508488,-69.113396],[35.598034,-69.258995],[35.799557,-69.357902],[36.255196,-69.482986],[36.631527,-69.539864],[36.836624,-69.541588],[37.126469,-69.687691],[37.204475,-69.84845],[37.763924,-69.663185],[37.920574,-69.728577],[38.329384,-69.796173],[38.365849,-69.868652],[38.583176,-69.960098],[38.772213,-69.933838],[38.849777,-70.001549],[39.089851,-69.885681],[39.243439,-69.856247],[39.231766,-69.741814],[39.505859,-69.664391],[39.807617,-69.637154],[39.864906,-69.374229],[39.749737,-69.253929],[39.909836,-69.190842],[39.759765,-69.029404],[39.991424,-68.874283],[40.359947,-68.828865],[40.6059,-68.714325],[40.926147,-68.695129],[41.071423,-68.590134],[41.259346,-68.534691],[41.971016,-68.364235],[42.185711,-68.367691],[42.55714,-68.236229],[42.67247,-68.126564],[43.157776,-68.043846],[43.780254,-68.06395],[44.072349,-68.027565],[44.111881,-67.975098],[44.538418,-67.97554],[44.625652,-67.90274],[44.859219,-67.81485],[45.272785,-67.718582],[45.533455,-67.718056],[45.637253,-67.772865],[45.804817,-67.77462],[45.853794,-67.673561],[46.407917,-67.60997],[46.285374,-67.361359],[46.611927,-67.284576],[46.915359,-67.276291],[47.132339,-67.366043],[47.292099,-67.358688],[47.484467,-67.416046],[47.274937,-67.488876],[47.366558,-67.581642],[47.251594,-67.638329],[47.512234,-67.689003],[47.844234,-67.703911],[48.334698,-67.559578],[48.609367,-67.539154],[48.715939,-67.458557],[49.079952,-67.408501],[49.342125,-67.290199],[48.794048,-67.308418],[48.470547,-67.201698],[48.343647,-67.093407],[48.436855,-66.968742],[48.798492,-66.955643],[49.131642,-66.900604],[49.322399,-66.808846],[49.428707,-66.865555],[49.446423,-66.948944],[49.701614,-67.034126],[49.90913,-67.042213],[50.011559,-67.095406],[49.786568,-67.249405],[50.045261,-67.226624],[50.15665,-67.124748],[50.508018,-67.205139],[50.713772,-67.201401],[50.937222,-67.123131],[50.609001,-67.063538],[50.514271,-66.935997],[50.740448,-66.834167],[50.791477,-66.77314],[50.351932,-66.756477],[50.269886,-66.630913],[50.396366,-66.430389],[50.632248,-66.317665],[51.024902,-66.269493],[51.22337,-66.21582],[51.410934,-66.215469],[51.576931,-66.107857],[51.770557,-66.037567],[52.272911,-65.939163],[52.896423,-65.937469],[53.267704,-65.888351],[53.447414,-65.898613],[53.842987,-65.843231],[54.081394,-65.88829],[54.335972,-65.866356],[54.929958,-65.880287],[55.334282,-65.908775],[55.733116,-66.008949],[55.968109,-66.146538],[56.038887,-66.217735],[56.284836,-66.305923],[56.422539,-66.392609],[56.892349,-66.408791],[57.357605,-66.571419],[57.356686,-66.674133],[57.254227,-66.719902],[57.018414,-66.712517],[56.758625,-66.863106],[56.762631,-67.004189],[56.984756,-67.075806],[57.193623,-67.060516],[57.410416,-67.103325],[57.606701,-66.997849],[58.021404,-67.114487],[58.149639,-67.103493],[58.465923,-67.178467],[58.495781,-67.217529],[58.852371,-67.172478],[59.06181,-67.259987],[59.008076,-67.329445],[58.733429,-67.290703],[58.716625,-67.362824],[59.068695,-67.400841],[59.435166,-67.387566],[59.670578,-67.454483],[59.919804,-67.41127],[60.468857,-67.379349],[60.699684,-67.393997],[60.818836,-67.436043],[61.111629,-67.451767],[61.159187,-67.496857],[61.392437,-67.499634],[61.527298,-67.56778],[61.78376,-67.533203],[62.074291,-67.544365],[62.448433,-67.587761],[62.767246,-67.658012],[63.217167,-67.543182],[63.618168,-67.504196],[64.417084,-67.564476],[64.84761,-67.652634],[65.700821,-67.683571],[66.057426,-67.729919],[66.265366,-67.778496],[67.233559,-67.781448],[67.562874,-67.849861],[68.242996,-67.872421],[68.491554,-67.919922],[68.594727,-67.899918],[69.053993,-67.919296],[69.307899,-67.883034],[69.438652,-67.778824],[69.697006,-67.747223],[69.875626,-67.787476],[69.920364,-67.895973],[69.849739,-67.996078],[69.891464,-68.152878],[70.151192,-68.343361],[70.139961,-68.436073],[69.991211,-68.52417],[70.147575,-68.620323],[70.056267,-68.740295],[69.698929,-68.829269],[69.406547,-68.848122],[69.217628,-68.971535],[69.71714,-68.916679],[70.004028,-68.907074],[69.873795,-68.993881],[69.509048,-69.070595],[69.072823,-69.116814],[69.20224,-69.162582],[69.699974,-69.137718],[69.852051,-69.186501],[69.778328,-69.30603],[69.422226,-69.32473],[69.108993,-69.270187],[68.835549,-69.262215],[68.71859,-69.35247],[68.956978,-69.391762],[68.716988,-69.46685],[68.730949,-69.582214],[68.485931,-69.558334],[68.474228,-69.634972],[69.109558,-69.712326],[69.226105,-69.788834],[69.136719,-69.886726],[68.907867,-69.92646],[68.69693,-69.925781],[68.514321,-69.870483],[68.207642,-69.963493],[68.155701,-70.161888],[68.086113,-70.26635],[68.372955,-70.410042],[68.577759,-70.380882],[68.903351,-70.384285],[69.158455,-70.332642],[69.279472,-70.515083],[69.284004,-70.791626],[69.426414,-70.827095],[70.647934,-71.214043],[71.066337,-71.369675],[71.32354,-71.370674],[71.540764,-71.410233],[71.686188,-71.215134],[71.93396,-71.097672],[72.235702,-70.988182],[72.477348,-70.793205],[72.466972,-70.671883],[72.643097,-70.607239],[73.052811,-70.531288],[73.254814,-70.458336],[73.258514,-70.355766],[72.864349,-70.193115],[72.918022,-70.072517],[73.142754,-70.039055],[73.637466,-69.834251],[73.973175,-69.826218],[74.109703,-69.760384],[74.340126,-69.725388],[74.66565,-69.758438],[74.850868,-69.719872],[75.057556,-69.727951],[75.170998,-69.820808],[75.446877,-69.751679],[75.932281,-69.715675],[76.14547,-69.55069],[76.404739,-69.401558],[76.796806,-69.405411],[77.01165,-69.294373],[77.296616,-69.209541],[77.502739,-69.203468],[77.77665,-69.107971],[78.088104,-69.118546],[78.252472,-68.967957],[78.30648,-68.779587],[78.103409,-68.695725],[78.336258,-68.66568],[78.1698,-68.602791],[78.648498,-68.486694],[78.79969,-68.373177],[79.362755,-68.150795],[79.982452,-68.037369],[80.186104,-67.979561],[80.744949,-67.898972],[81.091301,-67.878693],[81.88768,-67.780045],[82.032898,-67.730652],[82.31057,-67.692604],[82.509254,-67.6213],[82.670647,-67.652092],[83.029068,-67.594223],[83.250748,-67.505585],[83.548622,-67.462685],[83.798584,-67.382698],[84.087425,-67.324791],[84.2183,-67.216332],[84.545799,-67.079185],[84.69619,-67.060875],[85.249313,-67.079353],[85.348885,-67.180016],[85.715591,-67.144234],[85.934227,-67.193222],[86.183906,-67.138161],[86.273735,-67.062729],[86.592896,-67.002411],[87.080086,-66.961151],[87.336082,-66.880661],[87.657341,-66.812447],[87.866509,-66.79554],[88.10524,-66.692627],[88.379387,-66.705795],[88.717384,-66.69046],[88.979927,-66.721725],[89.165955,-66.789917],[89.482559,-66.774399],[89.894058,-66.81253],[90.051826,-66.780212],[90.338951,-66.770386],[90.504616,-66.710983],[90.800484,-66.687462],[91.105164,-66.575066],[91.347572,-66.588043],[91.875046,-66.471413],[92.22303,-66.501106],[92.414497,-66.57962],[92.527718,-66.564255],[92.684242,-66.623688],[92.837875,-66.630379],[93.028435,-66.558571],[93.146103,-66.592537],[93.568726,-66.612534],[93.948868,-66.538719],[94.211609,-66.522896],[94.280174,-66.634918],[94.423042,-66.621399],[94.613228,-66.50174],[94.739548,-66.484772],[94.949127,-66.534531],[95.293693,-66.545677],[95.560318,-66.452637],[95.690888,-66.534744],[95.917496,-66.604645],[96.150162,-66.57988],[96.459282,-66.578033],[96.695434,-66.603279],[97.051338,-66.498825],[97.205528,-66.49778],[97.567863,-66.608414],[97.717278,-66.541771],[97.961708,-66.553192],[98.254768,-66.458794],[98.643715,-66.408867],[98.844444,-66.473991],[98.992073,-66.403732],[98.956146,-66.281815],[99.056175,-66.150192],[98.857529,-66.002304],[98.720024,-65.767166],[99.074043,-65.785515],[99.296043,-65.7659],[99.381897,-65.848534],[99.56002,-65.873863],[99.649803,-65.724747],[100.035507,-65.654144],[100.24865,-65.675728],[100.121704,-65.821983],[100.183373,-65.931435],[100.167084,-66.111076],[100.351967,-66.150429],[100.54599,-66.145309],[100.614586,-66.045586],[100.855034,-66.017303],[100.837151,-66.099228],[100.698555,-66.185791],[100.835167,-66.239258],[101.012146,-66.246536],[101.299965,-66.144539],[101.351791,-66.084435],[101.260132,-66.020554],[101.369232,-65.942093],[101.552673,-65.990341],[101.719505,-65.958054],[102.032311,-65.956795],[102.431091,-65.911346],[102.639763,-65.859001],[102.947281,-65.885101],[103.011993,-65.846275],[103.250908,-65.921226],[103.693131,-65.993835],[103.957993,-65.965538],[104.209137,-66.016136],[104.478752,-66.020599],[104.736038,-66.06469],[105.112991,-66.072701],[105.908302,-66.212654],[106.329201,-66.324722],[106.528015,-66.347336],[106.976502,-66.461136],[107.135391,-66.458397],[107.550629,-66.538849],[108.176132,-66.608467],[108.328865,-66.715988],[108.614334,-66.777977],[108.805069,-66.915855],[109.326027,-66.851646],[109.234345,-66.797218],[109.344642,-66.65741],[109.474869,-66.60022],[109.802262,-66.563766],[110.039558,-66.63118],[110.263413,-66.575172],[110.364433,-66.456734],[110.508011,-66.516296],[110.606247,-66.398888],[110.531044,-66.23542],[110.893127,-66.04882],[111.549408,-65.914467],[111.915833,-65.914772],[112.172547,-65.880501],[112.47879,-65.8703],[112.783668,-65.787926],[113.201103,-65.700317],[113.418869,-65.733406],[113.532074,-65.828918],[113.957802,-66.047668],[114.148529,-66.053047],[114.345215,-66.165741],[114.530502,-66.182953],[114.566826,-66.28495],[114.889656,-66.49173],[115.11274,-66.467712],[115.407494,-66.380768],[115.817528,-66.348129],[116.189919,-66.384956],[116.485672,-66.532028],[116.726151,-66.592026],[116.797798,-66.694931],[116.98848,-66.81604],[117.218735,-66.889336],[117.760796,-66.990372],[117.925491,-66.962509],[118.212341,-67.023003],[118.536301,-66.909576],[119.546204,-66.938492],[119.889564,-66.888954],[120.44107,-66.830833],[120.70298,-66.891129],[121.001556,-66.794815],[121.128662,-66.814392],[121.126457,-67.103767],[121.412926,-67.0429],[121.925056,-66.967201],[122.845009,-66.862434],[123.137565,-66.814583],[123.892868,-66.712181],[124.296638,-66.665581],[124.541519,-66.673393],[124.815216,-66.619835],[124.869545,-66.560738],[125.184875,-66.5],[125.48291,-66.402786],[125.664558,-66.380539],[125.943535,-66.291527],[126.147995,-66.269661],[126.411102,-66.342621],[126.780731,-66.415619],[126.949455,-66.519028],[127.441574,-66.608307],[127.465149,-66.70681],[127.609344,-66.752762],[127.701019,-66.835525],[127.940178,-66.966385],[127.918511,-67.020294],[128.327759,-67.036285],[128.651276,-67.020363],[128.659347,-66.983154],[128.993881,-66.980171],[129.243835,-67.024467],[129.402405,-67.015007],[129.611771,-66.926254],[129.732269,-66.694946],[129.603302,-66.63105],[129.768951,-66.458382],[129.82048,-66.360268],[129.984619,-66.217865],[129.55661,-66.046516],[129.495361,-65.944977],[129.744003,-65.925613],[130.165985,-66.027359],[130.862686,-66.076088],[131.414017,-66.186142],[131.884491,-66.209282],[132.15271,-66.15773],[132.496399,-66.145683],[132.808716,-66.203224],[133.28183,-66.102013],[133.82019,-66.111046],[133.926742,-66.178421],[134.137741,-66.212219],[134.28624,-66.113174],[134.454468,-66.076782],[134.538803,-66.000565],[134.548492,-65.908081],[134.681167,-65.874596],[134.761612,-65.793968],[134.587784,-65.640007],[134.474014,-65.585762],[134.562927,-65.502724],[134.539169,-65.334579],[134.866989,-65.274719],[135.235993,-65.483467],[135.413117,-65.551155],[135.473617,-65.67984],[135.405182,-65.749413],[135.315735,-65.963463],[135.359146,-66.011055],[135.868805,-66.180565],[136.001892,-66.200554],[136.167999,-66.299484],[136.312561,-66.302841],[136.417816,-66.386856],[136.912369,-66.320999],[137.692963,-66.383797],[137.871643,-66.448036],[138.347763,-66.535904],[138.576263,-66.52195],[138.7397,-66.557808],[139.245224,-66.554001],[139.5849,-66.611679],[140.091812,-66.735367],[140.393601,-66.741966],[140.502319,-66.717796],[141.078033,-66.74337],[141.331665,-66.843254],[141.555588,-66.783623],[141.889496,-66.793625],[142.18602,-66.876968],[142.360504,-67.000137],[142.523102,-67.033798],[142.838348,-66.999107],[143.154282,-66.897026],[143.38533,-66.863472],[143.654312,-66.895668],[143.780212,-66.941627],[143.730743,-67.024551],[143.850998,-67.094856],[143.992279,-67.092056],[144.313538,-67.015152],[144.724197,-67.159317],[144.802399,-67.091057],[145.271668,-66.899559],[145.36528,-67.01873],[145.537231,-66.921654],[145.548279,-66.822334],[145.821136,-66.810928],[146.050034,-66.851593],[146.246963,-66.831184],[146.458786,-66.849724],[146.830475,-67.021965],[146.810593,-67.099831],[146.615845,-67.240593],[145.52951,-67.421898],[145.280121,-67.544373],[145.243088,-67.605797],[145.690704,-67.639091],[146.024582,-67.60463],[146.360001,-67.726875],[146.594101,-67.74482],[146.484314,-67.831718],[146.734726,-67.825386],[147.056687,-67.926788],[147.5,-67.876343],[147.812118,-67.804688],[148.444305,-67.815628],[148.613602,-68.229355],[148.605042,-68.284302],[148.421707,-68.331329],[148.058609,-68.279655],[147.833527,-68.29837],[147.866837,-68.407089],[148.398529,-68.443802],[149.114349,-68.335243],[149.545257,-68.373093],[149.801834,-68.467651],[151.002747,-68.310173],[151.08287,-68.455429],[151.008331,-68.541039],[151.052567,-68.643776],[151.374893,-68.739716],[151.87474,-68.731346],[152.184311,-68.651993],[152.403732,-68.484352],[152.641327,-68.424332],[153.028366,-68.43467],[153.294083,-68.476532],[153.468796,-68.433823],[153.577438,-68.33934],[153.820999,-68.339592],[154.190521,-68.460556],[154.298859,-68.549995],[154.483811,-68.532616],[154.693115,-68.585289],[154.769638,-68.672745],[154.450592,-68.811035],[154.865799,-69.034996],[155.009674,-69.040451],[155.147736,-68.916718],[155.436233,-68.91848],[155.561203,-68.98069],[156,-69],[156.044556,-69.051056],[156.43042,-69.093338],[156.738327,-69.22316],[156.805679,-69.161194],[157.098312,-69.19648],[157.054123,-69.090561],[157.207062,-69.06955],[157.378067,-69.238976],[157.494308,-69.192337],[157.681809,-69.221123],[157.811981,-69.186951],[158.189697,-69.280441],[158.389984,-69.402611],[158.894577,-69.338692],[159.021881,-69.443611],[159.268768,-69.49646],[159.767853,-69.731094],[159.753097,-69.786491],[160.062897,-69.781296],[160.235809,-69.826492],[160.240418,-69.908798],[160.487549,-69.914482],[160.559448,-70.010368],[160.307983,-70.0606],[160.739456,-70.138344],[160.820648,-70.260086],[160.970139,-70.314659],[161.227295,-70.270737],[161.589676,-70.272316],[161.755081,-70.352135],[162.142639,-70.387802],[162.324021,-70.306206],[162.62648,-70.326492],[162.707947,-70.438415],[162.887329,-70.548065],[163.028519,-70.566009],[163.086304,-70.655289],[163.460587,-70.677696],[163.693954,-70.650276],[163.443466,-70.535622],[163.578186,-70.520073],[163.906952,-70.580589],[164.046112,-70.530174],[164.265213,-70.532562],[164.738922,-70.619385],[165.032761,-70.598404],[165.25975,-70.611824],[165.783524,-70.736885],[166.251923,-70.645096],[166.653091,-70.654671],[166.837601,-70.734665],[166.352875,-70.741524],[166.546081,-70.815483],[166.834961,-70.828819],[167.158859,-70.798828],[167.488007,-70.798576],[167.766251,-70.850426],[167.891495,-70.93055],[167.770126,-71.041908],[168.21257,-71.231636],[168.802979,-71.294342],[168.96492,-71.397903],[169.260681,-71.435112],[169.435028,-71.556122],[169.716019,-71.53376],[169.864914,-71.615349],[170.180237,-71.648705],[170.285584,-71.542679],[170.422089,-71.528244],[170.650391,-71.67791],[170.897659,-71.895386],[170.627914,-72.002518],[170.324173,-72.063713],[170.152252,-72.02935],[169.890869,-72.250595],[169.970505,-72.331146],[170.242782,-72.366608],[170.255508,-72.60704],[169.873077,-72.738663],[169.604157,-73.004166],[169.587356,-73.106972],[169.166885,-73.136932],[169.15982,-73.303276],[168.966293,-73.40345],[169.04454,-73.458229],[168.232971,-73.605133],[167.761322,-73.516174],[167.201569,-73.559692],[166.998459,-73.602692],[166.863693,-73.694687],[166.429184,-73.798355],[165.805069,-73.878746],[165.587036,-73.957024],[166.009201,-73.997459],[166.253052,-74.056099],[166.061417,-74.144424],[165.723969,-74.122734],[165.468903,-74.068954],[165.265701,-74.074036],[164.897842,-74.1605],[164.829224,-74.285744],[165.071915,-74.384804],[165.193314,-74.511269],[165.112518,-74.573814],[164.765472,-74.628708],[164.253937,-74.573723],[163.930664,-74.8283],[163.622436,-74.774864],[163.939911,-74.650406],[163.625137,-74.66291],[163.597427,-74.577271],[163.447098,-74.521469],[163.212784,-74.580124],[163.046951,-74.732773],[162.608902,-74.819542],[162.408966,-74.983391],[162.737702,-75.039635],[162.562042,-75.140572],[162.558914,-75.25808],[163.251328,-75.287949],[163.550659,-75.279839],[164.160019,-75.304115],[164.667954,-75.432526],[164.627808,-75.572075],[163.098358,-75.507729],[162.678528,-75.496872],[162.851196,-75.594276],[162.625885,-75.62336],[162.497482,-75.718231],[162.96695,-75.781311],[162.721314,-75.822067],[162.762344,-75.879074],[162.588654,-75.981689],[162.628876,-76.119774],[162.232269,-76.160728],[162.397781,-76.273682],[162.669205,-76.288803],[162.617111,-76.407288],[162.773102,-76.480865],[162.553024,-76.691727],[162.87587,-76.768356],[162.829864,-76.865456],[162.523651,-76.880394],[162.453201,-76.974983],[162.544311,-77.051682],[163.015732,-77.120735],[163.475433,-77.359131],[163.723083,-77.456322],[163.724991,-77.552582],[163.382584,-77.606575],[163.683548,-77.752922],[164.049148,-77.702362],[164.312073,-77.735779],[164.458877,-77.991493],[164.269592,-78.139648],[163.734192,-78.24913],[163.420609,-78.26944],[163.502441,-78.380615],[163.72847,-78.417671],[164.232849,-78.336731],[164.575073,-78.375481],[165.005142,-78.291275],[165.214874,-78.103142],[165.48233,-78.172615],[165.227295,-78.24527],[165.568558,-78.322197],[165.569458,-78.429611],[165.853241,-78.504669],[166.971588,-78.56382],[166.766403,-78.643921],[166.108795,-78.584366],[165.619156,-78.605598],[165.456787,-78.65258],[164.264389,-78.634331],[163.922989,-78.739639],[163.260086,-78.766815],[163.154984,-78.827934],[162.615784,-78.883179],[162.61084,-79.072067],[162.49382,-79.114235],[160.886719,-79.108963],[160.266892,-79.246582],[160.507263,-79.320793],[160.238876,-79.447922],[160.279617,-79.546257],[160.020233,-79.624847],[160,-79.732864],[160.226608,-79.818329],[160.158234,-79.932816],[160.371109,-80.022758],[159.986969,-80.184578],[160.288925,-80.301079],[160.775421,-80.548248],[160.389053,-80.576187],[159.663117,-80.689209],[160.153305,-80.72905],[160.628052,-80.667557],[160.968903,-80.720062],[160.074631,-80.904938],[160.658356,-80.976067],[160.330414,-81.026131],[160.512161,-81.270836],[160.452805,-81.409805],[160.955261,-81.493904],[160.900543,-81.568283],[162.179001,-81.74675],[162.29364,-81.905197],[162.691727,-81.892014],[162.777344,-82.000961],[163.050903,-82.032677],[163.751846,-82.265854],[163.563354,-82.312439],[162.37085,-82.312355],[161.216339,-82.401016],[161.665253,-82.54998],[162.590317,-82.559624],[162.858795,-82.660614],[163.347931,-82.582947],[163.111282,-82.498878],[164.699432,-82.42028],[165.27388,-82.498413],[165.237564,-82.576652],[164.756668,-82.68177],[165.052628,-82.723488],[165.632141,-82.690567],[166.311874,-82.747322],[166.356369,-82.824562],[166.925018,-82.861534],[167.147995,-82.922546],[166.826477,-83.006409],[167.536713,-83.029816],[168.334473,-83.088158],[168.564056,-83.198799],[168.061463,-83.24884],[167.705627,-83.338684],[167.57193,-83.455177],[167.817459,-83.522346],[169.090668,-83.401283],[170.078689,-83.522926],[171.61969,-83.566475],[171.909042,-83.611649],[171.62941,-83.793266],[172.405808,-83.736931],[173.491516,-83.827644],[172.918549,-83.937019],[173.3685,-83.956932],[174.385742,-83.897781],[174.968292,-83.914482],[175.141189,-84.00116],[176.576477,-84.036537],[177.905395,-84.203682],[178.340729,-84.22287],[179.99942,-84.360077],[180,-85],[179.99942,-85.420502],[179.99942,-86.253502],[179.99942,-86.753304],[179.99942,-87.502998],[179.99942,-88.252701],[179.99942,-89.335602],[-180,-90],[-180,-85],[-179.99942,-84.428726],[-179.430069,-84.384865],[-178.295899,-84.350548],[-177.94899,-84.282265],[-176.430405,-84.361458],[-175.071701,-84.480484],[-173.635147,-84.494576],[-171.287231,-84.586182],[-168.484879,-84.713493],[-167.833771,-84.829292],[-167.043106,-84.792129],[-166.872864,-84.927872],[-166.153717,-84.971764],[-164.83252,-85.116211],[-164.12973,-85.108925],[-163.691498,-85.187134],[-162.736389,-85.237412],[-161.537048,-85.362175],[-160.495682,-85.393562],[-161.026047,-85.494644],[-158.227585,-85.530197],[-157.855591,-85.477623],[-155.992325,-85.513382],[-154.753845,-85.49984],[-153.636764,-85.57531],[-151.475983,-85.582764],[-151.477936,-85.476189],[-150.266617,-85.507759],[-149.311203,-85.346497],[-148.811737,-85.187042],[-147.948715,-85.145203],[-145.516068,-85.161308],[-142.681137,-85.202934],[-140.696945,-85.294395],[-139.347946,-85.289597],[-138.461548,-85.253563],[-137.446274,-85.067612],[-138.314285,-85.022629],[-140.79541,-85.061913],[-143.273316,-85.007561],[-145.507156,-84.917244],[-148.994766,-84.653458],[-150.027054,-84.577553],[-151.126785,-84.453873],[-152.123505,-84.273125],[-152.977798,-84.004906],[-153.216461,-83.86245],[-152.932251,-83.773941],[-152.864792,-83.355141],[-153.309708,-83.130394],[-154.162262,-82.754875],[-154.189911,-82.627792],[-154.065857,-82.353561],[-154.153793,-82.224464],[-154.852417,-81.942039],[-155.032959,-81.721748],[-154.79625,-81.560516],[-154.531342,-81.456032],[-153.605026,-81.236794],[-152.619293,-81.142212],[-150.740082,-80.995499],[-149.778976,-80.955276],[-147.604919,-80.896202],[-145.933273,-80.859589],[-145.447052,-80.813095],[-145.20314,-80.704468],[-145.373795,-80.650574],[-146.634628,-80.501312],[-147.556488,-80.333816],[-148.247803,-80.265503],[-149.717728,-80.21904],[-150.421494,-80.264755],[-151.053192,-80.267715],[-151.912887,-80.006256],[-151.968369,-79.885223],[-152.286148,-79.825356],[-153.145462,-79.772369],[-153.483185,-79.666443],[-153.884872,-79.436676],[-154.238586,-79.363464],[-155.220352,-79.253571],[-155.877518,-79.082809],[-156.580383,-78.953468],[-157.329132,-78.833168],[-157.731644,-78.671005],[-157.647552,-78.530548],[-157.274216,-78.450409],[-156.806442,-78.419533],[-156.99675,-78.250023],[-156.766754,-78.147347],[-157.945038,-78.069588],[-158.208649,-77.907776],[-157.961563,-77.718887],[-157.749313,-77.618584],[-157.691513,-77.520233],[-157.99147,-77.340172],[-157.829407,-77.243561],[-157.990097,-77.179642],[-157.795074,-77.120651],[-157.485001,-77.15818],[-157.232208,-77.296837],[-156.621582,-77.411835],[-156.229431,-77.28418],[-156.338867,-77.19606],[-156.069916,-77.121605],[-155.42691,-77.139816],[-155.163193,-77.219437],[-154.611176,-77.176399],[-154.404968,-77.231552],[-154.155731,-77.212761],[-153.344177,-77.300858],[-153.14035,-77.354652],[-153.183396,-77.428474],[-152.828812,-77.513618],[-152.379944,-77.508324],[-152.262451,-77.351425],[-151.90094,-77.395981],[-151.414246,-77.416893],[-149.950974,-77.785263],[-149.371582,-77.817963],[-149.061188,-77.724396],[-149.568497,-77.662552],[-149.296463,-77.610359],[-148.768509,-77.699631],[-148.553711,-77.655029],[-148.599609,-77.557449],[-148.123581,-77.511627],[-147.702011,-77.509201],[-147.461701,-77.435905],[-147.398392,-77.364845],[-146.864853,-77.25779],[-146.31813,-77.448936],[-146.017364,-77.416458],[-145.933655,-77.224266],[-145.986801,-77.112846],[-146.298096,-77.07161],[-146.086151,-77.016983],[-145.330307,-77.083626],[-145.391922,-76.98288],[-145.733353,-76.960556],[-146.181763,-76.870987],[-145.582275,-76.854988],[-145.531189,-76.780052],[-146.281052,-76.672928],[-146.562073,-76.576225],[-146.983948,-76.498756],[-147.931519,-76.467484],[-148.353699,-76.547157],[-149.504562,-76.452316],[-149.52771,-76.369469],[-149.266525,-76.312355],[-148.999252,-76.32399],[-148.504929,-76.275024],[-148.637558,-76.20681],[-148.423874,-76.129913],[-148.228577,-76.126427],[-147.220825,-76.272278],[-146.582825,-76.408707],[-146.30217,-76.419708],[-145.712418,-76.498428],[-145.433731,-76.452354],[-145.461411,-76.358215],[-145.878937,-76.306168],[-146.335281,-76.151237],[-146.400223,-76.086174],[-146.123291,-75.960335],[-145.910278,-75.928123],[-145.250092,-75.953232],[-144.856155,-75.889915],[-144.561966,-75.880554],[-144.238175,-75.809769],[-144.2715,-75.6884],[-144.002258,-75.684258],[-143.313553,-75.609451],[-142.901886,-75.666588],[-142.707519,-75.651871],[-142.719635,-75.554756],[-142.442993,-75.532494],[-142.014114,-75.61879],[-141.901825,-75.705109],[-141.527161,-75.664238],[-141.578781,-75.578125],[-141.152145,-75.589668],[-140.533447,-75.538651],[-140.528687,-75.464272],[-140.320297,-75.446968],[-140.054733,-75.241997],[-139.863464,-75.1922],[-138.737869,-75.197845],[-138.076218,-75.144966],[-137.875992,-75.087585],[-137.429733,-75.145058],[-136.955322,-75.03196],[-136.880218,-74.85199],[-137.112976,-74.847534],[-137.173737,-74.728172],[-136.847031,-74.72332],[-136.499268,-74.64666],[-136.043045,-74.666344],[-135.734405,-74.529358],[-135.576828,-74.495277],[-135.067856,-74.5131],[-134.932663,-74.567505],[-134.400528,-74.604347],[-134.155167,-74.702393],[-134.244446,-74.828613],[-133.788757,-74.865318],[-133.5298,-74.813484],[-132.953598,-74.776833],[-132.738647,-74.730927],[-132.40535,-74.787483],[-131.928452,-74.733627],[-131.447967,-74.80722],[-130.9254,-74.791412],[-130.424545,-74.804939],[-130.103088,-74.857315],[-129.728653,-74.86763],[-129.461014,-74.835541],[-129.151398,-74.842415],[-128.611633,-74.784874],[-128.483704,-74.745903],[-128.006668,-74.725128],[-127.307877,-74.656609],[-126.851959,-74.641708],[-126.520309,-74.669052],[-126.089943,-74.768967],[-125.637962,-74.753136],[-125.252632,-74.693779],[-124.594452,-74.67585],[-124.119469,-74.683853],[-123.616463,-74.66214],[-122.876144,-74.670586],[-122.210297,-74.608612],[-120.853363,-74.608482],[-120.611649,-74.527992],[-120.239967,-74.591293],[-119.22786,-74.528],[-118.997337,-74.500008],[-118.633728,-74.515472],[-118.320457,-74.436195],[-117.845284,-74.231064],[-117.622429,-74.372139],[-117.290764,-74.417954],[-117.292549,-74.474548],[-117.041184,-74.516724],[-116.524788,-74.538902],[-116.088112,-74.51136],[-115.724182,-74.435913],[-115.436874,-74.506302],[-114.929924,-74.466499],[-114.659149,-74.48365],[-114.621208,-74.359383],[-114.918625,-74.161926],[-114.888352,-74.079498],[-114.460197,-73.908463],[-114.236916,-73.909866],[-113.950439,-73.842926],[-113.654648,-73.884056],[-113.563995,-74.013069],[-113.222023,-74.025116],[-113.107605,-74.118881],[-113.237152,-74.18734],[-113.479675,-74.227127],[-113.405518,-74.308105],[-113.603073,-74.359535],[-113.491921,-74.411224],[-113.232712,-74.399116],[-113.005547,-74.438538],[-112.81633,-74.527931],[-112.958115,-74.644661],[-112.86068,-74.684776]]],[[[-70.534615,-72.717659],[-70.866196,-72.680374],[-71.680512,-72.663063],[-71.935753,-72.697647],[-72.231941,-72.637543],[-72.665199,-72.431236],[-72.302231,-72.264992],[-72.121834,-72.239311],[-71.473618,-72.257561],[-71.311623,-72.289627],[-70.707329,-72.282982],[-70.596146,-72.229111],[-71.046532,-72.125481],[-70.68277,-71.989777],[-71.042214,-71.971596],[-71.125854,-71.845215],[-71.489715,-71.75206],[-71.789406,-71.635155],[-72.08638,-71.577759],[-72.412415,-71.568367],[-72.519569,-71.713676],[-72.338371,-71.844948],[-72.510429,-71.859497],[-72.798248,-71.740753],[-73.247345,-71.733795],[-73.416916,-71.792244],[-73.302803,-71.843239],[-73.001999,-71.886147],[-73.014625,-71.93512],[-73.326622,-72.046844],[-73.499062,-72.156303],[-73.83104,-72.06179],[-74.191567,-72.079292],[-74.364815,-71.994965],[-75.009224,-71.865311],[-75.500473,-71.682213],[-75.674271,-71.518715],[-75.715485,-71.41877],[-75.431877,-71.351021],[-75.182541,-71.481628],[-75.110359,-71.564201],[-74.764023,-71.636208],[-74.670463,-71.600899],[-75.042816,-71.371948],[-75.093864,-71.304657],[-74.968056,-71.225983],[-74.588028,-71.230072],[-74.196022,-71.41658],[-73.963432,-71.441544],[-73.468368,-71.548126],[-73.375664,-71.507774],[-73.482025,-71.422211],[-74.083832,-71.319382],[-74.101372,-71.187042],[-73.659874,-71.14045],[-73.275047,-71.191414],[-73.049584,-71.331718],[-72.364639,-71.260948],[-72.415611,-71.224998],[-72.921509,-71.211021],[-73.234566,-71.10025],[-73.257126,-71.032333],[-72.993233,-71.018364],[-72.834495,-70.949562],[-72.177521,-70.983315],[-71.708023,-70.927681],[-71.487,-70.832825],[-71.17971,-70.791946],[-70.974869,-70.86351],[-70.931046,-70.987854],[-70.656853,-70.907593],[-70.969368,-70.728264],[-71.232407,-70.612419],[-71.558533,-70.543022],[-71.596176,-70.428871],[-71.495796,-70.31987],[-71.349701,-70.267334],[-70.98912,-70.238251],[-70.543793,-70.263481],[-70.086395,-70.16938],[-70.344872,-70.131676],[-70.622322,-70.17514],[-71.148079,-70.058472],[-71.217781,-69.980209],[-71.497772,-69.945946],[-71.678009,-69.854706],[-71.945862,-69.770363],[-71.858749,-69.597435],[-71.953018,-69.530968],[-71.693131,-69.336815],[-71.712441,-69.253853],[-71.932686,-69.21389],[-71.980331,-69.154449],[-72.183281,-69.121933],[-72.151993,-69.066956],[-71.807922,-69.001579],[-71.602448,-68.908813],[-71.165962,-68.842888],[-71.022804,-68.863266],[-70.611008,-68.76123],[-70.218429,-68.827408],[-70.08474,-68.933334],[-70.073319,-69.195641],[-70.038864,-69.282715],[-69.764297,-69.264214],[-69.510216,-69.540298],[-69.347259,-69.62587],[-69.32032,-69.830856],[-69.248764,-69.940804],[-69.131928,-69.996918],[-69.093826,-70.189209],[-68.708603,-70.377609],[-68.521561,-70.496262],[-68.411339,-70.66407],[-68.352707,-70.973824],[-68.218041,-71.17115],[-68.208016,-71.292091],[-68.288864,-71.37693],[-68.111542,-71.646286],[-68.190331,-71.714355],[-68.233208,-71.900368],[-68.485321,-71.951256],[-68.366836,-72.057892],[-68.449127,-72.264183],[-68.909035,-72.270325],[-69.086159,-72.349792],[-69.017738,-72.511002],[-69.643326,-72.666641],[-69.9636,-72.657989],[-70.136673,-72.699738],[-70.359917,-72.676682],[-70.534615,-72.717659]]],[[[-80,-77.55452],[-79.868576,-77.518471],[-79.812462,-77.378746],[-79.670387,-77.272308],[-79.318214,-77.1959],[-78.326988,-77.072868],[-77.593239,-77.040253],[-76.809342,-77.16571],[-76.933022,-77.269142],[-76.586304,-77.420952],[-76.764831,-77.607185],[-76.707619,-77.669479],[-76.155617,-77.793182],[-76.017487,-77.911095],[-75.707466,-78.058922],[-76.620018,-78.172478],[-77.834534,-78.191208],[-79.045052,-78.045586],[-79.614105,-78.090515],[-80.24633,-77.95388],[-80.656586,-77.830292],[-80.65403,-77.704414],[-80,-77.55452]]],[[[-163.603638,-78.838112],[-163.134171,-78.751785],[-162.660202,-78.745308],[-162.02652,-78.786095],[-161.422394,-78.850662],[-161.190613,-78.927269],[-160.973282,-79.074722],[-159.753708,-79.40342],[-159.531601,-79.587585],[-159.174271,-79.685852],[-159.234528,-79.76371],[-160.247009,-79.891907],[-161.013931,-79.900764],[-162.297318,-79.768387],[-163.527863,-79.560257],[-164.13208,-79.375961],[-164.363693,-79.163063],[-164.298248,-79.097603],[-163.642044,-78.969742],[-163.603638,-78.838112]]],[[[-100.830612,-71.911613],[-100.706963,-71.899681],[-100.60125,-71.798088],[-100.301956,-71.775452],[-100.180679,-71.821022],[-100.581192,-71.922119],[-100.478073,-71.996979],[-100.216942,-71.972328],[-99.821518,-71.862442],[-99.61969,-71.955727],[-99.274109,-71.937027],[-98.982376,-71.979828],[-98.873215,-71.930977],[-99.171799,-71.844078],[-99.230858,-71.779251],[-99.004799,-71.671593],[-98.789055,-71.63208],[-98.488762,-71.676537],[-98.128884,-71.768272],[-98.222374,-71.844856],[-98.477241,-71.861145],[-98.385651,-71.957993],[-97.900764,-72.034859],[-97.997963,-71.946777],[-97.989151,-71.78907],[-97.616875,-71.833214],[-97.455887,-71.944695],[-97.719513,-72.036285],[-97.414925,-72.079826],[-97.236267,-71.985977],[-97.125641,-71.793282],[-96.844269,-71.742226],[-96.730568,-71.796051],[-96.350288,-71.756607],[-96.10952,-71.800079],[-96.11113,-71.918076],[-96.503601,-72.033028],[-97.086266,-72.133873],[-96.757599,-72.18454],[-96.6176,-72.151794],[-96.140358,-72.111877],[-95.927048,-72.073265],[-95.832901,-72.004585],[-95.622185,-72.000954],[-95.505028,-72.102653],[-95.872261,-72.246254],[-95.45356,-72.288994],[-95.567246,-72.362427],[-95.83474,-72.387459],[-96.03936,-72.364548],[-96.047356,-72.532402],[-97.054505,-72.545464],[-97.391319,-72.474846],[-97.864769,-72.503532],[-98.523468,-72.520302],[-98.976982,-72.481277],[-98.814331,-72.405197],[-99.106987,-72.37999],[-99.360847,-72.397835],[-99.787064,-72.355301],[-100.100929,-72.407112],[-100.372086,-72.333801],[-101.262001,-72.292328],[-101.669388,-72.230652],[-101.910729,-72.233406],[-102.241081,-72.176567],[-102.413444,-72.111282],[-102.312042,-72.01255],[-101.806168,-71.938316],[-101.491753,-71.920608],[-101.098297,-71.867638],[-100.830612,-71.911613]]],[[[-120,-74.250168],[-120.161865,-74.300316],[-120.477562,-74.33046],[-120.84317,-74.306984],[-121.178001,-74.335381],[-121.608902,-74.333748],[-122.367142,-74.284485],[-122.612968,-74.235809],[-122.6605,-74.164955],[-122.483391,-74.072144],[-122.621452,-74.033768],[-122.28688,-73.871742],[-122.337677,-73.7957],[-122.824554,-73.747963],[-122.794937,-73.663887],[-122.531959,-73.577492],[-121.796043,-73.591286],[-121.603821,-73.637337],[-120.980331,-73.680756],[-120.32711,-73.654228],[-120.068443,-73.721664],[-119.536522,-73.748947],[-118.900398,-73.722412],[-118.690781,-73.75676],[-118.633514,-73.827248],[-118.830147,-73.929024],[-119.582703,-74.092751],[-120,-74.250168]]],[[[-125.364433,-73.179352],[-125.090378,-73.272011],[-124.852104,-73.315002],[-124.919624,-73.412338],[-124.68216,-73.499283],[-124.777069,-73.601051],[-125.098694,-73.668282],[-124.969635,-73.74028],[-124.71521,-73.677933],[-124.346435,-73.680267],[-124.022423,-73.597427],[-123.950287,-73.70578],[-123.706612,-73.773193],[-123.375137,-73.930611],[-123.447655,-74.091042],[-123.817222,-74.07727],[-124.262527,-74.10041],[-124.506699,-74.06736],[-124.752472,-73.962288],[-125.203361,-73.875442],[-125.523956,-73.856903],[-125.716049,-73.812111],[-125.924339,-73.689987],[-126.10495,-73.486633],[-126.533813,-73.595398],[-126.693039,-73.549171],[-126.596352,-73.454636],[-126.910637,-73.378799],[-126.919746,-73.283455],[-126.727425,-73.141991],[-126.150909,-73.09346],[-125.531502,-73.103432],[-125.364433,-73.179352]]],[[[-68.525619,-78.580971],[-67.747452,-78.448776],[-67.058754,-78.389549],[-66.497429,-78.36718],[-65.679413,-78.370155],[-65.532471,-78.441773],[-66.106773,-78.505676],[-67.103157,-78.689705],[-68.100632,-78.927238],[-68.748382,-79.091415],[-69.298546,-79.198624],[-69.522308,-79.211487],[-70.163895,-79.170113],[-70.493126,-79.098457],[-70.034714,-78.982613],[-69.500122,-78.776695],[-69.233528,-78.705254],[-68.525619,-78.580971]]],[[[-75.484276,-73.080963],[-75.713097,-73.020683],[-75.823189,-72.944946],[-75.583496,-72.832764],[-75.274773,-72.814133],[-74.967453,-72.829414],[-74.625916,-72.891556],[-74.293884,-72.993172],[-74.290901,-73.079704],[-74.618919,-73.328087],[-74.384789,-73.521202],[-74.538635,-73.645821],[-74.965737,-73.60257],[-75.026505,-73.566483],[-75.735069,-73.434479],[-76.116089,-73.296799],[-76.196403,-73.161247],[-76.077766,-73.08812],[-75.484276,-73.080963]]],[[[166.479447,-77.449478],[166.23262,-77.313034],[166.566254,-77.214478],[166.831482,-77.226318],[167.017929,-77.312889],[166.980591,-77.379532],[167.51889,-77.460342],[168.248856,-77.408844],[169.133194,-77.489098],[169.278076,-77.567726],[168.732879,-77.694519],[168.442261,-77.736763],[167.684036,-77.665802],[167.49408,-77.672806],[166.806931,-77.809784],[166.724106,-77.711945],[166.344894,-77.683022],[165.998398,-77.579819],[166.27919,-77.534462],[166.479447,-77.449478]]],[[[-68.006264,-66.676338],[-67.778885,-66.619598],[-67.651993,-66.688095],[-67.932808,-66.831772],[-67.99707,-66.932739],[-67.907005,-67.043129],[-67.750313,-67.074837],[-67.6912,-67.156509],[-67.967049,-67.246223],[-67.974892,-67.387276],[-68.133156,-67.564613],[-68.266594,-67.532265],[-68.464058,-67.568459],[-68.417267,-67.618797],[-68.617569,-67.754219],[-68.963349,-67.737579],[-69.202392,-67.590012],[-69.161537,-67.446861],[-68.780243,-67.267288],[-68.47512,-66.827553],[-68.291092,-66.751701],[-68.006264,-66.676338]]],[[[121.317322,-66.697784],[121.493378,-66.567863],[121.699135,-66.502327],[121.70507,-66.403526],[121.313034,-66.284927],[121.214775,-66.199493],[121.366448,-66.057564],[121.183563,-65.918503],[121.189407,-65.732262],[121.348122,-65.646324],[121.440613,-65.680153],[121.737335,-65.948944],[121.714195,-66.041855],[121.938522,-66.156425],[122.415146,-66.358582],[122.522949,-66.43573],[122.550346,-66.562889],[122.476372,-66.66127],[122.068001,-66.555504],[121.577606,-66.659668],[121.317322,-66.697784]]],[[[-74.847572,-69.534729],[-74.684898,-69.58709],[-74.647919,-69.708237],[-74.453476,-69.804253],[-74.701286,-69.981941],[-75.147301,-69.929497],[-75.675713,-69.964676],[-75.944702,-69.922165],[-75.898033,-69.809982],[-76.078667,-69.645866],[-75.80928,-69.608788],[-75.327042,-69.614761],[-75.338119,-69.544502],[-74.847572,-69.534729]]],[[[-78.075729,-72.647964],[-77.785881,-72.654297],[-77.239792,-72.709846],[-77.380554,-72.936211],[-77.480805,-72.963051],[-78.011078,-73.000092],[-78.34243,-73.153198],[-78.609879,-73.192726],[-78.867729,-73.152794],[-79.070915,-73.002632],[-78.921806,-72.937096],[-78.545364,-72.966057],[-78.269707,-72.891846],[-78.153511,-72.810699],[-78.196884,-72.700684],[-78.075729,-72.647964]]],[[[-58.236435,-64.400673],[-58.20372,-64.288872],[-58.084736,-64.220802],[-58.286858,-64.139458],[-58.429623,-64.140831],[-58.427239,-64.052361],[-58.29752,-63.909683],[-58.126888,-63.901096],[-57.982075,-63.812042],[-57.799988,-63.791889],[-57.794895,-63.905376],[-57.726139,-63.994991],[-57.52734,-63.948002],[-57.495556,-64.024437],[-57.145657,-64.087555],[-57.200355,-64.142937],[-57.091568,-64.201714],[-57.292599,-64.243073],[-57.383541,-64.306305],[-57.283402,-64.366463],[-57.730854,-64.365601],[-57.973183,-64.425278],[-58.083244,-64.380524],[-58.236435,-64.400673]]],[[[-63.382568,-64.44899],[-62.959503,-64.510101],[-62.850155,-64.549187],[-63.176548,-64.635345],[-63.356411,-64.743965],[-63.568524,-64.728508],[-63.675674,-64.797989],[-64.054421,-64.760208],[-64.144447,-64.706909],[-64.297669,-64.704948],[-64.231163,-64.583023],[-63.927918,-64.513496],[-63.781365,-64.443069],[-63.560227,-64.268196],[-63.382698,-64.253906],[-63.198456,-64.321159],[-63.382568,-64.44899]]],[[[-75,-70.564125],[-74.732048,-70.66507],[-74.610413,-70.56176],[-74.301308,-70.590202],[-74.130287,-70.474052],[-73.976669,-70.523529],[-73.75148,-70.652794],[-73.907173,-70.708168],[-74.410194,-70.823959],[-74.831955,-70.84108],[-74.905563,-70.866402],[-75.32827,-70.87532],[-75.531921,-70.769188],[-75.140442,-70.681984],[-75,-70.564125]]],[[[-148.864319,-77.319908],[-148.871201,-77.224922],[-148.713684,-77.136314],[-148.403412,-77.124222],[-147.756806,-77.22477],[-147.605362,-77.298164],[-147.556381,-77.441299],[-148.196411,-77.469841],[-148.261383,-77.417938],[-148.864319,-77.319908]]],[[[-90.879883,-72.641266],[-90.817307,-72.685257],[-90.995155,-72.792595],[-90.808647,-72.854431],[-91.141609,-73.108917],[-91.285248,-73.168259],[-91.50473,-73.104347],[-91.333946,-73.006966],[-91.342041,-72.799797],[-91.650322,-72.585014],[-91.160896,-72.519516],[-90.977577,-72.55545],[-90.879883,-72.641266]]],[[[-115.90786,-73.872505],[-116.294212,-73.993744],[-116.305367,-74.068924],[-116.521934,-74.147423],[-117.08593,-74.192154],[-117.721924,-74.173386],[-117.392036,-74.028084],[-117.109001,-74.030525],[-116.667038,-73.920387],[-116.134849,-73.822311],[-115.90786,-73.872505]]],[[[-56.332192,-63.216248],[-56.130295,-63.148678],[-55.639553,-63.11158],[-55.416599,-63.195065],[-55.324566,-63.173183],[-55.069969,-63.221096],[-55.020809,-63.309284],[-55.195183,-63.364143],[-55.563778,-63.345966],[-55.861133,-63.298229],[-56.13314,-63.398407],[-56.41531,-63.439033],[-56.565456,-63.339886],[-56.332192,-63.216248]]],[[[-150,-76.914497],[-149.63504,-76.914375],[-149.345871,-77.004723],[-149.061035,-77.142464],[-149.529755,-77.166046],[-150.307923,-77.10537],[-150.62941,-77.007721],[-150.52504,-76.969254],[-150,-76.914497]]],[[[-127.416092,-74.586998],[-127.821777,-74.447906],[-127.860649,-74.233383],[-126.885246,-74.387955],[-126.917694,-74.538506],[-127.054443,-74.589012],[-127.416092,-74.586998]]],[[[-131.904068,-74.302277],[-131.58696,-74.257416],[-131.396622,-74.326523],[-130.858063,-74.373581],[-130.734634,-74.413139],[-130.874268,-74.532715],[-131.138214,-74.550453],[-131.90332,-74.463104],[-131.904068,-74.302277]]],[[[-62.204788,-69.194542],[-61.927559,-69.410095],[-61.89703,-69.521591],[-61.955505,-69.671768],[-62.100124,-69.726868],[-62.233471,-69.665703],[-62.192833,-69.530067],[-62.582615,-69.248779],[-62.490509,-69.150803],[-62.204788,-69.194542]]],[[[-58.188145,-61.941216],[-58.013511,-61.90329],[-57.923355,-61.944603],[-57.693936,-61.907585],[-57.68829,-62.026093],[-57.791813,-62.016125],[-57.958137,-62.070862],[-58.181988,-62.081421],[-58.150223,-62.151043],[-58.255657,-62.181984],[-58.494946,-62.074886],[-58.441094,-62.203781],[-58.543072,-62.24358],[-58.831486,-62.175819],[-58.721073,-62.016533],[-58.60186,-62.010189],[-58.436611,-61.936646],[-58.188145,-61.941216]]],[[[100.264755,-65.644524],[100.271866,-65.557068],[100.593681,-65.408363],[100.741753,-65.383018],[101.050842,-65.415604],[101.172897,-65.471512],[101.179451,-65.542831],[100.915306,-65.575554],[100.525818,-65.703957],[100.264755,-65.644524]]],[[[-90,-72.8713],[-89.987534,-72.803993],[-89.550613,-72.865089],[-89.636909,-73.052147],[-89.780983,-73.102516],[-90.169121,-73.108528],[-90.366623,-73.039947],[-90.355881,-72.908623],[-90.166649,-72.927544],[-90,-72.8713]]],[[[-62.302807,-64.044098],[-62.286163,-64.080444],[-62.045792,-64.139366],[-62.235867,-64.294289],[-62.217442,-64.356346],[-62.401493,-64.455582],[-62.64101,-64.513077],[-62.674301,-64.369133],[-62.546135,-64.265358],[-62.587898,-64.118782],[-62.467747,-64.011948],[-62.302807,-64.044098]]],[[[-60,-62.669128],[-60.299454,-62.757],[-60.383343,-62.694626],[-60.356045,-62.622528],[-60.717587,-62.623516],[-60.831146,-62.671722],[-61.086117,-62.658775],[-60.843411,-62.56472],[-60.496353,-62.57526],[-60.299603,-62.535675],[-60.118034,-62.562111],[-60,-62.669128]]],[[[85.604988,-66.719284],[86.016075,-66.767372],[86.321167,-66.910233],[86.205765,-67.023247],[85.988335,-66.990204],[85.86335,-66.906799],[85.599053,-66.805244],[85.604988,-66.719284]]],[[[-99.561478,-72.628975],[-99.972511,-72.596741],[-100.375321,-72.526474],[-100.342186,-72.460106],[-99.896736,-72.466339],[-99.346443,-72.540482],[-99.561478,-72.628975]]],[[[96.597763,-66.232025],[96.414459,-66.230003],[96.256989,-66.182259],[96.343422,-66.06459],[96.604996,-66.044563],[96.923935,-66.078789],[96.970589,-66.17952],[96.597763,-66.232025]]],[[[-72.570801,-69.529465],[-72.837662,-69.466019],[-72.84153,-69.411575],[-72.687034,-69.329308],[-72.420494,-69.312889],[-72.35054,-69.417892],[-72.181358,-69.458618],[-72.158867,-69.556778],[-72.570801,-69.529465]]],[[[167.448517,-78.066734],[167.539383,-78.167168],[167.299271,-78.305344],[166.810684,-78.282669],[167.327682,-78.05368],[167.448517,-78.066734]]],[[[-149.100861,-76.83091],[-149.215408,-76.757805],[-148.966476,-76.714645],[-148.199997,-76.778847],[-148.705017,-76.868668],[-149.100861,-76.83091]]],[[[-147.295868,-76.197861],[-147.345245,-76.119492],[-146.969498,-76.109016],[-146.620941,-76.259895],[-146.809632,-76.341202],[-147.295868,-76.197861]]],[[[-151.227936,-77.281425],[-150.81134,-77.242035],[-150.389603,-77.321892],[-150.38298,-77.408623],[-151.098114,-77.358345],[-151.227936,-77.281425]]],[[[-66.04557,-65.63102],[-65.976181,-65.536919],[-65.674728,-65.518845],[-65.693375,-65.654816],[-65.9347,-65.698601],[-65.867188,-65.805504],[-66.038429,-65.855713],[-66.224869,-65.860535],[-66.205482,-65.766113],[-66.092552,-65.753387],[-66.04557,-65.63102]]],[[[-77.953323,-73.410584],[-78.120788,-73.291756],[-77.933586,-73.221855],[-77.708565,-73.223045],[-77.419411,-73.333862],[-77.77871,-73.415352],[-77.953323,-73.410584]]],[[[-94.606384,-72.458649],[-94.465866,-72.465408],[-94.436546,-72.600876],[-94.909141,-72.643372],[-95.288734,-72.642464],[-95.174828,-72.555656],[-94.606384,-72.458649]]],[[[-73.612854,-73.172958],[-73.632904,-73.262543],[-73.865112,-73.408127],[-74.096756,-73.428963],[-74.184814,-73.338989],[-73.914482,-73.233887],[-73.877251,-73.150635],[-73.612854,-73.172958]]],[[[-145.72287,-75.559364],[-145.230423,-75.671158],[-145.165497,-75.759178],[-145.569153,-75.743538],[-145.939072,-75.627357],[-145.72287,-75.559364]]],[[[-67.687187,-67.618698],[-67.450699,-67.58976],[-67.158363,-67.642326],[-67.366554,-67.767845],[-67.682548,-67.788269],[-67.847038,-67.683159],[-67.687187,-67.618698]]],[[[-146.916611,-77.013306],[-147.002212,-76.877808],[-146.745438,-76.848892],[-146.291702,-76.902908],[-146.378586,-76.980247],[-146.916611,-77.013306]]],[[[-149.165497,-77.013657],[-149.218842,-76.964554],[-148.575088,-76.933037],[-148.306885,-76.981529],[-148.402634,-77.04847],[-148.858993,-77.054718],[-149.165497,-77.013657]]],[[[-150,-76.780655],[-150.533142,-76.811714],[-150.759506,-76.767426],[-150.332169,-76.693718],[-149.82872,-76.712273],[-150,-76.780655]]],[[[165.982391,-78.299225],[165.923752,-78.163094],[166.493835,-78.211189],[166.623398,-78.294823],[166.124664,-78.352844],[165.982391,-78.299225]]],[[[-54.712029,-61.042721],[-54.730198,-61.102993],[-54.944229,-61.105774],[-55.154804,-61.224373],[-55.31913,-61.167534],[-55.282482,-60.999733],[-54.908752,-61.055614],[-54.712029,-61.042721]]],[[[-56.577057,-63.086216],[-56.492588,-62.992386],[-56.154987,-62.995205],[-56.036465,-63.082603],[-56.288879,-63.181511],[-56.577057,-63.086216]]],[[[-45.683731,-60.518291],[-45.622486,-60.551651],[-45.40604,-60.565361],[-45.381748,-60.609402],[-45.168541,-60.633183],[-45.170059,-60.729027],[-45.419662,-60.656044],[-45.735638,-60.646751],[-45.784027,-60.584053],[-45.683731,-60.518291]]],[[[-60.618046,-70.908295],[-60.403851,-70.981956],[-60.478413,-71.06192],[-60.671452,-71.075806],[-60.936459,-71.01506],[-60.850571,-70.919861],[-60.618046,-70.908295]]],[[[169.825851,-73.621674],[169.382431,-73.564217],[169.603592,-73.461052],[169.813507,-73.489746],[169.825851,-73.621674]]],[[[-147.205856,-76.702263],[-147.337814,-76.599449],[-147.15509,-76.544861],[-146.824173,-76.616837],[-146.774307,-76.730087],[-147.205856,-76.702263]]],[[[102.929985,-65.124428],[103.192993,-65.24807],[103.223358,-65.320267],[103.45089,-65.415184],[103.306046,-65.462677],[103.171173,-65.432678],[103.086731,-65.28949],[102.859032,-65.236565],[102.788071,-65.182442],[102.929985,-65.124428]]],[[[-104.764465,-73.120628],[-104.436287,-73.224648],[-104.27063,-73.333305],[-104.583931,-73.31501],[-104.825447,-73.220566],[-104.764465,-73.120628]]],[[[-56.081112,-63.409737],[-55.969971,-63.380875],[-55.721176,-63.413792],[-55.756817,-63.511974],[-55.935322,-63.569443],[-56.149494,-63.54052],[-56.241699,-63.484631],[-56.081112,-63.409737]]],[[[-60.744713,-70.720314],[-60.959293,-70.684456],[-61.029446,-70.598907],[-60.778976,-70.504394],[-60.619686,-70.570206],[-60.604454,-70.64814],[-60.744713,-70.720314]]],[[[-132.589599,-74.325882],[-132.350983,-74.367683],[-132.252853,-74.433571],[-132.472595,-74.497345],[-132.753403,-74.469414],[-132.707199,-74.338287],[-132.589599,-74.325882]]],[[[-57.048653,-64.488007],[-57.193573,-64.534576],[-57.450081,-64.528435],[-57.458096,-64.430435],[-57.289036,-64.425354],[-57.138664,-64.36821],[-56.949104,-64.413528],[-57.048653,-64.488007]]],[[[164.764923,-67.608879],[164.587067,-67.606415],[164.488006,-67.487946],[164.492172,-67.415497],[164.618774,-67.346916],[164.82579,-67.570534],[164.764923,-67.608879]]],[[[-57.477959,-63.788879],[-57.33374,-63.786716],[-57.054833,-63.834087],[-57.196037,-63.896728],[-57.524883,-63.876327],[-57.621513,-63.903065],[-57.699001,-63.78508],[-57.477959,-63.788879]]],[[[-61.100346,-69.817802],[-60.97747,-69.864693],[-61.04435,-69.931938],[-61.315884,-69.948982],[-61.41597,-69.894653],[-61.225223,-69.808372],[-61.100346,-69.817802]]],[[[162.141449,-66.312897],[162.193649,-66.271919],[162.459778,-66.45237],[162.286575,-66.498932],[162.139084,-66.405663],[162.141449,-66.312897]]],[[[48.854115,-66.698868],[48.949955,-66.763214],[48.861805,-66.812302],[48.579552,-66.779854],[48.456822,-66.717804],[48.854115,-66.698868]]],[[[-148.806717,-77.38578],[-149.089203,-77.401161],[-149.572159,-77.329491],[-149.107437,-77.303154],[-148.806717,-77.38578]]],[[[-66.611908,-66.177444],[-66.814461,-66.314484],[-66.827034,-66.118416],[-66.641022,-66.060921],[-66.611908,-66.177444]]],[[[92.418587,-65.67247],[92.705223,-65.728134],[92.62796,-65.798332],[92.346603,-65.786324],[92.286797,-65.737999],[92.418587,-65.67247]]],[[[71.757012,-70.121521],[71.867935,-70.165123],[71.972382,-70.284836],[71.795593,-70.308769],[71.694122,-70.218628],[71.757012,-70.121521]]],[[[-67.402824,-66.737778],[-67.248642,-66.810776],[-67.325256,-66.87603],[-67.590355,-66.901093],[-67.402824,-66.737778]]],[[[-90.619423,-68.712181],[-90.489487,-68.744156],[-90.468033,-68.875298],[-90.653122,-68.8936],[-90.724297,-68.770775],[-90.619423,-68.712181]]],[[[86.633125,-66.657127],[86.796814,-66.671013],[86.867493,-66.756416],[86.627724,-66.771454],[86.518867,-66.721832],[86.633125,-66.657127]]],[[[-93.777878,-72.922844],[-94.156708,-72.871513],[-94.182831,-72.814133],[-93.888717,-72.809792],[-93.777878,-72.922844]]],[[[47.641353,-67.530663],[47.717289,-67.649124],[47.419891,-67.623993],[47.641353,-67.530663]]],[[[97.113335,-66.400848],[97.209793,-66.30304],[97.408325,-66.323006],[97.436836,-66.409424],[97.113335,-66.400848]]],[[[-60.656403,-63.840218],[-60.750698,-63.900864],[-60.903095,-63.887383],[-60.779995,-63.799049],[-60.797226,-63.683681],[-60.579834,-63.684879],[-60.708576,-63.784298],[-60.656403,-63.840218]]],[[[-59.719677,-65.1203],[-59.603993,-65.125374],[-59.477791,-65.199356],[-59.76062,-65.201599],[-59.719677,-65.1203]]],[[[-60,-72.253494],[-60.294098,-72.23468],[-60.360958,-72.175797],[-60.042759,-72.166405],[-60,-72.253494]]],[[[-62.413368,-62.970337],[-62.710075,-63.10128],[-62.556038,-62.934364],[-62.413368,-62.970337]]],[[[-59.167137,-62.257713],[-59.035038,-62.229755],[-58.840553,-62.301743],[-59.124412,-62.341076],[-59.167137,-62.257713]]],[[[-59.782417,-64.491989],[-59.621155,-64.462959],[-59.591339,-64.538918],[-59.73909,-64.58596],[-59.782417,-64.491989]]],[[[-59.643944,-62.339802],[-59.413143,-62.365761],[-59.518002,-62.456184],[-59.692921,-62.380043],[-59.643944,-62.339802]]],[[[-60.687187,-62.899654],[-60.54987,-62.894299],[-60.56369,-63.007069],[-60.765022,-62.970524],[-60.687187,-62.899654]]],[[[-61.954811,-63.278751],[-62.183014,-63.338993],[-62.242863,-63.255348],[-62.069092,-63.227467],[-61.954811,-63.278751]]],[[[-53.964176,-61.096809],[-54.027607,-61.262093],[-54.173149,-61.214554],[-53.964176,-61.096809]]]]},"properties":{"name":"南极洲","name_en":"ANTARCTICA","id":"ATA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.374583,49.458832],[6.254083,49.50911],[5.985555,49.457333],[5.816611,49.546612],[5.900055,49.669418],[5.747889,49.844029],[5.780139,49.960693],[5.904611,50.119999],[6.02025,50.184696],[6.138028,50.132915],[6.142334,50],[6.263,49.883778],[6.408444,49.819054],[6.518556,49.81189],[6.515306,49.728001],[6.364528,49.570667],[6.374583,49.458832]]]},"properties":{"name":"卢森堡","name_en":"Letzebuerg","id":"LUX"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.966332,29.547611],[34.90321,29.491537],[34.866661,29.597183],[34.848514,29.759058],[34.611794,30.370937],[34.543316,30.412708],[34.496052,30.681513],[34.403622,30.856081],[34.242157,31.293322],[34.220386,31.322182],[34.458473,31.553917],[34.640221,31.815722],[34.7845,32.120583],[34.892361,32.4725],[34.965195,32.827305],[35.060585,32.835556],[35.114876,33.094154],[35.31694,33.104366],[35.348534,33.059299],[35.503124,33.090099],[35.564861,33.273888],[35.624397,33.242092],[35.669933,33.152874],[35.621735,32.918068],[35.662453,32.776878],[35.638996,32.683472],[35.580002,32.632889],[35.565666,32.43325],[35.575443,32.206028],[35.525638,32.07225],[35.547832,31.968639],[35.523445,31.918112],[35.555721,31.758472],[35.478333,31.574333],[35.475056,31.41975],[35.394943,31.26461],[35.459778,31.120361],[35.408584,31.025612],[35.415001,30.948833],[35.360085,30.91386],[35.332974,30.808222],[35.201695,30.574528],[35.152001,30.418612],[35.186638,30.362223],[35.144474,30.239529],[35.175804,30.119139],[35.098446,30.022556],[35.080776,29.872305],[35.051277,29.820917],[35.032665,29.630722],[34.966332,29.547611]]]},"properties":{"name":"以色列","name_en":"Israel","id":"ISR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70,12.580292],[-69.928284,12.523809],[-69.939522,12.429022],[-70.060783,12.543238],[-70,12.580292]]]},"properties":{"name":"阿鲁巴","name_en":"Aruba","id":"ABW"}}, + {"type":"Feature","geometry":null,"properties":{"name":"圣马力诺","name_en":"San Marino","id":"SMR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-69.566444,-10.956658],[-69.027916,-11.81721],[-68.92421,-11.993988],[-68.679298,-12.497149],[-68.753471,-12.592457],[-68.750259,-12.720067],[-68.874176,-12.750437],[-68.962212,-12.855412],[-68.970032,-13.000739],[-68.944115,-13.072187],[-68.964813,-13.194212],[-68.941727,-13.485863],[-68.997284,-13.652464],[-69.074356,-13.64808],[-68.959191,-13.882266],[-68.965302,-13.973227],[-68.854919,-14.121583],[-68.858139,-14.220421],[-68.981529,-14.236923],[-68.979767,-14.387169],[-69.153755,-14.512995],[-69.146095,-14.579051],[-69.236153,-14.601929],[-69.251694,-14.758834],[-69.352883,-14.793632],[-69.348762,-14.903423],[-69.374557,-14.954077],[-69.279549,-15.112489],[-69.190719,-15.163446],[-69.185593,-15.261448],[-69.264549,-15.335523],[-69.296959,-15.418922],[-69.413856,-15.62077],[-69.298004,-15.938698],[-69.235939,-16.143026],[-69.09922,-16.219093],[-68.962921,-16.188629],[-68.817986,-16.315249],[-68.817299,-16.342781],[-68.982368,-16.43272],[-69.031616,-16.560858],[-68.996452,-16.659943],[-69.1735,-16.740662],[-69.181992,-16.793577],[-69.391891,-17.020998],[-69.374825,-17.078199],[-69.551376,-17.161558],[-69.610977,-17.254417],[-69.462876,-17.375532],[-69.462647,-17.507553],[-69.661903,-17.657827],[-69.794884,-17.647888],[-69.821335,-17.701181],[-69.792396,-17.869772],[-69.746956,-17.939104],[-69.818909,-18.118589],[-69.936157,-18.237185],[-70.190735,-18.319216],[-70.304688,-18.305538],[-70.374191,-18.349728],[-70.595955,-18.199251],[-70.68232,-18.156803],[-70.812607,-18.036526],[-70.886025,-18.004032],[-70.924835,-17.923538],[-71.002274,-17.877615],[-71.093452,-17.867973],[-71.181473,-17.786434],[-71.370483,-17.679745],[-71.343018,-17.644148],[-71.392502,-17.394348],[-71.476143,-17.292776],[-71.688538,-17.211527],[-71.804505,-17.185427],[-71.945824,-17.064825],[-72.104202,-17.022045],[-72.132591,-16.97047],[-72.374283,-16.753689],[-72.449974,-16.704887],[-72.774498,-16.62772],[-72.927544,-16.518677],[-73.049965,-16.500759],[-73.211044,-16.400209],[-73.307907,-16.373863],[-73.339905,-16.32453],[-73.855728,-16.138124],[-74.027107,-16.015131],[-74.051888,-15.96502],[-74.284996,-15.846259],[-74.355583,-15.853895],[-74.437286,-15.808289],[-74.471466,-15.729652],[-74.653602,-15.658138],[-75.012222,-15.467185],[-75.050797,-15.467477],[-75.189804,-15.368879],[-75.244995,-15.283699],[-75.229919,-15.220274],[-75.372978,-15.144313],[-75.448151,-15.01243],[-75.508156,-14.97635],[-75.523964,-14.908088],[-75.650734,-14.849434],[-75.855011,-14.721209],[-75.92099,-14.662495],[-75.97049,-14.510907],[-76.067375,-14.393689],[-76.134888,-14.244532],[-76.283676,-14.1379],[-76.26461,-14.059985],[-76.285599,-13.917089],[-76.396126,-13.902493],[-76.370178,-13.809872],[-76.261467,-13.872071],[-76.193527,-13.624027],[-76.187645,-13.443431],[-76.286034,-13.283022],[-76.491707,-13.048561],[-76.519867,-12.870792],[-76.64122,-12.751792],[-76.678627,-12.629652],[-76.745407,-12.539596],[-76.810577,-12.512366],[-76.784065,-12.402237],[-76.847527,-12.321605],[-77.042442,-12.215167],[-77.033478,-12.159512],[-77.141686,-12.08086],[-77.150902,-11.908394],[-77.188644,-11.857065],[-77.176224,-11.738591],[-77.298958,-11.525817],[-77.364548,-11.467836],[-77.63102,-11.317217],[-77.663857,-11.256654],[-77.607269,-11.170771],[-77.6586,-11.037334],[-77.670692,-10.949312],[-77.775276,-10.767795],[-77.862785,-10.668785],[-78.06102,-10.343448],[-78.177681,-10.072193],[-78.255333,-9.861364],[-78.236092,-9.815083],[-78.369515,-9.633828],[-78.444092,-9.335636],[-78.511398,-9.313521],[-78.506515,-9.185938],[-78.64959,-9.041542],[-78.654373,-8.916178],[-78.752304,-8.799399],[-78.743546,-8.665255],[-78.797394,-8.557506],[-78.92646,-8.455726],[-78.909111,-8.378036],[-78.99102,-8.221221],[-79.127823,-8.095161],[-79.153007,-8.049572],[-79.295754,-7.93154],[-79.38253,-7.795085],[-79.457855,-7.711185],[-79.439598,-7.652449],[-79.566483,-7.464662],[-79.560845,-7.391653],[-79.613258,-7.250556],[-79.679344,-7.181991],[-79.677627,-7.120438],[-79.736343,-7.050036],[-79.925346,-6.87183],[-79.983437,-6.742804],[-80.082504,-6.663757],[-80.297867,-6.530156],[-80.691414,-6.337791],[-80.773056,-6.305581],[-80.932449,-6.177473],[-81.094414,-6.0769],[-81.14457,-5.980618],[-81.143562,-5.890265],[-81.061287,-5.787788],[-80.92585,-5.843448],[-80.853317,-5.765516],[-80.841942,-5.650813],[-80.891739,-5.51129],[-81.041863,-5.338054],[-81.109878,-5.309978],[-81.191414,-5.215608],[-81.16803,-5.087813],[-81.085236,-5.080988],[-81.081451,-4.979106],[-81.325844,-4.679606],[-81.276382,-4.563628],[-81.303337,-4.479327],[-81.251915,-4.389347],[-81.239746,-4.254123],[-81.167214,-4.210687],[-81.023361,-4.066737],[-80.954529,-3.956322],[-80.844627,-3.883769],[-80.785835,-3.74869],[-80.559303,-3.612747],[-80.505699,-3.509612],[-80.37204,-3.501711],[-80.290634,-3.432688],[-80.219017,-3.437626],[-80.215927,-3.575285],[-80.191277,-3.604565],[-80.189613,-3.771819],[-80.162407,-3.806996],[-80.164093,-3.922341],[-80.286133,-4.017959],[-80.362061,-3.983935],[-80.439491,-3.998211],[-80.481392,-4.083902],[-80.44397,-4.194497],[-80.30513,-4.200802],[-80.443459,-4.370888],[-80.443405,-4.436912],[-80.334671,-4.470112],[-80.17971,-4.33502],[-80.06031,-4.305867],[-79.991737,-4.376193],[-79.91478,-4.381657],[-79.811897,-4.486319],[-79.703499,-4.468824],[-79.641129,-4.431675],[-79.557404,-4.511654],[-79.507691,-4.51312],[-79.416222,-4.798517],[-79.300377,-4.897835],[-79.260353,-4.967359],[-78.993012,-4.973155],[-78.912537,-4.825415],[-78.881432,-4.720123],[-78.736069,-4.653685],[-78.631866,-4.51791],[-78.609093,-4.447324],[-78.630951,-4.351128],[-78.568283,-4.237354],[-78.575271,-4.156133],[-78.483635,-3.920236],[-78.376602,-3.787185],[-78.350395,-3.678404],[-78.333687,-3.450904],[-78.240356,-3.453091],[-78.23951,-3.528318],[-78.144791,-3.526814],[-78.128502,-3.469319],[-78.195213,-3.364114],[-78.055809,-3.221404],[-77.983482,-3.123474],[-77.792847,-2.984906],[-76.960205,-2.706469],[-76.627319,-2.590585],[-76.044701,-2.128139],[-75.619064,-1.58611],[-75.535194,-1.529012],[-75.364357,-0.955734],[-75.283318,-0.980583],[-75.227821,-0.924618],[-75.218887,-0.855447],[-75.280167,-0.710882],[-75.2351,-0.610052],[-75.244949,-0.534989],[-75.358589,-0.443065],[-75.414513,-0.423733],[-75.44915,-0.328686],[-75.546265,-0.319943],[-75.626182,-0.25192],[-75.621948,-0.108895],[-75.478455,-0.118594],[-75.38765,-0.149056],[-75.2882,-0.093691],[-75.234169,-0.020797],[-75.114975,-0.038623],[-74.903519,-0.195045],[-74.832825,-0.14135],[-74.780174,-0.21442],[-74.801125,-0.289786],[-74.665619,-0.330003],[-74.580605,-0.396544],[-74.515801,-0.48083],[-74.421303,-0.515411],[-74.34214,-0.709432],[-74.353996,-0.770804],[-74.260002,-0.841444],[-74.263603,-0.970109],[-74.223213,-1.031534],[-74.157051,-1.036339],[-74.012756,-1.122629],[-73.904511,-1.149534],[-73.86644,-1.24589],[-73.766609,-1.273503],[-73.681351,-1.257736],[-73.623734,-1.282989],[-73.526894,-1.493765],[-73.488884,-1.520253],[-73.497848,-1.648329],[-73.533119,-1.718836],[-73.413902,-1.821274],[-73.327766,-1.833967],[-73.212517,-1.778685],[-73.142594,-1.83397],[-73.099632,-1.926637],[-73.112816,-2.023962],[-73.095863,-2.16253],[-73.140602,-2.298893],[-73.055359,-2.390216],[-72.959885,-2.383968],[-72.904671,-2.494525],[-72.703354,-2.416379],[-72.656181,-2.47269],[-72.558212,-2.425673],[-72.382568,-2.416131],[-72.346001,-2.490426],[-72.221145,-2.433087],[-72.114746,-2.421613],[-72.035149,-2.331185],[-71.983757,-2.36374],[-71.861038,-2.300383],[-71.822296,-2.186985],[-71.704842,-2.160897],[-71.592293,-2.216461],[-71.449204,-2.260525],[-71.376152,-2.346469],[-71.213295,-2.340907],[-71.174431,-2.374425],[-71.118004,-2.284541],[-70.96785,-2.205668],[-70.875725,-2.21484],[-70.826095,-2.278839],[-70.674355,-2.340409],[-70.608299,-2.480622],[-70.465713,-2.453687],[-70.417572,-2.525272],[-70.366203,-2.49356],[-70.306786,-2.572864],[-70.232597,-2.562798],[-70.213547,-2.650035],[-70.159874,-2.697871],[-70.07608,-2.661945],[-70.052925,-2.792203],[-70.440056,-3.386154],[-70.703293,-3.794675],[-70.518326,-3.880822],[-70.454498,-3.876611],[-70.349152,-3.804406],[-70.294838,-3.812687],[-70.18634,-3.890896],[-70.157944,-4.021096],[-70.083465,-4.055185],[-69.945732,-4.225544],[-69.976257,-4.34021],[-70.020859,-4.371933],[-70.074974,-4.285543],[-70.125854,-4.286129],[-70.180496,-4.354123],[-70.25505,-4.311213],[-70.294953,-4.158646],[-70.43232,-4.131001],[-70.524307,-4.13492],[-70.585159,-4.18285],[-70.669464,-4.146258],[-70.75544,-4.155879],[-70.945633,-4.37371],[-71.081833,-4.371936],[-71.260521,-4.397849],[-71.418137,-4.464444],[-71.459618,-4.439199],[-71.615967,-4.528745],[-71.782593,-4.482828],[-71.916702,-4.528221],[-71.981605,-4.62293],[-72.036522,-4.637369],[-72.271347,-4.798799],[-72.372788,-4.807586],[-72.414482,-4.898898],[-72.599953,-4.987932],[-72.693306,-5.060416],[-72.887199,-5.162558],[-72.867111,-5.289909],[-72.959038,-5.466101],[-72.969246,-5.659272],[-73.055733,-5.797162],[-73.156158,-5.874112],[-73.249931,-6.123125],[-73.219841,-6.2124],[-73.161613,-6.276292],[-73.10395,-6.410998],[-73.132629,-6.497887],[-73.267517,-6.587669],[-73.352615,-6.593249],[-73.392013,-6.638809],[-73.53566,-6.682955],[-73.641723,-6.758639],[-73.761475,-6.938969],[-73.762024,-7.062366],[-73.799049,-7.114426],[-73.709755,-7.246161],[-73.728264,-7.344956],[-73.820397,-7.339171],[-73.940949,-7.393953],[-73.910477,-7.475569],[-73.979546,-7.558858],[-73.887726,-7.604479],[-73.818474,-7.717088],[-73.714722,-7.742614],[-73.677574,-7.857056],[-73.770004,-7.906431],[-73.628265,-8.051561],[-73.583488,-8.128997],[-73.588143,-8.197089],[-73.52414,-8.271847],[-73.542534,-8.345379],[-73.442848,-8.427393],[-73.342621,-8.476649],[-73.34407,-8.603363],[-73.282318,-8.666202],[-73.180611,-8.68633],[-73.134918,-8.741056],[-73.058487,-8.906308],[-72.997406,-8.923006],[-72.945274,-8.994775],[-72.953285,-9.137392],[-73.064934,-9.229016],[-73.100464,-9.303467],[-73.189003,-9.364497],[-73.200569,-9.411645],[-72.716133,-9.411629],[-72.51738,-9.486357],[-72.341995,-9.505907],[-72.246429,-9.657538],[-72.254936,-9.735095],[-72.162254,-9.831432],[-72.15004,-9.960976],[-72.179756,-10.000378],[-71.376267,-10.000164],[-71.298241,-9.992343],[-71.193443,-9.942895],[-71.17157,-9.891017],[-71.051483,-9.815752],[-70.998138,-9.818048],[-70.869873,-9.666997],[-70.798798,-9.641971],[-70.75766,-9.580617],[-70.650246,-9.512367],[-70.5709,-9.433238],[-70.516388,-9.494264],[-70.592651,-9.615396],[-70.527389,-9.723133],[-70.620918,-9.827967],[-70.620903,-10.3628],[-70.620865,-10.999892],[-70.529648,-10.934622],[-70.425308,-11.037434],[-70.308716,-11.070407],[-70.200913,-11.05383],[-69.933334,-10.920965],[-69.812492,-10.925354],[-69.717636,-10.975946],[-69.566444,-10.956658]]]},"properties":{"name":"秘鲁","name_en":"PERU","id":"PER"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[55.296265,-20.910633],[55.401112,-20.865391],[55.600727,-20.883112],[55.672111,-20.909376],[55.761154,-21.078266],[55.835281,-21.13003],[55.819321,-21.320299],[55.799832,-21.346594],[55.612594,-21.372118],[55.428135,-21.311762],[55.336533,-21.263592],[55.23016,-21.067211],[55.292538,-20.975931],[55.296265,-20.910633]]]},"properties":{"name":"留尼汪","name_en":"Reunion","id":"REU"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.641747,2.081389],[109.613525,1.984444],[109.536026,1.921444],[109.578003,1.810556],[109.67511,1.785472],[109.659226,1.619639],[109.79322,1.494028],[109.834053,1.421555],[109.95578,1.399861],[109.978722,1.297278],[110.052696,1.266194],[110.091194,1.196944],[110.15078,1.200111],[110.23925,1.110583],[110.279053,0.991222],[110.393891,0.992917],[110.477913,0.880639],[110.571915,0.855222],[110.717857,0.906694],[110.809135,0.907444],[110.907555,1.029778],[111.252808,1.064889],[111.383698,1.013056],[111.497864,1.021722],[111.517998,0.964222],[111.665695,1.039889],[111.828308,0.987667],[111.930527,1.114472],[112.144997,1.139944],[112.174835,1.305389],[112.221275,1.395111],[112.19767,1.432917],[112.315781,1.502833],[112.424141,1.522222],[112.492416,1.577361],[112.725807,1.563083],[112.812752,1.537417],[112.898392,1.5865],[113.057915,1.553806],[113.034226,1.469056],[113.144806,1.386222],[113.316498,1.37575],[113.439781,1.279944],[113.493164,1.315306],[113.576919,1.301528],[113.658165,1.210528],[113.701362,1.258806],[113.799278,1.294139],[113.815666,1.366],[113.943726,1.434278],[114.136917,1.464194],[114.21814,1.414944],[114.407219,1.519111],[114.56633,1.433472],[114.612472,1.504917],[114.610611,1.568389],[114.710281,1.678833],[114.709663,1.791528],[114.734413,1.871417],[114.790726,1.853083],[114.847359,1.948167],[114.804695,2.024361],[114.780945,2.195222],[114.811302,2.264972],[114.91217,2.261056],[114.943275,2.326639],[115.020584,2.364528],[115.133919,2.479],[115.193802,2.475556],[115.235863,2.53325],[115.164169,2.610861],[115.103805,2.5855],[115.095169,2.717417],[115.149696,2.793444],[115.089058,2.823333],[115.148529,2.914722],[115.248024,2.974972],[115.401222,2.987889],[115.512054,3.058167],[115.541611,3.359667],[115.604614,3.511778],[115.569748,3.650833],[115.574143,3.744472],[115.615029,3.874917],[115.559471,3.917917],[115.638222,3.971861],[115.702804,4.197139],[115.794502,4.229333],[115.923447,4.359722],[115.99717,4.350389],[116.078415,4.280667],[116.170082,4.387833],[116.276001,4.36325],[116.350944,4.390917],[116.429474,4.325778],[116.699585,4.338333],[116.751831,4.389639],[116.827637,4.332334],[116.906135,4.369805],[116.973747,4.344111],[117.171723,4.336],[117.238777,4.373806],[117.288193,4.316917],[117.364472,4.288778],[117.440308,4.194111],[117.585808,4.177528],[117.495888,4.106611],[117.587471,3.971861],[117.684135,3.87575],[117.778694,3.859444],[117.835831,3.808278],[117.835136,3.709139],[117.749138,3.648833],[117.656365,3.621639],[117.561638,3.6485],[117.497696,3.60125],[117.411888,3.638889],[117.253441,3.622111],[117.292969,3.566389],[117.505585,3.546722],[117.458504,3.454806],[117.436775,3.343055],[117.508362,3.319695],[117.375694,3.232972],[117.487114,3.091333],[117.59053,3.105639],[117.720726,2.892861],[117.697861,2.791472],[117.785751,2.72875],[117.783775,2.657472],[117.949753,2.453583],[118.065361,2.356083],[118.095947,2.279861],[118.019501,2.1945],[117.918442,2.18025],[117.906692,2.043278],[117.868141,1.971389],[117.889527,1.841917],[117.928055,1.803694],[118.058861,1.769806],[118.051193,1.72775],[118.112892,1.646917],[118.248779,1.560833],[118.411804,1.478806],[118.459747,1.400278],[118.557587,1.370583],[118.76886,1.197556],[118.779389,1.135944],[118.841835,1.04775],[118.918358,1.066306],[118.994698,1.028583],[118.973114,0.938611],[118.856972,0.873333],[118.794197,0.797083],[118.67572,0.8535],[118.561501,0.808639],[118.437691,0.838639],[118.376198,0.805167],[118.332085,0.843083],[118.094002,0.896694],[118.020943,0.869389],[118.030998,0.788056],[117.975975,0.777417],[117.915192,0.836333],[117.74939,0.758167],[117.672447,0.615944],[117.601082,0.414722],[117.511864,0.272778],[117.508415,0.141278],[117.463837,0.069972],[117.51728,-0.015417],[117.482864,-0.070361],[117.420525,-0.251861],[117.473808,-0.339389],[117.604446,-0.409583],[117.581444,-0.491222],[117.576691,-0.634889],[117.51828,-0.74225],[117.540947,-0.822667],[117.44397,-0.807528],[117.414581,-0.89],[117.319031,-0.886278],[117.185387,-0.945333],[117.007752,-1.203972],[116.930778,-1.259972],[116.813393,-1.283806],[116.751724,-1.375333],[116.585419,-1.428472],[116.540032,-1.4695],[116.556053,-1.604194],[116.325836,-1.704667],[116.374474,-1.768528],[116.448525,-1.774944],[116.429611,-1.876528],[116.455276,-1.921917],[116.445999,-2.066944],[116.374886,-2.093194],[116.380875,-2.19223],[116.499108,-2.175195],[116.600304,-2.198917],[116.593109,-2.279056],[116.522804,-2.553195],[116.409226,-2.496417],[116.361084,-2.709417],[116.368835,-2.874417],[116.269836,-3.013639],[116.220642,-3.013028],[116.192474,-2.905944],[116.10511,-2.948139],[116.178253,-3.005944],[116.211723,-3.131472],[116.111137,-3.23725],[116.009331,-3.453833],[115.967499,-3.608833],[115.822083,-3.640556],[115.709305,-3.731917],[115.341164,-3.867278],[114.904564,-4.065049],[114.687256,-4.181157],[114.600342,-4.171489],[114.617905,-4.049945],[114.590874,-3.788705],[114.601623,-3.643484],[114.482155,-3.493922],[114.261459,-3.411446],[114.036392,-3.355611],[113.853165,-3.445361],[113.744057,-3.471055],[113.587608,-3.443722],[113.640198,-3.29875],[113.606613,-3.180278],[113.45536,-3.182361],[113.422142,-3.240722],[113.324692,-3.260556],[113.188027,-3.092417],[113.026863,-2.980722],[112.935028,-3.117694],[113.006775,-3.159889],[112.671806,-3.370361],[112.53714,-3.435555],[112.419777,-3.353111],[112.316475,-3.309083],[112.160637,-3.3395],[111.946053,-3.54075],[111.902138,-3.567972],[111.790581,-3.537945],[111.836609,-3.384556],[111.806137,-3.1965],[111.828163,-3.060194],[111.800835,-2.982639],[111.713974,-2.857722],[111.662171,-2.960444],[111.575279,-3.009306],[111.438393,-2.935945],[111.31028,-2.924722],[111.037888,-3.068667],[110.930359,-3.096972],[110.77478,-3.020528],[110.665169,-3.074833],[110.625359,-3.032445],[110.590614,-2.872444],[110.539139,-2.864583],[110.392723,-2.9225],[110.284248,-3.00575],[110.226608,-2.971639],[110.198753,-2.897694],[110.250031,-2.796917],[110.177193,-2.587861],[110.190498,-2.532389],[110.153748,-2.436167],[110.134163,-2.299194],[110.089859,-2.238167],[110.121498,-2.080333],[110.059692,-1.929778],[109.9245,-1.867945],[109.94558,-1.781],[110.039802,-1.641944],[110.045387,-1.512417],[110.081108,-1.401139],[110.060608,-1.332333],[109.970695,-1.280944],[109.91436,-1.212583],[109.94297,-1.135583],[109.841194,-1.089889],[109.762337,-0.998278],[109.661446,-0.992833],[109.583527,-0.901639],[109.429558,-0.853083],[109.388138,-0.928639],[109.283249,-0.875333],[109.24292,-0.707194],[109.450226,-0.700722],[109.356529,-0.616417],[109.165802,-0.576694],[109.11483,-0.5175],[109.105362,-0.339167],[109.059502,-0.234972],[109.124611,-0.167583],[109.157974,-0.003861],[109.199997,0.053833],[109.133415,0.137278],[109.086441,0.249333],[109.024086,0.291278],[108.911194,0.321306],[108.941223,0.435889],[108.904251,0.519361],[108.925415,0.605222],[108.838997,0.814583],[108.939446,0.890111],[108.972946,0.976083],[108.905251,1.15425],[109.028221,1.327167],[109.033333,1.452],[109.061417,1.535667],[109.238358,1.651611],[109.327553,1.839694],[109.314278,1.926472],[109.467804,1.98725],[109.574219,1.993861],[109.641747,2.081389]]],[[[98.266418,4.312354],[98.248253,4.190583],[98.185944,4.17625],[98.309112,4.072889],[98.390862,4.078028],[98.490334,4.03025],[98.588913,3.926361],[98.678253,3.911695],[98.709274,3.789556],[98.787636,3.719667],[98.952499,3.673],[99.250831,3.498194],[99.372391,3.400194],[99.443336,3.376222],[99.546524,3.248055],[99.762726,3.1695],[99.789002,3.114278],[99.90789,2.993417],[99.994782,2.933305],[99.997223,2.809778],[100.122169,2.643361],[100.142334,2.693694],[100.237221,2.656583],[100.324196,2.55225],[100.399139,2.323555],[100.562332,2.15475],[100.682472,2.119361],[100.800499,2.056806],[100.768555,2.218278],[100.842941,2.284806],[101.046585,2.289889],[101.08139,2.208167],[101.185417,2.120083],[101.270775,2.07825],[101.327942,1.997861],[101.359886,1.783972],[101.403336,1.707083],[101.555725,1.639056],[101.762032,1.667167],[102.007332,1.457861],[102.163582,1.343528],[102.154198,1.267528],[102.210114,1.194917],[102.195389,1.090444],[102.255196,0.964556],[102.34578,0.897806],[102.405502,0.81625],[102.49289,0.758028],[102.607307,0.733889],[102.697502,0.751167],[102.765137,0.72675],[102.881752,0.733806],[103.029808,0.577639],[103.109726,0.446139],[102.814499,0.301056],[102.845947,0.241444],[103.139557,0.385833],[103.191917,0.46525],[103.333885,0.543278],[103.415222,0.524944],[103.669914,0.332556],[103.758781,0.233111],[103.803306,-0.005778],[103.669723,-0.026028],[103.573135,-0.070556],[103.436806,-0.203417],[103.625473,-0.237389],[103.760697,-0.316083],[103.609779,-0.398528],[103.533027,-0.500222],[103.41597,-0.527028],[103.373253,-0.722472],[103.470306,-0.763333],[103.596642,-0.907722],[103.755249,-0.998],[103.84964,-1.010556],[103.969917,-0.992028],[104.21347,-1.072194],[104.372086,-1.0275],[104.410668,-1.13],[104.388725,-1.203278],[104.443749,-1.311083],[104.436943,-1.472972],[104.462692,-1.614028],[104.527916,-1.715611],[104.538559,-1.863361],[104.635971,-1.91225],[104.60553,-1.961417],[104.709831,-1.999167],[104.810196,-2.002417],[104.866943,-2.074611],[104.881836,-2.167028],[104.841835,-2.241555],[104.754944,-2.31675],[104.753364,-2.411944],[104.907501,-2.300639],[105.054359,-2.378167],[105.208084,-2.337333],[105.272362,-2.3695],[105.545334,-2.404944],[105.625275,-2.431555],[105.599945,-2.534361],[105.625031,-2.633472],[105.665802,-2.673667],[105.781639,-2.705278],[105.784195,-2.872278],[105.874748,-2.960944],[105.974777,-2.964028],[106.047859,-2.997278],[106.055695,-3.150694],[106.084473,-3.233],[105.926003,-3.356083],[105.854363,-3.492472],[105.816582,-3.62575],[105.818222,-3.714639],[105.934303,-3.793861],[105.951836,-3.862389],[105.880531,-3.981667],[105.839668,-4.096278],[105.818886,-4.289805],[105.899193,-4.464528],[105.882004,-4.611083],[105.905251,-4.660278],[105.863167,-4.742694],[105.883614,-4.897028],[105.912834,-4.936306],[105.85733,-5.015083],[105.857803,-5.258167],[105.823913,-5.312944],[105.821442,-5.636528],[105.786888,-5.719806],[105.790222,-5.79775],[105.748085,-5.874361],[105.583275,-5.807416],[105.584557,-5.732],[105.407364,-5.619694],[105.302254,-5.450056],[105.250359,-5.467333],[105.25222,-5.548584],[105.168724,-5.602583],[105.191086,-5.701],[105.124054,-5.778528],[104.931084,-5.704528],[104.769142,-5.611639],[104.687141,-5.520111],[104.587692,-5.498917],[104.526863,-5.524889],[104.561752,-5.608611],[104.624222,-5.672555],[104.638946,-5.743166],[104.706253,-5.840889],[104.716614,-5.936306],[104.578087,-5.945028],[104.540642,-5.852111],[104.406029,-5.708139],[104.305916,-5.6315],[104.304779,-5.594945],[104.199196,-5.50425],[104.111946,-5.456584],[103.931419,-5.236084],[103.928475,-5.16525],[103.722778,-4.969722],[103.510391,-4.883167],[103.420914,-4.873806],[103.384308,-4.809333],[103.309997,-4.789195],[103.278,-4.714833],[103.145615,-4.59725],[102.893059,-4.48375],[102.876198,-4.439083],[102.705002,-4.284528],[102.335388,-4.021222],[102.271698,-3.93775],[102.308029,-3.884028],[102.216057,-3.670944],[102.084389,-3.564917],[101.918808,-3.482],[101.899918,-3.440056],[101.799332,-3.381028],[101.607696,-3.23975],[101.387749,-2.908306],[101.30761,-2.734056],[101.142113,-2.637445],[100.991386,-2.440278],[100.886696,-2.333139],[100.819641,-2.142861],[100.875809,-2.056889],[100.858833,-1.939722],[100.679138,-1.667611],[100.641609,-1.629944],[100.615028,-1.499722],[100.561836,-1.444278],[100.550972,-1.325611],[100.448914,-1.267639],[100.384194,-1.187306],[100.363251,-1.081722],[100.410698,-1.048889],[100.343498,-0.968111],[100.327583,-0.865778],[100.247276,-0.767028],[100.118248,-0.644333],[100.083748,-0.565361],[99.876747,-0.354694],[99.805832,-0.3065],[99.800781,-0.237139],[99.748833,-0.141556],[99.733253,-0.036556],[99.656387,0.039028],[99.521469,0.112306],[99.403137,0.145417],[99.353668,0.22875],[99.225113,0.206278],[99.117668,0.335528],[99.140892,0.423694],[99.111893,0.559639],[99.063942,0.657694],[99.054108,0.747472],[98.981941,0.856333],[98.910141,1.123722],[98.844086,1.278111],[98.852944,1.3195],[98.782333,1.423333],[98.76239,1.529722],[98.840614,1.644222],[98.766304,1.762583],[98.687752,1.734722],[98.605194,1.848222],[98.471191,1.983083],[98.283081,2.038528],[98.114914,2.180889],[97.984779,2.253833],[97.884476,2.236],[97.760086,2.266361],[97.669525,2.392],[97.651527,2.686306],[97.609306,2.8585],[97.430054,2.927139],[97.322472,3.055028],[97.255219,3.224167],[97.178276,3.249056],[96.988136,3.555445],[96.903748,3.601],[96.851692,3.706417],[96.777641,3.741195],[96.656944,3.752111],[96.523056,3.7365],[96.390305,3.84625],[96.198585,4.097944],[96.053612,4.205972],[96.019974,4.199194],[95.874107,4.365667],[95.608086,4.616222],[95.548363,4.647889],[95.397499,4.867889],[95.305527,5.165194],[95.254585,5.216389],[95.229141,5.316417],[95.248253,5.366334],[95.210999,5.561111],[95.265831,5.549417],[95.431442,5.656445],[95.497413,5.598805],[95.603775,5.627333],[95.878975,5.50675],[95.906166,5.429945],[96.073471,5.292833],[96.258698,5.263389],[96.388252,5.214861],[96.613945,5.214416],[96.720223,5.255917],[96.855247,5.277444],[96.97525,5.2665],[97.230858,5.151],[97.496666,5.253695],[97.647972,5.075056],[97.850807,4.902667],[97.90358,4.884584],[97.961861,4.726194],[97.961502,4.668],[98.063698,4.550361],[98.285942,4.423417],[98.266418,4.312354]]],[[[140.998993,-2.60875],[140.99881,-3.294],[140.999771,-4.173889],[140.999664,-4.903322],[141.000198,-5.743389],[141.000336,-6.313055],[140.956894,-6.477778],[140.874588,-6.623194],[140.853638,-6.723778],[140.910965,-6.863417],[141.021805,-6.898334],[141.02092,-7.630139],[141.019104,-8.241138],[141.021438,-9.131333],[140.921921,-9.089916],[140.805161,-8.951583],[140.623032,-8.814138],[140.508026,-8.621944],[140.181717,-8.344722],[139.963409,-8.194777],[139.932526,-8.135777],[139.697022,-8.069917],[139.566086,-8.080195],[139.512863,-8.13225],[139.338745,-8.156834],[139.258591,-8.066694],[139.105423,-8.112056],[138.947967,-8.255139],[138.87442,-8.141027],[138.9048,-8.070416],[138.961441,-8.059334],[138.945618,-7.913361],[139.047699,-7.841111],[139.044449,-7.763945],[139.121582,-7.54],[138.972839,-7.524416],[138.911362,-7.378139],[138.831772,-7.30875],[138.705246,-7.251361],[138.78125,-7.204722],[138.761032,-7.120111],[138.548691,-6.953694],[138.610275,-6.885889],[138.675003,-6.910472],[138.782257,-6.856583],[138.941116,-6.822139],[138.92305,-6.78],[138.817383,-6.775778],[138.788284,-6.670861],[138.660049,-6.604222],[138.399307,-6.336611],[138.350189,-6.050556],[138.251969,-5.904583],[138.233948,-5.808611],[138.165894,-5.782805],[138.167282,-5.715167],[138.083466,-5.731639],[138.032776,-5.601444],[138.07341,-5.529611],[138.061584,-5.443056],[137.947617,-5.43475],[137.874054,-5.351611],[137.815048,-5.365611],[137.754196,-5.274917],[137.49997,-5.142833],[137.445022,-5.072389],[137.401077,-5.104833],[137.322144,-5.020472],[137.094284,-4.964528],[137.070084,-4.896972],[136.994782,-4.938889],[136.898697,-4.880861],[136.826828,-4.901611],[136.692948,-4.819861],[136.604553,-4.803694],[136.324387,-4.654944],[136.219391,-4.653528],[136.042587,-4.570972],[135.948883,-4.494861],[135.735809,-4.490889],[135.502945,-4.434694],[135.255142,-4.431139],[135.205689,-4.447667],[134.963333,-4.31875],[134.905396,-4.255694],[134.824997,-4.253194],[134.728729,-4.190917],[134.708969,-4.136278],[134.630417,-4.111167],[134.67128,-4.02525],[134.678772,-3.913667],[134.512329,-4.024361],[134.444839,-3.903889],[134.361496,-3.90225],[134.325531,-4.025361],[134.188309,-3.914305],[134.196777,-3.833139],[134.166534,-3.755556],[134.089783,-3.817],[134.050415,-3.787195],[133.96228,-3.841639],[133.922638,-3.712361],[133.85083,-3.624722],[133.702896,-3.660833],[133.719635,-3.603694],[133.632919,-3.475139],[133.71019,-3.405195],[133.676743,-3.233194],[133.719421,-3.170528],[133.782471,-3.175722],[133.783524,-3.111305],[133.836105,-3.088333],[133.873276,-3.020556],[133.732941,-3.036722],[133.661301,-3.119583],[133.679672,-3.212055],[133.664719,-3.221333],[133.67691,-3.291194],[133.672775,-3.368944],[133.644501,-3.408944],[133.550553,-3.422778],[133.605698,-3.526417],[133.590439,-3.565167],[133.415115,-3.691222],[133.401443,-3.757361],[133.457687,-3.864028],[133.250107,-4.069139],[133.065247,-4.05275],[133.011581,-4.107444],[132.899674,-4.086805],[132.880051,-4.025583],[132.79155,-3.934111],[132.786743,-3.84625],[132.732697,-3.691333],[132.731552,-3.632222],[132.87706,-3.648861],[132.878021,-3.477917],[132.811188,-3.444806],[132.814224,-3.300306],[132.766495,-3.255556],[132.656631,-3.315694],[132.625443,-3.182],[132.422836,-3.000972],[132.298004,-2.944306],[132.212357,-2.93175],[132.074692,-2.968528],[131.997696,-2.911528],[132.012726,-2.796639],[132.127442,-2.685472],[132.321335,-2.679722],[132.362717,-2.747833],[132.473221,-2.695111],[132.576721,-2.711195],[132.714218,-2.812833],[132.820969,-2.747167],[133.057312,-2.47275],[133.146438,-2.423944],[133.237335,-2.407833],[133.304337,-2.430833],[133.391327,-2.510611],[133.498032,-2.518778],[133.528,-2.588805],[133.608383,-2.544944],[133.796966,-2.496333],[133.883896,-2.384167],[133.953918,-2.401361],[133.98642,-2.457472],[134.059219,-2.380472],[133.970199,-2.340556],[133.958664,-2.141444],[133.856003,-2.100222],[133.65239,-2.229445],[133.53714,-2.239167],[133.421997,-2.211361],[133.171646,-2.202889],[133.052948,-2.240333],[132.982498,-2.289833],[132.903854,-2.288361],[132.799362,-2.249333],[132.712006,-2.303333],[132.643173,-2.295305],[132.56517,-2.192139],[132.309662,-2.291639],[132.228104,-2.198806],[132.043442,-2.089833],[131.920639,-1.864806],[131.922104,-1.81075],[132.026611,-1.722945],[131.907105,-1.715194],[131.878525,-1.641333],[131.786118,-1.579361],[131.698059,-1.554139],[131.733887,-1.518778],[131.746414,-1.475694],[131.71341,-1.4235],[131.630386,-1.436167],[131.546021,-1.492278],[131.434891,-1.500722],[131.38147,-1.463556],[131.210419,-1.532306],[131.172165,-1.475722],[131.098999,-1.453806],[131.002701,-1.464417],[130.991165,-1.400806],[131.023697,-1.295361],[131.079132,-1.245889],[131.169632,-1.228417],[131.246414,-1.083917],[131.276077,-0.922917],[131.236053,-0.825694],[131.380051,-0.790694],[131.502502,-0.740611],[131.602753,-0.760472],[131.789108,-0.722611],[131.884827,-0.676083],[131.978561,-0.567056],[132.051392,-0.540417],[132.072693,-0.488389],[132.262802,-0.377139],[132.410782,-0.34375],[132.691864,-0.366361],[132.904327,-0.452778],[132.954864,-0.439528],[133.11058,-0.532083],[133.170303,-0.534972],[133.343994,-0.688611],[133.420197,-0.736],[133.531891,-0.741694],[133.760163,-0.720889],[133.841827,-0.746694],[133.973724,-0.714361],[134.101303,-0.811806],[134.033081,-0.972083],[134.085587,-1.024944],[134.121384,-1.133555],[134.209747,-1.209278],[134.266312,-1.326111],[134.219299,-1.461583],[134.222412,-1.552222],[134.136032,-1.647361],[134.109634,-1.711611],[134.120438,-1.841139],[134.158646,-1.997167],[134.117783,-2.049472],[134.168701,-2.298389],[134.23259,-2.420667],[134.277496,-2.432555],[134.33667,-2.547889],[134.459274,-2.850389],[134.532913,-2.791889],[134.471085,-2.575972],[134.54805,-2.452639],[134.63858,-2.493861],[134.662857,-2.548583],[134.666641,-2.825667],[134.707077,-2.9765],[134.823837,-3.023944],[134.817413,-3.116417],[134.864502,-3.153139],[134.874756,-3.248278],[134.939422,-3.261972],[134.98906,-3.320528],[135.156052,-3.356583],[135.358169,-3.378806],[135.50708,-3.350222],[135.566772,-3.285528],[135.607025,-3.185917],[135.77597,-3.097361],[135.754105,-3.048639],[135.870468,-2.985],[135.920838,-2.986667],[135.965775,-2.771639],[136.030777,-2.689472],[136.230774,-2.617583],[136.282639,-2.467889],[136.348023,-2.345222],[136.3405,-2.263722],[136.409805,-2.211],[136.525085,-2.190528],[136.532608,-2.231528],[136.680557,-2.257028],[136.714523,-2.225472],[136.825363,-2.226333],[136.946915,-2.133611],[137.072785,-2.0945],[137.240478,-2.069111],[137.256394,-2.010111],[137.195465,-1.944472],[137.269669,-1.906889],[137.174561,-1.780583],[137.577866,-1.585278],[137.657913,-1.526556],[137.800354,-1.472694],[137.925507,-1.47025],[137.979782,-1.546139],[138.073578,-1.611611],[138.193588,-1.641528],[138.392166,-1.730583],[138.680801,-1.808417],[138.754669,-1.860639],[138.799225,-1.931167],[138.86673,-1.9675],[139.000809,-1.968361],[139.26181,-2.110583],[139.351563,-2.133583],[139.772949,-2.360917],[139.867523,-2.372611],[140.075058,-2.356417],[140.11853,-2.328639],[140.210526,-2.405389],[140.255783,-2.400861],[140.371368,-2.461055],[140.46167,-2.429417],[140.615692,-2.439472],[140.70369,-2.476361],[140.755081,-2.531417],[140.696304,-2.619028],[140.998993,-2.60875]]],[[[121.505448,-4.724],[121.464943,-4.674278],[121.476997,-4.54275],[121.519776,-4.405],[121.526749,-4.277555],[121.605026,-4.174528],[121.603195,-4.059945],[121.561859,-4.036445],[121.336197,-3.978583],[121.238251,-3.822583],[121.165916,-3.820722],[121.071442,-3.699944],[121.009163,-3.666361],[120.881027,-3.532361],[120.867225,-3.434444],[120.972862,-3.258861],[121.053718,-3.164639],[121.055138,-3.056306],[121.085052,-2.922167],[121,-2.803472],[121.079498,-2.726333],[121.036415,-2.672889],[120.855392,-2.660333],[120.806915,-2.623639],[120.680275,-2.648861],[120.567612,-2.71325],[120.438835,-2.834722],[120.19136,-2.970139],[120.25853,-3.079195],[120.253052,-3.1605],[120.371193,-3.204528],[120.398331,-3.413528],[120.374748,-3.507],[120.409584,-3.567861],[120.437691,-3.73675],[120.354027,-3.867361],[120.332947,-3.944278],[120.356804,-4.025722],[120.330643,-4.100167],[120.37458,-4.154695],[120.346916,-4.414278],[120.399559,-4.484583],[120.388863,-4.582695],[120.429581,-4.678778],[120.371246,-4.846139],[120.304054,-4.864389],[120.298859,-5.0095],[120.260971,-5.143889],[120.444138,-5.481778],[120.458275,-5.588861],[120.425247,-5.610889],[120.325165,-5.512139],[120.114472,-5.591611],[119.929253,-5.549],[119.849693,-5.660361],[119.773308,-5.705806],[119.636864,-5.675972],[119.608002,-5.617361],[119.499443,-5.555417],[119.43103,-5.596194],[119.415497,-5.495778],[119.355469,-5.418583],[119.350387,-5.327028],[119.381165,-5.176805],[119.47097,-5.065972],[119.461113,-5.038167],[119.520973,-4.888583],[119.481026,-4.75525],[119.58017,-4.594444],[119.595413,-4.415611],[119.626473,-4.299028],[119.630303,-4.166584],[119.603386,-4.092722],[119.631752,-3.982361],[119.542389,-3.916556],[119.444969,-3.696528],[119.505608,-3.583528],[119.443085,-3.4755],[119.306862,-3.429028],[119.200416,-3.497333],[119.019081,-3.516861],[118.981056,-3.560972],[118.910973,-3.535861],[118.843529,-3.381333],[118.856476,-3.303611],[118.827225,-3.169667],[118.881195,-2.889444],[118.78167,-2.864389],[118.752502,-2.782472],[118.778832,-2.692222],[118.982941,-2.633389],[119.04097,-2.515194],[119.144363,-2.472972],[119.120224,-2.326833],[119.139336,-2.206056],[119.182472,-2.154305],[119.230499,-1.982361],[119.335609,-1.959667],[119.368194,-1.862472],[119.317169,-1.803],[119.291557,-1.678028],[119.32814,-1.59575],[119.282974,-1.467389],[119.323196,-1.362333],[119.294998,-1.286722],[119.331192,-1.18975],[119.437584,-1.103778],[119.547417,-0.851778],[119.761223,-0.682389],[119.840057,-0.879],[119.871307,-0.877972],[119.860832,-0.715778],[119.822609,-0.683778],[119.765137,-0.498444],[119.759308,-0.361778],[119.81678,-0.176639],[119.796081,-0.120806],[119.676529,-0.112444],[119.612053,-0.010917],[119.705666,0.00325],[119.775833,-0.103806],[119.825226,-0.115444],[119.878723,-0.026194],[119.868919,0.106444],[119.779053,0.197528],[119.903053,0.240333],[119.84153,0.343444],[119.922279,0.488167],[120,0.484417],[120.053665,0.526361],[120.024971,0.656472],[120.072167,0.737667],[120.18158,0.760444],[120.242058,0.802194],[120.245003,0.956444],[120.349167,0.983528],[120.331917,0.852861],[120.402779,0.798806],[120.610611,0.821417],[120.641891,0.9455],[120.790031,1.036222],[120.852196,1.317528],[120.960053,1.354444],[121.156113,1.298],[121.25808,1.227472],[121.319641,1.255139],[121.475586,1.263944],[121.422363,1.170806],[121.498779,1.09],[121.658142,1.048917],[121.709389,1.077417],[121.924164,1.100889],[121.978836,1.019972],[122.071609,1.058722],[122.219109,1.008278],[122.513748,0.977417],[122.658196,0.938139],[122.775749,0.876],[122.844002,0.806111],[122.92189,0.865417],[122.960694,0.943694],[123.103668,0.927528],[123.249969,0.947944],[123.56247,0.870083],[123.602608,0.886945],[123.758667,0.828194],[123.877358,0.830028],[124.185776,0.987528],[124.295364,1.010889],[124.353165,1.16775],[124.404976,1.197917],[124.58403,1.195833],[124.610252,1.257694],[124.542389,1.283389],[124.535004,1.357861],[124.622193,1.422333],[124.674553,1.398028],[124.7565,1.460861],[124.829834,1.475167],[124.800087,1.570806],[124.997414,1.758389],[125.037666,1.678583],[125.143913,1.691722],[125.146225,1.584778],[125.244278,1.5165],[125.229195,1.466361],[125.133697,1.437361],[125.068169,1.357333],[125.015251,1.138194],[124.898865,0.976972],[124.718109,0.891111],[124.636444,0.793139],[124.631058,0.712222],[124.565109,0.657944],[124.489304,0.470139],[124.327332,0.440306],[124.278557,0.397278],[124.008468,0.369528],[123.971306,0.346278],[123.808914,0.326222],[123.691696,0.292222],[123.546333,0.312361],[123.492752,0.294083],[123.265724,0.313972],[123.074669,0.509417],[122.929863,0.478222],[122.792221,0.491806],[122.626137,0.474722],[122.415443,0.499278],[122.140335,0.479611],[122.106499,0.492806],[121.795555,0.417528],[121.705414,0.522583],[121.527115,0.542889],[121.508415,0.4895],[121.437805,0.463444],[121.280914,0.483806],[121.166725,0.460944],[121.131584,0.413417],[121.007553,0.442417],[120.887443,0.413056],[120.803337,0.481722],[120.696053,0.526861],[120.513725,0.526944],[120.452858,0.477861],[120.371025,0.463333],[120.25489,0.348222],[120.119888,0.158778],[120.083336,-0.038167],[120.039803,-0.059111],[120.005585,-0.17825],[120.008415,-0.288528],[120.069694,-0.443167],[120.045364,-0.529167],[120.059997,-0.632917],[120.110779,-0.744056],[120.306748,-0.957972],[120.405609,-0.921889],[120.507721,-0.986444],[120.57592,-1.097417],[120.559753,-1.23375],[120.631164,-1.306056],[120.671974,-1.414611],[120.792946,-1.352417],[120.849724,-1.402583],[120.979385,-1.39825],[121.05172,-1.433972],[121.155418,-1.358833],[121.214165,-1.202028],[121.31617,-1.066222],[121.435471,-0.960639],[121.461441,-0.893944],[121.577805,-0.857028],[121.698471,-0.939361],[121.949692,-0.976972],[122.00589,-0.925833],[122.096802,-0.948222],[122.143143,-0.901139],[122.158501,-0.803583],[122.200859,-0.775111],[122.528893,-0.777139],[122.618858,-0.757167],[122.688919,-0.803694],[122.781441,-0.774306],[122.763336,-0.693361],[122.81472,-0.627],[122.959053,-0.636417],[123.054031,-0.561306],[123.25811,-0.574639],[123.358002,-0.630417],[123.440224,-0.723111],[123.432335,-0.820472],[123.347557,-1.038417],[123.264892,-1.046306],[123.175331,-0.960222],[123.100807,-0.8335],[123.052864,-0.896222],[122.968887,-0.897444],[122.79847,-0.9405],[122.79322,-0.994694],[122.71228,-1.129417],[122.640892,-1.165583],[122.628502,-1.231722],[122.425942,-1.431083],[122.362946,-1.518306],[122.213364,-1.608972],[122.02697,-1.617083],[121.953781,-1.680333],[121.87497,-1.685833],[121.81147,-1.728444],[121.723556,-1.882889],[121.661278,-1.943889],[121.565056,-1.952694],[121.514252,-1.893028],[121.313919,-1.781778],[121.289475,-1.853139],[121.312943,-1.934472],[121.439888,-1.98475],[121.52922,-2.060778],[121.555275,-2.17225],[121.72467,-2.200472],[121.957779,-2.525056],[122.031586,-2.659583],[122.004776,-2.707972],[122.08258,-2.783639],[122.141335,-2.788833],[122.176834,-2.862639],[122.316971,-2.920944],[122.247612,-3.01925],[122.371246,-3.131056],[122.464836,-3.178972],[122.426247,-3.249611],[122.323639,-3.229028],[122.290336,-3.33975],[122.240837,-3.401833],[122.295669,-3.459417],[122.203751,-3.6165],[122.353973,-3.745278],[122.441635,-3.748055],[122.596726,-3.96975],[122.65358,-4.002722],[122.661499,-4.122417],[122.800857,-4.149111],[122.891418,-4.137139],[122.878586,-4.290778],[122.89325,-4.393917],[122.835281,-4.444028],[122.76947,-4.401833],[122.740608,-4.504055],[122.591721,-4.391722],[122.523003,-4.436666],[122.414665,-4.426667],[122.33564,-4.467417],[122.218056,-4.46975],[122.105919,-4.527306],[122.030747,-4.655028],[122.046448,-4.761861],[122.097557,-4.807944],[122.019386,-4.890555],[121.864303,-4.865472],[121.823219,-4.832556],[121.712387,-4.852111],[121.658775,-4.806445],[121.546448,-4.77075],[121.505448,-4.724]]],[[[106.927559,-6.095343],[107.014946,-6.077222],[107.022026,-5.913556],[107.156387,-5.982361],[107.336388,-5.963278],[107.46347,-6.1405],[107.570946,-6.182889],[107.666359,-6.253611],[107.760613,-6.20225],[107.847443,-6.195722],[108.108643,-6.328472],[108.194275,-6.305389],[108.202362,-6.256972],[108.295136,-6.242667],[108.414223,-6.4005],[108.530914,-6.476056],[108.537582,-6.619667],[108.595558,-6.762333],[108.703224,-6.814667],[108.825607,-6.778944],[108.906692,-6.843778],[109.015114,-6.786083],[109.128052,-6.847528],[109.264809,-6.869667],[109.378586,-6.857944],[109.495445,-6.802278],[109.540001,-6.829028],[109.702698,-6.857361],[109.846527,-6.908167],[110.012726,-6.918944],[110.200775,-6.889722],[110.324638,-6.964556],[110.454308,-6.951305],[110.512253,-6.89525],[110.608582,-6.745139],[110.644196,-6.647889],[110.665337,-6.496583],[110.720024,-6.443917],[110.912308,-6.397278],[111.017776,-6.421333],[111.097443,-6.626861],[111.148865,-6.68975],[111.426247,-6.685805],[111.488914,-6.618389],[111.555115,-6.635139],[111.679108,-6.742667],[111.832253,-6.799528],[111.940445,-6.763333],[112.059082,-6.885667],[112.124084,-6.898972],[112.323082,-6.861195],[112.432281,-6.865167],[112.54425,-6.904944],[112.600197,-7.107167],[112.666527,-7.155528],[112.660721,-7.223306],[112.76136,-7.197611],[112.824608,-7.296556],[112.742859,-7.436695],[112.756859,-7.514083],[112.962608,-7.673139],[113.03125,-7.652472],[113.155777,-7.746555],[113.25589,-7.750195],[113.328941,-7.78375],[113.484001,-7.70475],[113.67025,-7.730333],[113.783447,-7.730417],[113.828858,-7.688],[113.92897,-7.696833],[114.034943,-7.615806],[114.130608,-7.71125],[114.237999,-7.697972],[114.321999,-7.755306],[114.377693,-7.754611],[114.458054,-7.81675],[114.420807,-7.923722],[114.43164,-8.058861],[114.399582,-8.117639],[114.340469,-8.433028],[114.43914,-8.633194],[114.47747,-8.617111],[114.600029,-8.710361],[114.542969,-8.78025],[114.366554,-8.748777],[114.378113,-8.7005],[114.319641,-8.625334],[114.243164,-8.601389],[114.216804,-8.648472],[114.029198,-8.603444],[113.971863,-8.611834],[113.813248,-8.543028],[113.792336,-8.492666],[113.714973,-8.488556],[113.524361,-8.431222],[113.441864,-8.380139],[113.392136,-8.401778],[113.317223,-8.311194],[113.237473,-8.28375],[113.080498,-8.286695],[112.966003,-8.334778],[112.933136,-8.393416],[112.842476,-8.382112],[112.666336,-8.447639],[112.55925,-8.403277],[112.441276,-8.397388],[112.330917,-8.333834],[112.267304,-8.349195],[111.978111,-8.287694],[111.867195,-8.27725],[111.732224,-8.294333],[111.714805,-8.377084],[111.514335,-8.337584],[111.415443,-8.280666],[111.247696,-8.2565],[111.195694,-8.281389],[111.077446,-8.249639],[110.999359,-8.255333],[110.912193,-8.212417],[110.684112,-8.1855],[110.376587,-8.070861],[110.34922,-8.033],[109.88311,-7.840305],[109.567002,-7.768833],[109.437195,-7.772972],[109.393334,-7.721445],[109.250725,-7.693333],[109.064331,-7.693167],[109.01017,-7.747028],[108.88092,-7.687861],[108.85717,-7.616861],[108.75811,-7.693333],[108.592026,-7.6785],[108.502388,-7.708083],[108.499031,-7.775806],[108.424393,-7.816083],[108.34008,-7.814139],[108.059418,-7.765278],[107.998749,-7.738639],[107.835441,-7.727556],[107.804421,-7.682917],[107.689697,-7.664972],[107.596085,-7.568861],[107.446251,-7.509194],[107.257667,-7.491889],[107.074753,-7.451167],[106.557282,-7.418361],[106.403114,-7.340139],[106.390198,-7.218667],[106.460747,-7.188667],[106.45903,-7.132639],[106.550613,-7.050667],[106.541275,-6.987306],[106.439529,-6.953972],[106.342277,-6.996861],[106.273331,-6.979556],[106.201805,-6.914889],[106.121246,-6.891583],[106.05397,-6.830361],[105.906525,-6.812417],[105.764946,-6.848805],[105.622307,-6.837555],[105.523194,-6.863167],[105.326469,-6.801278],[105.24028,-6.838778],[105.221138,-6.771222],[105.367279,-6.648445],[105.383919,-6.741944],[105.475525,-6.8115],[105.500503,-6.728305],[105.561386,-6.680444],[105.619446,-6.587111],[105.632889,-6.498611],[105.757278,-6.516389],[105.813972,-6.443472],[105.826469,-6.211528],[105.881386,-6.066194],[105.993363,-5.971305],[106.017777,-5.886667],[106.077278,-5.885417],[106.11058,-6.005389],[106.171997,-6.0315],[106.273613,-5.947639],[106.372085,-6.011361],[106.494858,-6.045611],[106.526947,-6.017944],[106.708725,-6.028111],[106.733391,-6.099917],[106.829666,-6.120806],[106.927559,-6.095343]]],[[[128.614105,1.58525],[128.72319,1.55375],[128.68103,1.466083],[128.751831,1.404389],[128.69136,1.197917],[128.702942,1.070278],[128.380356,0.907861],[128.325363,0.907833],[128.188644,0.785806],[128.302521,0.653944],[128.423172,0.630528],[128.553253,0.568444],[128.649719,0.55475],[128.68544,0.469583],[128.663559,0.359167],[128.801163,0.310111],[128.858643,0.250833],[128.553192,0.322167],[128.476135,0.392528],[128.270782,0.39375],[128.161941,0.455222],[127.957108,0.4805],[127.86486,0.310306],[127.90992,0.279389],[127.918335,0.120417],[127.881279,-0.000694],[127.963386,-0.164972],[127.981362,-0.274917],[128.08667,-0.502111],[128.20816,-0.7045],[128.386215,-0.870972],[128.335861,-0.892889],[128.225357,-0.86],[128.205368,-0.778722],[128.065643,-0.72725],[127.995056,-0.668083],[127.880112,-0.405028],[127.823502,-0.351583],[127.688164,-0.278722],[127.659363,-0.21675],[127.691803,-0.099389],[127.709274,0.077417],[127.683693,0.149139],[127.727753,0.308667],[127.570168,0.420278],[127.526726,0.564917],[127.552055,0.735139],[127.635864,0.821556],[127.486748,0.897333],[127.506836,0.976139],[127.391029,1.059639],[127.425751,1.151278],[127.400139,1.22975],[127.460442,1.318139],[127.533554,1.49775],[127.554695,1.716889],[127.641609,1.830278],[127.671303,1.905167],[127.745583,1.97075],[127.832802,2.089667],[127.953194,2.200194],[128.065857,2.180722],[127.946694,2.028583],[127.948387,1.990389],[127.846474,1.923528],[127.842972,1.824611],[127.92408,1.812194],[128.019913,1.700556],[127.98925,1.6105],[128.034256,1.531222],[127.962334,1.264944],[127.885475,1.148167],[127.814415,1.138722],[127.744972,1.061222],[127.648499,1.023556],[127.622803,0.9765],[127.652946,0.890917],[127.751114,0.811333],[127.835304,0.798667],[127.92247,0.866917],[127.918389,0.944833],[127.978668,1.084417],[128.069,1.1255],[128.145721,1.12225],[128.19989,1.201167],[128.11705,1.289722],[128.167114,1.367972],[128.340164,1.464167],[128.461365,1.555722],[128.505829,1.536],[128.614105,1.58525]]],[[[129.799057,-3.324333],[129.740021,-3.331472],[129.518616,-3.293555],[129.553757,-3.390305],[129.51445,-3.468889],[129.408966,-3.419083],[129.24234,-3.405555],[129.078247,-3.339056],[128.92955,-3.344972],[128.961441,-3.223861],[128.877197,-3.197389],[128.677643,-3.362833],[128.687164,-3.417806],[128.512421,-3.455667],[128.407089,-3.430111],[128.264008,-3.199139],[128.190582,-3.208472],[128.15303,-3.063139],[128.084503,-3.127444],[128.051254,-3.339361],[127.936668,-3.364389],[127.863831,-3.186417],[127.989472,-3.072806],[128.09491,-3.064389],[128.07161,-2.957667],[128.116638,-2.946333],[128.166107,-2.859056],[128.411529,-2.864389],[128.529007,-2.835167],[128.842392,-2.865278],[129.058334,-2.806972],[129.059753,-2.890722],[129.124695,-2.966444],[129.344162,-2.86275],[129.37616,-2.7895],[129.527496,-2.776139],[129.751495,-2.872444],[129.815079,-2.924889],[130.019409,-3.003028],[130.255142,-2.974722],[130.400299,-3.005139],[130.487228,-3.099778],[130.591522,-3.144861],[130.662811,-3.399444],[130.796951,-3.40825],[130.817673,-3.51675],[130.873367,-3.620694],[130.819061,-3.699417],[130.818604,-3.874528],[130.763229,-3.835222],[130.609589,-3.789917],[130.551742,-3.716778],[130.489227,-3.710861],[130.405975,-3.627694],[130.1203,-3.535028],[130.007751,-3.487833],[129.906631,-3.334306],[129.799057,-3.324333]]],[[[117.106499,-9.093889],[117.052948,-9.109333],[116.950333,-9.054389],[116.909279,-9.070861],[116.733414,-8.997167],[116.739975,-8.870916],[116.81253,-8.783444],[116.777557,-8.672028],[116.84597,-8.540916],[116.947639,-8.518194],[117.171303,-8.365139],[117.409447,-8.476444],[117.448608,-8.407111],[117.571335,-8.413333],[117.624809,-8.445111],[117.639442,-8.568111],[117.76236,-8.605056],[117.808281,-8.73],[117.874031,-8.701389],[117.982025,-8.738639],[118.091164,-8.653584],[118.252251,-8.669111],[118.279693,-8.598639],[118.10083,-8.496028],[118.083221,-8.458361],[117.97583,-8.477195],[117.85572,-8.386556],[117.709198,-8.24175],[117.719002,-8.175694],[117.931442,-8.081472],[117.95858,-8.109834],[118.078919,-8.103695],[118.14164,-8.136167],[118.145302,-8.20275],[118.229363,-8.337389],[118.315834,-8.378695],[118.44986,-8.262139],[118.580887,-8.272166],[118.722969,-8.3525],[118.815888,-8.2865],[119.00061,-8.316611],[118.994637,-8.387028],[119.057587,-8.518111],[119.014389,-8.586166],[119.041443,-8.655583],[119.164085,-8.635834],[119.137276,-8.757639],[119.063721,-8.742556],[118.965584,-8.763473],[118.897392,-8.69425],[118.842331,-8.7365],[118.742226,-8.70725],[118.730499,-8.7695],[118.893669,-8.778667],[118.926666,-8.842972],[118.824303,-8.850333],[118.744415,-8.802167],[118.630859,-8.816083],[118.492836,-8.881111],[118.38514,-8.840584],[118.37217,-8.776639],[118.42675,-8.713333],[118.418693,-8.621972],[118.285332,-8.7675],[118.177444,-8.858833],[118.089996,-8.841389],[118.004448,-8.860194],[117.956253,-8.908139],[117.84597,-8.933194],[117.690971,-8.915055],[117.529892,-9.008833],[117.341698,-9.049916],[117.199944,-9.01825],[117.106499,-9.093889]]],[[[120,-8.456583],[120.03492,-8.383667],[120.172142,-8.363861],[120.261139,-8.281584],[120.416084,-8.272333],[120.56414,-8.296889],[120.65847,-8.282389],[120.73822,-8.346778],[120.987167,-8.356889],[120.99678,-8.401222],[121.299721,-8.49825],[121.337692,-8.564667],[121.502945,-8.618195],[121.599357,-8.557806],[121.608612,-8.487223],[121.728447,-8.500889],[121.925804,-8.49425],[122.091194,-8.526917],[122.224281,-8.6275],[122.279198,-8.639833],[122.456665,-8.606167],[122.584503,-8.392528],[122.756363,-8.363611],[122.780052,-8.312861],[122.871918,-8.291972],[122.88533,-8.179277],[122.746086,-8.1995],[122.773918,-8.105695],[122.856636,-8.068194],[122.959305,-8.132833],[122.957054,-8.194278],[123.010696,-8.321222],[122.880943,-8.375972],[122.883392,-8.453139],[122.778252,-8.428361],[122.83033,-8.533472],[122.818726,-8.599472],[122.54464,-8.669723],[122.514053,-8.708055],[122.358803,-8.7465],[122.166946,-8.728833],[122.079559,-8.736305],[121.997864,-8.809111],[121.755974,-8.889389],[121.548027,-8.821889],[121.383553,-8.804194],[121.354362,-8.902416],[121.305969,-8.928695],[121.169357,-8.897528],[120.994552,-8.961028],[120.91314,-8.9335],[120.823364,-8.826139],[120.764809,-8.874139],[120.639137,-8.853056],[120.591469,-8.800555],[120.378219,-8.80175],[120.323753,-8.838778],[120.228889,-8.826972],[120.154472,-8.775167],[119.982223,-8.823472],[119.841774,-8.809],[119.806473,-8.767167],[119.815415,-8.564028],[119.882248,-8.463],[120,-8.456583]]],[[[124.048874,-9.348348],[124.118797,-9.432285],[124.249397,-9.404364],[124.340401,-9.46166],[124.449303,-9.282654],[124.463577,-9.178817],[124.600136,-9.154944],[124.786972,-9.002528],[124.950561,-8.964142],[124.965302,-9.037271],[125.1399,-9.024118],[125.165901,-9.109211],[125.139999,-9.150401],[125.019699,-9.167853],[124.971001,-9.274391],[125.128044,-9.433906],[125.011307,-9.515],[124.973503,-9.648528],[124.836609,-9.741694],[124.742752,-9.874278],[124.523087,-10.022667],[124.485748,-10.104417],[124.347137,-10.169695],[124.16375,-10.149195],[124.088608,-10.174833],[124.011749,-10.271611],[123.848892,-10.341917],[123.693726,-10.373834],[123.525391,-10.332055],[123.482719,-10.226889],[123.521553,-10.175],[123.728386,-10.102667],[123.739693,-10.032166],[123.567947,-10.026527],[123.569336,-9.924723],[123.654442,-9.866278],[123.643166,-9.789778],[123.672028,-9.713],[123.656525,-9.648861],[123.766441,-9.555],[123.78653,-9.496028],[123.85833,-9.476389],[123.981163,-9.336445],[124.048874,-9.348348]]],[[[138.943283,-8.030139],[138.862472,-8.064305],[138.831604,-8.133056],[138.701187,-8.165667],[138.656174,-8.251111],[138.506912,-8.361667],[138.211197,-8.416139],[138.069946,-8.410028],[137.889496,-8.375334],[137.615051,-8.40525],[137.632385,-8.341056],[137.748688,-8.125417],[137.832031,-8],[137.951996,-7.7635],[138.013855,-7.708194],[138.048447,-7.628639],[138.248612,-7.472805],[138.38652,-7.419333],[138.669022,-7.371611],[138.80098,-7.3925],[138.879913,-7.446972],[138.95784,-7.549639],[139.107727,-7.567528],[139.022171,-7.752611],[139.025421,-7.831389],[138.927505,-7.88],[138.943283,-8.030139]]],[[[105.904556,-2.580945],[105.934219,-2.537417],[105.911888,-2.45375],[105.831558,-2.418667],[105.822693,-2.319306],[105.780502,-2.247611],[105.785446,-2.178389],[105.730942,-2.137528],[105.586167,-2.129167],[105.540832,-2.081389],[105.299416,-2.147805],[105.223892,-2.072417],[105.125557,-2.082806],[105.125031,-1.960722],[105.271309,-1.897417],[105.370003,-1.824944],[105.395752,-1.771361],[105.337997,-1.698],[105.462975,-1.563028],[105.592751,-1.545],[105.656891,-1.655944],[105.662971,-1.761056],[105.738891,-1.787361],[105.774277,-1.751222],[105.704918,-1.529472],[105.898666,-1.506028],[106.032059,-1.596167],[106.023087,-1.697556],[106.119392,-1.853028],[106.173668,-1.899611],[106.140473,-1.994861],[106.168442,-2.148639],[106.220223,-2.312528],[106.287476,-2.416806],[106.381859,-2.479278],[106.809281,-2.5815],[106.702583,-2.646611],[106.650864,-2.728861],[106.584969,-2.927028],[106.606362,-2.964944],[106.733749,-3.004444],[106.700363,-3.100917],[106.558586,-3.085583],[106.48867,-3.051472],[106.408142,-2.970889],[106.342667,-2.970778],[106.260582,-2.901917],[106.139191,-2.878222],[106.09536,-2.839583],[105.947052,-2.814111],[105.887055,-2.647889],[105.904556,-2.580945]]],[[[120,-10.040055],[119.872719,-9.928445],[119.712059,-9.871695],[119.57692,-9.77275],[119.473808,-9.744722],[119.408279,-9.791917],[119.345947,-9.758278],[119.189003,-9.756389],[119.036614,-9.680278],[118.938698,-9.568],[118.985001,-9.466972],[119.190475,-9.377528],[119.284805,-9.365556],[119.391083,-9.385555],[119.461807,-9.361527],[119.529861,-9.381889],[119.63514,-9.348222],[119.72728,-9.391111],[119.811554,-9.397305],[119.936058,-9.284945],[120.093803,-9.472694],[120.227775,-9.503056],[120.260246,-9.654667],[120.328476,-9.676],[120.45314,-9.636084],[120.502556,-9.709778],[120.588249,-9.762667],[120.648361,-9.883945],[120.777252,-9.954445],[120.82267,-10.018528],[120.789307,-10.121695],[120.67997,-10.2185],[120.614387,-10.248278],[120.537804,-10.23475],[120.447746,-10.314722],[120.348694,-10.252167],[120.165947,-10.241722],[120.036308,-10.122611],[120,-10.040055]]],[[[126.718475,-3.056806],[126.806084,-3.06325],[126.933083,-3.143778],[126.996445,-3.144222],[127.109779,-3.23875],[127.035637,-3.269611],[127.112137,-3.382778],[127.153526,-3.333306],[127.259751,-3.370306],[127.254219,-3.584722],[127.193863,-3.675861],[127.145531,-3.66025],[127.010056,-3.713667],[126.957642,-3.765917],[126.801056,-3.80225],[126.744751,-3.83975],[126.547363,-3.794389],[126.195526,-3.62025],[126.1315,-3.500083],[126.072914,-3.467583],[126.005921,-3.357556],[126.014526,-3.169583],[126.089142,-3.102944],[126.161636,-3.165583],[126.297996,-3.095056],[126.410774,-3.074194],[126.718475,-3.056806]]],[[[114.599808,-8.136833],[114.614807,-8.123584],[114.820221,-8.192306],[114.983086,-8.179639],[115.11203,-8.083361],[115.182083,-8.059778],[115.448364,-8.15725],[115.565193,-8.231472],[115.718086,-8.400361],[115.588806,-8.516027],[115.373024,-8.576555],[115.181526,-8.745806],[115.213692,-8.832361],[115.090447,-8.838166],[115.167579,-8.723306],[115.068275,-8.595333],[114.907249,-8.465111],[114.746193,-8.398],[114.589165,-8.404528],[114.521027,-8.330111],[114.430725,-8.171638],[114.44986,-8.093778],[114.530861,-8.151417],[114.599808,-8.136833]]],[[[116.5065,-8.832055],[116.577332,-8.897722],[116.481087,-8.926473],[116.296333,-8.905694],[116.173805,-8.917973],[116.170753,-8.873861],[116.005081,-8.905861],[115.95578,-8.858556],[115.841057,-8.819139],[115.85286,-8.734972],[115.936775,-8.774083],[116.05883,-8.7295],[116.082642,-8.616972],[116.03978,-8.44375],[116.184586,-8.340195],[116.290085,-8.240278],[116.380836,-8.213223],[116.653053,-8.290472],[116.726303,-8.35375],[116.671249,-8.5635],[116.630753,-8.611167],[116.5065,-8.832055]]],[[[113.948364,-7.044167],[113.846886,-7.056194],[113.823059,-7.135361],[113.672584,-7.108278],[113.614441,-7.124556],[113.549774,-7.235306],[113.239723,-7.214167],[113.105026,-7.233833],[112.808861,-7.163278],[112.721054,-7.179083],[112.684524,-7.097111],[112.86264,-6.889694],[113.040748,-6.878806],[113.10997,-6.89175],[113.804611,-6.882528],[113.900864,-6.861722],[113.987335,-6.877972],[114.113358,-6.944861],[114.076332,-6.998111],[113.948364,-7.044167]]],[[[122.732109,-5.242694],[122.740753,-5.167305],[122.805115,-5.037194],[122.855858,-4.763472],[122.831749,-4.670861],[122.906281,-4.456111],[122.987663,-4.392528],[123.136696,-4.479722],[123.204002,-4.607028],[123.215027,-4.827722],[123.14325,-4.719945],[123.011307,-4.808833],[123.012276,-4.899722],[122.960304,-4.991028],[122.977249,-5.105889],[123.071304,-5.149583],[123.144142,-5.229055],[123.224472,-5.2745],[123.129028,-5.388389],[123.024475,-5.431139],[122.977859,-5.387],[122.85611,-5.476111],[122.901863,-5.557528],[122.818665,-5.689583],[122.753914,-5.645805],[122.648331,-5.701167],[122.562363,-5.494639],[122.645386,-5.445861],[122.627724,-5.402278],[122.732109,-5.242694]]],[[[107.624863,-2.606028],[107.651031,-2.566806],[107.759003,-2.564361],[107.821808,-2.535833],[108.083443,-2.615556],[108.185143,-2.688972],[108.288223,-2.863111],[108.233582,-2.930972],[108.161636,-3.155028],[107.991837,-3.247417],[107.964996,-3.187167],[107.854141,-3.064278],[107.828392,-3.155472],[107.673553,-3.204333],[107.589859,-3.106861],[107.559975,-3.005528],[107.606613,-2.930139],[107.594444,-2.862111],[107.62014,-2.751639],[107.624863,-2.606028]]],[[[97.395386,1.494194],[97.485695,1.445417],[97.600388,1.307056],[97.674164,1.181972],[97.797752,1.133],[97.832779,1.0715],[97.905891,1.027722],[97.934555,0.94875],[97.890198,0.888028],[97.889275,0.631722],[97.833748,0.573972],[97.706497,0.564806],[97.622276,0.802361],[97.472084,0.934833],[97.396752,0.948694],[97.388809,1.014611],[97.253807,1.245667],[97.141609,1.368111],[97.270027,1.416694],[97.395386,1.494194]]],[[[98.847191,-0.945778],[98.919525,-0.946472],[98.924667,-1.068028],[98.983719,-1.117389],[99.082138,-1.327444],[99.198692,-1.533972],[99.210114,-1.609445],[99.287582,-1.644917],[99.282944,-1.763278],[99.229446,-1.802694],[99.153419,-1.785611],[99.097862,-1.819694],[98.861725,-1.686972],[98.790581,-1.532222],[98.64328,-1.326083],[98.583809,-1.208667],[98.643722,-1.103417],[98.650002,-0.986917],[98.847191,-0.945778]]],[[[131.163422,-7.661722],[131.246246,-7.467945],[131.38678,-7.346611],[131.43219,-7.331639],[131.478088,-7.237444],[131.526993,-7.228917],[131.537918,-7.133972],[131.647919,-7.110833],[131.741669,-7.214556],[131.653671,-7.223583],[131.67247,-7.472889],[131.6268,-7.637805],[131.554367,-7.714889],[131.503326,-7.722306],[131.464477,-7.805861],[131.393799,-7.839083],[131.284271,-8.010861],[131.109329,-7.987945],[131.119644,-7.894945],[131.08667,-7.844611],[131.133743,-7.784695],[131.109299,-7.697111],[131.163422,-7.661722]]],[[[130.775772,-0.177833],[130.677002,-0.074083],[130.614304,-0.120528],[130.713394,-0.237389],[130.727356,-0.295167],[130.879257,-0.307056],[130.912826,-0.405639],[130.807495,-0.451639],[130.718338,-0.446333],[130.669922,-0.300028],[130.575668,-0.3285],[130.494644,-0.261111],[130.322586,-0.276556],[130.324005,-0.186778],[130.283966,-0.106361],[130.402969,-0.113889],[130.524643,-0.053889],[130.620163,-0.059194],[130.785171,-0.007694],[130.974136,-0.06025],[131.123749,-0.072778],[131.203247,-0.147444],[131.294785,-0.166],[131.323471,-0.277889],[131.241363,-0.392472],[131.098938,-0.331444],[130.984726,-0.371306],[130.934448,-0.35225],[130.859085,-0.242889],[130.798004,-0.244556],[130.775772,-0.177833]]],[[[122.707108,-5],[122.636917,-5.058889],[122.586556,-5.182389],[122.643974,-5.261139],[122.644058,-5.344167],[122.547249,-5.436361],[122.382446,-5.366472],[122.275223,-5.382916],[122.268944,-5.308583],[122.313835,-5.234305],[122.32367,-5.107139],[122.388443,-5.0815],[122.375137,-4.946861],[122.315414,-4.834944],[122.367691,-4.740917],[122.451164,-4.737472],[122.549248,-4.690583],[122.598831,-4.632861],[122.699303,-4.612222],[122.749359,-4.788],[122.761864,-4.965445],[122.707108,-5]]],[[[124.395416,-1.660306],[124.60511,-1.634222],[124.95211,-1.701333],[125.084694,-1.760722],[125.102142,-1.699139],[125.292114,-1.740667],[125.317833,-1.789694],[125.295082,-1.884389],[125.131081,-1.873028],[125.019112,-1.896],[125.005997,-1.944944],[124.774414,-1.911056],[124.689552,-1.969472],[124.446808,-2.019833],[124.333168,-1.882222],[124.369308,-1.6855],[124.395416,-1.660306]]],[[[125.810219,-7.844305],[125.872139,-7.797111],[125.944252,-7.663583],[126.183693,-7.723055],[126.238472,-7.68175],[126.317581,-7.693056],[126.469887,-7.586611],[126.638031,-7.567611],[126.720863,-7.664306],[126.807137,-7.657639],[126.842583,-7.735028],[126.719276,-7.744889],[126.549721,-7.8215],[126.472389,-7.967916],[126.418556,-7.929111],[126.170944,-7.921583],[126.066719,-7.885695],[125.943832,-7.912194],[125.86142,-7.979111],[125.810219,-7.844305]]],[[[127.666496,-1.338833],[127.778747,-1.378389],[127.826309,-1.436278],[127.918335,-1.444194],[128.056244,-1.568833],[128.108063,-1.563917],[128.160721,-1.642],[128.084854,-1.728556],[127.921501,-1.692472],[127.697914,-1.698028],[127.652748,-1.734861],[127.489441,-1.73225],[127.39003,-1.668167],[127.406723,-1.4755],[127.480888,-1.444417],[127.56961,-1.3655],[127.666496,-1.338833]]],[[[135.751861,-0.816222],[135.636444,-0.8855],[135.564865,-0.810306],[135.508469,-0.815167],[135.403702,-0.728917],[135.37291,-0.638056],[135.611801,-0.677333],[135.652466,-0.668222],[135.765534,-0.750111],[135.833618,-0.696139],[135.883667,-0.715306],[135.941696,-0.799694],[136.073837,-0.873528],[136.115662,-0.972639],[136.186752,-1.066417],[136.261032,-1.045306],[136.351562,-1.135972],[136.250137,-1.189556],[136.142975,-1.217056],[136.046722,-1.166667],[135.957855,-1.160694],[135.87497,-1.189889],[135.819672,-1.127667],[135.816284,-1.015917],[135.751861,-0.816222]]],[[[134.18808,-6.427805],[134.111053,-6.410111],[134.126968,-6.26975],[134.087891,-6.168889],[134.213531,-6.216],[134.264145,-6.260611],[134.318604,-6.37975],[134.400589,-6.395167],[134.497635,-6.505306],[134.519272,-6.568833],[134.490387,-6.647222],[134.397659,-6.724139],[134.322143,-6.854528],[134.174332,-6.914834],[134.147354,-6.842861],[134.090195,-6.838],[134.048782,-6.764306],[134.077835,-6.700639],[134.0952,-6.493889],[134.192001,-6.481194],[134.18808,-6.427805]]],[[[123.311501,-1.304972],[123.379723,-1.219417],[123.492752,-1.270444],[123.551865,-1.329972],[123.507584,-1.456],[123.402969,-1.529361],[123.3535,-1.503611],[123.328026,-1.423972],[123.258057,-1.446889],[123.256279,-1.609417],[123.117447,-1.609944],[123.181748,-1.517583],[123.14611,-1.301806],[123.116806,-1.321889],[123.005501,-1.511722],[122.911942,-1.605528],[122.793083,-1.477361],[122.82753,-1.284444],[122.897781,-1.191],[122.975975,-1.213],[123.10125,-1.165556],[123.181831,-1.157861],[123.241364,-1.227778],[123.183724,-1.315083],[123.235947,-1.383806],[123.311501,-1.304972]]],[[[128.685883,2.500111],[128.683701,2.409444],[128.61203,2.209333],[128.498947,2.058861],[128.287338,2.028805],[128.249161,2.096361],[128.243057,2.244778],[128.29866,2.445222],[128.453385,2.594667],[128.522415,2.580833],[128.575943,2.638389],[128.634339,2.533444],[128.685883,2.500111]]],[[[135.79155,-1.740722],[135.717422,-1.693528],[135.479584,-1.67825],[135.441727,-1.605528],[135.900894,-1.638889],[136.068832,-1.659111],[136.196945,-1.655333],[136.36647,-1.716417],[136.453812,-1.701778],[136.590881,-1.730667],[136.798386,-1.741056],[136.843201,-1.821111],[136.72792,-1.812417],[136.653198,-1.865583],[136.471924,-1.892695],[136.346695,-1.863083],[136.271301,-1.892389],[136.07019,-1.848389],[135.889664,-1.755194],[135.79155,-1.740722]]],[[[125.1315,-8.320278],[125.055832,-8.358084],[124.927696,-8.35975],[124.79258,-8.4015],[124.657692,-8.391417],[124.534332,-8.444528],[124.428558,-8.457444],[124.333443,-8.397139],[124.412529,-8.296556],[124.390419,-8.223889],[124.444,-8.149472],[124.514946,-8.119555],[124.640808,-8.171638],[124.767914,-8.145695],[124.812775,-8.166528],[125.081528,-8.151277],[125.131531,-8.250334],[125.1315,-8.320278]]],[[[116.22908,-3.247444],[116.246666,-3.380056],[116.308723,-3.452417],[116.268082,-3.5335],[116.300308,-3.726],[116.269249,-3.908528],[116.148224,-4.033639],[116.041863,-4.023944],[116.077057,-3.938306],[116.074669,-3.818361],[116.004196,-3.687806],[116.113586,-3.314611],[116.22908,-3.247444]]],[[[130,-2.013195],[129.85109,-1.978972],[129.725586,-1.904472],[129.745285,-1.856111],[130.050384,-1.732639],[130.337753,-1.7395],[130.437271,-1.830583],[130.249619,-2.053306],[130.115753,-2.058222],[130,-2.013195]]],[[[127.603081,-0.776056],[127.469475,-0.834972],[127.433586,-0.754361],[127.473831,-0.647056],[127.40583,-0.633778],[127.297859,-0.522056],[127.290032,-0.445056],[127.365608,-0.324917],[127.44986,-0.426361],[127.483528,-0.351472],[127.561249,-0.322472],[127.692558,-0.476889],[127.597862,-0.609972],[127.651581,-0.709139],[127.79847,-0.695222],[127.866058,-0.727528],[127.885361,-0.816639],[127.819969,-0.873472],[127.676415,-0.856167],[127.603081,-0.776056]]],[[[96.315613,2.403389],[96.229309,2.438056],[96.080887,2.562833],[96.013359,2.585111],[95.94342,2.556333],[95.810081,2.635806],[95.697029,2.736056],[95.800415,2.919694],[95.901444,2.886333],[95.906525,2.825139],[96.02317,2.757167],[96.094528,2.756305],[96.253891,2.583917],[96.34317,2.553667],[96.469498,2.452667],[96.498139,2.370417],[96.440697,2.327],[96.320831,2.351667],[96.315613,2.403389]]],[[[134.712189,-6.029028],[134.775452,-6.087361],[134.720535,-6.299417],[134.668777,-6.340611],[134.546554,-6.347639],[134.532532,-6.323389],[134.392746,-6.228944],[134.341034,-6.215806],[134.265198,-6.132278],[134.282227,-6.043889],[134.409119,-6.02475],[134.526108,-5.917611],[134.590424,-5.943],[134.655335,-5.945611],[134.712189,-6.029028]]],[[[108.278557,3.661444],[108.155441,3.629694],[108.09008,3.689778],[108.193169,3.782778],[108.057747,3.840361],[108.016777,3.8855],[107.992531,4.001111],[108.024559,4.055111],[108.159416,4.156722],[108.235611,4.1425],[108.353805,3.995694],[108.397331,3.843833],[108.278557,3.661444]]],[[[130.714951,-1.1035],[130.641327,-0.969083],[130.916367,-0.898361],[130.925949,-0.941056],[131.044784,-0.933556],[131.079743,-1.024361],[131.032578,-1.205694],[131.042618,-1.245861],[130.960831,-1.366722],[130.86734,-1.34075],[130.741867,-1.221611],[130.714951,-1.1035]]],[[[134.261215,-5.751806],[134.325744,-5.720611],[134.405869,-5.632722],[134.427475,-5.572639],[134.519104,-5.556611],[134.529892,-5.624805],[134.538895,-5.644805],[134.563171,-5.653472],[134.611191,-5.722806],[134.631027,-5.710306],[134.661392,-5.730111],[134.690079,-5.729667],[134.719254,-5.743889],[134.736359,-5.73925],[134.712891,-5.807139],[134.764358,-5.888084],[134.593201,-5.937722],[134.520172,-5.913445],[134.410965,-6.018306],[134.297135,-6.015945],[134.288055,-5.922722],[134.363998,-5.841472],[134.368271,-5.767],[134.261215,-5.751806]]],[[[102.76078,1.001056],[102.891281,0.939333],[103.054581,0.816361],[103.056389,0.710028],[102.998108,0.683889],[102.923889,0.773111],[102.864166,0.7865],[102.645141,0.783556],[102.57547,0.760417],[102.44178,0.819778],[102.411636,0.878694],[102.507004,0.936194],[102.462303,1.069639],[102.488556,1.128111],[102.620834,1.044167],[102.626083,0.987389],[102.76078,1.001056]]],[[[101.567947,2.038778],[101.662308,2.118056],[101.714775,2.087083],[101.782585,1.986861],[101.741531,1.766056],[101.624138,1.686194],[101.455887,1.723472],[101.388031,1.898611],[101.402916,2.009833],[101.474777,2.061833],[101.567947,2.038778]]],[[[123.917725,-8.244361],[123.750664,-8.292694],[123.664024,-8.434806],[123.609024,-8.413944],[123.546387,-8.476334],[123.581642,-8.531445],[123.512138,-8.570361],[123.449471,-8.533028],[123.378441,-8.586861],[123.194969,-8.529361],[123.323669,-8.411583],[123.456474,-8.349112],[123.541748,-8.376361],[123.766892,-8.174556],[123.917725,-8.244361]]],[[[123.387413,-10.451305],[123.351135,-10.553833],[123.41597,-10.627472],[123.39933,-10.69275],[123.324944,-10.686639],[123.242805,-10.74325],[123.189942,-10.83925],[122.967476,-10.866361],[122.930946,-10.910417],[122.824333,-10.933333],[122.796082,-10.807472],[122.848526,-10.760167],[123.016525,-10.739667],[123.140335,-10.657166],[123.253166,-10.524333],[123.387413,-10.451305]]],[[[125.325333,-1.839806],[125.363083,-1.781944],[125.496414,-1.818972],[125.538696,-1.790528],[125.698555,-1.827806],[125.743805,-1.806694],[125.956474,-1.791111],[126.200607,-1.805806],[126.246498,-1.875528],[126.058975,-1.881111],[125.912025,-1.930611],[125.830528,-1.891889],[125.776138,-1.921472],[125.434364,-1.932222],[125.429642,-1.885306],[125.325333,-1.839806]]],[[[104.317108,1.172861],[104.411362,1.197667],[104.539971,1.174306],[104.640419,1.106528],[104.665558,1.040667],[104.613335,0.82875],[104.563499,0.810694],[104.477028,0.848944],[104.419472,0.951556],[104.462303,1.015139],[104.270943,0.996611],[104.222275,1.064694],[104.317108,1.172861]]],[[[102.361611,1.340222],[102.490753,1.227139],[102.443779,1.055694],[102.489723,0.948222],[102.40242,0.907222],[102.287224,0.990139],[102.241752,1.100611],[102.256836,1.17775],[102.210358,1.265472],[102.215614,1.407917],[102.293251,1.409917],[102.361611,1.340222]]],[[[109.583275,-1.251389],[109.459251,-1.304306],[109.415916,-1.271333],[109.44072,-1.174778],[109.440941,-1.018639],[109.477302,-0.976639],[109.622665,-0.979639],[109.68425,-1.017222],[109.756165,-1.004],[109.767387,-1.157639],[109.583275,-1.251389]]],[[[101.99411,1.608],[102.374085,1.544056],[102.464889,1.518417],[102.501221,1.466778],[102.513641,1.244722],[102.407303,1.315028],[102.31086,1.415611],[102.114891,1.459083],[102.035416,1.531778],[101.99411,1.608]]],[[[102.896164,1.119889],[103.001137,1.073222],[103.172836,0.883333],[103.086975,0.820806],[102.89386,0.95725],[102.741279,1.033528],[102.695251,1.110472],[102.758888,1.156361],[102.896164,1.119889]]],[[[100.264191,-2.839361],[100.469055,-3.022639],[100.460197,-3.124278],[100.390976,-3.207167],[100.32225,-3.120778],[100.183914,-2.999222],[100.175361,-2.799278],[100.264191,-2.839361]]],[[[104.504333,0],[104.604721,-0.018278],[104.810081,-0.212056],[104.85067,-0.163389],[104.932167,-0.267583],[104.846527,-0.325528],[104.694862,-0.210444],[104.522613,-0.280889],[104.421753,-0.234694],[104.500031,-0.133944],[104.504333,0]]],[[[121.888885,-5.056334],[121.99247,-5.155167],[122.048332,-5.171361],[122.046081,-5.456139],[121.94561,-5.454389],[121.797501,-5.277528],[121.84092,-5.108472],[121.888885,-5.056334]]],[[[126.859337,4.486722],[126.852501,4.386361],[126.907608,4.309861],[126.886108,4.221056],[126.804169,4.146833],[126.803253,4.018861],[126.672142,4.001139],[126.800888,4.243306],[126.728058,4.269889],[126.685303,4.348222],[126.73822,4.462972],[126.739281,4.549305],[126.859337,4.486722]]],[[[127.994163,-3.780944],[127.935524,-3.783361],[127.911781,-3.686305],[128.017608,-3.594111],[128.157471,-3.593917],[128.244721,-3.502194],[128.341141,-3.519278],[128.276581,-3.628222],[128.285217,-3.703667],[128.206558,-3.752139],[128.090164,-3.712278],[127.994163,-3.780944]]],[[[104.335609,-0.391806],[104.413498,-0.4085],[104.43383,-0.350167],[104.528748,-0.380528],[104.591973,-0.473778],[104.531502,-0.547],[104.499748,-0.653556],[104.430359,-0.591306],[104.34272,-0.629139],[104.317169,-0.548972],[104.251663,-0.502556],[104.277275,-0.407278],[104.335609,-0.391806]]],[[[124.29689,-8.178611],[124.291832,-8.329416],[124.196892,-8.414778],[124.196556,-8.465222],[124.134163,-8.537778],[124.051834,-8.548611],[124.024086,-8.424666],[123.96347,-8.340195],[124.046448,-8.294695],[124.116806,-8.348333],[124.234306,-8.198694],[124.29689,-8.178611]]],[[[123.094559,-4.251528],[122.991249,-4.195139],[122.940582,-4.099861],[123.006584,-3.983972],[123.087974,-4.019111],[123.208916,-4.014139],[123.252724,-4.113722],[123.146362,-4.245306],[123.094559,-4.251528]]],[[[138.848755,-8.384778],[138.59906,-8.357667],[138.701645,-8.232],[138.71405,-8.172584],[138.851196,-8.136111],[138.882355,-8.249639],[138.954895,-8.333694],[138.927078,-8.386416],[138.848755,-8.384778]]],[[[120.483833,-5.769917],[120.520027,-5.839694],[120.567886,-6.057972],[120.52858,-6.190028],[120.473862,-6.280389],[120.438332,-6.171278],[120.459969,-6.097861],[120.442024,-5.961639],[120.455109,-5.805],[120.483833,-5.769917]]],[[[129.660217,-8],[129.582748,-7.901722],[129.590973,-7.819056],[129.673446,-7.78525],[129.850357,-7.839944],[129.860535,-7.906722],[129.776474,-8.052389],[129.715835,-8.054916],[129.660217,-8]]],[[[100,-2.676445],[99.966003,-2.625333],[99.962944,-2.513083],[100.163109,-2.64625],[100.22139,-2.751945],[100.135918,-2.813333],[100.010223,-2.822944],[100,-2.676445]]],[[[99.648529,-2.058111],[99.690888,-2.085972],[99.747192,-2.23625],[99.841751,-2.340556],[99.737167,-2.350028],[99.526558,-2.185889],[99.532806,-2.081167],[99.577835,-2.028472],[99.648529,-2.058111]]],[[[125.916725,-1.973111],[125.990112,-2.016472],[125.95575,-2.143389],[125.970558,-2.203417],[126.077835,-2.446167],[126.034615,-2.483167],[125.946442,-2.388778],[125.936668,-2.298833],[125.881668,-2.207472],[125.856667,-2.05175],[125.916725,-1.973111]]],[[[132.841217,-5.997667],[132.877029,-5.847028],[132.928116,-5.777667],[132.953781,-5.651889],[133.00795,-5.645805],[133.080643,-5.389555],[133.125748,-5.279555],[133.176697,-5.347722],[133.129746,-5.55225],[132.961136,-5.742694],[132.930328,-5.884583],[132.841217,-5.997667]]],[[[125.449997,3.743],[125.506081,3.728945],[125.583031,3.629028],[125.578888,3.581167],[125.656059,3.514611],[125.674362,3.444417],[125.607475,3.381361],[125.483139,3.489556],[125.481499,3.606722],[125.394531,3.684528],[125.449997,3.743]]],[[[123.327141,-8.275222],[123.291084,-8.392195],[122.989723,-8.403084],[123.024719,-8.313278],[123.141747,-8.237223],[123.241692,-8.231055],[123.327141,-8.275222]]],[[[127.223724,-0.5025],[127.114723,-0.523917],[127.102997,-0.39875],[127.143059,-0.26625],[127.236969,-0.253111],[127.280388,-0.377778],[127.270889,-0.466667],[127.223724,-0.5025]]],[[[98.377525,-0.35],[98.426941,-0.304028],[98.509781,-0.365056],[98.494858,-0.502472],[98.413193,-0.55675],[98.324806,-0.532833],[98.359642,-0.473889],[98.377525,-0.35]]],[[[130.789368,-0.825222],[130.846863,-0.867444],[130.622131,-0.920667],[130.456634,-0.903056],[130.453079,-0.827917],[130.542633,-0.852806],[130.6362,-0.809639],[130.789368,-0.825222]]],[[[115.464722,-6.929917],[115.374725,-6.904861],[115.384224,-6.995389],[115.282723,-7.011278],[115.207581,-6.939528],[115.246475,-6.825972],[115.399612,-6.834361],[115.559807,-6.907055],[115.464722,-6.929917]]],[[[132.769836,-5.757889],[132.807495,-5.850306],[132.658691,-5.905639],[132.682526,-5.809111],[132.673187,-5.727083],[132.73291,-5.669833],[132.769836,-5.757889]]],[[[104.140976,1.172639],[104.136025,1.025472],[104.043556,0.975028],[103.916115,1.035972],[103.994835,1.119139],[104.013191,1.176472],[104.140976,1.172639]]],[[[102.154587,-5.288111],[102.388664,-5.387389],[102.368942,-5.471222],[102.252999,-5.465111],[102.096947,-5.358806],[102.154587,-5.288111]]],[[[122,-10.471556],[121.959892,-10.549916],[121.839943,-10.624945],[121.751083,-10.610945],[121.725639,-10.556583],[121.844025,-10.492723],[121.909225,-10.426528],[122,-10.471556]]],[[[134.159943,-6.171834],[134.112579,-6.096445],[134.121369,-6.036722],[134.193695,-6.034139],[134.228775,-6.119306],[134.297439,-6.1735],[134.330368,-6.221611],[134.360809,-6.225833],[134.414383,-6.278],[134.342468,-6.338083],[134.206161,-6.188111],[134.159943,-6.171834]]],[[[134.403549,-6.294056],[134.455063,-6.275583],[134.589478,-6.382028],[134.600723,-6.437778],[134.555725,-6.525],[134.35434,-6.346833],[134.403549,-6.294056]]],[[[128.058304,-8.223473],[127.865913,-8.216556],[127.788475,-8.177111],[127.789947,-8.10125],[127.940003,-8.145083],[128.102646,-8.138556],[128.058304,-8.223473]]],[[[131.076477,-8.112056],[131.081528,-8.178805],[130.985581,-8.237166],[130.931442,-8.195528],[131.030747,-8.073],[131.076477,-8.112056]]],[[[98.422447,-0.199028],[98.380165,-0.149139],[98.330025,-0.002861],[98.40583,-0.011389],[98.46064,-0.097194],[98.48375,-0.212611],[98.546081,-0.266833],[98.532471,-0.35075],[98.422447,-0.199028]]],[[[134.995804,-1.037056],[134.95964,-1.124306],[134.900635,-1.140833],[134.802002,-1.028333],[134.850662,-0.930583],[134.954193,-0.965889],[134.995804,-1.037056]]],[[[117.520691,-8.388611],[117.482498,-8.194917],[117.564552,-8.147388],[117.667526,-8.153556],[117.576889,-8.335611],[117.520691,-8.388611]]],[[[119.568886,-8.487972],[119.565109,-8.587361],[119.503441,-8.576777],[119.414665,-8.726167],[119.393913,-8.564055],[119.471443,-8.483833],[119.568886,-8.487972]]],[[[98.553169,0.089472],[98.526886,0.136056],[98.615753,0.179028],[98.719498,0.158222],[98.797226,0.17225],[98.853332,0.11075],[98.751946,0.071472],[98.553169,0.089472]]],[[[103.309555,0.559333],[103.282471,0.5215],[103.18042,0.495611],[103.141029,0.561472],[103.170669,0.659389],[103.216469,0.700972],[103.276085,0.664611],[103.309555,0.559333]]],[[[103.502998,0.702472],[103.466141,0.630333],[103.411919,0.642556],[103.353302,0.789611],[103.379997,0.881806],[103.48497,0.795361],[103.502998,0.702472]]],[[[134.608719,-5.715889],[134.564285,-5.646945],[134.542999,-5.641833],[134.52803,-5.564972],[134.709717,-5.593417],[134.760559,-5.665611],[134.709747,-5.736278],[134.680496,-5.719695],[134.659836,-5.7255],[134.62233,-5.705639],[134.608719,-5.715889]]],[[[134.488495,-5.423361],[134.6212,-5.416222],[134.696915,-5.528667],[134.674866,-5.562972],[134.500702,-5.539222],[134.488495,-5.423361]]],[[[123.493942,-1.526639],[123.618614,-1.625167],[123.597084,-1.709917],[123.48539,-1.711556],[123.472138,-1.654],[123.493942,-1.526639]]],[[[117.895279,4.167695],[117.921142,4.064139],[117.858559,4.034083],[117.679558,4.165972],[117.895279,4.167695]]],[[[117.610581,3.280389],[117.515808,3.386389],[117.550941,3.441055],[117.659363,3.415778],[117.610581,3.280389]]],[[[138.680862,-6.633722],[138.784561,-6.684166],[138.804993,-6.772528],[138.656952,-6.717556],[138.680862,-6.633722]]],[[[121.653198,-0.571028],[121.655502,-0.525111],[121.730553,-0.443833],[121.859581,-0.410167],[121.90683,-0.44125],[121.87989,-0.531111],[121.724113,-0.493389],[121.653198,-0.571028]]],[[[117.621025,4.132111],[117.665726,4.144],[117.746109,4.064917],[117.686417,3.96775],[117.597664,4.020139],[117.621025,4.132111]]],[[[127.215889,-0.792139],[127.160278,-0.730167],[127.244835,-0.657778],[127.288445,-0.692417],[127.280113,-0.813056],[127.215889,-0.792139]]],[[[122.899193,-8.615778],[122.872086,-8.526944],[123.009056,-8.452805],[123.134109,-8.428473],[123.141998,-8.466167],[122.972885,-8.513583],[122.899193,-8.615778]]],[[[131.88327,-7.103139],[131.932724,-7.108194],[131.988113,-7.212361],[131.720886,-7.132],[131.88327,-7.103139]]],[[[116.323196,-3.559833],[116.359169,-3.428833],[116.430496,-3.418],[116.395302,-3.625917],[116.323196,-3.559833]]],[[[123.385246,-10.14825],[123.467751,-10.191278],[123.401108,-10.247111],[123.407608,-10.327917],[123.29322,-10.307056],[123.385246,-10.14825]]],[[[97.119858,2.228778],[97.298859,2.228555],[97.360084,2.097306],[97.308777,2.063389],[97.257858,2.137306],[97.119858,2.228778]]],[[[106.785057,-2.908889],[106.904114,-2.940305],[106.87439,-3.032167],[106.820831,-3.033695],[106.711891,-2.963778],[106.785057,-2.908889]]],[[[105.785774,2.901111],[105.696167,2.878389],[105.715805,2.964028],[105.814614,2.994028],[105.785774,2.901111]]],[[[115.611191,-8.805778],[115.532249,-8.801194],[115.445473,-8.725445],[115.497528,-8.675611],[115.568001,-8.673972],[115.627976,-8.748195],[115.611191,-8.805778]]],[[[119.625359,-8.790778],[119.621559,-8.613667],[119.720726,-8.626528],[119.732475,-8.754778],[119.625359,-8.790778]]],[[[128.631271,-7.220305],[128.538132,-7.169055],[128.592361,-7.069],[128.691086,-7.109445],[128.631271,-7.220305]]],[[[112.609444,-5.864],[112.569611,-5.812778],[112.627724,-5.733278],[112.700058,-5.735667],[112.732086,-5.7915],[112.702835,-5.849778],[112.609444,-5.864]]],[[[128.465088,-3.622028],[128.399994,-3.642722],[128.409363,-3.531333],[128.504089,-3.519194],[128.557526,-3.558889],[128.529968,-3.62175],[128.465088,-3.622028]]],[[[121.872864,-0.358806],[121.957001,-0.318],[122.047417,-0.339667],[122.039917,-0.418611],[121.903473,-0.429972],[121.872864,-0.358806]]],[[[108.939857,-1.574639],[108.949585,-1.639167],[108.865196,-1.673861],[108.812332,-1.571806],[108.902695,-1.546083],[108.939857,-1.574639]]],[[[127.339058,-7.645389],[127.363197,-7.504111],[127.486275,-7.524],[127.480835,-7.582083],[127.339058,-7.645389]]],[[[128.654495,-3.615944],[128.546921,-3.530833],[128.615311,-3.508833],[128.654495,-3.615944]]],[[[120.759415,-7.138916],[120.623024,-7.121972],[120.672943,-7.048028],[120.759415,-7.138916]]],[[[134.749664,-6.613444],[134.679916,-6.766278],[134.637726,-6.700167],[134.679977,-6.585805],[134.749664,-6.613444]]],[[[119.069115,-8.258972],[119.009613,-8.221139],[119.052582,-8.12875],[119.130333,-8.195],[119.069115,-8.258972]]],[[[133.617813,-4.308167],[133.540833,-4.235389],[133.445923,-4.248111],[133.318665,-4.146167],[133.53894,-4.215583],[133.617813,-4.308167]]],[[[104.099136,0.919556],[104.266609,0.83675],[104.172997,0.786333],[104.099136,0.919556]]],[[[125.527641,-8.300917],[125.506889,-8.268889],[125.625809,-8.140972],[125.64753,-8.17075],[125.586418,-8.32025],[125.527641,-8.300917]]],[[[123.523697,-5.306111],[123.578247,-5.246305],[123.63797,-5.288417],[123.632668,-5.360389],[123.574143,-5.372111],[123.523697,-5.306111]]],[[[129.731476,-1.2065],[129.757477,-1.174472],[129.876755,-1.1515],[129.96608,-1.177361],[129.843369,-1.249306],[129.731476,-1.2065]]],[[[127.744942,-3.247278],[127.639419,-3.215861],[127.720337,-3.154583],[127.788086,-3.174528],[127.744942,-3.247278]]],[[[108.777252,2.891111],[108.890304,2.992389],[108.879944,2.892694],[108.827278,2.845556],[108.777252,2.891111]]],[[[114.380218,-7.191861],[114.307892,-7.162722],[114.278305,-7.079167],[114.364998,-7.082056],[114.380218,-7.191861]]],[[[103.446831,0.974056],[103.341583,1.010444],[103.320389,1.067278],[103.363586,1.124278],[103.432999,1.036833],[103.446831,0.974056]]],[[[127.996666,-2.942694],[127.912529,-3.033583],[127.876503,-2.959556],[127.922859,-2.922222],[127.996666,-2.942694]]],[[[131.659027,-1.541389],[131.592804,-1.464222],[131.715302,-1.432667],[131.724274,-1.513083],[131.659027,-1.541389]]],[[[104.482887,0.239917],[104.604553,0.1535],[104.554916,0.126972],[104.482887,0.239917]]],[[[95.344391,5.793944],[95.25486,5.843861],[95.333054,5.892556],[95.344391,5.793944]]],[[[134.793533,-6.438722],[134.788773,-6.382972],[134.840301,-6.284056],[134.895828,-6.319667],[134.835419,-6.471889],[134.793533,-6.438722]]],[[[117.828056,3.477306],[117.760109,3.53425],[117.810364,3.589583],[117.865166,3.528722],[117.828056,3.477306]]],[[[127.453392,0.713333],[127.440003,0.649028],[127.357918,0.682306],[127.394165,0.755083],[127.453392,0.713333]]],[[[128.232635,-8.2725],[128.081558,-8.267917],[128.095886,-8.219472],[128.201446,-8.203083],[128.232635,-8.2725]]],[[[107.386002,-2.884417],[107.478302,-2.834417],[107.477219,-2.913333],[107.386002,-2.884417]]],[[[128.846222,-8.221194],[128.952561,-8.18625],[128.99617,-8.267805],[128.846222,-8.221194]]],[[[127.621308,-3.365056],[127.503197,-3.324805],[127.579559,-3.270444],[127.621308,-3.365056]]],[[[127.324974,0.749139],[127.28672,0.786583],[127.320915,0.866278],[127.37928,0.832333],[127.324974,0.749139]]],[[[134.660721,-6.546805],[134.634674,-6.472084],[134.686142,-6.440778],[134.751694,-6.516944],[134.660721,-6.546805]]],[[[131.429199,-4.078028],[131.366028,-3.977972],[131.421524,-3.95675],[131.429199,-4.078028]]]]},"properties":{"name":"印度尼西亚","name_en":"INDONESIA","id":"IDN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[166.77417,-15],[166.808243,-15.159388],[166.932282,-15.155583],[166.974976,-15.080916],[166.983978,-14.937195],[167.041687,-14.936361],[167.066605,-15.083611],[167.154144,-15.176861],[167.175659,-15.368444],[167.236618,-15.525556],[167.177444,-15.513361],[167.081558,-15.602639],[166.908951,-15.587944],[166.831085,-15.666583],[166.702743,-15.529361],[166.619751,-15.388223],[166.655411,-15.240611],[166.619721,-15.152028],[166.598389,-15.007527],[166.524979,-14.834861],[166.561005,-14.652472],[166.611114,-14.629945],[166.680359,-14.767667],[166.738327,-14.831611],[166.77417,-15]]],[[[167.828522,-16.476723],[167.714249,-16.518639],[167.597275,-16.493584],[167.582245,-16.552584],[167.459717,-16.572527],[167.442978,-16.481001],[167.382477,-16.372917],[167.378006,-16.189194],[167.32753,-16.114471],[167.250443,-16.16939],[167.152771,-16.087139],[167.181747,-16],[167.167221,-15.925972],[167.212784,-15.880639],[167.318497,-15.940695],[167.400162,-16.023666],[167.383697,-16.067167],[167.495529,-16.165667],[167.591385,-16.221527],[167.740753,-16.3445],[167.828522,-16.476723]]],[[[168.405868,-17.829971],[168.313217,-17.773001],[168.249222,-17.691805],[168.159363,-17.713861],[168.284775,-17.543751],[168.449173,-17.539972],[168.506226,-17.642056],[168.591781,-17.702167],[168.558884,-17.787416],[168.405868,-17.829971]]],[[[169.266388,-18.995001],[168.992477,-18.875999],[168.998779,-18.697222],[169.039719,-18.638779],[169.150757,-18.64525],[169.19722,-18.792444],[169.308029,-18.874111],[169.344635,-18.938555],[169.266388,-18.995001]]],[[[168.20517,-16.358139],[168.131836,-16.378529],[167.983551,-16.312416],[167.914475,-16.227362],[168.047058,-16.199139],[168.121674,-16.138334],[168.190079,-16.126278],[168.225174,-16.247639],[168.303696,-16.294861],[168.292313,-16.348305],[168.20517,-16.358139]]],[[[169.500137,-19.54439],[169.446579,-19.657583],[169.340774,-19.622862],[169.28511,-19.573055],[169.220581,-19.452862],[169.247604,-19.349112],[169.355774,-19.322916],[169.35228,-19.439362],[169.500137,-19.54439]]],[[[168.198105,-16],[168.1642,-15.796278],[168.112701,-15.675805],[168.190216,-15.60025],[168.26802,-15.962556],[168.198105,-16]]],[[[168.281723,-16.804445],[168.183502,-16.807638],[168.121246,-16.696472],[168.184891,-16.571722],[168.248947,-16.69025],[168.313446,-16.687916],[168.37117,-16.774279],[168.281723,-16.804445]]],[[[167.751312,-15.479083],[167.684494,-15.442862],[167.812729,-15.328584],[167.974548,-15.282473],[168.006637,-15.305223],[167.943085,-15.4095],[167.869415,-15.477805],[167.751312,-15.479083]]],[[[167.546173,-14.335694],[167.435883,-14.333138],[167.430359,-14.181444],[167.527161,-14.152361],[167.610535,-14.226611],[167.546173,-14.335694]]],[[[167.521271,-13.732695],[167.559967,-13.807889],[167.550049,-13.875417],[167.454559,-13.886723],[167.389084,-13.818055],[167.392777,-13.757055],[167.468369,-13.701138],[167.521271,-13.732695]]],[[[168.144104,-15],[168.192993,-15.196584],[168.197144,-15.364695],[168.147003,-15.385889],[168.13594,-15.212806],[168.144104,-15]]],[[[167.223801,-15.694972],[167.175522,-15.745584],[167.077301,-15.685139],[167.112701,-15.628944],[167.23494,-15.637195],[167.223801,-15.694972]]],[[[169.852661,-20.243889],[169.784637,-20.241444],[169.745666,-20.170944],[169.839386,-20.132889],[169.890915,-20.161333],[169.852661,-20.243889]]]]},"properties":{"name":"瓦努阿图","name_en":"VANUATU","id":"VUT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.5935,41.877003],[20.736641,41.878132],[20.748327,41.991646],[20.792162,42.083061],[20.885305,42.095749],[21.104624,42.205749],[21.166178,42.196102],[21.222313,42.094505],[21.298712,42.139797],[21.38279,42.241936],[21.481777,42.280495],[21.684143,42.242065],[21.842243,42.325295],[21.944319,42.344635],[22.095442,42.301598],[22.26939,42.36224],[22.359917,42.312176],[22.52834,42.1399],[22.674755,42.065029],[22.867498,42.015656],[22.87335,41.936409],[22.970232,41.770435],[23.033573,41.708698],[22.960011,41.646831],[22.972889,41.559807],[22.944834,41.346783],[22.764927,41.323154],[22.747747,41.16547],[22.666767,41.186508],[22.61149,41.12944],[22.416825,41.119354],[22.260443,41.166184],[22.067457,41.156757],[21.931063,41.103779],[21.913334,41.051079],[21.800362,40.974838],[21.567787,40.866589],[21.524864,40.909939],[21.417091,40.918034],[21.259954,40.859878],[20.980568,40.855221],[20.979338,40.897175],[20.847155,40.937344],[20.731695,40.911694],[20.66972,41.087269],[20.596857,41.127831],[20.515206,41.232468],[20.50704,41.310452],[20.557247,41.416794],[20.456957,41.553318],[20.557659,41.582172],[20.516615,41.661697],[20.519239,41.750515],[20.5935,41.877003]]]},"properties":{"name":"前南马其顿","name_en":"The Former Yugoslav Republic of Macedonia","id":"MKD"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-57.141129,5.816273],[-57.064163,5.949467],[-56.94384,6.00015],[-56.58971,5.939708],[-56.452271,5.932888],[-56.221775,5.877119],[-55.95023,5.78901],[-55.890598,5.839419],[-55.925812,5.893458],[-55.855835,5.943297],[-55.667381,5.979042],[-55.362099,5.958178],[-55.212227,5.897398],[-55.15123,5.977145],[-55.031925,6.004362],[-54.834137,5.99401],[-54.552067,5.933842],[-54.198582,5.880434],[-54.024242,5.823861],[-53.983515,5.730087],[-54.014526,5.543812],[-54.126686,5.405309],[-54.136143,5.365531],[-54.300774,5.239499],[-54.415398,5.066204],[-54.474247,4.903628],[-54.466362,4.73912],[-54.425575,4.71422],[-54.413166,4.610653],[-54.446377,4.521899],[-54.418751,4.373012],[-54.390755,4.332997],[-54.383675,4.181973],[-54.321171,4.143001],[-54.362721,4.057463],[-54.301178,3.985126],[-54.192696,3.8045],[-54.122994,3.79893],[-54.075757,3.672411],[-53.978539,3.60886],[-54.014019,3.425174],[-54.06686,3.308968],[-54.173226,3.202377],[-54.188789,3.055304],[-54.167912,2.969854],[-54.184139,2.837282],[-54.265831,2.710917],[-54.362827,2.499406],[-54.444557,2.422903],[-54.450127,2.326534],[-54.525734,2.303486],[-54.549095,2.336314],[-54.703846,2.339697],[-54.743774,2.477054],[-54.85833,2.435056],[-54.960262,2.54278],[-54.972595,2.604666],[-55.102707,2.522386],[-55.128998,2.569784],[-55.211994,2.512078],[-55.299335,2.521994],[-55.428486,2.439435],[-55.591713,2.43345],[-55.738914,2.401214],[-55.938831,2.53155],[-55.987289,2.51703],[-55.987884,2.425941],[-56.044266,2.344939],[-56.090218,2.352037],[-56.12783,2.251955],[-56.048256,2.226486],[-55.910492,2.031083],[-55.906479,1.889429],[-55.994968,1.831145],[-56.213081,1.895422],[-56.253964,1.886876],[-56.364155,1.938965],[-56.480251,1.941472],[-56.555508,2.009795],[-56.707043,2.033958],[-56.819576,2.204659],[-56.825649,2.270658],[-56.994816,2.503534],[-56.996029,2.553908],[-57.059872,2.644254],[-57.109787,2.770451],[-57.207619,2.841797],[-57.225842,2.902034],[-57.213672,3.068398],[-57.29459,3.129192],[-57.305061,3.373516],[-57.477974,3.333537],[-57.6644,3.387887],[-57.627722,3.455914],[-57.648866,3.548912],[-57.739914,3.626841],[-57.817154,3.656118],[-57.84175,3.7672],[-57.923305,3.904114],[-58.01047,3.97313],[-58.056641,4.160741],[-57.988894,4.239487],[-57.945959,4.340552],[-57.959983,4.3801],[-57.838082,4.618462],[-57.83161,4.682296],[-57.923089,4.809968],[-57.833335,4.926891],[-57.667636,5.008351],[-57.408504,4.99166],[-57.292766,5.044998],[-57.321607,5.085654],[-57.273289,5.177783],[-57.175155,5.174053],[-57.240328,5.270838],[-57.330596,5.326148],[-57.260929,5.402171],[-57.257183,5.477449],[-57.184519,5.544529],[-57.144067,5.67347],[-57.141129,5.816273]]]},"properties":{"name":"苏里南","name_en":"Suriname","id":"SUR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[13.298964,2.170563],[14.256395,2.17233],[14.309893,2.190559],[14.426798,2.155938],[14.606706,2.196791],[14.655955,2.127451],[14.729589,2.1222],[14.987114,2.033179],[15.051688,1.98033],[15.196596,2.034139],[15.251914,2.025681],[15.344864,1.911096],[15.493702,1.975643],[15.525643,1.953685],[15.764898,1.908636],[15.886516,1.77963],[16.032537,1.76247],[16.032352,1.657412],[16.152979,1.704636],[16.112934,1.867177],[16.055723,2.001262],[16.084332,2.046473],[16.086325,2.192301],[16.19199,2.220514],[16.520128,2.842302],[16.49025,2.909309],[16.493379,3.004335],[16.544537,3.065687],[16.505768,3.159867],[16.558363,3.253435],[16.59654,3.477276],[16.672024,3.541804],[16.754526,3.557066],[17.058056,3.54813],[17.248291,3.583334],[17.298815,3.630149],[17.365892,3.610179],[17.474064,3.703082],[17.606319,3.64125],[17.733053,3.651216],[17.828976,3.626744],[17.85914,3.532982],[17.919298,3.573514],[18.123522,3.566071],[18.188995,3.481166],[18.249924,3.514086],[18.264732,3.588093],[18.419706,3.609041],[18.490898,3.651687],[18.54422,3.596132],[18.594995,3.477018],[18.635095,3.471089],[18.649839,3.330539],[18.641741,3.20894],[18.584799,3.097586],[18.532778,3.070282],[18.439541,2.882471],[18.429136,2.768233],[18.329975,2.584529],[18.241749,2.506999],[18.185284,2.34502],[18.09457,2.23824],[18.092531,1.962114],[18.058283,1.803795],[18.083271,1.703921],[18.067961,1.521395],[17.976265,1.338227],[17.941771,1.164453],[17.850117,1.012438],[17.844896,0.919185],[17.895277,0.775074],[17.874414,0.659659],[17.886227,0.572316],[17.944325,0.512148],[17.962597,0.408499],[17.92326,0.315841],[17.854847,0.260033],[17.786934,0.143367],[17.724592,-0.095211],[17.715263,-0.232831],[17.740395,-0.39775],[17.700066,-0.567603],[17.609581,-0.693548],[17.456505,-0.875605],[17.341194,-0.990493],[17.237497,-1.04714],[17.130281,-1.06404],[16.896601,-1.213554],[16.795807,-1.330821],[16.589008,-1.745197],[16.538164,-1.828789],[16.40555,-1.992041],[16.242018,-2.122595],[16.191469,-2.225043],[16.18428,-2.382887],[16.23575,-2.656546],[16.180214,-2.875008],[16.195341,-3.015955],[16.178284,-3.102118],[16.184074,-3.250495],[16.222395,-3.296272],[16.187096,-3.395443],[16.058149,-3.608875],[15.930373,-3.87291],[15.919945,-3.927281],[15.841413,-3.977225],[15.713846,-3.994079],[15.5615,-4.04695],[15.514399,-4.106581],[15.503943,-4.200987],[15.415301,-4.296507],[15.313166,-4.278873],[15.194308,-4.347605],[15.118428,-4.480533],[14.912356,-4.682193],[14.843789,-4.824485],[14.69051,-4.917224],[14.592003,-4.903398],[14.489867,-4.848159],[14.41206,-4.893814],[14.401115,-4.806427],[14.429112,-4.655138],[14.38545,-4.637833],[14.358883,-4.543601],[14.482252,-4.437007],[14.358328,-4.314187],[14.290273,-4.325048],[14.178457,-4.399586],[14.017611,-4.434021],[13.969067,-4.511284],[13.876802,-4.494586],[13.819195,-4.422533],[13.730344,-4.457811],[13.748176,-4.56728],[13.673186,-4.76265],[13.594442,-4.813753],[13.448685,-4.863441],[13.302512,-4.782232],[13.23295,-4.679845],[13.126475,-4.586651],[13.102497,-4.625668],[13.020653,-4.597649],[12.915622,-4.472156],[12.898159,-4.419291],[12.7938,-4.379324],[12.684982,-4.468854],[12.631461,-4.560899],[12.405048,-4.59033],[12.372328,-4.727596],[12.326449,-4.793692],[12.206003,-4.758564],[12.166536,-4.885212],[12.010205,-5.027223],[11.823905,-4.792785],[11.846667,-4.757619],[11.773142,-4.667066],[11.787279,-4.564697],[11.389043,-4.202634],[11.374242,-4.147834],[11.205009,-3.978806],[11.251471,-3.811805],[11.249577,-3.718149],[11.334277,-3.613878],[11.458425,-3.583903],[11.529373,-3.512757],[11.631604,-3.570211],[11.696327,-3.670717],[11.884314,-3.747393],[11.947833,-3.626282],[11.877887,-3.576887],[11.898181,-3.510824],[11.958836,-3.478309],[12.04545,-3.352566],[12.001761,-3.241942],[11.947385,-3.171827],[12.013502,-3.135163],[12.066581,-2.969432],[11.796538,-2.861373],[11.68847,-2.835703],[11.616086,-2.784225],[11.641395,-2.698162],[11.702683,-2.662912],[11.636162,-2.520795],[11.650922,-2.421406],[11.697763,-2.372831],[11.775189,-2.456493],[11.820854,-2.387438],[11.996698,-2.339856],[12.092253,-2.439337],[12.17664,-2.421277],[12.468325,-2.421265],[12.526666,-2.318794],[12.519983,-2.086727],[12.475246,-2.018962],[12.444075,-1.874593],[12.520722,-1.90136],[12.571838,-1.858259],[12.65008,-1.882021],[12.743326,-1.868949],[12.841586,-1.939564],[12.88521,-2.099488],[12.998681,-2.195176],[13.040925,-2.333772],[13.166412,-2.378764],[13.209987,-2.339313],[13.374034,-2.420743],[13.506066,-2.429549],[13.748805,-2.120313],[13.813877,-2.153441],[13.916443,-2.358716],[13.868412,-2.420535],[13.922575,-2.464971],[13.998001,-2.446524],[14.102895,-2.473967],[14.216945,-2.284899],[14.15641,-2.194279],[14.253233,-2.105577],[14.257282,-1.983206],[14.398568,-1.875691],[14.420771,-1.728656],[14.451238,-1.692426],[14.377006,-1.601684],[14.473687,-1.552535],[14.462571,-1.469814],[14.501671,-1.425277],[14.452272,-1.365026],[14.482974,-1.283519],[14.410248,-0.908969],[14.49872,-0.680893],[14.463206,-0.551707],[14.400787,-0.477086],[14.17301,-0.423109],[14.162808,-0.329902],[14.018668,-0.235604],[13.926514,-0.242599],[13.885629,-0.17202],[13.926809,-0.083476],[13.92782,0.120752],[13.888682,0.202671],[13.989514,0.376217],[14.051319,0.407082],[14.119596,0.558322],[14.222796,0.536392],[14.384536,0.637416],[14.368041,0.698515],[14.464081,0.789363],[14.497989,0.928649],[14.445254,0.960528],[14.396409,1.093672],[14.295027,1.24119],[14.278986,1.341193],[14.187221,1.39562],[14.066544,1.380683],[13.99942,1.420106],[13.813872,1.428686],[13.759167,1.352923],[13.665024,1.352596],[13.556646,1.278734],[13.375012,1.290885],[13.323568,1.235781],[13.195618,1.217966],[13.197707,1.286906],[13.257357,1.316044],[13.25261,1.405451],[13.138198,1.581605],[13.137106,1.701831],[13.201394,1.806844],[13.159587,1.875617],[13.209714,1.981802],[13.294373,2.061286],[13.298964,2.170563]]]},"properties":{"name":"刚果","name_en":"Congo","id":"COG"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-22.099821,65.3517],[-21.907392,65.451729],[-22.119656,65.492111],[-22.209711,65.429634],[-22.594294,65.532646],[-23.204826,65.547142],[-23.372929,65.494728],[-23.63957,65.464745],[-23.889091,65.403328],[-23.96583,65.460876],[-24.190842,65.501045],[-24.496115,65.486946],[-24.322506,65.6371],[-24.153574,65.605804],[-24.07995,65.697494],[-24.091007,65.80233],[-23.604566,65.692833],[-23.87277,65.867386],[-23.790531,65.917984],[-23.827316,66.029739],[-23.624008,66.079536],[-23.607092,66.142967],[-23.460438,66.195908],[-23.268385,66.173569],[-22.983336,66.070023],[-22.765778,66.052277],[-22.539865,65.941307],[-22.357884,65.9086],[-22.485611,66.071617],[-22.921049,66.170883],[-22.973495,66.295006],[-23.140925,66.429886],[-22.882673,66.469971],[-22.667051,66.418724],[-22.559671,66.463959],[-22.272095,66.376282],[-22.209318,66.298408],[-21.719038,66.147293],[-21.614757,66.081818],[-21.326414,66.000923],[-21.276522,65.855705],[-21.345337,65.74263],[-21.440687,65.689911],[-21.302059,65.597778],[-21.281614,65.479523],[-21.197052,65.427383],[-21.197597,65.313927],[-20.919327,65.359428],[-20.99177,65.480141],[-20.946415,65.578415],[-20.705488,65.686104],[-20.626507,65.583527],[-20.48399,65.489876],[-20.329529,65.618286],[-20.270929,65.724663],[-20.316202,65.859558],[-20.440262,66.015686],[-20.412214,66.06414],[-20.181824,66.125168],[-20.041063,66.076828],[-19.939302,65.959152],[-19.694082,65.853348],[-19.655104,65.757591],[-19.469278,65.727341],[-19.380497,65.834106],[-19.504379,65.973007],[-19.396168,66.067215],[-19.108044,66.094292],[-18.972042,66.186928],[-18.674103,66.15509],[-18.54269,66.07354],[-18.539026,65.974304],[-18.340763,65.945854],[-18.103531,65.736565],[-18.063435,65.84314],[-18.29022,66.012604],[-18.32997,66.146057],[-18.243197,66.173965],[-17.993488,66.156593],[-17.751181,66.074089],[-17.634716,65.987297],[-17.418173,65.985649],[-17.354574,66.092392],[-17.222113,66.189095],[-17.035069,66.205711],[-16.910112,66.12046],[-16.739899,66.126472],[-16.505209,66.184006],[-16.419397,66.271797],[-16.572636,66.475822],[-16.445026,66.519318],[-16.264473,66.484764],[-16.154583,66.532669],[-15.923043,66.488678],[-15.908238,66.412239],[-15.708171,66.395218],[-15.758042,66.28363],[-15.36623,66.158722],[-15.35644,66.236473],[-15.118551,66.269264],[-14.934624,66.372917],[-14.702633,66.341537],[-15.018601,66.26371],[-14.928687,66.202522],[-15.145585,66.091354],[-14.878805,66.014801],[-14.738736,66.059822],[-14.613947,65.99041],[-14.660499,65.88636],[-14.789924,65.832703],[-14.852942,65.733192],[-14.411976,65.787476],[-14.314779,65.682243],[-14.113499,65.621277],[-13.852445,65.604836],[-13.611552,65.510117],[-13.717155,65.325249],[-13.563514,65.262909],[-13.662412,65.192795],[-13.503219,65.06591],[-13.602094,64.996979],[-13.766813,64.983994],[-13.762228,64.850449],[-13.829218,64.79998],[-13.997147,64.794914],[-14.019514,64.71933],[-14.226215,64.688667],[-14.273455,64.640427],[-14.591113,64.582519],[-14.470461,64.533142],[-14.500214,64.437592],[-14.720881,64.404236],[-15.049302,64.279289],[-15.253833,64.296371],[-15.472461,64.235069],[-15.716444,64.205101],[-15.972207,64.130218],[-16.504244,63.893379],[-16.793835,63.829964],[-16.925659,63.892551],[-17.19945,63.840431],[-17.302408,63.781578],[-17.549452,63.750862],[-17.790386,63.679085],[-17.911873,63.562023],[-18.055246,63.50074],[-18.712158,63.393394],[-19.208107,63.415798],[-19.608225,63.503223],[-19.838263,63.534142],[-20.16836,63.532742],[-20.819301,63.781174],[-21.295822,63.885586],[-21.661015,63.819141],[-21.753658,63.863331],[-22.170221,63.827171],[-22.351616,63.853069],[-22.535807,63.809715],[-22.745478,63.817375],[-22.702177,63.935337],[-22.761881,63.96751],[-22.64757,64.076363],[-22.519224,63.984322],[-21.982069,64.060364],[-21.982162,64.152412],[-21.752966,64.170876],[-21.90803,64.308968],[-22.086861,64.314949],[-21.958898,64.510651],[-22.209204,64.480072],[-22.392258,64.63044],[-22.31756,64.755119],[-22.54192,64.798843],[-23.039747,64.793816],[-23.344206,64.824127],[-23.608444,64.798294],[-23.813824,64.723618],[-23.929249,64.749161],[-24.06094,64.880798],[-23.884857,64.922844],[-23.649164,64.888046],[-23.502705,64.946808],[-23.215528,64.949921],[-22.735149,65.074631],[-22.545423,65.04837],[-22.337332,65.05925],[-22.162777,65.029251],[-21.796583,65.027283],[-21.834547,65.173515],[-22.000168,65.110046],[-22.250334,65.118233],[-22.415937,65.157745],[-22.509525,65.225059],[-22.358078,65.29493],[-22.099821,65.3517]]]},"properties":{"name":"冰岛","name_en":"ICELAND","id":"ISL"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-61.670902,16.324255],[-61.54921,16.281952],[-61.581844,16.236183],[-61.550823,16.054272],[-61.627861,15.966151],[-61.702816,15.955387],[-61.768513,16.064631],[-61.807167,16.275852],[-61.735794,16.368206],[-61.670902,16.324255]]],[[[-61.509094,16.389013],[-61.53931,16.444044],[-61.475086,16.508087],[-61.407604,16.470604],[-61.405479,16.393456],[-61.361912,16.339748],[-61.267151,16.317383],[-61.228828,16.271845],[-61.4566,16.203108],[-61.519955,16.218878],[-61.544766,16.294199],[-61.509094,16.389013]]],[[[-61.283363,16.008759],[-61.194081,15.947891],[-61.240643,15.871198],[-61.331108,15.940005],[-61.283363,16.008759]]]]},"properties":{"name":"瓜德罗普","name_en":"GUADELOUPE","id":"GLP"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[41.899078,3.975494],[41.840557,3.955019],[41.723556,3.98716],[41.674412,3.959925],[41.550659,3.981666],[41.42675,3.945413],[41.270882,3.957763],[41.169266,3.94258],[40.882382,4.212838],[40.774922,4.281918],[40.37579,4.106327],[40.172241,4.027481],[39.869568,3.874727],[39.762844,3.663264],[39.581814,3.476436],[39.501587,3.457662],[39.204445,3.486258],[39.096039,3.537844],[38.915646,3.512155],[38.667805,3.600819],[38.516815,3.62983],[38.446976,3.602858],[38.129215,3.616987],[37.962578,3.741681],[37.567127,4.015334],[37.139435,4.293381],[37.0419,4.375583],[36.86837,4.444474],[36.665691,4.440267],[36.233402,4.450693],[36.047611,4.446621],[35.964592,4.527251],[35.947697,4.629333],[35.817108,4.77735],[35.817448,5.104121],[35.863781,5.175502],[35.829216,5.233839],[35.861401,5.314649],[35.71883,5.389732],[35.628376,5.377764],[35.517918,5.417205],[35.334015,5.329945],[35.301899,5.348942],[35.306065,5.50104],[35.137291,5.613731],[35.130108,5.691162],[35.00103,5.897047],[35,6.073824],[34.969341,6.09054],[34.989487,6.384054],[35.019535,6.447019],[34.85865,6.605091],[34.768886,6.593629],[34.706035,6.686229],[34.528511,6.752225],[34.539341,6.818495],[34.475929,6.911313],[34.236423,7.002413],[34.192028,7.11952],[34.042294,7.220928],[34.031654,7.360514],[33.796081,7.602914],[33.671291,7.693246],[33.580135,7.686265],[33.438473,7.747764],[33.338157,7.706165],[33.164207,7.794065],[33.066105,7.785869],[33.006786,7.858101],[33.000198,7.9401],[33.119282,8.105654],[33.19067,8.12944],[33.16542,8.194452],[33.192722,8.295718],[33.191132,8.405415],[33.301788,8.45059],[33.39555,8.42142],[33.488308,8.467608],[33.621376,8.466745],[33.692844,8.377152],[33.769104,8.362971],[33.892044,8.472905],[34.023563,8.489738],[34.103638,8.552817],[34.142998,8.622109],[34.142925,9.043478],[34.116405,9.457685],[34.108536,9.57429],[34.222694,9.893518],[34.249779,10.061277],[34.330666,10.123528],[34.349918,10.209194],[34.295918,10.394472],[34.325416,10.475389],[34.282944,10.52725],[34.299862,10.587833],[34.384472,10.672417],[34.472137,10.816055],[34.601971,10.904139],[34.699055,10.828445],[34.777279,10.712861],[34.863224,10.766027],[34.972416,10.900695],[34.952446,10.9675],[35.006943,11.159778],[34.955612,11.25375],[35.059418,11.437805],[35.092415,11.623528],[35.054722,11.734389],[35.109585,11.815833],[35.275196,11.935945],[35.302166,12.012167],[35.42847,12.247916],[35.641861,12.602056],[35.713055,12.671695],[35.783806,12.663611],[35.984833,12.719722],[36.068668,12.724472],[36.155166,12.680917],[36.182251,12.889916],[36.150276,12.940917],[36.251583,13.283055],[36.292389,13.32425],[36.374138,13.530222],[36.422417,13.728806],[36.500916,13.832222],[36.452862,13.981083],[36.475887,14.009361],[36.556583,14.263722],[36.63586,14.312083],[36.862446,14.320306],[36.97625,14.289083],[37.01289,14.25225],[37.100418,14.277861],[37.123695,14.389611],[37.211277,14.438194],[37.31189,14.442778],[37.389778,14.367833],[37.534222,14.117722],[37.574055,14.095777],[37.916084,14.89375],[38.046555,14.71825],[38.145474,14.677778],[38.24786,14.68675],[38.27636,14.612695],[38.455113,14.4105],[38.523556,14.408028],[38.699276,14.459917],[38.80175,14.463361],[38.98439,14.546056],[39.017056,14.614889],[39.091805,14.627861],[39.198307,14.541306],[39.229752,14.439278],[39.338417,14.476055],[39.492443,14.489528],[39.575943,14.55475],[39.679249,14.478861],[39.790974,14.490528],[39.918446,14.414528],[40.005085,14.449722],[40.161804,14.457556],[40.299168,14.412889],[40.414917,14.304667],[40.578777,14.219639],[40.847252,14.139361],[40.970165,14.007778],[41.136612,13.778139],[41.219166,13.615861],[41.302223,13.544473],[41.719307,13.264277],[41.835583,13.143333],[41.954693,12.90275],[42.051613,12.813],[42.205471,12.743278],[42.360084,12.498138],[42.405029,12.462055],[42.317223,12.304639],[42.257721,12.255028],[41.977833,11.8345],[41.836861,11.727972],[41.775501,11.472722],[41.807724,11.31825],[41.791363,10.973194],[42.002972,10.916417],[42.142666,10.976666],[42.207027,10.960195],[42.372806,10.996111],[42.424137,10.980083],[42.499306,11.0325],[42.640946,11.088305],[42.746307,11.072194],[42.796028,10.985528],[42.961639,10.984417],[42.766529,10.721972],[42.683166,10.592527],[42.746666,10.51225],[42.832638,10.277861],[42.881138,10.207111],[43.017387,10.080778],[43.085895,9.908804],[43.256874,9.842637],[43.299194,9.611092],[43.398239,9.552792],[43.491375,9.401518],[43.646687,9.358332],[44.005856,8.996557],[44.866928,8.7107],[45.828949,8.395333],[46.579128,8.146087],[46.9897,8],[47.986179,8],[47.777084,7.785457],[46.199921,6.167208],[45.503898,5.453055],[44.981743,4.917296],[44.015137,4.960437],[43.659065,4.868027],[43.434925,4.79468],[43.235187,4.696257],[43.044281,4.572129],[43.007217,4.46774],[42.898049,4.318554],[42.817337,4.264912],[42.709904,4.261759],[42.587875,4.215405],[42.370975,4.189451],[42.087669,4.179365],[41.946224,4.055664],[41.899078,3.975494]]]},"properties":{"name":"埃塞俄比亚","name_en":"Ethiopia","id":"ETH"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[43.287945,-11.377805],[43.381687,-11.371244],[43.405117,-11.435823],[43.380268,-11.611217],[43.503872,-11.895542],[43.460365,-11.939949],[43.353054,-11.856063],[43.271698,-11.84321],[43.216358,-11.731829],[43.252026,-11.667999],[43.25206,-11.447561],[43.287945,-11.377805]]],[[[44.490734,-12.097831],[44.532421,-12.252572],[44.530521,-12.367819],[44.379181,-12.247213],[44.37373,-12.180189],[44.420532,-12.088978],[44.490734,-12.097831]]],[[[43.697994,-12.258138],[43.848167,-12.336591],[43.669914,-12.356248],[43.617462,-12.267318],[43.697994,-12.258138]]]]},"properties":{"name":"科摩罗","name_en":"COMOROS","id":"COM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.886818,7.220824],[-77.803246,7.467022],[-77.724144,7.495708],[-77.763977,7.624529],[-77.743767,7.724392],[-77.671753,7.674093],[-77.618134,7.54573],[-77.579491,7.507368],[-77.494629,7.598021],[-77.424934,7.714838],[-77.31681,7.740014],[-77.349464,7.82543],[-77.321144,7.908957],[-77.181473,7.92261],[-77.258072,8.21475],[-77.294014,8.226646],[-77.332977,8.366876],[-77.446938,8.523991],[-77.360863,8.686984],[-77.282928,8.582412],[-77.239685,8.469168],[-77.138298,8.420489],[-77.031822,8.257678],[-76.963699,8.261848],[-76.93354,8.098958],[-76.860764,8.138242],[-76.839264,8.054754],[-76.920159,8.034273],[-76.91674,7.912986],[-76.760513,7.912585],[-76.724953,8.060851],[-76.7789,8.280394],[-76.765045,8.396165],[-76.813057,8.483968],[-76.936615,8.552897],[-76.881813,8.622686],[-76.658119,8.666328],[-76.567291,8.750168],[-76.337021,8.923599],[-76.269989,8.993309],[-76.186867,9.12851],[-76.170387,9.234002],[-76.112205,9.266912],[-76.089409,9.333804],[-75.864563,9.43475],[-75.79335,9.392666],[-75.621795,9.443101],[-75.565948,9.604625],[-75.647545,9.754367],[-75.57193,9.965106],[-75.579704,10.110202],[-75.522621,10.178187],[-75.540878,10.245358],[-75.505569,10.309236],[-75.545357,10.433702],[-75.501465,10.467908],[-75.494652,10.551838],[-75.391159,10.682983],[-75.279846,10.717711],[-75.259003,10.805982],[-75.15715,10.838614],[-75.035172,10.914386],[-75.006836,10.985828],[-74.919205,11.051313],[-74.809769,11.086323],[-74.55825,10.996653],[-74.349999,10.977849],[-74.251175,11.020059],[-74.215553,11.068377],[-74.236786,11.180068],[-74.213982,11.260669],[-74.154701,11.326781],[-73.97345,11.344209],[-73.824058,11.267678],[-73.52224,11.25766],[-73.277786,11.288808],[-73.030571,11.495469],[-72.875244,11.576178],[-72.734039,11.69998],[-72.625091,11.725403],[-72.521118,11.782362],[-72.345047,11.83676],[-72.234734,11.906417],[-72.147873,12.085852],[-72.128471,12.243864],[-71.991043,12.247723],[-71.979904,12.158767],[-71.931129,12.156236],[-71.865806,12.248699],[-71.923935,12.301295],[-71.855331,12.359201],[-71.799499,12.309385],[-71.737534,12.359308],[-71.713859,12.441311],[-71.662331,12.463308],[-71.491203,12.431671],[-71.429054,12.385364],[-71.296974,12.357679],[-71.237534,12.320575],[-71.113716,12.087037],[-71.135864,12.007123],[-71.283218,11.918726],[-71.326386,11.847888],[-71.377151,11.817017],[-71.777512,11.694505],[-71.966057,11.650083],[-72.237442,11.152378],[-72.341637,11.157571],[-72.46714,11.111311],[-72.562035,10.935012],[-72.642365,10.883132],[-72.711716,10.708698],[-72.818443,10.576446],[-72.885369,10.460829],[-72.91404,10.108714],[-72.97757,9.976038],[-72.990448,9.882875],[-72.947723,9.840187],[-73.049919,9.684622],[-73.080238,9.565972],[-73.145767,9.545272],[-73.23803,9.407462],[-73.350319,9.182608],[-73.244011,9.165613],[-73.01078,9.296101],[-72.963615,9.207809],[-72.968483,9.138689],[-72.777946,9.116374],[-72.74379,9.015926],[-72.65313,8.626049],[-72.584145,8.567546],[-72.391769,8.352717],[-72.391029,8.263382],[-72.355118,8.17062],[-72.345817,8.04909],[-72.413818,8.038215],[-72.46431,7.914371],[-72.479225,7.626878],[-72.456696,7.560476],[-72.480705,7.484615],[-72.43866,7.400355],[-72.203331,7.381046],[-72.165939,7.328435],[-72.173103,7.251312],[-72.033905,7.023821],[-71.840485,7.007701],[-71.734474,7.061688],[-71.660118,7.022361],[-71.421059,7.033195],[-71.330185,7.012481],[-71.153076,7.029184],[-71.104217,6.986735],[-70.952988,6.985921],[-70.897026,7.057353],[-70.691467,7.092551],[-70.560798,7.076914],[-70.508255,7.011652],[-70.386948,6.981435],[-70.33841,6.940162],[-70.082688,6.998269],[-69.450424,6.116735],[-69.323372,6.150324],[-69.277451,6.092443],[-69.215149,6.087361],[-69.051498,6.21296],[-68.932892,6.175571],[-68.840569,6.184695],[-68.669266,6.133347],[-68.471756,6.187954],[-68.349831,6.166835],[-68.144501,6.223938],[-67.967018,6.212051],[-67.841576,6.30199],[-67.634148,6.280529],[-67.476051,6.194591],[-67.481003,6.082065],[-67.421112,6.005971],[-67.578835,5.849186],[-67.643753,5.701122],[-67.613472,5.531435],[-67.655846,5.467006],[-67.810722,5.363085],[-67.85115,5.283],[-67.796211,5.099607],[-67.829582,4.906523],[-67.817452,4.828317],[-67.871933,4.514005],[-67.830055,4.488444],[-67.784363,4.350779],[-67.809181,4.233227],[-67.736122,4.118264],[-67.6782,3.914804],[-67.619453,3.76637],[-67.509827,3.74597],[-67.446846,3.659711],[-67.382988,3.484581],[-67.302627,3.397936],[-67.391907,3.248784],[-67.434258,3.246967],[-67.854393,2.869817],[-67.81823,2.832805],[-67.615616,2.812483],[-67.478973,2.621054],[-67.39254,2.568002],[-67.275841,2.43531],[-67.173134,2.344553],[-67.211296,2.250561],[-67.156792,2.121075],[-67.10463,2.065851],[-67.126343,1.992833],[-67.071228,1.914842],[-66.974914,1.63547],[-66.974472,1.586011],[-66.886032,1.362688],[-66.869835,1.225646],[-67.096664,1.170079],[-67.106468,1.265936],[-67.068146,1.532232],[-67.116821,1.732161],[-67.250252,1.915157],[-67.360504,2.114373],[-67.446159,2.141113],[-67.577995,2.075562],[-67.668312,1.987888],[-67.786316,1.823212],[-67.896362,1.756818],[-67.971497,1.744901],[-68.067078,1.831797],[-68.116913,1.951853],[-68.222206,1.972644],[-68.283348,1.835377],[-68.162056,1.734391],[-68.911018,1.726504],[-69.394562,1.725671],[-69.55574,1.775197],[-69.654381,1.725768],[-69.740173,1.735307],[-69.855194,1.714919],[-69.854072,1.069752],[-69.753181,1.095937],[-69.70034,1.055641],[-69.608215,1.073588],[-69.45575,1.056308],[-69.416382,1.023687],[-69.329239,1.062455],[-69.256722,1.025505],[-69.136986,0.868457],[-69.183502,0.730424],[-69.11412,0.652157],[-69.201538,0.601751],[-69.294975,0.648283],[-69.358734,0.622597],[-69.468208,0.734351],[-69.651031,0.670095],[-69.79837,0.584742],[-69.910034,0.589937],[-70.037407,0.545666],[-70.035652,0.370532],[-70.068024,-0.134779],[-69.907868,-0.315769],[-69.850311,-0.33523],[-69.730736,-0.456756],[-69.589615,-0.524037],[-69.551124,-0.648225],[-69.59539,-0.777214],[-69.551628,-0.81282],[-69.507873,-0.93641],[-69.437736,-1.028683],[-69.375145,-1.17331],[-69.368347,-1.333702],[-69.452515,-1.477611],[-69.447906,-1.552427],[-69.608345,-2.444501],[-69.777878,-3.398282],[-69.922127,-4.161763],[-69.945732,-4.225544],[-70.083465,-4.055185],[-70.157944,-4.021096],[-70.18634,-3.890896],[-70.294838,-3.812687],[-70.349152,-3.804406],[-70.454498,-3.876611],[-70.518326,-3.880822],[-70.703293,-3.794675],[-70.440056,-3.386154],[-70.052925,-2.792203],[-70.07608,-2.661945],[-70.159874,-2.697871],[-70.213547,-2.650035],[-70.232597,-2.562798],[-70.306786,-2.572864],[-70.366203,-2.49356],[-70.417572,-2.525272],[-70.465713,-2.453687],[-70.608299,-2.480622],[-70.674355,-2.340409],[-70.826095,-2.278839],[-70.875725,-2.21484],[-70.96785,-2.205668],[-71.118004,-2.284541],[-71.174431,-2.374425],[-71.213295,-2.340907],[-71.376152,-2.346469],[-71.449204,-2.260525],[-71.592293,-2.216461],[-71.704842,-2.160897],[-71.822296,-2.186985],[-71.861038,-2.300383],[-71.983757,-2.36374],[-72.035149,-2.331185],[-72.114746,-2.421613],[-72.221145,-2.433087],[-72.346001,-2.490426],[-72.382568,-2.416131],[-72.558212,-2.425673],[-72.656181,-2.47269],[-72.703354,-2.416379],[-72.904671,-2.494525],[-72.959885,-2.383968],[-73.055359,-2.390216],[-73.140602,-2.298893],[-73.095863,-2.16253],[-73.112816,-2.023962],[-73.099632,-1.926637],[-73.142594,-1.83397],[-73.212517,-1.778685],[-73.327766,-1.833967],[-73.413902,-1.821274],[-73.533119,-1.718836],[-73.497848,-1.648329],[-73.488884,-1.520253],[-73.526894,-1.493765],[-73.623734,-1.282989],[-73.681351,-1.257736],[-73.766609,-1.273503],[-73.86644,-1.24589],[-73.904511,-1.149534],[-74.012756,-1.122629],[-74.157051,-1.036339],[-74.223213,-1.031534],[-74.263603,-0.970109],[-74.260002,-0.841444],[-74.353996,-0.770804],[-74.34214,-0.709432],[-74.421303,-0.515411],[-74.515801,-0.48083],[-74.580605,-0.396544],[-74.665619,-0.330003],[-74.801125,-0.289786],[-74.780174,-0.21442],[-74.832825,-0.14135],[-74.903519,-0.195045],[-75.114975,-0.038623],[-75.234169,-0.020797],[-75.2882,-0.093691],[-75.413093,-0.077917],[-75.539696,-0.012781],[-75.617386,0.073483],[-75.733642,0.064395],[-75.883202,0.156614],[-76.015114,0.326612],[-76.097382,0.347009],[-76.132187,0.393933],[-76.217445,0.401696],[-76.26915,0.441074],[-76.404228,0.369004],[-76.404381,0.247996],[-76.556427,0.254928],[-76.723465,0.28503],[-76.847427,0.241906],[-77.085724,0.292625],[-77.123138,0.372101],[-77.253693,0.351608],[-77.464554,0.394914],[-77.500877,0.63114],[-77.60012,0.667353],[-77.69799,0.752383],[-77.709892,0.839663],[-77.845825,0.796523],[-77.974037,0.817894],[-78.121933,0.913911],[-78.197739,0.992448],[-78.373405,1.063676],[-78.431336,1.14484],[-78.551216,1.195196],[-78.67392,1.294611],[-78.775764,1.407844],[-78.845177,1.462024],[-78.850189,1.529998],[-79.041412,1.619103],[-78.97496,1.720977],[-78.833656,1.818661],[-78.701027,1.780975],[-78.568207,1.785735],[-78.536812,1.910194],[-78.643479,2.074898],[-78.67926,2.180576],[-78.55822,2.440422],[-78.516609,2.492092],[-78.410713,2.515048],[-78.358673,2.616513],[-78.251289,2.669168],[-78.142868,2.687695],[-78.128738,2.652102],[-77.906723,2.647871],[-77.91169,2.681782],[-77.785957,2.73226],[-77.694672,2.861473],[-77.656235,2.987206],[-77.678261,3.023662],[-77.562553,3.164135],[-77.536217,3.24782],[-77.468849,3.328919],[-77.419891,3.340133],[-77.359512,3.472524],[-77.268745,3.574289],[-77.226654,3.581527],[-77.143242,3.754261],[-77.101708,3.792686],[-77.135117,3.873148],[-77.24646,3.832148],[-77.298493,3.873495],[-77.282906,3.9796],[-77.205322,4.010838],[-77.253342,4.087558],[-77.309479,4.048736],[-77.345276,3.93974],[-77.429581,4.012543],[-77.436905,4.141719],[-77.520485,4.15443],[-77.513229,4.284626],[-77.456322,4.274266],[-77.369835,4.392168],[-77.323677,4.580057],[-77.32888,4.728268],[-77.371674,4.990829],[-77.362114,5.108018],[-77.393539,5.170239],[-77.386902,5.285124],[-77.411583,5.399017],[-77.389793,5.451921],[-77.456337,5.494107],[-77.527763,5.481259],[-77.517631,5.570385],[-77.413994,5.614977],[-77.343841,5.605426],[-77.265343,5.723909],[-77.267143,5.774755],[-77.358421,6.057794],[-77.447754,6.124484],[-77.478378,6.196288],[-77.39473,6.23211],[-77.356957,6.481553],[-77.32801,6.546324],[-77.400871,6.619654],[-77.400368,6.675065],[-77.536247,6.702075],[-77.604889,6.834119],[-77.713165,6.890318],[-77.659126,6.962147],[-77.683304,7.043708],[-77.886818,7.220824]]]},"properties":{"name":"哥伦比亚","name_en":"COLOMBIA","id":"COL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-51.615059,4.190925],[-51.658462,4.049279],[-51.753742,3.996106],[-51.795406,3.889529],[-51.921825,3.77228],[-52.228004,3.250557],[-52.279541,3.236496],[-52.347202,3.133795],[-52.327587,3.087224],[-52.396126,2.896653],[-52.428467,2.883019],[-52.550324,2.613437],[-52.554726,2.523372],[-52.672802,2.373743],[-52.853474,2.285073],[-52.901848,2.192049],[-52.987366,2.169751],[-53.074093,2.221689],[-53.176506,2.220196],[-53.273476,2.292224],[-53.42252,2.284564],[-53.461052,2.329971],[-53.679203,2.284482],[-53.789696,2.363611],[-53.830009,2.313092],[-53.943424,2.287094],[-53.960186,2.235375],[-54.085495,2.189601],[-54.110714,2.127317],[-54.181724,2.177571],[-54.332806,2.162159],[-54.372974,2.214883],[-54.470329,2.226049],[-54.525734,2.303486],[-54.450127,2.326534],[-54.444557,2.422903],[-54.362827,2.499406],[-54.265831,2.710917],[-54.184139,2.837282],[-54.167912,2.969854],[-54.188789,3.055304],[-54.173226,3.202377],[-54.06686,3.308968],[-54.014019,3.425174],[-53.978539,3.60886],[-54.075757,3.672411],[-54.122994,3.79893],[-54.192696,3.8045],[-54.301178,3.985126],[-54.362721,4.057463],[-54.321171,4.143001],[-54.383675,4.181973],[-54.390755,4.332997],[-54.418751,4.373012],[-54.446377,4.521899],[-54.413166,4.610653],[-54.425575,4.71422],[-54.466362,4.73912],[-54.474247,4.903628],[-54.415398,5.066204],[-54.300774,5.239499],[-54.136143,5.365531],[-54.126686,5.405309],[-54.014526,5.543812],[-53.983515,5.730087],[-53.873089,5.776496],[-53.796169,5.751462],[-53.67551,5.667542],[-53.485634,5.561208],[-53.19598,5.506374],[-53.056496,5.459862],[-52.93198,5.458016],[-52.866222,5.406372],[-52.780945,5.280014],[-52.663139,5.194474],[-52.517002,5.051182],[-52.33361,4.946822],[-52.283665,4.93983],[-52.232208,4.867405],[-52.004894,4.689079],[-51.961681,4.549119],[-51.899666,4.66325],[-51.858822,4.662647],[-51.770893,4.561832],[-51.710365,4.314177],[-51.615059,4.190925]]]},"properties":{"name":"法属圭亚那","name_en":"FRENCH GUIANA","id":"GUF"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.754051,18.030148],[-71.731537,18.080132],[-71.779861,18.175028],[-71.692856,18.341171],[-71.786385,18.37888],[-71.900253,18.458145],[-71.877922,18.505085],[-71.95224,18.581852],[-71.965851,18.653511],[-71.807724,18.636812],[-71.737732,18.730448],[-71.716957,18.825472],[-71.815666,18.991751],[-71.633957,19.129425],[-71.613357,19.201639],[-71.747078,19.279165],[-71.764893,19.315668],[-71.675033,19.441677],[-71.738747,19.584814],[-71.757805,19.702724],[-71.745743,19.808495],[-71.614136,19.899057],[-71.482635,19.905668],[-71.369911,19.854517],[-71.244858,19.82909],[-71.099396,19.866075],[-71.022835,19.929859],[-70.84346,19.9086],[-70.779396,19.841997],[-70.647171,19.775652],[-70.524132,19.755878],[-70.452736,19.786695],[-70.303314,19.656122],[-70.171921,19.624092],[-70.047607,19.677971],[-69.967201,19.684631],[-69.898293,19.645357],[-69.897873,19.532829],[-69.870125,19.435215],[-69.778824,19.301641],[-69.715462,19.276686],[-69.552475,19.325991],[-69.411537,19.321558],[-69.322945,19.288769],[-69.288444,19.328033],[-69.201416,19.234306],[-69.226509,19.17979],[-69.628555,19.217382],[-69.635796,19.117603],[-69.484818,19.078936],[-69.408577,19.102051],[-69.37014,19.054579],[-69.261826,19.016748],[-69.116135,19.014442],[-69.025406,18.985437],[-68.972588,19.028526],[-68.771934,18.973963],[-68.693397,18.926064],[-68.549049,18.786421],[-68.462967,18.739178],[-68.324265,18.624109],[-68.329132,18.575167],[-68.439949,18.42573],[-68.48217,18.338358],[-68.600021,18.383686],[-68.635307,18.219662],[-68.749748,18.222675],[-68.845589,18.377113],[-68.943924,18.40979],[-69.093903,18.396795],[-69.208755,18.452545],[-69.533684,18.406557],[-69.600586,18.449884],[-69.906998,18.461803],[-70.02076,18.419455],[-70.145119,18.237463],[-70.422142,18.229715],[-70.501633,18.193922],[-70.55275,18.253965],[-70.581535,18.408375],[-70.66082,18.433138],[-70.745422,18.347525],[-70.835449,18.34947],[-70.917191,18.260622],[-71.062065,18.311501],[-71.102638,18.262327],[-71.050934,18.159971],[-71.090981,18.064661],[-71.191688,17.932764],[-71.312981,17.814081],[-71.36515,17.680536],[-71.421776,17.606558],[-71.502548,17.734428],[-71.580933,17.767509],[-71.625183,17.82925],[-71.668259,17.971613],[-71.754051,18.030148]]]},"properties":{"name":"多米尼加","name_en":"DOMINICAN REPUBLIC","id":"DOM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.2567,-17.787922],[25.270332,-17.798908],[25.237177,-17.917688],[25.322193,-18.077944],[25.42053,-18.158806],[25.522337,-18.385653],[25.710228,-18.597805],[25.785965,-18.640474],[25.790016,-18.757114],[25.81963,-18.843729],[25.940855,-18.910376],[25.991678,-19.039776],[25.958132,-19.092506],[26.043352,-19.219925],[26.137203,-19.442966],[26.16048,-19.537672],[26.244259,-19.589434],[26.307663,-19.582724],[26.41663,-19.738245],[26.575107,-19.808592],[26.616232,-19.887564],[26.71718,-19.943857],[26.967936,-20.020042],[27.05579,-20.023216],[27.109499,-20.083708],[27.215118,-20.100531],[27.297863,-20.299883],[27.284971,-20.497812],[27.358213,-20.473524],[27.571783,-20.495312],[27.683853,-20.490343],[27.728699,-20.553968],[27.70414,-20.610781],[27.734325,-20.758059],[27.689501,-20.884741],[27.701342,-21.099506],[27.900787,-21.302794],[27.974905,-21.456305],[27.966589,-21.51376],[28.0305,-21.581745],[28.200294,-21.610842],[28.366518,-21.607258],[28.49045,-21.667088],[28.571175,-21.630497],[28.794561,-21.735426],[29.062079,-21.802954],[29.027183,-21.893604],[29.036694,-21.997208],[29.146601,-22.077192],[29.251419,-22.060762],[29.360781,-22.196627],[29.189134,-22.185123],[29.150719,-22.214146],[29.03338,-22.217081],[28.960966,-22.333405],[28.916361,-22.459597],[28.707148,-22.513985],[28.629023,-22.559301],[28.512844,-22.587025],[28.346271,-22.576941],[28.202177,-22.670803],[28.163746,-22.752768],[28.043553,-22.851852],[28.054338,-22.891514],[27.965166,-22.962706],[27.934854,-23.058393],[27.787735,-23.150734],[27.719958,-23.240841],[27.607531,-23.222671],[27.563444,-23.353874],[27.419752,-23.428123],[27.320471,-23.41893],[27.276621,-23.479561],[27.195028,-23.505138],[27.148449,-23.575371],[27.005674,-23.647842],[26.950745,-23.813849],[26.954559,-23.877975],[26.88909,-24.087807],[26.854487,-24.269775],[26.71221,-24.3174],[26.676968,-24.377745],[26.604006,-24.40733],[26.520382,-24.485598],[26.475348,-24.587776],[26.417473,-24.637251],[26.01186,-24.720598],[25.862369,-24.764309],[25.891159,-24.855516],[25.75116,-25.223713],[25.708468,-25.281441],[25.651346,-25.505018],[25.583933,-25.633175],[25.344751,-25.767704],[25.125158,-25.758045],[25.049675,-25.721783],[24.904604,-25.813339],[24.689182,-25.823545],[24.477379,-25.749683],[24.375656,-25.764351],[24.277634,-25.719799],[24.188961,-25.619722],[24.051641,-25.651358],[23.87843,-25.579035],[23.501781,-25.328074],[23.357767,-25.282133],[23.198879,-25.272528],[23.069225,-25.328613],[23.011873,-25.293407],[22.970869,-25.380434],[22.912861,-25.418163],[22.818863,-25.584007],[22.828911,-25.682386],[22.747722,-25.803312],[22.748837,-25.916185],[22.721285,-26.022978],[22.546673,-26.230106],[22.423691,-26.228924],[22.354528,-26.329348],[22.255602,-26.351967],[22.19812,-26.398323],[22.160805,-26.507757],[22.047277,-26.6343],[21.940552,-26.673384],[21.803705,-26.668253],[21.777607,-26.804663],[21.709557,-26.855158],[21.529533,-26.862078],[21.344994,-26.827532],[21.142774,-26.874027],[21.021229,-26.849274],[20.901016,-26.795942],[20.71534,-26.87553],[20.629326,-26.792376],[20.6306,-26.594332],[20.613188,-26.474308],[20.808558,-26.236876],[20.856417,-26.12151],[20.817104,-26.008024],[20.790977,-25.81407],[20.67572,-25.67518],[20.692467,-25.582077],[20.63496,-25.527288],[20.664507,-25.444359],[20.604252,-25.419411],[20.449368,-25.194851],[20.379141,-25.02891],[20.262606,-24.923923],[20.100008,-24.861414],[20.000237,-24.752991],[20,-23.833797],[20,-23.000799],[20,-22.001778],[21.001742,-22.003838],[20.99695,-20.957802],[20.997273,-20],[20.997557,-19.171883],[20.998827,-18.317877],[21.468939,-18.318029],[22.988407,-18.018293],[23.103615,-17.998858],[23.296621,-17.997524],[23.327844,-18.079741],[23.412929,-18.204363],[23.527056,-18.273859],[23.556379,-18.340744],[23.568802,-18.476692],[23.61286,-18.504047],[23.791918,-18.382067],[23.908863,-18.26354],[23.935255,-18.205763],[24.117397,-18.104357],[24.201082,-18.016554],[24.30723,-18.002279],[24.423664,-17.953142],[24.489399,-18.046997],[24.575153,-18.0651],[24.632158,-17.981754],[24.806965,-17.857407],[24.966269,-17.804184],[25.068766,-17.843815],[25.162907,-17.780813],[25.2567,-17.787922]]]},"properties":{"name":"博茨瓦纳","name_en":"Botswana","id":"BWA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[26.623611,48.2505],[26.653694,48.313526],[26.828777,48.340694],[26.717112,48.40839],[26.881083,48.425915],[27.00289,48.365391],[27.09411,48.409084],[27.284779,48.384083],[27.566084,48.473835],[27.76364,48.458557],[27.986139,48.325443],[28.0965,48.30175],[28.107639,48.234112],[28.217916,48.208694],[28.346277,48.249363],[28.426361,48.175777],[28.449499,48.088444],[28.577168,48.172165],[28.854473,48.121666],[28.855583,48.03297],[29.097639,47.958557],[29.194723,47.994446],[29.262306,47.889278],[29.215027,47.815472],[29.238722,47.643917],[29.147778,47.571777],[29.182222,47.472584],[29.334389,47.443279],[29.397917,47.310417],[29.491138,47.315723],[29.563667,47.262833],[29.539833,47.102055],[29.622612,47.076557],[29.580111,46.961639],[29.873472,46.883999],[29.979195,46.763611],[29.947834,46.652168],[30.021917,46.457611],[30.135444,46.416054],[29.885555,46.364418],[29.745582,46.449665],[29.593416,46.364334],[29.452749,46.497223],[29.323444,46.418472],[29.215195,46.435974],[29.166666,46.519085],[29.061527,46.520584],[28.936806,46.462002],[28.992861,46.330891],[28.947416,46.280304],[29.05814,46.199612],[28.958139,46.106861],[28.978111,46.012501],[28.794195,45.977222],[28.790445,45.846443],[28.717722,45.791943],[28.489529,45.716557],[28.547777,45.58361],[28.516277,45.505474],[28.435528,45.48761],[28.310249,45.545612],[28.215105,45.466881],[28.092764,45.598167],[28.172953,45.648014],[28.105808,45.859272],[28.086071,46.009232],[28.143055,46.179649],[28.106605,46.222298],[28.192288,46.3232],[28.25798,46.461529],[28.208956,46.50589],[28.251585,46.611618],[28.125244,46.8531],[28.081345,46.989815],[27.798065,47.14193],[27.728165,47.295414],[27.633261,47.303246],[27.569775,47.449085],[27.476286,47.485062],[27.424568,47.584026],[27.314922,47.643333],[27.214844,47.821209],[27.200195,47.901856],[27.030018,48.124352],[26.955359,48.137775],[26.806776,48.254253],[26.623611,48.2505]]]},"properties":{"name":"摩尔多瓦","name_en":"Moldova","id":"MDA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.52479,0.024766],[6.516851,0.108949],[6.47122,0.198368],[6.501563,0.319129],[6.619553,0.410926],[6.700848,0.405544],[6.747313,0.325281],[6.754959,0.247043],[6.618802,0.08353],[6.52479,0.024766]]],[[[7.437871,1.691383],[7.452172,1.617297],[7.386383,1.541025],[7.342025,1.57844],[7.373536,1.687833],[7.437871,1.691383]]]]},"properties":{"name":"圣多美和普林西比","name_en":"SAO TOME AND PRINCIPE","id":"STP"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[44.41069,-19.751432],[44.423626,-19.616701],[44.480545,-19.54233],[44.449757,-19.408051],[44.274551,-19.170723],[44.230721,-19.077171],[44.257946,-18.849117],[44.16087,-18.58861],[44.042221,-18.416002],[44.043918,-18.202398],[44.015964,-18.119352],[44.00779,-17.943008],[44.036743,-17.758127],[43.927315,-17.595951],[43.931255,-17.504158],[44.00375,-17.351057],[44.089806,-17.246321],[44.130856,-17.121954],[44.194771,-17.072229],[44.358898,-16.794802],[44.445656,-16.68605],[44.413147,-16.589798],[44.469418,-16.493345],[44.405567,-16.374071],[44.451512,-16.194277],[44.482735,-16.183365],[44.842789,-16.229364],[44.935718,-16.191116],[45.204319,-15.955458],[45.260418,-15.969759],[45.287724,-16.132242],[45.381325,-16.071062],[45.344235,-15.98981],[45.538334,-15.951679],[45.581852,-16.001583],[45.674457,-15.778758],[45.792698,-15.820528],[45.878235,-15.768375],[45.962021,-15.790316],[46.024223,-15.847886],[46.062149,-15.748076],[46.19804,-15.706711],[46.241894,-15.745307],[46.227901,-15.822107],[46.31242,-15.967628],[46.458794,-15.975083],[46.419319,-15.86129],[46.295299,-15.815161],[46.351067,-15.768201],[46.296139,-15.714641],[46.340225,-15.635244],[46.437374,-15.552446],[46.616375,-15.429363],[46.872658,-15.233888],[46.949913,-15.202936],[46.977981,-15.298564],[47.057545,-15.364495],[46.98558,-15.429929],[47.032524,-15.560256],[47.107468,-15.455569],[47.206238,-15.454005],[47.047047,-15.240692],[47.106602,-15.1079],[47.210602,-15.045254],[47.214977,-14.998177],[47.314918,-14.922611],[47.308045,-14.823812],[47.41576,-14.708696],[47.500065,-14.71872],[47.517399,-14.821446],[47.403927,-14.979533],[47.399441,-15.104018],[47.472786,-15.091058],[47.564506,-14.941661],[47.632252,-14.799769],[47.75119,-14.624793],[47.692531,-14.446424],[47.722797,-14.346704],[47.843578,-14.263338],[47.921864,-14.265194],[47.949429,-14.168194],[48.037598,-14.174408],[48.028816,-14.070713],[47.972027,-14.049575],[48.008038,-13.962209],[47.892391,-13.896459],[47.861797,-13.766086],[47.897804,-13.593867],[48.138191,-13.599551],[48.169166,-13.760258],[48.285263,-13.807046],[48.33305,-13.61949],[48.377003,-13.563476],[48.584774,-13.451538],[48.761108,-13.402957],[48.795437,-13.291209],[48.807892,-13.127284],[48.912014,-12.962996],[48.949486,-12.829164],[48.898998,-12.749289],[48.903458,-12.687852],[48.810013,-12.505728],[48.749172,-12.452766],[48.760235,-12.39614],[48.853962,-12.413335],[48.889816,-12.483614],[48.943222,-12.483427],[48.95731,-12.37249],[49.084679,-12.263638],[49.143642,-12.259941],[49.143372,-12.099355],[49.240852,-11.945921],[49.293076,-11.963389],[49.355995,-12.099282],[49.354626,-12.148754],[49.248085,-12.224503],[49.392841,-12.248178],[49.447746,-12.35395],[49.513515,-12.350137],[49.568367,-12.436558],[49.594486,-12.530729],[49.548077,-12.642344],[49.640755,-12.694019],[49.680836,-12.799363],[49.733444,-12.741753],[49.791622,-12.812918],[49.803196,-12.890594],[49.929627,-13.044076],[49.919933,-13.191583],[49.977276,-13.287544],[50.026314,-13.517169],[50.059811,-13.559923],[50.088135,-13.687796],[50.130829,-13.75714],[50.137127,-13.976668],[50.165863,-14.060356],[50.142654,-14.215708],[50.201511,-14.315691],[50.179043,-14.419528],[50.183025,-14.582435],[50.221333,-14.671058],[50.261478,-14.858447],[50.335171,-15.035639],[50.429615,-15.144847],[50.48378,-15.266088],[50.468948,-15.39711],[50.427082,-15.552226],[50.307526,-15.825474],[50.219311,-15.990495],[50.160664,-15.987515],[50.017071,-15.866524],[50.022846,-15.787993],[49.955799,-15.734771],[49.963757,-15.629587],[49.893688,-15.546289],[49.903351,-15.444516],[49.722629,-15.44272],[49.61515,-15.560461],[49.655224,-15.708508],[49.730286,-15.902431],[49.672524,-16.044521],[49.749687,-16.166384],[49.856194,-16.224541],[49.811886,-16.347265],[49.846428,-16.488117],[49.834137,-16.576712],[49.723961,-16.76528],[49.776093,-16.859486],[49.637432,-16.888391],[49.583115,-16.948654],[49.424355,-17.303988],[49.410988,-17.365532],[49.452576,-17.4231],[49.474716,-17.594456],[49.518349,-17.700666],[49.406715,-18.090633],[49.427239,-18.167446],[49.369244,-18.237854],[49.336872,-18.41577],[49.228664,-18.65357],[49.193527,-18.760761],[49.008713,-19.203499],[48.98608,-19.335049],[48.885761,-19.562433],[48.818691,-19.820526],[48.818878,-19.920473],[48.73061,-20.132645],[48.603172,-20.397434],[48.503906,-20.714369],[48.44709,-20.997618],[48.365047,-21.208076],[48.315239,-21.404785],[48.194443,-21.74873],[47.959671,-22.305237],[47.897648,-22.480448],[47.841423,-22.844595],[47.76733,-23.0872],[47.733166,-23.270924],[47.634251,-23.531666],[47.591091,-23.796454],[47.483334,-24.026476],[47.420849,-24.127546],[47.346222,-24.301281],[47.284824,-24.54088],[47.191063,-24.738636],[47.200497,-24.77964],[47.123787,-24.869148],[47.140583,-24.918419],[46.983276,-25.03915],[46.84518,-25.10149],[46.766624,-25.160786],[46.654385,-25.190706],[46.522938,-25.169643],[46.296402,-25.19483],[46.03101,-25.291733],[45.87157,-25.370104],[45.610081,-25.549873],[45.516151,-25.579594],[45.291199,-25.585812],[45.18055,-25.608952],[45.11314,-25.535757],[44.97237,-25.482574],[44.897545,-25.394024],[44.68676,-25.307667],[44.354233,-25.260567],[44.324341,-25.182199],[44.197167,-25.082632],[44.110374,-25.074804],[44.027878,-25.001255],[44.005112,-24.858532],[43.917652,-24.720976],[43.928734,-24.6289],[43.835201,-24.509028],[43.76263,-24.468988],[43.670517,-24.331816],[43.676029,-24.061008],[43.63327,-23.755543],[43.654949,-23.620174],[43.722519,-23.597298],[43.763225,-23.462845],[43.61602,-23.31608],[43.620468,-23.213873],[43.589786,-23.076279],[43.48188,-22.992992],[43.370129,-22.855433],[43.284889,-22.55599],[43.262837,-22.376385],[43.2285,-22.274357],[43.236157,-22.08028],[43.329502,-21.870155],[43.349674,-21.74971],[43.462822,-21.650482],[43.462174,-21.477777],[43.485092,-21.359859],[43.597652,-21.288313],[43.713814,-21.29208],[43.805611,-21.221941],[43.866711,-21.053032],[43.883816,-20.906712],[43.933769,-20.801474],[44.042305,-20.712128],[44.116356,-20.48951],[44.232521,-20.407944],[44.263016,-20.307663],[44.367332,-20.134331],[44.443646,-20.061485],[44.486416,-19.954168],[44.41069,-19.751432]]],[[[48.257145,-13.200661],[48.307205,-13.221531],[48.343342,-13.343378],[48.259315,-13.416618],[48.184517,-13.367707],[48.195934,-13.279612],[48.257145,-13.200661]]],[[[50,-16.712439],[49.945042,-16.88446],[49.880703,-16.887184],[50,-16.712439]]]]},"properties":{"name":"马达加斯加","name_en":"MADAGASCAR","id":"MDG"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-78.775764,1.407844],[-78.67392,1.294611],[-78.551216,1.195196],[-78.431336,1.14484],[-78.373405,1.063676],[-78.197739,0.992448],[-78.121933,0.913911],[-77.974037,0.817894],[-77.845825,0.796523],[-77.709892,0.839663],[-77.69799,0.752383],[-77.60012,0.667353],[-77.500877,0.63114],[-77.464554,0.394914],[-77.253693,0.351608],[-77.123138,0.372101],[-77.085724,0.292625],[-76.847427,0.241906],[-76.723465,0.28503],[-76.556427,0.254928],[-76.404381,0.247996],[-76.404228,0.369004],[-76.26915,0.441074],[-76.217445,0.401696],[-76.132187,0.393933],[-76.097382,0.347009],[-76.015114,0.326612],[-75.883202,0.156614],[-75.733642,0.064395],[-75.617386,0.073483],[-75.539696,-0.012781],[-75.413093,-0.077917],[-75.2882,-0.093691],[-75.38765,-0.149056],[-75.478455,-0.118594],[-75.621948,-0.108895],[-75.626182,-0.25192],[-75.546265,-0.319943],[-75.44915,-0.328686],[-75.414513,-0.423733],[-75.358589,-0.443065],[-75.244949,-0.534989],[-75.2351,-0.610052],[-75.280167,-0.710882],[-75.218887,-0.855447],[-75.227821,-0.924618],[-75.283318,-0.980583],[-75.364357,-0.955734],[-75.535194,-1.529012],[-75.619064,-1.58611],[-76.044701,-2.128139],[-76.627319,-2.590585],[-76.960205,-2.706469],[-77.792847,-2.984906],[-77.983482,-3.123474],[-78.055809,-3.221404],[-78.195213,-3.364114],[-78.128502,-3.469319],[-78.144791,-3.526814],[-78.23951,-3.528318],[-78.240356,-3.453091],[-78.333687,-3.450904],[-78.350395,-3.678404],[-78.376602,-3.787185],[-78.483635,-3.920236],[-78.575271,-4.156133],[-78.568283,-4.237354],[-78.630951,-4.351128],[-78.609093,-4.447324],[-78.631866,-4.51791],[-78.736069,-4.653685],[-78.881432,-4.720123],[-78.912537,-4.825415],[-78.993012,-4.973155],[-79.260353,-4.967359],[-79.300377,-4.897835],[-79.416222,-4.798517],[-79.507691,-4.51312],[-79.557404,-4.511654],[-79.641129,-4.431675],[-79.703499,-4.468824],[-79.811897,-4.486319],[-79.91478,-4.381657],[-79.991737,-4.376193],[-80.06031,-4.305867],[-80.17971,-4.33502],[-80.334671,-4.470112],[-80.443405,-4.436912],[-80.443459,-4.370888],[-80.30513,-4.200802],[-80.44397,-4.194497],[-80.481392,-4.083902],[-80.439491,-3.998211],[-80.362061,-3.983935],[-80.286133,-4.017959],[-80.164093,-3.922341],[-80.162407,-3.806996],[-80.189613,-3.771819],[-80.191277,-3.604565],[-80.215927,-3.575285],[-80.219017,-3.437626],[-80.066368,-3.416462],[-80.026642,-3.352143],[-80.00306,-3.236716],[-79.916008,-3.176413],[-79.840645,-2.997842],[-79.848015,-2.908347],[-79.816589,-2.858039],[-79.776009,-2.672736],[-79.717766,-2.573724],[-79.800476,-2.432806],[-79.856003,-2.432459],[-79.88826,-2.562791],[-79.933327,-2.582931],[-79.964661,-2.481205],[-80.033684,-2.483345],[-80.254868,-2.649769],[-80.303955,-2.718868],[-80.390404,-2.640891],[-80.470077,-2.602025],[-80.663139,-2.416995],[-80.778686,-2.386959],[-80.897728,-2.310901],[-80.931938,-2.220409],[-80.772896,-2.137931],[-80.734756,-2.065394],[-80.759384,-1.976102],[-80.724052,-1.924024],[-80.772415,-1.756498],[-80.849571,-1.602453],[-80.764946,-1.477002],[-80.73584,-1.362868],[-80.843094,-1.21107],[-80.908775,-1.058962],[-80.829758,-0.959514],[-80.593567,-0.93132],[-80.529671,-0.841917],[-80.46022,-0.62965],[-80.427299,-0.59828],[-80.454308,-0.464317],[-80.489677,-0.393719],[-80.411041,-0.30991],[-80.389648,-0.234896],[-80.236031,-0.142108],[-80.068519,0.046261],[-80.031578,0.152207],[-80.0392,0.356717],[-80.063667,0.462827],[-80.012726,0.525792],[-80.026596,0.623158],[-80.089356,0.664245],[-80.09697,0.739059],[-80.041275,0.821698],[-79.982704,0.809233],[-79.795563,0.895989],[-79.738754,0.958134],[-79.545875,0.98192],[-79.429047,1.06437],[-79.240883,1.060904],[-79.1707,1.078279],[-79.051361,1.21463],[-78.890434,1.358924],[-78.775764,1.407844]]],[[[-91.375503,-0.748265],[-91.309746,-0.683175],[-91.182388,-0.681429],[-91.077896,-0.598214],[-91.214195,-0.477436],[-91.22802,-0.384248],[-91.320572,-0.339721],[-91.390656,-0.233409],[-91.408028,-0.043705],[-91.464348,-0.013604],[-91.547127,-0.051255],[-91.593956,-0.00577],[-91.489525,0.099127],[-91.310325,0.133355],[-91.270821,0.043228],[-91.198303,-0.020194],[-91.174652,-0.220768],[-91.108444,-0.308052],[-91.013184,-0.362745],[-90.940529,-0.478898],[-90.954384,-0.605595],[-90.897759,-0.604902],[-90.78141,-0.761548],[-90.824921,-0.789017],[-90.860145,-0.914237],[-91.016785,-0.987488],[-91.211006,-1.041758],[-91.309616,-1.011864],[-91.419525,-1.010341],[-91.502472,-0.919488],[-91.489243,-0.845282],[-91.375503,-0.748265]]],[[[-80,-2.821136],[-80.122444,-3.024569],[-80.245125,-3.064513],[-80.266045,-3.015692],[-80.257401,-2.846879],[-80.218277,-2.738645],[-80.113922,-2.693827],[-80.006454,-2.681433],[-79.896843,-2.741022],[-80,-2.821136]]],[[[-90.248924,-0.478073],[-90.166763,-0.569226],[-90.197426,-0.69762],[-90.235214,-0.744525],[-90.395355,-0.769708],[-90.534905,-0.69035],[-90.530441,-0.562264],[-90.483856,-0.520414],[-90.248924,-0.478073]]],[[[-91.6222,-0.291471],[-91.461662,-0.256403],[-91.379646,-0.347224],[-91.388412,-0.451414],[-91.520584,-0.49721],[-91.605484,-0.475892],[-91.650146,-0.388597],[-91.6222,-0.291471]]],[[[-90.771164,-0.145394],[-90.642487,-0.196014],[-90.546265,-0.300502],[-90.595367,-0.373743],[-90.742149,-0.355527],[-90.832275,-0.325106],[-90.826469,-0.159904],[-90.771164,-0.145394]]],[[[-89.273087,-0.702449],[-89.285111,-0.780473],[-89.409523,-0.921305],[-89.554245,-0.95114],[-89.60183,-0.879976],[-89.482651,-0.815571],[-89.45427,-0.758079],[-89.34272,-0.686139],[-89.273087,-0.702449]]],[[[-90.407494,-1.23411],[-90.35257,-1.271035],[-90.432838,-1.356724],[-90.510429,-1.312126],[-90.476654,-1.231783],[-90.407494,-1.23411]]],[[[-90.541206,0.339081],[-90.465858,0.39049],[-90.40152,0.329616],[-90.47728,0.280717],[-90.541206,0.339081]]],[[[-79.847092,-2.666837],[-79.886826,-2.647432],[-79.859627,-2.532264],[-79.812355,-2.553983],[-79.847092,-2.666837]]]]},"properties":{"name":"厄瓜多尔","name_en":"ECUADOR","id":"ECU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-16.560143,13.588785],[-16.648531,13.706559],[-16.624103,13.782422],[-16.708782,13.782033],[-16.756159,13.980047],[-16.820536,14.152424],[-16.873642,14.181312],[-16.936545,14.332979],[-17.011158,14.434271],[-17.060921,14.452889],[-17.158472,14.622553],[-17.231196,14.688976],[-17.346064,14.736648],[-17.423122,14.719052],[-17.45837,14.767251],[-17.296747,14.828509],[-17.128899,14.921032],[-16.865215,15.24762],[-16.759163,15.423878],[-16.612662,15.634755],[-16.534466,15.796805],[-16.505772,16.062185],[-16.442513,16.109158],[-16.451342,16.179411],[-16.351439,16.270952],[-16.28293,16.508194],[-16.189356,16.516907],[-16.11635,16.556532],[-16.044954,16.478445],[-15.896758,16.518282],[-15.730167,16.489618],[-15.549723,16.516355],[-15.468549,16.59667],[-15.405613,16.543444],[-15.313324,16.585203],[-15.232772,16.56377],[-15.138327,16.589573],[-15.000518,16.680454],[-14.943501,16.635187],[-14.81144,16.656029],[-14.749763,16.632645],[-14.497192,16.620464],[-14.332907,16.642593],[-14.195078,16.529514],[-13.951496,16.307236],[-13.845071,16.110891],[-13.745336,16.149332],[-13.677233,16.094675],[-13.576699,16.135065],[-13.488503,16.079823],[-13.3739,16.054352],[-13.374041,15.972376],[-13.284422,15.786712],[-13.216077,15.693663],[-13.255259,15.661987],[-13.09695,15.577058],[-13.060057,15.472794],[-12.968536,15.501324],[-12.943282,15.357313],[-12.86528,15.321995],[-12.89517,15.244122],[-12.701784,15.091796],[-12.617969,15.083086],[-12.468734,14.98527],[-12.452863,14.896153],[-12.403065,14.84775],[-12.241923,14.76061],[-12.148181,14.644514],[-12.225396,14.489707],[-12.204181,14.40152],[-12.103923,14.37071],[-12.096469,14.303162],[-12.024789,14.281689],[-11.987518,14.169964],[-12.014379,14.00028],[-11.944266,13.927796],[-11.955746,13.813754],[-12.079435,13.715892],[-11.96507,13.524791],[-11.875929,13.461216],[-11.895081,13.383931],[-11.812559,13.303765],[-11.751092,13.380618],[-11.644619,13.388708],[-11.533795,13.246002],[-11.539522,13.192318],[-11.452569,13.093689],[-11.355888,12.937011],[-11.408895,12.883683],[-11.388307,12.795812],[-11.449265,12.660594],[-11.356856,12.468019],[-11.379462,12.413562],[-11.459713,12.44149],[-11.663826,12.423407],[-11.761611,12.387862],[-11.893945,12.427207],[-12.01676,12.396586],[-12.096836,12.421313],[-12.15919,12.368048],[-12.343632,12.307308],[-12.474139,12.399061],[-12.564578,12.368556],[-12.621739,12.426272],[-12.737633,12.429408],[-12.781557,12.476256],[-12.922525,12.53701],[-12.968648,12.461672],[-13.050984,12.473949],[-13.076587,12.529708],[-13.05673,12.619293],[-13.350903,12.659568],[-13.709032,12.67622],[-14.317563,12.676457],[-15.179247,12.680789],[-15.329826,12.611763],[-15.429622,12.535113],[-15.630909,12.439417],[-15.703703,12.423807],[-15.958013,12.440459],[-16.062715,12.46932],[-16.214922,12.456376],[-16.389898,12.360582],[-16.602633,12.346563],[-16.672808,12.356055],[-16.717535,12.328193],[-16.771996,12.3941],[-16.796448,12.48383],[-16.772198,12.573088],[-16.791485,12.793349],[-16.752171,12.965691],[-16.755833,13.064252],[-16.68841,13.163771],[-15.812263,13.1591],[-15.80781,13.341087],[-15.670901,13.358396],[-15.603608,13.337339],[-15.510425,13.38702],[-15.383827,13.343554],[-15.296222,13.36043],[-15.235913,13.413007],[-15.205759,13.520348],[-15.140286,13.577108],[-14.929571,13.452005],[-14.768794,13.413065],[-14.659721,13.334338],[-14.580648,13.341462],[-14.463823,13.295171],[-14.409445,13.244022],[-14.244774,13.216782],[-14.141988,13.221724],[-14.095657,13.281738],[-14.002965,13.288833],[-13.841396,13.339051],[-13.799096,13.437148],[-13.878471,13.529345],[-13.964473,13.573399],[-14.084866,13.55295],[-14.247162,13.475917],[-14.34828,13.460607],[-14.471431,13.5442],[-14.532992,13.635179],[-14.616471,13.654],[-14.719204,13.61417],[-14.788958,13.661844],[-14.800082,13.721027],[-14.893263,13.792989],[-15.071154,13.82657],[-15.243262,13.752293],[-15.38122,13.75818],[-15.457903,13.681431],[-15.481128,13.587279],[-15.831667,13.584927],[-16.560143,13.588785]]]},"properties":{"name":"塞内加尔","name_en":"SENEGAL","id":"SEN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[173.208542,-41.326317],[173.399887,-41.159389],[173.48056,-41.158306],[173.570999,-41.068527],[173.634979,-41.082054],[173.703812,-41.016499],[173.857864,-41.02375],[173.949142,-41.120529],[174.094727,-40.999695],[174.213837,-41.074055],[174.198639,-41.187084],[174.029831,-41.480721],[174.14534,-41.562752],[174.185333,-41.720722],[174.272385,-41.748585],[174.1577,-41.876526],[173.964645,-42.043861],[173.881363,-42.194946],[173.699387,-42.346863],[173.68869,-42.405334],[173.596939,-42.426971],[173.507614,-42.509724],[173.495773,-42.570026],[173.312271,-42.886806],[173.079285,-43.052418],[172.88234,-43.100555],[172.797501,-43.147945],[172.719223,-43.294056],[172.718033,-43.548027],[173.080215,-43.698971],[173.117355,-43.776501],[173.084915,-43.850723],[172.951004,-43.899502],[172.83844,-43.892056],[172.73381,-43.818527],[172.35469,-43.862751],[172.129471,-43.923832],[171.622696,-44.127083],[171.342285,-44.282333],[171.251724,-44.367668],[171.257751,-44.446388],[171.179382,-44.554359],[171.160172,-44.646168],[171.168854,-44.866139],[171.089218,-45.016418],[170.905609,-45.170113],[170.822052,-45.333416],[170.827866,-45.469196],[170.662216,-45.618973],[170.595719,-45.730446],[170.740005,-45.800972],[170.681809,-45.894112],[170.362701,-45.934193],[170.281998,-45.97047],[170.196411,-46.059944],[170.180054,-46.138805],[169.92128,-46.303444],[169.809662,-46.344502],[169.807053,-46.449112],[169.586029,-46.576332],[169.491394,-46.560112],[169.355087,-46.638943],[169.208527,-46.659752],[169.113419,-46.64436],[169.001938,-46.675304],[168.849274,-46.659721],[168.775391,-46.574471],[168.605743,-46.582916],[168.341049,-46.539585],[168.263855,-46.494667],[168.14444,-46.355251],[168.031952,-46.386139],[167.91861,-46.356834],[167.860336,-46.387917],[167.725052,-46.360168],[167.716141,-46.267056],[167.511856,-46.158501],[167.399368,-46.156666],[167.308869,-46.252251],[167.105301,-46.254971],[166.846832,-46.206444],[166.688385,-46.211556],[166.608688,-46.156834],[166.681274,-46.114723],[166.587662,-46.018749],[166.440475,-45.999805],[166.424301,-45.847],[166.470108,-45.809891],[166.721588,-45.731056],[166.719452,-45.595859],[166.661835,-45.555416],[166.796616,-45.308556],[167.02417,-45.288502],[166.959274,-45.189693],[166.970032,-45.133305],[167.292312,-44.862389],[167.558472,-44.716362],[167.558701,-44.687416],[167.745468,-44.580944],[167.814026,-44.597279],[167.866562,-44.433945],[168.003967,-44.322945],[168.089218,-44.325195],[168.097168,-44.241055],[168.24855,-44.15086],[168.383804,-44.002388],[168.647247,-43.994472],[168.806641,-43.968639],[169.240524,-43.698307],[169.418503,-43.621361],[169.578781,-43.599335],[169.678192,-43.547222],[169.78978,-43.417389],[169.91742,-43.386112],[170.053726,-43.277638],[170.163498,-43.219002],[170.261032,-43.104889],[170.406357,-43.043499],[170.618698,-42.980305],[170.831497,-42.860111],[170.951752,-42.722084],[171.140167,-42.561638],[171.216888,-42.38036],[171.306671,-42.259998],[171.326111,-42.110443],[171.446243,-41.886028],[171.460632,-41.748085],[171.647141,-41.744972],[171.847382,-41.633556],[171.981857,-41.448917],[172.058197,-41.39114],[172.091385,-41.273499],[172.111771,-40.881168],[172.225479,-40.773304],[172.369003,-40.701721],[172.451141,-40.631363],[172.647354,-40.508335],[172.746674,-40.51086],[172.653229,-40.65625],[172.729355,-40.766277],[172.849442,-40.836388],[172.996521,-40.783695],[173.068115,-40.963333],[173.002747,-41.067417],[173.012161,-41.151722],[173.077225,-41.204029],[173.105865,-41.292946],[173.208542,-41.326317]]],[[[174.214523,-35.318749],[174.260773,-35.227028],[174.363007,-35.431446],[174.421646,-35.433361],[174.539383,-35.602554],[174.500031,-35.650139],[174.557922,-35.8195],[174.456528,-35.924389],[174.501053,-36.02739],[174.580978,-36.048584],[174.64859,-36.172974],[174.742356,-36.256748],[174.789688,-36.374779],[174.726257,-36.409527],[174.693253,-36.576946],[174.813354,-36.844028],[174.945618,-36.888],[175.035354,-36.8745],[175.079437,-36.942612],[175.18953,-36.93264],[175.279556,-36.989613],[175.292358,-37.121029],[175.336334,-37.208305],[175.447723,-37.213028],[175.543839,-37.164249],[175.496445,-36.980251],[175.406494,-36.858749],[175.490753,-36.761196],[175.425049,-36.698082],[175.412201,-36.587776],[175.338867,-36.552193],[175.325165,-36.479057],[175.501999,-36.518166],[175.581909,-36.627945],[175.614578,-36.722084],[175.736496,-36.706085],[175.777618,-36.823055],[175.854889,-36.941612],[175.886063,-37.041416],[175.872391,-37.200028],[175.942306,-37.402748],[176.088089,-37.577026],[176.228271,-37.669056],[176.492782,-37.773945],[176.630448,-37.843555],[176.901581,-37.913082],[177.033524,-37.961224],[177.17775,-37.986752],[177.386108,-37.98225],[177.540451,-37.905109],[177.742477,-37.672138],[177.868744,-37.650223],[178.021774,-37.54678],[178.185608,-37.533001],[178.368576,-37.628639],[178.472336,-37.643665],[178.553559,-37.695278],[178.40509,-37.874054],[178.402115,-37.950527],[178.340301,-38.009556],[178.370392,-38.093388],[178.310272,-38.235832],[178.332977,-38.422806],[178.286117,-38.526527],[178.076523,-38.690056],[177.979812,-38.679333],[177.886887,-39.00761],[177.916031,-39.092167],[177.999161,-39.111084],[177.858688,-39.265083],[177.817856,-39.166584],[177.819916,-39.079472],[177.633301,-39.051418],[177.43306,-39.060722],[177.216553,-39.12014],[177.051941,-39.192081],[176.982025,-39.300388],[176.893997,-39.37775],[176.875702,-39.449001],[176.987228,-39.642361],[177.086441,-39.651779],[177.012253,-39.735806],[176.98883,-39.849251],[176.92897,-39.935055],[176.864838,-40.135193],[176.786591,-40.219639],[176.698334,-40.249443],[176.624527,-40.429165],[176.617493,-40.497055],[176.498032,-40.534332],[176.309784,-40.720306],[176.223801,-40.872471],[176.148743,-40.953583],[176.060562,-41.130917],[175.958359,-41.247581],[175.870865,-41.287029],[175.810089,-41.362583],[175.674393,-41.420277],[175.442062,-41.575748],[175.236496,-41.611305],[175.195495,-41.532082],[175.219254,-41.454887],[175.051254,-41.378529],[174.920608,-41.442471],[174.819809,-41.348446],[174.710388,-41.36486],[174.611618,-41.288277],[174.712784,-41.223026],[174.940689,-41.001415],[174.979477,-40.895668],[175.077164,-40.809334],[175.155136,-40.677891],[175.198944,-40.54911],[175.241165,-40.293057],[175.14978,-40.090057],[175.046753,-39.98803],[174.88884,-39.881363],[174.725418,-39.868721],[174.54744,-39.811668],[174.339783,-39.651196],[174.192947,-39.582806],[173.94902,-39.537693],[173.792358,-39.415833],[173.748474,-39.281918],[173.798523,-39.193333],[173.906143,-39.1245],[174.186188,-38.99361],[174.375076,-38.991528],[174.562805,-38.832249],[174.602585,-38.734112],[174.645447,-38.452194],[174.635254,-38.385693],[174.712479,-38.305695],[174.711716,-38.187416],[174.78244,-38.084778],[174.795029,-38.004917],[174.767395,-37.842083],[174.843277,-37.797501],[174.703445,-37.37114],[174.532303,-37.078335],[174.480942,-37.043026],[174.4207,-36.825943],[174.286438,-36.63364],[174.154159,-36.479252],[174.233475,-36.424721],[174.347778,-36.548832],[174.414078,-36.479027],[174.303284,-36.372639],[174.22995,-36.260887],[174.125412,-36.171333],[174.041946,-36.165417],[174.178757,-36.33075],[174.159469,-36.381554],[174.03833,-36.394165],[173.98381,-36.239029],[173.838089,-36.062832],[173.277664,-35.436974],[173.158646,-35.290111],[173.049301,-35.188972],[173.13652,-35.168583],[173.173523,-35.054638],[173.130661,-34.963528],[172.868576,-34.650112],[172.726669,-34.527389],[172.670883,-34.419807],[172.792862,-34.450165],[172.851562,-34.411556],[172.961838,-34.423416],[173.019837,-34.648418],[173.149002,-34.7855],[173.172439,-34.856304],[173.364395,-34.900028],[173.426086,-34.982113],[173.514191,-34.985111],[173.595245,-34.930805],[173.760559,-35.005695],[173.893143,-35.00975],[173.983063,-35.120056],[173.986832,-35.195362],[174.062164,-35.214584],[174.11319,-35.307693],[174.214523,-35.318749]]],[[[168.119278,-47.102444],[167.94928,-47.128582],[167.813385,-47.189251],[167.671051,-47.172443],[167.640366,-47.261333],[167.454391,-47.274582],[167.467667,-47.214249],[167.568603,-47.14772],[167.559006,-47.093166],[167.68428,-46.963749],[167.766251,-46.919834],[167.697525,-46.790779],[167.721329,-46.711166],[167.876221,-46.681278],[167.980301,-46.720055],[168.002197,-46.786583],[168.140671,-46.906723],[168.211563,-47.031387],[168.119278,-47.102444]]],[[[-176.661133,-43.810135],[-176.827515,-43.845108],[-176.879639,-43.800945],[-176.54747,-43.741444],[-176.526855,-43.857983],[-176.392288,-44.017433],[-176.577499,-44.132992],[-176.644791,-44.109177],[-176.685318,-44.010723],[-176.546661,-43.950546],[-176.550781,-43.882946],[-176.661133,-43.810135]]],[[[166.216782,-50.516029],[166.190613,-50.740749],[166.216339,-50.856361],[165.895584,-50.767887],[166.089386,-50.668835],[166.095383,-50.554916],[166.216782,-50.516029]]],[[[175.350555,-36.216557],[175.335892,-36.072887],[175.501755,-36.172832],[175.428589,-36.308945],[175.350555,-36.216557]]],[[[166.590271,-45.60939],[166.707642,-45.628056],[166.7155,-45.70636],[166.583725,-45.756863],[166.527466,-45.684055],[166.590271,-45.60939]]],[[[173.829025,-40.765167],[173.941772,-40.798389],[173.834442,-40.920387],[173.769729,-40.875137],[173.829025,-40.765167]]]]},"properties":{"name":"新西兰","name_en":"NEW ZEALAND","id":"NZL"}}, + {"type":"Feature","geometry":null,"properties":{"name":"马尔代夫","name_en":"MALDIVES","id":"MDV"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-170.840591,-14.325109],[-170.743469,-14.297415],[-170.740738,-14.370086],[-170.840591,-14.325109]]]},"properties":{"name":"美属萨摩亚","name_en":"AMERICAN SAMOA","id":"ASM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.445274,10.421],[104.341553,10.494583],[104.303497,10.473972],[104.241776,10.571083],[104.050087,10.548278],[103.866333,10.618916],[103.816971,10.541],[103.63028,10.489695],[103.492279,10.622806],[103.545692,10.714666],[103.637917,10.735611],[103.720253,10.855111],[103.660942,10.992666],[103.658279,11.077084],[103.593971,11.089084],[103.514503,11.16525],[103.411003,10.947222],[103.349693,10.877277],[103.25322,10.917361],[103.173416,10.85625],[103.101059,10.912611],[103.117302,11.100083],[103.066559,11.236055],[103.11264,11.448722],[103.052864,11.543111],[102.960777,11.569305],[102.919525,11.636111],[102.916969,11.746],[102.853058,11.828806],[102.783722,11.980361],[102.781387,12.048333],[102.715614,12.172611],[102.744636,12.368861],[102.792221,12.406111],[102.719223,12.523861],[102.64328,12.603416],[102.506302,12.692639],[102.543304,12.813778],[102.48967,12.946889],[102.499969,13.016666],[102.406524,13.146389],[102.351585,13.297778],[102.371193,13.574945],[102.45314,13.557917],[102.567558,13.577027],[102.609085,13.699695],[102.727531,13.763611],[102.794998,13.932305],[102.902496,14.054444],[102.961304,14.201278],[103.092697,14.292639],[103.272224,14.3455],[103.469002,14.36225],[103.532723,14.408916],[103.854195,14.366667],[104.023865,14.332889],[104.205696,14.400611],[104.476776,14.344666],[104.578026,14.354389],[104.64611,14.421333],[104.759056,14.406333],[104.805336,14.434334],[105.000809,14.368111],[104.997887,14.30575],[105.051888,14.214222],[105.134941,14.224444],[105.213165,14.336],[105.209946,14.278361],[105.282692,14.170417],[105.366943,14.102139],[105.458336,14.102222],[105.563721,14.156472],[105.707726,14.086638],[105.792274,14.079473],[105.798805,14.020416],[105.904472,13.933333],[106.108276,13.913584],[106.105248,13.984389],[106.16967,14.021083],[106.103416,14.177806],[106.035057,14.232166],[106.002197,14.314417],[106.094803,14.365389],[106.221001,14.360027],[106.254723,14.438945],[106.415726,14.448277],[106.463753,14.546805],[106.532585,14.587611],[106.571472,14.495639],[106.717331,14.418472],[106.857086,14.287833],[106.959252,14.308888],[107.066948,14.433888],[107.173637,14.415584],[107.248306,14.476666],[107.304611,14.583138],[107.431831,14.52],[107.466835,14.608889],[107.544609,14.686],[107.556694,14.6175],[107.490364,14.40275],[107.395248,14.317972],[107.411781,14.264694],[107.340584,14.118806],[107.367722,14.011306],[107.448387,13.995806],[107.477417,13.850028],[107.455444,13.791],[107.528916,13.748333],[107.618469,13.516084],[107.627724,13.366111],[107.496193,13.027833],[107.496559,12.891417],[107.552635,12.819583],[107.591614,12.55275],[107.546028,12.345472],[107.40847,12.25025],[107.350334,12.3255],[107.153053,12.266501],[107.14389,12.227333],[106.997559,12.088722],[106.937859,12.062388],[106.783997,12.066778],[106.722031,11.968583],[106.463219,11.982445],[106.467224,11.867473],[106.387665,11.699555],[106.30661,11.672305],[106.26564,11.722028],[106.03672,11.77525],[105.958809,11.641723],[105.893585,11.673778],[105.811302,11.598083],[105.877167,11.548528],[105.886749,11.358361],[105.871559,11.294],[105.920944,11.225417],[106.006805,11.190556],[106.10717,11.073389],[106.186279,11.058194],[106.207664,10.983806],[106.146332,10.968083],[106.192497,10.829],[106.094749,10.805833],[105.970779,10.896528],[105.928558,10.835139],[105.777527,11.026472],[105.544777,10.950222],[105.429581,10.966473],[105.361862,10.882861],[105.060943,10.927944],[105.034363,10.87925],[105.08664,10.706611],[104.937859,10.614722],[104.863357,10.521667],[104.593025,10.52975],[104.543808,10.453222],[104.445274,10.421]]],[[[103,11.249111],[102.974831,11.392611],[103.03653,11.3715],[103.041359,11.282278],[103,11.249111]]]]},"properties":{"name":"柬埔寨","name_en":"CAMBODIA","id":"KHM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.359917,42.312176],[22.26939,42.36224],[22.095442,42.301598],[21.944319,42.344635],[21.842243,42.325295],[21.684143,42.242065],[21.481777,42.280495],[21.38279,42.241936],[21.298712,42.139797],[21.222313,42.094505],[21.166178,42.196102],[21.104624,42.205749],[20.885305,42.095749],[20.792162,42.083061],[20.748327,41.991646],[20.736641,41.878132],[20.5935,41.877003],[20.623377,41.97604],[20.555063,42.083748],[20.523884,42.211525],[20.338806,42.328011],[20.246615,42.325272],[20.221104,42.432964],[20.079126,42.555374],[20.111206,42.654873],[19.988537,42.692959],[20.071377,42.777054],[20.202166,42.754593],[20.349821,42.896553],[20.070423,43.012154],[19.966637,43.079643],[19.848837,43.100098],[19.775926,43.159775],[19.634527,43.171955],[19.508838,43.279224],[19.44722,43.386131],[19.244335,43.469654],[19.232298,43.525471],[19.294357,43.601234],[19.500746,43.568748],[19.515028,43.677151],[19.465321,43.763016],[19.312622,43.885197],[19.239826,43.981739],[19.525326,43.955723],[19.621109,44.02166],[19.359077,44.183907],[19.324428,44.271614],[19.166283,44.28688],[19.102947,44.371098],[19.170782,44.524139],[19.327225,44.729771],[19.370605,44.870922],[19.307299,44.908611],[19.171976,44.921188],[19.017055,44.855431],[19.139517,44.940189],[19.092125,44.971352],[19.105688,45.078972],[19.188095,45.166916],[19.441498,45.169437],[19.421972,45.232319],[19.249031,45.24403],[19.119509,45.290562],[18.970595,45.378552],[19.024706,45.424751],[19.010475,45.496754],[18.89846,45.580593],[18.96822,45.648125],[18.908695,45.744385],[18.889885,45.920891],[18.961947,45.925518],[19.104639,46.039871],[19.147331,45.996174],[19.284723,45.996616],[19.415636,46.045582],[19.5678,46.178238],[19.698372,46.187988],[19.821117,46.130264],[19.934263,46.175739],[20.09416,46.175976],[20.267302,46.117104],[20.404493,45.964695],[20.660127,45.829185],[20.700541,45.750069],[20.802914,45.738106],[20.766083,45.612164],[20.950686,45.373135],[21.176018,45.32515],[21.202452,45.264881],[21.482658,45.191627],[21.456003,45.041126],[21.40622,44.977875],[21.546654,44.930595],[21.559759,44.888809],[21.367008,44.866585],[21.397186,44.778271],[21.552271,44.769863],[21.629421,44.659836],[21.990036,44.633564],[22.042631,44.537945],[22.180405,44.480103],[22.27734,44.628353],[22.464455,44.714977],[22.580832,44.632389],[22.712875,44.599995],[22.693169,44.516361],[22.582167,44.548164],[22.465515,44.443966],[22.566397,44.303169],[22.67008,44.284798],[22.676144,44.21545],[22.611484,44.1133],[22.621105,44.062893],[22.408533,44.005283],[22.356945,43.812294],[22.408287,43.697819],[22.476745,43.656979],[22.534889,43.470406],[22.658491,43.42691],[22.827429,43.328751],[22.897867,43.224972],[22.985187,43.201569],[22.980762,43.111023],[22.78912,42.980614],[22.750811,42.889996],[22.586908,42.890301],[22.43973,42.806221],[22.486229,42.750229],[22.470329,42.560928],[22.55331,42.50034],[22.533724,42.420296],[22.461,42.340885],[22.359917,42.312176]]]},"properties":{"name":"塞尔维亚","name_en":"Serbia","id":"SRB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.036167,45.936943],[7.00475,45.884972],[6.801944,45.829861],[6.804917,45.725224],[6.973444,45.633221],[7.007278,45.51136],[7.177945,45.402638],[7.1085,45.325359],[7.122278,45.257751],[6.997167,45.224304],[6.838833,45.137917],[6.758417,45.160862],[6.615694,45.105221],[6.722583,45.030888],[6.743639,44.918667],[6.859472,44.856472],[6.994916,44.85014],[7.02125,44.750446],[6.956945,44.678001],[6.92575,44.579666],[6.849278,44.533279],[6.891722,44.380085],[7.026028,44.227196],[7.074194,44.236],[7.250889,44.157028],[7.424528,44.118751],[7.507472,44.151417],[7.667444,44.163918],[7.711333,44.092804],[7.640555,43.982944],[7.486667,43.868584],[7.523389,43.789722],[7.406806,43.731972],[7.243472,43.702415],[7.163972,43.663807],[7.124278,43.590946],[6.986278,43.555222],[6.851222,43.416027],[6.731639,43.416],[6.708222,43.347916],[6.62875,43.310944],[6.658972,43.201363],[6.157333,43.093166],[5.910333,43.091278],[5.589833,43.169556],[5.527916,43.220276],[5.353667,43.214474],[5.360278,43.320835],[5.241416,43.339443],[5.027084,43.338444],[4.926444,43.442165],[4.829084,43.33725],[4.674194,43.352585],[4.602389,43.451221],[4.209667,43.469749],[4.124278,43.500252],[4.071055,43.56778],[3.982222,43.553139],[3.7965,43.450722],[3.6545,43.396526],[3.519694,43.299194],[3.408056,43.297279],[3.260778,43.235527],[3.112444,43.124279],[3.029055,42.944946],[3.057944,42.922611],[3.029222,42.787834],[3.039778,42.556694],[3.1325,42.524166],[3.164806,42.440807],[3.034139,42.483223],[2.849611,42.460945],[2.703444,42.416832],[2.659167,42.34264],[2.497555,42.34536],[2.31,42.430363],[2.150667,42.426056],[2.070028,42.363609],[1.97225,42.377998],[1.945639,42.438667],[1.7235,42.50386],[1.77,42.57164],[1.690195,42.634918],[1.554417,42.658695],[1.439916,42.606499],[1.347944,42.720749],[1.140972,42.725113],[1.086056,42.78389],[0.935583,42.793583],[0.703,42.867474],[0.647333,42.791332],[0.672306,42.687305],[0.439889,42.696388],[0.353778,42.721359],[0.288722,42.676582],[0.181917,42.737083],[-0.013778,42.694],[-0.107139,42.735668],[-0.148945,42.808998],[-0.290222,42.846584],[-0.561222,42.791222],[-0.76725,42.972111],[-0.931889,42.95739],[-1.108083,43.025223],[-1.305833,43.077694],[-1.41825,43.046471],[-1.427694,43.123165],[-1.386278,43.237583],[-1.501389,43.290638],[-1.624306,43.262196],[-1.788528,43.355499],[-1.672861,43.391418],[-1.547389,43.500084],[-1.446834,43.654724],[-1.434111,43.738918],[-1.319389,44.128918],[-1.276167,44.333832],[-1.263472,44.525501],[-1.189889,44.664806],[-1.02425,44.669418],[-1.160639,44.77272],[-1.223583,44.859528],[-1.157889,45.301529],[-1.156583,45.478584],[-1.067361,45.516251],[-0.798056,45.342556],[-0.699111,45.10936],[-0.662583,45.127972],[-0.719833,45.339306],[-0.846917,45.507195],[-0.972,45.561417],[-1.020222,45.618916],[-1.240305,45.707806],[-1.227972,45.789417],[-1.138083,45.810612],[-1.074111,45.907196],[-1.052611,46.009861],[-1.134389,46.128613],[-1.223555,46.162556],[-1.129917,46.257168],[-1.305306,46.301083],[-1.362472,46.346306],[-1.467389,46.345722],[-1.531972,46.408001],[-1.618889,46.412056],[-1.804639,46.487083],[-1.861472,46.605721],[-1.941611,46.689167],[-2.134972,46.812332],[-2.147,46.886471],[-2.040861,46.952362],[-1.984445,47.032444],[-2.057917,47.097778],[-2.24325,47.134499],[-2.153972,47.196972],[-2.419361,47.257137],[-2.543806,47.381695],[-2.47175,47.418221],[-2.499583,47.490082],[-2.730945,47.543583],[-2.682917,47.608749],[-2.963278,47.600529],[-3.134667,47.53986],[-3.158222,47.605778],[-3.274139,47.675915],[-3.449805,47.692333],[-3.526444,47.760834],[-3.860528,47.801834],[-3.994278,47.852943],[-4.112222,47.865196],[-4.17675,47.794807],[-4.340361,47.795223],[-4.355805,47.877251],[-4.432278,47.966862],[-4.714583,48.03653],[-4.715111,48.069557],[-4.371639,48.112694],[-4.310083,48.197529],[-4.511639,48.380501],[-4.616,48.340305],[-4.764861,48.374638],[-4.781417,48.502556],[-4.708667,48.572056],[-4.615556,48.578777],[-4.36075,48.679249],[-3.975,48.722137],[-3.869,48.638248],[-3.819306,48.717777],[-3.58075,48.677528],[-3.588944,48.773499],[-3.540333,48.828724],[-3.436917,48.80164],[-3.327222,48.841473],[-3.089639,48.872196],[-3.01925,48.770473],[-2.836917,48.656528],[-2.826667,48.596054],[-2.643972,48.528751],[-2.562666,48.593555],[-2.338083,48.674721],[-2.219167,48.591835],[-2.1415,48.637917],[-1.864667,48.704498],[-1.8515,48.622917],[-1.7055,48.611332],[-1.568361,48.639389],[-1.500917,48.688168],[-1.572278,48.751221],[-1.564667,48.979889],[-1.610111,49.107029],[-1.605555,49.215557],[-1.824028,49.406055],[-1.860195,49.653721],[-1.824583,49.696556],[-1.627695,49.649029],[-1.37,49.713028],[-1.233667,49.62825],[-1.306167,49.581501],[-1.266167,49.49361],[-1.181694,49.42086],[-1.0825,49.393944],[-0.923611,49.395084],[-0.817778,49.357777],[-0.407139,49.338001],[-0.220167,49.283585],[0.048083,49.345833],[0.131055,49.404278],[0.070333,49.508057],[0.16625,49.689583],[0.588083,49.856804],[1.027639,49.920502],[1.2075,49.97636],[1.44325,50.102749],[1.543055,50.281612],[1.586833,50.535057],[1.565083,50.702332],[1.607389,50.803501],[1.579416,50.862305],[1.755028,50.95261],[2.383944,51.049305],[2.546944,51.092804],[2.629583,50.951611],[2.635861,50.816944],[2.7175,50.816002],[2.795445,50.726501],[3.139944,50.790722],[3.214695,50.712639],[3.292972,50.522278],[3.659583,50.453724],[3.659694,50.365639],[4.020805,50.355389],[4.217611,50.261196],[4.130222,50.13475],[4.231139,50.078945],[4.142556,50.028889],[4.194778,49.960888],[4.307639,49.970696],[4.456695,49.941696],[4.680639,49.999474],[4.705056,50.098972],[4.843917,50.099693],[4.799056,49.957111],[4.884639,49.903694],[4.876333,49.795471],[4.990055,49.801361],[5.164,49.695526],[5.307389,49.673752],[5.433528,49.594002],[5.480139,49.503029],[5.649917,49.55022],[5.816611,49.546612],[5.985555,49.457333],[6.254083,49.50911],[6.374583,49.458832],[6.555306,49.42186],[6.591916,49.318001],[6.669194,49.280224],[6.732139,49.168083],[6.852306,49.219807],[7.014861,49.189499],[7.050833,49.117527],[7.298194,49.11536],[7.434166,49.18214],[7.567722,49.081276],[7.678972,49.047359],[7.943278,49.056473],[8.207139,48.971054],[8.108723,48.825554],[7.843528,48.645084],[7.669139,48.219944],[7.581028,48.121029],[7.611055,48],[7.528666,47.781361],[7.521139,47.668835],[7.580917,47.58239],[7.512084,47.506279],[7.387833,47.437611],[7.174778,47.448276],[7.191555,47.487694],[6.985056,47.50214],[6.872278,47.366249],[6.941167,47.291637],[6.855111,47.1675],[6.705,47.090221],[6.623194,47.002304],[6.479111,46.972832],[6.434167,46.770054],[6.271972,46.695583],[6.109305,46.586029],[6.141389,46.534695],[6.067,46.416084],[6.151667,46.360748],[6.103417,46.255138],[5.971861,46.219723],[5.961667,46.153751],[6.122111,46.154888],[6.285083,46.235527],[6.208278,46.317974],[6.325972,46.408222],[6.500472,46.460667],[6.668528,46.459946],[6.806194,46.431332],[6.762306,46.356224],[6.851305,46.293724],[6.776667,46.150833],[6.891583,46.129776],[7.036167,45.936943]]],[[[9.487445,42.851666],[9.445888,42.658279],[9.535055,42.544971],[9.531361,42.380501],[9.561556,42.278973],[9.533222,42.090862],[9.419528,41.967751],[9.394889,41.880859],[9.408611,41.75375],[9.366361,41.599777],[9.267333,41.506943],[9.222305,41.372776],[9.180139,41.372334],[9.034862,41.476082],[8.926695,41.494026],[8.788889,41.573112],[8.818194,41.638943],[8.906417,41.68689],[8.697,41.750526],[8.780111,41.840363],[8.771584,41.930889],[8.623028,41.909752],[8.595278,41.969387],[8.737638,42.045612],[8.576,42.160889],[8.571639,42.232029],[8.690583,42.275055],[8.598556,42.359501],[8.656362,42.427582],[8.663944,42.518665],[8.714916,42.575832],[8.929778,42.652111],[9.011278,42.65036],[9.168528,42.74464],[9.341167,42.73764],[9.311584,42.840973],[9.357972,42.927528],[9.340694,43.000557],[9.457583,42.996918],[9.487445,42.851666]]],[[[-1.194611,45.86647],[-1.383417,45.951057],[-1.362361,46.027363],[-1.244028,45.990082],[-1.194611,45.86647]]]]},"properties":{"name":"克利珀顿岛(法)","name_en":"Clipperton Island (France)","id":"FRA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[21.276501,55.245693],[21.300194,55.299835],[21.198111,55.345196],[21.259388,55.460751],[21.136444,55.693474],[21.085028,55.730804],[21.048195,55.910999],[21.071417,56.063446],[21.194584,56.075832],[21.329971,56.213055],[21.605667,56.322166],[21.697556,56.310917],[22,56.414806],[22.583111,56.39072],[22.637611,56.365196],[23.015583,56.392139],[23.174723,56.364361],[23.366388,56.381111],[23.536139,56.332863],[23.776777,56.365696],[24.014778,56.330029],[24.157612,56.256668],[24.329001,56.298527],[24.438833,56.258583],[24.561388,56.283028],[24.652916,56.370945],[24.874083,56.416389],[25.097416,56.186501],[25.307167,56.148834],[25.685,56.138973],[25.683166,56.09914],[26.02,55.968918],[26.206638,55.856304],[26.279388,55.758972],[26.379167,55.703999],[26.619667,55.674362],[26.628389,55.580776],[26.549889,55.489887],[26.558945,55.390388],[26.810556,55.322834],[26.693501,55.164307],[26.61511,55.142445],[26.372444,55.152748],[26.276138,55.091167],[26.221972,55.002514],[25.867794,54.922829],[25.754044,54.815327],[25.722933,54.573635],[25.559239,54.346996],[25.693129,54.320606],[25.796822,54.204521],[25.665045,54.140579],[25.542711,54.158524],[25.586712,54.249744],[25.52899,54.295162],[25.242239,54.264301],[25.077656,54.141216],[24.954099,54.162746],[24.821545,54.122993],[24.841938,54.01965],[24.759064,53.954456],[24.632223,54.006084],[24.43325,53.909222],[24.246639,53.919109],[24.15525,53.961666],[23.997389,53.939724],[23.935749,53.966557],[23.63611,53.916668],[23.505945,53.966583],[23.488667,54.151833],[23.356083,54.230389],[23.147833,54.311085],[23.049,54.312363],[22.99572,54.385845],[22.854555,54.425472],[22.793434,54.368225],[22.702083,54.465332],[22.686083,54.588444],[22.728861,54.694363],[22.892805,54.813721],[22.731333,54.966446],[22.612473,55.020248],[22.275888,55.067139],[22.071056,55.026196],[21.748638,55.127945],[21.65336,55.182335],[21.502083,55.1945],[21.411667,55.277443],[21.276501,55.245693]]]},"properties":{"name":"立陶宛","name_en":"LITHUANIA","id":"LTU"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[40.394444,-10.517681],[40.452347,-10.471883],[40.52451,-10.489897],[40.527741,-10.575847],[40.576374,-10.602095],[40.564461,-10.698215],[40.481171,-10.773785],[40.608048,-10.849437],[40.494762,-10.941436],[40.496483,-10.996605],[40.570305,-11.032982],[40.379261,-11.326002],[40.478878,-11.404044],[40.421963,-11.556645],[40.459919,-11.615085],[40.437664,-11.724973],[40.4902,-11.849855],[40.522308,-11.99235],[40.485954,-12.136539],[40.513897,-12.204812],[40.476173,-12.264604],[40.513641,-12.390898],[40.458351,-12.501168],[40.552277,-12.527743],[40.550789,-12.585272],[40.631348,-12.754456],[40.573525,-12.801418],[40.528282,-12.895707],[40.479622,-12.877263],[40.41119,-12.930913],[40.421074,-12.996281],[40.58635,-12.964336],[40.5546,-13.059202],[40.565926,-13.309647],[40.587219,-13.354557],[40.527439,-13.510841],[40.565998,-13.560495],[40.542198,-13.66944],[40.577057,-13.708812],[40.596107,-13.892828],[40.637352,-14.029299],[40.614277,-14.139812],[40.527584,-14.165513],[40.589397,-14.230814],[40.698746,-14.181693],[40.741096,-14.273749],[40.732544,-14.33021],[40.647552,-14.385554],[40.63662,-14.454228],[40.811092,-14.402266],[40.837311,-14.486095],[40.800663,-14.623953],[40.840851,-14.673733],[40.842995,-14.756621],[40.805443,-14.839107],[40.728565,-14.882122],[40.756188,-14.976003],[40.667385,-15.016002],[40.628792,-15.086061],[40.519413,-15.128909],[40.565239,-15.199957],[40.624165,-15.152279],[40.676945,-15.250732],[40.556034,-15.448295],[40.556431,-15.493736],[40.427124,-15.607571],[40.346069,-15.734962],[40.157978,-15.928789],[40.127052,-16.011726],[40.025089,-16.179283],[39.951645,-16.2421],[39.883503,-16.236608],[39.770443,-16.330008],[39.84605,-16.451214],[39.572483,-16.610893],[39.459149,-16.692646],[39.277336,-16.777088],[39.118446,-16.908339],[39.063374,-17.007805],[38.943256,-17.017538],[38.870289,-17.052828],[38.70298,-17.079676],[38.449982,-17.147686],[38.25713,-17.221176],[38.15078,-17.286591],[37.935665,-17.349081],[37.29121,-17.709904],[37.132809,-17.832033],[36.988052,-18.011757],[36.875885,-18.188539],[36.821163,-18.176191],[36.774414,-18.282946],[36.533619,-18.508629],[36.365932,-18.727785],[36.401325,-18.777855],[36.316368,-18.874884],[36.262257,-18.806534],[36.181198,-18.887623],[35.962654,-18.94244],[35.697441,-19.098423],[35.596279,-19.23719],[35.446007,-19.378502],[35.389534,-19.471632],[35.126217,-19.691971],[34.878605,-19.85202],[34.781891,-19.85158],[34.740841,-20.049953],[34.764446,-20.15867],[34.654129,-20.417467],[34.70837,-20.473677],[34.644535,-20.527231],[34.766979,-20.559282],[34.820225,-20.672871],[34.968468,-20.706442],[34.995495,-20.831881],[35.105282,-20.931656],[35.061478,-20.952293],[35.084705,-21.048538],[35.045513,-21.085249],[35.066772,-21.252214],[35.132256,-21.411381],[35.25193,-21.584286],[35.276245,-21.812931],[35.321907,-21.918272],[35.311134,-21.965792],[35.34,-22.170038],[35.49971,-22.129923],[35.542393,-22.319862],[35.536327,-22.449287],[35.502022,-22.562683],[35.511543,-22.805595],[35.533295,-22.882851],[35.595963,-22.957952],[35.488136,-23.161543],[35.488552,-23.33234],[35.426777,-23.502272],[35.421684,-23.691795],[35.366463,-23.733324],[35.397289,-23.833418],[35.534352,-23.909054],[35.482052,-24.155542],[35.413948,-24.254887],[35.203091,-24.501144],[35.145374,-24.58902],[35.018543,-24.664402],[34.795814,-24.759768],[34.46167,-24.865425],[33.695503,-25.130939],[33.298172,-25.300146],[33.04924,-25.430679],[32.920727,-25.513496],[32.785854,-25.660274],[32.743252,-25.798054],[32.600708,-25.976425],[32.672134,-26.128227],[32.837955,-26.293072],[32.89875,-26.132006],[32.962692,-26.08695],[32.927998,-26.326784],[32.926906,-26.452761],[32.89114,-26.647194],[32.895973,-26.856844],[32.847698,-26.868052],[32.353603,-26.860994],[32.133663,-26.834974],[32.1367,-26.535561],[32.080219,-26.409088],[32.074924,-26.312489],[32.108067,-26.165949],[32.087742,-26.010904],[31.982126,-25.952051],[31.938053,-25.830791],[32.012565,-25.637625],[31.984806,-25.460144],[32.025043,-25.373081],[32.044392,-25.128454],[32.000892,-24.679853],[32.011543,-24.478369],[31.987942,-24.304213],[31.913469,-24.190847],[31.874819,-23.950802],[31.76206,-23.880665],[31.695379,-23.720554],[31.689427,-23.619413],[31.565075,-23.484558],[31.545723,-23.403368],[31.558735,-23.178864],[31.309528,-22.434252],[31.311272,-22.417738],[31.381504,-22.371784],[31.903944,-21.839745],[32.399799,-21.327599],[32.476017,-21.311312],[32.366718,-21.136677],[32.481087,-20.992601],[32.516838,-20.914373],[32.497803,-20.807404],[32.492046,-20.618546],[32.567066,-20.560862],[32.658371,-20.561623],[32.863987,-20.287056],[32.868179,-20.111582],[32.926342,-20.043978],[33.010944,-20.018786],[33.056305,-19.799212],[32.889709,-19.684671],[32.852764,-19.623768],[32.844868,-19.476456],[32.776634,-19.457582],[32.776413,-19.361324],[32.849842,-19.293631],[32.877396,-19.09787],[32.845276,-19.024828],[32.715485,-19.018343],[32.704723,-18.856771],[32.827045,-18.777529],[32.927792,-18.766281],[32.954125,-18.690193],[32.885898,-18.579069],[32.884502,-18.522295],[33.021149,-18.465523],[33.054321,-18.357775],[33.002094,-18.30475],[32.997604,-18.168879],[32.942757,-17.974251],[32.969337,-17.801979],[33.04324,-17.603378],[32.98143,-17.56282],[32.962315,-17.48143],[33.045261,-17.346972],[32.996521,-17.297779],[32.986515,-17.179281],[32.938015,-17.068573],[32.838452,-16.93203],[32.913918,-16.889189],[32.97855,-16.707207],[32.769764,-16.709412],[32.702343,-16.676765],[32.712467,-16.602976],[32.412029,-16.46957],[32.285324,-16.434576],[32.037544,-16.442368],[31.913484,-16.412869],[31.893789,-16.33647],[31.770807,-16.236706],[31.691698,-16.201685],[31.430592,-16.156359],[31.307333,-16.027153],[31.140486,-15.98232],[30.982105,-16.058977],[30.922491,-16],[30.424595,-16],[30.41826,-15.617567],[30.365826,-15.553365],[30.401236,-15.472708],[30.37573,-15.342568],[30.279629,-15.251152],[30.229429,-15.136617],[30.21732,-14.997233],[30.36455,-14.959811],[30.516575,-14.888398],[30.798508,-14.783794],[31.078457,-14.717469],[31.188574,-14.679992],[31.490524,-14.611957],[31.683306,-14.506427],[31.810825,-14.478338],[31.931851,-14.418866],[32.242333,-14.323003],[32.451157,-14.282818],[32.610687,-14.214458],[33.209007,-14.003616],[33.295361,-14.036242],[33.294415,-14.141033],[33.374775,-14.21096],[33.448311,-14.36147],[33.544788,-14.43557],[33.629875,-14.531624],[33.713192,-14.571813],[33.729439,-14.488043],[33.813633,-14.541763],[33.937141,-14.46537],[34.074253,-14.485036],[34.093124,-14.450161],[34.387875,-14.399677],[34.456703,-14.509684],[34.53368,-14.588667],[34.515526,-14.684415],[34.578541,-14.809967],[34.561134,-14.890083],[34.615017,-15.006626],[34.572822,-15.083306],[34.597935,-15.281423],[34.523964,-15.348291],[34.504887,-15.409764],[34.426125,-15.474521],[34.453739,-15.606327],[34.365009,-15.734585],[34.302605,-15.758491],[34.251346,-15.848262],[34.254238,-15.907686],[34.36269,-15.967202],[34.437485,-16.061609],[34.39254,-16.127726],[34.423492,-16.254019],[34.573208,-16.321091],[34.585129,-16.39789],[34.687359,-16.499638],[34.757626,-16.510853],[34.778893,-16.57844],[34.853153,-16.617817],[34.924374,-16.74436],[34.983501,-16.74659],[35.039291,-16.822927],[35.155979,-16.831892],[35.166744,-16.93623],[35.058334,-17.00112],[35.094254,-17.123005],[35.293774,-17.124269],[35.303879,-16.98398],[35.26704,-16.944073],[35.312168,-16.827885],[35.285282,-16.715416],[35.167339,-16.620289],[35.148834,-16.557974],[35.262173,-16.470341],[35.2934,-16.237108],[35.403915,-16.128761],[35.554767,-16.134891],[35.709866,-16.091553],[35.818565,-16.024241],[35.802631,-15.975962],[35.854511,-15.432499],[35.789688,-15.166123],[35.916821,-14.891189],[35.870037,-14.890388],[35.869656,-14.669204],[35.528629,-14.264556],[35.483948,-14.167406],[35.23053,-13.881433],[35.082271,-13.687878],[34.875233,-13.486807],[34.861603,-13.382496],[34.793121,-13.333145],[34.816933,-13.091103],[34.751781,-12.963335],[34.760479,-12.862642],[34.820488,-12.703393],[34.771366,-12.631105],[34.753784,-12.542988],[34.699219,-12.456377],[34.72356,-12.280972],[34.695972,-12.187757],[34.866272,-12.064438],[34.906563,-11.903762],[34.947376,-11.815064],[34.962151,-11.571553],[35.340698,-11.556542],[35.389797,-11.580019],[35.575569,-11.603462],[35.639271,-11.58572],[35.776859,-11.471077],[35.823818,-11.406803],[35.941891,-11.424907],[35.956997,-11.483055],[36.123909,-11.551973],[36.172279,-11.589557],[36.201259,-11.716186],[36.377873,-11.684204],[36.501423,-11.692849],[36.56031,-11.745696],[36.719498,-11.692884],[36.810833,-11.587023],[36.888679,-11.606109],[37.041145,-11.580296],[37.133213,-11.689842],[37.281612,-11.707168],[37.331894,-11.687695],[37.442734,-11.734662],[37.559902,-11.649964],[37.641636,-11.652708],[37.787922,-11.572027],[37.85817,-11.340202],[37.927895,-11.290549],[38.113094,-11.259668],[38.261925,-11.288426],[38.378235,-11.383034],[38.486149,-11.4149],[38.652092,-11.278788],[38.744179,-11.278317],[38.884743,-11.175511],[39.045071,-11.174488],[39.135853,-11.151134],[39.241627,-11.179976],[39.365524,-11.084299],[39.529575,-10.985414],[39.785889,-10.910685],[39.887905,-10.845959],[39.991428,-10.81613],[40.233543,-10.607371],[40.339947,-10.576442],[40.394444,-10.517681]]],[[[35.451645,-21.795568],[35.43512,-21.656471],[35.496075,-21.65432],[35.451645,-21.795568]]]]},"properties":{"name":"莫桑比克","name_en":"Mozambique","id":"MOZ"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[25.270332,-17.798908],[25.2567,-17.787922],[25.193281,-17.773207],[25.035522,-17.591057],[24.811829,-17.53731],[24.713196,-17.500038],[24.601843,-17.542686],[24.510254,-17.544741],[24.474314,-17.492106],[24.339825,-17.499388],[24.215244,-17.48214],[23.428154,-17.63928],[23.337673,-17.554527],[23.227287,-17.539074],[23.128811,-17.428732],[23.084784,-17.410156],[22.984095,-17.266916],[22.807123,-17.173357],[22.789992,-17.121233],[22.583057,-16.907162],[22.527374,-16.868227],[22.31571,-16.635971],[22.190468,-16.546625],[22.139662,-16.481453],[22.108549,-16.343204],[21.999664,-16.197874],[22.001999,-16],[21.999962,-15],[22.000752,-14.085768],[21.999899,-13.004716],[22.433668,-13.004005],[24.040287,-12.990556],[24.029314,-12.954433],[23.904987,-12.845443],[23.955654,-12.551822],[24.069866,-12.419043],[24.068657,-12.265388],[23.985788,-12.154165],[23.986118,-11.945529],[24.024614,-11.822521],[23.971171,-11.655663],[24.03648,-11.518435],[24.037531,-11.434245],[24.081436,-11.384388],[24.034739,-11.262874],[24.011513,-11.04961],[24.025587,-10.979017],[23.995695,-10.891575],[24.130417,-10.921878],[24.13101,-11.023773],[24.320316,-11.052664],[24.378765,-11.087183],[24.398087,-11.267292],[24.349585,-11.366422],[24.471544,-11.460743],[24.591887,-11.448508],[24.605156,-11.414456],[24.732826,-11.311985],[24.853081,-11.292967],[24.873541,-11.262112],[25.10704,-11.249911],[25.303782,-11.191401],[25.311289,-11.348482],[25.294559,-11.510016],[25.341164,-11.631326],[25.494352,-11.712446],[25.505621,-11.786474],[25.655064,-11.733183],[25.718731,-11.815708],[25.823656,-11.828087],[25.987082,-11.898076],[25.989666,-11.940619],[26.191765,-11.938959],[26.334707,-11.964707],[26.468266,-11.920059],[26.559149,-11.979193],[26.71825,-12.008811],[26.7547,-11.973725],[26.88356,-11.984588],[27.007517,-11.846878],[27.048574,-11.698529],[27.04438,-11.602871],[27.209297,-11.572985],[27.227985,-11.777767],[27.449953,-11.913944],[27.508339,-12.137142],[27.656277,-12.287074],[27.758079,-12.289334],[27.82683,-12.230768],[27.917715,-12.240463],[27.961994,-12.352859],[28.086576,-12.358851],[28.242399,-12.422106],[28.32671,-12.424858],[28.516209,-12.618152],[28.45405,-12.706922],[28.544029,-12.856295],[28.652645,-12.818785],[28.733194,-12.886107],[28.833748,-13.026697],[28.846952,-13.145169],[28.903566,-13.161983],[28.969227,-13.366767],[29.020134,-13.417684],[29.142847,-13.381161],[29.179623,-13.441484],[29.306595,-13.368251],[29.316036,-13.331981],[29.441837,-13.313898],[29.528047,-13.227712],[29.643097,-13.239633],[29.658184,-13.339398],[29.610662,-13.408811],[29.712383,-13.455675],[29.808962,-13.455143],[29.810049,-12.546627],[29.809622,-12.161048],[29.633453,-12.20671],[29.575176,-12.192832],[29.489256,-12.23857],[29.456163,-12.333491],[29.535673,-12.429368],[29.47489,-12.471418],[29.378126,-12.41701],[29.29558,-12.409023],[29.26692,-12.3642],[29.129374,-12.395296],[29.058811,-12.389108],[28.934855,-12.198804],[28.778404,-12.055421],[28.764109,-11.994907],[28.640038,-11.95217],[28.610889,-11.910967],[28.50387,-11.879418],[28.441721,-11.831776],[28.415468,-11.730465],[28.431433,-11.657539],[28.381357,-11.585324],[28.393973,-11.474719],[28.48686,-11.244254],[28.475929,-11.105466],[28.540401,-10.932685],[28.553543,-10.832429],[28.696791,-10.662585],[28.63657,-10.528714],[28.63697,-10.314353],[28.577156,-10.230619],[28.621767,-10.15705],[28.62495,-9.957171],[28.674477,-9.815699],[28.622698,-9.720609],[28.615078,-9.601866],[28.572058,-9.499983],[28.515633,-9.443811],[28.358179,-9.363107],[28.393963,-9.245149],[28.482864,-9.171009],[28.695614,-9.034298],[28.89654,-8.794926],[28.962978,-8.650491],[28.927227,-8.470301],[30,-8.316212],[30.123306,-8.312075],[30.774246,-8.22436],[30.807409,-8.310655],[31.028078,-8.592154],[31.136458,-8.632804],[31.211452,-8.587496],[31.458731,-8.640335],[31.570476,-8.709552],[31.584745,-8.838832],[31.734747,-8.923262],[31.821665,-8.89028],[31.947081,-8.9368],[31.936659,-9.018008],[31.996113,-9.076138],[32.060913,-9.051372],[32.161392,-9.061675],[32.267021,-9.133573],[32.4314,-9.118252],[32.540909,-9.254656],[32.751926,-9.28485],[32.867374,-9.373852],[32.956554,-9.400114],[32.947739,-9.486663],[33.026787,-9.507283],[33.005142,-9.640652],[33.195644,-9.605535],[33.225922,-9.716538],[33.289505,-9.810075],[33.345737,-9.827463],[33.381642,-9.906548],[33.318794,-10.045219],[33.338703,-10.088345],[33.55727,-10.22444],[33.534828,-10.330074],[33.576782,-10.428503],[33.618736,-10.448748],[33.701466,-10.585332],[33.602238,-10.656764],[33.53136,-10.765588],[33.442596,-10.820702],[33.334556,-10.828516],[33.307869,-10.991165],[33.331589,-11.06745],[33.40601,-11.161081],[33.376854,-11.237944],[33.226799,-11.430135],[33.248749,-11.528501],[33.311073,-11.595398],[33.333542,-11.798875],[33.308598,-12.001116],[33.260811,-12.118325],[33.309364,-12.166266],[33.31115,-12.249538],[33.365959,-12.348108],[33.454105,-12.322549],[33.543228,-12.372431],[33.471516,-12.424901],[33.360645,-12.553227],[33.270813,-12.536991],[33.198849,-12.611466],[33.056171,-12.611571],[32.960369,-12.756177],[32.957333,-12.842624],[33.025978,-12.910769],[32.974564,-13.123769],[33.016602,-13.211015],[32.945427,-13.273],[32.91544,-13.407725],[32.843071,-13.463001],[32.844517,-13.514513],[32.679973,-13.617933],[32.786541,-13.640239],[32.84264,-13.708526],[32.861473,-13.790976],[32.936573,-13.873415],[32.942959,-13.927941],[33.069378,-13.990053],[33.15173,-13.934807],[33.209007,-14.003616],[32.610687,-14.214458],[32.451157,-14.282818],[32.242333,-14.323003],[31.931851,-14.418866],[31.810825,-14.478338],[31.683306,-14.506427],[31.490524,-14.611957],[31.188574,-14.679992],[31.078457,-14.717469],[30.798508,-14.783794],[30.516575,-14.888398],[30.36455,-14.959811],[30.21732,-14.997233],[30.229429,-15.136617],[30.279629,-15.251152],[30.37573,-15.342568],[30.401236,-15.472708],[30.365826,-15.553365],[30.41826,-15.617567],[30.359129,-15.649878],[30.16678,-15.620385],[29.96208,-15.641013],[29.82093,-15.608835],[29.362278,-15.709893],[29.227221,-15.763613],[29.064989,-15.879895],[29.015549,-15.941731],[28.912027,-15.946818],[28.846243,-16.050083],[28.863075,-16.123217],[28.821703,-16.321531],[28.848957,-16.378086],[28.802088,-16.503853],[28.729347,-16.556595],[28.642252,-16.571138],[28.269707,-16.717747],[28.13586,-16.824343],[27.829584,-16.962543],[27.6276,-17.257063],[27.617289,-17.339085],[27.543648,-17.424366],[27.32221,-17.589563],[27.147097,-17.801636],[27.149515,-17.848665],[27.01132,-17.953621],[26.83256,-17.987226],[26.690287,-18.079474],[26.601999,-18.052753],[26.561793,-17.990372],[26.406128,-17.939238],[26.306253,-17.937319],[26.207863,-17.892839],[26.10397,-17.930796],[26.091333,-17.98476],[25.970531,-18.00565],[25.876734,-17.976767],[25.842234,-17.894293],[25.671537,-17.818432],[25.628115,-17.846748],[25.380434,-17.854382],[25.270332,-17.798908]]]},"properties":{"name":"赞比亚","name_en":"Zambia","id":"ZMB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-172.211243,-13.757307],[-172.284073,-13.756371],[-172.526291,-13.802048],[-172.643387,-13.652523],[-172.798599,-13.515729],[-172.579132,-13.490355],[-172.543381,-13.467849],[-172.31546,-13.437961],[-172.248444,-13.51641],[-172.166275,-13.660504],[-172.211243,-13.757307]]],[[[-171.689911,-14.029125],[-171.761078,-14.040928],[-171.828934,-13.978491],[-171.91539,-13.999434],[-172.044693,-13.88784],[-172.00679,-13.822725],[-171.828827,-13.78687],[-171.699753,-13.858804],[-171.566147,-13.879858],[-171.4328,-13.970774],[-171.430237,-14.040939],[-171.689911,-14.029125]]]]},"properties":{"name":"萨摩亚","name_en":"Samoa","id":"WSM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-6.772222,62.004581],[-6.996222,62.055473],[-7.251639,62.186417],[-7.22825,62.295193],[-7.104861,62.298138],[-6.990528,62.188305],[-6.759917,62.052666],[-6.772222,62.004581]]],[[[-6.928028,62.245056],[-6.62925,62.20536],[-6.733889,62.095139],[-6.990083,62.194946],[-6.928028,62.245056]]],[[[-6.869139,61.492279],[-6.999778,61.629971],[-6.916194,61.657501],[-6.753722,61.539196],[-6.869139,61.492279]]],[[[-7.235333,62.030193],[-7.382916,62.063416],[-7.452889,62.127335],[-7.228639,62.143307],[-7.056139,62.079613],[-7.235333,62.030193]]],[[[-6.529056,62.313057],[-6.422528,62.257221],[-6.452972,62.180054],[-6.615584,62.217529],[-6.529056,62.313057]]]]},"properties":{"name":"法罗群岛","name_en":"FAROE ISLANDS","id":"FRO"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-89.349945,14.421761],[-89.572342,14.405725],[-89.519432,14.223638],[-89.661186,14.183924],[-89.77652,14.03062],[-89.893455,14.037513],[-90.109436,13.834014],[-90.128662,13.738269],[-90.407944,13.862047],[-90.670883,13.925944],[-91.033539,13.910664],[-91.301521,13.947492],[-91.553047,14.050219],[-91.790214,14.189901],[-92.230621,14.538136],[-92.14669,14.660967],[-92.181976,14.846891],[-92.146622,14.870427],[-92.151543,14.985678],[-92.059509,15.070745],[-92.210503,15.2607],[-91.731903,16.0765],[-90.98925,16.076988],[-90.447143,16.077347],[-90.458244,16.207951],[-90.396751,16.374609],[-90.418442,16.423679],[-90.545776,16.481413],[-90.585472,16.469791],[-90.643082,16.566265],[-90.680992,16.686439],[-90.801224,16.795956],[-90.922592,16.822638],[-91.214714,17.053322],[-91.277122,17.180021],[-91.428368,17.218693],[-91.439133,17.254887],[-90.989502,17.254101],[-90.989502,17.8174],[-90.482559,17.8174],[-89.638725,17.8174],[-89.146866,17.8174],[-89.145714,17.048967],[-89.189072,16.409548],[-89.224815,15.925535],[-89.150368,15.894055],[-89.055634,15.912284],[-88.93882,15.890036],[-88.80088,15.858911],[-88.625923,15.739558],[-88.566803,15.784856],[-88.544014,15.873892],[-88.441826,15.850643],[-88.223198,15.720082],[-88.354828,15.603988],[-88.682518,15.337831],[-88.826164,15.255234],[-88.96711,15.137063],[-89.148735,15.069331],[-89.158333,14.978539],[-89.22393,14.839644],[-89.133965,14.699716],[-89.15538,14.572211],[-89.238724,14.577447],[-89.350082,14.464952],[-89.349945,14.421761]]]},"properties":{"name":"危地马拉","name_en":"GUATEMALA","id":"GTM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.472139,54.847443],[9.275556,54.819084],[9.154583,54.872723],[8.769333,54.913807],[8.651444,54.91],[8.634694,55.036861],[8.688389,55.16161],[8.625722,55.42775],[8.432472,55.464195],[8.077056,55.561668],[8.180166,55.770637],[8.171945,55.909805],[8.3825,55.904388],[8.309334,56.045113],[8.239917,56.09375],[8.109834,56.101971],[8.134973,56.20525],[8.117389,56.405998],[8.162472,56.643082],[8.529639,56.543304],[8.504334,56.619583],[8.366889,56.674168],[8.256473,56.828056],[8.480111,57.039585],[8.623195,57.120304],[8.745584,57.097805],[8.967028,57.147362],[9.25125,57.132973],[9.396694,57.154972],[9.534306,57.215778],[9.944583,57.584694],[10.187056,57.591946],[10.549666,57.696251],[10.432999,57.578388],[10.558695,57.449139],[10.534388,57.383221],[10.559694,57.224224],[10.439944,57.15097],[10.383917,57.036388],[10.292584,56.951817],[10.278055,56.838749],[10.355333,56.688194],[10.361639,56.564194],[10.522417,56.50861],[10.791528,56.534473],[10.956695,56.430805],[10.918111,56.335972],[10.744111,56.210918],[10.617139,56.221443],[10.510056,56.163444],[10.407972,56.286221],[10.226417,56.131584],[10.284139,56.034721],[10.257944,55.912888],[10.078584,55.887501],[10.018139,55.779251],[10.0345,55.700085],[9.738806,55.661861],[9.798139,55.597027],[9.743194,55.526859],[9.628528,55.501415],[9.695194,55.461529],[9.595111,55.423168],[9.697222,55.200054],[9.50075,55.15786],[9.607611,55.036751],[9.738,54.988083],[9.742416,54.882416],[9.607861,54.91114],[9.472139,54.847443]]],[[[11.981483,55.714039],[12.099417,55.693279],[12.071861,55.877777],[11.953722,56.002861],[12.18725,56.102055],[12.299639,56.120609],[12.548417,56.072334],[12.635111,56.029194],[12.522722,55.92178],[12.606472,55.762249],[12.597528,55.687832],[12.498111,55.606998],[12.387111,55.615582],[12.265528,55.560028],[12.196028,55.469666],[12.230028,55.425888],[12.443139,55.354332],[12.449139,55.278084],[12.265056,55.241806],[12.032722,55.165638],[12.185416,55.112305],[12.174111,55],[12.029555,54.960304],[11.907945,54.991638],[11.764194,55.075417],[11.792722,55.153889],[11.432195,55.217556],[11.265528,55.200943],[11.234138,55.291668],[11.097305,55.352612],[11.220445,55.395443],[11.108611,55.668026],[10.975583,55.732529],[11.347917,55.758388],[11.392417,55.834026],[11.650861,55.938278],[11.739972,55.828835],[11.752417,55.741055],[12.031889,55.901585],[12.069,55.736389],[11.981483,55.714039]]],[[[10.43575,55.441944],[10.711695,55.542446],[10.673528,55.449249],[10.774555,55.385807],[10.837111,55.292194],[10.74625,55.069305],[10.519083,55.027805],[10.287611,55.080612],[9.894111,55.241943],[9.820666,55.443974],[9.708056,55.495945],[9.851666,55.553749],[9.944389,55.514721],[10.045389,55.562611],[10.326195,55.623833],[10.517639,55.544613],[10.43575,55.441944]]],[[[11.746611,54.874332],[11.859445,54.772335],[11.855416,54.676834],[11.566028,54.659443],[11.465972,54.613609],[11.268111,54.70322],[11.009973,54.763474],[11.091806,54.833862],[11.073444,54.936695],[11.248861,54.956638],[11.465834,54.842834],[11.563056,54.824276],[11.662806,54.899612],[11.746611,54.874332]]],[[[15,55.189667],[15.157972,55.131611],[15.074222,54.984859],[14.775889,55.051056],[14.689195,55.092804],[14.708195,55.221748],[14.822222,55.253582],[15,55.189667]]],[[[11.761,54.878807],[11.774028,54.961334],[11.978361,54.934971],[12.122472,54.885666],[12.170055,54.8335],[11.877333,54.646194],[11.867723,54.775444],[11.761,54.878807]]],[[[9.779223,55],[9.764222,55.083389],[9.9985,54.986916],[10.067445,54.89489],[9.937917,54.856861],[9.787694,54.906944],[9.779223,55]]],[[[10.753138,54.769138],[10.648833,54.811749],[10.677972,54.908474],[10.844055,54.946388],[10.753138,54.769138]]],[[[12.273666,55],[12.314889,55.027721],[12.523472,55.008278],[12.510361,54.941807],[12.344806,54.959778],[12.210139,54.880054],[12.114472,54.916222],[12.273666,55]]],[[[11.016666,57.191029],[10.902583,57.222252],[10.931222,57.293362],[11.132305,57.327946],[11.016666,57.191029]]]]},"properties":{"name":"丹麦","name_en":"DENMARK","id":"DNK"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[31.311272,-22.417738],[31.251581,-22.357615],[31.165174,-22.328463],[31.085495,-22.344564],[30.931383,-22.300178],[30.809565,-22.292717],[30.698719,-22.315447],[30.483663,-22.314335],[30.275095,-22.345486],[30.223144,-22.29368],[30.124254,-22.308514],[30.011082,-22.230425],[29.763764,-22.141073],[29.571091,-22.142317],[29.360781,-22.196627],[29.251419,-22.060762],[29.146601,-22.077192],[29.036694,-21.997208],[29.027183,-21.893604],[29.062079,-21.802954],[28.794561,-21.735426],[28.571175,-21.630497],[28.49045,-21.667088],[28.366518,-21.607258],[28.200294,-21.610842],[28.0305,-21.581745],[27.966589,-21.51376],[27.974905,-21.456305],[27.900787,-21.302794],[27.701342,-21.099506],[27.689501,-20.884741],[27.734325,-20.758059],[27.70414,-20.610781],[27.728699,-20.553968],[27.683853,-20.490343],[27.571783,-20.495312],[27.358213,-20.473524],[27.284971,-20.497812],[27.297863,-20.299883],[27.215118,-20.100531],[27.109499,-20.083708],[27.05579,-20.023216],[26.967936,-20.020042],[26.71718,-19.943857],[26.616232,-19.887564],[26.575107,-19.808592],[26.41663,-19.738245],[26.307663,-19.582724],[26.244259,-19.589434],[26.16048,-19.537672],[26.137203,-19.442966],[26.043352,-19.219925],[25.958132,-19.092506],[25.991678,-19.039776],[25.940855,-18.910376],[25.81963,-18.843729],[25.790016,-18.757114],[25.785965,-18.640474],[25.710228,-18.597805],[25.522337,-18.385653],[25.42053,-18.158806],[25.322193,-18.077944],[25.237177,-17.917688],[25.270332,-17.798908],[25.380434,-17.854382],[25.628115,-17.846748],[25.671537,-17.818432],[25.842234,-17.894293],[25.876734,-17.976767],[25.970531,-18.00565],[26.091333,-17.98476],[26.10397,-17.930796],[26.207863,-17.892839],[26.306253,-17.937319],[26.406128,-17.939238],[26.561793,-17.990372],[26.601999,-18.052753],[26.690287,-18.079474],[26.83256,-17.987226],[27.01132,-17.953621],[27.149515,-17.848665],[27.147097,-17.801636],[27.32221,-17.589563],[27.543648,-17.424366],[27.617289,-17.339085],[27.6276,-17.257063],[27.829584,-16.962543],[28.13586,-16.824343],[28.269707,-16.717747],[28.642252,-16.571138],[28.729347,-16.556595],[28.802088,-16.503853],[28.848957,-16.378086],[28.821703,-16.321531],[28.863075,-16.123217],[28.846243,-16.050083],[28.912027,-15.946818],[29.015549,-15.941731],[29.064989,-15.879895],[29.227221,-15.763613],[29.362278,-15.709893],[29.82093,-15.608835],[29.96208,-15.641013],[30.16678,-15.620385],[30.359129,-15.649878],[30.41826,-15.617567],[30.424595,-16],[30.922491,-16],[30.982105,-16.058977],[31.140486,-15.98232],[31.307333,-16.027153],[31.430592,-16.156359],[31.691698,-16.201685],[31.770807,-16.236706],[31.893789,-16.33647],[31.913484,-16.412869],[32.037544,-16.442368],[32.285324,-16.434576],[32.412029,-16.46957],[32.712467,-16.602976],[32.702343,-16.676765],[32.769764,-16.709412],[32.97855,-16.707207],[32.913918,-16.889189],[32.838452,-16.93203],[32.938015,-17.068573],[32.986515,-17.179281],[32.996521,-17.297779],[33.045261,-17.346972],[32.962315,-17.48143],[32.98143,-17.56282],[33.04324,-17.603378],[32.969337,-17.801979],[32.942757,-17.974251],[32.997604,-18.168879],[33.002094,-18.30475],[33.054321,-18.357775],[33.021149,-18.465523],[32.884502,-18.522295],[32.885898,-18.579069],[32.954125,-18.690193],[32.927792,-18.766281],[32.827045,-18.777529],[32.704723,-18.856771],[32.715485,-19.018343],[32.845276,-19.024828],[32.877396,-19.09787],[32.849842,-19.293631],[32.776413,-19.361324],[32.776634,-19.457582],[32.844868,-19.476456],[32.852764,-19.623768],[32.889709,-19.684671],[33.056305,-19.799212],[33.010944,-20.018786],[32.926342,-20.043978],[32.868179,-20.111582],[32.863987,-20.287056],[32.658371,-20.561623],[32.567066,-20.560862],[32.492046,-20.618546],[32.497803,-20.807404],[32.516838,-20.914373],[32.481087,-20.992601],[32.366718,-21.136677],[32.476017,-21.311312],[32.399799,-21.327599],[31.903944,-21.839745],[31.381504,-22.371784],[31.311272,-22.417738]]]},"properties":{"name":"津巴布韦","name_en":"Zimbabwe","id":"ZWE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.025333,50.75425],[5.751681,50.744003],[5.6465,50.873138],[5.757027,50.955193],[5.818389,51.129055],[5.79425,51.176945],[5.604722,51.198917],[5.485167,51.302139],[5.4185,51.267277],[5.22475,51.270248],[5.076528,51.392277],[4.829778,51.423695],[4.556695,51.427502],[4.540361,51.482388],[4.378139,51.444473],[4.432972,51.377251],[4.248806,51.376221],[4.057973,51.418778],[3.979722,51.461304],[3.813611,51.389473],[3.667056,51.460056],[3.577945,51.442307],[3.44525,51.545944],[3.571778,51.596416],[3.840111,51.605972],[3.944722,51.529362],[4.053611,51.503555],[4.143611,51.435612],[4.253917,51.508972],[4.076944,51.529724],[3.989222,51.580082],[4.116806,51.648945],[3.979778,51.844387],[4.035167,51.88575],[4.020611,51.972111],[4.132139,52.000057],[4.428139,52.240776],[4.576944,52.458054],[4.841861,52.420528],[4.909194,52.381248],[5.430555,52.249161],[5.544167,52.274162],[5.624721,52.354164],[5.813055,52.427216],[5.878054,52.509438],[5.843611,52.607216],[5.664721,52.60833],[5.591833,52.665474],[5.605139,52.771915],[5.669139,52.83036],[5.428111,52.848278],[5.383417,53.059612],[5.444667,53.220196],[5.614806,53.313362],[5.894139,53.387222],[6.247944,53.419861],[6.312389,53.395668],[6.666083,53.460445],[6.880139,53.444195],[6.903222,53.353443],[7.213278,53.238529],[7.216583,53.004971],[7.089417,52.850777],[7.056472,52.643501],[6.7795,52.652363],[6.683445,52.554863],[6.702389,52.489056],[6.942389,52.439499],[7.076083,52.356304],[6.990333,52.229111],[6.856889,52.124722],[6.762667,52.122166],[6.75325,52.033443],[6.827306,51.993027],[6.787861,51.927166],[6.549583,51.885639],[6.409972,51.828056],[6.302611,51.867805],[6.059472,51.853195],[5.953722,51.814026],[5.960111,51.752804],[6.112833,51.660557],[6.098333,51.605141],[6.208416,51.524612],[6.225333,51.361195],[6.076722,51.24575],[6.0985,51.138889],[5.865639,51.050026],[5.904722,50.999805],[6.085084,50.924305],[6.025778,50.849609],[6.025333,50.75425]]],[[[4.797472,52.960697],[4.878055,52.888721],[5.046361,52.93811],[5.121972,52.847027],[5.15575,52.740002],[5.276639,52.753723],[5.239194,52.656029],[5.027167,52.596863],[5.088833,52.504696],[5.013528,52.375526],[4.861389,52.422306],[4.5795,52.475166],[4.654972,52.764027],[4.721833,52.951805],[4.797472,52.960697]]],[[[5.611944,52.36972],[5.534166,52.283333],[5.404444,52.266937],[5.137777,52.382774],[5.450555,52.509438],[5.478055,52.548881],[5.643611,52.601105],[5.827222,52.570549],[5.855556,52.492493],[5.795277,52.427498],[5.611944,52.36972]]],[[[4.238889,51.352165],[4.117889,51.269638],[3.913028,51.209751],[3.790917,51.26236],[3.604028,51.303585],[3.530056,51.250694],[3.364639,51.298862],[3.369472,51.374611],[3.511528,51.410027],[3.718056,51.354973],[3.870028,51.341],[4.00825,51.407307],[4.127944,51.347389],[4.238889,51.352165]]],[[[3.865889,51.770695],[3.977472,51.733582],[4.064445,51.627834],[3.895056,51.635944],[3.716639,51.732582],[3.865889,51.770695]]],[[[4.794028,53.00436],[4.723834,53.062279],[4.829694,53.169224],[4.902306,53.080723],[4.794028,53.00436]]]]},"properties":{"name":"荷兰","name_en":"NETHERLANDS","id":"NLD"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[142.243561,-38.393139],[142.142471,-38.392582],[141.942063,-38.284584],[141.705307,-38.258945],[141.509338,-38.382168],[141.408142,-38.369999],[141.359726,-38.278557],[141.230804,-38.175251],[140.990921,-38.065029],[140.831909,-38.045361],[140.659577,-38.064667],[140.371246,-37.902248],[140.273865,-37.727917],[140.126007,-37.548279],[139.990662,-37.486332],[139.825272,-37.30661],[139.755081,-37.198002],[139.792282,-37.130806],[139.739136,-37.02861],[139.667221,-36.957249],[139.837387,-36.847221],[139.860382,-36.726055],[139.801697,-36.515751],[139.62706,-36.185806],[139.482468,-36.002583],[139.354645,-35.878307],[139.048355,-35.652054],[138.963028,-35.561249],[138.918442,-35.570694],[138.703781,-35.516861],[138.625,-35.547695],[138.5177,-35.646057],[138.263199,-35.643917],[138.16272,-35.66478],[138.090531,-35.6045],[138.162201,-35.522221],[138.289063,-35.472946],[138.332367,-35.398834],[138.436661,-35.351501],[138.466812,-35.236778],[138.464356,-35.120693],[138.512024,-35.033222],[138.472885,-34.866611],[138.539215,-34.764973],[138.427307,-34.672085],[138.326309,-34.524334],[138.262833,-34.48336],[138.219391,-34.315083],[138.152359,-34.276279],[138.153412,-34.215168],[138.075943,-34.136833],[137.999756,-34.269306],[137.998337,-34.359806],[137.912247,-34.43639],[137.872254,-34.605694],[137.858887,-34.782722],[137.827301,-34.8195],[137.723114,-35.049473],[137.756271,-35.115028],[137.631333,-35.168724],[137.54509,-35.116695],[137.412003,-35.100887],[137.330826,-35.168583],[137.239304,-35.164471],[137.187195,-35.230415],[137.009674,-35.222916],[136.878754,-35.301224],[136.821503,-35.245529],[136.956726,-35.090084],[136.932053,-35.026112],[136.975006,-34.946804],[137.077393,-34.920696],[137.286911,-34.902],[137.375382,-34.955002],[137.447998,-34.911694],[137.505356,-34.601723],[137.464951,-34.403027],[137.503922,-34.140305],[137.562699,-34.046196],[137.599243,-33.882889],[137.714722,-33.781139],[137.893356,-33.593304],[137.942307,-33.514305],[137.868744,-33.402248],[137.879532,-33.335972],[137.810776,-33.287251],[137.833969,-33.207916],[138.042832,-33.094612],[137.95195,-33.017971],[137.89769,-32.815556],[137.91214,-32.743668],[137.755661,-32.556446],[137.746887,-32.71611],[137.804337,-32.755196],[137.783615,-32.918335],[137.718109,-32.994446],[137.602249,-32.983387],[137.534561,-33.100277],[137.456192,-33.134029],[137.433838,-33.225388],[137.374619,-33.312527],[137.381165,-33.379055],[137.209976,-33.667862],[137.14856,-33.702446],[136.990005,-33.731556],[136.928299,-33.682556],[136.851333,-33.804359],[136.799271,-33.807056],[136.576859,-33.943195],[136.434113,-34.013748],[136.358337,-34.076946],[136.261383,-34.267445],[136.102646,-34.379749],[136.108856,-34.479832],[135.953949,-34.515915],[135.859283,-34.640888],[135.84111,-34.822445],[135.927643,-34.774055],[135.997696,-34.825943],[135.961975,-34.880665],[135.996918,-34.961529],[135.957718,-34.997723],[135.845856,-34.885666],[135.710526,-34.871223],[135.68364,-34.949501],[135.419724,-34.712639],[135.477524,-34.622639],[135.394775,-34.530529],[135.385086,-34.442612],[135.31044,-34.196918],[135.242416,-34.153084],[135.279251,-34.069027],[135.251663,-33.986],[135.127441,-33.840527],[134.998947,-33.731888],[134.83403,-33.633446],[134.861466,-33.521027],[134.800446,-33.335693],[134.697449,-33.228054],[134.416382,-33.153694],[134.312561,-33.189888],[134.19606,-33.037945],[134.188248,-32.942696],[134.110336,-32.914806],[134.138672,-32.840862],[134.110382,-32.776222],[134.159729,-32.725945],[134.230469,-32.781334],[134.293396,-32.670918],[134.26445,-32.577446],[134.118729,-32.45964],[133.983078,-32.509445],[133.843216,-32.510113],[133.866272,-32.403057],[133.948776,-32.39925],[133.823807,-32.244335],[133.676132,-32.205891],[133.667923,-32.10886],[133.600418,-32.088638],[133.533692,-32.169807],[133.479813,-32.107807],[133.25856,-32.208557],[133.135391,-32.182026],[133.053024,-32.108112],[132.903412,-32.040749],[132.764588,-31.95525],[132.571839,-31.932222],[132.483978,-31.945139],[132.408172,-32],[132.262253,-32.034973],[132.172531,-32.018971],[132.111664,-31.943556],[131.736313,-31.709139],[131.492172,-31.595055],[131.252914,-31.497972],[131.134644,-31.468527],[131.0392,-31.538889],[130.798493,-31.613083],[130.255447,-31.57589],[129.938049,-31.591305],[129.853104,-31.609945],[129.538284,-31.623583],[129.052002,-31.676777],[128.964356,-31.69739],[128.324646,-31.978611],[128.022217,-32.079083],[127.707474,-32.141445],[127.4785,-32.222305],[127.216858,-32.281944],[126.691277,-32.316776],[126.419388,-32.293026],[126.172554,-32.242138],[126.085671,-32.280945],[125.940193,-32.306889],[125.790726,-32.382832],[125.55825,-32.545723],[125.309418,-32.616055],[125.094498,-32.727055],[125.031502,-32.735527],[124.883278,-32.846195],[124.746445,-32.907776],[124.403664,-32.949917],[124.217026,-33.040611],[124.126747,-33.137695],[124.005997,-33.413166],[123.976891,-33.565639],[123.879974,-33.602028],[123.758141,-33.729778],[123.743446,-33.812752],[123.589943,-33.883278],[123.527031,-33.944668],[123.381943,-33.896389],[123.256165,-34.000526],[123.181725,-34.014862],[123.145332,-33.920887],[123.032585,-33.859139],[122.827004,-33.911778],[122.66497,-33.891167],[122.572166,-33.951084],[122.361641,-33.914501],[122.273499,-33.980026],[122.174248,-34.010666],[122.119942,-33.979279],[122.027863,-33.845165],[121.924141,-33.840168],[121.861999,-33.894638],[121.656776,-33.88739],[121.559502,-33.833527],[121.295754,-33.827362],[121.180946,-33.868221],[121.087944,-33.850807],[120.865669,-33.858082],[120.803169,-33.889278],[120.55864,-33.902],[120.420586,-33.976807],[120.245666,-33.936832],[120.11589,-33.954666],[120.035225,-33.922306],[119.940414,-33.974167],[119.846031,-33.967251],[119.7855,-34.02586],[119.650024,-34.088974],[119.515221,-34.25761],[119.507194,-34.356693],[119.276253,-34.465752],[119.287445,-34.513195],[119.067642,-34.462002],[118.938751,-34.457306],[118.907944,-34.506584],[118.805221,-34.515778],[118.743858,-34.561474],[118.750526,-34.629139],[118.473335,-34.741085],[118.394691,-34.849583],[118.401695,-34.909248],[118.237473,-34.91964],[118.208748,-34.978832],[118.029976,-35.023472],[117.947083,-35.00264],[117.859413,-35.102112],[117.745918,-35.051334],[117.546913,-35.081028],[117.366363,-34.970722],[117.318779,-35.045944],[117.18953,-35.01939],[116.943336,-35.025971],[116.920029,-35.063641],[116.751831,-35.018444],[116.633141,-35.055054],[116.47303,-34.997917],[116.254333,-34.87886],[116.016304,-34.839417],[115.88414,-34.660641],[115.614693,-34.445972],[115.354309,-34.318668],[115.25753,-34.307972],[115.12178,-34.343861],[115.026337,-34.251083],[115.042359,-34.200474],[114.99308,-34.099609],[115.00325,-34.012306],[114.977501,-33.867748],[114.980553,-33.714333],[115.058334,-33.549583],[115.119782,-33.626472],[115.30542,-33.659279],[115.42347,-33.617863],[115.588722,-33.437168],[115.634026,-33.315361],[115.677025,-33.298054],[115.69075,-33.131054],[115.675308,-33.00425],[115.605942,-32.68261],[115.631058,-32.599693],[115.739723,-32.50161],[115.748802,-32.26239],[115.776169,-32.190556],[115.745835,-32.061138],[115.75283,-31.913973],[115.726998,-31.762722],[115.68483,-31.658777],[115.535721,-31.408972],[115.436417,-31.277166],[115.306198,-30.974388],[115.181641,-30.784639],[115.054558,-30.501249],[115.036163,-30.280001],[114.956276,-30.070278],[114.978638,-29.920666],[114.952225,-29.678888],[114.989807,-29.483889],[114.919693,-29.309416],[114.865334,-29.116444],[114.627777,-28.879723],[114.594971,-28.634083],[114.49308,-28.457722],[114.428803,-28.400972],[114.309944,-28.227638],[114.227691,-28.185862],[114.159164,-28.098722],[114.094719,-27.848473],[114.150108,-27.698223],[114.081917,-27.471972],[114.006691,-27.314167],[113.792747,-26.966862],[113.526527,-26.624001],[113.285164,-26.403833],[113.341888,-26.282972],[113.384331,-26.125723],[113.433472,-26.166361],[113.48558,-26.343666],[113.542725,-26.349861],[113.565498,-26.496416],[113.621559,-26.524166],[113.650803,-26.672777],[113.80442,-26.607471],[113.876747,-26.486944],[113.87178,-26.331612],[113.809197,-26.264917],[113.679359,-26.218166],[113.603363,-26.100111],[113.568695,-26.095638],[113.546585,-25.946833],[113.467781,-25.789749],[113.403305,-25.726944],[113.427391,-25.623722],[113.510002,-25.605833],[113.585892,-25.704639],[113.715774,-25.813999],[113.72242,-26.016001],[113.686333,-26.045555],[113.70414,-26.167749],[113.772529,-26.214472],[113.880363,-26.040916],[113.961502,-26.339167],[114.066917,-26.469917],[114.196663,-26.379305],[114.228165,-26.314083],[114.177475,-26.170029],[114.232193,-26.149889],[114.19664,-25.996195],[114.262055,-25.848167],[114.158669,-25.808666],[114.154274,-25.74325],[114.043663,-25.650806],[114.018028,-25.573],[113.922859,-25.455473],[113.805748,-25.166861],[113.682831,-25.081751],[113.650948,-25.006416],[113.667778,-24.928694],[113.616333,-24.756222],[113.399559,-24.487417],[113.381615,-24.227528],[113.43103,-24.179111],[113.407669,-24.095388],[113.47258,-23.966084],[113.473999,-23.897333],[113.566086,-23.755278],[113.618858,-23.625778],[113.754669,-23.530001],[113.782196,-23.464527],[113.798195,-23.305889],[113.764168,-23.122944],[113.830086,-23.046139],[113.828476,-22.963499],[113.756554,-22.754389],[113.710335,-22.715694],[113.668999,-22.547583],[113.719025,-22.513611],[113.751251,-22.413055],[113.823501,-22.307667],[113.863945,-22.169834],[113.996636,-21.878195],[114.16378,-21.787001],[114.14167,-21.945999],[114.082558,-22.157944],[114.129669,-22.325195],[114.122749,-22.421499],[114.158386,-22.52486],[114.283669,-22.433222],[114.375969,-22.488388],[114.413666,-22.321333],[114.450501,-22.270584],[114.458031,-22.170834],[114.508697,-22.152027],[114.531303,-22.0585],[114.613777,-21.986473],[114.644081,-21.848499],[114.766251,-21.799139],[114.983391,-21.669001],[115.052193,-21.681778],[115.243668,-21.581472],[115.297668,-21.596001],[115.506554,-21.461639],[115.701668,-21.28186],[115.815972,-21.251667],[115.880943,-21.121639],[115.99147,-21.042139],[116.187889,-20.968195],[116.191971,-20.87814],[116.296501,-20.882055],[116.347946,-20.842028],[116.463608,-20.826611],[116.533302,-20.752222],[116.592697,-20.746416],[116.692947,-20.68364],[116.795586,-20.661722],[116.829941,-20.712944],[116.928528,-20.715055],[116.981499,-20.666361],[117.164475,-20.608278],[117.209274,-20.703362],[117.351723,-20.741917],[117.553391,-20.713362],[117.632751,-20.666555],[117.772835,-20.675612],[117.874725,-20.562305],[118.049309,-20.425388],[118.195747,-20.340084],[118.211693,-20.381666],[118.332832,-20.340195],[118.484558,-20.3445],[118.562225,-20.295],[118.67778,-20.321583],[118.829445,-20.280777],[118.84272,-20.231056],[118.962585,-20.123444],[118.98822,-20.044195],[119.108833,-19.964527],[119.19986,-19.956472],[119.468193,-20.013666],[119.57711,-20.080416],[119.823692,-19.974361],[119.97258,-19.936722],[120.196747,-19.917528],[120.69603,-19.742695],[120.995476,-19.614334],[121.207863,-19.470362],[121.318863,-19.358612],[121.513054,-19.091749],[121.656029,-18.773056],[121.617142,-18.710916],[121.730972,-18.702639],[121.783668,-18.660778],[121.759888,-18.558556],[121.841858,-18.448416],[121.903969,-18.467445],[122.018692,-18.392084],[122.059891,-18.331083],[122.127136,-18.310139],[122.205719,-18.213223],[122.341835,-18.148167],[122.37336,-18.108028],[122.372559,-17.996805],[122.254723,-17.963751],[122.209137,-17.853001],[122.199028,-17.695583],[122.143082,-17.568083],[122.145889,-17.36536],[122.169998,-17.268499],[122.252334,-17.119389],[122.371971,-16.995916],[122.48539,-16.918501],[122.531502,-16.841],[122.763084,-16.762194],[122.738419,-16.704111],[122.769943,-16.591833],[122.889893,-16.509832],[122.921669,-16.396139],[123.017586,-16.421305],[122.998642,-16.526583],[122.955307,-16.584139],[123.035004,-16.67775],[123.129692,-16.740528],[123.156029,-16.814833],[123.148476,-16.916834],[123.229553,-16.973362],[123.286553,-17.111694],[123.348137,-17.180056],[123.387192,-17.319445],[123.45636,-17.354889],[123.543778,-17.471777],[123.601303,-17.342556],[123.62175,-17.202168],[123.580444,-17.038334],[123.643585,-17.002916],[123.755722,-17.091694],[123.801636,-16.91575],[123.713913,-16.788723],[123.618027,-16.687445],[123.550613,-16.667166],[123.581718,-16.526972],[123.645721,-16.480972],[123.698723,-16.344139],[123.592857,-16.321306],[123.588753,-16.188055],[123.721916,-16.142471],[123.813362,-16.207722],[123.818527,-16.32625],[123.948303,-16.370832],[123.967751,-16.252111],[124.173584,-16.315556],[124.208031,-16.409082],[124.31897,-16.420139],[124.383942,-16.350611],[124.444473,-16.409111],[124.60289,-16.416222],[124.703781,-16.357555],[124.572167,-16.332306],[124.484497,-16.358694],[124.389305,-16.340195],[124.396225,-16.257473],[124.457665,-16.107639],[124.524834,-16.164917],[124.587112,-16.127861],[124.572891,-15.999695],[124.653694,-15.853389],[124.570831,-15.866806],[124.524612,-15.972834],[124.456222,-15.854777],[124.405029,-15.8515],[124.377281,-15.721528],[124.418137,-15.540889],[124.478279,-15.472584],[124.579391,-15.501361],[124.642639,-15.465278],[124.706474,-15.361083],[124.718498,-15.263528],[125.067139,-15.46075],[125.085975,-15.333639],[125.022278,-15.304722],[124.919502,-15.357722],[124.865135,-15.235084],[124.894333,-15.113889],[124.984917,-15.116834],[125.046639,-15.079445],[125.169975,-15.145],[125.237472,-15.101027],[125.317665,-15.158889],[125.407364,-15.088306],[125.359222,-15.00725],[125.280357,-15.0025],[125.277,-14.861195],[125.216331,-14.868278],[125.19622,-14.786472],[125.136581,-14.749139],[125.302139,-14.558028],[125.44397,-14.594556],[125.492302,-14.511278],[125.603363,-14.506056],[125.620529,-14.403639],[125.580391,-14.314167],[125.630753,-14.229278],[125.682472,-14.333861],[125.660805,-14.439445],[125.826164,-14.479139],[125.847031,-14.602805],[125.920998,-14.533417],[126.00058,-14.548778],[126.037613,-14.503222],[126.01239,-14.414945],[126.083031,-14.307917],[126.054474,-14.257112],[126.143364,-14.207417],[126.14608,-14.126862],[126.098221,-14.075111],[126.08461,-13.91625],[126.19297,-14.004945],[126.209808,-14.123305],[126.25386,-14.234612],[126.353775,-14.188306],[126.291252,-14.135222],[126.388443,-14.011611],[126.552361,-14.144527],[126.569138,-14.2405],[126.717331,-14.109083],[126.73867,-13.993972],[126.805359,-13.913834],[126.747192,-13.797305],[126.962113,-13.741834],[127.096611,-13.900695],[127.302475,-13.956722],[127.343445,-13.906445],[127.464447,-13.998667],[127.524582,-14.075833],[127.670113,-14.185223],[127.764748,-14.301723],[127.789863,-14.384778],[127.877525,-14.433278],[127.904198,-14.502528],[128.133423,-14.6605],[128.185104,-14.744805],[128.146942,-14.844667],[128.100921,-15.064111],[128.075562,-15.105389],[128.117355,-15.195334],[128.224914,-15.217834],[128.195556,-15.100111],[128.223282,-15.011],[128.302887,-14.986611],[128.337311,-15.052584],[128.416366,-15.045611],[128.477585,-14.908806],[128.393646,-14.819805],[128.553665,-14.760972],[128.676941,-14.784722],[128.866974,-14.848945],[129.050339,-14.885167],[129.18367,-14.98675],[129.165588,-15.04425],[129.225189,-15.153167],[129.258804,-15.030611],[129.228165,-14.964306],[129.308533,-14.858833],[129.471802,-14.936639],[129.594894,-15.101944],[129.652145,-15.098528],[129.61673,-14.989695],[129.644699,-14.888945],[129.754135,-14.798333],[129.677109,-14.764028],[129.620697,-14.683194],[129.754166,-14.599944],[129.520645,-14.545722],[129.478195,-14.489278],[129.353668,-14.413362],[129.407974,-14.233194],[129.501022,-14.099334],[129.716721,-14.007389],[129.749023,-13.951667],[129.717728,-13.851027],[129.777298,-13.7875],[129.785049,-13.663139],[129.825027,-13.511806],[130.00853,-13.525583],[130.151413,-13.441139],[130.267304,-13.299084],[130.159027,-13.179222],[130.111557,-13.154612],[130.137085,-12.928583],[130.217392,-12.949917],[130.333893,-12.874611],[130.360443,-12.677806],[130.436554,-12.634556],[130.573273,-12.649222],[130.589478,-12.502167],[130.578415,-12.406333],[130.626358,-12.386167],[130.755142,-12.427472],[130.770752,-12.529944],[130.817505,-12.559972],[130.921966,-12.510305],[130.817993,-12.404028],[130.896667,-12.325806],[131.013717,-12.31475],[131.046616,-12.139916],[131.215469,-12.220166],[131.265335,-12.079889],[131.36409,-12.241361],[131.463135,-12.283195],[131.728165,-12.277166],[131.892059,-12.213305],[131.918838,-12.257361],[132.067169,-12.296083],[132.171753,-12.209723],[132.257309,-12.170972],[132.4142,-12.225583],[132.435471,-12.151167],[132.552994,-12.086445],[132.621002,-12.075639],[132.649811,-11.881778],[132.581451,-11.781527],[132.702087,-11.633778],[132.601257,-11.641889],[132.592468,-11.561084],[132.526031,-11.435223],[132.457138,-11.455722],[132.242554,-11.451667],[132.117645,-11.530361],[132.075867,-11.529333],[131.987335,-11.412723],[131.958496,-11.342195],[131.854782,-11.29275],[131.879334,-11.180805],[131.963364,-11.245833],[131.983246,-11.169888],[132.065521,-11.191806],[132.096771,-11.301723],[132.176422,-11.415806],[132.233368,-11.338139],[132.189331,-11.294945],[132.240494,-11.197972],[132.341339,-11.132305],[132.417892,-11.261583],[132.497726,-11.264527],[132.506973,-11.327806],[132.632416,-11.429806],[132.655411,-11.506778],[132.717728,-11.524583],[132.919174,-11.337584],[133.006424,-11.433389],[133.105087,-11.637139],[133.156494,-11.713278],[133.319641,-11.769806],[133.638718,-11.826028],[133.744202,-11.778944],[133.791061,-11.724694],[133.920837,-11.757055],[133.829865,-11.86275],[133.91861,-11.916778],[134.054413,-11.865945],[134.128082,-11.904944],[134.18747,-12.036834],[134.314087,-12.025306],[134.396667,-12.065333],[134.500855,-12.076056],[134.596054,-12.057584],[134.684387,-11.968778],[134.836578,-12.063084],[134.837784,-12.112361],[134.93367,-12.146472],[135.051941,-12.265139],[135.158341,-12.263],[135.26181,-12.227417],[135.316162,-12.117611],[135.368271,-12.089222],[135.461304,-12.115528],[135.533035,-12.070139],[135.586227,-12.090028],[135.721664,-12.014944],[135.753143,-12.080973],[135.651581,-12.154972],[135.707199,-12.264139],[135.773224,-12.256361],[135.820526,-12.186639],[135.936691,-12.151195],[135.924423,-12.226027],[136.017837,-12.316584],[135.970032,-12.374361],[136.041885,-12.471945],[136.149002,-12.438611],[136.217667,-12.464111],[136.296051,-12.406195],[136.359665,-12.259055],[136.341385,-12.207084],[136.226089,-12.213445],[136.210968,-12.154834],[136.260773,-12.078389],[136.441559,-12.005584],[136.524582,-11.992778],[136.598251,-12.205277],[136.661163,-12.281445],[136.742661,-12.26875],[136.697693,-12.192361],[136.779358,-12.163333],[136.923187,-12.284223],[136.935364,-12.371778],[136.724411,-12.479055],[136.737549,-12.538111],[136.677521,-12.6925],[136.595688,-12.743806],[136.480606,-12.771],[136.475525,-12.84225],[136.554749,-12.917472],[136.634476,-12.954722],[136.532364,-13.025556],[136.563812,-13.062944],[136.451385,-13.225862],[136.37442,-13.247945],[136.352799,-13.120028],[136.235779,-13.209888],[136.143448,-13.238389],[136.100174,-13.177778],[136.045837,-13.240778],[135.994782,-13.216861],[135.922562,-13.263722],[135.872284,-13.350889],[135.851395,-13.447194],[135.884888,-13.729584],[136.029358,-13.750417],[135.984055,-13.898334],[135.905777,-13.9975],[135.878052,-14.186334],[135.730331,-14.287694],[135.652496,-14.417806],[135.620331,-14.426306],[135.540604,-14.5515],[135.524826,-14.655139],[135.424362,-14.726916],[135.394974,-14.822278],[135.4702,-14.973222],[135.672165,-15.106222],[135.753861,-15.125778],[135.868225,-15.190306],[135.932892,-15.261444],[136.236664,-15.419723],[136.285523,-15.570694],[136.448974,-15.653444],[136.569504,-15.750334],[136.640915,-15.67675],[136.721588,-15.703806],[136.656586,-15.775389],[136.709412,-15.854667],[136.725113,-15.934472],[136.818588,-15.901028],[136.901443,-15.929194],[136.952942,-15.876472],[137.259918,-16.021973],[137.316055,-16.093889],[137.456085,-16.157389],[137.588867,-16.180389],[137.745865,-16.271389],[137.864471,-16.435139],[138.119309,-16.651777],[138.314804,-16.748083],[138.536728,-16.786167],[138.635498,-16.771084],[138.68692,-16.806168],[138.87822,-16.878111],[139.013336,-16.894083],[139.14241,-17.086334],[139.164841,-17.196861],[139.239395,-17.32325],[139.345078,-17.373833],[139.472916,-17.395527],[139.644699,-17.539194],[139.760895,-17.580028],[139.81369,-17.571611],[139.931412,-17.627056],[140.002502,-17.715389],[140.115967,-17.724695],[140.395279,-17.677195],[140.50592,-17.641611],[140.692993,-17.522083],[140.822449,-17.469028],[140.884552,-17.380083],[140.910171,-17.238028],[140.94725,-17.148916],[140.949783,-17.018862],[141.064224,-16.874945],[141.094452,-16.808083],[141.1828,-16.723917],[141.266937,-16.563389],[141.293777,-16.421833],[141.353363,-16.23225],[141.432861,-16.066668],[141.389771,-15.91525],[141.47142,-15.524611],[141.56691,-15.303638],[141.577362,-15.207334],[141.632828,-15.162889],[141.666168,-14.998222],[141.589355,-14.850805],[141.526275,-14.484722],[141.604645,-14.225],[141.594299,-14.090138],[141.468308,-13.923555],[141.471496,-13.838028],[141.525696,-13.565222],[141.693893,-13.275972],[141.630219,-13.160028],[141.600479,-12.957611],[141.715881,-12.879778],[141.762772,-12.820084],[141.806915,-12.677167],[141.859253,-12.663195],[141.759079,-12.539945],[141.656479,-12.523389],[141.592605,-12.556945],[141.811279,-12.047722],[141.887665,-11.99125],[141.937302,-12.067028],[141.954773,-11.858222],[142.052338,-11.552834],[142.098053,-11.449166],[142.12558,-11.236361],[142.155502,-11.116472],[142.128494,-10.983277],[142.166916,-10.932333],[142.288696,-10.921389],[142.357162,-10.883028],[142.442245,-10.713388],[142.511414,-10.706278],[142.608139,-10.753389],[142.552506,-10.834444],[142.636612,-10.941028],[142.747253,-10.995084],[142.78772,-11.080472],[142.794144,-11.278916],[142.862106,-11.357555],[142.834717,-11.430555],[142.859283,-11.641723],[142.857224,-11.849972],[142.973496,-11.933084],[143.148438,-11.920917],[143.186478,-11.993611],[143.092529,-12.159],[143.081695,-12.342972],[143.181747,-12.341084],[143.274475,-12.404583],[143.276535,-12.510389],[143.440384,-12.619166],[143.363388,-12.795222],[143.356674,-12.872361],[143.503891,-12.860556],[143.518417,-13.013111],[143.505859,-13.106889],[143.529785,-13.324862],[143.587326,-13.379278],[143.592224,-13.524777],[143.559143,-13.593056],[143.54892,-13.802444],[143.595444,-13.866222],[143.63356,-13.981334],[143.683227,-14.01675],[143.701507,-14.187528],[143.744247,-14.324611],[143.804169,-14.425361],[143.869247,-14.473833],[143.983994,-14.487306],[144.087112,-14.450139],[144.202332,-14.32125],[144.341308,-14.307333],[144.449448,-14.249028],[144.499725,-14.166778],[144.596054,-14.262584],[144.618423,-14.469111],[144.686417,-14.553667],[144.892563,-14.607472],[144.945084,-14.665334],[144.954727,-14.736167],[145.183578,-14.842195],[145.283951,-14.958333],[145.351975,-14.9825],[145.240479,-15.130555],[145.286972,-15.380694],[145.247604,-15.422083],[145.322082,-15.567583],[145.314636,-15.653833],[145.360687,-15.715834],[145.376465,-15.836722],[145.360947,-15.919416],[145.465424,-16.03886],[145.441116,-16.191555],[145.47995,-16.270779],[145.41861,-16.343334],[145.419281,-16.474472],[145.470505,-16.515389],[145.582413,-16.684029],[145.628281,-16.702249],[145.766144,-16.865723],[145.781357,-16.919666],[145.950302,-16.890722],[145.890472,-17.063639],[145.950363,-17.1355],[146.012253,-17.333528],[146.074616,-17.402334],[146.068146,-17.524584],[146.146393,-17.652805],[146.087082,-17.800806],[146.093719,-17.96925],[146.044174,-18.037027],[146.006531,-18.165001],[146.024887,-18.261473],[146.155334,-18.394388],[146.227218,-18.497944],[146.334106,-18.533501],[146.33667,-18.61536],[146.285141,-18.753416],[146.28978,-18.900555],[146.44867,-19.075695],[146.681641,-19.195055],[146.7668,-19.186028],[146.889588,-19.307167],[147.045639,-19.294777],[147.116226,-19.386333],[147.212753,-19.421194],[147.441467,-19.419556],[147.553085,-19.54125],[147.58641,-19.63925],[147.535782,-19.699888],[147.670471,-19.827972],[147.765671,-19.819334],[147.759308,-19.726084],[147.843109,-19.727388],[147.863418,-19.855667],[147.921494,-19.910694],[148.183273,-19.949333],[148.226776,-20.037195],[148.337952,-20.153639],[148.452423,-20.147917],[148.437164,-20.080668],[148.546616,-20.097279],[148.576782,-20.196777],[148.641449,-20.213888],[148.804855,-20.319529],[148.817551,-20.469278],[148.709946,-20.495695],[148.656555,-20.586666],[148.777664,-20.764334],[148.825256,-20.781055],[148.862808,-20.873806],[149.005173,-20.917833],[149.016449,-20.988583],[149.153946,-21.006556],[149.217255,-21.135416],[149.190674,-21.226862],[149.292282,-21.291277],[149.306671,-21.36161],[149.2733,-21.48],[149.342606,-21.47925],[149.379745,-21.538055],[149.483993,-21.5755],[149.436798,-21.644083],[149.482117,-21.992056],[149.569717,-22.232389],[149.705673,-22.395805],[149.6987,-22.462944],[149.845642,-22.416944],[149.885605,-22.494722],[149.998642,-22.527027],[149.910339,-22.349916],[149.953476,-22.190361],[150.056854,-22.136194],[150.099274,-22.224806],[150.219528,-22.395695],[150.279617,-22.40311],[150.446442,-22.524361],[150.56134,-22.567362],[150.536774,-22.462055],[150.563995,-22.321806],[150.668671,-22.353472],[150.700867,-22.441],[150.751022,-22.451027],[150.716354,-22.557362],[150.786743,-22.559195],[150.785858,-22.651388],[150.830109,-22.684694],[150.748672,-23.134972],[150.8293,-23.263584],[150.785583,-23.316166],[150.848618,-23.512083],[150.700089,-23.512028],[150.683411,-23.572722],[150.896728,-23.637888],[150.96228,-23.613722],[150.971496,-23.567556],[151.026031,-23.579166],[151.04686,-23.638527],[151.132446,-23.699806],[151.172531,-23.818695],[151.294311,-23.860805],[151.432938,-24],[151.516525,-24.050472],[151.680115,-24.049278],[151.76709,-24.018],[151.784363,-24.120056],[151.942032,-24.237888],[152.038467,-24.499195],[152.166534,-24.647362],[152.306976,-24.731833],[152.375809,-24.740862],[152.472061,-24.822971],[152.48906,-24.97625],[152.559051,-25.099333],[152.632309,-25.152195],[152.657577,-25.245806],[152.910416,-25.293777],[152.908783,-25.431749],[152.870606,-25.447222],[152.92334,-25.720972],[152.983414,-25.803556],[153.138443,-25.950056],[153.149139,-26.02725],[153.089035,-26.186056],[153.065994,-26.336889],[153.122498,-26.377056],[153.09845,-26.5355],[153.144104,-26.787916],[153.118423,-26.883194],[153.070862,-26.918194],[153.065521,-26.98875],[153.10791,-27.092251],[153.031998,-27.18461],[153.088745,-27.339666],[153.15303,-27.363527],[153.207809,-27.483833],[153.306885,-27.569723],[153.322494,-27.716972],[153.383743,-27.832916],[153.453201,-28.087555],[153.552002,-28.191361],[153.582229,-28.36511],[153.557892,-28.53561],[153.631165,-28.6525],[153.597137,-28.779333],[153.607117,-28.851473],[153.46164,-29.029278],[153.423615,-29.178806],[153.302338,-29.389973],[153.360107,-29.460777],[153.267166,-29.890139],[153.262924,-29.951084],[153.199921,-30.037722],[153.203781,-30.160084],[153.143799,-30.311445],[153.052368,-30.465389],[153.012329,-30.584806],[152.99556,-30.83939],[153.093521,-30.926445],[153.038895,-31.002195],[153.05983,-31.083889],[152.988007,-31.164362],[152.966583,-31.334194],[152.916077,-31.42675],[152.943085,-31.482445],[152.844192,-31.586527],[152.806274,-31.728445],[152.743423,-31.853222],[152.643997,-31.921612],[152.543976,-32.039471],[152.508896,-32.179359],[152.567367,-32.233917],[152.522308,-32.314583],[152.535645,-32.453278],[152.352005,-32.523582],[152.185196,-32.672832],[152.069504,-32.696446],[152.126022,-32.773083],[151.953003,-32.816944],[151.808228,-32.886307],[151.726608,-33.017971],[151.510559,-33.087807],[151.565521,-33.251667],[151.448883,-33.305168],[151.48642,-33.382637],[151.418244,-33.527721],[151.348282,-33.522583],[151.284164,-33.583332],[151.342606,-33.632584],[151.30069,-33.77261],[151.137924,-34.006916],[151.167923,-34.100555],[150.975784,-34.247944],[150.923553,-34.327026],[150.893829,-34.458416],[150.811829,-34.511223],[150.887497,-34.604916],[150.824615,-34.783974],[150.754166,-34.836304],[150.756561,-34.996388],[150.682938,-35.024166],[150.699615,-35.119751],[150.542282,-35.217335],[150.472671,-35.302723],[150.477799,-35.361137],[150.375229,-35.48164],[150.381882,-35.560249],[150.304993,-35.643139],[150.23494,-35.786194],[150.153244,-35.884388],[150.125641,-36.134804],[150.140884,-36.305054],[150.083191,-36.362721],[150.065308,-36.553082],[150.003998,-36.655724],[149.980087,-36.769306],[149.896469,-36.898529],[149.956726,-37.106251],[150.034424,-37.239418],[149.943253,-37.282501],[149.980133,-37.451279],[149.963867,-37.514278],[149.795227,-37.540527],[149.674698,-37.684113],[149.495133,-37.770748],[149.309173,-37.781113],[148.95047,-37.778194],[148.700363,-37.800446],[148.273438,-37.817417],[148.079254,-37.866001],[147.853699,-37.895306],[147.722946,-37.844833],[147.726578,-37.920029],[147.538833,-38.032639],[147.640366,-38.042778],[147.07634,-38.468613],[146.929947,-38.599056],[146.585754,-38.695526],[146.246857,-38.687611],[146.193726,-38.747807],[146.267136,-38.807304],[146.319977,-38.906502],[146.478607,-38.795528],[146.438965,-38.98064],[146.459244,-39.058334],[146.426743,-39.132915],[146.263977,-38.990696],[146.154419,-38.839611],[146.018555,-38.823944],[145.921082,-38.878113],[145.837997,-38.729778],[145.824783,-38.655499],[145.739029,-38.63575],[145.60556,-38.677418],[145.42514,-38.512028],[145.435745,-38.434387],[145.548691,-38.380722],[145.489578,-38.23811],[145.287949,-38.212666],[145.133591,-38.392887],[145.012589,-38.482166],[144.88942,-38.48072],[144.84433,-38.372807],[144.980774,-38.32814],[145.025086,-38.234501],[145.117493,-38.152],[145.115585,-38.062054],[145.03659,-38.000721],[144.92955,-37.845417],[144.812729,-37.883972],[144.798523,-37.927334],[144.482117,-38.0835],[144.387024,-38.083363],[144.358139,-38.147083],[144.557938,-38.16114],[144.629944,-38.113445],[144.720505,-38.17836],[144.609589,-38.295776],[144.432755,-38.285751],[144.24234,-38.397915],[144.049606,-38.473473],[143.839447,-38.692333],[143.684616,-38.738029],[143.559219,-38.854889],[143.513229,-38.85947],[143.361801,-38.7575],[143.247284,-38.771778],[143.041199,-38.635166],[142.871109,-38.610863],[142.791947,-38.575359],[142.554336,-38.418056],[142.36264,-38.350666],[142.243561,-38.393139]]],[[[144.988251,-40.75436],[145.096451,-40.827473],[145.284271,-40.801807],[145.313202,-40.853138],[145.498749,-40.859417],[145.545395,-40.911472],[145.721191,-40.968971],[145.805115,-41.031696],[145.955582,-41.064724],[146.169449,-41.152557],[146.39891,-41.174278],[146.612274,-41.139],[146.716522,-41.072834],[146.948135,-41.027584],[147.019104,-40.98336],[147.145614,-41.014473],[147.248642,-40.955166],[147.39798,-41.013973],[147.525497,-40.949528],[147.599838,-40.849777],[147.833557,-40.889362],[147.916855,-40.835056],[147.970139,-40.744888],[148.075943,-40.772861],[148.232727,-40.887501],[148.326782,-40.993973],[148.268188,-41.126305],[148.308838,-41.292667],[148.26416,-41.49464],[148.318161,-41.627251],[148.26416,-41.835751],[148.320801,-41.917721],[148.213745,-42.069527],[148.070892,-42.117306],[148.011063,-42.242695],[148.006256,-42.466751],[147.95166,-42.554695],[147.939896,-42.733665],[147.8647,-42.817612],[147.980393,-42.892693],[147.99353,-42.962555],[147.925079,-43.012527],[147.985977,-43.15464],[147.943802,-43.202332],[147.779083,-43.220085],[147.619888,-43.06625],[147.707275,-42.999195],[147.770661,-43.055279],[147.853775,-43.042862],[147.817947,-42.908806],[147.525604,-42.85125],[147.493057,-42.908695],[147.358551,-42.915722],[147.339798,-43.05286],[147.238525,-43.147888],[147.236664,-43.270832],[147.080277,-43.291138],[147.003754,-43.435471],[146.796524,-43.60289],[146.692841,-43.624084],[146.571808,-43.524193],[146.402466,-43.53986],[146.221619,-43.489723],[146.043274,-43.55339],[146.029053,-43.46875],[145.970978,-43.405167],[146.028808,-43.341583],[145.943802,-43.23011],[145.815201,-43.280693],[145.803116,-43.207443],[145.691498,-43.116806],[145.586502,-42.973473],[145.479507,-42.91761],[145.380615,-42.773277],[145.363022,-42.66114],[145.277085,-42.6175],[145.194641,-42.330502],[145.252136,-42.290695],[145.476501,-42.430668],[145.46434,-42.348694],[145.357361,-42.235027],[145.254227,-42.175446],[145.251587,-42.065582],[145.193421,-41.954945],[145.069382,-41.854862],[144.923996,-41.681057],[144.776138,-41.441891],[144.775085,-41.370224],[144.681808,-41.237499],[144.670975,-41.085918],[144.607224,-41.012695],[144.610199,-40.93689],[144.688248,-40.89986],[144.705246,-40.775833],[144.769089,-40.710804],[144.926254,-40.76228],[144.988251,-40.75436]]],[[[130.778808,-11.489528],[130.709198,-11.383417],[130.849671,-11.348917],[130.902939,-11.306334],[130.996246,-11.355278],[131.198273,-11.251583],[131.277466,-11.188723],[131.396134,-11.263445],[131.524368,-11.394944],[131.539474,-11.454556],[131.465271,-11.499473],[131.455521,-11.584556],[131.374329,-11.596778],[131.282394,-11.736],[131.080948,-11.831667],[130.974365,-11.940917],[130.861557,-11.859083],[130.680359,-11.791028],[130.673248,-11.766389],[130.490219,-11.655583],[130.490448,-11.560638],[130.42955,-11.495778],[130.407608,-11.301111],[130.358749,-11.24775],[130.399826,-11.160111],[130.478882,-11.251194],[130.60202,-11.317917],[130.700302,-11.474806],[130.778808,-11.489528]]],[[[137.17955,-35.98864],[137.13211,-36.034443],[136.85286,-36.019917],[136.755478,-36.052082],[136.654724,-35.972279],[136.578659,-35.954166],[136.531662,-35.87925],[136.586166,-35.752304],[136.784561,-35.703415],[137.11734,-35.654888],[137.309494,-35.581696],[137.57367,-35.61375],[137.666977,-35.743332],[137.891159,-35.727943],[138.061081,-35.761555],[138.12558,-35.850834],[138.040771,-35.907444],[137.932754,-35.867973],[137.733521,-35.857971],[137.595688,-35.935444],[137.615555,-35.979057],[137.459579,-36.077641],[137.350632,-35.996166],[137.17955,-35.98864]]],[[[136.773636,-14.162111],[136.852646,-14.213278],[136.945007,-14.163861],[136.944229,-14.280639],[136.899856,-14.310528],[136.784943,-14.267028],[136.648697,-14.299806],[136.624054,-14.270333],[136.483139,-14.240472],[136.404587,-14.177944],[136.440521,-14.124805],[136.406326,-13.979555],[136.433609,-13.904028],[136.503052,-13.841611],[136.633698,-13.78975],[136.587326,-13.693111],[136.674133,-13.704667],[136.753967,-13.837055],[136.907562,-13.811306],[136.850937,-13.914416],[136.784561,-13.92175],[136.757355,-14.061],[136.696198,-14.121278],[136.773636,-14.162111]]],[[[153.236938,-24.957417],[153.224228,-24.901806],[153.135162,-24.799194],[153.275498,-24.706806],[153.269135,-24.868139],[153.363083,-25.02161],[153.154755,-25.459749],[153.08052,-25.675417],[153.096466,-25.757],[152.998367,-25.734362],[152.94519,-25.563055],[153.057525,-25.340973],[153.033478,-25.178778],[153.143997,-25.109806],[153.236938,-24.957417]]],[[[148.003174,-39.7775],[148.187576,-39.948528],[148.294418,-39.973194],[148.281479,-40.080193],[148.333054,-40.214748],[148.208771,-40.216526],[148.120285,-40.278889],[148.04425,-40.254696],[148.008667,-40.116612],[147.936523,-40.042915],[147.887054,-39.918667],[147.749756,-39.875195],[147.846527,-39.825165],[147.852646,-39.763443],[147.932785,-39.736137],[148.003174,-39.7775]]],[[[130.206116,-11.507889],[130.174973,-11.421778],[130.336243,-11.314861],[130.395996,-11.419111],[130.376587,-11.507417],[130.458939,-11.573139],[130.469467,-11.677055],[130.555969,-11.697361],[130.641022,-11.767639],[130.611054,-11.827389],[130.501923,-11.838056],[130.308945,-11.775084],[130.136063,-11.82625],[130.043244,-11.827027],[130.062271,-11.689445],[130.149918,-11.703889],[130.196548,-11.650139],[130.170029,-11.557528],[130.206116,-11.507889]]],[[[143.880356,-40],[143.835922,-39.905109],[143.866531,-39.836388],[143.84581,-39.7145],[143.915894,-39.682278],[143.948837,-39.581306],[144.109299,-39.68111],[144.10553,-39.870529],[144.128021,-39.995609],[144.021896,-40.093304],[143.870422,-40.113682],[143.880356,-40]]],[[[139.3853,-16.633751],[139.319199,-16.731667],[139.235977,-16.736166],[139.164169,-16.667555],[139.164642,-16.606445],[139.307022,-16.462862],[139.468811,-16.447],[139.552033,-16.390917],[139.605804,-16.402584],[139.7043,-16.487473],[139.597366,-16.553139],[139.502808,-16.516251],[139.45105,-16.670694],[139.3853,-16.633751]]],[[[112.918861,-25.651333],[112.917664,-25.540251],[112.995781,-25.574917],[113.147026,-25.967751],[113.227974,-26.104889],[113.171944,-26.121334],[113.115448,-26.006971],[113.040947,-25.931612],[112.956337,-25.789139],[112.918861,-25.651333]]],[[[151.174118,-23.746778],[151.133392,-23.678473],[151.046921,-23.624083],[151.034882,-23.582306],[151.009918,-23.559],[150.987335,-23.506361],[151.05716,-23.452168],[151.107437,-23.496944],[151.234284,-23.534166],[151.22409,-23.605806],[151.287521,-23.692055],[151.242554,-23.795416],[151.174118,-23.746778]]],[[[148.478439,-40.443306],[148.35025,-40.494751],[148.313034,-40.436527],[148.224106,-40.470806],[148.0793,-40.459946],[147.986328,-40.390194],[148.139725,-40.342361],[148.25917,-40.342888],[148.335281,-40.304611],[148.478439,-40.443306]]],[[[147.341247,-43.278027],[147.346146,-43.403889],[147.301559,-43.516777],[147.161423,-43.465694],[147.240219,-43.308777],[147.341247,-43.278027]]],[[[146.085968,-18.244362],[146.122635,-18.235695],[146.272217,-18.311972],[146.34816,-18.423222],[146.301117,-18.496056],[146.22319,-18.481251],[146.208252,-18.401527],[146.085968,-18.244362]]],[[[132.471161,-11.155111],[132.579132,-10.9955],[132.603424,-11.141055],[132.53978,-11.249583],[132.471161,-11.155111]]],[[[153.419311,-27.636694],[153.411438,-27.508944],[153.44191,-27.393862],[153.547806,-27.435917],[153.514832,-27.492001],[153.455948,-27.715778],[153.419311,-27.636694]]],[[[135.92453,-11.774167],[135.934357,-11.804222],[135.823227,-11.936584],[135.731888,-12.003139],[135.552444,-12.053416],[135.588303,-11.969722],[135.733063,-11.940111],[135.92453,-11.774167]]],[[[137.037384,-15.798111],[136.99295,-15.788972],[136.934113,-15.68925],[137.023025,-15.604055],[137.071533,-15.65225],[137.07872,-15.759722],[137.037384,-15.798111]]],[[[115.314583,-20.839333],[115.428887,-20.676556],[115.477333,-20.768667],[115.392693,-20.89325],[115.314583,-20.839333]]],[[[136.698669,-11.137722],[136.71878,-11.191334],[136.585663,-11.383555],[136.58905,-11.275222],[136.698669,-11.137722]]],[[[145.351502,-38.422668],[145.278503,-38.399918],[145.2892,-38.294998],[145.458191,-38.313694],[145.351502,-38.422668]]],[[[142.122497,-10.694417],[142.186142,-10.601528],[142.279053,-10.709139],[142.153137,-10.769361],[142.122497,-10.694417]]],[[[153.367386,-27.156918],[153.363007,-27.067972],[153.467285,-27.033333],[153.421219,-27.192556],[153.367386,-27.156918]]],[[[124.522942,-15.297667],[124.589417,-15.350889],[124.553444,-15.397833],[124.473915,-15.35725],[124.522942,-15.297667]]],[[[125.139969,-14.649972],[125.098999,-14.614555],[125.121086,-14.484612],[125.215668,-14.490556],[125.180473,-14.62925],[125.139969,-14.649972]]],[[[142.297104,-10.126166],[142.347672,-10.174444],[142.287201,-10.2585],[142.189606,-10.190139],[142.23053,-10.123555],[142.297104,-10.126166]]],[[[153.081589,-26.932028],[153.143921,-26.923],[153.209168,-27.078722],[153.161591,-27.097221],[153.103562,-27.020306],[153.081589,-26.932028]]],[[[139.440506,-17.105333],[139.492661,-17.01725],[139.564606,-17.094944],[139.440506,-17.105333]]],[[[136.54953,-15.638778],[136.521607,-15.53975],[136.609055,-15.527889],[136.601272,-15.625584],[136.54953,-15.638778]]],[[[145.15947,-38.51553],[145.166748,-38.467583],[145.296783,-38.4515],[145.306366,-38.508583],[145.15947,-38.51553]]],[[[132.621246,-11.655306],[132.635422,-11.714833],[132.540863,-11.721778],[132.504974,-11.638445],[132.621246,-11.655306]]],[[[142.184479,-10.064527],[142.1913,-10.145056],[142.096634,-10.141723],[142.120392,-10.070694],[142.184479,-10.064527]]]]},"properties":{"name":"澳大利亚","name_en":"AUSTRALIA","id":"AUS"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.232292,19.903872],[-75.291008,19.887905],[-75.58786,19.896395],[-75.702515,19.961916],[-75.893577,19.973793],[-75.961517,19.959608],[-76.255325,19.996597],[-76.523323,19.951517],[-76.651642,19.962332],[-76.863144,19.942623],[-76.987465,19.888275],[-77.309982,19.911436],[-77.345337,19.859123],[-77.593437,19.85317],[-77.673172,19.828083],[-77.737381,19.884033],[-77.607933,20.036673],[-77.381241,20.210941],[-77.176498,20.293678],[-77.116432,20.359249],[-77.081169,20.466717],[-77.115822,20.525375],[-77.2435,20.54805],[-77.198204,20.632338],[-77.325004,20.71476],[-77.470894,20.674553],[-77.577476,20.69943],[-77.743553,20.690224],[-77.849579,20.731724],[-77.926849,20.697304],[-78.034401,20.704571],[-78.13723,20.761476],[-78.154335,20.806841],[-78.265121,20.906237],[-78.493202,21.059191],[-78.490455,21.139887],[-78.526245,21.285551],[-78.59919,21.479019],[-78.748329,21.643641],[-78.915863,21.601395],[-79.064369,21.591166],[-79.207664,21.542198],[-79.366806,21.606422],[-79.448654,21.591581],[-79.666138,21.693583],[-79.817032,21.710768],[-80.033684,21.769798],[-80.043785,21.811352],[-80.147293,21.825502],[-80.294662,21.90275],[-80.426926,22.040653],[-80.523338,22.066822],[-80.596931,22.052216],[-80.760544,22.063213],[-80.879677,22.043249],[-81.057594,22.072451],[-81.120285,22.113136],[-81.142181,22.219746],[-81.2771,22.107193],[-81.362991,22.093275],[-81.406479,22.180286],[-81.521919,22.207052],[-81.567642,22.179783],[-81.729286,22.207392],[-81.807823,22.181419],[-81.856216,22.251013],[-82.095535,22.3419],[-82.129478,22.434397],[-81.816963,22.433126],[-81.650154,22.496878],[-81.651871,22.581476],[-81.744095,22.637974],[-81.889519,22.684738],[-82.105644,22.656723],[-82.194695,22.689459],[-82.636101,22.68326],[-82.77327,22.702597],[-82.789619,22.630589],[-82.907585,22.555553],[-83.064438,22.496592],[-83.154213,22.354893],[-83.259018,22.355507],[-83.36718,22.209118],[-83.484512,22.175974],[-83.57412,22.243885],[-83.660332,22.171379],[-83.918724,22.174583],[-83.998093,22.069],[-83.972481,22.015669],[-84.039681,21.910843],[-84.150307,21.932383],[-84.270676,21.897474],[-84.435227,21.780237],[-84.520592,21.805744],[-84.468094,21.868942],[-84.497787,21.929222],[-84.601059,21.928631],[-84.727142,21.88381],[-84.808884,21.81455],[-84.873512,21.889761],[-84.639358,21.979425],[-84.502754,22.050476],[-84.322594,22.034164],[-84.342613,22.122787],[-84.406685,22.14138],[-84.425171,22.217066],[-84.404426,22.327648],[-84.212212,22.560707],[-84.017273,22.688581],[-83.828827,22.746891],[-83.708366,22.812193],[-83.576057,22.831175],[-83.464363,22.887415],[-83.386795,22.871801],[-83.247047,22.995167],[-83.156296,22.988481],[-83.047531,23.014526],[-82.608742,23.046694],[-82.468903,23.099159],[-82.396324,23.153294],[-82.223175,23.188709],[-82.004585,23.190474],[-81.858093,23.153938],[-81.59964,23.160404],[-81.478722,23.103167],[-81.284569,23.139809],[-81.175926,23.033438],[-81.128899,23.02455],[-81.023781,23.110407],[-80.951378,23.05765],[-80.750572,23.101578],[-80.626633,23.096674],[-80.536072,22.997753],[-80.288292,22.912027],[-80.159149,22.953449],[-80.015045,22.939005],[-79.961235,22.869732],[-79.86937,22.841429],[-79.634514,22.733379],[-79.614212,22.666142],[-79.503166,22.529276],[-79.4646,22.537163],[-79.355042,22.416271],[-79.161492,22.377815],[-78.98999,22.4051],[-78.772782,22.387569],[-78.541443,22.308279],[-78.499542,22.265732],[-78.375122,22.230108],[-78.301659,22.157864],[-78.167816,22.131691],[-78.057625,22.080053],[-77.982208,21.964914],[-77.862373,21.876081],[-77.855972,21.972103],[-77.952087,22.076174],[-77.788094,22.104898],[-77.750236,22.05957],[-77.627106,22.041347],[-77.637894,21.939398],[-77.709564,21.915157],[-77.740799,21.79838],[-77.573875,21.778885],[-77.461082,21.735805],[-77.402534,21.756857],[-77.300148,21.732399],[-77.070259,21.601629],[-76.919014,21.441656],[-76.765518,21.372093],[-76.659485,21.353415],[-76.601791,21.290756],[-76.392387,21.279852],[-76.147987,21.172691],[-76.101692,21.11764],[-76.016167,21.090641],[-75.811996,21.137325],[-75.711624,21.129682],[-75.617172,21.076332],[-75.570831,21.011017],[-75.64679,20.897749],[-75.548599,20.832781],[-75.470436,20.740335],[-75.226433,20.72595],[-75.10434,20.689184],[-74.978592,20.701017],[-74.836288,20.627247],[-74.735825,20.627323],[-74.726128,20.561979],[-74.592423,20.486376],[-74.489525,20.345673],[-74.381218,20.295181],[-74.21904,20.317686],[-74.142899,20.255508],[-74.155792,20.170275],[-74.277588,20.068037],[-74.361931,20.082521],[-74.643112,20.045458],[-74.836754,20.035303],[-74.97834,19.927782],[-75.078278,19.901798],[-75.232292,19.903872]]],[[[-82.932243,21.9352],[-82.845505,21.935869],[-82.679894,21.872787],[-82.669899,21.802408],[-82.579041,21.73728],[-82.605377,21.698427],[-82.547088,21.573507],[-82.601898,21.528995],[-82.88044,21.439217],[-83.081703,21.469604],[-82.964905,21.585047],[-83.095055,21.787992],[-83.018364,21.890596],[-82.932243,21.9352]]],[[[-77.862717,22.216429],[-77.82573,22.149527],[-77.970215,22.129604],[-78.025825,22.226234],[-78.103355,22.303205],[-78.241783,22.329445],[-78.206528,22.437859],[-78.109596,22.413981],[-78.068977,22.303453],[-77.862717,22.216429]]],[[[-78.509254,22.529345],[-78.345566,22.536917],[-78.285118,22.456242],[-78.532906,22.437475],[-78.646988,22.483763],[-78.653473,22.556599],[-78.509254,22.529345]]]]},"properties":{"name":"古巴","name_en":"CUBA","id":"CUB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[15.688056,79.71328],[15.647722,79.86322],[15.921889,79.933502],[16.146139,80.057198],[17.568777,79.889641],[18.057249,79.713448],[17.702418,79.607193],[17.783527,79.466919],[18.026361,79.487419],[18.094084,79.59639],[18.663917,79.561722],[18.86414,79.441193],[18.809584,79.293053],[19.135666,79.149002],[19.405001,79.18322],[19.736918,79.156998],[19.895472,79.01683],[20.178694,79.006638],[20.544805,78.929108],[21.392166,78.851418],[21.522638,78.755302],[21.080389,78.65908],[20.788111,78.711166],[20.276056,78.672279],[20.149334,78.61528],[19.535334,78.599388],[19.683666,78.510307],[18.960806,78.472725],[19.065111,78.245552],[18.925861,78.183975],[19.0485,78.123497],[18.923834,78.052887],[18.372278,78.039558],[18.48311,77.965698],[18.323555,77.889832],[18.436832,77.766975],[18.2215,77.499275],[17.750528,77.498695],[17.469278,77.328476],[17.432888,77.152336],[17.152861,77.037056],[17.304027,76.984947],[16.907167,76.812027],[17.183611,76.718864],[17.093027,76.640114],[16.798834,76.57058],[16.341223,76.605278],[16.329861,76.710114],[16.031889,76.747192],[15.528028,76.899361],[16.0965,76.980614],[16.089167,77.028198],[15.401611,77.002052],[15.152638,77.037277],[15.012028,77.142807],[14.48675,77.175056],[14.327666,77.282669],[13.963,77.41758],[13.941639,77.528168],[14.252027,77.577858],[14.781167,77.528503],[14.98875,77.561836],[14.774777,77.646278],[15.440444,77.735054],[16.787611,77.810165],[16.676972,77.860916],[15.754972,77.834915],[15.378305,77.871056],[15.101778,77.799858],[14.457389,77.751724],[14.208889,77.772858],[13.751056,77.752136],[13.607583,78.05172],[13.837,78.093391],[14.820556,78.11853],[15.594916,78.308693],[16.112583,78.363976],[16.641611,78.334694],[16.859945,78.390198],[16.37139,78.463692],[16.745138,78.644608],[16.450916,78.66317],[16.296722,78.559502],[15.952861,78.483528],[15.422973,78.461502],[15.202917,78.609947],[14.948611,78.594223],[14.539333,78.661003],[14.50025,78.545082],[14.737639,78.389191],[14.208,78.39183],[14.296695,78.299416],[13.807028,78.269692],[13.657917,78.198669],[12.915055,78.253029],[12.90375,78.357498],[12.572889,78.397919],[12.362723,78.592331],[12.036695,78.608475],[11.63825,78.728081],[11.693,78.806808],[11.360194,78.948502],[11.51875,78.977913],[12.269555,78.895638],[11.672083,79.074196],[12.101139,79.261253],[11.551167,79.282219],[11.665389,79.166664],[11.191889,79.116974],[11.180083,79.195526],[10.860111,79.411362],[10.909472,79.475998],[10.664473,79.538887],[10.967472,79.642281],[11.371555,79.633697],[11.211389,79.779694],[11.840417,79.839165],[12.083472,79.665413],[12.581306,79.759781],[13.398056,79.854973],[13.854639,79.867836],[13.973111,79.807945],[13.683806,79.696861],[13.037389,79.695969],[12.686055,79.599747],[13.873527,79.546524],[14.485222,79.794441],[14.918862,79.739891],[15.397223,79.472809],[15.415972,79.366219],[15.754361,79.23558],[16.172472,78.970863],[16.369583,78.978584],[15.93325,79.383888],[15.688056,79.71328]]],[[[24.882555,79.367279],[24.196472,79.294334],[24.154833,79.237305],[23.630751,79.220306],[22.87075,79.290138],[22.655166,79.339531],[22.758362,79.404274],[21.902779,79.352776],[21.449917,79.375275],[20.939333,79.348663],[20.765028,79.410141],[20.153334,79.464691],[19.661612,79.56897],[19.97575,79.635139],[20.335917,79.589279],[20.478056,79.672607],[21.562555,79.69722],[21.458639,79.824112],[20.265833,79.774864],[19.668138,79.721054],[18.875416,79.728165],[18.326111,79.825668],[18.095751,79.901695],[18.788139,79.97467],[18.816723,80.034386],[18.127861,80.067886],[17.828751,80.166054],[18.767334,80.192085],[19.236805,80.093971],[19.824638,80.305641],[19.39986,80.434059],[19.668056,80.505386],[19.968916,80.47158],[20.810112,80.305557],[20.840889,80.207085],[21.489721,80.262917],[21.859667,80.252472],[21.841028,80.143417],[22.131666,80.052361],[22.458694,80.082642],[22.47636,80.277115],[22.327778,80.371719],[22.931694,80.454498],[23.325501,80.416946],[23.229,80.173386],[23.77861,80.187614],[23.737083,80.270615],[24.431612,80.287804],[25.807362,80.185364],[26.805555,80.158058],[27.224388,80.048531],[26.964527,79.97422],[27.123611,79.903084],[26.362583,79.727142],[25.750973,79.634918],[25.87875,79.519775],[25.620027,79.411697],[25.107027,79.332916],[24.882555,79.367279]]],[[[23.748917,77.846581],[24.041695,77.876945],[24.32336,77.841026],[24.149334,77.751053],[24.310806,77.67836],[24.093334,77.565056],[23.814751,77.558525],[23.461222,77.431389],[23.116306,77.365555],[23.018667,77.305862],[22.554112,77.293335],[22.717306,77.37867],[22.767389,77.490059],[22.52025,77.613029],[21.782499,77.497223],[21.169666,77.45208],[20.840555,77.465225],[20.879667,77.57058],[21.156222,77.610779],[21.230028,77.751305],[21.542889,77.929222],[21.223167,77.968224],[20.840834,78.073082],[20.842861,78.122055],[21.775722,78.216415],[22.38225,78.198524],[22.840555,78.258553],[23.263111,78.158386],[23.128056,78.100555],[23.324417,77.960945],[23.748917,77.846581]]],[[[21.46139,78.57608],[21.940001,78.580559],[22.206751,78.361916],[22.132194,78.282944],[21.195972,78.229363],[20.729889,78.231026],[20.674805,78.393555],[20.288666,78.515053],[20.887167,78.556999],[21.318583,78.631195],[21.46139,78.57608]]],[[[11.1635,78.664391],[11.305417,78.547752],[11.862056,78.404274],[11.819972,78.305473],[11.305862,78.457581],[11.035027,78.475861],[10.925889,78.584473],[10.506028,78.799751],[10.895111,78.800468],[11.191556,78.737],[11.1635,78.664391]]],[[[-7.958091,71.162933],[-8.037635,71.003838],[-8.506492,70.970756],[-8.292097,71.120087],[-7.958091,71.162933]]],[[[33.236416,80.24025],[33.193359,80.196442],[32.346222,80.08075],[31.877195,80.108582],[33.236416,80.24025]]],[[[28.305834,80.138725],[28.118389,80.049721],[27.810667,80.086693],[27.837055,80.213997],[28.305834,80.138725]]],[[[20.3825,79.110611],[20.802944,79.064888],[20.288973,79.004303],[20.072722,79.079971],[20.3825,79.110611]]],[[[19.105417,74.523445],[19.280861,74.477417],[19.122694,74.349861],[18.836361,74.439362],[18.808556,74.503609],[19.105417,74.523445]]],[[[26.723362,78.630363],[26.469084,78.702721],[26.612667,78.804337],[26.950251,78.686142],[26.723362,78.630363]]],[[[18.394916,80.242363],[18.068556,80.292946],[18.168638,80.365776],[18.520167,80.357834],[18.394916,80.242363]]]]},"properties":{"name":"斯瓦尔巴岛和扬马延岛","name_en":"SVALBARD AND JAN MAYEN","id":"SJM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-60.74411,5.209053],[-60.590443,4.976171],[-60.640045,4.877661],[-60.73077,4.777442],[-60.907093,4.707716],[-60.951878,4.549125],[-61.122906,4.508339],[-61.293354,4.549633],[-61.274448,4.471363],[-61.318771,4.430702],[-61.44408,4.443244],[-61.506702,4.398041],[-61.527603,4.273405],[-61.631893,4.244697],[-61.723473,4.261574],[-61.805325,4.165521],[-61.993942,4.160476],[-62.064633,4.143046],[-62.128765,4.083876],[-62.356483,4.174852],[-62.417156,4.186056],[-62.490875,4.147935],[-62.529636,4.051339],[-62.634979,4.055555],[-62.752216,4.011617],[-62.760284,3.933027],[-62.699974,3.755523],[-62.748917,3.641585],[-62.860306,3.583891],[-62.953525,3.638996],[-63.059463,3.776613],[-63.199951,3.894477],[-63.203201,3.951764],[-63.35759,4.039675],[-63.410831,4.02576],[-63.434361,3.920467],[-63.533966,3.93788],[-63.581009,3.990004],[-63.806293,4.018855],[-63.966766,3.929609],[-64.016853,3.9518],[-64.081184,4.121849],[-64.134735,4.175617],[-64.267425,4.192603],[-64.536141,4.151304],[-64.627075,4.202043],[-64.660065,4.279819],[-64.730461,4.335419],[-64.790489,4.329103],[-64.805084,4.244174],[-64.732483,4.182162],[-64.654312,4.035226],[-64.553917,3.898501],[-64.469986,3.83023],[-64.415451,3.834754],[-64.2994,3.777382],[-64.196945,3.658409],[-64.182892,3.581523],[-64.236397,3.476489],[-64.202316,3.257431],[-64.218987,3.178451],[-64.184548,3.090931],[-64.134377,3.062022],[-64.015602,2.847392],[-63.985401,2.752353],[-63.989956,2.651678],[-64.036194,2.603015],[-64.031029,2.509034],[-63.948948,2.487975],[-63.782127,2.405892],[-63.573132,2.403786],[-63.530739,2.439635],[-63.382137,2.44196],[-63.347633,2.289375],[-63.38612,2.184466],[-63.488568,2.135292],[-63.603935,2.124453],[-63.797684,1.987949],[-63.979942,1.987189],[-64.056549,1.93279],[-64.051048,1.718363],[-64.10508,1.579624],[-64.199669,1.485553],[-64.282104,1.459946],[-64.330887,1.379134],[-64.381645,1.418941],[-64.3442,1.527704],[-64.494759,1.460614],[-64.529968,1.355377],[-64.720734,1.250451],[-64.792625,1.305723],[-64.867706,1.224364],[-64.903008,1.248545],[-64.961746,1.11811],[-65.055229,1.143756],[-65.120705,1.114882],[-65.128624,0.986452],[-65.170334,0.926775],[-65.263222,0.937248],[-65.316803,0.900945],[-65.373413,0.806549],[-65.405785,0.686675],[-65.532593,0.642291],[-65.551056,0.731181],[-65.474075,0.836227],[-65.524307,0.964946],[-65.594521,1.011048],[-65.659088,0.980297],[-65.732765,1.004873],[-65.853676,0.939189],[-65.939827,0.823246],[-66.055206,0.795046],[-66.140396,0.738587],[-66.201721,0.767314],[-66.334107,0.75535],[-66.854576,1.228388],[-66.869835,1.225646],[-66.886032,1.362688],[-66.974472,1.586011],[-66.974914,1.63547],[-67.071228,1.914842],[-67.126343,1.992833],[-67.10463,2.065851],[-67.156792,2.121075],[-67.211296,2.250561],[-67.173134,2.344553],[-67.275841,2.43531],[-67.39254,2.568002],[-67.478973,2.621054],[-67.615616,2.812483],[-67.81823,2.832805],[-67.854393,2.869817],[-67.434258,3.246967],[-67.391907,3.248784],[-67.302627,3.397936],[-67.382988,3.484581],[-67.446846,3.659711],[-67.509827,3.74597],[-67.619453,3.76637],[-67.6782,3.914804],[-67.736122,4.118264],[-67.809181,4.233227],[-67.784363,4.350779],[-67.830055,4.488444],[-67.871933,4.514005],[-67.817452,4.828317],[-67.829582,4.906523],[-67.796211,5.099607],[-67.85115,5.283],[-67.810722,5.363085],[-67.655846,5.467006],[-67.613472,5.531435],[-67.643753,5.701122],[-67.578835,5.849186],[-67.421112,6.005971],[-67.481003,6.082065],[-67.476051,6.194591],[-67.634148,6.280529],[-67.841576,6.30199],[-67.967018,6.212051],[-68.144501,6.223938],[-68.349831,6.166835],[-68.471756,6.187954],[-68.669266,6.133347],[-68.840569,6.184695],[-68.932892,6.175571],[-69.051498,6.21296],[-69.215149,6.087361],[-69.277451,6.092443],[-69.323372,6.150324],[-69.450424,6.116735],[-70.082688,6.998269],[-70.33841,6.940162],[-70.386948,6.981435],[-70.508255,7.011652],[-70.560798,7.076914],[-70.691467,7.092551],[-70.897026,7.057353],[-70.952988,6.985921],[-71.104217,6.986735],[-71.153076,7.029184],[-71.330185,7.012481],[-71.421059,7.033195],[-71.660118,7.022361],[-71.734474,7.061688],[-71.840485,7.007701],[-72.033905,7.023821],[-72.173103,7.251312],[-72.165939,7.328435],[-72.203331,7.381046],[-72.43866,7.400355],[-72.480705,7.484615],[-72.456696,7.560476],[-72.479225,7.626878],[-72.46431,7.914371],[-72.413818,8.038215],[-72.345817,8.04909],[-72.355118,8.17062],[-72.391029,8.263382],[-72.391769,8.352717],[-72.584145,8.567546],[-72.65313,8.626049],[-72.74379,9.015926],[-72.777946,9.116374],[-72.968483,9.138689],[-72.963615,9.207809],[-73.01078,9.296101],[-73.244011,9.165613],[-73.350319,9.182608],[-73.23803,9.407462],[-73.145767,9.545272],[-73.080238,9.565972],[-73.049919,9.684622],[-72.947723,9.840187],[-72.990448,9.882875],[-72.97757,9.976038],[-72.91404,10.108714],[-72.885369,10.460829],[-72.818443,10.576446],[-72.711716,10.708698],[-72.642365,10.883132],[-72.562035,10.935012],[-72.46714,11.111311],[-72.341637,11.157571],[-72.237442,11.152378],[-71.966057,11.650083],[-71.777512,11.694505],[-71.377151,11.817017],[-71.326386,11.847888],[-71.336243,11.801346],[-71.433495,11.729532],[-71.800201,11.656494],[-71.958893,11.578037],[-71.956108,11.411208],[-71.871261,11.221119],[-71.732903,11.071619],[-71.710556,10.885871],[-71.585983,10.672797],[-71.626968,10.528522],[-71.629707,10.440015],[-71.787254,10.33108],[-71.840218,10.213653],[-71.911385,10.11695],[-71.979057,10.084804],[-72.046898,9.920196],[-72.127808,9.810716],[-71.98378,9.627775],[-71.957939,9.490166],[-71.824883,9.431228],[-71.72892,9.290503],[-71.761246,9.119078],[-71.692367,9.060585],[-71.537056,9.039789],[-71.356888,9.08698],[-71.22699,9.16318],[-71.186165,9.242009],[-71.061203,9.319377],[-71.085136,9.541625],[-71.025322,9.722434],[-71.081581,9.802745],[-71.111046,9.907649],[-71.224342,9.989609],[-71.249145,10.100638],[-71.347733,10.210824],[-71.430634,10.363735],[-71.452476,10.464137],[-71.538116,10.55428],[-71.522911,10.724944],[-71.583275,10.803409],[-71.437416,10.798111],[-71.411064,10.977805],[-71.320328,10.966432],[-71.161713,11.022662],[-70.835007,11.197723],[-70.711807,11.22674],[-70.511383,11.244116],[-70.275581,11.354233],[-70.17952,11.371141],[-70.157638,11.415556],[-70.018456,11.476151],[-70,11.661379],[-70.178978,11.612255],[-70.230759,11.622057],[-70.205055,11.738874],[-70.273827,11.832075],[-70.288879,11.906925],[-70.206925,12.068391],[-70.018471,12.201151],[-69.890976,12.126768],[-69.818001,11.988363],[-69.80883,11.849875],[-69.756294,11.673039],[-69.704315,11.566562],[-69.613236,11.460712],[-69.520287,11.504144],[-69.372482,11.483622],[-69.27034,11.535214],[-69.100319,11.48948],[-69.054993,11.440944],[-68.823944,11.437887],[-68.757034,11.367409],[-68.658027,11.345122],[-68.606766,11.285587],[-68.529632,11.259861],[-68.391579,11.139298],[-68.234558,10.85182],[-68.319725,10.84161],[-68.321861,10.768449],[-68.251289,10.595837],[-68.123833,10.483956],[-67.977356,10.488211],[-67.916405,10.454705],[-67.744614,10.500397],[-67.537117,10.524436],[-67.154282,10.553919],[-67.029129,10.608662],[-66.933716,10.597222],[-66.640625,10.625324],[-66.411812,10.629913],[-66.360909,10.608146],[-66.277435,10.644409],[-66.07177,10.57399],[-66.10894,10.528809],[-66.078491,10.458977],[-65.780365,10.207601],[-65.666283,10.214275],[-65.397903,10.128696],[-65.194496,10.093492],[-65.091209,10.04332],[-64.951942,10.093288],[-64.821777,10.079936],[-64.718361,10.123864],[-64.695717,10.186256],[-64.618088,10.249344],[-64.456596,10.24836],[-64.400108,10.278209],[-64.385895,10.378942],[-64.223053,10.411849],[-64.181,10.47311],[-64.037636,10.438731],[-63.789207,10.439823],[-63.737289,10.493444],[-63.815185,10.546001],[-64.008049,10.575576],[-64.197746,10.55054],[-64.248276,10.520057],[-64.291649,10.630971],[-64.255974,10.659812],[-64.128266,10.614397],[-64.029808,10.632777],[-63.90897,10.624721],[-63.771728,10.664681],[-63.536537,10.62599],[-63.392277,10.680939],[-63.287937,10.663879],[-63.166153,10.714817],[-63.001366,10.7208],[-62.896584,10.694399],[-62.683369,10.743775],[-62.383369,10.720244],[-62.163643,10.6862],[-61.922737,10.716012],[-61.950035,10.646728],[-62.075577,10.631518],[-62.246731,10.635296],[-62.318466,10.541351],[-62.432758,10.53513],[-62.652389,10.572408],[-62.839439,10.537254],[-62.733719,10.443893],[-62.58749,10.245318],[-62.506657,10.197471],[-62.419243,9.9657],[-62.437882,9.934742],[-62.305905,9.837008],[-62.301918,9.914212],[-62.194668,10.020388],[-62.042141,9.965868],[-61.873688,9.822234],[-61.738888,9.818443],[-61.593197,9.777973],[-61.484734,9.822496],[-61.331841,9.628328],[-61.212341,9.573845],[-61.062057,9.582697],[-60.875408,9.462455],[-60.797062,9.37693],[-60.782856,9.311544],[-60.956783,9.198073],[-60.84528,9.18303],[-60.844021,9.090903],[-60.880039,9.015212],[-60.846229,8.973092],[-60.926971,8.876232],[-60.814224,8.783317],[-60.816788,8.652681],[-60.61721,8.562534],[-60.454292,8.528668],[-60.406433,8.62894],[-60.347881,8.647116],[-59.997871,8.557567],[-59.995861,8.535299],[-59.806301,8.304035],[-59.842701,8.233445],[-59.936058,8.217115],[-59.984154,8.159368],[-59.997864,8.068531],[-60.112366,8.030521],[-60.351086,7.828707],[-60.526531,7.81613],[-60.637848,7.58463],[-60.731052,7.533752],[-60.607143,7.339094],[-60.647652,7.224684],[-60.546459,7.126907],[-60.465176,7.187464],[-60.373222,7.172708],[-60.26543,7.076883],[-60.354885,7.003864],[-60.359009,6.942416],[-60.431152,6.937792],[-60.485924,6.883407],[-60.638012,6.829365],[-60.736336,6.754724],[-60.795097,6.800455],[-60.961922,6.713494],[-60.999878,6.728868],[-61.165306,6.687773],[-61.211571,6.573552],[-61.128258,6.450874],[-61.156727,6.324182],[-61.098583,6.262039],[-61.116566,6.202493],[-61.19294,6.125062],[-61.25217,6.116779],[-61.321731,5.976629],[-61.341549,5.884916],[-60.74411,5.209053]]],[[[-64.270904,11.063048],[-64.128738,10.995594],[-64.02404,10.993986],[-64.01001,11.054026],[-63.888767,11.156557],[-63.842365,11.118915],[-63.777439,10.997133],[-63.943088,10.899869],[-64.049965,10.861957],[-64.130905,10.944086],[-64.211121,10.932845],[-64.394081,10.967241],[-64.380417,11.040404],[-64.270904,11.063048]]],[[[-65.37368,10.904072],[-65.341598,10.967751],[-65.2295,10.939973],[-65.299988,10.877896],[-65.37368,10.904072]]]]},"properties":{"name":"委内瑞拉","name_en":"VENEZUELA","id":"VEN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[141.021438,-9.131333],[141.019104,-8.241138],[141.02092,-7.630139],[141.021805,-6.898334],[140.910965,-6.863417],[140.853638,-6.723778],[140.874588,-6.623194],[140.956894,-6.477778],[141.000336,-6.313055],[141.000198,-5.743389],[140.999664,-4.903322],[140.999771,-4.173889],[140.99881,-3.294],[140.998993,-2.60875],[141.206558,-2.635889],[141.335937,-2.716667],[141.531006,-2.781333],[141.740082,-2.8915],[141.827225,-2.921833],[141.879669,-2.9775],[141.986664,-2.967056],[142.208252,-3.108417],[142.24231,-3.100083],[142.536469,-3.235306],[142.627304,-3.249445],[142.874115,-3.331194],[143.200912,-3.366667],[143.229355,-3.388944],[143.418228,-3.413805],[143.513474,-3.441195],[143.611084,-3.55625],[143.78067,-3.621361],[143.895584,-3.698806],[143.995285,-3.797417],[144.116806,-3.79225],[144.175384,-3.837028],[144.304809,-3.785861],[144.529007,-3.818389],[144.558807,-3.886861],[144.515671,-3.976417],[144.660034,-4.012195],[144.853836,-4.117445],[145.015335,-4.337306],[145.182694,-4.403139],[145.322022,-4.382333],[145.448502,-4.487611],[145.564422,-4.609889],[145.671799,-4.756972],[145.807998,-4.864722],[145.779862,-4.941083],[145.81572,-5.066583],[145.801254,-5.202111],[145.757004,-5.302139],[145.732895,-5.422889],[145.796188,-5.493667],[145.933197,-5.47275],[146.077911,-5.504055],[146.292923,-5.594361],[146.343506,-5.570722],[146.445969,-5.602833],[146.538773,-5.664611],[146.629501,-5.760417],[146.703506,-5.773361],[146.798859,-5.858333],[146.865082,-5.834444],[146.997467,-5.936889],[147.202118,-5.959055],[147.258438,-5.917666],[147.450226,-5.969444],[147.571197,-6.052],[147.673142,-6.183111],[147.695053,-6.254167],[147.811035,-6.329333],[147.850922,-6.425667],[147.832138,-6.536056],[147.856644,-6.64525],[147.747391,-6.70625],[147.586502,-6.705361],[147.552475,-6.73825],[147.382828,-6.719861],[147.339142,-6.745833],[147.200104,-6.735944],[147.079529,-6.703472],[146.960526,-6.749389],[146.945328,-6.835139],[146.953354,-6.981583],[147.035782,-7.043917],[147.053726,-7.142278],[147.118637,-7.195639],[147.145828,-7.380389],[147.226227,-7.467028],[147.274109,-7.478055],[147.46283,-7.592694],[147.526032,-7.698805],[147.588699,-7.731889],[147.60556,-7.812028],[147.687134,-7.825555],[147.696441,-7.922],[147.766052,-7.952278],[147.860779,-7.938],[147.958252,-8],[147.97406,-8.052778],[148.126938,-8.059611],[148.141632,-8.152111],[148.207275,-8.30875],[148.237976,-8.461638],[148.218002,-8.530444],[148.25116,-8.597083],[148.347244,-8.624722],[148.438965,-8.686],[148.526978,-8.999611],[148.590439,-9.073334],[148.761978,-9.115666],[148.874939,-9.088222],[148.902023,-9.050222],[149.011978,-9.068194],[149.250885,-8.998944],[149.305618,-9.026444],[149.33017,-9.128889],[149.263977,-9.171611],[149.224854,-9.313333],[149.179077,-9.366777],[149.230637,-9.495361],[149.355835,-9.519555],[149.476868,-9.603639],[149.615646,-9.627861],[149.750366,-9.595917],[149.882645,-9.648417],[150.00766,-9.634889],[150.044479,-9.722527],[149.922775,-9.773583],[149.812363,-9.7815],[149.709915,-9.822306],[149.756943,-9.900917],[149.935272,-10.063056],[149.996109,-10.085667],[150.181778,-10.092112],[150.296188,-10.186806],[150.518326,-10.231694],[150.606247,-10.280806],[150.702118,-10.255694],[150.760864,-10.300445],[150.622726,-10.353306],[150.457077,-10.320666],[150.35527,-10.331639],[150.34317,-10.398416],[150.445526,-10.413445],[150.651245,-10.479028],[150.693283,-10.563222],[150.561691,-10.629222],[150.473358,-10.621],[150.390778,-10.690278],[150.321945,-10.655056],[150.256272,-10.69475],[150.036728,-10.633361],[149.951965,-10.566139],[149.957077,-10.512389],[150.024673,-10.465195],[149.712997,-10.342472],[149.525192,-10.349028],[149.352799,-10.286917],[149.327164,-10.315111],[149.144058,-10.240778],[149.015503,-10.248389],[148.967392,-10.28825],[148.874252,-10.234861],[148.799026,-10.248834],[148.713104,-10.178695],[148.570892,-10.174694],[148.512115,-10.199278],[148.34256,-10.175472],[148.173447,-10.088056],[148.107696,-10.136222],[147.976105,-10.160778],[147.940201,-10.0995],[147.782608,-10.054361],[147.639755,-9.994667],[147.511505,-9.859055],[147.481583,-9.741305],[147.297272,-9.526944],[147.241104,-9.533472],[147.121918,-9.466389],[147.07898,-9.471306],[147.0168,-9.393333],[146.992645,-9.29175],[146.916473,-9.267944],[146.914978,-9.158083],[146.795975,-9.059861],[146.640884,-9.032028],[146.59314,-8.992666],[146.551193,-8.888166],[146.571838,-8.780167],[146.428589,-8.608639],[146.384552,-8.591028],[146.272613,-8.411944],[146.24881,-8.280084],[146.127029,-8.198584],[146.075668,-8.095028],[146,-8.054916],[145.846191,-8.037694],[145.77681,-7.936944],[145.706223,-7.959306],[145.623779,-7.936389],[145.435196,-7.948361],[145.317383,-7.853694],[145.231201,-7.858056],[145.106644,-7.818],[145,-7.819667],[144.854721,-7.772584],[144.847275,-7.65275],[144.78508,-7.68425],[144.659164,-7.555444],[144.657699,-7.633],[144.502609,-7.625417],[144.453049,-7.656139],[144.46283,-7.74475],[144.389725,-7.752139],[144.29808,-7.637556],[144.247421,-7.71175],[144.11589,-7.786611],[143.971161,-7.719555],[143.812637,-7.702806],[143.848084,-7.843694],[143.922165,-7.984194],[143.868225,-8.049945],[143.743225,-8.049945],[143.616608,-7.988528],[143.389999,-7.996666],[143.463669,-8.074722],[143.614029,-8.176444],[143.61142,-8.236417],[143.346222,-8.247556],[142.966812,-8.341528],[142.754577,-8.317695],[142.91069,-8.412889],[143.108978,-8.455361],[143.258026,-8.574583],[143.394729,-8.744223],[143.424866,-8.962556],[143.338837,-9.025028],[143.289749,-9.015778],[143.025558,-9.097362],[142.934921,-9.170362],[142.640579,-9.33375],[142.562973,-9.320528],[142.458557,-9.237194],[142.298691,-9.199166],[142.218048,-9.148639],[142.053452,-9.165222],[141.927277,-9.198167],[141.776688,-9.183194],[141.628784,-9.213195],[141.521667,-9.19825],[141.47258,-9.15075],[141.328812,-9.13875],[141.184891,-9.238556],[141.122192,-9.230361],[141.021438,-9.131333]]],[[[150.734116,-6.112897],[150.556366,-6.151139],[150.456726,-6.251361],[150.248856,-6.276556],[150.157196,-6.236306],[150.076416,-6.28625],[149.967743,-6.259444],[149.845947,-6.2865],[149.751144,-6.26975],[149.598663,-6.287889],[149.548859,-6.241556],[149.469589,-6.102139],[149.340882,-6.05575],[149.150146,-6.090917],[149.061951,-6.140083],[148.961197,-6.025722],[148.861755,-5.978305],[148.746338,-5.86325],[148.64975,-5.853278],[148.591049,-5.808944],[148.448944,-5.788667],[148.356476,-5.742084],[148.307587,-5.635361],[148.359939,-5.467583],[148.421051,-5.442194],[148.572174,-5.535861],[148.64653,-5.478917],[148.721451,-5.4795],[148.790939,-5.528861],[148.978531,-5.4565],[149.196579,-5.544417],[149.375443,-5.568861],[149.485718,-5.557083],[149.56366,-5.500056],[149.662247,-5.494945],[149.720993,-5.541722],[149.80011,-5.488139],[149.857193,-5.519945],[149.942474,-5.461],[149.967773,-5.403389],[149.902084,-5.336417],[150.023605,-5.20325],[149.998779,-5.132444],[150.033722,-5.012445],[150.118668,-5.003639],[150.164474,-5.090472],[150.063812,-5.141917],[150.076508,-5.218722],[150.02208,-5.292555],[150.098114,-5.478917],[150.142715,-5.547806],[150.283386,-5.558139],[150.408615,-5.436194],[150.515228,-5.434417],[150.586395,-5.529194],[150.672668,-5.546333],[150.767609,-5.454611],[150.899414,-5.483722],[151.008499,-5.370972],[151.00795,-5.305611],[151.084854,-5.148083],[151.230255,-5.009806],[151.340912,-4.959111],[151.355393,-4.912333],[151.580719,-4.9715],[151.680588,-4.877083],[151.654022,-4.767667],[151.663162,-4.680389],[151.618057,-4.568305],[151.616165,-4.476472],[151.50534,-4.311278],[151.488083,-4.215389],[151.689438,-4.199861],[151.846771,-4.229167],[151.864197,-4.3025],[151.949082,-4.342556],[152.028473,-4.263389],[152.000061,-4.192889],[152.12178,-4.209],[152.261383,-4.341917],[152.389114,-4.324584],[152.326446,-4.504055],[152.377197,-4.616528],[152.358475,-4.774528],[152.218033,-4.974222],[152.139389,-4.993805],[151.978058,-4.975833],[151.946442,-5.14425],[152.117386,-5.308055],[152.12561,-5.373611],[152.053192,-5.444889],[151.805389,-5.587083],[151.724548,-5.516639],[151.485077,-5.514417],[151.443085,-5.56775],[151.484192,-5.693194],[151.399063,-5.720305],[151.379028,-5.801139],[151.318695,-5.82675],[151.207718,-5.935167],[151.054855,-5.986472],[151.040756,-6.017583],[150.902054,-6.010139],[150.77475,-6.028361],[150.734116,-6.112897]]],[[[155.455887,-6.805167],[155.324722,-6.716528],[155.166534,-6.542139],[155.224228,-6.442945],[155.220535,-6.350528],[155.184967,-6.289444],[155.035339,-6.251528],[154.962082,-6.193778],[154.938828,-6.094861],[154.741745,-5.944583],[154.745636,-5.870472],[154.694076,-5.76325],[154.707687,-5.668111],[154.757584,-5.570083],[154.706223,-5.408555],[154.816757,-5.507667],[154.871414,-5.530167],[155.029358,-5.536556],[155.127091,-5.706139],[155.200394,-5.86925],[155.270279,-5.890695],[155.31044,-5.953333],[155.399139,-5.992972],[155.41745,-6.098361],[155.458496,-6.155472],[155.559662,-6.2205],[155.620895,-6.201472],[155.746689,-6.333861],[155.804474,-6.357639],[155.85881,-6.468861],[155.920471,-6.513306],[155.918198,-6.60025],[155.960159,-6.686639],[155.945191,-6.76],[155.814056,-6.763639],[155.706161,-6.879472],[155.513107,-6.841611],[155.455887,-6.805167]]],[[[152.611115,-3.820472],[152.741608,-3.891222],[152.816635,-3.865389],[152.865448,-3.987528],[152.942169,-4.000834],[153.026993,-4.190166],[153.110229,-4.276834],[153.112106,-4.380861],[153.018387,-4.495],[153.052917,-4.604556],[152.958282,-4.756417],[152.887604,-4.796722],[152.720276,-4.669611],[152.701721,-4.572139],[152.645386,-4.458556],[152.669998,-4.42825],[152.681229,-4.188778],[152.607132,-4.088444],[152.605225,-4.0415],[152.499893,-3.856139],[152.44603,-3.826333],[152.340332,-3.687944],[152.34372,-3.644639],[152.141418,-3.480333],[151.908005,-3.431222],[151.797226,-3.339083],[151.718643,-3.302667],[151.622421,-3.182306],[151.466248,-3.11775],[151.342865,-3.006472],[151.229889,-2.956833],[151.103394,-2.850167],[150.910172,-2.774139],[150.812225,-2.793195],[150.771194,-2.735833],[150.842331,-2.664889],[150.774338,-2.619361],[150.793533,-2.559],[150.948914,-2.689528],[151.016495,-2.690361],[151.058441,-2.750028],[151.156174,-2.779972],[151.215088,-2.878417],[151.299561,-2.871806],[151.415634,-2.904611],[151.484756,-2.977944],[151.640228,-3.046667],[151.806244,-3.19425],[151.853638,-3.184555],[151.991165,-3.228667],[152.098465,-3.315305],[152.200394,-3.452139],[152.350143,-3.534583],[152.414673,-3.657111],[152.498078,-3.65175],[152.550033,-3.811417],[152.611115,-3.820472]]],[[[146.590439,-2.193583],[146.608338,-2.117556],[146.566025,-2.045972],[146.64,-1.972194],[146.707504,-2.002861],[146.842285,-1.956028],[147.05806,-1.984444],[147.115952,-1.976417],[147.266754,-2.019944],[147.25531,-2.153833],[147.194885,-2.204917],[147.10495,-2.1745],[147.064438,-2.206],[146.878357,-2.204056],[146.713364,-2.141806],[146.711975,-2.192667],[146.590439,-2.193583]]],[[[150.813248,-9.663694],[150.691025,-9.67625],[150.556702,-9.628472],[150.509079,-9.507972],[150.431076,-9.434778],[150.476944,-9.33175],[150.602554,-9.379723],[150.638641,-9.425472],[150.770966,-9.403583],[150.886383,-9.511111],[150.92508,-9.685278],[150.813248,-9.663694]]],[[[150,-2.459194],[150.189896,-2.359472],[150.264496,-2.415111],[150.435104,-2.480778],[150.457581,-2.546972],[150.441757,-2.657028],[150.340637,-2.684083],[150.203857,-2.667778],[150.093994,-2.620972],[150,-2.459194]]],[[[150.983383,-10],[150.903671,-10.00525],[150.871613,-9.886945],[150.760132,-9.786777],[150.828522,-9.749722],[150.991363,-9.919111],[151.046142,-10.0065],[151.119522,-10.043195],[151.178909,-9.9445],[151.270386,-9.919333],[151.292191,-9.983334],[151.203949,-10.168639],[151.063248,-10.112556],[150.963699,-10.107639],[150.983383,-10]]],[[[152.508606,-8.994139],[152.61055,-8.986083],[152.836365,-9.076861],[152.917053,-9.07125],[153.00116,-9.1485],[152.977692,-9.204139],[152.895187,-9.2525],[152.717224,-9.23225],[152.691696,-9.149361],[152.540802,-9.050195],[152.508606,-8.994139]]],[[[148.088333,-5.642472],[148.034058,-5.818306],[147.86203,-5.74225],[147.759415,-5.606333],[147.772385,-5.458139],[147.850311,-5.468472],[147.893555,-5.52275],[147.965729,-5.530972],[148.047363,-5.581306],[148.088333,-5.642472]]],[[[153.253357,-11.362139],[153.538116,-11.479472],[153.687836,-11.514055],[153.772781,-11.606584],[153.6642,-11.642472],[153.53009,-11.619056],[153.454224,-11.557445],[153.351059,-11.555056],[153.334534,-11.500834],[153.220688,-11.441389],[153.253357,-11.362139]]],[[[150.298813,-9.504528],[150.167053,-9.438444],[150.095169,-9.312166],[150.156555,-9.22125],[150.209244,-9.1985],[150.334808,-9.271639],[150.385559,-9.390805],[150.298813,-9.504528]]],[[[154.607132,-5.01025],[154.675034,-5.090333],[154.707611,-5.185306],[154.673309,-5.427722],[154.612808,-5.419972],[154.574524,-5.356778],[154.530807,-5.092055],[154.607132,-5.01025]]],[[[147.032272,-5.362639],[146.999664,-5.248028],[147.096146,-5.204805],[147.207336,-5.332556],[147.200913,-5.377194],[147.116363,-5.437444],[147.032272,-5.362639]]],[[[145.908523,-4.740167],[145.88089,-4.646667],[145.89798,-4.58825],[145.992859,-4.519139],[146.062119,-4.58025],[146.041946,-4.722],[145.908523,-4.740167]]],[[[149.517105,-1.387639],[149.575577,-1.322472],[149.678024,-1.394639],[149.717911,-1.500305],[149.682617,-1.543194],[149.577942,-1.494028],[149.517105,-1.387639]]],[[[143.430252,-8.504861],[143.55278,-8.594611],[143.580948,-8.662444],[143.395004,-8.574195],[143.430252,-8.504861]]],[[[154.082504,-11.306556],[154.189911,-11.300389],[154.281662,-11.380305],[154.0858,-11.426084],[154.023254,-11.416555],[154.082504,-11.306556]]],[[[143.518478,-8.364722],[143.614578,-8.412528],[143.593674,-8.482417],[143.528198,-8.482139],[143.375137,-8.4155],[143.379395,-8.370667],[143.518478,-8.364722]]],[[[151.098312,-8.560972],[151.003967,-8.548305],[151.037048,-8.438084],[151.131912,-8.427305],[151.147751,-8.603472],[151.098724,-8.770833],[151.04303,-8.72875],[151.135605,-8.595612],[151.098312,-8.560972]]],[[[152.793228,-10.617],[152.843826,-10.696944],[152.72081,-10.717527],[152.644913,-10.677584],[152.793228,-10.617]]],[[[152.546021,-3.059333],[152.627869,-3.034278],[152.660523,-3.12175],[152.620667,-3.226056],[152.525726,-3.110194],[152.546021,-3.059333]]],[[[151.956696,-2.842806],[151.904358,-2.803583],[151.926911,-2.706111],[152.005585,-2.760889],[151.956696,-2.842806]]],[[[147.744034,-2.351194],[147.818161,-2.241639],[147.877502,-2.299611],[147.814133,-2.350722],[147.744034,-2.351194]]],[[[153.085358,-11.18675],[153.241562,-11.253695],[153.196228,-11.294972],[153.085358,-11.18675]]]]},"properties":{"name":"巴布亚新几内亚","name_en":"PAPUA NEW GUINEA","id":"PNG"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.524506,7.55475],[134.542801,7.600111],[134.653717,7.624361],[134.643219,7.489806],[134.58194,7.371389],[134.540298,7.341583],[134.47406,7.445583],[134.524506,7.55475]]]},"properties":{"name":"帕劳","name_en":"PALAU","id":"PLW"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[41.567173,-1.662053],[41.525501,-1.695709],[41.422634,-1.848329],[41.291298,-1.971799],[41.115585,-1.987132],[41.038406,-2.044246],[40.915462,-2.077877],[40.899036,-2.220192],[40.775749,-2.32517],[40.81982,-2.399239],[40.606724,-2.559072],[40.520855,-2.529726],[40.429485,-2.548045],[40.264728,-2.649837],[40.177971,-2.774387],[40.168785,-2.947961],[40.207119,-2.983751],[40.12138,-3.201036],[40.108315,-3.301712],[39.979393,-3.384055],[39.868008,-3.641361],[39.873978,-3.695162],[39.778198,-3.936451],[39.615833,-4.201511],[39.543453,-4.431992],[39.479656,-4.483585],[39.459278,-4.572113],[39.403191,-4.642739],[39.248691,-4.631503],[39.221806,-4.678047],[38.76236,-4.355931],[38.406338,-4.11486],[37.811276,-3.689159],[37.749371,-3.544616],[37.591641,-3.440391],[37.715523,-3.295478],[37.675323,-3.056956],[37.45781,-2.91102],[37.156788,-2.747987],[36.276619,-2.255034],[35.952713,-2.067483],[35.466335,-1.79688],[34.937767,-1.499582],[34.116413,-1.030674],[34.023949,-0.994239],[33.924828,-0.994076],[33.916607,-0.602038],[33.921562,-0.461901],[33.972588,-0.133982],[33.908859,0.102833],[34.105446,0.368438],[34.094086,0.45554],[34.137546,0.574177],[34.266674,0.644234],[34.336857,0.774512],[34.410198,0.808956],[34.477669,0.946882],[34.500385,1.066348],[34.577721,1.153006],[34.685478,1.210355],[34.799801,1.227813],[34.828926,1.305809],[34.770935,1.418265],[34.830334,1.443882],[34.888653,1.556514],[34.947658,1.581766],[34.999016,1.682517],[35.033962,1.9242],[34.98555,1.994691],[34.917286,2.386294],[34.953461,2.452864],[34.778377,2.691684],[34.771786,2.812131],[34.706978,2.873192],[34.597046,2.918443],[34.566639,3.089405],[34.45232,3.192519],[34.401295,3.381403],[34.395493,3.482051],[34.440868,3.504912],[34.456135,3.674232],[34.351215,3.737472],[34.299328,3.716667],[34.219917,3.834239],[34.118587,3.89929],[34.129299,3.953583],[34.058659,4.00832],[34.087028,4.065296],[34.044479,4.18005],[33.994495,4.214426],[34.384644,4.618784],[34.864887,4.622295],[35.947697,4.629333],[35.964592,4.527251],[36.047611,4.446621],[36.233402,4.450693],[36.665691,4.440267],[36.86837,4.444474],[37.0419,4.375583],[37.139435,4.293381],[37.567127,4.015334],[37.962578,3.741681],[38.129215,3.616987],[38.446976,3.602858],[38.516815,3.62983],[38.667805,3.600819],[38.915646,3.512155],[39.096039,3.537844],[39.204445,3.486258],[39.501587,3.457662],[39.581814,3.476436],[39.762844,3.663264],[39.869568,3.874727],[40.172241,4.027481],[40.37579,4.106327],[40.774922,4.281918],[40.882382,4.212838],[41.169266,3.94258],[41.270882,3.957763],[41.42675,3.945413],[41.550659,3.981666],[41.674412,3.959925],[41.723556,3.98716],[41.840557,3.955019],[41.899078,3.975494],[41.661449,3.639192],[41.328129,3.158634],[40.992111,2.829568],[40.990913,2.319638],[40.991802,1.619201],[40.991379,0.650817],[40.988632,0.014013],[41.000515,0],[41.000988,-0.834049],[41.567944,-1.591183],[41.567173,-1.662053]]]},"properties":{"name":"肯尼亚","name_en":"KENYA","id":"KEN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.159158,21.559456],[101.208903,21.557304],[101.195046,21.444376],[101.151117,21.3898],[101.244729,21.302228],[101.222503,21.230016],[101.290232,21.178266],[101.532649,21.252391],[101.601545,21.233171],[101.740741,21.14177],[101.834511,21.24689],[101.730299,21.336948],[101.74108,21.48287],[101.798721,21.57362],[101.746105,21.742609],[101.774485,21.831547],[101.610906,21.971616],[101.624164,22.013186],[101.573965,22.115097],[101.547654,22.231156],[101.619032,22.276154],[101.671843,22.372729],[101.677936,22.477192],[101.774356,22.506212],[101.879347,22.384243],[101.907931,22.437204],[102.040065,22.45814],[102.148016,22.399899],[102.191971,22.303972],[102.429863,22.117584],[102.520111,22.019251],[102.517525,21.967916],[102.608696,21.922417],[102.647278,21.861723],[102.650192,21.733139],[102.676972,21.659389],[102.743469,21.660973],[102.826553,21.735945],[102.990471,21.67725],[102.993751,21.587833],[102.917473,21.504583],[102.866585,21.256306],[102.91114,21.227972],[102.963608,21.082777],[103.035416,21.05986],[103.116363,20.901583],[103.190277,20.844862],[103.366692,20.809223],[103.453613,20.824751],[103.515114,20.755333],[103.59539,20.749916],[103.668999,20.701973],[103.796166,20.755028],[103.783081,20.812111],[103.969025,20.911528],[104.032692,20.907722],[104.123085,20.981832],[104.298363,20.915388],[104.411141,20.782862],[104.497086,20.721806],[104.644607,20.664194],[104.549164,20.521194],[104.481529,20.536417],[104.378998,20.4725],[104.476524,20.409639],[104.620163,20.422556],[104.662193,20.363083],[104.671806,20.222445],[104.727363,20.200527],[104.839501,20.229973],[104.952362,20.172277],[104.989197,20.088945],[104.957863,19.99036],[104.897415,19.998222],[104.799637,19.917194],[104.839531,19.801777],[104.726944,19.763584],[104.652473,19.654945],[104.574913,19.618639],[104.464615,19.653639],[104.419891,19.709749],[104.348198,19.689083],[104.226059,19.710917],[104.043335,19.626139],[104.11142,19.570749],[104.053337,19.426333],[103.894943,19.331194],[103.968361,19.253084],[104.077164,19.246639],[104.187668,19.197639],[104.314499,19.091749],[104.370308,19.074806],[104.451057,18.986278],[104.546913,18.976444],[104.586502,18.905472],[104.745445,18.806278],[104.926476,18.789944],[104.955414,18.740499],[105.150581,18.702194],[105.200973,18.649221],[105.119026,18.538584],[105.108643,18.448999],[105.191109,18.326195],[105.369026,18.161388],[105.447304,18.218973],[105.645058,17.992277],[105.618416,17.89875],[105.763138,17.669361],[105.868111,17.624777],[106.073997,17.376249],[106.250809,17.246471],[106.308304,17.264749],[106.439194,16.996166],[106.553413,16.993334],[106.555031,16.701195],[106.588364,16.616722],[106.692253,16.44025],[106.745697,16.413361],[106.817642,16.487833],[106.892387,16.515055],[106.898109,16.3965],[106.977142,16.302389],[107.089584,16.308611],[107.153862,16.268639],[107.153892,16.178028],[107.245583,16.139],[107.33361,16.060194],[107.461777,16.064945],[107.467667,16.015223],[107.397667,15.889417],[107.355225,15.892],[107.223053,15.822056],[107.221916,15.725166],[107.282082,15.631278],[107.349945,15.608611],[107.396667,15.493972],[107.523636,15.47725],[107.528664,15.407917],[107.696747,15.259861],[107.647614,15.114028],[107.471474,15.006528],[107.483498,14.957417],[107.600807,14.871195],[107.514915,14.7925],[107.544609,14.686],[107.466835,14.608889],[107.431831,14.52],[107.304611,14.583138],[107.248306,14.476666],[107.173637,14.415584],[107.066948,14.433888],[106.959252,14.308888],[106.857086,14.287833],[106.717331,14.418472],[106.571472,14.495639],[106.532585,14.587611],[106.463753,14.546805],[106.415726,14.448277],[106.254723,14.438945],[106.221001,14.360027],[106.094803,14.365389],[106.002197,14.314417],[106.035057,14.232166],[106.103416,14.177806],[106.16967,14.021083],[106.105248,13.984389],[106.108276,13.913584],[105.904472,13.933333],[105.798805,14.020416],[105.792274,14.079473],[105.707726,14.086638],[105.563721,14.156472],[105.458336,14.102222],[105.366943,14.102139],[105.282692,14.170417],[105.209946,14.278361],[105.213165,14.336],[105.360054,14.373362],[105.432663,14.415334],[105.535057,14.552806],[105.514252,14.801111],[105.57972,14.8795],[105.55014,14.924694],[105.583778,14.998362],[105.468636,15.123056],[105.499641,15.201056],[105.583969,15.313167],[105.474671,15.334278],[105.496559,15.38275],[105.593414,15.419639],[105.637863,15.657805],[105.602806,15.718528],[105.51461,15.761917],[105.463608,15.746667],[105.399361,15.800777],[105.345802,15.920777],[105.414055,16.013166],[105.210831,16.050528],[105.051865,16.117556],[105.012413,16.249306],[104.897224,16.348362],[104.844887,16.456167],[104.737747,16.565889],[104.774475,16.711584],[104.733276,17.017027],[104.79583,17.13611],[104.819809,17.254028],[104.802971,17.400139],[104.689026,17.542862],[104.466919,17.667223],[104.346558,17.833944],[104.261414,17.895222],[104.225525,17.981277],[104.106804,18.116888],[104.004975,18.305529],[103.934136,18.333918],[103.879417,18.291916],[103.819275,18.33939],[103.700775,18.344473],[103.644501,18.388527],[103.513664,18.437471],[103.31472,18.435694],[103.243248,18.367222],[103.287277,18.29875],[103.178863,18.26425],[103.155281,18.177778],[103.087608,18.135555],[103.082054,18.037472],[103.045082,17.984777],[102.938805,18.003305],[102.690414,17.871555],[102.667526,17.806862],[102.589996,17.845917],[102.587387,17.966723],[102.475525,17.967972],[102.292748,18.058222],[102.146858,18.215473],[102.084419,18.219749],[101.892365,18.026916],[101.787865,18.06875],[101.737472,17.918222],[101.626053,17.890722],[101.574364,17.801556],[101.47097,17.751778],[101.267059,17.595667],[101.166557,17.466833],[101.051834,17.545334],[100.960083,17.57214],[101.017364,17.693472],[100.98336,17.757389],[101.088806,17.9235],[101.169998,18.097834],[101.150559,18.256277],[101.18,18.342306],[101.058052,18.428778],[101.110558,18.52725],[101.188057,18.562471],[101.270531,18.697027],[101.250915,18.893694],[101.355247,19.046667],[101.258583,19.128166],[101.256447,19.240168],[101.208946,19.349833],[101.21878,19.472528],[101.271141,19.487556],[101.286613,19.567333],[101.246559,19.602751],[101.123886,19.575277],[101.034447,19.630472],[100.892975,19.628639],[100.826584,19.535278],[100.756584,19.512806],[100.642525,19.558083],[100.577637,19.502056],[100.487419,19.55261],[100.411804,19.746889],[100.454529,19.843277],[100.508637,19.884445],[100.553337,20.028584],[100.52739,20.140167],[100.421837,20.248556],[100.362946,20.369249],[100.271164,20.394278],[100.17897,20.2405],[100.106247,20.252832],[100.093056,20.355749],[100.128441,20.400667],[100.177803,20.620527],[100.259476,20.746944],[100.401276,20.832001],[100.503502,20.809889],[100.527863,20.9575],[100.636948,21.064278],[100.701721,21.181833],[100.727028,21.312111],[100.848808,21.30261],[100.912613,21.358973],[101.005386,21.392221],[101.159226,21.525888],[101.159158,21.559456]]]},"properties":{"name":"老挝","name_en":"Laos","id":"LAO"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.305504,18.485069],[-88.512932,18.462267],[-88.548134,18.346989],[-88.591042,18.304064],[-88.699089,18.063341],[-88.880333,17.906065],[-89.021934,18.000355],[-89.14537,17.944826],[-89.146866,17.8174],[-89.638725,17.8174],[-90.482559,17.8174],[-90.989502,17.8174],[-90.989502,17.254101],[-91.439133,17.254887],[-91.428368,17.218693],[-91.277122,17.180021],[-91.214714,17.053322],[-90.922592,16.822638],[-90.801224,16.795956],[-90.680992,16.686439],[-90.643082,16.566265],[-90.585472,16.469791],[-90.545776,16.481413],[-90.418442,16.423679],[-90.396751,16.374609],[-90.458244,16.207951],[-90.447143,16.077347],[-90.98925,16.076988],[-91.731903,16.0765],[-92.210503,15.2607],[-92.059509,15.070745],[-92.151543,14.985678],[-92.146622,14.870427],[-92.181976,14.846891],[-92.14669,14.660967],[-92.230621,14.538136],[-92.515923,14.801315],[-92.765877,15.048519],[-92.923256,15.239424],[-92.972221,15.253048],[-93.20932,15.478779],[-93.429939,15.662522],[-93.768783,15.907871],[-93.872009,15.965663],[-93.89418,16.087776],[-94.023895,16.109165],[-94.085342,16.145584],[-94.136673,16.226944],[-94.198898,16.197777],[-94.304733,16.224998],[-94.368057,16.294441],[-94.431671,16.213055],[-94.271118,16.134163],[-94.232788,16.165554],[-94.094726,16.046387],[-94.395569,16.170277],[-94.477509,16.188332],[-94.714172,16.192219],[-94.584457,16.290554],[-94.667236,16.361942],[-94.729736,16.301388],[-94.810181,16.363888],[-94.841171,16.427467],[-94.917229,16.416624],[-94.972938,16.324059],[-95.064926,16.287781],[-95.077019,16.184029],[-95.229698,16.167133],[-95.27639,16.093056],[-95.343475,16.073067],[-95.446304,15.965215],[-95.567131,15.953409],[-95.753464,15.896638],[-95.766724,15.872195],[-95.933632,15.820574],[-96.110504,15.742815],[-96.231087,15.67138],[-96.42437,15.682252],[-96.488701,15.645621],[-96.708237,15.709479],[-96.847084,15.725086],[-97.040154,15.810432],[-97.060989,15.850706],[-97.174637,15.904128],[-97.412743,15.920199],[-97.520111,15.948456],[-97.795288,15.965178],[-97.93412,16.078117],[-98.214966,16.231947],[-98.42437,16.271002],[-98.547981,16.314554],[-98.72718,16.508905],[-98.783951,16.551264],[-98.870941,16.532644],[-98.995422,16.584619],[-99.266838,16.627382],[-99.470985,16.685289],[-99.69207,16.700722],[-99.904732,16.822035],[-99.964417,16.894114],[-100.136109,16.940769],[-100.431595,17.056337],[-100.67498,17.13545],[-100.827675,17.197124],[-101.013519,17.249441],[-101.060753,17.31283],[-101.195641,17.415651],[-101.444389,17.527483],[-101.50737,17.622038],[-101.654648,17.662092],[-101.657219,17.702974],[-101.754448,17.794752],[-101.838577,17.9076],[-102.018394,17.983206],[-102.097611,17.968008],[-102.18634,17.909813],[-102.273804,17.955389],[-102.605949,18.038563],[-102.708549,18.04574],[-102.860672,18.09786],[-103.030647,18.179148],[-103.354752,18.261881],[-103.481598,18.318493],[-103.605736,18.520233],[-103.803238,18.738157],[-103.972816,18.865894],[-104.136223,18.947367],[-104.237129,18.975508],[-104.344437,19.039812],[-104.328697,19.085981],[-104.651291,19.157658],[-104.799187,19.268408],[-104.939964,19.300106],[-105.092758,19.505907],[-105.095581,19.549753],[-105.213219,19.620253],[-105.423126,19.872992],[-105.564423,20.08736],[-105.568253,20.231838],[-105.673882,20.340435],[-105.678192,20.429283],[-105.58976,20.485571],[-105.368416,20.516367],[-105.264588,20.568186],[-105.243637,20.639349],[-105.364593,20.776096],[-105.413925,20.752174],[-105.510178,20.793484],[-105.451805,20.893438],[-105.354202,20.971369],[-105.309677,21.039757],[-105.243569,21.062578],[-105.217987,21.219957],[-105.25325,21.333256],[-105.200119,21.442877],[-105.271362,21.514391],[-105.419273,21.59429],[-105.520905,21.792582],[-105.667839,22.020409],[-105.649071,22.141802],[-105.684616,22.377317],[-105.848801,22.688095],[-106.02639,22.825102],[-106.18158,23.001223],[-106.405563,23.191801],[-106.496956,23.351721],[-106.740501,23.61335],[-106.897041,23.842352],[-106.97699,23.922924],[-107.25914,24.142614],[-107.383056,24.213909],[-107.513214,24.318171],[-107.785164,24.487389],[-107.793747,24.517845],[-107.985992,24.638771],[-108.017555,24.681004],[-107.970039,24.783798],[-108.014175,24.892405],[-107.991219,24.993624],[-108.111328,25.115711],[-108.163994,25.10774],[-108.304505,25.200182],[-108.317101,25.247017],[-108.451996,25.259813],[-108.63337,25.340405],[-108.751679,25.36692],[-108.789505,25.466433],[-108.762421,25.52573],[-108.896164,25.571014],[-108.900589,25.482332],[-109.095589,25.536846],[-109.27816,25.645252],[-109.371574,25.656454],[-109.438851,25.792397],[-109.413376,25.894012],[-109.446686,25.929903],[-109.412674,26.051914],[-109.250046,26.311132],[-109.280319,26.531822],[-109.405243,26.659548],[-109.647431,26.698935],[-109.691589,26.677876],[-109.839394,26.768236],[-109.962647,27.102757],[-110.103462,27.111893],[-110.296509,27.149521],[-110.476288,27.286511],[-110.478256,27.372774],[-110.5513,27.369459],[-110.627251,27.593309],[-110.604653,27.671616],[-110.612068,27.804634],[-110.555634,27.875561],[-110.802475,27.922127],[-110.873924,27.855148],[-110.947716,27.871859],[-110.982414,27.959335],[-111.055817,27.938509],[-111.170052,27.994638],[-111.278587,28.093525],[-111.327965,28.18857],[-111.455589,28.316894],[-111.462608,28.368513],[-111.686699,28.450459],[-111.762619,28.593149],[-111.918159,28.718512],[-111.903175,28.785818],[-112.029038,28.862295],[-112.146156,28.995731],[-112.162247,29.114283],[-112.24807,29.321573],[-112.346855,29.312359],[-112.417702,29.374845],[-112.388595,29.499416],[-112.477318,29.588047],[-112.652077,29.8365],[-112.68116,29.905243],[-112.74614,29.917873],[-112.755226,30.186115],[-112.847244,30.293083],[-112.850899,30.382172],[-112.98671,30.533274],[-113.075325,30.661364],[-113.126961,30.811815],[-113.097267,30.95863],[-113.054672,31.031919],[-113.034592,31.163399],[-113.123604,31.230377],[-113.256233,31.242559],[-113.544632,31.298305],[-113.610992,31.333677],[-113.629936,31.460125],[-113.686859,31.51898],[-113.894455,31.601868],[-113.958298,31.576551],[-114.025932,31.491383],[-114.169975,31.497679],[-114.485909,31.671371],[-114.59784,31.759331],[-114.682663,31.75976],[-114.810555,31.822977],[-114.818779,31.720968],[-114.775948,31.645748],[-114.841225,31.581524],[-114.878769,31.349131],[-114.887932,31.164501],[-114.832802,31.013849],[-114.717262,30.93679],[-114.691605,30.810944],[-114.694122,30.622114],[-114.627373,30.475702],[-114.636497,30.25971],[-114.664269,30.200632],[-114.526504,29.972149],[-114.404671,29.891794],[-114.386795,29.791943],[-114.204208,29.744534],[-113.821281,29.43354],[-113.772522,29.413187],[-113.634354,29.272819],[-113.651688,29.211563],[-113.531815,29.056908],[-113.474647,28.955774],[-113.366508,28.909908],[-113.322937,28.802814],[-113.246887,28.842743],[-113.191155,28.798237],[-113.126121,28.640369],[-113.107956,28.526728],[-112.980148,28.453279],[-112.895599,28.473871],[-112.841599,28.442101],[-112.864403,28.277575],[-112.790443,28.190437],[-112.802925,28.024656],[-112.75631,27.962587],[-112.769226,27.86483],[-112.706909,27.764891],[-112.588638,27.648645],[-112.403702,27.585442],[-112.329712,27.51895],[-112.314446,27.430948],[-112.197319,27.237385],[-112.11068,27.137953],[-112.014648,27.11898],[-111.95134,27.072214],[-112.011711,27.02034],[-112.009087,26.958248],[-111.872063,26.834627],[-111.861809,26.700703],[-111.738029,26.543854],[-111.676758,26.59581],[-111.815781,26.721733],[-111.814529,26.899126],[-111.557472,26.695114],[-111.562645,26.563763],[-111.451393,26.491457],[-111.461731,26.414225],[-111.379875,26.328665],[-111.390755,26.261791],[-111.312828,26.070345],[-111.355286,25.963255],[-111.295204,25.770126],[-111.219688,25.725973],[-111.179466,25.59918],[-111.116539,25.527226],[-111.016831,25.513872],[-111.02459,25.455015],[-110.931839,25.275457],[-110.909096,25.154547],[-110.857605,25.077478],[-110.784943,25.035223],[-110.685661,24.886822],[-110.660683,24.768133],[-110.724617,24.678429],[-110.728493,24.520119],[-110.684898,24.468702],[-110.67643,24.362429],[-110.558891,24.212597],[-110.30748,24.167828],[-110.331879,24.317961],[-110.241196,24.351563],[-110.174736,24.2605],[-110.013725,24.169909],[-109.97187,24.037529],[-109.833931,24.060373],[-109.803284,24.025164],[-109.819382,23.919716],[-109.698913,23.800999],[-109.670868,23.65839],[-109.473183,23.578224],[-109.407524,23.472803],[-109.4123,23.311123],[-109.441948,23.210508],[-109.521263,23.122204],[-109.635857,23.082006],[-109.706879,22.989801],[-109.893456,22.869164],[-109.966583,22.873203],[-110.060318,22.954506],[-110.100288,23.033201],[-110.146141,23.296038],[-110.232582,23.405375],[-110.325447,23.579285],[-110.428467,23.646654],[-110.630287,23.74074],[-110.758156,23.881414],[-110.905693,23.981054],[-111.045303,24.111219],[-111.233498,24.22341],[-111.453278,24.325996],[-111.52974,24.414888],[-111.599678,24.44978],[-111.685516,24.583862],[-111.807442,24.544106],[-111.85743,24.664581],[-111.926987,24.731207],[-112.022728,24.736246],[-112.182419,24.851013],[-112.155357,24.913275],[-112.1773,24.954247],[-112.165756,24.965322],[-112.140999,24.968615],[-112.145561,24.981083],[-112.123902,25.007151],[-112.149468,25.071375],[-112.111572,25.20994],[-112.07444,25.236912],[-112.087685,25.379044],[-112.062988,25.640259],[-112.188126,25.987913],[-112.301537,26.06583],[-112.326294,26.153481],[-112.399048,26.239708],[-112.48304,26.232761],[-112.792397,26.407736],[-113.053474,26.598148],[-113.052971,26.647314],[-113.14724,26.774916],[-113.262917,26.82126],[-113.273499,26.749184],[-113.41066,26.805199],[-113.505836,26.788258],[-113.543343,26.726866],[-113.621216,26.721479],[-113.730499,26.799795],[-113.77494,26.911612],[-113.841217,26.966951],[-114.015709,26.983618],[-114.098801,27.09515],[-114.232185,27.149647],[-114.313164,27.146154],[-114.483574,27.227259],[-114.493584,27.391993],[-114.644516,27.500507],[-114.733101,27.524323],[-114.875855,27.698338],[-115.00573,27.720387],[-115.048378,27.817333],[-114.858864,27.830545],[-114.611595,27.775665],[-114.470695,27.782679],[-114.334564,27.869963],[-114.314781,27.782892],[-114.235344,27.70113],[-114.075737,27.616743],[-114.044189,27.662436],[-113.949669,27.65563],[-113.913635,27.713005],[-113.987724,27.755653],[-114.126045,27.712601],[-114.176445,27.822687],[-114.129341,27.883333],[-114.262421,27.942854],[-114.085129,28.153061],[-114.108948,28.244068],[-114.044808,28.469637],[-114.183792,28.663176],[-114.335121,28.749037],[-114.408996,28.882648],[-114.526421,28.923086],[-114.593033,28.984936],[-114.629333,29.096241],[-114.704498,29.104259],[-114.741546,29.18038],[-114.807228,29.212267],[-114.963547,29.373655],[-115.190079,29.434246],[-115.245216,29.51239],[-115.511253,29.625435],[-115.696945,29.752171],[-115.683838,29.830612],[-115.730255,29.940325],[-115.800567,29.983164],[-115.778038,30.081453],[-115.79406,30.247704],[-115.864304,30.3713],[-115.981178,30.388021],[-116.046471,30.485167],[-116.027977,30.624706],[-116.052925,30.787525],[-116.279419,30.967688],[-116.336998,30.981972],[-116.303223,31.129511],[-116.352112,31.234968],[-116.502213,31.414007],[-116.643784,31.516657],[-116.684029,31.575113],[-116.643799,31.664295],[-116.676758,31.707739],[-116.613434,31.776665],[-116.607285,31.846441],[-116.740944,31.905546],[-116.755699,31.958446],[-116.881806,32.034153],[-116.882896,32.122082],[-116.934105,32.242039],[-117.033768,32.281948],[-117.121864,32.479633],[-117.123581,32.534622],[-115,32.695343],[-114.717033,32.716759],[-114.810531,32.565258],[-114.806183,32.491871],[-113.927955,32.221359],[-113.205055,32],[-112.594696,31.809904],[-111.661156,31.516603],[-111.064751,31.328808],[-110.440224,31.331573],[-109.789291,31.332031],[-108.706162,31.330612],[-108.205894,31.331346],[-108.203476,31.783461],[-107.554115,31.783781],[-106.521141,31.778206],[-106.375084,31.729677],[-106.205597,31.469688],[-106.063957,31.395262],[-105.949829,31.360714],[-105.763473,31.167652],[-105.60154,31.084194],[-105.552048,30.988981],[-105.393608,30.851542],[-105.21138,30.803049],[-104.895698,30.564341],[-104.85247,30.381113],[-104.725418,30.255318],[-104.684837,30.164455],[-104.701729,30.027929],[-104.678497,29.926056],[-104.560936,29.766449],[-104.50618,29.635252],[-104.33168,29.5194],[-104.260384,29.511538],[-104.160606,29.392506],[-103.974449,29.29351],[-103.839813,29.276876],[-103.715713,29.178549],[-103.524056,29.133392],[-103.431564,29.044111],[-103.144287,28.977524],[-102.903709,29.255547],[-102.842468,29.354885],[-102.801704,29.521042],[-102.671425,29.741812],[-102.542931,29.743233],[-102.494293,29.780001],[-102.374618,29.796452],[-102.314255,29.879465],[-102.136703,29.800131],[-101.956841,29.793777],[-101.702263,29.759397],[-101.502357,29.760754],[-101.45224,29.784061],[-101.362747,29.662249],[-101.246193,29.61647],[-101.253258,29.523605],[-101.056587,29.442814],[-101.003021,29.359823],[-100.79866,29.245043],[-100.761231,29.156237],[-100.674675,29.102413],[-100.636658,28.941429],[-100.543587,28.823879],[-100.490219,28.658609],[-100.333145,28.432747],[-100.287231,28.27747],[-100.201256,28.189318],[-100.078919,28.141123],[-99.994255,27.997364],[-99.931389,27.976643],[-99.873878,27.794563],[-99.80838,27.763634],[-99.711189,27.653168],[-99.595756,27.63418],[-99.513443,27.560398],[-99.487389,27.487568],[-99.508301,27.332058],[-99.445305,27.247444],[-99.428909,27.161259],[-99.453011,27.057068],[-99.234604,26.790249],[-99.195129,26.62541],[-99.093086,26.477089],[-99.111893,26.419394],[-98.803475,26.362419],[-98.751541,26.290442],[-98.664917,26.232075],[-98.451477,26.217936],[-98.377167,26.150295],[-98.205261,26.05368],[-98.043991,26.034845],[-97.886856,26.058666],[-97.667213,26.020144],[-97.525116,25.882858],[-97.377533,25.836552],[-97.372162,25.911493],[-97.22052,25.954897],[-97.150146,25.947689],[-97.178413,25.702946],[-97.246139,25.539701],[-97.424545,25.27199],[-97.396233,25.405922],[-97.538025,25.457561],[-97.540283,25.376305],[-97.738045,25.364994],[-97.68692,25.165586],[-97.75412,24.974602],[-97.669632,24.932402],[-97.7369,24.843676],[-97.712524,24.636915],[-97.742668,24.49988],[-97.811455,24.543478],[-97.859085,24.464754],[-97.833381,24.412775],[-97.75032,24.417755],[-97.777466,24.107771],[-97.776276,23.999998],[-97.738502,23.972578],[-97.734344,23.794388],[-97.769516,23.282705],[-97.754478,23.074747],[-97.769363,22.842195],[-97.837715,22.672796],[-97.84996,22.469015],[-97.796692,22.202845],[-97.704208,21.964146],[-97.555649,21.761881],[-97.331574,21.575892],[-97.32666,21.516953],[-97.399467,21.368114],[-97.411064,21.186207],[-97.322365,21.000545],[-97.199028,20.786324],[-97.16198,20.660759],[-97.049065,20.527809],[-96.992134,20.488268],[-96.855728,20.324015],[-96.778015,20.252047],[-96.445686,19.863792],[-96.393891,19.727884],[-96.365532,19.551033],[-96.312439,19.472385],[-96.305969,19.337637],[-96.241875,19.274469],[-96.123642,19.226631],[-96.069542,19.071632],[-95.973213,19.060314],[-95.936211,18.881824],[-95.842071,18.827627],[-95.732864,18.799751],[-95.651878,18.737524],[-95.406906,18.706953],[-95.208526,18.710808],[-95.074852,18.642887],[-95.039001,18.579584],[-94.786285,18.52145],[-94.761742,18.441313],[-94.61692,18.288281],[-94.585999,18.186663],[-94.439491,18.14772],[-94.303177,18.16774],[-94.086014,18.221453],[-93.731262,18.350775],[-93.599396,18.407856],[-93.381516,18.450134],[-92.967041,18.435093],[-92.782227,18.502686],[-92.699249,18.600191],[-92.588547,18.612892],[-92.43866,18.663969],[-92.231987,18.680607],[-92.012634,18.718435],[-91.931725,18.696562],[-91.849335,18.619749],[-91.894821,18.569691],[-91.825035,18.493731],[-91.605003,18.441],[-91.519592,18.450192],[-91.489662,18.499426],[-91.31884,18.55901],[-91.241608,18.74794],[-91.305618,18.793819],[-91.493591,18.812548],[-91.391556,18.907875],[-91.101509,19.038647],[-90.903831,19.183079],[-90.723869,19.377647],[-90.696869,19.456862],[-90.65242,19.763044],[-90.511856,19.863058],[-90.458801,19.975235],[-90.489372,20.073221],[-90.473923,20.351408],[-90.48526,20.467241],[-90.444015,20.704191],[-90.370117,20.942822],[-90.329483,21.013636],[-90.081345,21.159655],[-89.909729,21.228437],[-89.739327,21.278687],[-89.25914,21.33622],[-88.84671,21.397688],[-88.752129,21.4268],[-88.597923,21.534739],[-88.391022,21.562983],[-88.267098,21.544832],[-88.172272,21.604118],[-87.987953,21.598043],[-87.811241,21.544142],[-87.473251,21.485735],[-87.349442,21.565428],[-87.248886,21.539644],[-87.097992,21.60572],[-87.004509,21.572607],[-86.90773,21.459879],[-86.813896,21.417004],[-86.809807,21.191523],[-86.736542,21.137598],[-86.778999,21.02397],[-86.827156,20.988821],[-86.874435,20.835985],[-87.036705,20.650856],[-87.235405,20.486588],[-87.419281,20.225967],[-87.464249,20.119106],[-87.467156,19.998741],[-87.422783,19.884987],[-87.478645,19.808224],[-87.574486,19.789005],[-87.649925,19.676037],[-87.728806,19.674334],[-87.734558,19.594465],[-87.659386,19.513048],[-87.551895,19.575283],[-87.438187,19.607677],[-87.413055,19.560272],[-87.4468,19.45985],[-87.55423,19.421349],[-87.66864,19.347532],[-87.674362,19.222851],[-87.629433,19.196697],[-87.541962,19.316076],[-87.504364,19.297392],[-87.551132,19.103222],[-87.615311,18.948227],[-87.658913,18.755592],[-87.703438,18.713253],[-87.756454,18.415096],[-87.887138,18.215574],[-87.880668,18.326883],[-87.933029,18.432831],[-88.070953,18.486486],[-88.075928,18.530687],[-88.013763,18.636456],[-88.004479,18.786108],[-88.059517,18.863581],[-88.146172,18.685822],[-88.172135,18.676373],[-88.279457,18.487413],[-88.305504,18.485069]]],[[[-112.286179,29.227922],[-112.271011,29.137663],[-112.193527,29.022387],[-112.274902,28.769438],[-112.357773,28.761147],[-112.534897,28.851162],[-112.482254,28.960106],[-112.504951,29.01391],[-112.474304,29.16538],[-112.286179,29.227922]]],[[[-113.571114,29.562843],[-113.527458,29.565622],[-113.399406,29.459074],[-113.362846,29.397078],[-113.387596,29.315002],[-113.315147,29.289522],[-113.201782,29.29863],[-113.19931,29.137365],[-113.146149,29.000982],[-113.265831,29.074432],[-113.301239,29.129566],[-113.424461,29.218515],[-113.465652,29.290861],[-113.60392,29.424276],[-113.571114,29.562843]]],[[[-86.785309,20.565842],[-86.814629,20.443428],[-86.984276,20.261728],[-87.013115,20.296406],[-87.007805,20.430729],[-86.930359,20.551657],[-86.785309,20.565842]]],[[[-115.183128,28.037262],[-115.251144,28.04825],[-115.342834,28.136906],[-115.247597,28.238537],[-115.172638,28.276077],[-115.149834,28.167324],[-115.183128,28.037262]]],[[[-112.206093,25],[-112.139618,25.223463],[-112.119339,25.213505],[-112.171051,25.035425],[-112.156761,25.016842],[-112.152008,24.973145],[-112.178681,24.961845],[-112.178505,24.929237],[-112.161453,24.910843],[-112.217575,24.842127],[-112.277206,24.815224],[-112.206093,25]]],[[[-118.407013,29.167635],[-118.315292,29.0714],[-118.299202,28.9188],[-118.355309,28.895983],[-118.398956,29.035107],[-118.448982,29.075188],[-118.407013,29.167635]]],[[[-111.695,24.371744],[-111.750061,24.353264],[-111.95385,24.493637],[-111.873383,24.524847],[-111.765388,24.456358],[-111.695,24.371744]]],[[[-106.609375,21.7034],[-106.546783,21.690538],[-106.513626,21.608454],[-106.537728,21.525827],[-106.630386,21.552156],[-106.65963,21.698187],[-106.609375,21.7034]]],[[[-111.199913,25.80089],[-111.227867,25.819429],[-111.180756,26.029999],[-111.098953,26.015045],[-111.172936,25.905746],[-111.199913,25.80089]]],[[[-110.994522,18.844435],[-110.91703,18.754282],[-110.942673,18.703634],[-111.057762,18.774391],[-110.994522,18.844435]]],[[[-108.083496,25],[-108.03894,24.927544],[-108.086281,24.854115],[-108.144379,24.961475],[-108.083496,25]]],[[[-106.505646,21.472712],[-106.396538,21.484808],[-106.393631,21.417566],[-106.498505,21.419537],[-106.505646,21.472712]]]]},"properties":{"name":"墨西哥","name_en":"MEXICO","id":"MEX"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[35.921722,35.9305],[35.98772,36.019722],[35.797333,36.287445],[35.794304,36.327305],[36.047249,36.535751],[36.201862,36.605141],[36.213276,36.774776],[36.144943,36.870083],[36.020195,36.933529],[35.795055,36.769196],[35.608471,36.735832],[35.637859,36.612667],[35.556251,36.580139],[35.445583,36.595417],[35.346138,36.550777],[35.025391,36.709694],[34.911778,36.731972],[34.835804,36.800861],[34.725193,36.81686],[34.577694,36.777248],[34.428417,36.662304],[34.286972,36.589973],[34.180527,36.474472],[34.087082,36.410137],[34.083752,36.317196],[34.006443,36.288834],[33.87875,36.313694],[33.800499,36.227222],[33.687111,36.152748],[33.573582,36.133335],[33.483307,36.15411],[33.400585,36.127609],[33.147278,36.133251],[33.093613,36.086304],[32.962666,36.101528],[32.808109,36.019085],[32.671165,36.042862],[32.512306,36.098221],[32.298138,36.235889],[32.097721,36.493584],[32.026138,36.544056],[31.789028,36.606667],[31.573917,36.70961],[31.299499,36.819668],[31.008722,36.861195],[30.756666,36.851002],[30.702639,36.888527],[30.573667,36.783279],[30.558111,36.61425],[30.588472,36.573528],[30.481945,36.402584],[30.495111,36.315834],[30.417305,36.208248],[30.271139,36.307026],[30.187389,36.305027],[30.103971,36.23864],[30.038778,36.255249],[29.923195,36.223415],[29.778389,36.132999],[29.676806,36.122196],[29.583416,36.197529],[29.364027,36.230526],[29.231556,36.328388],[29.109638,36.385777],[29.128723,36.54739],[29.028694,36.584835],[29.079889,36.644806],[29.036222,36.707138],[28.932501,36.75589],[28.831722,36.642193],[28.66686,36.722305],[28.620582,36.821972],[28.489666,36.820446],[28.401832,36.787472],[28.262362,36.850666],[28.260221,36.733723],[28.147139,36.655834],[28.023277,36.666721],[28.016388,36.75914],[27.7225,36.75864],[27.66736,36.663555],[27.604029,36.683361],[27.483583,36.653],[27.398332,36.681889],[27.434334,36.749474],[27.773777,36.79089],[27.8195,36.818001],[27.986833,36.804165],[28.04236,36.925221],[28.196751,36.945641],[28.248972,37.039639],[27.928055,37.033249],[27.820723,37.013195],[27.485972,36.988998],[27.33589,37.020111],[27.265194,36.968113],[27.224695,37.056973],[27.273111,37.137196],[27.336945,37.157028],[27.477194,37.08736],[27.555277,37.138863],[27.498528,37.318748],[27.43725,37.304222],[27.355612,37.370583],[27.251,37.336445],[27.190722,37.355057],[27.224611,37.482334],[27.216806,37.588638],[27.089722,37.643971],[27.09725,37.686722],[27.239805,37.732861],[27.27725,37.931332],[27.238222,37.989388],[27.123611,37.996361],[26.95536,38.078415],[26.861778,38.05225],[26.824806,38.162361],[26.766167,38.219418],[26.653723,38.211498],[26.616249,38.115555],[26.503222,38.184029],[26.315222,38.242054],[26.279667,38.299972],[26.444666,38.347916],[26.515306,38.43314],[26.426001,38.4785],[26.358889,38.577583],[26.355556,38.650249],[26.478582,38.675251],[26.627111,38.530083],[26.600277,38.435165],[26.707582,38.433388],[26.774918,38.365944],[27.084583,38.401779],[27.0625,38.464943],[26.954445,38.439556],[26.873861,38.508915],[26.85075,38.598167],[26.759111,38.617722],[26.730167,38.726723],[26.828306,38.762085],[27.046749,38.895611],[26.952528,38.94075],[26.802195,38.960556],[26.800194,39.033638],[26.888027,39.074139],[26.769194,39.170776],[26.688389,39.270638],[26.703056,39.344582],[26.780306,39.373638],[26.880751,39.476891],[26.925972,39.581196],[26.482779,39.528168],[26.36861,39.483612],[26.140222,39.456612],[26.063418,39.486195],[26.159334,39.672165],[26.137527,39.843029],[26.182833,40],[26.324222,40.021332],[26.404249,40.172333],[26.527027,40.222137],[26.758083,40.409416],[27.041306,40.39814],[27.122305,40.459862],[27.293667,40.471722],[27.317888,40.388863],[27.433166,40.333168],[27.551445,40.311165],[27.630722,40.336166],[27.781834,40.321056],[27.792278,40.400585],[27.687529,40.506474],[27.864916,40.527],[28.03911,40.485054],[27.905083,40.392418],[27.960222,40.361084],[28.1505,40.403],[28.524195,40.401722],[28.589445,40.381138],[28.808666,40.402943],[28.923555,40.367363],[29.059834,40.370609],[29.09775,40.482944],[28.927917,40.475723],[28.801027,40.56139],[28.99614,40.654362],[29.344862,40.682556],[29.384972,40.711887],[29.564306,40.698029],[29.799639,40.738083],[29.689556,40.785694],[29.358389,40.766029],[29.291889,40.858055],[29.04211,40.97464],[29.017666,41.033001],[29.097445,41.120804],[29.081278,41.163223],[29.15711,41.224751],[29.266222,41.236778],[29.571362,41.179749],[29.825611,41.147251],[30.077583,41.140999],[30.228611,41.17289],[30.272833,41.215557],[30.492167,41.150196],[30.658861,41.133583],[30.753805,41.091667],[30.942194,41.077557],[31.23325,41.104084],[31.340027,41.143917],[31.413584,41.222584],[31.404861,41.323776],[31.624027,41.390026],[31.871445,41.516251],[32.164471,41.620167],[32.229279,41.687305],[32.521946,41.81514],[32.78561,41.868027],[32.865749,41.86589],[33.041389,41.935417],[33.173557,41.961918],[33.339416,42.02536],[33.60075,41.992695],[33.90836,41.977638],[34.099861,41.985332],[34.325028,41.944027],[34.434055,41.968723],[34.609974,41.945972],[34.827332,41.969917],[34.985943,42.097752],[35.061974,42.030224],[35.133915,42.022194],[35.092056,41.917778],[35.268585,41.72364],[35.473026,41.648251],[35.579888,41.630611],[35.825165,41.682804],[35.981529,41.736],[36.118694,41.629002],[36.129807,41.469776],[36.249695,41.35125],[36.403137,41.250057],[36.560722,41.281612],[36.631943,41.374138],[36.874195,41.341167],[37.000362,41.28175],[37.033417,41.189888],[37.140026,41.146473],[37.293167,41.143471],[37.515362,41.025307],[37.587528,41.030693],[37.657112,41.117111],[37.775723,41.067722],[37.878082,40.988804],[38.000305,40.980167],[38.354946,40.908749],[38.544613,40.920193],[38.614918,40.964249],[38.718056,40.949028],[38.922249,41.037388],[39.05722,41.035831],[39.160641,41.075638],[39.288361,41.048805],[39.425777,41.105526],[39.662167,40.994389],[39.759193,41.004806],[39.87936,40.950722],[39.9865,40.963501],[40.135055,40.908306],[40.226055,40.923889],[40.391109,41.026527],[40.60186,41.04586],[40.732361,41.099167],[40.798668,41.159306],[41.055222,41.214359],[41.153,41.280556],[41.34539,41.372307],[41.401417,41.377918],[41.547001,41.526501],[41.708832,41.497723],[41.823112,41.434612],[41.955193,41.524639],[42.053585,41.495499],[42.183887,41.5145],[42.407665,41.466583],[42.510113,41.468613],[42.58411,41.570251],[42.677834,41.597252],[42.783611,41.57822],[42.866196,41.499111],[42.969582,41.4515],[43.024776,41.37825],[43.199001,41.303585],[43.231777,41.192749],[43.355362,41.201248],[43.471279,41.129806],[43.472168,41.027973],[43.67178,40.933445],[43.676109,40.844444],[43.748695,40.735943],[43.689751,40.591473],[43.547417,40.477554],[43.609196,40.433056],[43.592667,40.345444],[43.681915,40.257057],[43.655472,40.110779],[43.905472,40.018471],[44.127529,40.023888],[44.278973,40.045387],[44.488693,39.965057],[44.598526,39.828835],[44.771916,39.713722],[44.820252,39.625252],[44.606556,39.773361],[44.487057,39.686554],[44.436195,39.560665],[44.441113,39.43589],[44.313721,39.373974],[44.224304,39.410278],[44.069805,39.405304],[44.050778,39.357277],[44.111694,39.286446],[44.12661,39.189445],[44.218387,39.138637],[44.187416,39.012474],[44.255974,38.855084],[44.316139,38.833862],[44.277195,38.716026],[44.332527,38.628971],[44.323002,38.382446],[44.446777,38.385582],[44.50539,38.318443],[44.426918,38.278168],[44.401333,38.140972],[44.281555,38.00325],[44.238861,37.887112],[44.416443,37.854084],[44.476665,37.765499],[44.597111,37.763748],[44.638306,37.716305],[44.58086,37.646526],[44.638474,37.603638],[44.601166,37.445332],[44.823307,37.307556],[44.778221,37.223999],[44.785984,37.149895],[44.625767,37.190247],[44.545029,37.121315],[44.267849,36.976929],[44.185093,37.098049],[44.276474,37.16468],[44.269226,37.243797],[44.12434,37.323002],[44.018486,37.327789],[43.916588,37.223495],[43.497994,37.242538],[43.327316,37.326183],[43.152443,37.371407],[43.022503,37.354324],[42.963463,37.315578],[42.789223,37.380245],[42.659473,37.271408],[42.584469,37.169537],[42.363182,37.119049],[42.357418,37.227528],[42.193943,37.282196],[42.10611,37.21286],[41.97514,37.159584],[41.500862,37.079555],[41.285973,37.080139],[40.921082,37.12711],[40.781723,37.120583],[40.546276,37.026722],[40.461834,37.014862],[40.180863,36.878693],[39.841835,36.755333],[39.22736,36.665001],[39.020222,36.703304],[38.731472,36.707474],[38.563389,36.838833],[38.407833,36.89539],[38.200474,36.908001],[37.908028,36.785694],[37.65514,36.731415],[37.46114,36.638138],[37.266445,36.664944],[37.126835,36.661667],[36.944363,36.78125],[36.739029,36.824196],[36.623974,36.747082],[36.604168,36.579056],[36.553028,36.50111],[36.593223,36.394222],[36.706028,36.255165],[36.609249,36.217529],[36.54261,36.238056],[36.376694,36.169388],[36.397835,36.083752],[36.317196,36.004112],[36.212723,35.9515],[36.183056,35.835583],[35.921722,35.9305]]],[[[26.04114,40.745529],[26.132805,40.76189],[26.222973,40.89053],[26.357277,40.965832],[26.311777,41.182499],[26.507555,41.335361],[26.636862,41.356083],[26.596138,41.615471],[26.361889,41.719696],[26.381472,41.836056],[26.535,41.83625],[26.623833,41.968472],[26.971277,42.004444],[27.033945,42.084915],[27.21275,42.069695],[27.274334,42.107613],[27.381333,42.053612],[27.546444,41.923862],[27.704361,41.98489],[27.808527,41.958584],[27.872888,42.00964],[28.031334,41.987026],[28.055834,41.888584],[27.988611,41.830776],[28.119972,41.624443],[28.223972,41.532028],[28.637083,41.360832],[28.956362,41.263695],[29.084944,41.258389],[29.050501,41.16539],[29.063555,41.090527],[28.99239,41.01561],[28.81539,40.964832],[28.621639,40.968723],[28.386223,41.058167],[28.249666,41.084251],[28.088945,41.062111],[27.880138,40.974415],[27.754,41.020168],[27.531111,40.985001],[27.456751,40.850529],[27.35475,40.778584],[27.318138,40.711166],[27.161055,40.627499],[26.749027,40.482113],[26.591444,40.325359],[26.365778,40.204555],[26.384527,40.152748],[26.303472,40.0905],[26.172861,40.057724],[26.273195,40.203918],[26.234362,40.322109],[26.4435,40.439919],[26.599306,40.505859],[26.711445,40.517693],[26.841028,40.591446],[26.820084,40.653641],[26.460472,40.624363],[26.306999,40.599861],[26.119333,40.604137],[26.04114,40.745529]]],[[[25.743584,40.096584],[25.679138,40.160057],[25.787195,40.216721],[25.936501,40.245583],[25.996472,40.138],[25.743584,40.096584]]]]},"properties":{"name":"土耳其","name_en":"TURKEY","id":"TUR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[20.980568,40.855221],[20.983522,40.738068],[21.057282,40.667602],[21.04219,40.557953],[20.948006,40.466446],[20.844213,40.480377],[20.789446,40.361271],[20.707558,40.268444],[20.677456,40.099098],[20.549414,40.063492],[20.449659,40.073456],[20.395424,39.998947],[20.31226,39.990509],[20.415417,39.842533],[20.390425,39.788277],[20.190916,39.644882],[20.008398,39.692974],[19.978834,39.7705],[20.013361,39.827251],[19.872555,40.041054],[19.658167,40.134834],[19.450138,40.244526],[19.381527,40.316139],[19.493361,40.352528],[19.503611,40.451557],[19.469055,40.565613],[19.321611,40.655777],[19.378944,40.711334],[19.424499,40.883446],[19.536112,40.912834],[19.457582,41.030529],[19.480722,41.161083],[19.52861,41.25172],[19.42675,41.36739],[19.615334,41.612083],[19.576611,41.64875],[19.610056,41.791943],[19.547333,41.833195],[19.371851,41.853134],[19.344768,41.912312],[19.403046,42.102585],[19.281677,42.180126],[19.42235,42.326996],[19.426697,42.371231],[19.617376,42.541431],[19.72286,42.660915],[19.774328,42.592098],[19.743681,42.544456],[19.829828,42.466656],[20.001982,42.509529],[20.079126,42.555374],[20.221104,42.432964],[20.246615,42.325272],[20.338806,42.328011],[20.523884,42.211525],[20.555063,42.083748],[20.623377,41.97604],[20.5935,41.877003],[20.519239,41.750515],[20.516615,41.661697],[20.557659,41.582172],[20.456957,41.553318],[20.557247,41.416794],[20.50704,41.310452],[20.515206,41.232468],[20.596857,41.127831],[20.66972,41.087269],[20.731695,40.911694],[20.847155,40.937344],[20.979338,40.897175],[20.980568,40.855221]]]},"properties":{"name":"阿尔巴尼亚","name_en":"ALBANIA","id":"ALB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[55.210827,22.705933],[55.224224,22.811472],[55.218777,23.012056],[55.249832,23.118917],[55.350971,23.275749],[55.403862,23.472279],[55.464306,23.531111],[55.500446,23.662167],[55.568501,23.759001],[55.561165,23.891111],[55.485863,23.9335],[55.642166,24.028528],[55.816776,24.010471],[56.008335,24.068806],[55.950054,24.236166],[55.871918,24.213638],[55.779693,24.234222],[55.835167,24.334223],[55.797333,24.431612],[55.787556,24.570444],[55.843167,24.656723],[55.806,24.84689],[55.866222,24.943695],[55.957863,24.98311],[56.027138,24.963888],[56.026165,24.808945],[56.119557,24.734278],[56.193668,24.824862],[56.341473,24.898527],[56.375084,24.977917],[56.38039,24.941416],[56.532082,24.606306],[56.615444,24.48986],[56.714722,24.407583],[56.938027,24.117556],[57.1945,23.926472],[57.587971,23.793888],[57.797916,23.756779],[57.887333,23.705917],[58.031471,23.711695],[58.183888,23.680973],[58.29678,23.607721],[58.447918,23.611221],[58.502724,23.643917],[58.588917,23.618221],[58.616833,23.566305],[58.721863,23.529388],[58.779751,23.475945],[58.800945,23.395695],[58.913502,23.317223],[58.923195,23.258249],[59.063972,23.048471],[59.194363,22.957222],[59.290749,22.757139],[59.524917,22.572721],[59.727779,22.529362],[59.79464,22.5315],[59.836582,22.423834],[59.805863,22.223417],[59.6735,22.062778],[59.64389,21.932806],[59.496807,21.758833],[59.457863,21.639833],[59.29911,21.405056],[59.19714,21.367195],[59.045944,21.261168],[58.850861,21.061001],[58.798527,20.936138],[58.684307,20.814333],[58.66164,20.696388],[58.584999,20.629389],[58.527084,20.432583],[58.442501,20.350027],[58.280693,20.365],[58.194916,20.426445],[58.274361,20.554916],[58.191193,20.612249],[58.073944,20.550777],[58.064724,20.46175],[57.950585,20.400612],[57.953804,20.308834],[57.849693,20.244028],[57.82122,20.194195],[57.809471,19.982555],[57.733307,19.797722],[57.681862,19.737778],[57.721832,19.660862],[57.700085,19.515667],[57.755665,19.421055],[57.745251,19.229944],[57.792805,19.168528],[57.807388,18.972694],[57.68375,18.939138],[57.480084,18.941055],[57.264751,18.91736],[57.032665,18.859333],[56.839333,18.778584],[56.664028,18.601139],[56.628029,18.538029],[56.633221,18.449278],[56.598583,18.293972],[56.558304,18.226055],[56.551224,18.132584],[56.441807,18.054611],[56.350056,17.9195],[56.186695,17.940306],[56.106724,17.921028],[55.97728,17.928583],[55.91489,17.896444],[55.731888,17.901583],[55.529221,17.865862],[55.426998,17.818722],[55.37672,17.680277],[55.26675,17.606667],[55.227444,17.532722],[55.294723,17.359249],[55.192585,17.139749],[55.086193,17.049055],[54.906029,16.965334],[54.742306,16.9515],[54.680637,17.014029],[54.515835,17.033527],[54.330582,17.030251],[54.036861,16.98661],[53.94714,16.901083],[53.756527,16.874195],[53.676304,16.786528],[53.586418,16.750166],[53.511528,16.763721],[53.343304,16.735889],[53.10706,16.654402],[52,19],[55,20],[55.422539,21.267551],[55.666698,22],[55.210827,22.705933]]],[[[56.088779,26.076416],[56.183918,26.234362],[56.28653,26.208361],[56.364277,26.376583],[56.443806,26.226028],[56.368194,26.195694],[56.335335,26.123194],[56.441029,26.089333],[56.400276,25.971695],[56.431862,25.933472],[56.324806,25.74914],[56.271221,25.714111],[56.263611,25.630056],[56.200222,25.616722],[56.149029,25.672501],[56.142723,25.806168],[56.17464,25.979584],[56.158249,26.075056],[56.088779,26.076416]]],[[[58.628693,20.206722],[58.631306,20.343195],[58.707554,20.430639],[58.770695,20.439833],[58.81675,20.578056],[58.903473,20.593945],[58.943974,20.494472],[58.840752,20.437805],[58.778973,20.274],[58.718918,20.213388],[58.628693,20.206722]]]]},"properties":{"name":"阿曼","name_en":"OMAN","id":"OMN"}}, + {"type":"Feature","geometry":null,"properties":{"name":"图瓦卢","name_en":"TUVALU","id":"TUV"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[92.802513,20.303629],[92.762085,20.344473],[92.820198,20.423639],[92.866447,20.311388],[92.802513,20.303629]]],[[[93.139557,20],[93.103027,19.946722],[92.993698,20.053389],[93.056389,20.12175],[93.139557,20]]],[[[93.127167,20.24275],[93.009277,20.130861],[92.995781,20.19064],[93.044556,20.332083],[93.123802,20.368055],[93.127167,20.24275]]],[[[93.173752,20.18811],[93.229973,20.11025],[93.132919,20.084612],[93.098137,20.154167],[93.173752,20.18811]]],[[[93.315002,20.323416],[93.39061,20.209167],[93.411224,20.121445],[93.359749,20.055445],[93.314331,20.141417],[93.269112,20.30114],[93.315002,20.323416]]],[[[93.742081,18.814638],[93.747391,18.724167],[93.664024,18.669333],[93.544777,18.766777],[93.482475,18.867722],[93.576584,18.883722],[93.741531,18.872305],[93.742081,18.814638]]],[[[94.456803,15.9225],[94.380607,15.97925],[94.453499,16.018944],[94.584747,16.199139],[94.659447,16.144417],[94.593834,16.015499],[94.513085,15.988889],[94.456803,15.9225]]],[[[96.054916,16.282667],[95.951942,16.237944],[96.000443,16.382],[96.073586,16.341362],[96.054916,16.282667]]],[[[96.18708,16.471777],[96.185608,16.586945],[96.235581,16.598333],[96.282669,16.492027],[96.336029,16.443722],[96.280998,16.391083],[96.124107,16.313999],[96.091393,16.3535],[96.168915,16.417639],[96.18708,16.471777]]],[[[97.525475,16.236666],[97.456474,16.318722],[97.477943,16.376362],[97.443474,16.449833],[97.512474,16.504084],[97.616196,16.466612],[97.582527,16.407055],[97.57058,16.238333],[97.525475,16.236666]]],[[[98.096947,12.355139],[97.992691,12.289695],[97.956749,12.377306],[98.096947,12.355139]]],[[[98.13147,12.136472],[98.042221,12.210305],[98.06778,12.282917],[98.128113,12.2845],[98.13147,12.136472]]],[[[98.174751,10],[98.266998,10.051361],[98.252357,9.951555],[98.174751,10]]],[[[98.306557,11.762055],[98.276276,11.472555],[98.195053,11.458445],[98.200081,11.587361],[98.260529,11.740611],[98.306557,11.762055]]],[[[98.42836,12.520555],[98.462219,12.465111],[98.359665,12.319278],[98.313332,12.322278],[98.330666,12.465611],[98.297142,12.643945],[98.361,12.672389],[98.407143,12.628639],[98.42836,12.520555]]],[[[98.541222,11.630417],[98.527641,11.581223],[98.431389,11.560361],[98.382637,11.653639],[98.37072,11.737722],[98.401802,11.7905],[98.526581,11.808666],[98.541222,11.630417]]],[[[98.511719,11.988556],[98.560837,11.995167],[98.664864,11.922694],[98.537887,11.905306],[98.511719,11.988556]]],[[[97.061953,27.745898],[97.24861,27.888665],[97.38615,27.886055],[97.412952,28.013566],[97.30617,28.0722],[97.378901,28.234174],[97.482137,28.282527],[97.519767,28.437494],[97.569542,28.541557],[97.722132,28.489062],[97.736534,28.417452],[97.800877,28.326668],[97.907756,28.363357],[98.015858,28.235934],[98.140098,28.141685],[98.15965,28.08259],[98.140571,27.951897],[98.204906,27.890407],[98.235004,27.689469],[98.284492,27.651173],[98.316942,27.520723],[98.429214,27.548816],[98.465962,27.641712],[98.646159,27.564213],[98.704974,27.518798],[98.687078,27.425208],[98.740802,27.328376],[98.697087,27.212317],[98.761695,26.799981],[98.746061,26.698976],[98.781926,26.619073],[98.753574,26.559296],[98.733501,26.350872],[98.67709,26.238094],[98.735219,26.186546],[98.720054,26.127054],[98.63081,26.145604],[98.575301,26.117888],[98.620779,25.969258],[98.663138,25.953421],[98.704597,25.85229],[98.633393,25.800176],[98.544721,25.844683],[98.485681,25.792594],[98.401418,25.593472],[98.320186,25.551913],[98.2477,25.607772],[98.134929,25.501957],[98.143283,25.383703],[98.005258,25.295151],[97.942493,25.215478],[97.841466,25.270128],[97.727375,25.042017],[97.730311,24.907937],[97.700734,24.83823],[97.547272,24.738863],[97.56933,24.708376],[97.563091,24.559319],[97.530656,24.434304],[97.669776,24.452832],[97.716431,24.365088],[97.662307,24.339088],[97.767531,24.259106],[97.729912,24.227044],[97.729303,24.119527],[97.528087,23.927303],[97.642968,23.858025],[97.763849,23.907214],[97.922123,24.020539],[98.110469,24.092733],[98.221391,24.113659],[98.360401,24.096851],[98.549509,24.126656],[98.611986,24.085342],[98.716554,24.127588],[98.900026,24.108063],[98.699639,23.950075],[98.696411,23.784386],[98.797704,23.772365],[98.847271,23.631895],[98.813076,23.5526],[98.874825,23.483286],[98.935447,23.307766],[98.88455,23.18579],[99.060109,23.155659],[99.047154,23.120594],[99.255402,23.077937],[99.343318,23.13037],[99.43338,23.081097],[99.519301,23.071038],[99.537637,22.898912],[99.452587,22.858277],[99.386281,22.762361],[99.327211,22.7513],[99.385903,22.571197],[99.380092,22.504957],[99.250971,22.384514],[99.233525,22.246005],[99.170192,22.14632],[99.263801,22.10098],[99.391244,22.098947],[99.471945,22.130921],[99.516562,22.099555],[99.648797,22.100586],[99.830585,22.033379],[99.896041,22.066676],[99.972055,22.052435],[99.999861,21.972997],[99.944208,21.821323],[99.992826,21.7028],[100.041298,21.671563],[100.119814,21.703406],[100.168718,21.664389],[100.111997,21.600106],[100.127979,21.507238],[100.206425,21.50931],[100.246748,21.465152],[100.351055,21.529376],[100.432682,21.535671],[100.477501,21.463113],[100.56864,21.449918],[100.723321,21.514067],[100.870556,21.672573],[101.014942,21.707118],[101.089454,21.773706],[101.153381,21.668632],[101.159158,21.559456],[101.159226,21.525888],[101.005386,21.392221],[100.912613,21.358973],[100.848808,21.30261],[100.727028,21.312111],[100.701721,21.181833],[100.636948,21.064278],[100.527863,20.9575],[100.503502,20.809889],[100.401276,20.832001],[100.259476,20.746944],[100.177803,20.620527],[100.128441,20.400667],[100.093056,20.355749],[99.949448,20.449444],[99.883919,20.442139],[99.826111,20.348917],[99.688667,20.315472],[99.521858,20.361221],[99.537277,20.144751],[99.429192,20.08639],[99.330475,20.064112],[99.251724,20.1145],[99.167809,20.127945],[99.070725,20.088499],[99.026642,19.931139],[99.034943,19.843666],[99.003555,19.775249],[98.924584,19.744139],[98.833748,19.809944],[98.778473,19.757694],[98.710335,19.760361],[98.582527,19.707527],[98.515221,19.716055],[98.248527,19.679806],[98.171142,19.77014],[98.045166,19.808584],[98.028275,19.640806],[97.863556,19.573639],[97.887001,19.505611],[97.804253,19.406473],[97.841973,19.295584],[97.832031,19.098972],[97.738502,19.031195],[97.671165,18.945444],[97.747803,18.842251],[97.773445,18.691278],[97.76767,18.579222],[97.671524,18.577833],[97.449142,18.493805],[97.453667,18.384445],[97.507309,18.264528],[97.560944,18.337055],[97.62986,18.309834],[97.623192,18.216333],[97.742027,17.978582],[97.678528,17.867001],[97.777695,17.750805],[97.802193,17.674973],[97.998024,17.504694],[98.178002,17.255388],[98.293694,17.14986],[98.349831,17.041416],[98.456779,17.0165],[98.537918,16.888584],[98.467888,16.7255],[98.572639,16.624584],[98.578529,16.56275],[98.662972,16.452667],[98.643692,16.408472],[98.674858,16.285917],[98.819031,16.380861],[98.917503,16.394751],[98.900001,16.264723],[98.855614,16.238832],[98.847031,16.141472],[98.806,16.115278],[98.70208,16.144417],[98.617302,16.051445],[98.58783,15.908139],[98.614136,15.857028],[98.579613,15.784194],[98.559723,15.598056],[98.592087,15.436861],[98.583641,15.362028],[98.506836,15.381722],[98.319779,15.308139],[98.26889,15.237139],[98.204941,15.218083],[98.190613,15.111055],[98.237831,15.035944],[98.218529,14.988472],[98.254837,14.907639],[98.256142,14.815],[98.303306,14.739417],[98.426918,14.623722],[98.604332,14.366889],[98.610443,14.314639],[98.70211,14.266528],[98.890915,14.116583],[98.963608,14.097278],[99.028778,13.946389],[99.058609,13.935389],[99.132942,13.763473],[99.176613,13.715305],[99.181274,13.579056],[99.214226,13.455944],[99.209724,13.197083],[99.141167,13.195528],[99.111443,13.073778],[99.204697,12.958472],[99.188225,12.917417],[99.254997,12.721027],[99.443916,12.581639],[99.415169,12.472083],[99.504753,12.182889],[99.559891,12.145833],[99.553055,12.010445],[99.60128,11.970222],[99.583725,11.905583],[99.662781,11.827111],[99.639892,11.728389],[99.570579,11.625417],[99.467583,11.589306],[99.457695,11.493389],[99.402611,11.460944],[99.409805,11.396639],[99.32122,11.311973],[99.325165,11.27625],[99.17453,11.040083],[99.032417,10.965138],[99.001747,10.831555],[98.927887,10.822278],[98.791832,10.68225],[98.775665,10.629194],[98.821724,10.526694],[98.756164,10.385361],[98.681747,10.177584],[98.649445,10.178945],[98.55983,9.978861],[98.516388,10.047222],[98.529114,10.367473],[98.492165,10.447083],[98.497948,10.526222],[98.45533,10.683222],[98.470223,10.726639],[98.567192,10.726277],[98.595802,10.802083],[98.571724,10.863667],[98.716888,10.965861],[98.696053,11.093083],[98.765663,11.268945],[98.728226,11.315917],[98.719833,11.568973],[98.745003,11.675167],[98.611305,11.718611],[98.60733,11.799666],[98.730782,12.002611],[98.631668,12.076222],[98.634941,12.189],[98.541748,12.212139],[98.56353,12.2965],[98.536308,12.3595],[98.599281,12.482278],[98.696083,12.721723],[98.647614,12.727805],[98.639808,12.868028],[98.589302,12.931639],[98.579803,13.186694],[98.49189,13.250028],[98.422195,13.473639],[98.361084,13.609278],[98.281639,13.705861],[98.175972,13.741777],[98.110809,13.685945],[98.072281,13.751695],[98.098053,13.900194],[98.05867,13.995806],[98.097137,14.130917],[97.995529,14.29325],[97.952889,14.491167],[97.826775,14.744528],[97.790695,14.908083],[97.806335,15.150278],[97.731476,15.269305],[97.726944,15.344916],[97.782807,15.396973],[97.762032,15.528139],[97.699417,15.754084],[97.722725,15.779278],[97.688225,15.90175],[97.571335,16.010805],[97.64386,16.276861],[97.615502,16.355583],[97.622666,16.494778],[97.532524,16.537611],[97.384476,16.519861],[97.353302,16.544445],[97.326584,16.668806],[97.277222,16.686167],[97.169777,16.915333],[97.206558,17.012611],[97.114281,17.077778],[97.068611,17.230499],[97.00914,17.299973],[96.913918,17.3545],[96.802498,17.475166],[96.73439,17.435305],[96.773529,17.376362],[96.836639,17.380861],[96.908249,17.324444],[96.846863,17.206083],[96.912056,17.017723],[96.85183,16.832806],[96.771279,16.69161],[96.634552,16.560055],[96.510444,16.507944],[96.383697,16.496611],[96.284721,16.553749],[96.243721,16.617834],[96.172997,16.581223],[96.18708,16.471777],[96.16275,16.417667],[96.077141,16.357166],[95.964584,16.411833],[95.927529,16.385],[95.891197,16.244583],[95.696587,16.046028],[95.655388,15.934055],[95.467224,15.745139],[95.371277,15.704695],[95.283028,15.720972],[95.279136,15.846333],[95.347748,15.947278],[95.362778,16.058306],[95.269997,16.020361],[95.213219,15.850778],[95.222641,15.790222],[95.113281,15.803111],[95.133247,16.019306],[95.192474,16.028973],[95.165001,16.126333],[95.08667,16.092251],[95.036941,15.803778],[94.947609,15.741195],[94.842834,15.773278],[94.828308,15.960083],[94.878502,16.011528],[94.849671,16.072332],[94.719414,15.850445],[94.634003,15.861278],[94.547058,15.959084],[94.617279,16.019112],[94.679085,16.119583],[94.663193,16.242861],[94.682724,16.297833],[94.511886,16.283194],[94.510887,16.180195],[94.410248,16.054111],[94.276085,15.993472],[94.197556,16.036278],[94.230888,16.321722],[94.277084,16.496305],[94.403946,16.788444],[94.37883,16.87475],[94.437363,16.909472],[94.456665,17.067333],[94.517387,17.165194],[94.500526,17.262861],[94.567024,17.307917],[94.565445,17.498278],[94.542724,17.555277],[94.588386,17.619249],[94.544777,17.734861],[94.489754,17.782417],[94.480781,18.010666],[94.458252,18.141167],[94.419807,18.193667],[94.407417,18.310722],[94.260887,18.506722],[94.216888,18.731001],[94.146553,18.814388],[94.04464,18.845501],[94.036415,18.991333],[94.063164,19.037556],[93.953392,19.088528],[93.985832,18.961361],[93.917915,18.870501],[93.772835,18.966444],[93.665947,19.066416],[93.472725,19.363251],[93.538666,19.437027],[93.604141,19.414444],[93.641724,19.325083],[93.738975,19.256695],[93.822777,19.228777],[93.637749,19.484528],[93.675415,19.562471],[93.739113,19.548334],[93.813225,19.477083],[93.902443,19.488472],[93.722031,19.626472],[93.705948,19.702806],[93.779198,19.755888],[93.786247,19.862833],[93.681809,19.919666],[93.516113,19.923445],[93.475334,20],[93.416031,19.970751],[93.382614,20.054611],[93.413887,20.091139],[93.412613,20.172695],[93.323418,20.32975],[93.225914,20.307583],[93.144363,20.320583],[93.109497,20.488472],[93.021446,20.425222],[93.003914,20.277639],[92.853058,20.123167],[92.764946,20.199972],[92.798836,20.258249],[92.901054,20.297056],[92.841835,20.375999],[92.82753,20.496834],[92.739693,20.500555],[92.728447,20.26],[92.622391,20.455667],[92.528137,20.543501],[92.455971,20.66575],[92.390388,20.684889],[92.279831,20.969444],[92.27903,21.036751],[92.198029,21.154583],[92.218307,21.259556],[92.196808,21.316528],[92.388862,21.470362],[92.423836,21.379168],[92.543587,21.376055],[92.593559,21.245167],[92.673668,21.291277],[92.619446,21.496056],[92.601219,21.699223],[92.626663,21.884583],[92.608803,21.975861],[92.676086,22.013195],[92.694359,22.147388],[92.865219,22.058916],[92.930275,22.002138],[92.993721,22.050362],[93.048752,22.199499],[93.195724,22.251167],[93.178917,22.422361],[93.113113,22.52739],[93.099915,22.779417],[93.138557,22.901167],[93.131302,23.043972],[93.240028,23.003639],[93.312859,23.018499],[93.384666,23.21839],[93.366333,23.276611],[93.436752,23.685278],[93.399864,23.749861],[93.390808,23.92436],[93.331253,23.98311],[93.384277,24.084694],[93.500252,23.952694],[93.616554,24],[93.761024,24],[93.812309,23.928944],[93.933167,23.949888],[94.160698,23.855473],[94.165779,23.928612],[94.255447,24.081862],[94.255806,24.152445],[94.318276,24.307917],[94.374809,24.370472],[94.395226,24.462723],[94.4505,24.556917],[94.513558,24.60111],[94.545891,24.6975],[94.60286,24.708389],[94.644806,24.837139],[94.73967,25.022112],[94.733497,25.12925],[94.608666,25.170639],[94.579056,25.210527],[94.631165,25.387306],[94.679581,25.454611],[94.807724,25.504473],[95.042862,25.768223],[95.023834,25.924583],[95.091698,25.956139],[95.183418,26.063583],[95.115692,26.112167],[95.072166,26.337723],[95.072418,26.457556],[95.154747,26.621334],[95.240776,26.680334],[95.275413,26.64325],[95.425636,26.69364],[95.500946,26.802334],[95.598503,26.809166],[95.668747,26.896],[95.747749,26.910639],[95.808807,27.00964],[95.923363,27.032417],[96.035332,27.187389],[96.094025,27.224277],[96.292168,27.288195],[96.563835,27.303362],[96.628365,27.366138],[96.783691,27.349056],[96.887085,27.252445],[96.871391,27.183083],[97.125725,27.088306],[97.167053,27.126194],[96.901253,27.458471],[96.922584,27.511667],[96.89183,27.616167],[96.967026,27.663723],[97.017807,27.738472],[97.027168,27.742916],[97.035164,27.742556],[97.047234,27.744946],[97.061301,27.74866],[97.061953,27.745898]]]]},"properties":{"name":"缅甸","name_en":"Myanmar","id":"MMR"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.006447,4.891528],[114.968308,4.811778],[114.887832,4.815111],[114.825447,4.747167],[114.798309,4.669111],[114.81472,4.488555],[114.880997,4.425722],[114.854027,4.271722],[114.790474,4.127361],[114.68853,4.024694],[114.613671,4.003083],[114.539581,4.127639],[114.49411,4.1475],[114.4235,4.249667],[114.315918,4.272417],[114.329888,4.342778],[114.25753,4.502722],[114.159614,4.571667],[114.071442,4.588861],[114.234108,4.595695],[114.442558,4.663972],[114.512169,4.703917],[114.675858,4.846083],[114.850418,4.970333],[115.054863,5.047167],[115.006447,4.891528]]],[[[115.033554,4.797945],[115.152947,4.908167],[115.226997,4.811806],[115.283691,4.634389],[115.274246,4.441139],[115.35939,4.333944],[115.152748,4.379639],[115.110969,4.368222],[115.069694,4.571806],[115.044166,4.608944],[115.033554,4.797945]]]]},"properties":{"name":"文莱","name_en":"BRUNEI","id":"BRN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[11.566055,33.168999],[11.489223,32.892834],[11.507667,32.843193],[11.488806,32.667667],[11.598278,32.523556],[11.527333,32.402805],[11.366389,32.322361],[11.204166,32.276722],[10.982083,32.186722],[10.857945,32.11039],[10.794695,32],[10.639139,31.967945],[10.635305,31.86511],[10.529805,31.747305],[10.364889,31.734388],[10.291166,31.690111],[10.140611,31.493305],[10.147528,31.406973],[10.287639,31.082611],[10.307777,30.908972],[10.213223,30.713139],[10.019861,30.505528],[9.94725,30.393583],[9.888917,30.349194],[9.744278,30.315971],[9.575334,30.240418],[9.3455,31.110666],[9.137111,31.876444],[9.12925,32],[9.071861,32.096722],[8.3535,32.515915],[8.326389,32.670723],[8.326445,32.809334],[8.115444,33.099361],[8.052834,33.098499],[7.896444,33.176193],[7.813667,33.172916],[7.738444,33.251362],[7.743639,33.427776],[7.601,33.629471],[7.580889,33.760807],[7.533555,33.793335],[7.540167,34.045971],[7.610917,34.10947],[7.636222,34.196335],[7.798306,34.21236],[7.848166,34.407749],[7.918944,34.418751],[8.251445,34.613693],[8.290417,34.758915],[8.262278,34.885918],[8.351416,35.091473],[8.4445,35.214943],[8.324139,35.291222],[8.318028,35.360138],[8.364278,35.5135],[8.359667,35.651054],[8.255555,35.76289],[8.301083,35.939919],[8.297305,36.029945],[8.339167,36.139637],[8.345,36.276222],[8.390001,36.309361],[8.409278,36.424835],[8.209222,36.450748],[8.154944,36.499443],[8.313472,36.551723],[8.483916,36.697861],[8.478417,36.776638],[8.579833,36.780613],[8.641972,36.946919],[8.808333,36.967751],[8.88675,37.012806],[9.024944,37.141224],[9.152,37.186111],[9.195556,37.233665],[9.34175,37.236916],[9.655833,37.336777],[9.865055,37.335167],[9.877611,37.273861],[9.793333,37.24089],[9.787361,37.17989],[9.868278,37.138832],[10.002444,37.251167],[10.066917,37.269917],[10.226833,37.188557],[10.191277,37.105888],[10.21875,36.974724],[10.355194,36.879776],[10.285222,36.796307],[10.360833,36.727638],[10.435639,36.723999],[10.548833,36.771973],[10.585722,36.866917],[10.757389,36.907696],[10.91725,37.02639],[11.034639,37.080528],[11.098056,36.963306],[11.122278,36.842945],[11.0385,36.799137],[10.919805,36.653305],[10.818916,36.465637],[10.546445,36.373665],[10.487889,36.265335],[10.471389,36.134861],[10.489472,36.048889],[10.655278,35.818027],[10.72875,35.773167],[10.807389,35.790859],[10.838389,35.703304],[11.049889,35.633862],[11.062805,35.498138],[11.048805,35.32761],[11.1225,35.259167],[11.088139,35.165085],[11.0295,35.115776],[11.009028,35.019665],[10.926583,34.961639],[10.924334,34.888527],[10.772972,34.749695],[10.725833,34.651138],[10.658834,34.642807],[10.567917,34.529446],[10.464861,34.511971],[10.331,34.399418],[10.127694,34.320694],[10.024138,34.180222],[10.074056,33.961945],[10.185389,33.830612],[10.386222,33.68536],[10.526778,33.653946],[10.716778,33.715694],[10.745611,33.685223],[10.700916,33.501694],[10.782084,33.480667],[10.930889,33.53653],[10.92325,33.624279],[11.015695,33.640415],[11.107472,33.575165],[11.100333,33.440945],[11.179666,33.333527],[11.131861,33.286221],[11.204028,33.20861],[11.566055,33.168999]]],[[[10.919139,33.686832],[10.834778,33.739113],[10.729833,33.755112],[10.745194,33.887085],[10.793722,33.904083],[11.057611,33.833721],[11.066028,33.782612],[10.919139,33.686832]]]]},"properties":{"name":"突尼斯","name_en":"TUNISIA","id":"TUN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[18.889885,45.920891],[18.795084,45.879807],[18.677,45.914806],[18.5725,45.801529],[18.404612,45.74361],[18.124222,45.786583],[17.836361,45.79353],[17.658527,45.846973],[17.575916,45.935665],[17.381111,45.933693],[17.298639,46.001389],[17.156084,46.170029],[16.942833,46.241306],[16.871445,46.349445],[16.728445,46.389946],[16.671362,46.458],[16.566,46.483723],[16.517723,46.549499],[16.384916,46.64275],[16.320917,46.753918],[16.344584,46.830112],[16.281445,46.873138],[16.111889,46.871498],[16.308001,47.002804],[16.514944,47.01086],[16.425278,47.193027],[16.492721,47.283943],[16.459444,47.411556],[16.576389,47.411167],[16.712778,47.534527],[16.642695,47.625446],[16.427555,47.662472],[16.613194,47.759056],[16.753416,47.682835],[17.09075,47.71125],[17.057888,47.843056],[17.162722,48.008083],[17.251556,48.01939],[17.370278,47.975166],[17.579916,47.812363],[17.784861,47.735332],[18.09639,47.751835],[18.29575,47.728111],[18.447195,47.760639],[18.68,47.751999],[18.761444,47.813694],[18.793333,47.98164],[18.832306,48.043724],[19.49575,48.102612],[19.546778,48.217445],[19.636555,48.244221],[19.764111,48.216389],[19.800667,48.157417],[19.932083,48.13028],[20.26,48.287972],[20.328028,48.279778],[20.419056,48.421333],[20.511917,48.507084],[20.653944,48.566528],[20.842667,48.58511],[21.138527,48.499722],[21.323444,48.556862],[21.511612,48.561306],[21.627056,48.509861],[21.729555,48.355167],[22.038889,48.39114],[22.130362,48.381889],[22.213417,48.4235],[22.345444,48.282501],[22.523195,48.240334],[22.679611,48.091972],[22.811527,48.119972],[22.8895,48.043499],[22.906,47.959057],[22.778944,47.89061],[22.65661,47.778278],[22.479999,47.806862],[22.433445,47.743862],[22.331667,47.759445],[22.197056,47.630695],[22.022194,47.508278],[22.026056,47.394112],[21.887056,47.306026],[21.874222,47.206444],[21.793222,47.112473],[21.667084,47.028194],[21.608028,46.863804],[21.545389,46.842693],[21.540056,46.727055],[21.415361,46.622223],[21.333166,46.625557],[21.270889,46.50386],[21.299473,46.41589],[21.218445,46.405083],[21.173195,46.300499],[21.071583,46.247944],[20.857584,46.285667],[20.636223,46.136055],[20.55825,46.175251],[20.442389,46.147388],[20.358917,46.168056],[20.267302,46.117104],[20.09416,46.175976],[19.934263,46.175739],[19.821117,46.130264],[19.698372,46.187988],[19.5678,46.178238],[19.415636,46.045582],[19.284723,45.996616],[19.147331,45.996174],[19.104639,46.039871],[18.961947,45.925518],[18.889885,45.920891]]]},"properties":{"name":"匈牙利","name_en":"Hungary","id":"HUN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[47.73811,43.92514],[47.671612,44.002056],[47.874195,43.989971],[47.73811,43.92514]]],[[[-172.298721,65.6437],[-172.585526,65.69101],[-172.643906,65.623947],[-172.37236,65.567978],[-172.301331,65.469894],[-172.155045,65.40715],[-172.212311,65.321816],[-172.199264,65.20298],[-172.118011,65.042847],[-172.387436,64.916695],[-172.485062,64.92247],[-172.752869,64.838013],[-172.742035,64.769142],[-172.860306,64.662338],[-172.406799,64.515419],[-172.277038,64.427116],[-172.602402,64.376884],[-172.81781,64.457588],[-172.839065,64.301231],[-172.944702,64.261246],[-173.167313,64.25174],[-173.353851,64.292053],[-173.352249,64.35334],[-173.613556,64.328995],[-173.979279,64.422722],[-174.037109,64.539169],[-174.924606,64.799042],[-175.046768,64.772751],[-175.373291,64.80217],[-175.382492,64.856338],[-175.837875,64.984734],[-175.723999,65.145233],[-175.888092,65.283318],[-175.909912,65.413071],[-176.40802,65.500351],[-176.868683,65.593964],[-177.096054,65.591164],[-177.307648,65.484695],[-177.750793,65.443245],[-178.09874,65.463074],[-178.25531,65.446739],[-178.530029,65.498474],[-178.39212,65.694901],[-178.579346,65.731491],[-178.692871,65.840164],[-178.858566,65.90239],[-178.650604,66.017586],[-178.431412,66.278282],[-178.580872,66.348747],[-178.715439,66.186859],[-178.960327,66.158974],[-179.113586,66.274712],[-179.29216,66.252075],[-179.220932,66.153732],[-179.347916,66.108635],[-179.745209,66.08252],[-179.770996,65.896011],[-179.581238,65.722031],[-179.270294,65.619614],[-179.259354,65.5298],[-179.472626,65.405891],[-179.528976,65.231308],[-179.666687,65.130119],[-179.76976,65.124397],[-180,65.027565],[-180,68.97953],[-179.78157,68.913002],[-179.477325,68.917015],[-179.300186,68.851837],[-178.831421,68.744804],[-178.537002,68.603745],[-177.410919,68.245827],[-176.797989,68.084595],[-176.04863,67.868118],[-175.887543,67.841469],[-175.623047,67.745148],[-175.258453,67.647919],[-175.240997,67.543999],[-174.892502,67.414909],[-174.747238,67.30732],[-174.868424,67.269508],[-174.909637,67.082436],[-174.787369,66.937935],[-174.706451,66.770668],[-174.918411,66.689392],[-174.813416,66.592468],[-174.680618,66.594215],[-174.422546,66.522766],[-174.468033,66.38752],[-174.365524,66.335724],[-173.965225,66.456688],[-173.862045,66.316124],[-173.702057,66.369095],[-173.684982,66.4394],[-173.846786,66.511032],[-174.190979,66.552711],[-174.19017,66.594978],[-173.914291,66.676331],[-173.947144,66.838768],[-174.040024,66.974319],[-174.188339,67.002472],[-174.089554,67.085747],[-173.719116,67.078033],[-173.623291,67.113014],[-173.377228,67.076965],[-172.895416,67.039108],[-172.662125,67.004318],[-172.029831,66.954498],[-171.690872,66.947258],[-171.650482,66.847572],[-171.338608,66.757973],[-171.353745,66.672684],[-171.134186,66.582092],[-170.729294,66.446808],[-170.569916,66.351433],[-170.199173,66.279221],[-170.109802,66.181709],[-169.750244,66.162186],[-169.658646,66.083275],[-169.712921,66.014809],[-169.908569,66.049576],[-170.149567,66.016067],[-170.528916,65.866386],[-170.509827,65.652123],[-170.612991,65.600624],[-171.162506,65.700989],[-171.228622,65.654205],[-170.988724,65.589554],[-171.053192,65.463547],[-171.260208,65.526527],[-171.737533,65.501205],[-172.146057,65.531471],[-172.298721,65.6437]]],[[[-179.537903,70.86515],[-179.672333,70.94519],[-180,70.974808],[-180,71.528336],[-179.616165,71.56768],[-179.327194,71.533531],[-179.115616,71.586342],[-178.651718,71.56842],[-178.114899,71.478165],[-177.735474,71.304421],[-177.458633,71.218857],[-177.592453,71.108055],[-177.924713,71.026131],[-178.752106,70.958137],[-179.152039,70.897499],[-179.537903,70.86515]]],[[[-172.456024,64.822121],[-172.282562,64.832466],[-172.095856,64.781906],[-172.345505,64.708023],[-172.635818,64.707222],[-172.456024,64.822121]]],[[[21.276501,55.245693],[21.411667,55.277443],[21.502083,55.1945],[21.65336,55.182335],[21.748638,55.127945],[22.071056,55.026196],[22.275888,55.067139],[22.612473,55.020248],[22.731333,54.966446],[22.892805,54.813721],[22.728861,54.694363],[22.686083,54.588444],[22.702083,54.465332],[22.793434,54.368225],[22.571277,54.351082],[21.471472,54.320694],[20.540501,54.371807],[20.2195,54.40797],[19.786055,54.436722],[20.2605,54.620277],[20.314667,54.686359],[20.058777,54.714611],[19.939083,54.704693],[19.969555,54.798527],[19.946556,54.924999],[20.02325,54.949974],[20.529945,54.960609],[20.990749,54.892612],[21.215555,54.923862],[21.224277,55.010307],[21.179832,55.193054],[21.276501,55.245693]]],[[[35.850945,65],[35.514473,65.069389],[35.497417,65.118057],[35.672722,65.16436],[35.817196,65.152809],[35.769554,65.066559],[35.850945,65]]],[[[48.491333,80.798668],[48.718472,80.623138],[48.139305,80.648087],[47.98275,80.722336],[47.525665,80.673225],[46.873695,80.554726],[46.528946,80.527611],[45.417194,80.548416],[45.017834,80.615776],[46.114887,80.662224],[46.904915,80.741219],[47.47047,80.851753],[47.945721,80.797279],[48.491333,80.798668]]],[[[48.273918,80.115387],[47.852612,80.16375],[47.856724,80.245834],[47.421528,80.223892],[47.11536,80.160858],[46.754917,80.315056],[47.183777,80.375946],[48.091446,80.411331],[47.611946,80.483223],[48.334167,80.547806],[49.15411,80.51339],[49.236195,80.586113],[49.670502,80.660584],[49.328972,80.699165],[49.178196,80.797249],[49.646499,80.849052],[49.805054,80.907448],[50.582779,80.895859],[51.002751,80.857613],[51.80175,80.712975],[50.986473,80.54583],[49.666054,80.478249],[49.749748,80.368057],[49.134083,80.371109],[48.849972,80.212303],[49.113918,80.16967],[48.273918,80.115387]]],[[[50,69.061333],[49.663555,68.859192],[49.179001,68.761192],[48.583473,68.716446],[48.223,68.862526],[48.202583,68.956749],[48.277027,69.219696],[48.412639,69.347664],[48.669582,69.448364],[48.910057,69.496246],[49.206222,69.508446],[49.39914,69.476303],[50.149361,69.258308],[50.302776,69.127586],[50,69.061333]]],[[[50,80.22242],[50.394306,80.162277],[49.885666,80.054779],[49.551998,80.159164],[50,80.22242]]],[[[50.599388,80],[51.013306,80.102974],[51.271221,80.044724],[51.105446,79.906136],[50.377109,79.93972],[50.599388,80]]],[[[50.906029,81.09639],[50.517693,81.049004],[50.367638,81.14917],[50.748054,81.18753],[50.906029,81.09639]]],[[[55.24136,70.636887],[55.154251,70.54847],[54.818138,70.636581],[54.721222,70.726555],[54.487415,70.771835],[54.203835,70.718613],[54.010193,70.727364],[53.9165,70.785698],[53.665054,70.810448],[53.756943,70.950226],[53.553333,71.035004],[53.701668,71.067802],[54.119221,71.097359],[53.972473,71.152779],[53.583195,71.185692],[53.328999,71.334335],[53.289082,71.427864],[53.018749,71.425858],[52.407749,71.501694],[52.088276,71.457169],[51.896499,71.459053],[51.612221,71.541054],[51.432026,71.828056],[51.563641,72.05114],[51.873638,72.149948],[51.946304,72.102249],[52.402527,72.095055],[52.510612,72.244392],[52.714222,72.291496],[52.728027,72.545441],[52.818527,72.646889],[52.561722,72.660553],[52.460999,72.709419],[52.570946,72.847443],[53.067943,72.893723],[53.167332,73.128052],[53.378387,73.218803],[53.552891,73.220444],[53.893223,73.290527],[54.216251,73.252693],[54.504639,73.361664],[54.904415,73.425919],[55.397556,73.318497],[55.749416,73.321358],[55.999222,73.248444],[56.34589,73.228279],[56.500584,73.186806],[56.541943,73.104385],[56.414471,73.022087],[56.178723,72.960587],[56.209499,72.854248],[56.103668,72.792969],[55.845917,72.78389],[55.90625,72.65136],[55.647999,72.64608],[55.450474,72.43792],[55.468807,72.362831],[55.328804,72.288223],[55.573555,72.171143],[55.41925,72.11628],[55.362278,71.99836],[55.489613,71.897224],[55.576279,71.706306],[56.198139,71.186081],[57.036388,70.849724],[57.406834,70.798447],[57.523277,70.710419],[57.431362,70.627586],[57.135361,70.611527],[57.089943,70.556694],[56.717834,70.616249],[56.426334,70.700447],[56.169304,70.678864],[56.003166,70.591835],[55.593224,70.683136],[55.330166,70.707474],[55.24136,70.636887]]],[[[52.457806,80.182419],[53.035194,80.387497],[53.947472,80.230003],[53.544582,80.143303],[52.691776,80.154358],[52.457806,80.182419]]],[[[52.765946,71.138138],[52.609112,71.225693],[52.375252,71.219749],[52.264832,71.324944],[52.457333,71.363609],[52.816528,71.387497],[53.192165,71.222137],[53.227001,71.14772],[53.026722,70.987198],[52.765946,71.138138]]],[[[55.528862,74.558586],[55.575138,74.629387],[56.387474,74.706886],[56.340084,74.786362],[56.077331,74.775864],[56.003666,74.844025],[56.37114,74.901833],[56.369667,75.021721],[56.052082,74.972504],[55.983833,75.053833],[55.807026,75.089195],[56.003807,75.192253],[56.455029,75.066696],[56.949196,75.224831],[56.741974,75.295807],[57.057918,75.373306],[57.580139,75.308777],[57.743752,75.403053],[57.569279,75.47197],[57.991222,75.556557],[58.037224,75.655113],[58.659943,75.721191],[58.633835,75.775001],[58.871529,75.850304],[59.080891,75.842476],[59.341,75.914474],[59.799252,75.923859],[60.363361,75.990448],[60.082916,76.045502],[60.52325,76.122276],[60.843945,76.048943],[61.062363,76.259193],[61.764305,76.274025],[62.413223,76.249863],[62.412918,76.176498],[63.10014,76.219307],[63.695557,76.322975],[64.073448,76.29258],[64.319885,76.349587],[64.659584,76.359253],[64.800003,76.465225],[65.342804,76.493248],[65.553497,76.565834],[66.062164,76.520111],[65.795891,76.655029],[66.427109,76.826752],[67.25267,76.933556],[67.561775,76.993225],[68.116112,76.992722],[68.484749,76.956223],[68.835136,76.864555],[68.995415,76.672195],[68.852753,76.633804],[68.743698,76.494972],[68.582359,76.407448],[68.104309,76.249222],[67.435692,76.151413],[67.059303,76.067307],[66.721497,76.041054],[65.421196,75.868141],[65.037666,75.78878],[64.878029,75.792305],[64.320747,75.717392],[64.096107,75.71225],[63.797973,75.638054],[62.999333,75.56028],[62.33075,75.446663],[62.01086,75.442558],[61.666557,75.323471],[61.520332,75.225861],[60.899639,75.150948],[60.768665,75.016609],[60.626999,75.031418],[60.566166,74.848503],[60.227028,74.844864],[60.308861,74.740471],[59.868778,74.715614],[59.872391,74.615608],[59.6105,74.573502],[59.231804,74.6465],[59.082306,74.481667],[58.910805,74.434998],[58.646026,74.50264],[58.679443,74.27578],[58.32,74.136559],[58.184502,74.044998],[58.275806,73.993385],[57.614334,74.018196],[57.889862,73.901833],[57.898361,73.775887],[57.673027,73.712608],[57.599388,73.599167],[57.243473,73.543419],[57.221916,73.484917],[56.989582,73.3265],[56.762943,73.352608],[56.743278,73.23317],[56.089443,73.274246],[56.07103,73.364914],[55.785946,73.332275],[55.396694,73.328781],[54.935806,73.439392],[54.502251,73.387665],[54.326138,73.327362],[54.045944,73.338837],[54.202137,73.485832],[54.376751,73.564026],[54.683724,73.614998],[54.503307,73.683891],[54.340416,73.621086],[53.967724,73.622444],[53.683998,73.723358],[53.915112,73.766724],[54.31464,73.919357],[54.698307,73.95961],[54.59964,74.019775],[54.904278,74.11908],[55.174835,74.159805],[55.579971,74.119057],[55.593887,74.182915],[55.269333,74.219139],[55.674721,74.317612],[55.300026,74.347054],[55.348721,74.410919],[56.100693,74.455139],[56.014446,74.522087],[55.761055,74.517944],[55.528862,74.558586]]],[[[54.141556,80.590668],[54.537945,80.466469],[54.269112,80.414276],[53.890304,80.447891],[54.141556,80.590668]]],[[[55,80.711113],[54.050972,80.80014],[54.379696,80.861862],[55.194916,80.871056],[55.966362,80.765892],[55,80.711113]]],[[[54.205334,80.16642],[54.124111,80.292503],[54.420139,80.284668],[54.205334,80.16642]]],[[[56.699001,80.775612],[55.77314,80.845558],[55.391109,80.922363],[55.034832,80.932976],[54.461918,81.02758],[54.96664,81.073997],[55.499111,80.999641],[56.025112,81.023552],[56.654915,80.957497],[56.893196,80.875809],[57.585888,80.820114],[57.812973,80.756165],[57.180443,80.668442],[56.699001,80.775612]]],[[[56.589474,80.746414],[57.014137,80.673027],[56.892334,80.621864],[56.370918,80.595169],[55.569443,80.627335],[55.81747,80.736305],[56.589474,80.746414]]],[[[55.768139,81.30658],[56.317444,81.268196],[56.496666,81.332726],[57.01239,81.387642],[57.527916,81.306778],[56.652584,81.166252],[55.563446,81.208748],[55.768139,81.30658]]],[[[57.00761,80.338974],[57.170971,80.31636],[57.021721,80.057281],[56.099361,80.061638],[55.824974,80.08992],[56.153057,80.177666],[55.940109,80.296669],[56.241943,80.331337],[57.00761,80.338974]]],[[[56.638084,81.029335],[57.618221,81.023415],[57.865581,80.950638],[58.341026,80.904778],[57.848667,80.815445],[57.327835,80.857941],[56.638084,81.029335]]],[[[57.819637,81.523361],[58.359196,81.479553],[58.55336,81.405975],[57.840222,81.378082],[57.460529,81.435669],[56.905556,81.445221],[57.035137,81.541191],[57.819637,81.523361]]],[[[57.056915,81.134224],[57.359665,81.201027],[58.04689,81.210053],[57.784943,81.106499],[57.056915,81.134224]]],[[[58.075249,80.100945],[57.349666,80.15303],[57.294029,80.34642],[57.006111,80.446442],[58.07914,80.475807],[58.914833,80.418831],[59.316639,80.320915],[58.648251,80.325302],[58.101307,80.230972],[58.491112,80.198113],[58.075249,80.100945]]],[[[58.964474,80.843719],[58.971001,80.761642],[58.569637,80.723968],[57.946415,80.756638],[58.165749,80.847443],[58.752109,80.876251],[58.964474,80.843719]]],[[[58.084973,80.991585],[58.385502,81.072914],[58.759945,81.00425],[58.606083,80.933556],[58.084973,80.991585]]],[[[59.354916,81.831055],[59.237194,81.734444],[57.976276,81.713837],[57.912529,81.81086],[58.849583,81.856781],[59.354916,81.831055]]],[[[60,69.696198],[59.794029,69.685448],[59.589168,69.724304],[59.715668,69.779945],[59.540196,69.864304],[59.112861,69.897804],[58.804085,69.967415],[58.630554,70.059418],[58.611221,70.141998],[58.445556,70.221832],[58.788082,70.37233],[58.809807,70.42675],[59.051666,70.451752],[59.365555,70.347664],[59.604305,70.206718],[59.799221,70.126945],[60.04536,70.068749],[60.440887,69.933525],[60.545502,69.791748],[60.490307,69.732193],[60.213444,69.679726],[60,69.696198]]],[[[59.208695,81.39122],[59.027443,81.292969],[58.577332,81.373779],[59.208695,81.39122]]],[[[60,79.991638],[59.717167,79.937332],[59.305611,79.937248],[58.813194,80.012833],[59.296501,80.07811],[59.662167,80.081253],[60,79.991638]]],[[[60,80.793114],[60.413387,80.774223],[61.356472,80.815781],[61.575943,80.862114],[62.04361,80.859726],[62.218304,80.766167],[62.011501,80.578026],[61.660278,80.555054],[61.647026,80.468391],[61.087696,80.362442],[60.597752,80.394638],[60.352806,80.450859],[59.66539,80.386833],[59.338085,80.485001],[59.471474,80.690582],[60,80.793114]]],[[[61.523613,81.072586],[61.580582,81.017693],[61.206444,80.921112],[60.417862,80.904251],[60.001221,80.973557],[61.144584,81.112892],[61.523613,81.072586]]],[[[63.80439,81.622643],[63.460415,81.569138],[62.693779,81.599503],[62.507805,81.702309],[63.347442,81.71003],[63.80439,81.622643]]],[[[65,81.170914],[65.402779,81.014053],[65.384865,80.912697],[64.978973,80.779663],[64.415695,80.705254],[63.598667,80.682419],[63.164082,80.637863],[62.520584,80.78022],[63.383167,80.956253],[63.967777,80.954666],[64.188332,81.006691],[64.189529,81.135887],[64.575531,81.19017],[65,81.170914]]],[[[67.300003,69.446281],[67.035919,69.474747],[67.220024,69.570892],[67.384666,69.50386],[67.300003,69.446281]]],[[[70.068863,66.534447],[69.869393,66.549919],[69.630058,66.610527],[69.517418,66.70742],[69.74147,66.663025],[69.770615,66.632385],[69.929474,66.614334],[70.098419,66.553665],[70.068863,66.534447]]],[[[70.003891,66.693497],[70.011086,66.599831],[69.902779,66.625832],[69.767891,66.640305],[69.730393,66.674004],[69.611359,66.704887],[69.75325,66.751335],[70.003891,66.693497]]],[[[70,73.008583],[69.924141,73.072365],[70.026253,73.252029],[69.987526,73.386307],[70.307198,73.451111],[70.789139,73.490997],[71.271835,73.427834],[71.541557,73.278503],[71.648361,73.173668],[71.360695,73.162941],[71.14447,73.109528],[70.896858,73.113892],[70.441475,73.019302],[70,73.008583]]],[[[70.439667,66.64225],[70.59153,66.675003],[71.001694,66.581947],[70.988052,66.526558],[70.697304,66.489136],[70.33683,66.565918],[70.439667,66.64225]]],[[[71.587303,66.727806],[71.542831,66.623306],[71.271111,66.637497],[70.970055,66.595024],[70.628334,66.683029],[70.875191,66.804085],[71.081169,66.79586],[71.212692,66.853363],[71.480751,66.877945],[71.587303,66.727806]]],[[[74.660141,73.025002],[74.545998,72.846306],[74.074143,72.987335],[74.328056,73.112137],[74.717583,73.075027],[74.660141,73.025002]]],[[[76.778664,79.472664],[76.670196,79.534553],[76.304497,79.538635],[76.119164,79.637779],[76.657387,79.617973],[77.367531,79.530472],[77.468391,79.478249],[76.778664,79.472664]]],[[[77.227608,72.434364],[77.340775,72.524666],[77.61422,72.602837],[78.193725,72.553802],[78.340698,72.460083],[77.644363,72.294724],[76.927391,72.272057],[76.924332,72.352028],[77.227608,72.434364]]],[[[79.465195,80.834969],[78.663086,80.832527],[78.867775,80.942558],[79.238251,80.967499],[79.812164,80.941223],[79.940865,80.892166],[79.465195,80.834969]]],[[[79.531113,72.760498],[79.361358,72.699471],[79.027389,72.720192],[78.625946,72.803307],[78.620109,72.855583],[79.169082,73.081612],[79.508026,72.920387],[79.531113,72.760498]]],[[[82.316391,75.337418],[81.89772,75.287025],[81.619164,75.289497],[81.682083,75.403748],[82.316391,75.337418]]],[[[82.684944,70.248558],[82.567665,70.256943],[82.465057,70.35286],[82.223442,70.428886],[82.244835,70.547859],[82.376587,70.595085],[82.593635,70.532776],[82.618164,70.459862],[82.924614,70.356888],[82.684944,70.248558]]],[[[82.35717,70.32489],[82.587471,70.225586],[82.421249,70.190445],[82.276337,70.267303],[82.35717,70.32489]]],[[[83.144112,75.916611],[82.47789,75.953163],[82.555473,75.995552],[83.106529,75.965027],[83.144112,75.916611]]],[[[82.783943,70.432388],[82.625748,70.503082],[82.63372,70.522499],[82.54467,70.575386],[82.474693,70.58503],[82.440636,70.663002],[82.532059,70.742142],[82.752891,70.690552],[82.974975,70.549751],[83.051865,70.450111],[82.783943,70.432388]]],[[[82.731857,74.033722],[82.499946,74.054527],[82.643333,74.140945],[82.833999,74.109413],[82.731857,74.033722]]],[[[82.883415,70.635887],[82.658584,70.752586],[82.810028,70.931419],[83.123665,70.846001],[83.139778,70.766891],[82.910446,70.694695],[82.883415,70.635887]]],[[[83.063698,70.370415],[83.101364,70.51403],[83.303864,70.449249],[83.063698,70.370415]]],[[[83.66317,69.735725],[83.514358,69.74958],[83.481918,69.829086],[83.620193,69.856781],[83.837723,69.748665],[83.66317,69.735725]]],[[[85.191109,74.511086],[85.284554,74.57692],[85.660194,74.517693],[85.350388,74.449165],[85.191109,74.511086]]],[[[86.271332,74.903473],[86.681892,74.936554],[87.033363,74.991837],[87.197166,74.943726],[86.847557,74.829887],[86.354225,74.846947],[86.271332,74.903473]]],[[[89.467331,77.158752],[89.219475,77.20211],[89.284614,77.267998],[89.653946,77.294304],[89.72625,77.234581],[89.467331,77.158752]]],[[[90.927475,81.03186],[90.206864,81.069222],[90.239365,81.182999],[91.054031,81.210976],[91.601776,81.178169],[91.723587,81.112831],[91.341919,81.037941],[90.927475,81.03186]]],[[[91.368416,80],[91.324112,80.065475],[93.00853,80.026779],[93.89817,79.920776],[93.750053,79.840836],[93.132721,79.712585],[92.489944,79.677696],[92.107277,79.688805],[91.930832,79.808807],[91.29039,79.838806],[91.368416,80]]],[[[95.464691,81.191971],[95.882553,81.256416],[96.277222,81.106247],[96.776497,80.983498],[96.733887,80.942558],[97.466835,80.814278],[97.816307,80.788086],[98.021164,80.668976],[97.431358,80.61039],[97.11908,80.512474],[97.26339,80.334442],[97.469169,80.290108],[96.987305,80.21608],[95.674667,80.201775],[95.403557,80.165726],[94.49958,80.122414],[94.350388,80.066948],[93.590385,80.01178],[92.738029,80.123779],[92.458,80.122749],[92.35183,80.217308],[91.732697,80.325691],[91.988388,80.408279],[92.891945,80.486053],[92.953278,80.621696],[93.341247,80.725082],[92.627052,80.702026],[92.88372,80.82975],[93.324059,80.942528],[93.770195,81.008026],[94.910774,81.104385],[95.464691,81.191971]]],[[[99.976448,79.726471],[99.854469,79.547165],[99.843864,79.276085],[99.314224,79.245087],[99.931969,79.094139],[100.048554,78.94767],[99.594582,78.843086],[99.177696,78.800972],[98.338219,78.801331],[97.929275,78.830444],[97.665695,78.80883],[96.983223,78.934914],[96.963859,78.987167],[96.032082,78.97953],[95.738304,78.994225],[95.638611,79.09742],[95.105057,79.026192],[94.679337,79.120163],[94.729362,79.179276],[94.465668,79.278641],[94.381722,79.487747],[94.092918,79.489807],[93.719582,79.560249],[93.659386,79.622475],[94.104027,79.769638],[94.679664,79.781891],[94.723747,79.828003],[94.349197,79.893997],[94.774139,80.042053],[95.505753,80.103142],[96.560417,80.099693],[97.188553,80.159859],[97.682587,80.157448],[98.110725,80.041916],[98.028198,79.928719],[97.571472,79.832832],[97.853302,79.793221],[98.275497,79.824387],[98.397057,79.956024],[98.641777,80.063164],[99.464447,80.021614],[100.154999,79.783691],[99.976448,79.726471]]],[[[95,76.274887],[94.881416,76.175331],[94.622055,76.224693],[95,76.274887]]],[[[95.937805,77.010918],[95.944252,77.088501],[96.467224,77.189392],[96.460281,77.066193],[96.204636,76.985306],[95.937805,77.010918]]],[[[96.338219,76.098335],[96.259415,76.146774],[95.79583,76.14547],[95.370781,76.238052],[95.869225,76.310142],[96.011253,76.2845],[96.681915,76.253555],[96.338219,76.098335]]],[[[102.850555,79.128197],[102.746803,79.04892],[102.98922,79.016029],[103.835472,79.14164],[103.988724,79.049499],[104.514747,78.9235],[104.482834,78.833504],[104.855919,78.846359],[105.204392,78.794472],[105.323998,78.700386],[105.35511,78.503502],[104.852776,78.313225],[104.332306,78.315971],[103.891304,78.25367],[103.26783,78.210304],[102.339279,78.204475],[101.270943,78.169914],[100.875114,78.080414],[100.11364,77.951027],[99.582611,77.963531],[99.697639,78.163055],[100.095085,78.30658],[100.148086,78.415001],[100.43042,78.661331],[100.86911,78.840164],[101.40683,79.204224],[102.278252,79.242531],[102.333664,79.397697],[102.892166,79.361221],[103.186165,79.274414],[102.850555,79.128197]]],[[[106.808304,78.283531],[106.286026,78.192665],[106.132309,78.251747],[106.808304,78.283531]]],[[[107.516586,78.039719],[107.514221,78.074722],[106.737168,78.103058],[106.841247,78.179695],[107.74736,78.136169],[107.516586,78.039719]]],[[[113.113083,74.196861],[112.826195,74.080864],[112.203194,74.133636],[111.946358,74.219887],[111.491943,74.291748],[111.698608,74.369614],[112.012169,74.380386],[111.980614,74.510498],[112.081085,74.551941],[112.623497,74.51667],[113.161247,74.504997],[113.343636,74.472443],[113.424583,74.326164],[113.113083,74.196861]]],[[[112.638107,76.424004],[112.107529,76.552414],[112.032944,76.614052],[112.56575,76.631081],[112.638107,76.424004]]],[[[131.826141,42.927113],[131.751144,42.994194],[131.848312,43.055637],[131.935608,42.992248],[131.826141,42.927113]]],[[[135.720062,74.104668],[136.126938,74.057747],[136.338364,73.921692],[136.197495,73.881775],[135.720062,74.104668]]],[[[135.651581,75.364998],[135.511475,75.440277],[135.619919,75.505775],[135.617523,75.655693],[135.732636,75.822083],[135.951614,75.690308],[136.238586,75.622971],[135.977188,75.485443],[135.895355,75.376389],[135.651581,75.364998]]],[[[136.79155,55],[137.022171,55.09864],[137.199005,55.103138],[137.059753,54.972752],[137.065369,54.909973],[136.693894,54.945888],[136.79155,55]]],[[[142.260605,75],[141.883896,75.004608],[141.625336,74.941414],[140.839188,74.885864],[140.231384,74.812752],[139.803894,74.957474],[139.636475,74.958725],[139.640274,74.841141],[139.473617,74.706497],[139.07692,74.64003],[138.774673,74.708138],[138.200607,74.759308],[137.908173,74.931198],[137.376358,75.06147],[136.978439,75.251389],[136.960052,75.347641],[137.207916,75.37561],[137.309891,75.576942],[137.175201,75.730141],[137.489746,75.750252],[137.460556,75.926025],[137.658646,75.99128],[138.103699,76.001221],[138.264114,76.11525],[138.844727,76.200501],[139.600662,75.990639],[139.989838,75.952667],[139.831665,75.885056],[140.16452,75.80397],[140.50972,75.782448],[140.589081,75.709473],[140.921967,75.703163],[140.929077,75.891441],[141.105392,76.061028],[141.587585,76.020332],[141.535522,76.09417],[141.811081,76.111641],[142.63916,75.855583],[143.191467,75.800415],[143.532699,75.853943],[144.0672,75.804726],[144.342804,75.72139],[144.68306,75.698608],[145.146576,75.597359],[145.201965,75.503555],[144.875503,75.425636],[144.85936,75.293777],[144.741577,75.148781],[144.406189,75.051552],[143.981918,75.012779],[143.790772,75.07061],[143.522827,75.059387],[143.702698,74.936974],[143.55719,74.901665],[142.933136,74.872803],[142.431854,74.807526],[142.00383,74.925919],[142.260605,75]]],[[[137.32103,71.494247],[137.385635,71.586555],[137.971054,71.56958],[138.027451,71.497581],[137.76506,71.40361],[137.32103,71.494247]]],[[[138.193893,55],[138.112076,54.992138],[137.995697,54.910473],[138.01506,54.803833],[137.953247,54.747917],[137.734726,54.638832],[137.671387,54.639999],[137.490387,54.856693],[137.262894,54.753529],[137.279663,54.851917],[137.487915,55.039612],[137.557327,55.180946],[137.884781,55.125668],[138.193893,55]]],[[[139.849274,73.430969],[140.373032,73.441498],[140.620285,73.513809],[140.810364,73.622498],[140.901169,73.743057],[141.165115,73.865891],[141.309189,73.842308],[141.860916,73.909111],[142.090271,73.917526],[142.525528,73.845779],[143.272446,73.627251],[143.600693,73.441254],[143.499084,73.348526],[143.568024,73.238892],[143.27298,73.179497],[142.77414,73.232002],[142.49231,73.225334],[141.63269,73.293777],[140.891281,73.418915],[140.391159,73.409836],[139.988251,73.341553],[139.849274,73.430969]]],[[[140.288086,74.236191],[140.854187,74.274414],[141.124939,74.203087],[141.070663,74.018333],[140.525391,73.907448],[140.203034,74.074112],[140.288086,74.236191]]],[[[143.256668,52.595112],[143.116363,52.358196],[143.168472,52.307083],[143.134277,52.161221],[143.092728,52.120724],[143.142715,51.976971],[143.141662,51.875637],[143.237076,51.849918],[143.296829,51.751389],[143.245117,51.687279],[143.202942,51.511417],[143.40239,51.560112],[143.467026,51.362026],[143.453644,51.300194],[143.525726,51.224304],[143.607422,50.976917],[143.69545,50.653137],[143.718674,50.494556],[143.787415,50.318832],[143.995499,50.012196],[143.99411,49.968445],[144.124863,49.741333],[144.146255,49.604557],[144.238968,49.508335],[144.219162,49.426304],[144.285385,49.249279],[144.404831,49.029251],[144.659577,48.889694],[144.579559,48.871613],[144.433335,49.001778],[144.278534,49.082165],[144.135895,49.223278],[143.853104,49.296001],[143.581497,49.319584],[143.320007,49.295361],[143.12172,49.227139],[142.965942,49.104778],[142.947784,49.016499],[142.969971,48.882832],[142.813889,48.667915],[142.55217,48.068779],[142.524719,47.892361],[142.571503,47.677361],[142.7323,47.465473],[142.947617,47.349861],[143.023529,47.254055],[143.02597,47.075085],[143.118057,46.890556],[143.295914,46.798779],[143.483948,46.81414],[143.567886,46.296249],[143.42453,46.199944],[143.336365,46.382473],[143.334854,46.468388],[143.151779,46.601471],[143.065445,46.591141],[142.90358,46.620529],[142.801132,46.596779],[142.731781,46.734665],[142.575699,46.710999],[142.459442,46.645748],[142.256088,46.282276],[142.190308,46.038918],[142.041946,45.919861],[141.921921,46.043026],[141.933273,46.099529],[141.887161,46.316891],[141.82431,46.476723],[141.848618,46.621639],[141.921921,46.8125],[141.988754,46.900749],[142.053772,47.064945],[142.059479,47.165417],[141.972382,47.307251],[142.001923,47.358196],[141.960251,47.526749],[141.969116,47.619083],[142.069305,47.773613],[142.100006,47.870609],[142.192841,47.94661],[142.14003,48.328278],[141.868835,48.676666],[141.8423,48.769611],[141.972473,48.875805],[142.087219,49.217834],[142.070282,49.354473],[142.123215,49.449001],[142.156967,49.808777],[142.126053,49.888416],[142.166916,50.141388],[142.145691,50.363083],[142.040161,50.551529],[142.115967,50.890499],[142.235199,51.01136],[142.24942,51.146584],[142.062439,51.42889],[142.076645,51.471474],[141.762085,51.701363],[141.824188,51.741165],[141.758163,51.843445],[141.637527,51.87711],[141.680695,51.96925],[141.626969,52.070946],[141.67984,52.179417],[141.623383,52.319248],[141.648163,52.389946],[141.761444,52.462055],[141.821396,52.554585],[141.813339,52.721085],[141.919861,53.051861],[141.841644,53.13625],[141.753281,53.366444],[141.85997,53.428722],[142.162033,53.518528],[142.238754,53.494278],[142.259171,53.361221],[142.457886,53.372223],[142.590302,53.55864],[142.490952,53.558945],[142.486771,53.657665],[142.590607,53.725777],[142.689941,53.877918],[142.683502,53.948139],[142.419281,54.145889],[142.33522,54.259777],[142.546646,54.279499],[142.669311,54.360168],[142.783554,54.298],[142.965363,54.141193],[142.993393,54.078835],[142.901718,53.983917],[142.882919,53.888584],[142.940506,53.733612],[143.052673,53.528999],[143.047058,53.434528],[143.158523,53.38372],[143.256271,53.164944],[143.130478,53.209835],[143.174088,53.311554],[143.089478,53.346611],[143.028534,53.261002],[143.164948,52.929306],[143.326309,52.838806],[143.31694,52.600361],[143.256668,52.595112]]],[[[150,74.80275],[149.235886,74.731163],[148.726975,74.735725],[148.227615,74.775444],[147.70639,74.949585],[147.103668,75.013779],[146.751144,75.108528],[146.178222,75.214226],[146.314499,75.274307],[146.241562,75.389084],[146.376144,75.444641],[146.401672,75.544052],[146.761337,75.50972],[146.659973,75.430916],[146.8078,75.349831],[147.168503,75.322472],[147.37059,75.413582],[147.631164,75.44278],[148.02359,75.39286],[148.400452,75.404251],[148.578552,75.373024],[148.585831,75.214722],[148.8013,75.196976],[149.336563,75.264336],[150.273193,75.182137],[150.540283,75.095642],[150.983063,75.131691],[150.696198,74.99736],[150.66658,74.866585],[150,74.80275]]],[[[149.197189,76.632774],[148.854614,76.723946],[149.187271,76.742302],[149.197189,76.632774]]],[[[150,45.820137],[149.939697,45.812248],[149.684585,45.619057],[149.547745,45.569248],[149.447998,45.589085],[149.685608,45.849804],[149.811752,45.864723],[149.888641,45.955418],[150.062561,46.088585],[150.195557,46.103332],[150.189911,46.157528],[150.356979,46.225388],[150.468048,46.200832],[150.424393,46.12886],[150.232971,46.020138],[150.206024,45.942081],[150,45.820137]]],[[[154.847946,49.350918],[154.810806,49.283306],[154.623245,49.278557],[154.610947,49.358223],[154.780304,49.594055],[154.905411,49.603138],[154.813828,49.468029],[154.847946,49.350918]]],[[[155.398468,50],[155.362808,50.048721],[155.211105,50.070446],[155.260895,50.153332],[155.236618,50.306026],[155.37059,50.292999],[155.412857,50.348862],[155.635529,50.375973],[155.7332,50.439499],[155.831833,50.563221],[155.852356,50.643776],[155.97792,50.745804],[156.144333,50.753639],[156.121506,50.661083],[156.165299,50.511055],[156.052414,50.476112],[156.022949,50.398083],[155.88977,50.247581],[155.765915,50.181221],[155.615891,50.186695],[155.46431,50.104221],[155.398468,50]]],[[[155.671387,50.851028],[155.519364,50.813026],[155.453003,50.884277],[155.530914,50.924027],[155.652588,50.908249],[155.671387,50.851028]]],[[[156.405914,50.640362],[156.274582,50.637417],[156.169632,50.703361],[156.201309,50.755585],[156.387604,50.853249],[156.497757,50.847],[156.5103,50.766251],[156.405914,50.640362]]],[[[163.430771,58.553001],[163.54509,58.567722],[163.748993,58.763138],[163.777252,58.88475],[163.928757,58.995224],[164.317535,59.107666],[164.564774,59.228195],[164.751495,59.028751],[164.655716,58.87014],[164.467438,58.865665],[164.205444,58.815887],[163.888061,58.699917],[163.599503,58.573891],[163.430771,58.553001]]],[[[166.660645,54.665749],[166.565033,54.713001],[166.480393,54.820137],[166.375702,54.817307],[166.165421,54.94714],[166.057388,55.065109],[166.065506,55.113304],[165.929245,55.230278],[165.691223,55.292168],[165.903854,55.375889],[166.171951,55.327278],[166.208725,55.210888],[166.431976,54.949638],[166.630142,54.857777],[166.660645,54.665749]]],[[[168,54.52811],[167.792969,54.641499],[167.69191,54.661499],[167.454132,54.803196],[167.46431,54.85928],[167.676498,54.773277],[167.82608,54.682026],[168,54.52811]]],[[[168.50534,69.999107],[168.962356,69.909027],[169.416031,69.860611],[169.45842,69.810219],[169.273697,69.707916],[169.310394,69.658249],[169.215134,69.554031],[168.96994,69.552055],[168.379745,69.630249],[168.074341,69.746086],[167.781784,69.80397],[167.916336,69.910721],[168.262665,70.01297],[168.50534,69.999107]]],[[[180,71.528137],[180,71],[180,70.974724],[179.583939,70.866249],[179.234497,70.874748],[178.829285,70.790665],[178.640808,70.970802],[178.612076,71.074028],[178.877808,71.21553],[179.159912,71.273636],[179.438782,71.404053],[179.728668,71.442192],[180,71.528137]]],[[[116.7252,49.855546],[116.606697,49.940334],[116.44767,49.963028],[116.20517,50.031723],[116.02597,49.998333],[115.720947,49.884583],[115.374641,49.907833],[115.237915,49.979389],[115.004059,50.177387],[114.672249,50.256248],[114.507248,50.23711],[114.349053,50.282917],[114.034416,50.185638],[113.868805,50.08461],[113.795555,50.094082],[113.230247,49.834946],[113.186333,49.800861],[113.087418,49.608139],[112.966141,49.586529],[112.716309,49.491833],[112.513168,49.546471],[112.110886,49.431278],[111.934502,49.395527],[111.662475,49.396305],[111.501892,49.34375],[111.392303,49.373112],[111.16983,49.300335],[110.992248,49.19986],[110.766281,49.145111],[110.596252,49.162083],[110.399475,49.258415],[110.234108,49.165112],[109.70153,49.231609],[109.571083,49.222584],[109.489472,49.285],[109.329109,49.341499],[109.184471,49.360279],[109.042473,49.336113],[108.9655,49.359444],[108.55558,49.334332],[108.368141,49.442917],[108.284225,49.528751],[108.151527,49.55489],[107.958885,49.667],[107.946999,49.855473],[107.75322,49.980583],[107.704475,49.956085],[107.254669,49.992554],[107.130753,50.026917],[106.9245,50.247471],[106.757889,50.321415],[106.507774,50.342472],[106.279198,50.295696],[106.09214,50.351028],[106.080055,50.393833],[105.842941,50.430527],[105.611832,50.432362],[105.387695,50.479221],[105.286804,50.468029],[105.151863,50.400028],[104.911781,50.388416],[104.589142,50.313583],[104.405113,50.305],[104.250946,50.201889],[104.060997,50.154362],[103.854805,50.202862],[103.757553,50.194054],[103.690476,50.137249],[103.475113,50.205223],[103.287224,50.219139],[103.204613,50.312695],[102.980721,50.304279],[102.824608,50.378612],[102.642113,50.429417],[102.505165,50.540859],[102.32061,50.584084],[102.293198,50.650276],[102.355057,50.750252],[102.240692,50.818474],[102.266892,50.965527],[102.201637,51.059334],[102.151253,51.264],[102.208641,51.329445],[102.068779,51.39711],[101.641998,51.456612],[101.541275,51.503166],[101.347916,51.47039],[101.258636,51.539417],[101.160919,51.542305],[100.94339,51.626251],[100.51564,51.750389],[100.447586,51.740444],[100.124641,51.760502],[99.993469,51.753307],[99.833084,51.823807],[99.770615,51.881748],[99.294777,51.975224],[99.273171,52.020111],[99.048531,52.071972],[98.953697,52.147888],[98.871445,52.129223],[98.852608,52.041027],[98.696304,51.820362],[98.315224,51.717834],[98.240524,51.566612],[98.234253,51.462223],[98.048195,51.437889],[97.944885,51.322861],[97.941307,51.207943],[97.867668,51.045471],[97.867279,50.949806],[98.012863,50.874138],[97.955025,50.78186],[98.048859,50.652805],[98.132637,50.59639],[98.32447,50.538971],[98.256668,50.411056],[98.278053,50.311974],[98.116165,50.103943],[97.862724,49.947887],[97.765526,49.984249],[97.42997,49.788113],[97.316193,49.757389],[97.193726,49.774696],[97.002976,49.914501],[96.839447,49.943584],[96.716919,49.90786],[96.611748,49.981998],[96.408279,49.902306],[96.302002,49.987141],[96.095802,50.019474],[95.973778,49.979752],[95.818497,50.038528],[95.723969,49.961918],[95.477806,49.922359],[95.334137,49.951443],[95.129555,49.948917],[94.991302,50.05336],[94.819084,50.060139],[94.608803,50.038723],[94.51078,50.169445],[94.398865,50.234112],[94.348641,50.464806],[94.303413,50.552055],[94.223663,50.582722],[93.956802,50.591221],[93.669723,50.577835],[93.402748,50.585472],[93.104027,50.566807],[92.982445,50.658196],[93.032997,50.762943],[92.843887,50.794109],[92.748024,50.709332],[92.607086,50.715527],[92.602608,50.766861],[92.471138,50.776749],[92.400665,50.882889],[92.325302,50.88636],[92.305084,50.744141],[92.195778,50.684834],[92.022835,50.683529],[91.883919,50.730415],[91.756638,50.720417],[91.662781,50.666832],[91.657944,50.583832],[91.446441,50.549641],[91.444305,50.465389],[91.25708,50.48439],[91.139275,50.45789],[90.737724,50.487915],[90.66803,50.336777],[90.775002,50.288471],[90.662529,50.163555],[90.542168,50.177555],[90.368225,50.144417],[90.287552,50.032307],[90.086723,50.037613],[89.90078,49.984554],[89.753082,49.99836],[89.62072,49.973999],[89.636719,49.831749],[89.738526,49.794498],[89.681831,49.709721],[89.444725,49.658833],[89.369698,49.595943],[89.223526,49.646332],[89.226639,49.559193],[89.099502,49.499779],[88.96386,49.484612],[88.891113,49.555805],[88.81514,49.466194],[88.679001,49.474998],[88.649971,49.520084],[88.445274,49.48011],[88.339836,49.508057],[88.223221,49.489861],[88.102974,49.365528],[88.196777,49.287334],[88.055275,49.266361],[87.994331,49.186359],[87.831294,49.148277],[87.793078,49.18234],[87.5056,49.142816],[87.436643,49.075253],[87.327073,49.108139],[87.321534,49.109083],[87.308777,49.125389],[87.281387,49.202778],[87.17189,49.251751],[87.047112,49.254696],[86.902001,49.350777],[86.908775,49.414165],[86.821442,49.444527],[86.796059,49.547554],[86.634163,49.581665],[86.617996,49.631638],[86.783417,49.710999],[86.803223,49.803165],[86.623611,49.773167],[86.426499,49.638695],[86.25003,49.587807],[86.155441,49.500832],[85.979668,49.486168],[85.931335,49.552418],[85.651276,49.561165],[85.604721,49.605667],[85.287941,49.588028],[85.212303,49.626804],[85.196525,49.73761],[85.104774,49.874722],[84.981026,49.920807],[84.998024,50.056084],[84.834221,50.096695],[84.650001,50.212696],[84.465859,50.245918],[84.329887,50.225887],[84.262558,50.269665],[84.21125,50.471443],[84.218887,50.532276],[83.939445,50.741749],[83.964081,50.786556],[83.832306,50.874695],[83.694054,50.90036],[83.640999,50.947723],[83.490723,50.95575],[83.382141,51.001167],[83.120804,51.019749],[83.076752,50.95303],[82.952225,50.893696],[82.764114,50.937752],[82.722504,50.842472],[82.568695,50.759029],[82.471969,50.746166],[82.309418,50.773945],[82.177803,50.738277],[82.007698,50.799721],[81.882446,50.810974],[81.593002,50.753113],[81.479195,50.820805],[81.403809,50.982334],[81.074303,50.945415],[81.157524,51.187721],[81.069252,51.172028],[80.922142,51.254082],[80.682419,51.30814],[80.622444,51.206944],[80.440888,51.205833],[80.474441,51.10125],[80.468834,50.974445],[80.250999,50.927055],[80.192642,50.832027],[80.091972,50.831696],[79.968498,50.891056],[79.610863,51.364334],[79.094414,52.031471],[78.624725,52.545582],[78.249947,52.95425],[77.911529,53.278526],[77.570335,53.480946],[76.762031,53.869141],[76.583832,53.967751],[76.426697,54.168167],[76.748642,54.160362],[76.842529,54.234585],[76.912971,54.457863],[76.745163,54.419724],[76.651779,54.346359],[76.504112,54.326805],[76.234024,54.356056],[76.227303,54.274334],[75.600861,54.105057],[75.40725,54.085194],[75.463585,53.978332],[75.039391,53.791],[74.803169,53.815918],[74.758469,53.732388],[74.641281,53.667],[74.471863,53.683666],[74.484833,53.580055],[74.403946,53.461082],[74.15139,53.551109],[74.07447,53.625526],[73.903359,53.648445],[73.833695,53.586304],[73.674888,53.624332],[73.649414,53.559277],[73.448974,53.444805],[73.400802,53.531639],[73.245972,53.575249],[73.329475,53.687916],[73.347557,53.792805],[73.456169,53.813526],[73.474335,53.882862],[73.691307,53.86211],[73.750359,54.054333],[73.631363,54.042362],[73.28933,53.953335],[73.084389,53.990501],[72.98114,54.098305],[72.600944,54.133999],[72.519753,54.050083],[72.554138,53.989582],[72.493362,53.913807],[72.377525,53.953304],[72.418137,54.149529],[72.298531,54.195641],[72.263275,54.320026],[72.177223,54.358749],[72.082169,54.235889],[71.767113,54.248554],[71.746559,54.138527],[71.655639,54.102695],[71.524918,54.108639],[71.49147,54.159363],[71.354027,54.183498],[71.210388,54.110889],[71.072998,54.216084],[71.092972,54.277111],[71.226112,54.362915],[71.198914,54.585278],[71.297165,54.665474],[71.136887,54.708248],[70.966469,54.874554],[70.961166,54.997112],[71.018082,55.10014],[70.944832,55.131943],[70.820198,55.297974],[70.647697,55.262779],[70.471031,55.280582],[70.411469,55.209167],[70.228584,55.136333],[69.919609,55.21561],[69.831497,55.302387],[69.668053,55.342945],[69.330192,55.362583],[69.185692,55.339195],[69.139725,55.389252],[68.92025,55.428917],[69.010361,55.309082],[68.81414,55.352974],[68.557442,55.200974],[68.176918,55.182304],[68.285278,55.064445],[68.102165,54.917694],[67.884392,54.978584],[67.752334,54.878723],[67.552528,54.83836],[67.380669,54.850388],[67.048447,54.774166],[66.951919,54.778694],[66.405441,54.696835],[66.020058,54.618084],[65.970726,54.692249],[65.832497,54.688389],[65.74189,54.602974],[65.501304,54.651165],[65.446083,54.570137],[65.357803,54.580891],[65.200775,54.524582],[65.240196,54.367474],[65.120781,54.337776],[64.977943,54.419613],[64.732803,54.356667],[64.597054,54.374889],[64.030747,54.281502],[63.880417,54.285862],[63.478695,54.203835],[63.168335,54.192444],[63.161778,54.126751],[63.062137,54.100418],[62.851334,54.112335],[62.454082,53.925945],[62.346054,54.035778],[62.08839,54.057861],[62.042221,53.970638],[61.949585,53.945778],[61.73761,54.029362],[61.58147,53.995388],[61.461056,54.083973],[61.331333,54.079777],[61.275722,53.984806],[61.027721,53.951889],[61.218334,53.815887],[61.110806,53.71611],[60.918304,53.6175],[61.174583,53.568638],[61.558334,53.575668],[61.581333,53.501167],[61.483639,53.462112],[61.303696,53.507999],[61.163418,53.39286],[61.185082,53.296944],[61.39761,53.267918],[61.465248,53.224556],[61.612141,53.216026],[61.669639,53.25264],[61.801361,53.161667],[62.112972,53.117584],[62.13961,53.006527],[62.010334,52.952389],[61.895279,53.011307],[61.717278,52.998054],[61.660194,52.961418],[61.462029,53.035805],[61.373638,52.987446],[61.239193,53.032585],[61.071945,52.921696],[60.852612,52.834667],[60.823612,52.762722],[60.71925,52.742332],[60.722557,52.632389],[60.843555,52.619694],[60.845722,52.527168],[60.981666,52.483891],[60.972279,52.418446],[61.070167,52.33461],[60.964306,52.273613],[60.797249,52.232193],[60.724251,52.169445],[60.484806,52.144333],[60.298,52.05439],[60.2715,52.012333],[60.010502,51.989029],[60.071056,51.858307],[60.180862,51.903557],[60.403805,51.813526],[60.519417,51.798557],[60.356224,51.688499],[60.435249,51.630943],[60.598557,51.615196],[60.90514,51.614113],[61.002724,51.465111],[61.510502,51.41386],[61.552696,51.340332],[61.676334,51.264805],[61.579834,51.232029],[61.450833,50.807304],[61.007973,50.686085],[60.827915,50.660999],[60.354915,50.679359],[60.069,50.865582],[60.00375,50.828972],[59.832722,50.584305],[59.531334,50.514473],[59.442001,50.635082],[59.286304,50.634666],[59.028332,50.700249],[58.84689,50.727112],[58.776249,50.805222],[58.605835,50.831471],[58.507389,50.981083],[58.490807,51.081501],[58.357334,51.090752],[58.25,51.149029],[58.170361,51.067722],[57.756584,51.104084],[57.739776,50.931973],[57.580002,50.922554],[57.493526,50.879334],[57.315529,50.939888],[57.293945,51.029804],[57.105057,51.071835],[56.906834,51.048695],[56.73914,50.969833],[56.633083,50.993195],[56.513168,51.066971],[56.4245,51.044834],[56.442307,50.969891],[56.38364,50.926029],[56.173916,50.918583],[56.132889,50.721668],[55.709446,50.55825],[55.499085,50.646526],[55.354946,50.659943],[55.061112,50.832638],[55,50.905613],[54.711918,50.891499],[54.655388,50.810528],[54.728638,50.634582],[54.625,50.550835],[54.508083,50.540028],[54.425751,50.619362],[54.47311,50.788944],[54.443279,50.872002],[54.315498,50.878613],[54.166027,51.020168],[54.129528,51.118805],[53.90625,51.197109],[53.749916,51.203499],[53.614723,51.292805],[53.570251,51.431641],[53.363529,51.517612],[53.27425,51.491554],[53.148445,51.525471],[52.958222,51.471863],[52.802113,51.504971],[52.545639,51.467361],[52.504276,51.547001],[52.383,51.656807],[52.354305,51.759777],[52.141167,51.667999],[52.037918,51.652863],[51.857334,51.683277],[51.761528,51.602749],[51.793945,51.530666],[51.649113,51.468723],[51.585998,51.533916],[51.42889,51.482582],[51.275638,51.500305],[51.364193,51.576721],[51.358555,51.653332],[51.266777,51.689724],[51.061668,51.667778],[50.889526,51.6805],[50.86264,51.739418],[50.743084,51.764862],[50.716805,51.628445],[50.567638,51.642445],[50.514195,51.601276],[50.46064,51.439335],[50.362251,51.436584],[50.367638,51.340305],[50.220306,51.294277],[49.952278,51.240582],[49.736,51.114723],[49.420502,51.129581],[49.324779,50.989582],[49.410915,50.858418],[49.092972,50.783474],[48.938667,50.658779],[48.824749,50.600334],[48.700527,50.623165],[48.636055,50.542252],[48.716835,50.256027],[48.779388,50.180222],[48.761891,50.101917],[48.877556,50.023361],[48.735001,49.92675],[48.433251,49.837971],[48.216888,49.909363],[48.130165,50.002445],[48.096474,50.091389],[47.816555,50.331306],[47.62389,50.438332],[47.509498,50.456165],[47.319611,50.331779],[47.260918,50.198917],[47.339359,50.105278],[47.22414,49.966362],[47.108665,49.903137],[46.892887,49.839306],[46.859585,49.60825],[46.819889,49.556946],[46.782665,49.332668],[47.021446,49.208889],[47.052833,49.164917],[46.937611,49.003666],[46.7785,48.938526],[46.491859,48.443001],[46.771831,48.356224],[47.113777,48.265499],[47.097111,48.104916],[47.139416,48.039944],[47.017639,48],[47.161862,47.836834],[47.174305,47.76075],[47.371277,47.676918],[47.406666,47.812584],[47.666778,47.747417],[48.05825,47.760639],[48.182304,47.678055],[48.380695,47.433582],[48.60775,47.414471],[48.661388,47.209057],[48.781334,47.010887],[48.970974,46.83514],[49.005333,46.767166],[48.914055,46.693138],[48.751335,46.687862],[48.656971,46.771278],[48.511501,46.733223],[48.480694,46.657665],[48.558693,46.608276],[48.77589,46.535889],[48.816223,46.480167],[49.166805,46.359612],[49.017444,46.208363],[49.027306,46.167694],[48.808918,46.023666],[48.832085,45.951611],[48.738167,45.926445],[48.764168,45.791138],[48.690529,45.788834],[48.62925,45.904472],[48.542111,45.946751],[48.498085,45.869026],[48.360474,45.825916],[48.452305,45.686501],[48.374474,45.596306],[48.276806,45.736862],[48.217888,45.708332],[48.025806,45.692528],[47.941502,45.715668],[47.651054,45.611721],[47.599804,45.563332],[47.583778,45.42086],[47.443001,45.351196],[47.425472,45.229889],[47.295612,45.154362],[47.247749,45.054779],[47.197445,44.840168],[47.154335,44.796112],[47.005165,44.798054],[46.850334,44.681667],[46.796528,44.693359],[46.691002,44.570057],[46.685444,44.458111],[46.8405,44.331612],[46.993668,44.358833],[47.066612,44.255974],[47.141724,44.208946],[47.227001,44.225056],[47.280224,44.116806],[47.379917,44.012695],[47.43,43.885693],[47.523918,43.841751],[47.712891,43.927113],[47.57853,43.709667],[47.501473,43.504471],[47.472916,43.364498],[47.566055,43.329945],[47.472057,43.12936],[47.47089,42.997471],[47.563473,42.958778],[47.710751,42.839916],[47.711418,42.706554],[47.756195,42.636471],[47.893696,42.563389],[47.919723,42.495224],[48.033527,42.367027],[48.117748,42.306862],[48.281361,42.100971],[48.356945,41.949696],[48.533806,41.885029],[48.414249,41.626667],[48.193554,41.50325],[48.051056,41.491196],[47.940945,41.35989],[47.878807,41.219223],[47.719917,41.197445],[47.613667,41.236443],[47.535915,41.207195],[47.478222,41.268055],[47.404915,41.266277],[47.269859,41.318474],[47.22747,41.442276],[47.100945,41.587196],[47.00975,41.556026],[46.895805,41.731583],[46.781166,41.785389],[46.76125,41.853001],[46.576778,41.806557],[46.539749,41.873779],[46.418083,41.90564],[46.226166,42.001804],[46.014832,42.042057],[45.768696,42.125832],[45.60614,42.218971],[45.64072,42.289391],[45.713555,42.290554],[45.772888,42.436333],[45.69561,42.484833],[45.470859,42.555195],[45.349998,42.529026],[45.176529,42.690693],[45.035057,42.701248],[44.87825,42.746918],[44.798195,42.631721],[44.66214,42.750252],[44.523304,42.751167],[44.503471,42.701332],[44.323002,42.713333],[44.209026,42.626751],[44.034721,42.605026],[43.948082,42.558472],[43.770168,42.587666],[43.731388,42.627556],[43.790859,42.750084],[43.64489,42.799862],[43.561695,42.866085],[43.34314,42.889999],[43.192081,42.934444],[43.026611,43.049862],[43.038582,43.09061],[42.893471,43.179085],[42.681721,43.173721],[42.488529,43.206306],[42.439888,43.255749],[42.323891,43.214722],[42.038582,43.196835],[41.878193,43.246082],[41.814751,43.203804],[41.582501,43.23539],[41.42025,43.353111],[41.333168,43.335415],[41.139194,43.394585],[40.948971,43.422112],[40.668777,43.558193],[40.571834,43.516109],[40.282696,43.570999],[40.092304,43.554501],[40.01025,43.383251],[39.911972,43.426556],[39.875667,43.498249],[39.730694,43.568085],[39.684639,43.633278],[39.468723,43.784248],[39.292946,43.944805],[39.14722,44.027916],[38.982693,44.162498],[38.888637,44.183334],[38.792805,44.274887],[38.577221,44.344002],[38.226444,44.405251],[38.06189,44.543446],[37.972637,44.575695],[37.936165,44.650276],[37.847473,44.70311],[37.730026,44.646278],[37.550499,44.67411],[37.386528,44.759804],[37.213611,45.001862],[36.890751,45.104057],[36.736584,45.106751],[36.632862,45.137249],[36.689026,45.221111],[36.981472,45.275391],[36.927639,45.324749],[36.799084,45.301334],[36.758835,45.398861],[36.790054,45.436085],[36.922085,45.425945],[37.058388,45.363056],[37.192665,45.330696],[37.372917,45.325611],[37.57486,45.405472],[37.600529,45.48761],[37.596443,45.63839],[37.852417,45.781334],[37.922748,45.978554],[37.970306,46.028946],[38.14814,46.037613],[38.289585,46.261196],[38.09425,46.396694],[37.904251,46.411999],[37.737694,46.677639],[37.908028,46.632389],[38.038944,46.636444],[38.136223,46.688915],[38.300388,46.690556],[38.499249,46.639637],[38.604584,46.67897],[38.418141,46.811832],[38.498859,46.875057],[38.721611,46.871807],[38.858082,46.913139],[39.104584,47.033806],[39.300472,47.019917],[39.314251,47.060612],[39.220779,47.19989],[39.201389,47.284668],[39.090862,47.289696],[38.943359,47.256332],[38.861721,47.173527],[38.579224,47.140167],[38.460999,47.147305],[38.23436,47.11536],[38.245888,47.228359],[38.334221,47.253029],[38.298306,47.375915],[38.290527,47.520195],[38.371613,47.611084],[38.605526,47.63789],[38.675141,47.696804],[38.764778,47.684139],[38.83939,47.854137],[39.03825,47.865028],[39.126221,47.839695],[39.379444,47.875832],[39.52961,47.82914],[39.747666,47.82975],[39.82064,47.958195],[39.818943,48.049057],[40.014889,48.266582],[39.940777,48.386776],[39.851891,48.472111],[39.850056,48.570805],[39.681026,48.593193],[39.72039,48.731834],[39.800362,48.837776],[40,48.794582],[40.070889,48.867001],[39.949638,48.905472],[39.820389,48.895916],[39.669166,49.04464],[39.941471,49.059055],[40.033417,49.181],[40.200333,49.270584],[40.164444,49.394028],[40.098721,49.439693],[40.07011,49.532028],[40.20739,49.563137],[40.142361,49.619415],[39.802555,49.574749],[39.64275,49.639946],[39.611668,49.739971],[39.459835,49.763584],[39.282276,49.761639],[39.164001,49.878029],[39.082584,49.819557],[38.946694,49.811085],[38.612526,49.985916],[38.538193,49.967445],[38.366501,50.002945],[38.35025,50.07439],[38.206417,50.080334],[38.195194,49.952],[38.029388,49.920528],[37.910862,50.045944],[37.761391,50.091972],[37.625305,50.221027],[37.649113,50.286861],[37.481304,50.37114],[37.493137,50.429001],[37.343277,50.425415],[37.174946,50.355221],[36.931946,50.353748],[36.729442,50.292946],[36.65675,50.237526],[36.452835,50.334026],[36.315388,50.294029],[36.231083,50.418694],[36.086723,50.456249],[35.859974,50.43486],[35.724472,50.368168],[35.617916,50.378471],[35.588749,50.459362],[35.509193,50.481777],[35.408443,50.590752],[35.494278,50.668751],[35.489971,50.775139],[35.423443,50.80061],[35.3195,51.071999],[35.167389,51.081974],[35.128029,51.221863],[34.962834,51.235168],[34.822224,51.176807],[34.726139,51.175972],[34.656139,51.247112],[34.457333,51.240891],[34.377251,51.267834],[34.341416,51.354332],[34.224472,51.405861],[34.302307,51.505112],[34.151722,51.689278],[34.438667,51.727249],[34.409138,51.838085],[34.264999,51.855083],[34.258,51.909862],[34.138668,51.969696],[34.076332,52.070389],[34.12925,52.140167],[34.021416,52.193333],[33.814499,52.362915],[33.706276,52.357387],[33.545887,52.302307],[33.380916,52.367249],[33.201248,52.369362],[32.905499,52.243805],[32.706306,52.254639],[32.539417,52.326668],[32.388027,52.33511],[32.396137,52.260971],[32.296276,52.104443],[31.974083,52.025612],[31.937334,52.090084],[31.796806,52.107361],[31.712028,52.274918],[31.609112,52.319973],[31.635944,52.405472],[31.572027,52.48811],[31.609833,52.531361],[31.52339,52.802307],[31.389278,52.929112],[31.328167,53.038555],[31.439501,53.208111],[31.755362,53.191502],[31.827639,53.118584],[32.155388,53.078999],[32.307861,53.12936],[32.512611,53.269054],[32.728779,53.327221],[32.761002,53.46339],[32.663277,53.464668],[32.479668,53.552223],[32.439751,53.662777],[32.275391,53.776333],[32.131443,53.815418],[31.904499,53.781776],[31.795334,53.808193],[31.893168,54.03775],[31.553862,54.1395],[31.323334,54.256668],[31.304167,54.363693],[31.236889,54.465195],[31.087944,54.50161],[31.216278,54.638668],[31.100529,54.664806],[30.760027,54.807693],[30.840805,54.908001],[30.943777,54.95961],[31.026028,55.068222],[30.984417,55.18689],[30.840056,55.338028],[30.928612,55.38475],[30.956499,55.493832],[30.939945,55.616612],[30.760973,55.603333],[30.615305,55.739887],[30.201222,55.86525],[30.100695,55.834946],[30.013056,55.878056],[29.812221,55.792389],[29.602722,55.768528],[29.501304,55.701248],[29.372333,55.752666],[29.425638,55.964359],[29.229195,55.987583],[29.103945,56.055363],[28.851,55.972],[28.737749,55.966862],[28.676195,56.091305],[28.402167,56.104557],[28.298027,56.068417],[28.151333,56.165806],[28.241139,56.275555],[28.164862,56.380085],[28.184334,56.441112],[28.039778,56.595055],[27.98325,56.708057],[27.920473,56.736057],[27.971806,56.823776],[27.846333,56.875668],[27.708778,56.855],[27.726862,57.099609],[27.821472,57.159668],[27.839445,57.316582],[27.539612,57.434193],[27.512751,57.541054],[27.322111,57.548389],[27.501305,57.792557],[27.559473,57.830502],[27.826889,57.858501],[27.625334,58.005665],[27.614889,58.079193],[27.490667,58.218498],[27.437055,58.380474],[27.476723,58.648224],[27.548166,58.861668],[27.742027,58.998028],[27.808445,59.129696],[27.970722,59.27486],[28.117361,59.294224],[28.195778,59.400696],[28.048889,59.470806],[28.098167,59.60186],[28.011417,59.696335],[28.126055,59.796333],[28.24,59.680889],[28.431305,59.676666],[28.485834,59.834221],[28.725,59.777111],[28.988527,59.814529],[29.130388,59.987362],[29.334972,59.980167],[29.742584,59.930916],[30.028944,59.862251],[30.182444,59.886944],[30.211305,59.992832],[29.971666,60.010307],[29.930111,60.14389],[29.615639,60.198307],[29.453806,60.16497],[29.144333,60.161724],[29.03439,60.180332],[28.944723,60.268391],[28.598833,60.370499],[28.574583,60.424805],[28.708779,60.476528],[28.641333,60.704861],[28.402222,60.647388],[28.355583,60.596863],[28.154833,60.514],[27.870501,60.516445],[27.801805,60.549389],[28.111918,60.733166],[28.527666,60.953278],[28.655722,60.952721],[28.828861,61.125832],[29.245556,61.273418],[29.490944,61.44614],[29.628973,61.497696],[29.876833,61.687721],[30.718805,62.212891],[31.229834,62.507057],[31.3745,62.662693],[31.435028,62.780251],[31.580944,62.908028],[31.504528,62.998554],[31.258556,63.135639],[31.231251,63.225834],[30.790861,63.404556],[30.505139,63.461861],[29.980944,63.754471],[30.239805,63.818279],[30.526167,64.04908],[30.550306,64.125893],[30.484972,64.254913],[30.052999,64.404251],[30.018278,64.591721],[30.143,64.652748],[30.045666,64.792168],[29.754417,64.788055],[29.632694,64.890167],[29.622833,65.059166],[29.822889,65.140419],[29.877583,65.213249],[29.657694,65.227753],[29.61861,65.273392],[29.768583,65.334114],[29.741972,65.46608],[29.881222,65.564087],[29.734417,65.627914],[30.127777,65.734917],[30.064695,65.913391],[29.917528,66.127891],[29.669861,66.291946],[29.476805,66.541748],[29.086277,66.82428],[29.051889,66.976753],[29.540222,67.28772],[29.959168,67.517334],[30.034527,67.669357],[29.694529,67.793747],[29.334667,68.074692],[28.659805,68.195114],[28.450361,68.547668],[28.718416,68.739471],[28.803528,68.874947],[28.43475,68.908417],[28.926945,69.057388],[29.093805,69.032219],[29.258861,69.119804],[29.342112,69.310417],[29.547222,69.315277],[29.83036,69.418663],[29.971138,69.411835],[30.19186,69.535057],[30.152222,69.637108],[30.365778,69.617111],[30.5355,69.541473],[30.820139,69.541664],[30.945555,69.58622],[30.931334,69.686775],[30.835388,69.785225],[31.015833,69.77739],[31.411054,69.710335],[31.688528,69.709587],[31.781555,69.831497],[32.191055,69.921837],[32.667721,69.774834],[32.947304,69.769531],[33.115666,69.724556],[33.090752,69.644249],[32.852028,69.562531],[32.182861,69.632919],[32.185722,69.586052],[32.635529,69.456413],[33.074501,69.44989],[33.237278,69.407059],[33.439056,69.418198],[33.574276,69.292946],[34.195332,69.298859],[34.814861,69.215553],[35.275833,69.193863],[35.237446,69.24617],[35.8055,69.178642],[36.036388,69.115555],[36.682804,68.981415],[37.435333,68.735748],[37.569306,68.718445],[37.985695,68.564331],[38.212833,68.440918],[38.529835,68.308304],[38.641693,68.359474],[39.081085,68.196167],[39.564667,68.037804],[39.844223,68.032165],[40.390751,67.880669],[40.30825,67.824532],[40.412613,67.756691],[40.590889,67.797333],[40.820305,67.715447],[40.965305,67.703308],[41.042416,67.624809],[40.975445,67.464027],[41.110027,67.409279],[41.075222,67.256226],[41.341778,67.196587],[41.292751,67.141724],[41.336582,66.981476],[41.200695,66.817719],[40.594944,66.508499],[40.531834,66.435524],[39.994026,66.250748],[39.462502,66.176552],[39.10675,66.092834],[38.831444,66.088417],[38.675083,66.053581],[38.280109,66.045113],[37.870277,66.081779],[37.120582,66.240669],[36.876915,66.275558],[36.537388,66.279335],[36.023304,66.340057],[35.519859,66.382668],[34.829418,66.597969],[34.496223,66.535583],[34.396305,66.647362],[34.14428,66.687721],[33.962387,66.681305],[33.701752,66.79789],[33.427776,66.739166],[32.990082,66.89814],[32.617416,67.118752],[32.327252,67.153694],[32.328861,67.042084],[32.513527,67.020279],[32.546276,66.873749],[32.956165,66.699974],[33.150082,66.676361],[33.110027,66.606781],[33.314472,66.46711],[33.549084,66.449501],[33.623165,66.4105],[33.510418,66.328804],[33.944363,66.21814],[34.105888,66.223999],[34.521416,66.076691],[34.693165,65.915253],[34.828335,65.883003],[34.644943,65.78228],[34.749195,65.609108],[34.676445,65.438194],[34.405888,65.399361],[34.459946,65.267525],[34.665859,65.175583],[34.681862,65.076721],[34.929306,64.799774],[34.785194,64.741417],[34.967998,64.605469],[34.78125,64.512527],[34.929359,64.49453],[35.139057,64.352303],[35.312584,64.34108],[35.408196,64.286636],[35.701138,64.361443],[36.240002,64.131226],[36.255916,64.01078],[36.659138,63.91111],[37.225887,63.869778],[37.27486,63.805832],[37.446445,63.78511],[37.609917,63.813721],[37.700195,63.901501],[37.877251,63.890667],[38.07811,64],[37.91114,64.233643],[38.005001,64.293137],[37.823666,64.355614],[37.811195,64.427391],[37.480057,64.383392],[37.330776,64.342415],[37.105335,64.411057],[36.707863,64.701164],[36.575863,64.720558],[36.550026,64.897026],[36.809334,64.959808],[36.843777,65.145973],[37.031807,65.164108],[37.67197,65.035027],[37.764915,64.936279],[38.044193,64.853142],[38.370445,64.838913],[37.999916,64.729614],[38.117748,64.678558],[38.316002,64.740723],[38.643028,64.762306],[38.883389,64.741386],[39.117279,64.666138],[39.287834,64.649025],[39.513138,64.553169],[39.698555,64.549805],[39.903557,64.634865],[40.08522,64.608475],[40.155167,64.550468],[40.519527,64.525192],[40.418556,64.692276],[40.394222,64.924416],[40.314335,65.003555],[40.108002,65.07103],[39.900749,65.237305],[39.722637,65.33889],[39.718361,65.493752],[39.883221,65.635445],[40.185417,65.696945],[40.476112,65.805222],[40.644417,65.931053],[40.791805,65.992943],[41.27264,66.049164],[41.497696,66.111191],[41.94989,66.332191],[42.101528,66.483665],[42.311611,66.510445],[42.592724,66.440247],[42.655613,66.394554],[43.17825,66.411415],[43.360279,66.323555],[43.571056,66.297997],[43.959694,66.09922],[44.07225,66.17511],[44.113251,66.303055],[44.488388,66.665276],[44.360943,66.783058],[44.487667,66.832001],[44.398583,66.986191],[44.148472,67.135414],[43.878834,67.148834],[43.769501,67.193306],[43.804669,67.348137],[43.896862,67.480782],[44.168862,67.752525],[44.107029,67.835136],[44.228332,68.036026],[44.220585,68.277275],[44.009304,68.387253],[43.550304,68.523308],[43.251221,68.649414],[43.444473,68.672447],[44.102974,68.532059],[44.699696,68.540665],[45.475388,68.505722],[45.867695,68.416748],[46.316307,68.180496],[46.495529,68.136864],[46.561474,67.996864],[46.683029,67.903641],[46.674946,67.81311],[46.317696,67.822083],[45.856724,67.753975],[45.517224,67.746666],[45.327252,67.69175],[45.302139,67.574219],[45.145363,67.562058],[44.945526,67.457527],[44.913029,67.323914],[45.1605,67.247475],[45.569389,67.164917],[45.600971,67.080582],[45.809277,66.90197],[46.04314,66.824196],[46.556473,66.82972],[47.061748,66.854858],[47.390915,66.924362],[47.575832,66.909081],[47.743973,67.012726],[47.756668,67.142609],[47.675999,67.19561],[47.797668,67.256386],[47.778446,67.344696],[47.921528,67.474113],[47.851917,67.586609],[48.015278,67.639389],[48.139473,67.615692],[48.324943,67.656975],[48.462029,67.63842],[48.73761,67.715775],[48.750252,67.852249],[49.160389,67.852669],[49.526222,67.941696],[50.058388,68.100029],[50.802112,68.365837],[50.876335,68.341774],[51.293499,68.383003],[51.580723,68.483971],[52.158138,68.503914],[52.322109,68.427391],[52.165333,68.364197],[52.298973,68.309692],[52.708084,68.417275],[52.766972,68.473968],[52.558334,68.557419],[52.287529,68.591309],[53.361084,68.882553],[53.875832,68.959526],[54.247391,68.98642],[54.341946,68.94883],[53.674473,68.895165],[54.006,68.830223],[53.886917,68.787003],[53.858276,68.686058],[53.732113,68.597504],[53.889805,68.534058],[53.94978,68.391113],[53.788696,68.334808],[53.683277,68.382774],[53.31564,68.333221],[53.154778,68.219139],[53.684612,68.247864],[53.867416,68.215805],[54.252945,68.224503],[54.476917,68.292358],[54.738834,68.150108],[54.9035,68.165665],[54.965,68.244446],[54.868137,68.297142],[55.016998,68.426529],[55.37011,68.543945],[55.65725,68.545197],[55.94014,68.633469],[56.438137,68.588165],[56.617973,68.617943],[57.047638,68.517471],[57.31414,68.529251],[57.7425,68.770165],[58.410362,68.884224],[58.778278,68.96508],[59.115891,68.983833],[59.053528,68.907471],[59.407501,68.809113],[59.508999,68.708664],[59.257999,68.675056],[59.073223,68.566391],[59.150749,68.511002],[59.165195,68.383499],[59.671306,68.340446],[59.881638,68.386887],[59.947193,68.442139],[59.799557,68.60453],[59.938778,68.703857],[60.072277,68.674583],[60.374584,68.677887],[60.640389,68.749832],[60.934666,68.925888],[60.961582,69.063751],[60.847137,69.145248],[60.632137,69.144775],[60.635944,69.251358],[60.183666,69.550972],[60.345638,69.661392],[60.6255,69.654724],[60.72078,69.799805],[60.853138,69.858253],[61.35286,69.786835],[62.148304,69.730667],[62.677666,69.722694],[62.999695,69.697418],[63.788777,69.587914],[64.384804,69.476555],[64.876335,69.313774],[64.958305,69.25058],[65.133698,69.250053],[65.284195,69.189636],[65.775169,69.106308],[66.403503,68.926888],[66.654472,68.878387],[67.166557,68.815392],[67.067528,68.785774],[67.202637,68.691498],[67.374946,68.661613],[67.697281,68.539917],[67.817085,68.44342],[68.173584,68.386558],[68.276832,68.3125],[68.187889,68.240524],[68.332443,68.169891],[68.512222,68.248192],[68.599503,68.360558],[68.850113,68.540192],[68.994858,68.732803],[69.130608,68.818558],[69.044609,68.938583],[68.710808,68.905807],[68.485947,68.967697],[68.391724,69.056419],[68.115753,69.221107],[68.026108,69.333191],[68.115944,69.367142],[68.044891,69.470253],[67.858719,69.490501],[67.658531,69.574776],[67.391472,69.600471],[67.05603,69.689941],[66.807526,69.702698],[66.887108,69.959663],[67.260971,69.95697],[67.436386,70.028694],[67.127914,70.211609],[67.224999,70.37175],[67.324532,70.439552],[67.208641,70.528198],[67.380776,70.666473],[67.332726,70.78817],[67.181137,70.832527],[66.96064,70.781471],[66.720001,70.767281],[66.647278,70.861443],[66.912971,71.009361],[66.768692,71.106163],[66.959831,71.262886],[67.520447,71.380753],[67.953804,71.505836],[68.263001,71.637642],[68.508942,71.826309],[68.751053,72.243469],[68.812225,72.441559],[68.935524,72.656197],[69.161919,72.761719],[69.315888,72.92247],[69.595863,72.849892],[70.197472,72.879364],[70.717697,72.86483],[71.554832,72.885002],[71.877335,72.829056],[72.63028,72.730751],[72.787415,72.628197],[72.676361,72.590919],[72.766029,72.50103],[72.818527,72.261498],[72.699364,72.205643],[72.686363,72.111969],[72.568611,72.057198],[72.467667,71.87822],[72.349052,71.861275],[72.335724,71.706497],[71.836807,71.487419],[72.033691,71.29258],[72.287171,71.193726],[72.553886,71.151337],[72.653694,71.073975],[72.590416,71.004334],[72.827362,70.871666],[72.713585,70.546333],[72.760834,70.38736],[72.638168,70.371445],[72.407112,70.257278],[72.577583,70.144279],[72.489807,69.988831],[72.661636,69.853226],[72.68325,69.759865],[72.518166,69.631279],[72.686996,69.495613],[72.640358,69.273415],[72.511497,69.204613],[72.487335,69.091721],[72.583443,68.923943],[72.809975,68.797531],[73.130279,68.706223],[73.474724,68.57711],[73.490753,68.462364],[73.429497,68.370697],[73.129891,68.243698],[73.042748,68.07872],[73.188248,67.950333],[73.202248,67.83989],[73.086746,67.79808],[73.122276,67.729637],[72.908364,67.68367],[72.860558,67.618469],[72.603638,67.577499],[72.451248,67.46286],[72.403389,67.305641],[72.161087,67.298279],[72.249832,67.179031],[71.818947,66.949417],[71.322998,66.873192],[71.20192,66.868309],[71.062416,66.807358],[70.871834,66.81633],[70.789192,66.769447],[70.483414,66.730499],[70.315109,66.757698],[70.105805,66.737747],[69.995193,66.803612],[69.656998,66.80983],[69.329697,66.853226],[69.117386,66.905945],[69.068192,66.813889],[69.183304,66.724442],[69.131416,66.616669],[69.386253,66.505165],[69.826553,66.452309],[69.949196,66.388725],[70.390663,66.320442],[71.008248,66.35083],[71.419418,66.336082],[71.723221,66.293251],[71.822029,66.234497],[72.083336,66.222862],[72.251976,66.249664],[72.41964,66.35186],[72.363747,66.506416],[72.477944,66.579697],[72.929611,66.640526],[73.088997,66.735359],[73.505753,66.822693],[73.624085,66.920754],[73.810913,66.967026],[73.966942,67.193085],[73.926636,67.28167],[74.100418,67.412697],[74.708252,67.653694],[74.778778,67.742668],[74.804306,68.012253],[74.590363,68.25161],[74.314614,68.363861],[74.465942,68.531471],[74.439003,68.66275],[74.609863,68.765198],[75.448753,68.905418],[75.639641,68.908386],[76.186584,68.994194],[76.554802,68.987808],[76.639389,68.886498],[76.612221,68.75386],[77.174141,68.564308],[77.250557,68.377197],[77.125694,68.297554],[77.314552,68.232529],[77.189804,68.122139],[77.18792,67.942719],[77.273025,67.884583],[77.087692,67.751419],[77.52636,67.645836],[77.686333,67.571892],[77.652252,67.435776],[78.229111,67.559723],[78.332802,67.521774],[78.579918,67.527031],[78.723305,67.494415],[78.946998,67.587524],[78.5765,67.658028],[78.392525,67.629608],[77.886001,67.681198],[77.783691,67.745972],[77.633858,67.709587],[77.445831,67.759941],[77.500999,67.909386],[77.477775,68.11364],[77.769921,68.229553],[77.991692,68.222969],[78.149246,68.260613],[77.786667,68.516281],[77.718223,68.600754],[77.750114,68.716553],[77.650307,68.883553],[76.944084,69.020248],[76.712998,69.131859],[76.373055,69.160446],[76.112335,69.236137],[75.513496,69.265198],[75.193558,69.16758],[75.164276,69.119308],[74.793251,69.100807],[74.506164,69.151306],[73.891113,69.096359],[73.777832,69.206024],[73.884025,69.320694],[73.910057,69.426224],[73.832748,69.520889],[73.631165,69.62075],[73.543419,69.764664],[73.659752,69.817558],[73.798973,70.056053],[73.693725,70.106499],[74.06897,70.306526],[74.266586,70.454086],[74.313499,70.562141],[74.227554,70.683281],[73.965637,70.809029],[73.927086,70.944054],[73.689858,71.060219],[73.610641,71.176392],[73.312943,71.318336],[72.988586,71.399246],[73.11853,71.479858],[73.421692,71.586723],[73.54953,71.707222],[73.551308,71.803749],[74.528335,71.987473],[74.994331,72.171448],[75.073501,72.287025],[75.065224,72.436226],[74.988747,72.604332],[74.766197,72.794334],[74.967804,72.86853],[75.453636,72.743805],[75.292748,72.708748],[75.632751,72.534637],[75.476082,72.485474],[75.680695,72.261642],[75.508499,72.198639],[75.370247,72.012611],[75.247413,71.924835],[75.216415,71.774803],[75.465363,71.62783],[75.492226,71.515137],[75.202416,71.414169],[75.392059,71.288719],[75.893806,71.197334],[76.31414,71.169029],[76.63311,71.170471],[77.242164,71.136108],[77.417053,71.146858],[77.776108,71.110642],[77.911781,70.96389],[78.324913,70.909531],[78.433365,70.999031],[78.219948,71.102997],[78.276916,71.238586],[77.760528,71.304665],[77.693695,71.258247],[77.296082,71.319054],[77.130195,71.399414],[76.690887,71.460693],[76.329697,71.56147],[76.304085,71.657448],[76.158607,71.747864],[76.055115,71.901642],[76.473137,72.022415],[76.885475,72.055496],[77.359276,71.904915],[77.505859,71.834999],[77.828361,71.811974],[78.109306,71.861557],[78.247055,71.951057],[78.039948,72.089058],[77.735474,72.098389],[77.523941,72.055748],[77.393997,72.10508],[77.506165,72.173668],[77.73375,72.208359],[77.883781,72.309364],[78.098473,72.345497],[78.357834,72.314941],[78.509613,72.379974],[79.470276,72.345192],[79.899529,72.20742],[80.605553,72.099808],[80.74617,72],[81.242584,71.838913],[81.327919,71.746918],[81.663002,71.684303],[82.240524,71.695969],[82.70758,71.757774],[83.220497,71.712418],[83.304802,71.648804],[83.140251,71.555496],[82.97628,71.527527],[83.003975,71.404861],[82.314445,71.274635],[82.235031,71.236725],[82.325531,71.069443],[82.219002,70.95253],[82.414002,70.752861],[82.087387,70.561249],[82.184387,70.284668],[82.361359,70.16497],[82.733643,70.128471],[82.995163,70.023109],[82.993248,69.959251],[83.165169,69.92897],[83.56147,69.716469],[83.971222,69.723724],[84.131973,69.595947],[84.412414,69.56292],[84.551498,69.608887],[84.314056,69.693497],[84.069443,69.71167],[83.702247,69.863304],[83.437943,70.044998],[83.143471,70.080391],[83.150696,70.175888],[82.992226,70.278641],[83.377525,70.309387],[83.592888,70.348442],[83.781998,70.458557],[83.772309,70.527054],[83.601364,70.697525],[83.530281,70.868057],[83.362419,71.028999],[83.225136,71.051414],[83.252777,71.15461],[83.154419,71.233917],[83.324837,71.294418],[83.433998,71.470642],[83.552719,71.494225],[83.651695,71.626778],[83.396721,71.728386],[83.304085,71.83625],[83.046249,71.872582],[82.674698,71.876305],[82.512642,72.028137],[82.299583,72.072945],[82.446083,72.127914],[82.271332,72.245361],[81.647804,72.338692],[81.301109,72.342834],[80.923058,72.41378],[80.780724,72.493553],[80.823891,72.564415],[80.688889,72.656113],[80.696281,72.724419],[80.857559,72.789192],[80.887085,72.917725],[80.801361,73.003723],[80.512558,73.176636],[80.630364,73.253387],[80.358002,73.285446],[80.460945,73.355751],[80.700226,73.419609],[80.507721,73.501419],[80.550583,73.546944],[81.29158,73.56411],[81.664169,73.61647],[82.35672,73.639915],[83.479446,73.633781],[84.401169,73.703583],[84.718864,73.746803],[85.200027,73.693802],[85.494248,73.710556],[85.558365,73.785698],[86.057052,73.846664],[86.787026,73.88736],[87.169281,73.872169],[87.075302,73.965416],[86.707725,74.125526],[86.779976,74.18586],[86.59317,74.244225],[85.962586,74.292664],[85.954086,74.388031],[86.154724,74.389191],[86.457275,74.474693],[86.484474,74.579834],[86.286919,74.619614],[85.761139,74.648445],[86.160919,74.774834],[86.326111,74.788307],[86.652496,74.713776],[87.031135,74.770752],[87.08664,74.861275],[87.30925,74.923195],[87.581886,74.936722],[87.603996,75.029747],[86.876053,75.087471],[87.165665,75.148552],[87.94867,75.108086],[88.29203,75.1875],[88.788193,75.361893],[89.331947,75.457306],[90.032166,75.494392],[90.027168,75.562195],[90.463333,75.581696],[90.709915,75.63414],[91.145836,75.653168],[91.677887,75.636253],[91.850777,75.714226],[92.316696,75.737968],[92.493164,75.777306],[92.990303,75.795555],[93.440781,75.880333],[93.248253,75.961891],[93.433693,76.057281],[93.987587,76.043282],[93.88839,76.109886],[94.310639,76.123947],[94.567024,76.080833],[94.872169,76.152947],[95.273697,76.103806],[95.448891,76.160774],[96.187691,76.0895],[96.1185,75.956558],[96.444504,76.004112],[96.776749,75.88472],[97.152695,75.987198],[97.27108,75.951973],[98.136887,76.071251],[98.047943,76.130386],[98.432976,76.164886],[98.682892,76.227364],[99.368027,76.188141],[99.310753,76.117554],[99.775558,76.130943],[99.294525,76.330109],[99.094643,76.339142],[98.889778,76.455917],[99.027473,76.493362],[99.41703,76.443253],[100.063004,76.457947],[100.322998,76.441887],[100.834053,76.488113],[101.134834,76.548386],[101.290833,76.731888],[101.084526,76.754135],[100.952415,76.841415],[101.096863,76.944809],[101.334725,76.972557],[101.284775,77.04422],[102.165581,77.361809],[103.041946,77.551109],[103.26014,77.635948],[103.675804,77.626831],[104.108086,77.728859],[104.382698,77.668724],[104.811501,77.685608],[104.848808,77.614914],[105.357887,77.55117],[105.846695,77.559914],[106.142304,77.350334],[105.83358,77.358276],[105.417892,77.20092],[104.534752,77.081337],[105.101524,77.055115],[105.874725,77.099052],[106.218414,77.055191],[107.005974,76.993111],[107.305641,76.995087],[107.502052,76.895554],[107.240997,76.795113],[106.79792,76.679497],[106.64103,76.477112],[107.36467,76.520226],[107.711388,76.492836],[107.977585,76.550468],[108.035583,76.733276],[108.686226,76.706085],[109.103691,76.749664],[109.697029,76.754776],[110.132446,76.712608],[110.658111,76.771973],[110.941109,76.736137],[111.722694,76.688225],[111.596916,76.637802],[111.95472,76.581749],[112.264336,76.454887],[112.795944,76.331665],[112.729469,76.237526],[112.910942,76.044357],[113.068252,76.083969],[113.008026,76.242775],[113.305641,76.250916],[113.447525,76.183304],[113.586166,75.927719],[113.903526,75.907112],[113.915306,75.82428],[113.713448,75.617363],[112.838669,75.739525],[112.867531,75.633698],[113.225777,75.66497],[113.375946,75.5205],[113.702721,75.505196],[113.672668,75.311447],[113.50972,75.210388],[112.918694,75.01622],[112.769585,74.94236],[112.194443,74.877998],[111.803581,74.656219],[111.361,74.673248],[111.019859,74.554474],[110.550003,74.484222],[110.163444,74.378914],[109.850754,74.319969],[109.911835,74.221107],[109.522667,74.080414],[109.08017,74.045753],[108.53128,73.786446],[108.21228,73.666054],[107.85408,73.619331],[107.508636,73.61303],[106.952698,73.635445],[107.065224,73.553719],[107.03817,73.475914],[106.878754,73.435692],[106.86039,73.349335],[106.644837,73.294197],[106.301498,73.310303],[106.104195,73.246086],[105.900642,73.07283],[105.913918,73.003723],[105.722221,72.881386],[106.219887,72.96608],[106.200165,73.093002],[106.365891,73.177361],[106.875999,73.123665],[107.139748,73.153832],[107.766998,73.146858],[108.018913,73.216698],[108.406029,73.086777],[108.439087,73.243835],[108.653419,73.312553],[109.417442,73.393364],[109.480782,73.447441],[109.749138,73.430527],[110.099388,73.495003],[110.449531,73.638725],[110.763779,73.655807],[110.889473,73.763527],[110.673553,73.792442],[110.242279,73.683472],[110.098442,73.703331],[109.622665,73.692863],[109.542168,73.821167],[109.840164,73.879364],[109.989082,74.002281],[110.281502,74.020302],[110.5485,73.992416],[110.917305,73.901276],[111.198692,73.946442],[111.298554,73.855553],[111.530304,73.781166],[111.873581,73.726028],[112.334442,73.699532],[112.794586,73.714943],[113.167053,73.86158],[113.455833,73.625916],[113.207947,73.434669],[113.552223,73.326057],[113.898308,73.340279],[113.59922,73.425468],[113.53878,73.500031],[114.248138,73.600975],[114.523224,73.582642],[114.914223,73.604836],[115.319885,73.702194],[115.991608,73.692337],[116.280693,73.655334],[116.515442,73.670975],[117.278999,73.584694],[117.844025,73.566307],[118.018387,73.582779],[118.615059,73.567253],[118.808441,73.537552],[118.970779,73.45742],[118.773941,73.429276],[118.551392,73.46611],[118.413696,73.411781],[118.374695,73.293358],[118.528473,73.17939],[119.114975,73.091804],[119.471275,73.05764],[119.695114,73.001915],[119.883003,73.022331],[120.159027,72.994667],[120.653358,72.981331],[121.120308,72.930695],[121.66172,72.973442],[121.841553,72.946747],[122.265915,72.971138],[122.553581,72.922691],[122.757164,72.965775],[123.316635,72.919029],[123.443108,72.990555],[123.408363,73.053413],[123.645691,73.118385],[123.526444,73.170807],[123.579834,73.270386],[123.384498,73.345139],[123.370667,73.550003],[123.87603,73.621086],[124.480392,73.750252],[124.893143,73.729805],[125.021385,73.619835],[125.364365,73.528694],[125.622749,73.542526],[125.736473,73.433502],[126.430138,73.50428],[126.413864,73.395584],[126.514275,73.367996],[126.97728,73.41861],[127.025253,73.524307],[127.365387,73.514641],[127.476028,73.442337],[127.901779,73.467308],[127.957337,73.405281],[128.193924,73.354698],[128.450104,73.355141],[128.471863,73.238724],[128.873474,73.206223],[128.94017,73.104774],[129.171997,73.11142],[129.574783,72.935608],[129.40741,72.870834],[129.308411,72.718941],[129.535812,72.647919],[129.436554,72.600807],[128.883636,72.580749],[128.820801,72.521553],[128.979248,72.473778],[129.437973,72.438721],[129.556336,72.315887],[129.412003,72.185059],[129.527939,72.110168],[128.996414,72.039947],[128.689804,72.057556],[128.50441,71.958916],[128.678757,71.867226],[128.790863,71.745583],[128.985169,71.723831],[129.276245,71.804443],[129.516449,71.733559],[128.930832,71.681251],[129.06633,71.591415],[129.236359,71.596306],[129.337448,71.522308],[129.478577,71.295113],[129.756561,71.214691],[129.818115,71.129776],[130.173691,71.06942],[130.357605,70.902222],[130.568894,70.899086],[130.66069,70.838448],[130.878082,70.882889],[130.95961,70.747971],[131.197861,70.715942],[131.613831,70.876526],[131.758301,70.981331],[131.770752,71.113029],[132.013382,71.285553],[132.178223,71.560501],[132.344193,71.720108],[132.572891,71.878525],[132.786636,71.912247],[132.782974,71.765083],[132.963867,71.733528],[133.199188,71.581169],[133.546188,71.464363],[134.072144,71.377556],[134.352188,71.358864],[134.714554,71.390419],[134.949966,71.49292],[135.65184,71.624443],[136.033951,71.62561],[136.854919,71.526108],[137.134354,71.413307],[137.540527,71.36367],[137.549561,71.267365],[137.756531,71.274391],[138.018616,71.209641],[138.192413,71.235222],[137.942001,71.362114],[138.084839,71.466835],[138.132004,71.566948],[138.455475,71.580223],[138.856811,71.628998],[139.138779,71.576584],[139.171921,71.421837],[139.445556,71.422668],[139.490646,71.48703],[139.795059,71.446976],[139.999085,71.52253],[139.773498,71.687164],[139.796478,71.768776],[139.712311,71.916748],[139.783783,72.046417],[140.002304,72.167],[139.618607,72.217331],[139.447052,72.142525],[139.208801,72.17453],[139.169174,72.26442],[139.277756,72.35614],[139.617691,72.486664],[140.490524,72.467163],[140.730804,72.49025],[141.23523,72.585724],[140.75409,72.831917],[140.759689,72.88192],[141.312531,72.85453],[141.73909,72.744057],[141.970276,72.721916],[142.683579,72.69825],[143.553467,72.690247],[144.095505,72.660225],[144.829285,72.593887],[145.611832,72.543976],[146.097275,72.484001],[146.815826,72.370247],[147.08609,72.295998],[147.45723,72.327446],[148.466614,72.318001],[149.206162,72.222969],[149.58345,72.149055],[149.95192,72.016251],[150.08284,71.918777],[150.063309,71.828552],[149.707138,71.751472],[149.442856,71.890442],[149.02005,71.712753],[149.464142,71.647057],[149.931274,71.670387],[150.160034,71.60675],[150.290192,71.513664],[150.702591,71.492973],[150.778381,71.357864],[151.108948,71.393776],[151.656967,71.291115],[151.870056,71.123802],[152.139114,70.99514],[151.93042,70.974556],[152.120727,70.895416],[152.56459,70.818947],[152.995422,70.82283],[153.878754,70.880806],[154.355118,70.953026],[155.44577,71.037331],[155.559143,71.062668],[156.170105,71.083946],[156.582474,71.073669],[156.910049,71.090668],[157.341003,71.069862],[158.153107,70.999886],[158.707474,70.923447],[159.132507,70.834778],[159.583527,70.69986],[159.88855,70.542694],[160.11528,70.266197],[159.953385,70.107475],[159.885803,69.973305],[159.69339,69.871445],[159.868973,69.773445],[160.070633,69.713531],[160.981812,69.616531],[160.971329,69.445969],[161.040558,69.261025],[161.175659,69.311226],[161.097198,69.449913],[161.395523,69.530502],[161.366364,69.361778],[161.618088,69.394081],[161.834137,69.497444],[162.042893,69.518059],[162.214279,69.616333],[162.63472,69.660057],[162.884216,69.635613],[163.190048,69.69239],[163.484161,69.670082],[163.854217,69.681419],[164.011063,69.746948],[164.421829,69.610916],[164.902496,69.553307],[165.20108,69.583504],[165.834747,69.561081],[166.238144,69.500504],[166.964035,69.474136],[167.202972,69.545914],[167.75206,69.764],[167.950104,69.707581],[167.963471,69.638557],[168.279892,69.546059],[168.235718,69.286751],[168.355392,69.207916],[168.73703,69.199364],[169.169998,69.083336],[169.412048,69.056862],[169.480637,68.934525],[169.441757,68.858643],[169.635468,68.759918],[170.361496,68.806198],[170.50145,68.86647],[170.864502,68.952164],[171.065857,69.050308],[171.025604,69.14003],[170.896469,69.173943],[170.940415,69.28714],[170.788254,69.380531],[170.789841,69.457001],[170.576752,69.59436],[170.248032,69.575447],[170.256836,69.676636],[170.627274,69.750999],[170.553146,69.905998],[170.615997,70.040108],[170.99173,70.088531],[171.472031,70.050552],[172.009384,69.977776],[172.529724,69.931808],[172.762451,69.964195],[172.837799,69.901192],[173.127273,69.835724],[173.270493,69.906281],[173.489609,69.934975],[173.77269,69.807167],[174.083725,69.866386],[174.260498,69.87133],[174.805451,69.838142],[175.116699,69.837502],[175.814224,69.878113],[176.126831,69.873306],[176.364029,69.757385],[176.890503,69.636971],[177.474671,69.584946],[177.859604,69.488358],[178.287476,69.420692],[178.403274,69.448914],[178.820892,69.386108],[179.419693,69.222969],[180,68.979858],[180,68.800003],[180,67.699997],[180,66.599998],[180,65.5],[180,65.02742],[179.850586,64.988502],[179.533691,64.799805],[179.132965,64.751663],[178.811279,64.64283],[178.764023,64.669136],[178.329254,64.637337],[178.165726,64.668358],[177.71991,64.688225],[177.488327,64.816834],[177.515335,64.905113],[177.280243,64.908142],[177.284866,64.825806],[177.181854,64.762001],[176.9617,64.823196],[176.675949,64.850365],[176.561493,64.795914],[176.221664,64.871391],[176.324966,64.760086],[176.521805,64.66275],[176.876892,64.59314],[177.081863,64.702393],[177.371277,64.746887],[177.533966,64.71508],[177.42244,64.555084],[177.487076,64.420609],[177.813217,64.251663],[178.05809,64.193642],[178.356247,64.328697],[178.667755,63.993973],[178.798355,63.685471],[178.841034,63.483776],[179.098526,63.262054],[179.328995,63.190971],[179.452026,63.107777],[179.266312,62.993668],[179.34816,62.874611],[179.518662,62.860027],[179.628357,62.681499],[179.580368,62.609695],[179.450256,62.572723],[179.364365,62.468666],[179.203217,62.480026],[179.111801,62.414276],[179.172974,62.306751],[178.448776,62.426693],[178.079941,62.520889],[177.562668,62.553028],[177.123856,62.531696],[176.936279,62.504555],[176.544144,62.408028],[176.240997,62.275249],[176,62.247555],[175.572754,62.152111],[175.270218,62.02586],[174.92395,61.946083],[174.60791,61.824501],[174.316696,61.800999],[174.166916,61.835278],[174.030441,61.813221],[174.00531,61.701279],[173.823868,61.669971],[173.638535,61.740223],[173.503052,61.705666],[173.491913,61.541111],[173.363358,61.538277],[173.263336,61.429443],[173.127975,61.386333],[172.909195,61.463554],[172.745392,61.396194],[172.939301,61.337002],[172.972076,61.282002],[172.776505,61.241833],[172.584976,61.163723],[172.440369,61.141029],[172.408142,61.008583],[172.170257,61.024361],[172.220215,60.946667],[172.099548,60.871861],[171.893967,60.817139],[171.719696,60.833805],[171.342255,60.612946],[171.14859,60.547943],[170.848144,60.476082],[170.797943,60.419998],[170.658478,60.409584],[170.701248,60.315666],[170.495911,60.216194],[170.430695,59.969471],[170.291107,59.927612],[170.162247,60.014278],[169.970215,60.069221],[169.874756,60.232361],[169.787308,60.264694],[169.740189,60.395584],[169.421081,60.512917],[169.104919,60.558193],[168.633362,60.555363],[168.525772,60.597252],[168.372452,60.598778],[168.097473,60.561943],[167.765198,60.468113],[167.482437,60.425667],[167.364609,60.379471],[166.985367,60.302612],[166.736252,60.106415],[166.410339,59.93111],[166.278473,59.818554],[166.086029,59.816029],[166.177979,59.982777],[166.199921,60.124695],[166.302383,60.192196],[166.274551,60.334251],[166.374618,60.407806],[166.239975,60.468166],[166.095062,60.430332],[166.010773,60.362305],[165.754333,60.266251],[165.341522,60.153389],[165.178726,60.075001],[165.236618,59.997391],[165.10611,59.863945],[164.847366,59.785084],[164.801193,59.919529],[164.716476,60.001778],[164.452911,60.108082],[164.327439,60.072918],[164.319031,59.9865],[164.199188,59.966557],[164.032394,60.021721],[163.873749,60.003639],[163.700439,59.873943],[163.477448,59.860863],[163.391358,59.7775],[163.428146,59.624416],[163.232635,59.578556],[163.207031,59.49089],[163.313721,59.428638],[163.343246,59.285557],[163.086395,59.248417],[163.104782,59.179443],[162.91478,59.115555],[163.009552,59.020443],[163.005615,58.941555],[162.89978,58.916443],[162.798828,58.829639],[162.557587,58.746613],[162.449448,58.677639],[162.15947,58.384083],[162.014938,58.135502],[162.002106,58.012859],[162.139496,57.843193],[162.386002,57.779835],[162.516357,57.773861],[162.507812,57.862667],[162.565552,57.929695],[162.849198,57.901833],[163.038635,57.818779],[163.209244,57.815582],[163.298782,57.731499],[163.113083,57.488998],[162.916885,57.430832],[162.787643,57.341194],[162.779724,57.184807],[162.861252,57.018722],[162.789978,56.786972],[162.939865,56.695473],[163.20459,56.735138],[163.268173,56.69389],[163.244949,56.612972],[163.276383,56.482666],[163.361664,56.304806],[163.369415,56.185139],[163.20552,56.141777],[163.06134,56.023472],[162.829422,56.063915],[162.757828,56.149918],[162.595535,56.232861],[162.215027,56.146111],[162.091858,56.082054],[161.91452,55.78714],[161.787171,55.645474],[161.750717,55.563137],[161.737244,55.361221],[161.793701,55.184113],[162.153534,54.846474],[162.121811,54.752277],[161.82756,54.59964],[161.729004,54.511501],[161.474304,54.514721],[161.278366,54.4855],[161.199356,54.577305],[160.966919,54.586445],[160.702362,54.514446],[160.395828,54.369335],[160.280106,54.280224],[160.097809,54.20039],[159.977646,54.090637],[159.855255,53.839279],[159.845062,53.714443],[159.959274,53.573444],[159.96431,53.492638],[159.841827,53.453583],[159.846558,53.396305],[159.97522,53.31361],[159.906189,53.244556],[160.042145,53.202473],[160.022171,53.087555],[159.616882,53.249527],[159.474106,53.218555],[159.385773,53.145584],[159.245285,53.145527],[158.901245,53.016804],[158.71228,52.877609],[158.640915,53.021946],[158.578583,53.055637],[158.438919,53.01136],[158.433945,52.887917],[158.644669,52.837166],[158.48053,52.76189],[158.597168,52.696667],[158.518173,52.551029],[158.506866,52.426582],[158.57225,52.374248],[158.525833,52.266361],[158.381104,52.201557],[158.299835,52.095585],[158.272476,51.955166],[158.035828,51.78978],[157.892395,51.623249],[157.692078,51.553307],[157.500137,51.450417],[157.467499,51.35989],[157.388336,51.355194],[157.232468,51.216331],[157.090744,51.150082],[156.751938,50.930443],[156.760467,51.070526],[156.71756,51.176498],[156.645035,51.249695],[156.541336,51.289028],[156.478531,51.527832],[156.502243,51.908669],[156.462219,52.126556],[156.37236,52.389889],[156.167526,52.769501],[156.123718,52.922138],[156.071701,53.26775],[155.905533,53.950832],[155.802978,54.217361],[155.682358,54.59914],[155.551422,55.192444],[155.546646,55.388473],[155.614365,55.608112],[155.662552,55.99464],[155.717834,56.081749],[155.988663,56.687611],[156.117172,56.815498],[156.471527,56.955502],[156.55719,57.05389],[156.780228,57.159],[156.977081,57.385834],[157.008423,57.453918],[156.962311,57.607971],[156.819061,57.730473],[156.85527,57.799641],[157.010666,57.858501],[157.082138,57.795307],[157.327225,57.770084],[157.454132,57.795971],[157.579865,57.872223],[157.577164,57.930889],[157.678146,58.012833],[157.932388,57.972443],[158.10025,57.995583],[158.354187,58.082443],[158.727524,58.289391],[159.085526,58.433029],[159.23909,58.568943],[159.347672,58.612694],[159.736252,58.869972],[159.726196,58.989887],[159.925033,59.11861],[160.049728,59.226696],[160.41655,59.404335],[160.515106,59.563805],[160.89592,59.625],[161.059662,59.743027],[161.284866,59.847057],[161.500839,60.039612],[161.776688,60.120056],[161.950943,60.228863],[161.910355,60.310196],[161.955505,60.415779],[162.391113,60.531887],[162.525589,60.602665],[162.714035,60.600445],[162.904007,60.746056],[163.189331,60.799557],[163.39917,60.802612],[163.784363,60.918167],[163.562088,60.982971],[163.631577,61.106167],[163.929672,61.214138],[164.039063,61.354111],[163.933869,61.432472],[163.757553,61.462139],[163.858551,61.56311],[163.87883,61.64389],[164.065369,61.67897],[164.106613,61.889526],[164.09317,62.092583],[164.172439,62.270443],[164.45517,62.356251],[164.541,62.439446],[164.753616,62.451778],[164.969559,62.414722],[165.110748,62.483917],[164.732895,62.568527],[164.606979,62.674889],[164.376968,62.684139],[164.052673,62.645638],[163.930466,62.575085],[163.795364,62.599251],[163.336365,62.531082],[163.205109,62.433304],[163.245254,62.309223],[163.112137,62.228668],[163.148941,62.028027],[163.074142,61.960972],[163.010635,61.780998],[163.295776,61.721306],[163.334168,61.656029],[163.118393,61.612446],[162.943451,61.637917],[162.845642,61.708778],[162.635803,61.659752],[162.436005,61.66975],[162.337479,61.582584],[162.031449,61.402638],[161.790466,61.299667],[161.601532,61.254028],[161.314163,61.056305],[161.14859,60.964222],[160.926056,60.891167],[160.80455,60.718472],[160.619858,60.712444],[160.325333,60.650082],[160.209244,60.824974],[160.43544,60.99189],[160.37944,61.045582],[160.205582,61.039665],[159.955475,60.94175],[159.938202,61.02264],[160.007858,61.109554],[159.980698,61.175415],[159.795105,61.258362],[159.91011,61.290943],[160.102585,61.407555],[160.129746,61.495777],[160.235001,61.515335],[160.326615,61.640972],[160.315948,61.701279],[160.423782,61.763527],[160.40506,61.881195],[160.304001,61.93589],[160.047974,61.840584],[159.90155,61.707863],[159.52945,61.689304],[159.54097,61.776112],[159.35675,61.820194],[159.321503,61.897778],[159.151977,61.920445],[158.903549,61.898167],[158.849976,61.814388],[158.709473,61.835056],[158.257141,61.815166],[158.046524,61.725193],[157.830673,61.779026],[157.565338,61.789001],[157.446411,61.769165],[157.373978,61.689777],[157.057007,61.645943],[156.974228,61.562668],[156.828308,61.512333],[156.684479,61.513248],[156.632691,61.280334],[156.667053,61.214333],[156.396606,61.148945],[156.054169,60.975334],[155.920502,60.927113],[155.920105,60.745609],[155.723282,60.649834],[155.577087,60.621277],[155.334442,60.521057],[155.167892,60.416557],[154.986145,60.369999],[154.800751,60.281918],[154.578552,60.096195],[154.415085,60.067471],[154.487137,59.881027],[154.223221,59.874054],[154.189804,59.574833],[154.087586,59.503139],[154.143723,59.457222],[154.306885,59.443695],[154.456558,59.521667],[154.678421,59.5215],[154.776077,59.47086],[155.010391,59.477417],[155.02417,59.431805],[155.188827,59.364639],[155.216751,59.299332],[155.153061,59.205002],[155.007004,59.176666],[154.830032,59.192612],[154.753998,59.136528],[154.595062,59.195721],[154.438507,59.212807],[154.328751,59.186249],[154.300919,59.087582],[154.16452,59.089111],[154.043198,59.045971],[153.940308,59.066807],[153.826645,59.168945],[153.599854,59.194473],[153.390411,59.242001],[153.335159,59.086777],[153.115143,59.088055],[153.01416,59.062],[152.871048,58.920029],[152.735413,58.909168],[152.370804,59.02272],[152.147354,58.972637],[152.150558,58.914112],[152.001892,58.878777],[151.815216,58.876026],[151.666061,58.843361],[151.364884,58.861473],[151.164246,59.03511],[151.216309,59.083084],[151.428909,59.164471],[151.657913,59.158806],[151.77269,59.129002],[152.083527,59.145111],[152.283081,59.24411],[152.128494,59.300472],[152.014023,59.266304],[151.772034,59.357693],[151.649216,59.467388],[151.332809,59.554863],[151.055283,59.579056],[150.913757,59.561222],[150.914475,59.44186],[150.781082,59.434917],[150.763107,59.56422],[150.583801,59.544109],[150.452835,59.615444],[150.148605,59.655029],[149.682312,59.753223],[149.504776,59.752193],[149.313171,59.709362],[149.089142,59.629055],[149.096863,59.487278],[148.943924,59.455276],[148.759949,59.480389],[148.731781,59.365696],[148.980469,59.375694],[148.961304,59.249611],[148.810562,59.273777],[148.578857,59.241917],[148.455994,59.282333],[148.409637,59.372417],[148.210022,59.408611],[147.850052,59.375137],[147.849411,59.293694],[147.649078,59.301582],[147.485809,59.239498],[147.289673,59.329498],[147.168442,59.319389],[147.012466,59.367668],[146.861755,59.362278],[146.636063,59.440639],[146.451507,59.462666],[146.305328,59.389557],[146.30484,59.274834],[146.041412,59.141029],[145.831497,59.247307],[145.967056,59.400665],[145.527588,59.415306],[145.343552,59.384583],[145.27716,59.41814],[144.990082,59.365749],[144.291412,59.37289],[144.042923,59.400696],[143.725922,59.377724],[143.468033,59.320915],[143.245697,59.359249],[142.472717,59.203667],[142.186218,59.089001],[141.976975,58.960304],[141.733856,58.720695],[141.544861,58.601166],[141.187439,58.467693],[140.985977,58.419029],[140.773392,58.299252],[140.654053,58.164944],[140.501114,57.910862],[140.49205,57.848331],[140.327026,57.779415],[140.052994,57.729084],[139.877228,57.601501],[139.818588,57.509029],[139.607895,57.458637],[139.517944,57.350471],[139.412384,57.29639],[139.178604,57.26461],[138.946136,57.141724],[138.927368,57.054443],[138.617661,56.954445],[138.549332,56.843056],[138.436142,56.841026],[138.39508,56.736778],[138.276977,56.686585],[138.105743,56.533443],[138.159531,56.454529],[138.033142,56.380611],[137.913467,56.367001],[137.831497,56.229832],[137.680557,56.123527],[137.591202,56.121223],[137.42186,56.040443],[137.420868,55.969971],[137.311081,55.962612],[137.088089,55.847057],[137.051499,55.782444],[136.908341,55.765945],[136.807861,55.696529],[136.528442,55.57436],[136.361862,55.524113],[136.220886,55.353249],[135.875229,55.168056],[135.696472,55.105835],[135.551285,55.085861],[135.299576,54.946861],[135.182419,54.852055],[135.282913,54.720501],[135.70192,54.641167],[135.750168,54.555443],[135.974335,54.559944],[136.22995,54.60664],[136.504974,54.582863],[136.808975,54.633499],[136.835312,54.538139],[136.749802,54.406029],[136.755051,54.287945],[136.807892,54.234749],[136.788803,54.056999],[136.701828,54.014973],[136.678329,53.918057],[136.715027,53.791832],[136.80394,53.761166],[136.951507,53.850887],[137.14183,53.810528],[137.294174,54.020222],[137.204285,54.034416],[137.094254,54.13839],[137.323502,54.26939],[137.455002,54.311085],[137.736282,54.294582],[137.504837,54.133472],[137.345032,54.127361],[137.302719,54.056526],[137.448105,54.034168],[137.535111,53.977085],[137.773834,53.956917],[137.810333,53.903805],[137.66597,53.868027],[137.610275,53.778805],[137.478668,53.671639],[137.269913,53.627167],[137.239227,53.554554],[137.389969,53.525585],[137.699783,53.54414],[137.964081,53.579056],[138.302002,53.729832],[138.370132,53.900501],[138.575256,53.990055],[138.571533,53.807472],[138.334839,53.621056],[138.272522,53.540359],[138.358383,53.500305],[138.492752,53.534306],[138.621277,53.65136],[138.7668,53.984638],[138.774811,54.075195],[138.722473,54.139389],[138.758804,54.291168],[139.027496,54.214111],[139.277496,54.175835],[139.442993,54.191555],[139.730698,54.293446],[139.778854,54.21064],[139.970718,54.114887],[140.196747,54.047111],[140.205978,53.994499],[140.318726,53.947361],[140.248032,53.870499],[140.332855,53.781334],[140.516968,53.705387],[140.607193,53.610138],[140.907867,53.509083],[140.901688,53.429554],[141.080475,53.372696],[141.187607,53.310444],[141.411865,53.289333],[141.364884,53.241722],[141.427979,53.15464],[141.36322,53.080891],[141.138779,52.988918],[140.87561,53.081612],[140.954941,52.938084],[141.205749,52.850193],[141.165253,52.803028],[141.244812,52.730751],[141.264359,52.592609],[141.218689,52.512028],[141.112167,52.483139],[141.122452,52.391861],[141.411225,52.211693],[141.421661,52.147026],[141.333328,52.09547],[141.343079,51.988083],[141.418228,51.951279],[141.181244,51.843613],[141.099548,51.71125],[140.874024,51.625778],[140.893051,51.519443],[140.793243,51.486557],[140.798309,51.335918],[140.67041,51.323166],[140.644882,51.117363],[140.678558,51.05378],[140.634918,50.947498],[140.561005,50.924305],[140.435089,50.712776],[140.490997,50.625832],[140.42189,50.544613],[140.52655,50.338001],[140.497864,50.206665],[140.54448,50.115944],[140.686279,50.088779],[140.491562,49.994389],[140.408279,49.866165],[140.53122,49.776611],[140.498077,49.698418],[140.543503,49.566387],[140.419968,49.412888],[140.421082,49.30814],[140.310135,49.207748],[140.375946,48.970528],[140.319138,48.886833],[140.235535,48.841331],[140.193115,48.760777],[140.166306,48.442585],[140.033524,48.335278],[139.920868,48.30386],[139.707031,48.149723],[139.537949,47.964806],[139.415756,47.922112],[139.288422,47.81311],[139.063858,47.473556],[138.99234,47.342693],[138.850922,47.272415],[138.690949,47.117832],[138.597107,47.05814],[138.504562,46.925667],[138.506332,46.879055],[138.388687,46.746361],[138.341949,46.526833],[138.190247,46.447887],[138.124832,46.345638],[138.111801,46.235084],[137.774078,45.935276],[137.690506,45.799583],[137.491562,45.663277],[137.419144,45.641499],[137.144974,45.367085],[136.80339,45.189362],[136.760284,45.084805],[136.633865,45.02639],[136.474884,44.834999],[136.351029,44.787529],[136.331589,44.710724],[136.234283,44.663139],[136.153366,44.495972],[135.88559,44.403526],[135.801865,44.265778],[135.659363,44.173],[135.635117,44.030888],[135.532104,43.996613],[135.48378,43.819111],[135.423218,43.753944],[135.280197,43.682835],[135.149246,43.508583],[134.854278,43.389168],[134.793365,43.335999],[134.346924,43.10939],[134.188217,43.068054],[133.925507,42.867832],[133.886978,42.906666],[133.751526,42.840473],[133.656448,42.858665],[133.479614,42.792667],[133.234146,42.748528],[133.169189,42.690029],[133.061493,42.685028],[133.05423,42.762001],[132.990967,42.80611],[132.814636,42.76086],[132.697937,42.849361],[132.581329,42.834667],[132.449448,42.92897],[132.363754,42.896332],[132.301224,42.9445],[132.323578,43.111252],[132.38034,43.215248],[132.263382,43.258804],[132.121308,43.186527],[131.969803,43.074165],[131.86792,43.10125],[131.924133,43.203415],[132.004395,43.233749],[132.072723,43.31039],[131.761215,43.31461],[131.758774,43.19239],[131.608368,43.076332],[131.577393,43.01014],[131.448868,42.919888],[131.415466,42.84264],[131.2668,42.775139],[131.252274,42.687195],[131.167465,42.568085],[131.113449,42.66497],[130.984497,42.643055],[130.92041,42.592335],[130.72583,42.695416],[130.660004,42.661694],[130.837784,42.560806],[130.741589,42.344577],[130.645669,42.426408],[130.642302,42.427813],[130.565601,42.50647],[130.634789,42.599988],[130.592251,42.671286],[130.465126,42.688317],[130.466672,42.772587],[130.667374,42.848096],[130.891672,42.852954],[131.018194,42.915438],[131.144347,42.939773],[131.10245,43.022269],[131.21796,43.14777],[131.206156,43.237112],[131.255166,43.265141],[131.314129,43.392472],[131.275946,43.495563],[131.200326,43.532715],[131.232967,43.635811],[131.211076,43.78701],[131.25431,43.894051],[131.25106,44.013347],[131.310655,44.046589],[131.111529,44.710111],[130.987195,44.867668],[131.294281,44.92894],[131.353237,44.982713],[131.464516,44.963448],[131.685074,45.115576],[131.684345,45.21622],[131.788489,45.2459],[131.91516,45.340012],[131.995368,45.258749],[132.851584,45.063198],[132.9753,45.023869],[133.130954,45.127865],[133.106746,45.314859],[133.148556,45.436126],[133.218786,45.516577],[133.387917,45.575873],[133.483206,45.692974],[133.467802,45.835038],[133.62404,45.943794],[133.67268,45.940309],[133.746704,46.07076],[133.689741,46.14797],[133.857661,46.211054],[133.917385,46.265516],[133.878439,46.333854],[133.949087,46.40104],[133.850737,46.477947],[133.908678,46.567615],[134.011214,46.638106],[134.052149,46.776451],[134.021552,46.826415],[134.14805,47.096215],[134.230194,47.182248],[134.157156,47.259063],[134.180459,47.329568],[134.32792,47.438044],[134.493659,47.446849],[134.567987,47.477894],[134.777268,47.713789],[134.678553,47.819253],[134.666246,47.89479],[134.549843,47.991305],[134.67291,48.149654],[134.676594,48.234103],[134.864069,48.332408],[135.07277,48.391317],[135.09567,48.437525],[134.895417,48.442542],[134.80417,48.371749],[134.533481,48.417766],[134.35055,48.378633],[134.239305,48.381926],[134.011266,48.31003],[133.824125,48.277319],[133.701837,48.192406],[133.572918,48.18202],[133.531075,48.116331],[133.302052,48.103012],[133.154034,48.136982],[133.066598,48.116975],[132.979726,48.031368],[132.882619,48.002301],[132.685709,47.888386],[132.57049,47.721094],[132.344574,47.767198],[132.24262,47.710024],[131.999143,47.711023],[131.970569,47.671547],[131.713867,47.711158],[131.590428,47.660815],[131.533543,47.738365],[131.292875,47.737665],[131.079681,47.689805],[130.97032,47.725785],[130.961662,47.82796],[130.871178,47.943132],[130.666369,48.105074],[130.765904,48.18925],[130.845023,48.305505],[130.747719,48.404411],[130.779689,48.491372],[130.677774,48.493653],[130.605722,48.594074],[130.536628,48.627455],[130.690677,48.869653],[130.534743,48.858019],[130.444561,48.90998],[130.269082,48.865697],[130.020967,49.021088],[129.937322,49.040413],[129.861585,49.172818],[129.766577,49.196805],[129.730438,49.288302],[129.596163,49.279858],[129.539849,49.406609],[129.422287,49.442102],[129.37913,49.367136],[129.248856,49.399542],[129.084982,49.359903],[129.013602,49.457273],[128.888097,49.490935],[128.754957,49.489518],[128.722938,49.566405],[128.566174,49.601381],[128.389875,49.590089],[128.18575,49.539363],[128.001387,49.592291],[127.810692,49.596809],[127.678002,49.697824],[127.659842,49.778958],[127.56401,49.793468],[127.501816,50.056736],[127.599303,50.160136],[127.603199,50.239444],[127.40378,50.282008],[127.333173,50.348864],[127.364642,50.438404],[127.296356,50.460614],[127.370711,50.581242],[127.144189,50.910229],[126.922887,51.061833],[126.903244,51.188236],[126.984025,51.318788],[126.899316,51.409648],[126.784226,51.448087],[126.842428,51.533063],[126.698634,51.576916],[126.740352,51.648294],[126.563302,51.86216],[126.462494,51.948489],[126.461866,52.035986],[126.560247,52.133868],[126.306981,52.205728],[126.338093,52.412115],[126.20804,52.533226],[125.969318,52.642468],[126.061768,52.673415],[125.836193,52.898817],[125.736885,52.949836],[125.624266,53.078682],[125.47138,53.1054],[125.163984,53.20129],[125.030634,53.201757],[124.905802,53.12412],[124.734396,53.146678],[124.688386,53.205396],[124.519587,53.203605],[124.371576,53.262719],[124.239412,53.379643],[124.12431,53.348395],[123.894077,53.481309],[123.702829,53.496034],[123.671863,53.528086],[123.484781,53.499243],[123.454169,53.536539],[123.247567,53.55657],[122.826833,53.457203],[122.39443,53.463364],[122.346264,53.505505],[122.097023,53.423225],[121.987584,53.429458],[121.686541,53.388898],[121.589907,53.350946],[121.337016,53.325742],[121.234552,53.280999],[120.956871,53.298542],[120.840533,53.273457],[120.690484,53.174798],[120.640099,53.103991],[120.544236,53.072425],[120.297093,52.869923],[120.031463,52.772765],[120.072221,52.58708],[120.194848,52.578924],[120.286357,52.62296],[120.443829,52.641115],[120.734115,52.53997],[120.627512,52.323985],[120.756497,52.257707],[120.768498,52.111778],[120.659053,51.928025],[120.402194,51.833759],[120.361975,51.789152],[120.057618,51.631647],[120.052198,51.553619],[119.985509,51.503784],[119.944713,51.366682],[119.760426,51.213741],[119.764666,51.09886],[119.596063,50.982602],[119.491316,50.878924],[119.521364,50.791373],[119.434702,50.685725],[119.296893,50.577907],[119.263037,50.468228],[119.158509,50.36016],[119.358366,50.358974],[119.318821,50.218921],[119.347447,50.167762],[119.092435,49.986208],[118.931034,49.989357],[118.570528,49.929665],[118.481221,49.837249],[118.237403,49.738754],[118.082777,49.616623],[117.866441,49.592101],[117.813813,49.520547],[117.477063,49.63282],[117.278113,49.636393],[117.044934,49.706815],[116.7252,49.855546]]]]},"properties":{"name":"俄罗斯联邦","name_en":"Russian Federation","id":"RUS"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[37.757874,-46.834972],[37.912834,-46.904289],[37.842388,-46.978901],[37.604286,-46.958546],[37.614758,-46.892517],[37.757874,-46.834972]]]},"properties":{"name":"爱德华王子岛","name_en":"PRINCE EDWARD ISLAND","id":"SF"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-53.371609,-33.750534],[-53.52446,-33.689034],[-53.505119,-33.355026],[-53.508282,-33.149422],[-53.433838,-33.053841],[-53.243133,-32.935848],[-53.280746,-32.899349],[-53.094597,-32.783741],[-53.086254,-32.727371],[-53.169754,-32.663624],[-53.419075,-32.564148],[-53.459667,-32.479908],[-53.520458,-32.487171],[-53.632419,-32.384529],[-53.742176,-32.082027],[-53.829624,-32.054203],[-53.857674,-31.995565],[-54.022469,-31.892797],[-54.095509,-31.905582],[-54.465691,-31.665781],[-54.49112,-31.540012],[-54.590782,-31.448469],[-54.828682,-31.448027],[-55.021843,-31.287167],[-55.115879,-31.321836],[-55.245102,-31.256735],[-55.340149,-31.126091],[-55.382534,-31.0308],[-55.601116,-30.846632],[-55.651089,-30.951311],[-55.697609,-30.958279],[-55.869793,-31.079561],[-56.007816,-31.062643],[-56.01556,-30.93992],[-55.987007,-30.859661],[-56.037586,-30.772165],[-56.130997,-30.735497],[-56.142773,-30.679335],[-56.416271,-30.429598],[-56.48867,-30.394119],[-56.835793,-30.091099],[-57.1101,-30.114731],[-57.206776,-30.281454],[-57.313053,-30.259735],[-57.395607,-30.302553],[-57.617966,-30.179155],[-57.457725,-30.106669],[-57.341965,-30.001225],[-57.319034,-29.870474],[-57.236679,-29.781261],[-57.105194,-29.751858],[-56.880856,-29.513632],[-56.828716,-29.488985],[-56.765152,-29.380333],[-56.708401,-29.361933],[-56.593063,-29.122995],[-56.424786,-29.072884],[-56.406338,-28.973528],[-56.314011,-28.915964],[-56.284962,-28.793924],[-56.192409,-28.775639],[-56.142147,-28.7059],[-56.01292,-28.607081],[-55.998951,-28.503105],[-55.893494,-28.48135],[-55.868382,-28.356716],[-55.770367,-28.369892],[-55.695622,-28.425304],[-55.668972,-28.340036],[-55.765858,-28.274733],[-55.61969,-28.161886],[-55.454441,-28.099354],[-55.368813,-28.024015],[-55.322998,-27.928085],[-55.195995,-27.863062],[-55.026188,-27.833746],[-54.903927,-27.721525],[-54.903629,-27.64794],[-54.784489,-27.58403],[-54.620354,-27.54797],[-54.445107,-27.466629],[-54.266483,-27.42907],[-54.22221,-27.388365],[-54.187218,-27.273884],[-54.089058,-27.302652],[-53.956615,-27.199356],[-53.938213,-27.156263],[-53.808491,-27.130957],[-53.67757,-26.924072],[-53.741856,-26.644579],[-53.694569,-26.488571],[-53.591835,-26.264887],[-53.723774,-26.126717],[-53.71822,-26.073214],[-53.837315,-25.968618],[-53.823067,-25.798069],[-53.856209,-25.67301],[-54.010685,-25.569143],[-54.198128,-25.547998],[-54.288551,-25.562471],[-54.45282,-25.666084],[-54.596363,-25.594971],[-54.616024,-25.457193],[-54.496696,-25.280205],[-54.437,-25.146608],[-54.465706,-25.079164],[-54.405255,-24.836107],[-54.335812,-24.649237],[-54.333027,-24.492779],[-54.262371,-24.375605],[-54.324097,-24.245342],[-54.331337,-24.15107],[-54.28434,-24.085796],[-54.319702,-24.011835],[-54.483372,-23.88471],[-54.676044,-23.816378],[-54.904907,-23.908594],[-54.932472,-23.964281],[-55.112206,-23.962997],[-55.23098,-24.011406],[-55.314892,-23.95894],[-55.354263,-23.991728],[-55.441601,-23.9123],[-55.44265,-23.734026],[-55.477386,-23.643694],[-55.535293,-23.61376],[-55.537644,-23.44735],[-55.50182,-23.382042],[-55.549183,-23.316954],[-55.520016,-23.261765],[-55.539509,-23.165785],[-55.589966,-23.146784],[-55.619824,-23.048544],[-55.683384,-22.982328],[-55.666988,-22.862513],[-55.614643,-22.720478],[-55.627357,-22.62142],[-55.724373,-22.547979],[-55.73975,-22.396128],[-55.789662,-22.382105],[-55.861675,-22.279097],[-56.060722,-22.293249],[-56.208412,-22.280878],[-56.341457,-22.20598],[-56.403347,-22.077505],[-56.51894,-22.103062],[-56.642826,-22.261166],[-56.753551,-22.236839],[-56.831131,-22.300434],[-57.000504,-22.22545],[-57.250164,-22.242943],[-57.584022,-22.167046],[-57.616417,-22.096186],[-57.701481,-22.092377],[-57.756363,-22.133574],[-57.921314,-22.122072],[-57.980866,-22.088306],[-57.920807,-21.875381],[-57.896862,-21.702597],[-57.915996,-21.589968],[-57.963459,-21.551794],[-57.859402,-21.313473],[-57.846878,-21.101675],[-57.865738,-21.04134],[-57.81876,-20.983967],[-57.920692,-20.883846],[-57.860371,-20.850998],[-57.87056,-20.730869],[-57.916241,-20.669224],[-58.015442,-20.607986],[-58.004292,-20.425907],[-58.077415,-20.379519],[-58.087341,-20.273268],[-58.163456,-20.162462],[-58.050934,-20.103136],[-57.877327,-19.96858],[-57.987908,-19.890718],[-58.134025,-19.76053],[-57.882301,-19.240784],[-57.777599,-19.035068],[-57.705193,-19.001463],[-57.7202,-18.91416],[-57.769115,-18.903246],[-57.601482,-18.363106],[-57.555351,-18.254503],[-57.470852,-18.231329],[-57.573059,-18.127602],[-57.611267,-18.021019],[-57.70229,-17.86034],[-57.714809,-17.733715],[-57.785053,-17.645491],[-57.803253,-17.521358],[-57.902039,-17.45998],[-58.002548,-17.519537],[-58.056191,-17.456871],[-58.255753,-17.354225],[-58.27055,-17.310669],[-58.392014,-17.199553],[-58.386475,-17.11743],[-58.47036,-16.938763],[-58.476498,-16.821632],[-58.455608,-16.657335],[-58.340462,-16.541655],[-58.308224,-16.276127],[-58.37162,-16.276375],[-58.47073,-16.324831],[-59.226883,-16.29031],[-59.357067,-16.279503],[-59.912891,-16.275444],[-60.172978,-16.264633],[-60.205994,-15.901564],[-60.235813,-15.476063],[-60.565289,-15.10499],[-60.252533,-15.10063],[-60.256886,-14.624276],[-60.337593,-14.554859],[-60.392593,-14.428671],[-60.38826,-14.368609],[-60.449173,-14.28937],[-60.48159,-14.181334],[-60.471111,-14.098206],[-60.421234,-14.069685],[-60.382343,-13.98168],[-60.441448,-13.933],[-60.478046,-13.802892],[-60.670754,-13.748438],[-60.737103,-13.693538],[-60.887669,-13.629843],[-60.968815,-13.537951],[-61.137001,-13.518427],[-61.254001,-13.522874],[-61.342575,-13.491897],[-61.495636,-13.553751],[-61.59861,-13.507357],[-61.824284,-13.539249],[-61.861839,-13.45059],[-62.008858,-13.351757],[-62.108082,-13.256899],[-62.108517,-13.148521],[-62.222023,-13.118057],[-62.279587,-13.150793],[-62.367844,-13.145263],[-62.486015,-13.065432],[-62.628777,-13.045328],[-62.68074,-12.966549],[-62.781326,-13.012926],[-62.909786,-12.864772],[-62.999924,-12.845116],[-63.058113,-12.743628],[-63.077675,-12.655174],[-63.134041,-12.63998],[-63.24511,-12.712902],[-63.326565,-12.704915],[-63.426514,-12.65101],[-63.481968,-12.557039],[-63.544666,-12.552314],[-63.660496,-12.470612],[-63.773636,-12.454474],[-63.864033,-12.467217],[-63.89912,-12.53395],[-64.024795,-12.533273],[-64.175133,-12.486083],[-64.394356,-12.455478],[-64.492973,-12.365522],[-64.468986,-12.29922],[-64.519432,-12.241677],[-64.611969,-12.212958],[-64.704163,-12.151756],[-64.787414,-12.041586],[-64.992996,-11.999366],[-65.0616,-11.742412],[-65.185036,-11.761492],[-65.180931,-11.609385],[-65.231316,-11.510736],[-65.287056,-11.511685],[-65.374626,-11.296089],[-65.390503,-11.166992],[-65.322304,-11.111896],[-65.327309,-11.02529],[-65.289299,-10.980406],[-65.314308,-10.873999],[-65.389,-10.819226],[-65.374863,-10.672103],[-65.431038,-10.479697],[-65.37365,-10.365348],[-65.284111,-10.236426],[-65.322853,-10.042677],[-65.32254,-9.902105],[-65.291023,-9.863836],[-65.359665,-9.715076],[-65.439896,-9.684632],[-65.504669,-9.788248],[-65.629997,-9.821809],[-65.669052,-9.778728],[-65.871674,-9.787895],[-65.920715,-9.76603],[-66.032013,-9.803523],[-66.064217,-9.772218],[-66.167313,-9.787003],[-66.205009,-9.827606],[-66.315124,-9.830495],[-66.397034,-9.865773],[-66.62069,-9.897965],[-66.883392,-10.080641],[-67.029045,-10.254179],[-67.134956,-10.287622],[-67.181442,-10.337565],[-67.315148,-10.316207],[-67.327187,-10.374251],[-67.406563,-10.369332],[-67.443138,-10.449774],[-67.588333,-10.518331],[-67.684845,-10.628266],[-67.734154,-10.716403],[-67.869614,-10.654002],[-68.059845,-10.679408],[-68.184837,-10.835507],[-68.289696,-10.990559],[-68.414558,-11.041128],[-68.512932,-11.045891],[-68.587486,-11.110317],[-68.738495,-11.143052],[-68.776924,-11.124155],[-68.750626,-11.006585],[-68.974594,-11.003974],[-69.148506,-10.96428],[-69.433586,-10.951978],[-69.566444,-10.956658],[-69.717636,-10.975946],[-69.812492,-10.925354],[-69.933334,-10.920965],[-70.200913,-11.05383],[-70.308716,-11.070407],[-70.425308,-11.037434],[-70.529648,-10.934622],[-70.620865,-10.999892],[-70.620903,-10.3628],[-70.620918,-9.827967],[-70.527389,-9.723133],[-70.592651,-9.615396],[-70.516388,-9.494264],[-70.5709,-9.433238],[-70.650246,-9.512367],[-70.75766,-9.580617],[-70.798798,-9.641971],[-70.869873,-9.666997],[-70.998138,-9.818048],[-71.051483,-9.815752],[-71.17157,-9.891017],[-71.193443,-9.942895],[-71.298241,-9.992343],[-71.376267,-10.000164],[-72.179756,-10.000378],[-72.15004,-9.960976],[-72.162254,-9.831432],[-72.254936,-9.735095],[-72.246429,-9.657538],[-72.341995,-9.505907],[-72.51738,-9.486357],[-72.716133,-9.411629],[-73.200569,-9.411645],[-73.189003,-9.364497],[-73.100464,-9.303467],[-73.064934,-9.229016],[-72.953285,-9.137392],[-72.945274,-8.994775],[-72.997406,-8.923006],[-73.058487,-8.906308],[-73.134918,-8.741056],[-73.180611,-8.68633],[-73.282318,-8.666202],[-73.34407,-8.603363],[-73.342621,-8.476649],[-73.442848,-8.427393],[-73.542534,-8.345379],[-73.52414,-8.271847],[-73.588143,-8.197089],[-73.583488,-8.128997],[-73.628265,-8.051561],[-73.770004,-7.906431],[-73.677574,-7.857056],[-73.714722,-7.742614],[-73.818474,-7.717088],[-73.887726,-7.604479],[-73.979546,-7.558858],[-73.910477,-7.475569],[-73.940949,-7.393953],[-73.820397,-7.339171],[-73.728264,-7.344956],[-73.709755,-7.246161],[-73.799049,-7.114426],[-73.762024,-7.062366],[-73.761475,-6.938969],[-73.641723,-6.758639],[-73.53566,-6.682955],[-73.392013,-6.638809],[-73.352615,-6.593249],[-73.267517,-6.587669],[-73.132629,-6.497887],[-73.10395,-6.410998],[-73.161613,-6.276292],[-73.219841,-6.2124],[-73.249931,-6.123125],[-73.156158,-5.874112],[-73.055733,-5.797162],[-72.969246,-5.659272],[-72.959038,-5.466101],[-72.867111,-5.289909],[-72.887199,-5.162558],[-72.693306,-5.060416],[-72.599953,-4.987932],[-72.414482,-4.898898],[-72.372788,-4.807586],[-72.271347,-4.798799],[-72.036522,-4.637369],[-71.981605,-4.62293],[-71.916702,-4.528221],[-71.782593,-4.482828],[-71.615967,-4.528745],[-71.459618,-4.439199],[-71.418137,-4.464444],[-71.260521,-4.397849],[-71.081833,-4.371936],[-70.945633,-4.37371],[-70.75544,-4.155879],[-70.669464,-4.146258],[-70.585159,-4.18285],[-70.524307,-4.13492],[-70.43232,-4.131001],[-70.294953,-4.158646],[-70.25505,-4.311213],[-70.180496,-4.354123],[-70.125854,-4.286129],[-70.074974,-4.285543],[-70.020859,-4.371933],[-69.976257,-4.34021],[-69.945732,-4.225544],[-69.922127,-4.161763],[-69.777878,-3.398282],[-69.608345,-2.444501],[-69.447906,-1.552427],[-69.452515,-1.477611],[-69.368347,-1.333702],[-69.375145,-1.17331],[-69.437736,-1.028683],[-69.507873,-0.93641],[-69.551628,-0.81282],[-69.59539,-0.777214],[-69.551124,-0.648225],[-69.589615,-0.524037],[-69.730736,-0.456756],[-69.850311,-0.33523],[-69.907868,-0.315769],[-70.068024,-0.134779],[-70.035652,0.370532],[-70.037407,0.545666],[-69.910034,0.589937],[-69.79837,0.584742],[-69.651031,0.670095],[-69.468208,0.734351],[-69.358734,0.622597],[-69.294975,0.648283],[-69.201538,0.601751],[-69.11412,0.652157],[-69.183502,0.730424],[-69.136986,0.868457],[-69.256722,1.025505],[-69.329239,1.062455],[-69.416382,1.023687],[-69.45575,1.056308],[-69.608215,1.073588],[-69.70034,1.055641],[-69.753181,1.095937],[-69.854072,1.069752],[-69.855194,1.714919],[-69.740173,1.735307],[-69.654381,1.725768],[-69.55574,1.775197],[-69.394562,1.725671],[-68.911018,1.726504],[-68.162056,1.734391],[-68.283348,1.835377],[-68.222206,1.972644],[-68.116913,1.951853],[-68.067078,1.831797],[-67.971497,1.744901],[-67.896362,1.756818],[-67.786316,1.823212],[-67.668312,1.987888],[-67.577995,2.075562],[-67.446159,2.141113],[-67.360504,2.114373],[-67.250252,1.915157],[-67.116821,1.732161],[-67.068146,1.532232],[-67.106468,1.265936],[-67.096664,1.170079],[-66.869835,1.225646],[-66.854576,1.228388],[-66.334107,0.75535],[-66.201721,0.767314],[-66.140396,0.738587],[-66.055206,0.795046],[-65.939827,0.823246],[-65.853676,0.939189],[-65.732765,1.004873],[-65.659088,0.980297],[-65.594521,1.011048],[-65.524307,0.964946],[-65.474075,0.836227],[-65.551056,0.731181],[-65.532593,0.642291],[-65.405785,0.686675],[-65.373413,0.806549],[-65.316803,0.900945],[-65.263222,0.937248],[-65.170334,0.926775],[-65.128624,0.986452],[-65.120705,1.114882],[-65.055229,1.143756],[-64.961746,1.11811],[-64.903008,1.248545],[-64.867706,1.224364],[-64.792625,1.305723],[-64.720734,1.250451],[-64.529968,1.355377],[-64.494759,1.460614],[-64.3442,1.527704],[-64.381645,1.418941],[-64.330887,1.379134],[-64.282104,1.459946],[-64.199669,1.485553],[-64.10508,1.579624],[-64.051048,1.718363],[-64.056549,1.93279],[-63.979942,1.987189],[-63.797684,1.987949],[-63.603935,2.124453],[-63.488568,2.135292],[-63.38612,2.184466],[-63.347633,2.289375],[-63.382137,2.44196],[-63.530739,2.439635],[-63.573132,2.403786],[-63.782127,2.405892],[-63.948948,2.487975],[-64.031029,2.509034],[-64.036194,2.603015],[-63.989956,2.651678],[-63.985401,2.752353],[-64.015602,2.847392],[-64.134377,3.062022],[-64.184548,3.090931],[-64.218987,3.178451],[-64.202316,3.257431],[-64.236397,3.476489],[-64.182892,3.581523],[-64.196945,3.658409],[-64.2994,3.777382],[-64.415451,3.834754],[-64.469986,3.83023],[-64.553917,3.898501],[-64.654312,4.035226],[-64.732483,4.182162],[-64.805084,4.244174],[-64.790489,4.329103],[-64.730461,4.335419],[-64.660065,4.279819],[-64.627075,4.202043],[-64.536141,4.151304],[-64.267425,4.192603],[-64.134735,4.175617],[-64.081184,4.121849],[-64.016853,3.9518],[-63.966766,3.929609],[-63.806293,4.018855],[-63.581009,3.990004],[-63.533966,3.93788],[-63.434361,3.920467],[-63.410831,4.02576],[-63.35759,4.039675],[-63.203201,3.951764],[-63.199951,3.894477],[-63.059463,3.776613],[-62.953525,3.638996],[-62.860306,3.583891],[-62.748917,3.641585],[-62.699974,3.755523],[-62.760284,3.933027],[-62.752216,4.011617],[-62.634979,4.055555],[-62.529636,4.051339],[-62.490875,4.147935],[-62.417156,4.186056],[-62.356483,4.174852],[-62.128765,4.083876],[-62.064633,4.143046],[-61.993942,4.160476],[-61.805325,4.165521],[-61.723473,4.261574],[-61.631893,4.244697],[-61.527603,4.273405],[-61.506702,4.398041],[-61.44408,4.443244],[-61.318771,4.430702],[-61.274448,4.471363],[-61.293354,4.549633],[-61.122906,4.508339],[-60.951878,4.549125],[-60.907093,4.707716],[-60.73077,4.777442],[-60.640045,4.877661],[-60.590443,4.976171],[-60.74411,5.209053],[-60.661682,5.221684],[-60.571815,5.189377],[-60.438046,5.176927],[-60.329174,5.199076],[-60.212326,5.264453],[-60.121933,5.243932],[-60.085426,5.148698],[-59.969417,5.073079],[-60.033901,4.788908],[-60.029011,4.708317],[-60.080876,4.607619],[-60.16016,4.566962],[-60.160118,4.518154],[-59.786167,4.443121],[-59.671257,4.376557],[-59.717998,4.29601],[-59.713608,4.170061],[-59.628399,4.137568],[-59.655487,4.077602],[-59.516312,3.939903],[-59.577999,3.891215],[-59.593632,3.795994],[-59.66592,3.776826],[-59.661907,3.711654],[-59.84499,3.603479],[-59.865101,3.560974],[-59.804379,3.495798],[-59.834896,3.440711],[-59.800755,3.352131],[-59.869877,3.270085],[-59.899025,3.164808],[-59.959,3.062944],[-59.982208,2.928601],[-59.988399,2.677524],[-59.931755,2.563535],[-59.908672,2.392423],[-59.722469,2.236561],[-59.752274,1.910222],[-59.680107,1.783654],[-59.618408,1.729299],[-59.548702,1.728509],[-59.378975,1.518101],[-59.336929,1.51743],[-59.25275,1.397388],[-59.15567,1.34835],[-58.913772,1.29851],[-58.90361,1.233826],[-58.796116,1.175265],[-58.746651,1.198208],[-58.692009,1.288506],[-58.507111,1.264406],[-58.467083,1.350642],[-58.502628,1.444474],[-58.390087,1.465866],[-58.376362,1.544452],[-58.319176,1.591944],[-58.142136,1.507995],[-58.008511,1.500673],[-58,1.665301],[-57.933014,1.644896],[-57.817326,1.678573],[-57.770401,1.718252],[-57.639664,1.689638],[-57.544678,1.700689],[-57.423721,1.904481],[-57.302399,1.990076],[-57.253845,1.94511],[-57.122406,2.014143],[-56.986225,1.910692],[-56.914501,1.91795],[-56.800163,1.863873],[-56.723507,1.919642],[-56.591675,1.915002],[-56.480251,1.941472],[-56.364155,1.938965],[-56.253964,1.886876],[-56.213081,1.895422],[-55.994968,1.831145],[-55.906479,1.889429],[-55.910492,2.031083],[-56.048256,2.226486],[-56.12783,2.251955],[-56.090218,2.352037],[-56.044266,2.344939],[-55.987884,2.425941],[-55.987289,2.51703],[-55.938831,2.53155],[-55.738914,2.401214],[-55.591713,2.43345],[-55.428486,2.439435],[-55.299335,2.521994],[-55.211994,2.512078],[-55.128998,2.569784],[-55.102707,2.522386],[-54.972595,2.604666],[-54.960262,2.54278],[-54.85833,2.435056],[-54.743774,2.477054],[-54.703846,2.339697],[-54.549095,2.336314],[-54.525734,2.303486],[-54.470329,2.226049],[-54.372974,2.214883],[-54.332806,2.162159],[-54.181724,2.177571],[-54.110714,2.127317],[-54.085495,2.189601],[-53.960186,2.235375],[-53.943424,2.287094],[-53.830009,2.313092],[-53.789696,2.363611],[-53.679203,2.284482],[-53.461052,2.329971],[-53.42252,2.284564],[-53.273476,2.292224],[-53.176506,2.220196],[-53.074093,2.221689],[-52.987366,2.169751],[-52.901848,2.192049],[-52.853474,2.285073],[-52.672802,2.373743],[-52.554726,2.523372],[-52.550324,2.613437],[-52.428467,2.883019],[-52.396126,2.896653],[-52.327587,3.087224],[-52.347202,3.133795],[-52.279541,3.236496],[-52.228004,3.250557],[-51.921825,3.77228],[-51.795406,3.889529],[-51.753742,3.996106],[-51.658462,4.049279],[-51.615059,4.190925],[-51.571781,4.240474],[-51.544594,4.396619],[-51.337349,4.235693],[-51.201512,4.083854],[-51.170418,3.961657],[-51.077496,3.867385],[-51.078644,3.565862],[-51.050537,3.282555],[-51.008774,3.190795],[-51.01231,3.118114],[-50.912792,2.875159],[-50.915291,2.825882],[-50.823807,2.669488],[-50.823086,2.52332],[-50.736137,2.413725],[-50.733116,2.331951],[-50.674156,2.241223],[-50.681652,2.137318],[-50.584419,2.091469],[-50.585937,2.014473],[-50.520001,1.947336],[-50.470795,1.819995],[-50.410385,1.795081],[-50.286602,1.816633],[-50.054832,1.738438],[-49.941105,1.652142],[-49.88028,1.41904],[-49.94508,1.261732],[-49.901058,1.179316],[-49.938992,1.102651],[-50.012577,1.070937],[-50.130661,0.948915],[-50.27412,0.865598],[-50.331989,0.735205],[-50.457939,0.650607],[-50.598617,0.382452],[-50.790855,0.18197],[-50.871078,0.182244],[-50.959736,0.139535],[-51.092953,-0.04437],[-51.194599,-0.048397],[-51.20784,-0.150241],[-51.124683,-0.140907],[-51.175415,-0.316998],[-51.358902,-0.449883],[-51.259758,-0.50003],[-51.181015,-0.445159],[-51.075085,-0.32865],[-51.027935,-0.178487],[-50.959591,-0.065808],[-50.824005,-0.04772],[-50.662781,0],[-50.632183,-0.117997],[-50.743977,-0.244401],[-50.774578,-0.349953],[-50.750568,-0.428578],[-50.845177,-0.526248],[-50.732849,-0.556591],[-50.692173,-0.378409],[-50.652222,-0.275707],[-50.571316,-0.184204],[-50.423565,-0.098465],[-50.335884,-0.085464],[-50.237636,-0.124608],[-50.1399,-0.124044],[-49.666805,-0.241547],[-49.446064,-0.230226],[-49.339794,-0.159486],[-49.186897,-0.130312],[-48.981552,-0.163725],[-48.894657,-0.224342],[-48.80994,-0.206188],[-48.713963,-0.237653],[-48.639564,-0.225432],[-48.393265,-0.261015],[-48.369659,-0.380953],[-48.45908,-0.513127],[-48.478615,-0.744556],[-48.53072,-0.789613],[-48.537605,-0.914734],[-48.61145,-0.947043],[-48.621506,-1.062545],[-48.715629,-1.132535],[-48.78875,-1.267118],[-48.837307,-1.452106],[-48.910809,-1.50574],[-49.160671,-1.575233],[-49.182491,-1.622722],[-49.451122,-1.644175],[-49.499592,-1.737929],[-49.595421,-1.716371],[-49.671444,-1.775408],[-49.713574,-1.760282],[-49.802898,-1.821724],[-50.034759,-1.716696],[-50.178516,-1.786904],[-50.413094,-1.839791],[-50.404297,-1.931808],[-50.340267,-1.928178],[-50.256729,-1.864742],[-50.145077,-1.861978],[-49.982575,-1.820698],[-49.835327,-1.899847],[-49.688976,-1.867639],[-49.637982,-1.798351],[-49.285927,-1.704642],[-49.267193,-1.777717],[-49.367985,-1.903561],[-49.38261,-2.158832],[-49.291451,-2.068849],[-49.260624,-2.002849],[-49.133267,-1.825048],[-49.114574,-1.753304],[-49.010387,-1.664028],[-48.973186,-1.594208],[-48.901253,-1.572395],[-48.854679,-1.66193],[-48.737499,-1.521864],[-48.70871,-1.445008],[-48.602962,-1.310286],[-48.523514,-1.337743],[-48.428112,-1.212107],[-48.4786,-1.149023],[-48.415779,-1.071838],[-48.332531,-1.065556],[-48.31612,-0.981938],[-48.239796,-0.845848],[-48.179298,-0.831003],[-48.054691,-0.668069],[-47.847164,-0.61568],[-47.702416,-0.53989],[-47.635082,-0.602914],[-47.462238,-0.59137],[-47.400387,-0.645216],[-47.300922,-0.589121],[-47.205528,-0.633183],[-47.161144,-0.756031],[-47.088291,-0.734062],[-47.046307,-0.791073],[-46.95829,-0.751139],[-46.787499,-0.845076],[-46.621449,-0.81775],[-46.601139,-0.917463],[-46.537228,-1.014345],[-46.465019,-1.006963],[-46.299118,-1.049637],[-46.237999,-0.919397],[-46.20747,-1.084447],[-46.096687,-1.071309],[-46.067669,-1.147491],[-45.982296,-1.070559],[-45.905079,-1.13397],[-45.863003,-1.239443],[-45.737614,-1.179295],[-45.694408,-1.375759],[-45.635059,-1.374948],[-45.601879,-1.272888],[-45.511814,-1.332668],[-45.486035,-1.423343],[-45.395862,-1.421993],[-45.330738,-1.315494],[-45.302055,-1.42364],[-45.35614,-1.466095],[-45.340206,-1.566833],[-45.37112,-1.722259],[-45.28059,-1.7471],[-45.223907,-1.689475],[-45.261517,-1.628607],[-45.247971,-1.566167],[-45.171345,-1.488198],[-45.071778,-1.480196],[-44.923027,-1.550321],[-44.917801,-1.60711],[-44.794163,-1.631363],[-44.777264,-1.736933],[-44.743019,-1.791792],[-44.644165,-1.798903],[-44.537689,-1.840512],[-44.505856,-1.990519],[-44.471767,-2.035491],[-44.597126,-2.134951],[-44.594788,-2.177952],[-44.464649,-2.142648],[-44.393684,-2.223869],[-44.357777,-2.334604],[-44.401279,-2.416277],[-44.48101,-2.409965],[-44.543545,-2.559843],[-44.658295,-2.780552],[-44.652023,-2.866817],[-44.687706,-2.92438],[-44.676666,-3.018719],[-44.624046,-3.069088],[-44.720348,-3.18043],[-44.6488,-3.19202],[-44.6082,-3.109864],[-44.469624,-3.000762],[-44.417351,-2.908761],[-44.415596,-2.809423],[-44.381004,-2.672282],[-44.377624,-2.566061],[-44.305546,-2.487261],[-44.236744,-2.481551],[-44.093411,-2.407378],[-44.049603,-2.560906],[-44.098553,-2.570841],[-44.1474,-2.681489],[-44.111061,-2.748774],[-43.957599,-2.594584],[-43.806629,-2.561083],[-43.728672,-2.481327],[-43.562672,-2.537276],[-43.440312,-2.507986],[-43.481114,-2.383932],[-43.432762,-2.335104],[-43.23151,-2.362115],[-43.031967,-2.444944],[-42.792679,-2.562305],[-42.703766,-2.563413],[-42.544655,-2.690426],[-42.375065,-2.717399],[-42.189297,-2.799551],[-42.20771,-2.711912],[-42.076237,-2.690707],[-42.03331,-2.74503],[-41.976822,-2.725552],[-41.830738,-2.72548],[-41.613174,-2.898828],[-41.477577,-2.899375],[-41.303105,-2.928431],[-41.262627,-2.88659],[-41.031677,-2.895364],[-40.761646,-2.85255],[-40.57439,-2.840971],[-40.498524,-2.786886],[-40.428307,-2.814433],[-40.319481,-2.808368],[-40.109795,-2.825409],[-39.887909,-2.885612],[-39.725815,-2.995757],[-39.614601,-3.03145],[-39.465252,-3.142949],[-39.225525,-3.241582],[-39.168827,-3.320802],[-39.044582,-3.412049],[-38.967236,-3.415768],[-38.912548,-3.498428],[-38.800488,-3.553561],[-38.641479,-3.686515],[-38.496918,-3.726793],[-38.465843,-3.710136],[-38.377182,-3.866257],[-38.278015,-3.941373],[-38.117454,-4.139543],[-37.86348,-4.364694],[-37.768951,-4.400204],[-37.713524,-4.505549],[-37.587906,-4.624168],[-37.493946,-4.625608],[-37.336212,-4.69115],[-37.277241,-4.754818],[-37.227177,-4.870957],[-37.149803,-4.943036],[-37.022781,-4.947715],[-36.958283,-4.919341],[-36.87698,-4.94906],[-36.819523,-5.019137],[-36.696247,-5.090703],[-36.468285,-5.061643],[-36.296753,-5.106204],[-36.168415,-5.096485],[-35.998836,-5.045791],[-35.780144,-5.076615],[-35.481491,-5.161574],[-35.367821,-5.281751],[-35.254909,-5.482616],[-35.200077,-5.734209],[-35.100842,-6.056928],[-35.098633,-6.168614],[-35.039825,-6.234148],[-35.029083,-6.349664],[-34.975185,-6.431765],[-34.957176,-6.654965],[-34.893211,-6.876633],[-34.830936,-6.965975],[-34.83918,-7.058136],[-34.793438,-7.146895],[-34.809029,-7.622023],[-34.8489,-7.818314],[-34.823734,-7.888799],[-34.827213,-8.003979],[-34.858883,-8.045489],[-34.93441,-8.263691],[-34.930748,-8.34686],[-35.060291,-8.633477],[-35.085144,-8.749394],[-35.134453,-8.843211],[-35.166855,-8.96618],[-35.215172,-9.016263],[-35.302158,-9.193793],[-35.406422,-9.316144],[-35.457977,-9.345539],[-35.508064,-9.434741],[-35.681183,-9.620041],[-35.779652,-9.705591],[-35.924835,-9.891026],[-36.055958,-10.083112],[-36.226864,-10.218823],[-36.402336,-10.50648],[-36.518372,-10.535837],[-36.629433,-10.592259],[-36.856369,-10.740722],[-37.03241,-10.964693],[-37.168011,-11.185385],[-37.283123,-11.313914],[-37.320988,-11.414939],[-37.445755,-11.597626],[-37.612797,-11.969727],[-37.697609,-12.122697],[-37.952122,-12.471569],[-37.996204,-12.578297],[-38.134678,-12.721827],[-38.317596,-12.934181],[-38.477184,-13.022389],[-38.532165,-13.006109],[-38.473183,-12.913217],[-38.497296,-12.730271],[-38.602974,-12.7283],[-38.694347,-12.642392],[-38.750904,-12.710135],[-38.776589,-12.817105],[-38.734241,-13.022318],[-38.630341,-12.89954],[-38.597442,-12.992406],[-38.715447,-13.071278],[-38.795803,-13.092138],[-38.867336,-13.193068],[-38.93288,-13.229483],[-38.967171,-13.32931],[-38.885818,-13.450089],[-38.926594,-13.522082],[-38.886227,-13.659123],[-38.9548,-13.675509],[-38.995915,-13.788686],[-38.930752,-13.892474],[-38.924217,-14.03238],[-38.984005,-14.193471],[-38.997955,-14.341938],[-39.059246,-14.622372],[-39.053925,-14.765885],[-39.021179,-14.80487],[-39.005959,-14.991553],[-39.008839,-15.197351],[-38.964191,-15.552779],[-38.915054,-15.729527],[-38.857075,-15.860019],[-38.918453,-16.003563],[-38.977035,-16.215397],[-39.020161,-16.260801],[-39.005466,-16.338169],[-39.084065,-16.541922],[-39.105728,-16.708368],[-39.143497,-16.762323],[-39.153683,-16.947285],[-39.179108,-17.1047],[-39.212113,-17.154608],[-39.222939,-17.315514],[-39.195778,-17.438324],[-39.193104,-17.602081],[-39.135345,-17.691141],[-39.323589,-17.897976],[-39.397735,-17.920317],[-39.502808,-18.014961],[-39.615173,-18.199152],[-39.721466,-18.492767],[-39.74884,-18.80958],[-39.733685,-18.989424],[-39.689907,-19.301872],[-39.703068,-19.4135],[-39.805191,-19.650215],[-39.917671,-19.694914],[-40.035725,-19.794855],[-40.160797,-20.037416],[-40.200237,-20.218355],[-40.288269,-20.286594],[-40.281075,-20.347811],[-40.420204,-20.635754],[-40.466362,-20.624353],[-40.521729,-20.734272],[-40.639767,-20.811472],[-40.742145,-20.852417],[-40.800075,-20.947578],[-40.809032,-21.037159],[-40.853352,-21.132942],[-40.955028,-21.251179],[-40.9599,-21.364325],[-41.070599,-21.507462],[-40.97662,-21.934614],[-40.993763,-22.017162],[-41.22908,-22.150702],[-41.498966,-22.223152],[-41.721222,-22.326649],[-41.768677,-22.393457],[-41.97942,-22.565544],[-41.986031,-22.712534],[-41.907047,-22.781485],[-42.086475,-22.956621],[-42.528732,-22.934305],[-42.916241,-22.979776],[-43.039093,-22.977037],[-43.131008,-22.910906],[-43.026791,-22.744263],[-43.083714,-22.67972],[-43.215843,-22.725121],[-43.277954,-22.785856],[-43.225964,-22.825241],[-43.159763,-22.967771],[-43.285442,-23.017195],[-43.383785,-23.016138],[-43.524269,-23.052622],[-43.702137,-23.056097],[-43.726356,-22.955234],[-43.861461,-22.906771],[-43.984646,-22.936661],[-44.106518,-23.029785],[-44.227615,-23.058813],[-44.344101,-22.944365],[-44.588093,-23.054333],[-44.663414,-23.05743],[-44.711742,-23.188097],[-44.644794,-23.190514],[-44.553913,-23.314959],[-44.778923,-23.384283],[-44.907635,-23.340357],[-45.030071,-23.417912],[-45.078411,-23.512203],[-45.242352,-23.592636],[-45.316513,-23.581346],[-45.409679,-23.631857],[-45.389492,-23.780069],[-45.500958,-23.842432],[-45.561092,-23.79253],[-45.836594,-23.757473],[-45.934292,-23.77109],[-46.12426,-23.842228],[-46.177265,-23.989992],[-46.390469,-24],[-46.486942,-24.035696],[-46.841991,-24.220127],[-46.989948,-24.324339],[-47.003567,-24.411961],[-47.185142,-24.525991],[-47.228458,-24.575047],[-47.655323,-24.824196],[-47.859535,-24.996443],[-47.917675,-25.143665],[-48.151028,-25.363733],[-48.187317,-25.330835],[-48.333901,-25.352516],[-48.446324,-25.330391],[-48.414841,-25.423372],[-48.509441,-25.458422],[-48.51688,-25.503799],[-48.352085,-25.586376],[-48.4323,-25.653311],[-48.563221,-25.863579],[-48.613651,-26.060448],[-48.583847,-26.16502],[-48.495922,-26.230968],[-48.652928,-26.523252],[-48.695358,-26.657738],[-48.628944,-26.843403],[-48.63348,-26.98061],[-48.573769,-27.011356],[-48.611015,-27.100525],[-48.576435,-27.149221],[-48.608311,-27.229097],[-48.595795,-27.318201],[-48.531506,-27.3493],[-48.57048,-27.424276],[-48.649479,-27.48601],[-48.581695,-27.580694],[-48.653454,-27.648249],[-48.575173,-27.887663],[-48.63105,-28.008888],[-48.60873,-28.063118],[-48.660881,-28.172766],[-48.661678,-28.245129],[-48.758751,-28.446072],[-48.770348,-28.536999],[-48.825172,-28.604588],[-48.958118,-28.661327],[-49.138515,-28.772411],[-49.356075,-28.938196],[-49.577049,-29.159443],[-49.829834,-29.473602],[-50.005974,-29.748905],[-50.07481,-29.883762],[-50.20908,-30.200331],[-50.290016,-30.423197],[-50.443855,-30.653767],[-50.780895,-31.130617],[-50.901001,-31.254982],[-51.054226,-31.378601],[-51.212036,-31.541895],[-51.459793,-31.726206],[-51.824066,-31.912638],[-51.931782,-32],[-52.035549,-32.036507],[-52.018146,-31.929649],[-52.087189,-31.866091],[-51.996517,-31.818705],[-51.870529,-31.869871],[-51.803642,-31.784712],[-51.702343,-31.780455],[-51.58667,-31.699209],[-51.434944,-31.491915],[-51.344631,-31.527479],[-51.233509,-31.45783],[-51.179943,-31.377613],[-51.154045,-31.231401],[-51.175342,-31.079252],[-51.097328,-31.092224],[-50.95525,-31.002565],[-50.965168,-30.905626],[-50.879421,-30.888206],[-50.733521,-30.804024],[-50.686634,-30.70249],[-50.677406,-30.609585],[-50.695423,-30.436064],[-50.569248,-30.471474],[-50.534466,-30.2784],[-50.601353,-30.194105],[-50.659245,-30.201378],[-50.661423,-30.293253],[-50.788509,-30.2901],[-50.898518,-30.326008],[-50.934361,-30.420139],[-51.052498,-30.355488],[-51.020958,-30.296713],[-51.131191,-30.262251],[-51.258858,-30.119892],[-51.229927,-30.04303],[-51.297665,-30.027445],[-51.323986,-30.233904],[-51.287514,-30.302488],[-51.173256,-30.383169],[-51.257004,-30.46624],[-51.300598,-30.641212],[-51.374542,-30.63546],[-51.400871,-30.790665],[-51.500622,-30.934982],[-51.468399,-31.099825],[-51.610916,-31.138313],[-51.653668,-31.275251],[-51.780327,-31.275104],[-51.844028,-31.325285],[-51.915192,-31.31308],[-52.002476,-31.448767],[-52.006145,-31.605438],[-52.054245,-31.676422],[-52.1371,-31.695198],[-52.221951,-31.75605],[-52.219975,-31.871477],[-52.148418,-31.946564],[-52.230556,-31.979935],[-52.189998,-32.071625],[-52.115108,-32.031918],[-52.090023,-32.173988],[-52.151566,-32.193588],[-52.267574,-32.317894],[-52.341305,-32.429996],[-52.423794,-32.630157],[-52.488049,-32.84425],[-52.619797,-33.101845],[-52.773266,-33.290321],[-53.227306,-33.657887],[-53.371609,-33.750534]]],[[[-49.876488,0],[-49.989632,-0.048449],[-50.086315,0.034331],[-50.341095,0.034945],[-50.393284,0.136884],[-50.396259,0.219753],[-50.265735,0.240849],[-50.129089,0.234014],[-50.032726,0.312585],[-49.902,0.317297],[-49.669193,0.367233],[-49.601448,0.282544],[-49.637291,0.218356],[-49.725597,0.178878],[-49.876488,0]]],[[[-49.338646,0],[-49.422398,-0.111116],[-49.491703,-0.135965],[-49.729652,-0.146165],[-49.834511,-0.08833],[-49.789753,-0.029453],[-49.608658,0.080048],[-49.473667,0.081167],[-49.338646,0]]],[[[-50.468178,1.954309],[-50.521759,2.032818],[-50.495949,2.132139],[-50.36097,2.184949],[-50.278156,1.979913],[-50.289753,1.918047],[-50.385029,1.851751],[-50.453655,1.888889],[-50.468178,1.954309]]],[[[-50.417259,0.159027],[-50.535164,0.224685],[-50.462608,0.336403],[-50.410839,0.55379],[-50.344265,0.607861],[-50.322205,0.522035],[-50.327927,0.383135],[-50.285759,0.303913],[-50.422936,0.218963],[-50.417259,0.159027]]],[[[-50.279144,0.338005],[-50.302746,0.492859],[-50.270786,0.599276],[-50.15604,0.597438],[-50.063419,0.622501],[-50.040566,0.539145],[-50.143177,0.416123],[-50.279144,0.338005]]],[[[-48.526295,-27.461517],[-48.41151,-27.404015],[-48.372711,-27.459009],[-48.427616,-27.619358],[-48.55928,-27.812239],[-48.559452,-27.594032],[-48.526295,-27.461517]]],[[[-50.435932,0],[-50.463783,-0.019375],[-50.585838,0.022658],[-50.652618,0.126456],[-50.589558,0.203464],[-50.492748,0.171937],[-50.43351,0.122887],[-50.435932,0]]],[[[-45.251354,-23.962105],[-45.286457,-23.912882],[-45.400474,-23.937927],[-45.451954,-23.886744],[-45.368816,-23.817093],[-45.33588,-23.723289],[-45.227165,-23.773592],[-45.251354,-23.962105]]],[[[-44.581848,-3.040986],[-44.563759,-2.922857],[-44.578113,-2.797693],[-44.499783,-2.705588],[-44.493904,-2.952824],[-44.581848,-3.040986]]],[[[-50.228581,0.83244],[-50.057701,0.85676],[-50.118648,0.74872],[-50.26506,0.734278],[-50.228581,0.83244]]],[[[-44.340523,-23.231129],[-44.373276,-23.177221],[-44.215931,-23.092529],[-44.142273,-23.126642],[-44.193729,-23.201475],[-44.289715,-23.181801],[-44.340523,-23.231129]]],[[[-50,1.043166],[-49.938564,0.996133],[-50.077755,0.900017],[-50.100083,0.937074],[-50,1.043166]]],[[[-50.504452,2.255313],[-50.414169,2.244018],[-50.408089,2.167627],[-50.488731,2.149931],[-50.556934,2.226603],[-50.504452,2.255313]]],[[[-45,-1.288666],[-44.922207,-1.265165],[-44.876987,-1.309495],[-44.976906,-1.400006],[-45,-1.288666]]],[[[-44.783424,-1.682433],[-44.787289,-1.626108],[-44.725624,-1.567099],[-44.655808,-1.632451],[-44.783424,-1.682433]]]]},"properties":{"name":"巴西","name_en":"BRAZIL","id":"BRA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.090355,45.075756],[-67.149239,45.157242],[-67.277275,45.186352],[-67.343697,45.126141],[-67.48526,45.287174],[-67.430931,45.344975],[-67.495621,45.478832],[-67.407036,45.553661],[-67.61589,45.607384],[-67.810631,45.678654],[-67.808578,45.879948],[-67.783424,45.939587],[-67.782326,46.393806],[-67.79213,46.851105],[-67.786537,47.066189],[-67.887802,47.10519],[-67.95488,47.194416],[-68.165047,47.330441],[-68.367783,47.354519],[-68.389313,47.287231],[-68.583153,47.287064],[-68.895019,47.178871],[-69.049385,47.252182],[-69.037216,47.413002],[-69.225593,47.458649],[-69.996491,46.685467],[-70.056816,46.425999],[-70.216705,46.32531],[-70.301087,46.192192],[-70.244636,46.144096],[-70.311531,46.023743],[-70.2332,45.936066],[-70.259171,45.889854],[-70.409737,45.795044],[-70.388207,45.739437],[-70.638107,45.606487],[-70.713234,45.492043],[-70.624069,45.402946],[-70.715301,45.38834],[-70.876579,45.232697],[-70.951011,45.33353],[-71.094749,45.303757],[-71.13121,45.250691],[-71.2938,45.299866],[-71.398773,45.214127],[-71.424431,45.124882],[-71.510948,45.068302],[-71.53727,45],[-72.334396,45],[-73.500603,45],[-74.602715,45],[-74.88694,45.005856],[-75.300133,44.84454],[-75.728958,44.552364],[-75.804954,44.478062],[-75.940979,44.384258],[-76.199776,44.306374],[-76.315872,44.297356],[-76.434555,44.233109],[-76.724449,44.201355],[-77.073738,44.040966],[-76.942825,43.935329],[-77.145729,43.837563],[-77.20993,43.853291],[-77.28701,43.955589],[-77.430481,43.926147],[-77.556366,43.970852],[-77.604675,44.031097],[-77.712738,44.02623],[-77.872383,43.976994],[-78.284134,43.945599],[-78.468674,43.897182],[-78.66159,43.89188],[-78.710877,43.866219],[-78.924042,43.853493],[-79.076416,43.816978],[-79.264954,43.676163],[-79.464226,43.630821],[-79.57856,43.546944],[-79.71386,43.368877],[-79.792458,43.308037],[-79.741226,43.245689],[-79.58715,43.205593],[-79.311478,43.182983],[-79.128502,43.253818],[-79.05867,43.258678],[-79.041702,43.136116],[-79.065705,43.077431],[-79.016563,42.985783],[-78.914017,42.943199],[-78.9067,42.893017],[-79.106491,42.853943],[-79.256317,42.876186],[-79.476395,42.837917],[-79.697174,42.856167],[-79.935654,42.804516],[-80.206673,42.779137],[-80.444511,42.607834],[-80.614509,42.57513],[-80.864929,42.653847],[-81.23983,42.660893],[-81.342621,42.640366],[-81.519012,42.564541],[-81.776764,42.403492],[-81.975266,42.259724],[-82.100052,42.236538],[-82.396423,42.108704],[-82.49762,41.971432],[-82.672424,42.030361],[-82.932854,41.977909],[-83.142792,42.045593],[-83.126663,42.233494],[-83.072723,42.302513],[-82.828484,42.370102],[-82.683456,42.516136],[-82.524422,42.594601],[-82.463043,42.75576],[-82.455116,42.916641],[-82.416153,43.002117],[-82.152496,43.065216],[-82.02388,43.195442],[-81.861588,43.246552],[-81.769119,43.303135],[-81.7061,43.390675],[-81.722191,43.694119],[-81.715614,43.931873],[-81.748985,44.062],[-81.613938,44.208164],[-81.589958,44.289818],[-81.493866,44.402733],[-81.402199,44.428371],[-81.270912,44.607746],[-81.272575,44.752651],[-81.370926,44.912018],[-81.633507,45.261696],[-81.457451,45.226536],[-81.296761,45.243794],[-81.329445,45.13726],[-81.258148,45.075619],[-81.269638,45.016827],[-81.115677,44.914833],[-81.022354,44.893841],[-81.004814,44.802059],[-80.900879,44.789112],[-80.866394,44.628883],[-80.749214,44.719212],[-80.64463,44.718613],[-80.595146,44.614391],[-80.385803,44.53162],[-80.291756,44.527409],[-80.098671,44.463051],[-80.005447,44.527226],[-79.970795,44.644421],[-80.027771,44.721729],[-80.123825,44.750069],[-80.115486,44.807999],[-79.944527,44.864483],[-79.869621,44.769424],[-79.748383,44.746456],[-79.863815,44.955452],[-80.086723,45.082771],[-80.009438,45.109299],[-80.059441,45.199112],[-80.223656,45.281364],[-80.3022,45.413853],[-80.379517,45.434811],[-80.382019,45.587109],[-80.494537,45.553791],[-80.643379,45.725121],[-80.728508,45.909004],[-81.011101,45.94463],[-81.337585,45.96019],[-81.394959,45.986519],[-81.526657,45.94725],[-81.546959,46.046257],[-81.60907,46.110615],[-81.731628,46.059425],[-81.781906,45.982113],[-81.910637,45.985626],[-81.898109,45.896721],[-81.812317,45.865376],[-81.782303,45.77602],[-81.574188,45.783138],[-81.643326,45.682541],[-81.785721,45.534924],[-81.854385,45.511616],[-81.981072,45.565186],[-82.073562,45.569775],[-82.333939,45.68718],[-82.474144,45.698555],[-82.528633,45.746948],[-82.861534,45.779949],[-82.952057,45.831429],[-83.157578,45.85778],[-83.255035,45.902351],[-83.353996,45.844311],[-83.490562,45.933266],[-83.432907,45.998745],[-83.566048,46.101059],[-83.821205,46.114498],[-83.948448,46.050617],[-84.002441,46.144711],[-84.071823,46.184566],[-84.14225,46.412071],[-84.107811,46.503509],[-84.192497,46.535355],[-84.269295,46.488419],[-84.407295,46.494644],[-84.488136,46.450878],[-84.588959,46.570313],[-84.423874,46.676239],[-84.535362,46.826187],[-84.439598,46.838863],[-84.399925,46.909901],[-84.658127,46.953373],[-84.790604,46.994217],[-84.709442,47.096935],[-84.703834,47.181744],[-84.588623,47.280708],[-84.613479,47.336483],[-84.787491,47.473064],[-84.95076,47.531269],[-85.012703,47.602379],[-84.916824,47.772129],[-84.942177,47.818893],[-84.835579,47.915932],[-84.860886,47.95266],[-85.182823,47.954197],[-85.476242,47.913517],[-85.666809,47.920536],[-85.851921,47.970932],[-86.087723,48.15876],[-86.212082,48.398674],[-86.270721,48.57621],[-86.436112,48.762768],[-86.621521,48.755386],[-86.705871,48.807503],[-86.864594,48.745106],[-86.97509,48.791107],[-87.20655,48.754829],[-87.308067,48.767837],[-87.445671,48.832321],[-87.657776,48.851269],[-87.689255,48.887245],[-87.949738,48.928738],[-88.114357,48.99263],[-88.229553,48.918568],[-88.220085,48.830219],[-88.094215,48.775837],[-88.10656,48.694641],[-88.238899,48.57663],[-88.393883,48.534645],[-88.427292,48.624397],[-88.342606,48.668987],[-88.303719,48.750011],[-88.341766,48.814583],[-88.475418,48.84285],[-88.553665,48.734871],[-88.542389,48.639893],[-88.618706,48.618221],[-88.74527,48.351189],[-88.857879,48.396904],[-88.796791,48.572254],[-89.144524,48.476757],[-89.231537,48.419769],[-89.203239,48.306686],[-89.350647,48.090347],[-89.567459,47.992741],[-89.755028,48.020103],[-89.862091,47.987865],[-89.992905,48.020023],[-90.07621,48.098892],[-90.385712,48.088413],[-90.641228,48.100777],[-90.758835,48.086983],[-90.852043,48.239864],[-90.9589,48.230057],[-91.115303,48.166279],[-91.256355,48.079113],[-91.582947,48.049377],[-91.57756,48.10846],[-91.707367,48.112865],[-91.756187,48.200428],[-91.969177,48.226639],[-92.085312,48.365013],[-92.298355,48.354294],[-92.273315,48.253456],[-92.37912,48.230766],[-92.480522,48.348068],[-92.51976,48.44722],[-92.686127,48.44117],[-92.747078,48.544559],[-92.96167,48.612125],[-93.24041,48.646748],[-93.456726,48.594002],[-93.47055,48.547703],[-93.686318,48.519623],[-93.800957,48.524277],[-93.842728,48.632999],[-94.234344,48.651356],[-94.292335,48.709248],[-94.439224,48.695339],[-94.59069,48.720657],[-94.689339,48.776272],[-94.699043,48.891201],[-94.820572,49.168907],[-94.835899,49.319851],[-94.982643,49.363438],[-95.168426,49.388611],[-95.164673,48.99572],[-96.07206,48.995884],[-97.114151,48.993977],[-98.313126,48.995136],[-99.17466,48.994057],[-100.325073,48.99279],[-101.366417,48.995552],[-102.717583,48.992611],[-104.023682,48.990303],[-105.420883,48.997227],[-106.039101,48.994648],[-106.970345,48.993778],[-108.282516,48.995708],[-109.236328,48.999477],[-110,48.996571],[-111.155602,49.000607],[-111.912773,48.996697],[-112.863899,48.995357],[-114,48.996944],[-115.040405,48.998447],[-116.042008,49.000328],[-117.026794,48.999596],[-118.529724,49.001041],[-119.719475,49.000118],[-121.093048,48.999363],[-122.375557,48.999966],[-122.756149,49.00119],[-122.868149,49.023018],[-122.881752,49.090824],[-123.02037,49.059444],[-123.04464,49.128128],[-122.866867,49.210445],[-122.601303,49.204227],[-122.556908,49.16251],[-122.407578,49.15445],[-122.332535,49.106167],[-122.257675,49.140701],[-122.06279,49.137619],[-121.918259,49.213867],[-121.889069,49.296276],[-122.090073,49.173435],[-122.185249,49.142334],[-122.255173,49.146168],[-122.30555,49.124062],[-122.427978,49.171425],[-122.532128,49.1702],[-122.609604,49.210365],[-122.884651,49.21981],[-122.974312,49.17971],[-123.037644,49.203095],[-123.140091,49.199402],[-123.253807,49.250439],[-123.072647,49.304115],[-123.286301,49.367229],[-123.244644,49.403454],[-123.251328,49.609409],[-123.477989,49.525059],[-123.467796,49.444504],[-123.537315,49.383366],[-123.741531,49.469429],[-123.870811,49.466518],[-123.95124,49.50322],[-124.064606,49.65234],[-124.010773,49.75433],[-123.94857,49.763622],[-124.045212,49.901077],[-124.150765,49.778862],[-124.392204,49.770599],[-124.517334,49.80653],[-124.5523,49.874779],[-124.709984,49.944969],[-124.808556,50.065559],[-124.70446,50.099972],[-124.590484,50.244568],[-124.71109,50.318768],[-124.822006,50.307548],[-124.966255,50.347488],[-125.07238,50.318058],[-125.051979,50.474777],[-124.885231,50.560349],[-124.927063,50.588627],[-125.094429,50.448814],[-125.178909,50.405769],[-125.257279,50.467922],[-125.432983,50.445133],[-125.593788,50.451462],[-125.71199,50.422512],[-125.809143,50.503036],[-125.927048,50.469528],[-126.126739,50.480461],[-126.30069,50.626259],[-126.012871,50.6684],[-125.737747,50.675343],[-125.59552,50.800064],[-125.676544,50.873333],[-125.728348,50.708347],[-125.956825,50.683208],[-126.133682,50.734562],[-126.283989,50.850029],[-126.444466,50.817696],[-126.564102,50.831982],[-126.779411,50.902866],[-126.865654,50.961235],[-126.927483,50.858379],[-127.026756,50.816608],[-127.345848,50.927063],[-127.39859,50.921791],[-127.524803,51.018856],[-127.493103,51.096371],[-127.654205,51.085678],[-127.78569,51.195324],[-127.770309,51.322037],[-127.52816,51.498371],[-127.513069,51.608181],[-127.672462,51.514641],[-127.880081,51.67292],[-127.893372,51.821217],[-127.822144,51.925697],[-127.666603,51.953899],[-127.613365,52.115421],[-127.319351,52.225288],[-127.10202,52.326862],[-127.210236,52.390007],[-127.257973,52.467442],[-127.342071,52.413269],[-127.459274,52.395294],[-127.482414,52.337399],[-127.626602,52.280647],[-127.783615,52.268738],[-127.871025,52.196377],[-127.931793,52.294327],[-128.03656,52.324383],[-128.108887,52.458179],[-128.284363,52.25605],[-128.363525,52.290245],[-128.337143,52.362904],[-128.234116,52.421597],[-128.246292,52.566811],[-128.108032,52.760307],[-128.136948,52.86874],[-128.270431,52.790882],[-128.440063,52.816784],[-128.500412,52.891861],[-128.522888,53.024368],[-128.616089,53.166328],[-128.799561,53.233097],[-128.884247,53.303619],[-128.882248,53.402019],[-128.959564,53.471493],[-128.800369,53.554043],[-128.83139,53.638897],[-128.81076,53.757191],[-128.66806,53.851055],[-128.915466,53.835907],[-128.97644,53.764011],[-129.100281,53.721714],[-129.235428,53.624683],[-129.237183,53.420822],[-129.320267,53.368065],[-129.653778,53.564755],[-129.789627,53.702244],[-130.071396,53.889946],[-130.106598,53.957619],[-130.124939,54.147389],[-130.292145,54.224857],[-130.212998,54.256187],[-130.287522,54.345795],[-130.458023,54.356819],[-130.421066,54.468498],[-130.452942,54.610168],[-130.359711,54.676796],[-130.214706,54.718872],[-130.166717,54.854641],[-130.050384,54.952099],[-129.952881,55.09967],[-129.675964,55.374088],[-129.766235,55.468594],[-129.896057,55.167442],[-130.11908,54.989647],[-130.165039,55.078667],[-130.091003,55.185574],[-129.949005,55.28017],[-130.00856,55.343494],[-130.018463,55.448986],[-130.111603,55.556423],[-130.087082,55.673912],[-130.136902,55.755589],[-130.010574,55.903004],[-130.010666,56],[-130.10733,56.124535],[-130.250672,56.097202],[-130.417251,56.140877],[-130.469086,56.245045],[-130.625595,56.271912],[-130.784043,56.370392],[-131.073791,56.406818],[-131.469147,56.55492],[-131.583221,56.61451],[-131.830963,56.60091],[-131.843552,56.648071],[-131.847336,56.662312],[-131.872223,56.808132],[-132.120026,56.879803],[-132.042267,57.04644],[-132.366898,57.092178],[-132.241562,57.214241],[-132.372131,57.353298],[-132.544846,57.494354],[-132.881912,57.856197],[-133.062271,58.002327],[-133.1707,58.154446],[-133.453766,58.388897],[-133.373108,58.42699],[-133.704697,58.618069],[-133.847427,58.735752],[-134.241592,58.858574],[-134.401718,58.979607],[-134.389633,59.053547],[-134.479965,59.132103],[-134.683929,59.197491],[-134.699738,59.248711],[-134.960022,59.283901],[-135.094864,59.431946],[-135.030838,59.473507],[-135.028885,59.569237],[-135.234329,59.698383],[-135.483108,59.800018],[-135.930969,59.668461],[-136.172226,59.641815],[-136.294541,59.470951],[-136.464035,59.46553],[-136.457764,59.281422],[-136.575775,59.170059],[-136.82341,59.157921],[-137.254288,59.007549],[-137.445801,58.910595],[-137.598221,59.241577],[-137.893494,59.403839],[-138.623749,59.771629],[-138.705765,59.911114],[-139.044586,59.993969],[-139.186188,60.092613],[-139.069016,60.35199],[-139.674545,60.33947],[-139.977295,60.184658],[-140.455459,60.31152],[-140.521942,60.225739],[-141,60.321346],[-141,61.399998],[-141,62.299999],[-141,63.099998],[-141,64],[-140.998627,65],[-140.992218,69.644768],[-140.379623,69.589233],[-139.868195,69.613396],[-139.534912,69.540039],[-139.069427,69.476013],[-138.741791,69.34594],[-138.594452,69.23468],[-138.277893,69.204849],[-137.974564,69.095055],[-137.423065,68.998894],[-137.179764,68.931198],[-137.039551,68.944519],[-136.774597,68.863655],[-136.513336,68.905205],[-136.003723,68.856285],[-135.516525,68.741898],[-135.257523,68.705711],[-135.80397,68.975243],[-135.715256,69.035278],[-135.94014,69.083481],[-136.003357,69.192604],[-135.775726,69.311607],[-135.564804,69.337898],[-135.268738,69.272041],[-135.306931,69.416763],[-134.928482,69.477135],[-134.702271,69.47229],[-134.514175,69.508301],[-134.418594,69.634445],[-134.147705,69.523926],[-133.781204,69.48967],[-134.092606,69.305077],[-133.890915,69.314041],[-133.550613,69.394882],[-133.216522,69.376938],[-132.971008,69.492569],[-132.97522,69.62719],[-132.604553,69.686523],[-132.529632,69.740105],[-132.287094,69.695503],[-131.827194,69.771973],[-131.407379,69.950081],[-131.200546,69.886085],[-130.971481,70.040077],[-130.830383,70.090256],[-130.404068,70.11483],[-130.144913,70.056984],[-129.875031,70.087189],[-129.755966,70.227325],[-129.422699,70.125984],[-129.52243,69.995377],[-130.340775,69.820656],[-130.579346,69.748634],[-130.935043,69.544304],[-131.062347,69.617783],[-131.343643,69.558891],[-131.773666,69.554008],[-132,69.505997],[-132,69.281677],[-131.83493,69.293343],[-131.742188,69.364716],[-131.434524,69.472908],[-131.209579,69.456299],[-131.105484,69.507484],[-130.843323,69.354172],[-130.453064,69.565163],[-130.321503,69.686104],[-130.072189,69.70565],[-129.585266,69.8125],[-129.167221,69.825844],[-129.138687,69.687065],[-128.81601,69.747047],[-128.588242,69.873886],[-128.38356,69.937775],[-128.326446,70.010345],[-128.385788,70.094589],[-128.208572,70.151405],[-127.676125,70.194496],[-127.758545,70.240173],[-128.026444,70.270851],[-128.20575,70.391739],[-128.14064,70.502983],[-128.012161,70.560402],[-127.609543,70.444878],[-127.364387,70.348869],[-127.067055,70.163307],[-126.688759,69.736191],[-126.293541,69.524773],[-125.941185,69.396141],[-125.391838,69.331108],[-125.177292,69.372948],[-125.301628,69.44503],[-125.283028,69.576027],[-125.42144,69.599915],[-125.382652,69.685844],[-125.055344,69.743309],[-125.069992,69.785393],[-124.909721,69.940208],[-124.980873,70.009956],[-124.654861,70.191086],[-124.363846,70.07756],[-124.409111,69.850059],[-124.502533,69.726669],[-124.28067,69.694275],[-124.176735,69.637878],[-124.241592,69.556625],[-124.397606,69.49749],[-124.432686,69.419098],[-124.335953,69.335594],[-124.149887,69.332474],[-123.954331,69.383842],[-123.817032,69.341484],[-123.425644,69.410286],[-123.41111,69.47599],[-123.187195,69.520493],[-123.082947,69.679581],[-123.129273,69.766197],[-122.967621,69.826698],[-122.687492,69.802765],[-122.173691,69.791588],[-121.720062,69.801308],[-121.382355,69.763451],[-120.959931,69.66346],[-120.405457,69.439819],[-119.937263,69.343056],[-119.243088,69.302933],[-118.702423,69.235329],[-118.400398,69.112801],[-117.838349,68.993843],[-117.35276,68.956535],[-117.100731,68.896439],[-116.418716,68.862801],[-116.1763,68.828819],[-116.070618,68.893204],[-116.317696,68.951126],[-116.187408,68.992149],[-115.824257,68.93261],[-115.60202,68.98288],[-114.971817,68.870735],[-114.764366,68.748482],[-114.565582,68.733795],[-114.419472,68.625435],[-114.17762,68.559906],[-114.042435,68.429031],[-113.888626,68.404945],[-114.04567,68.294189],[-114.273895,68.227676],[-114.502342,68.25988],[-114.80761,68.253494],[-114.862679,68.153191],[-115.139649,68.144836],[-115.207344,68.098671],[-115.180122,67.99662],[-115.521149,67.912651],[-115.273018,67.877243],[-115.000633,67.796524],[-114.722824,67.821663],[-114.376206,67.747009],[-113.962379,67.725967],[-113.696152,67.691856],[-113.155464,67.708435],[-113.102936,67.679726],[-112.44059,67.682129],[-111.997337,67.757126],[-111.625381,67.731415],[-111.376061,67.745346],[-110.828743,67.804382],[-110.717369,67.865906],[-110.4431,67.942383],[-110.009544,67.999435],[-109.958565,67.886459],[-109.810616,67.87677],[-109.643539,67.710152],[-109.327545,67.736023],[-109.070473,67.730324],[-108.979385,67.66877],[-108.914719,67.520294],[-108.98143,67.450333],[-108.719879,67.458847],[-108.702888,67.61058],[-108.583603,67.619522],[-108.498367,67.489029],[-107.967506,67.279808],[-107.853027,67.06456],[-108.130668,67.082481],[-108.180428,67.008125],[-108.080864,66.91851],[-108.096733,66.853622],[-107.925423,66.803482],[-107.94001,66.730614],[-107.785988,66.712532],[-107.722549,66.632332],[-107.221184,66.352257],[-107.155754,66.371544],[-107.426468,66.546013],[-107.534355,66.582901],[-107.631859,66.707497],[-107.740005,66.976479],[-107.599518,66.98156],[-107.552582,66.899948],[-107.14344,66.875938],[-107.190765,66.97081],[-107.36261,67.029717],[-107.233421,67.102448],[-107.519097,67.212288],[-107.639046,67.346695],[-107.564003,67.500183],[-107.834717,67.662872],[-107.95108,67.689934],[-108.028656,67.782814],[-107.927094,67.867165],[-107.696144,67.89547],[-107.749191,67.986107],[-107.614311,68.062294],[-107.382538,68.041985],[-107.202385,68.100082],[-106.715462,68.128761],[-106.72892,68.218384],[-106.489059,68.241898],[-106.431236,68.34037],[-106.029091,68.406586],[-105.693291,68.441895],[-105.670174,68.536186],[-105.897766,68.641304],[-106.025421,68.600235],[-106.513855,68.510956],[-106.585136,68.478615],[-106.498703,68.367615],[-106.639771,68.355454],[-106.97509,68.391853],[-107.121521,68.281662],[-107.612328,68.354149],[-107.832771,68.339066],[-107.867454,68.171768],[-108.299774,68.160728],[-108.405968,68.226624],[-108.716217,68.235214],[-108.69606,68.362267],[-108.587929,68.402443],[-108.358658,68.604935],[-107.956612,68.635368],[-107.276146,68.704826],[-106.325874,68.895348],[-106.214783,68.939598],[-105.770615,68.881584],[-105.435074,68.735977],[-105.526306,68.673996],[-105.390427,68.568108],[-105.424294,68.476974],[-105.200203,68.320221],[-104.800346,68.315796],[-104.573677,68.239494],[-104.55661,68.083763],[-104.451943,68.022812],[-104.283882,68.046303],[-103.786621,68.030037],[-103.49659,68.077644],[-103.087433,67.901367],[-102.916603,67.917091],[-102.837318,67.8461],[-102.41655,67.79303],[-102.287087,67.723923],[-102.09774,67.766922],[-101.565857,67.684242],[-101.202057,67.764671],[-101.105103,67.73484],[-100.709572,67.826469],[-100.587097,67.808159],[-100.375549,67.858063],[-100.047035,67.816986],[-99.638115,67.822525],[-99.362496,67.79126],[-99.162712,67.736908],[-98.322418,67.799309],[-98.646339,67.927109],[-98.746155,68.053818],[-98.5839,68.096886],[-98.463745,68.252052],[-98.659477,68.341194],[-98.414215,68.381828],[-98.14872,68.31205],[-97.89962,68.365318],[-97.922928,68.554253],[-97.449531,68.522438],[-97.211411,68.469925],[-97.056679,68.31369],[-96.897675,68.254227],[-96.705826,68.284134],[-96.445763,68.252632],[-96.30291,68.20076],[-96.008125,68.254341],[-95.994522,68.11837],[-96.204163,67.838348],[-96.147858,67.748039],[-96.401627,67.549988],[-96.352836,67.482903],[-96.084312,67.425606],[-96.220955,67.309883],[-96.095528,67.223305],[-95.763794,67.339577],[-95.528152,67.326286],[-95.580422,67.207504],[-95.33873,67.157906],[-95.14212,67.284691],[-95.274834,67.334389],[-95.347092,67.459633],[-95.315346,67.562012],[-95.692688,67.74054],[-95.538857,67.808701],[-95.520439,67.912971],[-95.41513,67.994141],[-95.428177,68.068199],[-95.065567,68.080246],[-94.819534,68.041748],[-94.694206,68.062813],[-94.576485,68.156784],[-94.155235,68.292068],[-94.186027,68.377228],[-93.979881,68.468201],[-93.633873,68.53289],[-93.533577,68.600189],[-93.723503,68.628571],[-93.688713,68.757484],[-93.56546,68.844765],[-93.655762,68.986351],[-93.889687,68.995415],[-94.060578,68.882011],[-94.072098,68.766418],[-94.385956,68.730148],[-94.594848,68.763107],[-94.52594,68.871094],[-94.30809,69.047241],[-94.129295,69.123726],[-94.294823,69.168564],[-94.216263,69.342659],[-94.019676,69.367561],[-93.647858,69.361824],[-93.860992,69.266045],[-93.812065,69.176849],[-93.440552,69.329063],[-93.531395,69.384201],[-93.436653,69.478767],[-93.551743,69.538612],[-93.809753,69.499558],[-93.889183,69.443214],[-94.276665,69.447182],[-94.482109,69.562294],[-94.605369,69.681648],[-94.800636,69.565735],[-94.98513,69.620941],[-95.38913,69.690575],[-95.688599,69.797539],[-95.756065,69.76358],[-96.031311,69.821518],[-96.220108,69.965668],[-96.455353,70.087265],[-96.548889,70.250351],[-96.486092,70.379524],[-96.30436,70.427765],[-96.165993,70.624588],[-96.55677,70.78511],[-96.40371,71.177704],[-96.434006,71.295815],[-96.266129,71.29998],[-96.179672,71.400032],[-96.01178,71.432251],[-95.8339,71.392166],[-95.648208,71.296181],[-95.438614,71.395981],[-95.548935,71.503464],[-95.811066,71.517021],[-95.886825,71.616875],[-95.678886,71.653465],[-95.475822,71.737396],[-95.27417,71.764557],[-95.155419,71.961189],[-94.480926,72],[-94.366279,71.93972],[-94.44915,71.858017],[-94.372734,71.721741],[-94.087494,71.76947],[-93.664475,71.728561],[-93.792023,71.661751],[-93.634598,71.596374],[-93.183288,71.469368],[-93.118492,71.38723],[-92.94928,71.358658],[-92.923332,71.236786],[-92.837059,71.17276],[-92.885597,70.863525],[-92.672981,70.785461],[-92.531914,70.692245],[-92.199036,70.628403],[-92.235916,70.503357],[-92.022522,70.427925],[-92.015381,70.370422],[-91.689224,70.365402],[-91.673347,70.264488],[-91.521065,70.155296],[-91.931953,70.130074],[-92.276192,70.197914],[-92.502884,70.090187],[-92.1455,70.104828],[-91.945869,70.027725],[-92.544014,69.773651],[-92.463555,69.704353],[-92.183609,69.658531],[-92.2341,69.615601],[-91.784157,69.500427],[-91.461098,69.669289],[-91.254356,69.659294],[-91.162407,69.561195],[-90.758164,69.498817],[-90.694908,69.55101],[-90.408272,69.492424],[-90.758888,69.378044],[-90.801422,69.264854],[-91.145531,69.282539],[-90.648636,69.09375],[-90.682327,69.012192],[-90.438248,68.896072],[-90.545067,68.632835],[-90.463059,68.532539],[-90.594673,68.458542],[-90.288223,68.380981],[-90.266594,68.25589],[-90.094696,68.260185],[-89.959297,68.45166],[-89.820236,68.542206],[-89.923431,68.57444],[-89.887947,68.66774],[-89.673569,68.770782],[-89.744667,68.961563],[-89.628647,69.062935],[-89.46418,69.126038],[-89.370354,69.232056],[-89.093514,69.282715],[-88.967728,69.252724],[-88.796509,69.115448],[-88.648102,69.053322],[-88.220039,68.929207],[-87.923103,68.736771],[-87.917793,68.589828],[-87.766121,68.387627],[-87.775162,68.319641],[-87.910439,68.207848],[-88.175316,68.259987],[-88.366325,68.259331],[-88.255363,68.123733],[-88.376869,67.979683],[-88.12632,67.689842],[-87.877174,67.585922],[-87.45446,67.366699],[-87.324432,67.187111],[-87.042473,67.240738],[-86.843704,67.415215],[-86.62133,67.366524],[-86.518036,67.445061],[-86.423675,67.600136],[-86.499893,67.689697],[-86.391129,67.787758],[-86.053696,68.00087],[-85.863464,68.064072],[-85.874496,68.193436],[-85.760941,68.302109],[-85.692307,68.651474],[-85.579292,68.746605],[-85.268989,68.726967],[-85.210533,68.769875],[-84.726799,68.755112],[-84.843201,68.828583],[-84.996368,68.811592],[-85.016708,68.925056],[-84.714912,69.084015],[-85.292732,69.156921],[-85.441048,69.262222],[-85.404495,69.323402],[-85.507424,69.524521],[-85.412193,69.575661],[-85.517006,69.650154],[-85.410187,69.696922],[-85.32016,69.825958],[-85.065262,69.78344],[-84.867439,69.858139],[-84.530968,69.869392],[-84.086487,69.820114],[-83.937164,69.751335],[-83.585556,69.694679],[-83.260612,69.7089],[-82.686516,69.687744],[-82.507256,69.597671],[-82.624519,69.479172],[-81.980499,69.272713],[-81.619911,69.256966],[-81.300667,69.19352],[-81.229706,69.09671],[-81.456703,69.062111],[-81.607567,68.910599],[-81.296158,68.8601],[-81.198433,68.782036],[-81.211235,68.650696],[-81.565719,68.520386],[-81.720963,68.534325],[-81.785896,68.459549],[-81.996636,68.4468],[-82.440125,68.482857],[-82.438461,68.404945],[-82.25869,68.33654],[-82.198349,68.251785],[-82.320152,68.16465],[-82.190971,68.12014],[-82.077362,67.911003],[-81.551186,67.654533],[-81.372826,67.601654],[-81.199783,67.477547],[-81.326828,67.318367],[-81.35318,67.163467],[-81.442604,67.064796],[-81.708031,66.972328],[-81.912621,66.973381],[-82.145393,66.780502],[-82.527489,66.637024],[-82.566818,66.570442],[-82.982887,66.54528],[-82.984672,66.486443],[-83.425789,66.345428],[-83.64743,66.533493],[-83.934097,66.584099],[-83.985809,66.700111],[-84.262856,66.722214],[-84.259415,66.79924],[-84.548752,66.993065],[-84.975548,66.962883],[-85.084587,66.929222],[-84.968689,66.858505],[-84.846214,66.950554],[-84.558418,66.936218],[-84.360611,66.711021],[-84.141182,66.697418],[-84.134422,66.570457],[-83.891335,66.460731],[-83.82415,66.317429],[-83.714348,66.237488],[-83.915604,66.193665],[-84.14978,66.313354],[-84.366219,66.28756],[-84.386513,66.351822],[-84.591881,66.34697],[-84.357529,66.221405],[-84.357018,66.163078],[-84.824875,66.260437],[-85.24028,66.276527],[-85.314232,66.496376],[-85.435677,66.588051],[-85.814384,66.501747],[-86.084396,66.499649],[-86.28785,66.547737],[-86.576233,66.513191],[-86.739517,66.520462],[-86.767692,66.430298],[-86.591431,66.309853],[-86.321129,66.289551],[-85.877601,66.160751],[-85.987266,66.103073],[-86.009239,66.017036],[-86.396316,65.893005],[-86.417679,65.744103],[-86.694427,65.606972],[-87.064941,65.483017],[-87.180123,65.362175],[-87.336204,65.320702],[-87.874832,65.323494],[-88.177635,65.392944],[-88.414086,65.542541],[-88.781151,65.632225],[-89.388062,65.866127],[-89.692856,65.867401],[-89.777847,65.830101],[-90.087349,65.895317],[-90.258148,65.870522],[-90.382057,65.904823],[-90.823204,65.916954],[-90.925415,65.940002],[-91.142578,65.939453],[-91.298782,65.973808],[-91.470459,65.949486],[-91.108528,65.834503],[-90.953125,65.936249],[-90.722748,65.895004],[-90.473953,65.890785],[-90.00705,65.815002],[-89.626129,65.691399],[-89.438148,65.604706],[-89.401253,65.534607],[-89.168404,65.448074],[-89.039513,65.324791],[-88.582932,65.312889],[-88.305328,65.283035],[-87.750885,65.282837],[-87.23452,65.264389],[-86.922798,65.164085],[-86.962776,65.053429],[-87.18351,64.922729],[-87.295311,64.750534],[-87.464569,64.704575],[-87.56192,64.566772],[-87.762352,64.523972],[-87.839744,64.384903],[-88.192665,64.165627],[-88.553681,64.012199],[-88.768028,63.98925],[-89.083214,64.034798],[-89.220138,63.967884],[-89.346924,64.025917],[-89.867394,64.05513],[-89.846214,63.944054],[-90.14489,63.9147],[-89.975479,63.803471],[-90.259308,63.613171],[-90.322021,63.627991],[-90.730675,63.584179],[-90.638207,63.466457],[-90.965645,63.543678],[-91.034332,63.607788],[-91.389915,63.651878],[-91.553726,63.730072],[-92.05188,63.744968],[-92.398712,63.77264],[-92.528641,63.83646],[-92.664955,63.82613],[-92.811821,63.895035],[-93.539169,64],[-93.741692,63.956928],[-93.651054,63.868519],[-93.377556,63.8456],[-93.462929,63.928646],[-93.381767,63.971211],[-93.120994,63.871124],[-92.710754,63.806118],[-92.553848,63.813824],[-92.432015,63.746082],[-92.247314,63.749683],[-92.209671,63.67173],[-91.746109,63.717728],[-91.613167,63.649277],[-91.663414,63.609596],[-91.360199,63.496849],[-91.018692,63.478367],[-90.840828,63.375584],[-90.700417,63.229443],[-90.666931,63.03149],[-90.763603,62.947773],[-91.030205,62.945011],[-91.210663,62.896767],[-91.373016,62.799927],[-91.677223,62.81218],[-92.100586,62.864239],[-92.314407,62.854759],[-92.430931,62.811798],[-92.357369,62.735626],[-92.166817,62.665935],[-91.884018,62.640785],[-91.880806,62.580532],[-92.003036,62.536099],[-92.337357,62.571209],[-92.573235,62.541683],[-92.603127,62.480335],[-92.760689,62.465172],[-92.538925,62.303871],[-92.574722,62.248913],[-92.766998,62.252247],[-93.157707,62.128666],[-93.086563,62.046066],[-93.306389,62.053158],[-93.231903,61.964802],[-93.368897,61.900921],[-93.493256,61.939701],[-93.678871,61.864975],[-93.294235,61.7411],[-93.542763,61.682228],[-93.761261,61.55505],[-93.888779,61.538433],[-94.000313,61.450268],[-93.866638,61.385147],[-93.85672,61.30854],[-94.066338,61.284409],[-94.034408,61.226597],[-94.178658,61.042347],[-94.225014,60.893166],[-94.326065,60.866627],[-94.529518,60.632156],[-94.561691,60.53545],[-94.696823,60.449619],[-94.647667,60.387161],[-94.726891,60.252724],[-94.71402,60.096004],[-94.841316,59.984367],[-94.775802,59.794193],[-94.824967,59.605713],[-94.715653,59.384392],[-94.786034,59.302696],[-94.784043,59.159805],[-94.894844,59.037395],[-94.604622,58.949879],[-94.611183,58.893635],[-94.429352,58.712013],[-94.089752,58.770878],[-93.525353,58.785149],[-93.415901,58.725086],[-93.217117,58.77552],[-93.167191,58.73391],[-93.115776,58.485317],[-93.031815,58.355919],[-92.847115,58.133133],[-92.720093,57.784321],[-92.51123,57.527637],[-92.435364,57.363392],[-92.445816,57.256927],[-92.597404,57.05822],[-92.486099,57.039928],[-92.223221,57.076191],[-92.09568,57.056866],[-91.018646,57.251442],[-90.449371,57.132843],[-90.022415,57.014244],[-89.548012,56.860065],[-88.990593,56.848206],[-88.830811,56.798923],[-88.660553,56.698887],[-88.487808,56.646801],[-88.365677,56.573166],[-87.984337,56.466625],[-87.728012,56.227356],[-87.695755,56.168488],[-87.505509,56.016201],[-87.269539,55.935928],[-86.909058,55.906246],[-86.686104,55.831146],[-86.415871,55.766632],[-86.29789,55.710552],[-85.909973,55.646557],[-85.646301,55.556129],[-85.577202,55.496422],[-85.349365,55.380497],[-85.133339,55.327019],[-85.115074,55.255279],[-84.987816,55.277241],[-84.801766,55.234169],[-84.497643,55.236904],[-84.212738,55.275631],[-84.090744,55.247284],[-83.911224,55.295231],[-83.761528,55.251473],[-83.657784,55.264374],[-83.460762,55.211277],[-83.250946,55.21944],[-83.151138,55.198212],[-82.966423,55.223709],[-82.882522,55.144978],[-82.705635,55.163937],[-82.515022,55.089169],[-82.277519,55.04567],[-82.220428,54.758713],[-82.29451,54.655411],[-82.320526,54.508251],[-82.428657,54.331467],[-82.436951,54.199833],[-82.238533,54.028706],[-82.133407,53.823406],[-82.20536,53.650604],[-82.202751,53.506447],[-82.117599,53.268417],[-82.26738,53.13887],[-82.292763,52.967209],[-81.968796,52.772312],[-81.88752,52.659706],[-81.772903,52.60265],[-81.549316,52.429722],[-81.564812,52.356258],[-81.486626,52.215782],[-81.393616,52.115879],[-81.171707,52.04092],[-80.988449,52.011559],[-80.929909,51.924496],[-80.671028,51.798252],[-80.576248,51.697437],[-80.566193,51.616497],[-80.435074,51.455433],[-80.441925,51.383209],[-80.323158,51.31665],[-80.126518,51.292561],[-79.891746,51.173988],[-79.759468,51.186394],[-79.683891,51.263157],[-79.740547,51.374828],[-79.508476,51.472931],[-79.504143,51.562828],[-79.355049,51.665241],[-79.232971,51.624485],[-79.259346,51.509468],[-79.098763,51.534969],[-78.90377,51.382408],[-78.78846,51.475613],[-78.856377,51.62582],[-78.925629,51.651218],[-79.039131,51.769894],[-78.842285,51.840412],[-78.863647,51.942615],[-78.721046,51.981499],[-78.584968,52.098991],[-78.535889,52.192814],[-78.568329,52.284267],[-78.515503,52.314781],[-78.510361,52.455841],[-78.702171,52.589287],[-78.747536,52.852665],[-78.903076,52.914402],[-78.965729,52.992401],[-78.964615,53.112549],[-78.91388,53.203781],[-78.973778,53.274517],[-78.955261,53.386181],[-79.094795,53.464375],[-79.09259,53.515678],[-78.906601,53.542755],[-79.018082,53.604591],[-79.039719,53.810326],[-78.982414,53.884552],[-79.074882,54.159046],[-79.254341,54.186859],[-79.456642,54.327633],[-79.52771,54.584812],[-79.670303,54.628265],[-79.560356,54.721466],[-78.988434,54.828503],[-78.838257,54.907391],[-78.756775,54.907047],[-78.501099,55.000729],[-78.314239,55.042728],[-78.179024,55.126179],[-77.82206,55.261589],[-77.585838,55.384491],[-77.203819,55.610348],[-77.142151,55.702477],[-77.004845,55.799168],[-76.800606,55.996769],[-76.718147,56.027889],[-76.659363,56.192795],[-76.549644,56.307049],[-76.536941,56.817966],[-76.585648,57.14196],[-76.641533,57.324448],[-76.844635,57.595955],[-76.852981,57.676098],[-77.050888,57.888409],[-77.192215,58.009415],[-77.421966,58.134533],[-77.515114,58.213909],[-78.075394,58.393265],[-78.264816,58.531521],[-78.555931,58.670506],[-78.590218,58.775936],[-78.488037,58.890427],[-78.377495,58.911953],[-78.242805,59.050831],[-78.164978,59.201668],[-77.842117,59.295792],[-77.775207,59.42289],[-77.910744,59.464138],[-77.775894,59.533859],[-77.801781,59.683983],[-77.626198,59.702751],[-77.483475,59.781406],[-77.327026,59.791531],[-77.4039,59.890019],[-77.342606,60.003662],[-77.580986,60.040901],[-77.627029,60.102798],[-77.520012,60.23307],[-77.729294,60.446072],[-77.597603,60.497448],[-77.812668,60.597126],[-77.844978,60.656982],[-77.684075,60.73877],[-77.748123,60.789795],[-78.046471,60.789566],[-78.199905,60.861465],[-77.840164,61.056362],[-77.773621,61.231865],[-77.822899,61.459907],[-77.701263,61.532135],[-77.813904,61.693661],[-77.972549,61.685715],[-78.158615,61.996849],[-78.173134,62.299522],[-78.042267,62.362843],[-77.587349,62.526699],[-77.521729,62.584991],[-77.061203,62.530621],[-76.942856,62.53933],[-76.673157,62.464725],[-76.315117,62.419346],[-75.99617,62.330547],[-75.646995,62.301968],[-75.510941,62.257153],[-75.34832,62.320381],[-74.986305,62.271328],[-74.726662,62.208439],[-74.61039,62.261791],[-74.413216,62.244827],[-74.178719,62.340321],[-73.978256,62.363228],[-73.839638,62.462082],[-73.655563,62.474026],[-73.553261,62.39624],[-73.186516,62.314991],[-73.046784,62.18692],[-72.600258,62.113461],[-72.59111,61.947708],[-72.174911,61.853821],[-72.110458,61.766907],[-72.001778,61.720745],[-71.632218,61.654545],[-71.60405,61.556809],[-71.773102,61.525993],[-71.765388,61.465118],[-71.648567,61.404461],[-71.718254,61.280899],[-71.580918,61.255623],[-71.442421,61.171333],[-71.213646,61.162796],[-71.114494,61.125965],[-70.746437,61.088409],[-70.617081,61.04174],[-70.308998,61.102737],[-70.104126,61.064674],[-70.15567,61.005516],[-70.082329,60.881176],[-69.90303,60.798885],[-69.81971,60.894772],[-69.652626,60.873756],[-69.676071,61.02697],[-69.508385,61.070076],[-69.375725,60.917397],[-69.42305,60.781353],[-69.593773,60.73317],[-69.677055,60.671299],[-69.744362,60.301594],[-69.658546,60.27895],[-69.594513,60.166481],[-69.612923,60.107021],[-69.864075,59.994892],[-69.961624,60.017178],[-70.076416,59.959278],[-69.712051,59.957989],[-69.712189,59.890911],[-69.599846,59.839676],[-69.568336,59.768662],[-69.649864,59.701279],[-69.499962,59.671665],[-69.52256,59.61536],[-69.666191,59.573662],[-69.678604,59.477306],[-69.597427,59.320171],[-69.454254,59.359673],[-69.236504,59.303955],[-69.226669,59.235405],[-69.360901,59.198044],[-69.498352,59.204369],[-69.442062,59.107887],[-69.254471,59.164253],[-69.179657,59.141335],[-69.161278,59.03204],[-69.337273,59.103176],[-69.469528,59.011055],[-69.444,58.906204],[-69.659523,58.790817],[-69.685753,58.948727],[-69.808235,58.95591],[-69.791435,58.831993],[-70.072281,58.788284],[-70.029564,58.734318],[-69.748207,58.633068],[-69.687324,58.715874],[-69.489975,58.789963],[-69.390076,58.865021],[-69.153351,58.903717],[-68.858162,58.887211],[-68.60807,58.901489],[-68.351456,58.781235],[-68.343109,58.598106],[-68.134064,58.524708],[-67.911102,58.493595],[-67.931106,58.372021],[-67.860481,58.322422],[-68.108521,58.122852],[-68.000786,58.126801],[-67.962013,58.211346],[-67.83548,58.281616],[-67.836922,58.407948],[-67.719658,58.429897],[-67.738625,58.275494],[-67.585075,58.223381],[-67.427589,58.29681],[-67.015434,58.425636],[-66.627152,58.50116],[-66.613365,58.621006],[-66.496178,58.72036],[-66.451042,58.830944],[-66.375679,58.854122],[-66.168701,58.743267],[-66.037788,58.762375],[-66.066422,58.837746],[-65.995194,58.90839],[-65.833313,58.957424],[-65.772354,59.044781],[-65.573235,59.074718],[-65.73085,59.164436],[-65.516289,59.290508],[-65.567757,59.361797],[-65.390823,59.471512],[-65.430741,59.585136],[-65.538513,59.742813],[-65.228439,59.840393],[-65.222122,59.932655],[-65.083244,59.93663],[-65.134079,60.046448],[-64.956864,60.191193],[-64.944687,60.269737],[-64.804047,60.315201],[-64.596016,60.334953],[-64.36969,60.200607],[-64.417976,60.147873],[-64.277908,59.963055],[-64.061379,59.871605],[-64.048157,59.781975],[-63.916908,59.654823],[-63.942058,59.60434],[-63.721405,59.493534],[-63.825516,59.399097],[-63.694771,59.328575],[-63.542645,59.339439],[-63.36235,59.185974],[-63.396404,59.090252],[-63.298065,59.01561],[-63.160069,58.970001],[-63.230152,58.867546],[-62.993503,58.876034],[-62.894062,58.793278],[-62.846127,58.668396],[-63.132897,58.475265],[-63.010464,58.412571],[-62.923195,58.471882],[-62.785057,58.488876],[-62.642548,58.422028],[-62.633316,58.291622],[-62.580734,58.224796],[-62.667415,58.161148],[-62.312855,58.042805],[-62.378681,57.988041],[-62.227787,57.92094],[-62.123943,57.955315],[-62.040501,57.899841],[-61.886711,57.871315],[-61.890819,57.801491],[-61.999008,57.744122],[-61.891033,57.626686],[-62.074017,57.584427],[-62.198235,57.463341],[-62.058846,57.45612],[-61.807812,57.371105],[-61.953942,57.242641],[-61.870544,57.174919],[-61.703842,57.143471],[-61.47871,57.157143],[-61.36314,57.094036],[-61.379013,56.975468],[-61.482899,56.979271],[-61.722896,56.805683],[-61.741928,56.747742],[-61.655697,56.64209],[-61.786728,56.480419],[-61.939312,56.497295],[-61.951992,56.420689],[-61.824154,56.402443],[-61.659737,56.317715],[-61.740932,56.24239],[-61.907536,56.294872],[-62.016834,56.23975],[-61.793648,56.189068],[-61.687042,56.221462],[-61.394649,56.175781],[-61.343109,56.105667],[-61.378975,55.99078],[-61.134354,55.97908],[-61.03336,55.850895],[-60.755455,55.850117],[-60.509564,55.774811],[-60.308037,55.745682],[-60.469929,55.652103],[-60.38332,55.60857],[-60.342331,55.502899],[-60.201515,55.432884],[-60.347145,55.385944],[-60.467918,55.244968],[-60.347637,55.167736],[-60.240059,55.258663],[-60.042042,55.19968],[-59.910351,55.230801],[-59.836125,55.305916],[-59.703846,55.255646],[-59.768532,55.141354],[-59.419128,55.155033],[-59.603847,54.946053],[-59.348545,55.090099],[-59.259426,55.195362],[-58.990311,55.148384],[-58.944298,55.067242],[-59.003616,55.032406],[-58.886051,54.933704],[-58.941208,54.871487],[-58.850174,54.80423],[-58.437107,54.759766],[-58.207832,54.795101],[-58.127331,54.870544],[-57.962906,54.866505],[-57.948433,54.776798],[-57.827244,54.731533],[-57.664265,54.621876],[-57.440941,54.650681],[-57.364655,54.501305],[-57.495575,54.426002],[-57.68742,54.364315],[-57.843136,54.392803],[-58.165157,54.358021],[-58.271851,54.238167],[-58.431854,54.233563],[-58.613506,54.163944],[-59.224045,54.080929],[-58.986195,54.05825],[-58.468452,54.192951],[-58.438549,54.160133],[-58.636764,54.026772],[-58.856655,54.041267],[-59.008217,53.952049],[-59.091801,53.953671],[-59.559872,53.820045],[-59.842232,53.846977],[-59.980202,53.788044],[-60.094265,53.678944],[-60.07576,53.552433],[-60.120125,53.461994],[-60.316078,53.395332],[-60.052788,53.338432],[-59.890774,53.48558],[-59.703873,53.535145],[-59.574364,53.528725],[-59.268272,53.685303],[-59.068157,53.687443],[-59.006451,53.740585],[-59.010979,53.823517],[-58.704998,53.954258],[-58.325382,54.053535],[-58.402023,54.128815],[-58.374042,54.187569],[-58.154057,54.230904],[-57.830757,54.196655],[-57.641369,54.204933],[-57.399223,54.176605],[-57.265327,53.991547],[-57.196705,53.950878],[-57.179665,53.864334],[-57.080471,53.806183],[-57.117653,53.73122],[-57.256737,53.678761],[-57.336407,53.605858],[-57.272667,53.53355],[-57.127247,53.533764],[-57.129414,53.620663],[-56.954796,53.728527],[-56.612915,53.742378],[-56.44212,53.773766],[-56.443371,53.712982],[-56.56015,53.698807],[-56.516007,53.621845],[-56.354282,53.628437],[-55.976459,53.546978],[-55.993114,53.496536],[-56.15678,53.498047],[-55.878651,53.374817],[-55.867321,53.309902],[-55.769917,53.228443],[-55.763298,53.121574],[-55.901386,53.029655],[-55.888397,52.94294],[-55.796948,52.839241],[-55.910751,52.818779],[-56.01585,52.748035],[-55.951557,52.677177],[-55.806004,52.698818],[-55.755608,52.609112],[-55.891167,52.610989],[-56.002571,52.552387],[-55.973789,52.502193],[-55.828396,52.512634],[-55.641987,52.425457],[-55.620449,52.363754],[-55.77636,52.364037],[-55.826916,52.320087],[-55.629761,52.2066],[-55.6889,52.086121],[-55.887989,51.959713],[-56.200127,51.78968],[-56.413113,51.725174],[-56.51709,51.667999],[-56.674492,51.634735],[-56.817322,51.473442],[-56.950508,51.422218],[-57.194233,51.403858],[-57.252781,51.491978],[-57.475365,51.443459],[-57.886665,51.374481],[-58.019169,51.29554],[-58.296444,51.254448],[-58.421406,51.305008],[-58.64093,51.200306],[-58.62072,51.137428],[-58.876179,51.023834],[-58.96508,51.004173],[-58.944225,50.819309],[-59.258392,50.741356],[-59.249641,50.706554],[-59.44828,50.60022],[-59.466473,50.553703],[-59.602242,50.463428],[-59.787575,50.421574],[-59.866844,50.368294],[-59.913959,50.269218],[-60.111782,50.234859],[-60.214474,50.264267],[-60.388775,50.211395],[-60.531384,50.229435],[-60.608295,50.196674],[-60.75864,50.229015],[-60.950955,50.189342],[-61.030209,50.218189],[-61.139458,50.183411],[-61.323109,50.183842],[-61.647255,50.097134],[-61.803486,50.123218],[-61.818924,50.183998],[-62.210094,50.221466],[-62.340702,50.269238],[-62.44799,50.246941],[-62.97036,50.275341],[-63.242004,50.218956],[-63.472252,50.242733],[-63.60466,50.229553],[-63.834476,50.297226],[-64.093758,50.284027],[-64.153061,50.251709],[-64.457031,50.314102],[-64.619995,50.28027],[-64.899994,50.270828],[-65.185272,50.286106],[-65.275009,50.308044],[-65.464447,50.299438],[-65.690552,50.261108],[-65.998619,50.271797],[-66.086525,50.19249],[-66.314163,50.209717],[-66.469726,50.26194],[-66.723328,50.078331],[-66.920273,50.000275],[-67.016403,49.854713],[-67.118744,49.834991],[-67.174164,49.764717],[-67.23986,49.584713],[-67.231941,49.475128],[-67.372078,49.329994],[-67.573616,49.329578],[-68.13427,49.259296],[-68.194367,49.110096],[-68.369446,49.069443],[-68.44249,49.095543],[-68.590561,49.054161],[-68.69638,48.939987],[-69.059364,48.766384],[-69.154167,48.588673],[-69.228264,48.586311],[-69.296936,48.452213],[-69.435272,48.305408],[-69.678329,48.140827],[-69.80555,48.154713],[-69.96833,48.271938],[-70.099991,48.267212],[-70.424027,48.361244],[-70.63501,48.390549],[-70.779999,48.435547],[-70.775284,48.349297],[-70.464172,48.349159],[-70.204307,48.266106],[-69.928741,48.219158],[-69.732498,48.107563],[-69.786392,47.994713],[-69.930824,47.768745],[-70.132767,47.644997],[-70.226112,47.497425],[-70.461945,47.429993],[-70.586121,47.257774],[-70.727364,47.098465],[-70.973618,47.003326],[-71.194298,46.852352],[-70.986938,46.854164],[-70.486389,47.033608],[-70.043465,47.39423],[-69.967499,47.505829],[-69.805832,47.613052],[-69.593063,47.808884],[-69.450561,47.979157],[-69.275284,48.067772],[-69.016403,48.254166],[-68.83168,48.344711],[-68.535416,48.4543],[-68.453613,48.532494],[-68.342507,48.557911],[-68.236938,48.625549],[-67.973617,48.695541],[-67.531387,48.859161],[-67.087784,48.960823],[-66.722504,49.089989],[-66.421661,49.162766],[-66.081673,49.219154],[-65.496948,49.261665],[-64.996948,49.220268],[-64.825561,49.187767],[-64.597359,49.114712],[-64.317146,48.942761],[-64.21994,48.8671],[-64.246498,48.794067],[-64.354027,48.750164],[-64.188263,48.636215],[-64.281631,48.611191],[-64.296905,48.545677],[-64.227119,48.4953],[-64.329315,48.41],[-64.48259,48.39616],[-64.667824,48.340069],[-64.802605,48.19278],[-64.96035,48.142601],[-65.154961,48.043121],[-65.328743,48],[-65.468925,48.000004],[-65.54097,48.056854],[-65.820564,48.114731],[-65.948303,48.192818],[-66.051567,48.105698],[-66.273003,48.086182],[-66.354096,48.005039],[-65.908707,47.918674],[-65.73745,47.828865],[-65.701195,47.702225],[-65.615524,47.64875],[-65.495193,47.668243],[-65.192108,47.81469],[-65.08387,47.784569],[-64.815689,47.804134],[-64.760132,47.689999],[-64.841965,47.582714],[-64.877518,47.460995],[-64.958328,47.359406],[-64.979019,47.280109],[-65.064384,47.257885],[-65.275177,47.113537],[-65.151771,47.043579],[-65.032562,47.087826],[-64.831924,47.054142],[-64.817268,46.97081],[-64.910904,46.868286],[-64.892403,46.744774],[-64.789139,46.681038],[-64.722443,46.687397],[-64.723297,46.568855],[-64.624603,46.421082],[-64.579452,46.274075],[-64.376762,46.218979],[-64.274307,46.236286],[-64.095673,46.165421],[-63.981415,46.181763],[-63.795093,46.133705],[-63.926582,46.050674],[-64.081017,46.05072],[-64.076195,46.002865],[-63.949226,45.991139],[-63.773334,45.876751],[-63.473289,45.875561],[-63.272682,45.72504],[-63.064472,45.79071],[-62.718731,45.759586],[-62.482902,45.604557],[-62.094597,45.785423],[-61.986977,45.881859],[-61.815998,45.637047],[-61.655026,45.636868],[-61.581341,45.698692],[-61.498661,45.700077],[-61.392773,45.593235],[-61.259884,45.52758],[-61.268577,45.464146],[-61.4827,45.396606],[-61.478065,45.357483],[-61.276222,45.345078],[-61.154823,45.362598],[-60.987774,45.337231],[-61.120449,45.221195],[-61.337261,45.259689],[-61.477287,45.158089],[-61.559349,45.170906],[-61.783798,45.090824],[-62,45.03598],[-62.025081,44.976696],[-62.253464,44.955898],[-62.423157,44.870762],[-62.552147,44.85524],[-62.666271,44.799976],[-62.804706,44.775055],[-62.851688,44.707767],[-62.957909,44.724125],[-63.050239,44.670822],[-63.148533,44.685677],[-63.3307,44.641922],[-63.452076,44.588814],[-63.552143,44.643101],[-63.538071,44.481625],[-63.647629,44.464935],[-63.916706,44.489189],[-63.938026,44.660751],[-64.039169,44.627724],[-64.017227,44.525425],[-64.129883,44.504974],[-64.243668,44.534203],[-64.343704,44.406891],[-64.259163,44.355087],[-64.44239,44.195744],[-64.62001,44.073528],[-64.849266,43.817684],[-64.931381,43.79792],[-65.04377,43.71611],[-65.24176,43.674622],[-65.329979,43.694431],[-65.352646,43.585606],[-65.446449,43.594505],[-65.476105,43.496647],[-65.548813,43.51421],[-65.731659,43.494583],[-65.818024,43.607906],[-65.861771,43.799732],[-65.98278,43.791275],[-65.99205,43.738361],[-66.126015,43.740398],[-66.125771,43.82584],[-66.172119,43.904869],[-66.153984,44.007519],[-66.211555,44.109249],[-66.135117,44.245296],[-66.126327,44.329376],[-65.976295,44.480671],[-65.853897,44.561745],[-65.922249,44.610519],[-65.6539,44.766502],[-65.099228,45.024315],[-64.955475,45.103096],[-64.766838,45.169098],[-64.46241,45.240952],[-64.3582,45.162857],[-64.223656,45.106812],[-64.176483,45.184429],[-63.900078,45.278233],[-63.729942,45.316368],[-63.494122,45.313141],[-63.604115,45.39024],[-64.046021,45.38166],[-64.07196,45.406128],[-64.4366,45.372883],[-64.544388,45.40152],[-64.714455,45.354649],[-64.948837,45.336796],[-64.917389,45.424606],[-64.689484,45.535435],[-64.460678,45.679954],[-64.427254,45.793457],[-64.572441,45.827816],[-64.674034,45.735794],[-64.778419,45.600494],[-64.863899,45.629387],[-64.985756,45.553165],[-65.139465,45.517723],[-65.351654,45.439693],[-65.73642,45.251656],[-65.812035,45.257385],[-65.904907,45.193893],[-66.009995,45.24995],[-66.157944,45.222218],[-66.225792,45.144138],[-66.421959,45.100025],[-66.514977,45.142536],[-66.651497,45.078918],[-66.807076,45.042511],[-66.916565,45.062569],[-66.899322,45.130253],[-67.02475,45.163765],[-67.090355,45.075756]]],[[[-74.050514,64.692009],[-74.29837,64.623878],[-74.383476,64.565376],[-74.643166,64.685707],[-74.687881,64.804954],[-74.859833,64.769486],[-74.815468,64.700508],[-74.661766,64.666809],[-74.443695,64.561333],[-74.64431,64.535568],[-74.500519,64.446411],[-74.708649,64.373077],[-74.944748,64.40892],[-75.119904,64.475929],[-75.284081,64.462769],[-75.43396,64.530014],[-75.798019,64.535561],[-75.818947,64.365425],[-75.944847,64.403068],[-76.155014,64.378342],[-76.393066,64.286247],[-76.54036,64.304916],[-76.832588,64.209419],[-77.118721,64.29036],[-77.358032,64.23761],[-77.379166,64.297012],[-77.863129,64.35685],[-77.836754,64.417381],[-77.957397,64.469368],[-78.19751,64.642464],[-78.183159,64.750092],[-78.091301,64.791512],[-78.136734,64.950508],[-77.964531,65.046577],[-77.765732,65.079559],[-77.639824,65.138351],[-77.488289,65.127892],[-77.307083,65.19471],[-77.510666,65.308426],[-77.414383,65.465095],[-77.268204,65.470764],[-77.112785,65.411552],[-76.818733,65.425285],[-76.267197,65.318451],[-76.00956,65.252319],[-75.905182,65.32502],[-75.5718,65.270592],[-75.132637,65.259117],[-75.122437,65.37735],[-74.756058,65.379227],[-74.529487,65.326271],[-74.344627,65.409294],[-74.199318,65.52269],[-73.88678,65.534821],[-73.697037,65.455277],[-73.513313,65.497643],[-73.704292,65.675003],[-73.725906,65.770538],[-73.99411,65.831383],[-74.41674,66.078476],[-74.457573,66.155914],[-74.359833,66.216476],[-73.982132,66.326523],[-73.729752,66.444946],[-73.396027,66.565109],[-73.282814,66.668533],[-72.948753,66.74073],[-72.994141,66.793816],[-72.818664,67.010017],[-72.633034,67.079971],[-72.441025,67.080315],[-72.268898,67.15435],[-72.242378,67.244934],[-72.438904,67.477287],[-72.498528,67.634575],[-72.657524,67.68998],[-72.56456,67.747238],[-72.7071,67.835243],[-72.836128,67.85128],[-72.945259,67.99897],[-72.9049,68.065254],[-72.977997,68.199364],[-73.281006,68.282768],[-73.406197,68.259178],[-73.858002,68.341324],[-73.959366,68.41214],[-73.870468,68.492447],[-73.721428,68.525108],[-73.73526,68.662621],[-73.911522,68.71283],[-74.175423,68.735786],[-73.883919,68.558655],[-73.987946,68.498138],[-74.304619,68.536484],[-74.489487,68.650269],[-74.866791,68.820129],[-74.662308,68.875671],[-74.711296,68.939163],[-75.056595,68.949448],[-75.174728,68.890877],[-75.349251,68.952095],[-75.957611,68.81797],[-76.056984,68.760368],[-76.401649,68.680855],[-76.578156,68.676888],[-76.650353,68.759758],[-76.501511,68.863716],[-76.639679,68.939682],[-76.59182,69.034218],[-76.388115,69.057983],[-76.053917,69.002945],[-75.600037,69.077271],[-75.59758,69.242645],[-75.726501,69.29995],[-76.199516,69.42408],[-76.407059,69.453331],[-76.722305,69.563148],[-77.139427,69.627228],[-77.148987,69.676338],[-76.861122,69.684631],[-76.903641,69.801117],[-77.473442,69.856339],[-77.681503,69.828644],[-77.686737,70.022148],[-77.644127,70.170364],[-77.876976,70.267021],[-78.207527,70.199554],[-78.372177,70.210533],[-78.726906,70.448906],[-79.047112,70.472305],[-79.155281,70.423317],[-79.425247,70.494278],[-79.573471,70.439224],[-79.230034,70.319336],[-78.935539,70.322548],[-78.761826,70.195206],[-78.746757,70.081131],[-78.658928,69.974625],[-78.868744,69.89946],[-79.493416,69.896431],[-79.698311,69.865074],[-79.965752,70.028015],[-80.26857,69.994835],[-80.552361,70.059158],[-80.943024,70.066147],[-81.703583,70.140488],[-81.690811,70.083122],[-81.378265,70.016663],[-81.166336,70.002174],[-81.117302,69.945755],[-80.767426,69.798508],[-81.025192,69.761391],[-81.421295,69.927063],[-81.711693,69.955269],[-81.834976,69.868843],[-82.123611,69.818924],[-82.323051,69.830689],[-82.628898,69.890266],[-83.037437,70.021439],[-83.469154,69.977699],[-83.782883,69.965561],[-84.074913,69.997444],[-84.642128,70.011498],[-85.292938,70.114616],[-85.340233,70.043297],[-85.833221,70.017578],[-86.24984,70.120811],[-86.550682,70.247597],[-86.534111,70.355453],[-86.861115,70.332359],[-86.990257,70.292129],[-87.500961,70.338562],[-87.844841,70.249496],[-88.201172,70.335381],[-88.230469,70.420052],[-88.665153,70.468918],[-88.994408,70.63652],[-89.054092,70.707878],[-89.319641,70.805839],[-89.417503,70.911995],[-89.206322,70.991104],[-89.192589,71.043114],[-88.654251,71.053352],[-88.350189,71.013664],[-88.32666,70.968765],[-87.976784,70.940804],[-87.342163,70.959381],[-87.261505,71.032288],[-87.710678,71.140427],[-87.821731,71.190506],[-87.821091,71.273926],[-88.225601,71.242348],[-88.672501,71.254738],[-89.778938,71.335106],[-89.988724,71.464699],[-89.937149,71.521843],[-90.025696,71.610252],[-89.793144,71.769501],[-90.016129,71.906876],[-90.015381,72.066086],[-89.74321,72.131989],[-89.93718,72.256279],[-89.916733,72.417],[-89.783424,72.463814],[-89.731011,72.615334],[-89.516014,72.632011],[-89.531845,72.77681],[-89.291511,72.89167],[-89.350548,72.998039],[-88.990471,73.285637],[-88.398437,73.524208],[-88.000214,73.649567],[-87.225731,73.792007],[-86.684387,73.846016],[-86.140274,73.861336],[-85.533356,73.819962],[-85.087761,73.809608],[-84.832077,73.74575],[-84.931579,73.668877],[-85.194694,73.608131],[-85.918022,73.366371],[-86.117569,73.26059],[-86.184952,73.165649],[-86.424881,72.971695],[-86.644058,72.875755],[-86.734795,72.725037],[-86.605217,72.609879],[-86.33374,72.501404],[-86.229774,72.413719],[-86.402885,72.301567],[-86.389511,72.018501],[-86.098442,71.798286],[-85.477585,71.545395],[-84.899635,71.425537],[-84.814659,71.292191],[-85.16037,71.279572],[-85.48851,71.18605],[-85.732613,71.199493],[-85.949181,71.168045],[-86.227028,71.065422],[-86.762871,71.016594],[-86.68306,70.983307],[-86.214516,71.018219],[-85.729256,71.153488],[-84.77874,71.201736],[-84.675735,71.231804],[-84.781937,71.328262],[-84.698448,71.442833],[-84.558372,71.446266],[-84.524658,71.545486],[-84.638771,71.593109],[-84.665894,71.688911],[-84.962753,71.658234],[-85.202888,71.672417],[-85.484879,71.774338],[-85.526253,71.900162],[-85.765755,71.966202],[-85.766022,72.028122],[-85.524612,72.064652],[-85.419281,72.140053],[-85.520668,72.239357],[-85.218689,72.268684],[-84.970856,72.251289],[-85.02417,72.375435],[-85.329666,72.410568],[-85.51429,72.463814],[-85.698601,72.647171],[-85.642944,72.916977],[-85.491379,73.024422],[-85.419784,73.139381],[-85.063698,73.142914],[-84.816109,73.087395],[-84.228882,73.051689],[-84.210884,73.086548],[-84.622368,73.124824],[-85.17128,73.225021],[-85.118202,73.317474],[-84.955917,73.361763],[-84.149643,73.482674],[-83.250648,73.644463],[-83.041802,73.656967],[-82.853928,73.73848],[-82.273315,73.725616],[-81.610115,73.729652],[-81.258629,73.57943],[-81.144302,73.380318],[-81.199791,73.285225],[-81.098915,73.241364],[-80.617477,73.167175],[-80.505302,73.092537],[-80.63028,72.930191],[-80.478661,72.828743],[-80.227669,72.733902],[-80.518425,72.641548],[-80.501335,72.588654],[-80.902679,72.461357],[-80.470306,72.483879],[-80.49781,72.386566],[-80.773384,72.290123],[-80.893974,72.188705],[-80.741363,72.108353],[-81.077095,72.045441],[-80.531471,72.006477],[-80.320923,72.083794],[-80.486305,72.182167],[-80.211281,72.197533],[-80.238228,72.30127],[-79.853683,72.435326],[-79.844704,72.498138],[-79.327202,72.407242],[-78.932564,72.274712],[-78.442039,72.396217],[-78.544037,72.508057],[-78.418556,72.586655],[-77.956123,72.69809],[-77.582512,72.759407],[-77.047348,72.75528],[-76.742065,72.724426],[-76.667869,72.64135],[-76.133011,72.590317],[-75.806145,72.589569],[-75.160293,72.491821],[-75.192681,72.460525],[-74.923569,72.260704],[-75.024315,72.123528],[-74.207596,72.063499],[-74.101936,71.956444],[-74.234161,71.819099],[-74.473701,71.799362],[-74.822662,71.729637],[-74.600807,71.650803],[-74.322136,71.683235],[-74.262543,71.729897],[-73.699425,71.776749],[-73.584274,71.726898],[-73.870377,71.613388],[-73.547333,71.550423],[-73.642631,71.444908],[-73.054901,71.290276],[-72.932633,71.328857],[-72.979042,71.408333],[-72.766113,71.420082],[-72.826027,71.510139],[-72.655632,71.525932],[-72.576706,71.652229],[-71.918526,71.570229],[-71.534836,71.493805],[-71.286713,71.382027],[-71.132545,71.251083],[-71.323768,71.178871],[-71.464188,71.065422],[-71.856483,71.113968],[-72.073349,71.079742],[-72.155357,70.964699],[-72.319985,70.881065],[-72.167214,70.778198],[-71.911598,70.790817],[-71.550812,70.873238],[-71.289612,70.885788],[-71.163513,71.029388],[-70.791778,71.120903],[-70.599464,71.062874],[-70.501762,70.923592],[-70.730965,70.769562],[-71.095779,70.660591],[-71.303184,70.304794],[-71.221969,70.308296],[-71.088837,70.459465],[-70.992622,70.629982],[-70.825127,70.642418],[-70.586761,70.725647],[-70.222099,70.789772],[-69.854012,70.879181],[-69.760925,70.85984],[-69.917122,70.74511],[-70.15776,70.654091],[-70.028191,70.620468],[-69.76313,70.715553],[-69.504997,70.774818],[-69.258591,70.786079],[-69.091926,70.71386],[-68.348549,70.578659],[-68.27858,70.544769],[-68.441391,70.385933],[-68.901009,70.295578],[-69.379272,70.260078],[-69.631317,70.147621],[-69.189499,70.195007],[-68.818611,70.212799],[-68.633156,70.165581],[-68.867798,70.015167],[-68.701248,69.935692],[-68.435127,70.070435],[-68.182655,70.129242],[-68.316521,70.209648],[-68.106827,70.321999],[-67.776329,70.257217],[-67.395599,70.070778],[-67.215012,69.892036],[-67.110481,69.731972],[-67.40332,69.713974],[-67.767082,69.778595],[-68.044594,69.767586],[-68.290733,69.627617],[-68.553047,69.582176],[-67.979828,69.461441],[-67.765854,69.486679],[-67.182495,69.458908],[-66.843445,69.367127],[-66.647286,69.249031],[-66.759483,69.13958],[-66.977684,69.183029],[-67.322723,69.193405],[-67.467003,69.16526],[-67.712341,69.184456],[-68.179291,69.314308],[-68.104401,69.202881],[-68.162895,69.146645],[-67.837272,69.055092],[-68.049927,68.947678],[-68.122055,68.835953],[-68.600426,68.851936],[-68.710083,68.808441],[-68.65686,68.738968],[-68.367981,68.732666],[-68.099243,68.686768],[-68.491508,68.591835],[-68.196495,68.586227],[-68.058861,68.541557],[-67.778778,68.530571],[-67.658531,68.567574],[-67.466492,68.48616],[-67.313904,68.502487],[-67.217926,68.430153],[-66.908684,68.4189],[-67.013718,68.319054],[-66.928665,68.263878],[-66.736351,68.235886],[-66.811432,68.117653],[-66.50145,68.149414],[-66.283653,68.122879],[-66.109184,67.977257],[-65.915581,67.876236],[-65.721947,67.910431],[-65.635658,68.000061],[-65.211296,67.939018],[-65.06649,68.040497],[-64.944275,68.043823],[-64.698807,67.978546],[-64.938568,67.927406],[-65.04612,67.836555],[-64.995941,67.786453],[-64.765076,67.778915],[-64.579018,67.823967],[-64.246292,67.713058],[-64.062737,67.606697],[-64.092293,67.50634],[-63.946022,67.40937],[-64.014984,67.307938],[-64.429382,67.297066],[-64.332916,67.250084],[-63.99358,67.275581],[-63.864956,67.233627],[-63.452305,67.225014],[-63.288483,67.301468],[-63.07824,67.324799],[-62.956974,67.218056],[-63.040943,67.155273],[-63.253067,67.125679],[-63.12582,66.944],[-62.554775,66.948616],[-62.430462,66.920837],[-62.253544,66.964546],[-62.286213,67.028175],[-62.018662,67.050858],[-61.905586,66.969482],[-61.442867,66.768913],[-61.282185,66.674522],[-61.354462,66.56086],[-61.579506,66.530899],[-61.464939,66.3703],[-61.525734,66.324646],[-61.74643,66.320221],[-61.892933,66.271629],[-62.065556,66.320725],[-62.211716,66.404221],[-62.486004,66.39579],[-62.31337,66.294403],[-62.521969,66.207832],[-62.429588,66.171051],[-62.095058,66.126625],[-61.946888,66.032143],[-62.300213,65.967583],[-62.41787,65.887306],[-62.342167,65.824432],[-62.530033,65.802238],[-62.597851,65.657326],[-62.753597,65.582558],[-62.875954,65.628685],[-63.030884,65.620766],[-63.347954,65.656898],[-63.351322,65.457024],[-63.494469,65.356171],[-63.351898,65.265099],[-63.33894,65.139488],[-63.517853,65],[-63.530544,64.887016],[-63.835102,64.98539],[-63.893875,65.077187],[-64.21302,65.158142],[-64.45353,65.172058],[-64.646019,65.130341],[-64.717735,65.215813],[-64.876602,65.260567],[-64.697838,65.413391],[-64.862335,65.416977],[-65.049332,65.361176],[-65.156265,65.425903],[-65.109901,65.530418],[-65.309685,65.544647],[-65.295525,65.627464],[-65.452141,65.667213],[-65.383377,65.769531],[-65.398377,65.869087],[-65.244476,65.936707],[-64.846237,66.021683],[-64.825157,66.098473],[-65.351921,65.978027],[-65.944031,65.961357],[-65.874588,66.094673],[-66.12989,66.125496],[-66.318573,66.252495],[-66.545349,66.254677],[-66.495613,66.345024],[-66.739937,66.386864],[-66.848358,66.567993],[-67.256294,66.480957],[-67.100387,66.374016],[-67.105675,66.309502],[-67.409897,66.298698],[-67.575356,66.411446],[-67.850899,66.443428],[-67.685478,66.285599],[-67.73066,66.24527],[-67.436821,66.139519],[-67.26297,66.104607],[-67.148308,66.037079],[-67.256317,65.926842],[-67.579971,65.898102],[-67.748253,65.929024],[-67.940857,65.913567],[-68.077866,66.019997],[-68.248825,65.976952],[-68.298324,65.9086],[-68.160774,65.879417],[-68.110603,65.79409],[-67.900848,65.754951],[-67.971687,65.69593],[-67.731384,65.636017],[-67.429596,65.672318],[-67.245552,65.62558],[-67.394737,65.479637],[-67.049027,65.449432],[-67.078232,65.371498],[-67.20298,65.336044],[-67.073212,65.23275],[-66.850227,65.149796],[-66.672752,64.831551],[-66.523819,65.007217],[-66.366135,64.904823],[-65.922867,64.823906],[-65.668014,64.827972],[-65.534882,64.716675],[-65.562195,64.633125],[-65.691765,64.58902],[-65.711884,64.510399],[-65.43177,64.489876],[-65.330292,64.533836],[-65.098373,64.497269],[-65.045853,64.426178],[-65.197174,64.289444],[-65.323257,64.242699],[-65.181305,64.124603],[-64.860169,63.983685],[-64.778809,63.918213],[-64.961334,63.801643],[-64.499649,63.679913],[-64.510231,63.521873],[-64.456138,63.44352],[-64.472221,63.323288],[-64.578209,63.259872],[-64.744499,63.332562],[-64.865463,63.549431],[-65.056618,63.564823],[-65.007202,63.418793],[-64.877899,63.25008],[-64.884567,63.139793],[-64.736244,63.102386],[-64.763718,62.965462],[-64.615936,62.925644],[-64.829094,62.864597],[-65.077438,62.951641],[-65.186432,62.905765],[-64.941506,62.714039],[-64.948265,62.622158],[-65.196739,62.565819],[-65.337562,62.706535],[-65.294327,62.766121],[-65.389031,62.819744],[-65.536545,62.812042],[-65.617218,62.885391],[-65.853912,63.006939],[-66.060928,62.939331],[-66.257133,63.011261],[-66.394279,63.013264],[-66.533729,63.091709],[-66.75264,63.099148],[-66.971474,63.252167],[-67.153099,63.300755],[-67.49437,63.485195],[-67.603279,63.611473],[-67.78727,63.578121],[-67.618965,63.421539],[-67.701469,63.37608],[-67.942818,63.540527],[-68.064461,63.594666],[-68.349838,63.648823],[-68.439072,63.72345],[-68.68898,63.758175],[-68.874939,63.67028],[-68.750267,63.550011],[-68.441261,63.426903],[-68.172706,63.229111],[-67.887634,63.148209],[-67.759537,63.08242],[-67.609848,63.09264],[-67.586975,63.024841],[-67.40728,62.969913],[-67.183289,62.859776],[-66.877594,62.663448],[-66.704216,62.624474],[-66.18882,62.3368],[-66.03949,62.15221],[-66.058685,62.022942],[-65.942062,61.922638],[-65.947846,61.871262],[-66.274773,61.858093],[-66.497429,61.90506],[-66.700691,62.01215],[-67.075737,62.0397],[-67.186188,62.103588],[-67.626183,62.15313],[-68.044006,62.220745],[-68.536652,62.246979],[-68.789749,62.344952],[-68.964203,62.366775],[-69.220398,62.447723],[-69.302979,62.530308],[-69.559822,62.65662],[-69.537102,62.76862],[-69.952431,62.793304],[-70.159989,62.738098],[-70.475105,62.870243],[-70.770752,62.890446],[-70.993904,63.067295],[-71.243294,63.030357],[-71.368218,63.081993],[-71.603409,63.128628],[-71.770813,63.264641],[-71.772064,63.36673],[-72.06031,63.402073],[-72.014801,63.445469],[-71.599342,63.409771],[-71.263222,63.529572],[-71.254425,63.580273],[-71.550644,63.571701],[-71.758575,63.759537],[-71.919579,63.803722],[-71.933617,63.698673],[-72.180847,63.733753],[-72.300476,63.871613],[-72.490051,63.818085],[-72.634659,63.922653],[-72.951408,64.05674],[-72.909409,64.169182],[-73.178848,64.27726],[-73.38002,64.272667],[-73.329742,64.353424],[-73.55246,64.401451],[-73.684929,64.512764],[-73.976135,64.429359],[-74.004257,64.321426],[-74.115951,64.326157],[-74.045212,64.47155],[-74.121506,64.521851],[-74.050514,64.692009]]],[[[-79.129181,77.045929],[-79.354301,76.972641],[-79.345589,76.913528],[-78.874115,76.923622],[-78.940285,76.837822],[-78.731811,76.821816],[-78.417869,76.990509],[-78.089828,77.015282],[-77.876503,76.935799],[-77.763138,76.832191],[-77.782158,76.672218],[-78.056725,76.623665],[-78.487595,76.448708],[-78.844086,76.537979],[-78.9953,76.411621],[-79.183441,76.400528],[-79.3405,76.289261],[-79.551186,76.307457],[-80.679276,76.159203],[-81.107689,76.209259],[-80.755554,76.413818],[-80.989334,76.478279],[-81.342712,76.496079],[-81.799736,76.466126],[-82.237694,76.523682],[-82.249771,76.39402],[-82.778503,76.37616],[-83.700989,76.42289],[-83.926659,76.488785],[-84.217483,76.446083],[-84.936462,76.412941],[-84.38813,76.321373],[-84.90416,76.280884],[-85.234321,76.280556],[-85.782082,76.352646],[-86.300438,76.374527],[-86.602196,76.446854],[-86.699196,76.344391],[-87.166435,76.401047],[-87.686676,76.341095],[-88.32666,76.383308],[-88.330955,76.515732],[-88.550491,76.736809],[-88.704506,76.715523],[-88.477043,76.510246],[-88.819809,76.489792],[-89.116798,76.419113],[-89.652092,76.571747],[-89.399086,76.679001],[-89.527,76.848961],[-88.721313,76.999619],[-88.368774,77.11953],[-87.652901,77.134163],[-87.474754,77.101387],[-87.112358,77.240402],[-87.381798,77.325058],[-87.670326,77.354782],[-87.762055,77.444336],[-87.702645,77.535065],[-88.22834,77.659561],[-88.133629,77.817505],[-87.283836,77.898941],[-86.81543,77.882011],[-86.197281,77.789619],[-85.884583,77.630554],[-85.739365,77.445976],[-85.410233,77.387215],[-84.619934,77.375725],[-83.97673,77.39209],[-83.828461,77.444466],[-83.377228,77.512703],[-82.889153,77.72374],[-82.539345,77.912514],[-82.719711,77.947121],[-83.118004,77.790802],[-83.40313,77.60611],[-83.861107,77.497742],[-84.859604,77.536316],[-84.859726,77.574982],[-85.297073,77.667702],[-85.174088,77.790421],[-85.689552,77.934433],[-85.047455,78.056656],[-84.899811,78.192787],[-85.226074,78.18499],[-85.436737,78.104141],[-86.118561,78.052277],[-86.271965,78.071373],[-86.280891,78.188736],[-86.692535,78.120415],[-87.099884,78.099274],[-87.468987,78.119125],[-87.5187,78.228302],[-87.401558,78.4767],[-87.08889,78.549454],[-86.897049,78.721581],[-86.413406,78.807022],[-85.65847,78.845695],[-85.103005,78.918732],[-84.64135,78.853287],[-83.84481,78.843727],[-83.036179,78.697075],[-82.589119,78.726791],[-83.198807,78.79734],[-83.068237,78.857842],[-82.442642,78.831863],[-81.70591,78.859474],[-81.63781,79.00145],[-82.081146,78.914474],[-82.548508,78.88855],[-82.923943,78.933647],[-83.570175,78.930557],[-84.183884,78.956017],[-84.726257,79.027412],[-84.54406,79.146286],[-84.258919,79.189713],[-84.48159,79.404007],[-84.854546,79.476479],[-85.016922,79.61039],[-85.441582,79.690674],[-86.305954,79.744316],[-86.467598,79.799889],[-86.426949,79.94947],[-86.663773,80.108162],[-86.526726,80.299133],[-85.787193,80.324272],[-85.381249,80.268524],[-84.304215,80.26947],[-83.710197,80.229073],[-83.298531,80.110229],[-82.100494,79.847427],[-81.97467,79.718651],[-81.634247,79.625855],[-81.428306,79.635452],[-80.725121,79.570328],[-80.611328,79.646645],[-81.505028,79.710579],[-81.691246,79.958946],[-82.308853,80.042458],[-83.205109,80.332146],[-81.777817,80.400421],[-80.644058,80.466278],[-80.252289,80.526764],[-79.30397,80.554443],[-78.1296,80.563324],[-78.111015,80.59906],[-79.064835,80.617912],[-79.686218,80.596603],[-79.885552,80.633469],[-78.656883,80.768715],[-77.519844,80.832535],[-77.57972,80.911598],[-78.94062,80.848099],[-78.981407,80.98008],[-78.474983,81.079971],[-78.348083,81.169296],[-77.588509,81.315697],[-78.074997,81.317528],[-78.660065,81.190857],[-78.755531,81.113792],[-79.299888,81.045731],[-79.198036,80.977959],[-79.468971,80.861519],[-79.9972,80.764648],[-81.096863,80.641808],[-81.602112,80.601295],[-83.009987,80.53669],[-83.103142,80.645126],[-83.705589,80.619911],[-83.831291,80.541481],[-84.34581,80.513336],[-85.173798,80.504982],[-86.321632,80.542175],[-86.76152,80.59388],[-86.551399,80.715019],[-85.738396,80.956718],[-85.224502,81.012375],[-83.998848,81.064033],[-82.780258,81.125313],[-82.851341,81.170212],[-83.8834,81.10479],[-85.708771,81.044754],[-86.294609,80.936005],[-86.650421,80.814606],[-87.101814,80.713219],[-87.199059,80.633987],[-87.537475,80.618248],[-88.205727,80.680595],[-89.271599,80.84269],[-89.451988,80.911774],[-88.295242,81.000366],[-87.658859,80.979225],[-86.700134,81.002975],[-86.07811,81.079231],[-85.510605,81.193695],[-84.783989,81.267754],[-84.95166,81.31012],[-86.071198,81.207092],[-86.348244,81.132042],[-87.439453,81.062523],[-88.260567,81.066361],[-89.726311,81.005928],[-90.248978,81.084572],[-90.320366,81.184601],[-89.903099,81.302872],[-88.907219,81.487114],[-88.934235,81.536659],[-90.433571,81.362312],[-90.822372,81.455482],[-89.683769,81.617645],[-90.206032,81.678078],[-90.670471,81.661201],[-90.946213,81.554581],[-91.936264,81.606689],[-91.471947,81.765053],[-90.6082,81.874763],[-90.01477,81.902458],[-89.295906,81.832375],[-89.007858,81.933578],[-89.075272,81.986153],[-88.563301,82.063866],[-88.071838,82.089905],[-86.894043,82.051544],[-86.601623,82.112144],[-86.889671,82.212959],[-85.650963,82.233231],[-85.564171,82.373253],[-85.831535,82.458145],[-85.180252,82.479561],[-84.388161,82.376038],[-83.87326,82.360924],[-83.356102,82.270767],[-82.665039,82.280365],[-82.09256,82.173202],[-80.640671,81.995888],[-81.007957,82.12661],[-81.918877,82.234718],[-82.658676,82.355606],[-82.418091,82.597687],[-82.225616,82.668045],[-80.751732,82.602684],[-81.623184,82.797844],[-81.337173,82.821724],[-79.925758,82.754158],[-80.415489,82.891106],[-79.483063,82.968636],[-78.966636,82.884689],[-78.235115,82.860252],[-77.824471,82.926971],[-77.143158,82.859375],[-76.609688,82.674126],[-75.860474,82.588417],[-75.646225,82.630081],[-76.263512,82.707108],[-76.251595,82.769814],[-76.715561,82.881401],[-77.425026,82.972603],[-76.129326,83.052506],[-74.479386,83.029831],[-73.64415,82.939468],[-72.631615,83.094627],[-69.615051,83.102943],[-69.706276,83.039459],[-69.022446,82.989418],[-68.202797,82.991318],[-66.398621,82.898163],[-67.056191,82.794136],[-68.386482,82.685722],[-68.231918,82.641609],[-67.481888,82.649452],[-67.08857,82.711464],[-65.756928,82.851028],[-64.677879,82.898582],[-64.738327,82.815918],[-64.299675,82.786972],[-63.60659,82.832512],[-63.455593,82.765861],[-63.7225,82.705658],[-62.697037,82.512184],[-61.719311,82.488258],[-61.135735,82.3563],[-61.173653,82.245804],[-61.479801,82.174957],[-62.890423,81.921722],[-63.667332,81.850479],[-64.383492,81.719093],[-64.892838,81.752991],[-65.706932,81.697395],[-65.850464,81.62851],[-67.495087,81.598579],[-66.668953,81.507553],[-68.539261,81.302292],[-68.169014,81.278976],[-67.647873,81.336662],[-66.601585,81.409882],[-65.148926,81.52597],[-64.540398,81.547485],[-64.459412,81.480736],[-64.772652,81.370224],[-65.612732,81.239433],[-66.130051,81.209786],[-66.587723,81.056114],[-67.002373,80.972321],[-67.857468,80.846573],[-68.305527,80.752876],[-69.168426,80.52108],[-69.38092,80.398354],[-69.829361,80.343872],[-70.086968,80.196312],[-70.699738,80.199738],[-71.677979,80.103264],[-71.570313,80.060432],[-70.840248,80.124184],[-70.474731,80.088646],[-70.709946,79.983932],[-71.42247,79.929268],[-70.87365,79.887367],[-71.104683,79.785187],[-71.522926,79.718834],[-72.706673,79.671547],[-72.941162,79.701485],[-73.072624,79.802719],[-74.200867,79.880241],[-74.762955,79.832138],[-74.733292,79.788078],[-74.000366,79.789597],[-73.404503,79.758194],[-73.146904,79.620453],[-73.135925,79.536812],[-73.768738,79.496101],[-74.060104,79.435898],[-74.685082,79.439179],[-75.176086,79.371284],[-76.022476,79.428139],[-75.88327,79.346848],[-76.863518,79.345169],[-77.576462,79.309898],[-77.23616,79.258209],[-76.75782,79.281113],[-76.096573,79.270294],[-75.94532,79.227821],[-74.525589,79.230308],[-74.589279,79.142937],[-74.454811,79.029228],[-75.131081,79.030502],[-75.742806,79.074043],[-75.962868,79.182106],[-76.564583,79.145767],[-76.611221,79.091408],[-77.198151,79.06131],[-77.149674,78.98909],[-76.690598,79.027039],[-75.705826,78.95752],[-76.130608,78.875267],[-75.275757,78.88607],[-74.931542,78.851021],[-74.711479,78.767052],[-74.84256,78.667702],[-74.599281,78.591766],[-74.987129,78.53521],[-75.816452,78.50058],[-75.10891,78.367767],[-75.506271,78.211121],[-76.6399,78.248405],[-76.630234,78.161896],[-75.597404,78.126015],[-75.642647,78.039581],[-75.863998,77.964867],[-76.133926,78.010635],[-76.967705,77.895432],[-77.108703,77.933968],[-78.046142,77.957863],[-78.400017,77.898911],[-77.959183,77.785065],[-77.989632,77.693649],[-77.70501,77.595459],[-77.947327,77.550217],[-78.019051,77.461578],[-78.327934,77.370697],[-79.224594,77.287346],[-79.66716,77.314636],[-80.003609,77.273003],[-80.767326,77.328316],[-81.318131,77.45845],[-81.677033,77.509651],[-81.785744,77.438072],[-81.151978,77.325645],[-81.904091,77.242363],[-81.789528,77.15744],[-81.093338,77.284195],[-80.004669,77.188583],[-79.664535,77.243988],[-79.252594,77.215332],[-79.002846,77.147758],[-79.129181,77.045929]]],[[[-109.971374,72.512947],[-109.896629,72.590332],[-110.089211,72.658554],[-109.786255,72.714844],[-110.12809,72.76577],[-110.161263,72.813179],[-110.478264,72.840874],[-110.700539,72.934769],[-110.664329,72.995331],[-110.411041,73.003052],[-109.889618,72.970039],[-109.827377,72.920845],[-109.000244,72.675941],[-108.999436,72.576317],[-108.702644,72.613655],[-108.551582,72.487831],[-108.638611,72.334396],[-108.474022,72.172783],[-108.366661,72.150024],[-108.387657,71.998291],[-108.197632,71.957047],[-108.313133,71.806168],[-108.033516,71.718582],[-107.943489,71.639526],[-107.699081,71.702187],[-107.396194,71.835213],[-107.390381,71.932533],[-107.593163,72.014481],[-107.585617,72.080597],[-107.754097,72.153419],[-107.697769,72.298737],[-107.9356,72.503456],[-107.83828,72.584435],[-107.987923,72.628929],[-107.997955,72.765732],[-108.074051,72.855858],[-108.142769,73.0606],[-108.249779,73.127853],[-108.034096,73.236809],[-107.945137,73.345963],[-107.383011,73.276428],[-107.198006,73.202683],[-106.870064,73.309532],[-106.669517,73.230316],[-106.488312,73.227463],[-106.366272,73.150803],[-106.075752,73.059616],[-105.829819,73.045082],[-105.764336,72.971024],[-105.313751,72.778633],[-105.255585,72.434364],[-105.097092,72.339836],[-104.931412,72.167023],[-104.868004,71.918228],[-104.726219,71.809326],[-104.593498,71.780113],[-104.332039,71.587067],[-104.388939,71.511398],[-104.293282,71.374825],[-104.509056,71.344894],[-104.433929,71.260727],[-104.59153,71.144913],[-104.551422,71.058762],[-104.081871,70.915764],[-104.017128,70.766068],[-103.825104,70.758888],[-103.633583,70.689552],[-103.492752,70.582459],[-103.106865,70.606163],[-103.091446,70.693222],[-102.80899,70.604431],[-102.8535,70.517944],[-102.665497,70.508438],[-101.892143,70.277885],[-101.657715,70.317467],[-101.630516,70.190239],[-101.523682,70.139175],[-100.989594,70.200974],[-101.001175,70.108887],[-100.890892,70.025726],[-100.846657,69.889679],[-100.919693,69.684403],[-101.257156,69.671257],[-101.426338,69.797432],[-101.648392,69.690964],[-101.925331,69.748947],[-102.039734,69.853546],[-102.334816,69.851486],[-102.453415,69.801269],[-102.499397,69.564148],[-102.896378,69.557159],[-103.400391,69.722969],[-103.487739,69.645264],[-103.039856,69.531776],[-102.96936,69.41584],[-102.858314,69.386177],[-102.575935,69.428024],[-102.390282,69.497131],[-102.196426,69.511948],[-101.972633,69.46743],[-101.914574,69.413704],[-102.205803,69.287773],[-101.8172,69.224556],[-101.715576,69.15831],[-101.850525,69.045235],[-101.776459,69.015198],[-102.371002,68.93911],[-102.594933,68.869865],[-103.00853,68.801491],[-103.138115,68.854782],[-103.36409,68.825432],[-104.104218,68.857452],[-104.460991,68.93306],[-104.640709,68.859932],[-105.125061,68.896179],[-105.186394,68.973923],[-105.036575,69.055389],[-105.815597,69.181786],[-106.032112,69.148712],[-106.404427,69.193573],[-106.250977,69.286293],[-106.326019,69.400558],[-106.622353,69.492035],[-106.736717,69.385086],[-106.974472,69.350456],[-106.930245,69.21656],[-107.113304,69.155968],[-107.292061,69.033447],[-107.514038,68.978523],[-107.954178,68.93821],[-108.535767,68.944519],[-108.513039,68.90033],[-108.924423,68.749916],[-109.327087,68.702652],[-109.727455,68.632965],[-110.026001,68.620155],[-110.166962,68.64077],[-110.327514,68.578682],[-110.536942,68.624832],[-110.974579,68.549515],[-111.217087,68.560501],[-112.094315,68.535828],[-112.335083,68.50132],[-112.569641,68.507751],[-112.761123,68.468712],[-113.123108,68.504509],[-113.075096,68.544724],[-113.347412,68.596931],[-113.421875,68.691437],[-113.676498,68.828476],[-113.588585,68.945602],[-113.558373,69.115685],[-113.63752,69.209801],[-114.140305,69.251869],[-114.390572,69.291855],[-115.101242,69.250816],[-115.286865,69.273392],[-115.953445,69.302139],[-116.622856,69.460854],[-116.565895,69.551971],[-116.801468,69.577889],[-116.826652,69.639534],[-117.142159,69.71907],[-117.264771,69.788696],[-117.399521,69.981628],[-117.364479,70.039421],[-116.941307,70.128952],[-115.965614,70.231453],[-114.940414,70.284195],[-114.464302,70.323639],[-114.192421,70.32032],[-113.889458,70.277794],[-113.249328,70.280159],[-112.664467,70.218803],[-112.109001,70.284004],[-111.552719,70.273735],[-111.466591,70.34269],[-111.994095,70.383209],[-112.088074,70.49427],[-112.659004,70.562256],[-113.005493,70.57888],[-113.244949,70.652138],[-113.576309,70.643623],[-113.828636,70.711845],[-114.148842,70.6707],[-114.954826,70.604698],[-116.174194,70.584984],[-116.223152,70.628807],[-116.569992,70.629364],[-116.706932,70.602409],[-117.231949,70.614357],[-117.516541,70.597061],[-117.679573,70.631104],[-117.661224,70.702705],[-118.195747,70.847664],[-118.414108,70.977554],[-118.260757,71.048019],[-117.811058,71.164505],[-116.844467,71.249977],[-116.754128,71.297653],[-116.24144,71.369507],[-115.935371,71.472588],[-115.588608,71.508911],[-115.685989,71.561859],[-116.154282,71.501808],[-116.671348,71.471504],[-117.156365,71.408264],[-117.471664,71.438347],[-117.517105,71.385002],[-118.154449,71.381851],[-118.304619,71.470055],[-118.158234,71.529739],[-117.749641,71.575958],[-117.929062,71.678719],[-118.303543,71.583557],[-118.491676,71.659889],[-119.067711,71.666733],[-119.122803,71.789276],[-119.040237,71.918221],[-118.730224,72.043396],[-118.508942,72.188927],[-118.108459,72.222069],[-118.065796,72.294617],[-118.185531,72.353973],[-118.527534,72.390839],[-118.469841,72.514214],[-118.160057,72.638077],[-117.609337,72.776161],[-117.31955,72.916039],[-116.804245,72.976257],[-116.548515,73.053322],[-116.03228,73.120293],[-114.892898,73.310966],[-114.676826,73.369789],[-114.376228,73.361015],[-114.168488,73.313538],[-113.929932,73.146744],[-114.009224,73.004074],[-113.979568,72.804611],[-114.218079,72.793129],[-114.34568,72.672112],[-114.568664,72.610542],[-114.344063,72.558006],[-113.951485,72.660149],[-113.803085,72.640106],[-113.564072,72.685348],[-113.560753,72.753159],[-113.361786,72.90876],[-113.035034,73.008621],[-112.477287,72.951019],[-112.360924,72.913422],[-112.013283,72.887939],[-111.185242,72.722954],[-111.176041,72.624725],[-111.410812,72.511719],[-111.309212,72.412674],[-111.072464,72.358803],[-110.673355,72.572945],[-109.971374,72.512947]]],[[[-121.346046,74.537102],[-121.114258,74.523766],[-120.912872,74.431725],[-120.391365,74.324814],[-119.496071,74.206688],[-119.136711,74.217476],[-119.021042,74.11618],[-119.138031,74.004768],[-118.964096,73.999855],[-118.786461,74.080543],[-118.857391,74.169655],[-118.682678,74.219124],[-118.067276,74.280571],[-117.389458,74.22612],[-117.129753,74.164284],[-115.898781,73.730942],[-115.334907,73.547745],[-115.285004,73.481247],[-115.79158,73.336761],[-116.636154,73.216629],[-117.212593,73.057159],[-117.46125,73.038002],[-118.0243,72.879692],[-118.673042,72.74939],[-119.154259,72.622055],[-119.38382,72.32991],[-119.778999,72.219795],[-120.116249,72.235176],[-120.235764,72.04261],[-120.393196,71.978279],[-120.447792,71.740929],[-120.375313,71.702095],[-120.492325,71.548378],[-120.767837,71.46373],[-121.319878,71.380119],[-121.723053,71.45414],[-122.02797,71.301147],[-122.493439,71.208984],[-122.786766,71.081467],[-123.141266,71.078217],[-123.42292,71.219048],[-123.613937,71.488312],[-123.809433,71.529442],[-123.888153,71.622169],[-124.27626,71.75042],[-124.596359,71.785896],[-125.137466,71.917419],[-125.172172,71.981453],[-125.739189,71.953033],[-125.686615,72.0616],[-125.78138,72.117096],[-125.508583,72.268906],[-125.318069,72.473862],[-125.055916,72.564758],[-124.947975,72.683426],[-125.030296,72.831673],[-124.452957,72.941551],[-124.859955,73.096581],[-124.549568,73.245682],[-124.556595,73.28212],[-124.288917,73.49279],[-124.079407,73.522949],[-124.012444,73.665924],[-123.847259,73.723],[-123.811859,73.825485],[-124.099251,73.854492],[-124.450874,74.073402],[-124.429771,74.135658],[-124.554764,74.272667],[-124.77594,74.341301],[-124.028419,74.407021],[-123.167709,74.452255],[-122.253372,74.47953],[-121.941643,74.530327],[-121.533562,74.557831],[-121.346046,74.537102]]],[[[-86.969139,78.897728],[-87.325683,78.798386],[-87.52951,78.670059],[-88.100037,78.681191],[-87.864418,78.581795],[-88.016113,78.477745],[-88.237526,78.455078],[-88.577171,78.60717],[-88.789185,78.573532],[-88.539398,78.42028],[-88.763092,78.165482],[-88.992653,78.166344],[-89.228332,78.241966],[-89.518646,78.395195],[-89.792755,78.401627],[-89.559807,78.217277],[-89.863296,78.208916],[-89.97583,78.281425],[-90.371048,78.243759],[-90.325912,78.145012],[-90.979324,78.140259],[-91.231155,78.169357],[-92.014389,78.199539],[-92.93866,78.416771],[-92.830353,78.502853],[-91.990967,78.525818],[-92.004196,78.573181],[-92.548844,78.588295],[-92.838577,78.627319],[-93.282776,78.577614],[-93.8218,78.770157],[-94.308006,78.987038],[-93.827606,79.033676],[-93.383354,79.161621],[-92.088776,79.148277],[-91.145767,79.204514],[-91.177185,79.244774],[-92.174713,79.200798],[-92.607315,79.245926],[-92.523399,79.30294],[-92.708938,79.43499],[-93.089607,79.35498],[-93.482727,79.350159],[-93.860611,79.263405],[-94.167839,79.277595],[-94.40506,79.363693],[-95.060211,79.268616],[-95.157028,79.354218],[-95.74186,79.406357],[-95.629173,79.551155],[-95.120072,79.571083],[-94.568146,79.623024],[-94.287285,79.696869],[-95.553833,79.628731],[-95.902389,79.648285],[-96.501762,79.827438],[-96.788147,80.081535],[-96.270722,80.123154],[-95.689529,80.03968],[-95.151527,80.025787],[-94.430183,80.166473],[-95.335442,80.113754],[-96.463051,80.272705],[-96.494774,80.323189],[-96.124794,80.380913],[-95.58316,80.388527],[-96.011711,80.476082],[-96.016418,80.574463],[-95.018387,80.601105],[-94.637802,80.633369],[-94.698715,80.72216],[-95.031899,80.799065],[-95.551087,80.811645],[-95.204353,81.020531],[-94.947166,81.0401],[-94.28331,81.00914],[-93.355476,81.072334],[-93.074944,81.157539],[-93.284927,81.210449],[-93.78379,81.199074],[-94.413795,81.245277],[-94.076416,81.36068],[-93.499977,81.315491],[-93.293251,81.362968],[-92.124512,81.224426],[-91.837746,81.152428],[-91.767807,81.044311],[-91.139595,80.755676],[-90.774505,80.712524],[-90.604622,80.568581],[-89.850448,80.511764],[-89.28672,80.521454],[-89.047729,80.449112],[-89.154999,80.214272],[-88.518028,80.098534],[-88.299675,80.131882],[-88.718353,80.287994],[-88.674614,80.380119],[-88.422646,80.437775],[-87.671822,80.404495],[-87.619263,80.17247],[-88.004791,80.141014],[-88.019432,80.068031],[-87.314453,80.079575],[-86.965218,79.947319],[-86.942223,79.861595],[-87.170151,79.573723],[-86.571312,79.660545],[-86.001389,79.566467],[-85.633156,79.605881],[-85.386276,79.45285],[-84.865959,79.2705],[-85.297814,79.181915],[-86.281494,79.089554],[-86.574326,78.980385],[-86.969139,78.897728]]],[[[-80.226936,74.595711],[-80.544792,74.56221],[-81.287002,74.568191],[-81.763908,74.459747],[-82.060311,74.475906],[-82.475227,74.543449],[-82.795059,74.522835],[-82.984879,74.570244],[-83.136818,74.686073],[-83.060722,74.770653],[-83.315224,74.783653],[-83.456352,74.587921],[-84.248497,74.507004],[-85.365257,74.503181],[-86.125755,74.485085],[-86.286858,74.500687],[-86.937119,74.461601],[-88.054878,74.476036],[-88.542229,74.505737],[-88.573257,74.569237],[-88.404419,74.738541],[-88.591446,74.830894],[-88.754952,74.723183],[-89.088844,74.715805],[-89.168251,74.592766],[-89.569671,74.539032],[-89.954041,74.52961],[-90.613716,74.614365],[-91.020744,74.70282],[-91.305244,74.625153],[-91.696198,74.676865],[-92.031052,74.77462],[-92.053978,74.959999],[-92.21347,75.077385],[-92.506851,75.217163],[-92.415573,75.420387],[-92.207748,75.549057],[-91.997162,75.602982],[-92.162918,75.732391],[-92.105324,75.849564],[-92.474526,75.946686],[-92.623337,76.034866],[-92.642677,76.124962],[-92.959168,76.239983],[-93.10067,76.36113],[-93.388443,76.350967],[-93.862823,76.258987],[-94.753715,76.286285],[-95.064499,76.216629],[-95.380676,76.22718],[-95.399307,76.287025],[-95.081398,76.347771],[-95.81398,76.393204],[-95.971565,76.425362],[-96.293098,76.633583],[-96.826401,76.762802],[-96.45089,76.790024],[-96.878052,76.910866],[-96.306251,77.000282],[-96.307083,77.0401],[-95.688751,77.069351],[-95.395432,77.054939],[-94.945503,76.974998],[-94.490158,76.96463],[-94.199333,76.886696],[-93.97686,76.932304],[-93.623497,76.869293],[-93.187584,76.749741],[-93.099525,76.593147],[-92.651779,76.589981],[-92.110649,76.618751],[-91.917961,76.667381],[-91.43045,76.691406],[-90.971794,76.652031],[-90.590958,76.567642],[-90.473862,76.466904],[-90.528458,76.400963],[-89.792633,76.326233],[-89.276161,76.296631],[-89.286445,76.194046],[-89.715317,76.162094],[-90.205597,76.167549],[-90.277748,76.137085],[-91.255203,76.200447],[-91.260414,76.160995],[-90.647949,76.117668],[-90.180565,76.061752],[-90.977333,76.010406],[-90.115608,75.959747],[-89.93988,75.96743],[-89.14975,75.763702],[-89.25058,75.624947],[-89.106812,75.480911],[-88.750687,75.481293],[-88.876518,75.619514],[-88.630142,75.672142],[-88.108689,75.512733],[-87.722641,75.578621],[-87.526421,75.534805],[-87.256447,75.619705],[-86.785423,75.4758],[-86.454117,75.450935],[-86.393188,75.405754],[-85.90107,75.416611],[-86.154785,75.509598],[-85.465416,75.561722],[-85.186394,75.620064],[-84.671639,75.685486],[-84.303566,75.708862],[-83.934364,75.811104],[-83.519997,75.785439],[-83.408775,75.74453],[-82.9366,75.755554],[-82.337517,75.838738],[-81.651817,75.812546],[-81.096916,75.763618],[-81.304611,75.654022],[-81.007271,75.627083],[-80.516243,75.654343],[-80.067932,75.579872],[-80.048057,75.525291],[-79.498863,75.380493],[-79.480881,75.281662],[-79.646729,75.176483],[-79.975594,75.091324],[-80.270271,75.063751],[-80.379349,75.008606],[-80.055946,74.974335],[-79.778793,75.031876],[-79.548142,75.012566],[-79.33593,74.892204],[-79.963463,74.818535],[-80.244957,74.760864],[-80.130363,74.71241],[-80.226936,74.595711]]],[[[-114.052627,75.397087],[-114.095505,75.250183],[-114.435112,75.060181],[-114.994377,74.963799],[-115.202598,75.072441],[-115.594002,75.106613],[-115.519775,75.011314],[-115.67736,74.968903],[-116.225311,75.059166],[-116.343926,75.198654],[-116.691033,75.117241],[-117.291016,75.170075],[-117.627403,75.234894],[-117.646377,75.29287],[-117.301949,75.454048],[-117.145599,75.481888],[-116.127136,75.476936],[-115.580147,75.58551],[-115.635262,75.648636],[-116.344986,75.562691],[-117.217026,75.581757],[-116.981468,75.752907],[-116.787697,75.800423],[-116.017044,75.811638],[-115.380943,75.8424],[-115.601707,75.892586],[-116.036606,75.871155],[-116.719444,75.901962],[-116.605072,76.123749],[-116.212654,76.195717],[-115.257927,76.192329],[-115.856468,76.256134],[-115.871819,76.355881],[-115.589012,76.43055],[-115.033356,76.472519],[-114.754761,76.515106],[-114.163574,76.472389],[-114.044739,76.417313],[-114.131195,76.317162],[-113.936356,76.194534],[-113.655884,76.207428],[-113.32238,76.26722],[-112.978989,76.271202],[-112.543488,76.198608],[-112.38839,76.043236],[-112.003464,76.004738],[-111.685799,75.922821],[-112.00618,75.881577],[-111.38208,75.764969],[-111.315094,75.553825],[-111.192703,75.519752],[-110.778015,75.56604],[-110.364395,75.538452],[-109.967644,75.544281],[-109.232735,75.517479],[-108.939598,75.545486],[-108.790344,75.616058],[-109.127655,75.752037],[-109.628037,75.801483],[-109.93277,75.900391],[-109.357208,76.014458],[-109.264824,76.103073],[-109.495819,76.184517],[-110.260178,76.303169],[-110.37796,76.403595],[-109.957596,76.489586],[-109.704346,76.501976],[-109.727058,76.596001],[-109.527092,76.626335],[-109.480332,76.720665],[-109.11113,76.822487],[-108.618675,76.814407],[-108.392899,76.705315],[-108.691879,76.618492],[-108.494316,76.558975],[-108.572861,76.419807],[-108.255951,76.38591],[-108.087532,76.212723],[-108.332947,76.175293],[-108.385452,76.051552],[-107.846588,76.068817],[-107.608093,75.969788],[-107.714454,75.881851],[-107.159546,75.911362],[-106.970787,75.762184],[-106.831543,75.749283],[-106.845261,75.969505],[-106.63092,76.055504],[-106.287468,76.058838],[-105.883179,76.009987],[-105.516365,75.914215],[-105.417206,75.846458],[-105.368591,75.628593],[-105.590012,75.534462],[-105.616295,75.361671],[-105.910271,75.215301],[-105.80085,75.181511],[-106.069237,75.098274],[-106.018921,75.047157],[-106.401077,75.004181],[-106.675369,75.003601],[-106.924332,74.926079],[-107.201889,74.909424],[-107.609894,74.967247],[-108.39669,74.915405],[-108.507408,75.014885],[-108.792145,75.070557],[-108.923859,74.994736],[-109.337288,74.946037],[-109.506142,74.861893],[-109.885147,74.869171],[-110.024292,74.822975],[-110.275734,74.847511],[-110.637909,74.772957],[-110.547913,74.713348],[-110.973556,74.61393],[-111.391174,74.563644],[-111.642189,74.495934],[-112.400398,74.416954],[-113.02993,74.399101],[-113.690468,74.450272],[-114.018364,74.525681],[-114.391151,74.6465],[-114.420334,74.692917],[-113.98201,74.798317],[-113.456802,74.837921],[-113.051811,74.952324],[-112.840485,74.981293],[-112.074028,75.011703],[-111.670715,74.991951],[-111.30529,75.072357],[-111.299362,75.197258],[-111.625321,75.150825],[-112.372131,75.125206],[-112.420532,75.18248],[-113.008896,75.093147],[-113.904015,75.055107],[-113.910042,75.182007],[-113.803001,75.319138],[-114.052627,75.397087]]],[[[-55.821354,49.947021],[-55.477016,49.963131],[-55.690784,49.832386],[-55.866409,49.793003],[-55.926617,49.746975],[-55.895473,49.587372],[-55.722561,49.46701],[-55.444077,49.501205],[-55.343372,49.460114],[-55.369808,49.399303],[-55.265774,49.371941],[-55.313877,49.50293],[-55.16536,49.543236],[-55.153145,49.475185],[-55.256348,49.342224],[-55.194611,49.255848],[-54.942455,49.307499],[-54.845699,49.274837],[-54.682007,49.394859],[-54.550076,49.542412],[-54.431293,49.387424],[-54.323299,49.434135],[-54.025059,49.468452],[-53.70348,49.367126],[-53.699753,49.33551],[-53.496147,49.229183],[-53.558006,49.190037],[-53.609482,49.04089],[-53.755314,49.030712],[-53.820396,48.938225],[-53.939083,48.901512],[-53.881825,48.790241],[-53.801045,48.716751],[-53.781155,48.510769],[-53.65461,48.526871],[-53.583595,48.447563],[-53.486225,48.539825],[-53.471992,48.599754],[-53.335678,48.591991],[-53.264679,48.52235],[-53.123417,48.670563],[-53.007576,48.591446],[-53.069694,48.454071],[-53.213894,48.347195],[-53.336037,48.365494],[-53.52808,48.23489],[-53.645981,48.176437],[-53.847351,48.190506],[-53.971169,48.175468],[-53.938683,48.079288],[-53.705177,48.083157],[-53.645187,47.991856],[-53.734871,47.852661],[-53.866737,47.72303],[-53.75798,47.61599],[-53.562557,47.528515],[-53.56538,47.598042],[-53.490509,47.696037],[-53.517006,47.743843],[-53.296803,48.018642],[-53.128937,48.03793],[-53.024803,48.079811],[-52.971577,48.015194],[-53.074463,47.922516],[-53.101669,47.83609],[-53.20459,47.741489],[-53.178593,47.696846],[-53.291984,47.597351],[-53.192097,47.535076],[-53.140469,47.433125],[-52.935105,47.544258],[-52.870026,47.623749],[-52.823811,47.79459],[-52.731789,47.757732],[-52.636292,47.523541],[-52.754631,47.311966],[-52.860741,47.207066],[-52.86216,47.066689],[-52.910957,47.002197],[-52.962341,46.788883],[-53.045376,46.751507],[-53.089435,46.657902],[-53.231628,46.639534],[-53.307858,46.740837],[-53.396335,46.737137],[-53.535824,46.621712],[-53.595573,46.616512],[-53.665825,46.704296],[-53.62653,46.759068],[-53.667595,46.828472],[-53.578873,46.95919],[-53.631775,46.998322],[-53.60051,47.086887],[-53.691547,47.116169],[-53.790981,47.040005],[-53.883877,46.923416],[-54.003792,46.836384],[-54.1222,46.801971],[-54.198414,46.8493],[-54.17936,46.986195],[-54.106502,47.073151],[-54.012806,47.264919],[-53.935566,47.328114],[-53.913933,47.607826],[-53.956989,47.624359],[-54.012001,47.793037],[-54.1609,47.847672],[-54.30843,47.686604],[-54.494781,47.429977],[-54.725075,47.36491],[-54.867123,47.387844],[-55.066345,47.231106],[-55.090107,47.086639],[-55.205113,47.024147],[-55.247959,46.943649],[-55.398297,46.877636],[-55.591701,46.922783],[-55.643005,46.879925],[-55.845501,46.867966],[-55.978405,46.911442],[-55.988697,46.998745],[-55.785252,47.113632],[-55.700256,47.095596],[-55.508763,47.147381],[-55.345272,47.2542],[-55.29182,47.404148],[-55.18193,47.472492],[-54.98587,47.508045],[-54.983921,47.597607],[-55.155716,47.579906],[-55.195194,47.633392],[-55.436169,47.680008],[-55.48785,47.62484],[-55.414822,47.514904],[-55.447884,47.468754],[-55.606445,47.438118],[-55.659515,47.504879],[-55.783779,47.453697],[-55.994232,47.500401],[-56.128693,47.467621],[-56.198471,47.509125],[-55.972809,47.557713],[-55.856361,47.608273],[-55.942139,47.663891],[-55.841617,47.73756],[-55.859226,47.796726],[-56.165131,47.686481],[-56.193524,47.648666],[-56.442185,47.602356],[-56.629421,47.621132],[-56.658169,47.587124],[-56.862289,47.538124],[-57.026108,47.598984],[-57.346493,47.588146],[-57.358116,47.648922],[-57.670395,47.612015],[-58.060265,47.700424],[-58.321327,47.680031],[-58.430065,47.644123],[-58.537594,47.656136],[-58.799942,47.599728],[-59.107372,47.584145],[-59.296913,47.626404],[-59.340973,47.814751],[-59.421394,47.893059],[-59.272758,48.005928],[-58.99345,48.134682],[-58.703747,48.333702],[-58.684021,48.37952],[-58.44323,48.456722],[-58.600986,48.546902],[-58.750606,48.543465],[-58.944676,48.510174],[-59.028069,48.526794],[-59.229015,48.474411],[-59.238075,48.537384],[-59.146725,48.603973],[-58.99844,48.663452],[-58.887535,48.565464],[-58.731197,48.563465],[-58.699478,48.681507],[-58.543079,48.884472],[-58.513042,49.005432],[-58.384369,49.07391],[-58.168175,49.063122],[-58.158996,49.126198],[-58.007156,49.183258],[-58.183418,49.240726],[-58.265125,49.316952],[-58.216328,49.431],[-58.027073,49.55439],[-57.968601,49.557587],[-57.974606,49.682842],[-57.647301,50.150585],[-57.475769,50.477005],[-57.384182,50.603104],[-57.287666,50.650089],[-57.367557,50.703865],[-57.086777,50.79377],[-56.973252,50.894032],[-56.875572,51.113422],[-56.798164,51.128624],[-56.800476,51.238945],[-56.637195,51.360245],[-56.442974,51.408066],[-55.987766,51.591309],[-55.84177,51.493824],[-55.76083,51.554478],[-55.486817,51.590904],[-55.458511,51.489708],[-55.487053,51.385059],[-55.623115,51.29216],[-55.805195,51.340477],[-55.980469,51.326],[-56.055286,51.248062],[-56.009392,51.194042],[-55.788403,51.204102],[-55.719868,51.177494],[-55.73666,51.077167],[-55.973602,50.861286],[-56.039577,50.767105],[-56.171409,50.696125],[-56.136257,50.641411],[-56.392811,50.414654],[-56.519192,50.22739],[-56.758499,50.026871],[-56.740108,49.951141],[-56.784077,49.829742],[-56.845444,49.785622],[-56.753979,49.679817],[-56.611526,49.823002],[-56.46183,49.896549],[-56.231239,50.123837],[-55.939652,50.03997],[-55.821354,49.947021]]],[[[-97.068955,72.607719],[-96.916336,72.674812],[-96.556053,72.700302],[-96.420212,72.633163],[-96.277389,72.413902],[-96.657417,72.306587],[-96.497688,72.244514],[-96.459358,71.938599],[-96.521439,71.84375],[-96.964424,71.799965],[-97.076958,71.70974],[-97.454376,71.626648],[-97.963204,71.680107],[-98.16925,71.65477],[-98.076782,71.50206],[-98.539917,71.30748],[-98.819015,71.321709],[-98.941704,71.400055],[-99.221489,71.370903],[-99.351166,71.520958],[-99.342087,71.5895],[-99.549507,71.634041],[-99.661583,71.779732],[-99.827225,71.859215],[-100.052643,71.883469],[-100.429794,72.05558],[-100.683685,72.201424],[-100.963821,72.184158],[-101.010307,72.243111],[-101.267471,72.331573],[-101.397415,72.254784],[-101.744156,72.296631],[-101.948486,72.497467],[-102.237168,72.551613],[-102.553078,72.649017],[-102.713554,72.729279],[-102.727806,72.821075],[-102.604134,72.876724],[-102.505112,73.020866],[-102.225975,73.089188],[-101.98645,73.072189],[-101.794037,73.005722],[-101.736061,72.931984],[-101.48555,72.875328],[-101.448166,72.796669],[-101.267532,72.712616],[-100.82975,72.693642],[-100.729393,72.755058],[-100.430756,72.733391],[-100.299011,72.799469],[-100.422485,72.935944],[-100.061325,72.899536],[-100.260773,73.125069],[-100.549553,73.282936],[-100.902329,73.266716],[-101.278862,73.362015],[-101.50901,73.492775],[-101.194763,73.607529],[-100.886665,73.6045],[-101.056015,73.724815],[-100.94989,73.814651],[-100.527336,73.863762],[-100.256043,73.838722],[-100.243179,73.917412],[-99.952553,73.951111],[-99.700348,73.84964],[-99.450203,73.824005],[-99.204544,73.734276],[-98.155098,73.807327],[-97.800301,73.90715],[-97.465851,73.8591],[-97.189644,73.853783],[-96.939476,73.743759],[-96.945015,73.635307],[-97.195038,73.554657],[-97.433617,73.579231],[-97.48745,73.487801],[-97.153648,73.449928],[-97.14444,73.355225],[-97.673004,73.317162],[-98.224396,73.070221],[-98.47184,73.016151],[-98.275643,72.962601],[-97.851334,73.043686],[-97.278313,72.967751],[-97.288933,72.867813],[-96.998176,72.735771],[-97.128929,72.682343],[-97.068955,72.607719]]],[[[-82.564178,63.953644],[-82.889839,63.975532],[-83.069252,63.936131],[-83.139732,64.006195],[-82.932388,64.130089],[-82.999695,64.182632],[-83.528465,64.099381],[-83.670929,64],[-83.591736,63.833668],[-83.911056,63.672897],[-84.114784,63.592003],[-84.259239,63.61438],[-84.445519,63.476646],[-84.467209,63.372383],[-84.95237,63.171688],[-85.236321,63.108665],[-85.509262,63.111092],[-85.621689,63.186073],[-85.666084,63.402317],[-85.600395,63.511513],[-85.603569,63.671249],[-85.80365,63.700146],[-86.276436,63.636124],[-86.548782,63.662773],[-86.814682,63.567524],[-87.122063,63.559921],[-87.210953,63.619518],[-87.205475,63.714722],[-86.987457,63.867367],[-86.827355,63.939857],[-86.350517,64.063232],[-86.175827,64.087784],[-86.193359,64.173439],[-86.359512,64.305443],[-86.328888,64.406731],[-86.393188,64.591232],[-86.211579,64.790672],[-86.123779,64.929054],[-86.201325,65.010872],[-86.121132,65.100327],[-86.146523,65.294243],[-86.090363,65.509468],[-85.989708,65.720634],[-85.870216,65.799591],[-85.595497,65.913322],[-85.464348,65.802795],[-85.188408,65.816238],[-85.053383,65.582451],[-85.263168,65.52784],[-85.063217,65.461769],[-84.859543,65.209526],[-84.731789,65.258148],[-84.704773,65.358818],[-84.534767,65.481194],[-84.163177,65.341522],[-84.225433,65.269867],[-84.006378,65.186928],[-83.411362,65.142815],[-83.217545,64.964294],[-82.831596,64.856621],[-82.726883,64.787781],[-82.472519,64.736015],[-82.365631,64.766144],[-82.095528,64.685867],[-81.731308,64.487305],[-81.727455,64.2715],[-81.577492,64.181404],[-81.596008,64.120094],[-81.902863,64.063705],[-81.880669,63.972363],[-81.466003,64.027],[-81.298897,64.075821],[-80.932434,63.969471],[-80.97036,64.043022],[-80.794273,64.086609],[-80.724342,63.99242],[-80.513893,63.944992],[-80.595612,63.869606],[-80.170563,63.775356],[-80.187881,63.718918],[-80.473312,63.713486],[-80.521073,63.661125],[-80.945656,63.502113],[-81.015846,63.436596],[-81.370758,63.508293],[-81.778381,63.627323],[-81.84732,63.612389],[-82.098244,63.681934],[-82.442581,63.665806],[-82.548439,63.734322],[-82.341927,63.8494],[-82.564178,63.953644]]],[[[-95.828507,73.13089],[-95.554733,73.135635],[-95.664261,73.453094],[-95.608841,73.545021],[-95.689659,73.637138],[-95.628937,73.738815],[-95.282883,73.77562],[-95.311524,73.979881],[-95.104462,74.025749],[-94.412789,74.121498],[-93.831581,74.137413],[-93.555313,74.175743],[-93.031494,74.154945],[-92.587723,74.113541],[-92.291801,74.036568],[-92.263779,73.947845],[-91.84536,74.020363],[-91.069588,74.01078],[-90.331543,73.912994],[-90.160835,73.905823],[-90.531136,73.67009],[-90.931389,73.482162],[-91.191551,73.329811],[-91.624001,72.99231],[-92.054421,72.751259],[-92.309357,72.70594],[-93.333,72.804466],[-93.917732,72.776047],[-93.855148,72.701637],[-93.503304,72.545235],[-93.442848,72.44709],[-93.635109,72.337578],[-93.811157,72.310555],[-94.008469,72.156715],[-94.078667,71.989922],[-94.431328,72.023842],[-95.122032,71.977516],[-95.19696,72],[-95.124466,72.47139],[-95.298866,72.541],[-95.345474,72.642624],[-95.604607,72.717606],[-95.55851,72.767662],[-95.806953,72.836304],[-95.792709,72.978271],[-95.631714,73.056526],[-95.828507,73.13089]]],[[[-122.667015,75.955421],[-122.446678,76.110115],[-122.918526,76.182884],[-122.621284,76.267876],[-122.620438,76.337097],[-122.415932,76.393181],[-121.530952,76.435814],[-121.383476,76.569366],[-121.073876,76.67823],[-120.339912,76.817291],[-120.073242,77.002136],[-119.503502,77.152092],[-119.13472,77.325035],[-118.741577,77.355652],[-118.097374,77.356468],[-117.88269,77.386238],[-117.229324,77.289642],[-116.797585,77.324898],[-116.696907,77.369926],[-117.137108,77.460533],[-116.763885,77.533089],[-116.393791,77.550125],[-116.048309,77.495216],[-115.46135,77.359482],[-115.505173,77.27285],[-116.084297,77.196808],[-116.331207,77.119476],[-116.205162,77.037079],[-115.816376,76.987259],[-115.965622,76.821442],[-115.875252,76.691307],[-116.046692,76.625839],[-116.48951,76.564774],[-117.029404,76.535225],[-116.925247,76.345932],[-117.276855,76.263374],[-117.513649,76.270538],[-118.006325,76.406044],[-117.921509,76.678116],[-117.747971,76.739181],[-118.311279,76.753731],[-118.457535,76.685127],[-118.294746,76.564682],[-118.649521,76.451393],[-118.525055,76.33567],[-118.827217,76.278046],[-118.851952,76.177155],[-119.29113,76.139465],[-119.47068,76.330162],[-119.642143,76.306839],[-119.568298,76.083054],[-119.717308,75.884888],[-120.244385,75.821663],[-120.456703,75.830338],[-120.379456,75.970978],[-120.701805,76.028526],[-120.657791,76.164268],[-121.021545,76.139328],[-120.950455,76.034729],[-121.410217,75.938736],[-121.500153,75.992813],[-121.83474,76.044052],[-122.054603,76.032722],[-122.509766,75.894791],[-122.667015,75.955421]]],[[[-97.687073,75.178131],[-97.933647,75.032768],[-98.456703,74.998428],[-100.095016,74.98764],[-100.35202,75.021431],[-100.374542,75.159386],[-100.522468,75.198952],[-100.412598,75.371178],[-100.506302,75.436462],[-100.031952,75.467667],[-100.024452,75.555687],[-99.689842,75.593246],[-99.756599,75.665886],[-99.975113,75.675034],[-101.301682,75.58271],[-101.488579,75.597687],[-101.989151,75.545975],[-102.751732,75.547035],[-102.546661,75.714111],[-102.323158,75.730392],[-102.267647,75.856995],[-101.817886,75.905212],[-101.643616,75.97554],[-101.823433,76.021553],[-101.905892,76.110153],[-101.663101,76.216164],[-101.907265,76.224968],[-102.08812,76.304878],[-101.995872,76.412811],[-101.839737,76.450455],[-101.278862,76.412689],[-100.942185,76.235336],[-100.604607,76.138252],[-100.529816,76.07756],[-99.954575,75.984909],[-100.14241,76.189178],[-100.445435,76.218704],[-100.467728,76.270859],[-99.989945,76.309822],[-100.196724,76.367744],[-100.711357,76.375191],[-100.955849,76.470901],[-100.441475,76.614029],[-100.24736,76.639442],[-99.550064,76.597885],[-99.111816,76.441185],[-98.963616,76.471626],[-99.049332,76.578049],[-98.481888,76.683319],[-98.206581,76.545547],[-97.661369,76.485298],[-97.639351,76.41436],[-97.779976,76.315064],[-97.497994,76.201103],[-97.460648,76.129105],[-97.631996,75.987335],[-97.551163,75.870728],[-97.839897,75.730385],[-97.406441,75.696892],[-97.374992,75.445396],[-97.715134,75.571281],[-97.9823,75.47924],[-97.844086,75.432091],[-97.87191,75.303497],[-97.687073,75.178131]]],[[[-104.797478,78.909699],[-104.676041,79.022171],[-104.939979,79.049469],[-105.383217,79.0075],[-105.599487,79.04113],[-105.620163,79.143669],[-105.415482,79.283829],[-103.962639,79.374817],[-103.076599,79.287262],[-102.898407,79.174644],[-102.616165,79.1008],[-102.666435,78.985405],[-102.164322,79.034203],[-101.950249,79.088768],[-101.600815,79.059441],[-100.967911,78.922935],[-101.190826,78.800362],[-100.297256,78.780121],[-99.85659,78.697052],[-99.953247,78.659088],[-99.489365,78.585121],[-99.767479,78.407959],[-99.784294,78.308579],[-99.492447,78.291107],[-98.929054,78.056679],[-99.0821,77.978394],[-99.049995,77.88826],[-99.461754,77.819527],[-100.25061,77.809906],[-100.518509,77.863144],[-100.765007,77.967842],[-100.824593,78.092659],[-101.544075,78.238235],[-102.169594,78.292397],[-102.621567,78.245659],[-102.807869,78.30072],[-102.687492,78.375626],[-103.137588,78.371262],[-103.79718,78.299606],[-103.914444,78.244217],[-104.429931,78.265205],[-104.662804,78.319901],[-105.014534,78.494766],[-104.737289,78.581673],[-104.38678,78.575653],[-104.138336,78.526703],[-103.418465,78.5364],[-103.43232,78.61486],[-103.774384,78.670723],[-103.318787,78.755272],[-104.13858,78.82309],[-103.827599,78.891891],[-104.102325,78.98159],[-104.797478,78.909699]]],[[[-123.564949,48.307865],[-123.766266,48.369148],[-123.934402,48.381107],[-124.494919,48.548134],[-124.760086,48.617619],[-124.814598,48.661869],[-125.106674,48.728924],[-125.2117,48.78611],[-125.092171,48.876278],[-125.005165,48.897408],[-124.99556,48.976604],[-125.270897,48.96526],[-125.315025,49.033501],[-125.468094,48.922653],[-125.566956,48.935589],[-125.751335,49.06435],[-125.649208,49.155148],[-125.754738,49.222595],[-125.914757,49.279572],[-126.014389,49.2384],[-126.080475,49.393524],[-126.264549,49.39584],[-126.433296,49.444981],[-126.574867,49.416584],[-126.550308,49.586369],[-126.490562,49.682755],[-126.615601,49.720947],[-126.678192,49.865437],[-126.781616,49.895741],[-127.039047,49.847145],[-127.155388,49.857639],[-127.243187,49.959511],[-127.142136,50.064522],[-127.34726,50.017319],[-127.513962,50.130402],[-127.693512,50.144169],[-127.797218,50.07719],[-127.919991,50.122826],[-127.796356,50.213226],[-127.875557,50.341637],[-127.973862,50.321003],[-127.934456,50.460854],[-128.107697,50.472477],[-128.231201,50.586529],[-128.329803,50.631794],[-128.405991,50.764454],[-128.1026,50.869892],[-127.876,50.867172],[-127.490723,50.761707],[-127.428696,50.712059],[-127.194611,50.608543],[-127.102295,50.610172],[-126.955459,50.556938],[-126.7883,50.539009],[-126.615433,50.493347],[-126.359566,50.482258],[-126.084312,50.448044],[-125.920334,50.384651],[-125.706673,50.353828],[-125.585945,50.367294],[-125.406143,50.26424],[-125.355133,50.132118],[-125.243461,50.042412],[-125.133377,49.89682],[-124.862419,49.701794],[-124.921013,49.640194],[-124.794853,49.466076],[-124.692574,49.450432],[-124.575684,49.378502],[-124.361725,49.35165],[-124.167297,49.251774],[-123.944107,49.227669],[-123.923073,49.161423],[-123.815178,49.130875],[-123.785461,49.018799],[-123.67453,48.884857],[-123.592827,48.846954],[-123.587257,48.756145],[-123.533173,48.693031],[-123.411728,48.688675],[-123.363022,48.522533],[-123.2957,48.488811],[-123.310409,48.412769],[-123.444107,48.439079],[-123.564949,48.307865]]],[[[-76.154991,72.945053],[-76.116714,72.848953],[-76.469162,72.815437],[-77.254143,72.856934],[-77.60746,72.896011],[-78.428467,72.87886],[-79.144051,72.753769],[-79.559464,72.753235],[-79.990723,72.866745],[-80.1744,73.050392],[-80.107964,73.180489],[-80.371437,73.241982],[-80.756439,73.278595],[-80.838486,73.363487],[-80.865967,73.548347],[-80.769257,73.705742],[-80.804413,73.757889],[-80.447044,73.769165],[-80.126762,73.701149],[-79.979195,73.719231],[-79.471329,73.636673],[-78.951256,73.634972],[-78.910172,73.662559],[-78.135574,73.671997],[-77.750046,73.591652],[-77.213043,73.514107],[-77.043907,73.370911],[-76.562561,73.221909],[-76.498543,73.123535],[-76.243584,73.087128],[-76.328468,72.968452],[-76.154991,72.945053]]],[[[-97.39048,69.749359],[-97.11734,69.661163],[-97.014076,69.562302],[-96.749405,69.502686],[-96.635452,69.444122],[-96.272858,69.355972],[-95.913437,69.148033],[-95.931839,69.054253],[-95.816826,68.982223],[-95.817749,68.902924],[-95.515465,68.847069],[-95.31015,68.913841],[-95.232315,68.814194],[-95.651329,68.748962],[-96.137222,68.567322],[-96.282082,68.483078],[-96.552544,68.460236],[-96.975678,68.548126],[-97.13871,68.520752],[-97.449608,68.55677],[-97.712387,68.658424],[-98.109871,68.690582],[-98.291573,68.774925],[-98.679993,68.798798],[-98.850418,68.860085],[-98.872864,68.95974],[-99.102287,68.928619],[-99.172424,68.865715],[-99.413239,68.905777],[-99.554558,69.036224],[-99.428589,69.156052],[-99.055969,69.148888],[-98.73159,69.192955],[-98.679634,69.284096],[-98.357422,69.336685],[-98.593132,69.453102],[-98.539719,69.600555],[-98.365471,69.582008],[-98.292877,69.736778],[-97.958199,69.913284],[-97.39048,69.749359]]],[[[-95.33387,75.574158],[-94.896454,75.642746],[-94.296288,75.587242],[-93.473755,75.263695],[-93.583198,75.199547],[-93.464241,75.137146],[-93.511032,75.039612],[-93.393501,74.903458],[-93.443375,74.723526],[-93.721329,74.643692],[-94.693519,74.636803],[-95.276932,74.805222],[-95.850746,74.8312],[-96.131256,74.928337],[-96.384636,74.926079],[-96.388992,75.010551],[-96.612816,75.023285],[-96.455635,75.193954],[-96.078499,75.291458],[-95.824211,75.464363],[-95.594299,75.553345],[-95.33387,75.574158]]],[[[-95.789604,78.507194],[-95.556343,78.512871],[-95.156212,78.449676],[-94.849022,78.349129],[-95.150192,78.290115],[-95.241241,78.215713],[-94.893059,78.106308],[-95.131622,77.948097],[-95.33725,77.9674],[-95.939712,77.884132],[-96.383133,77.86248],[-96.558571,77.903923],[-96.862274,77.786865],[-97.124466,77.81115],[-97.011215,77.911507],[-97.765907,78.027039],[-97.657287,78.091255],[-96.889091,78.081078],[-96.867561,78.133652],[-97.409577,78.211235],[-97.780052,78.224319],[-98.427017,78.50209],[-98.094292,78.569015],[-98.369263,78.649452],[-98.397026,78.769409],[-98.102982,78.816933],[-97.503372,78.798874],[-96.535408,78.677902],[-96.336983,78.614044],[-96.296051,78.524826],[-95.789604,78.507194]]],[[[-76.158752,68.296608],[-75.949844,68.338463],[-75.711167,68.327682],[-75.401146,68.25808],[-75.191933,68.24604],[-75.017258,68.166084],[-75.04174,68.041405],[-75.144104,67.97332],[-75.055153,67.830101],[-75.041901,67.610458],[-75.189651,67.440361],[-75.434814,67.345421],[-75.915306,67.244743],[-76.312378,67.251823],[-76.689636,67.212044],[-77.009819,67.250488],[-77.224747,67.4487],[-77.2043,67.531609],[-77.29158,67.729248],[-77.20565,67.860466],[-76.956833,68.091011],[-76.616287,68.270149],[-76.270874,68.332085],[-76.158752,68.296608]]],[[[-109.972572,77.917412],[-110.894394,77.857254],[-110.629417,77.76281],[-110.236618,77.784699],[-110.020661,77.739372],[-110.055176,77.556221],[-110.427887,77.457916],[-110.869217,77.403763],[-111.317413,77.402351],[-111.994759,77.327789],[-112.445984,77.369591],[-113.171326,77.5205],[-113.13607,77.64077],[-113.292496,77.779778],[-113.275345,77.857651],[-112.399666,78.006599],[-111.605949,78.03904],[-110.988655,78.098518],[-110.148216,78.116425],[-109.545456,78.070953],[-109.660812,77.959755],[-109.972572,77.917412]]],[[[-106.798607,73.45742],[-106.999847,73.484558],[-106.632134,73.682518],[-106.270561,73.730064],[-105.66655,73.733322],[-105.4365,73.769852],[-105.072113,73.747826],[-104.451988,73.554085],[-104.516297,73.347786],[-104.957626,73.023056],[-105.279381,72.915894],[-105.41906,72.919777],[-105.727516,73.044449],[-105.992653,73.212791],[-106.415054,73.382294],[-106.798607,73.45742]]],[[[-60,45.887604],[-60.145191,45.891605],[-60.090588,45.810436],[-60.352493,45.718555],[-60.455399,45.645046],[-60.547512,45.640553],[-60.748478,45.578018],[-60.770912,45.61169],[-60.945534,45.635544],[-61.102074,45.589573],[-61.234001,45.610992],[-61.338749,45.568966],[-61.436539,45.664909],[-61.510429,45.818359],[-61.560749,46.053623],[-61.486809,46.09111],[-61.433212,46.19804],[-61.281727,46.27533],[-61.043793,46.570435],[-61.062225,46.625557],[-60.975235,46.674854],[-60.902424,46.797993],[-60.70332,46.922317],[-60.610802,47.048199],[-60.468029,47.018722],[-60.475403,46.883305],[-60.311749,46.856071],[-60.330395,46.760975],[-60.410847,46.665451],[-60.361019,46.624275],[-60.476517,46.421066],[-60.431145,46.301201],[-60.555546,46.217167],[-60.608292,46.158485],[-60.723793,46.104004],[-60.816421,46.013916],[-60.825363,45.952576],[-60.946178,45.938843],[-61.031269,45.839882],[-61.161644,45.76387],[-61.104805,45.705627],[-60.974151,45.77401],[-60.753342,45.72636],[-60.752842,45.798924],[-60.54747,45.918446],[-60.574738,45.971626],[-60.726334,45.90876],[-60.807972,45.945469],[-60.691151,46.024986],[-60.434307,46.156109],[-60.563579,46.197277],[-60.399651,46.313202],[-60.302395,46.322365],[-60.225239,46.251228],[-60.143082,46.27293],[-59.966171,46.227028],[-59.861267,46.171669],[-59.905014,46.064693],[-59.87006,45.960693],[-60,45.887604]]],[[[-109.972572,78.325668],[-110.366325,78.276588],[-110.707878,78.301514],[-111.15004,78.390739],[-111.401276,78.327332],[-111.855728,78.334839],[-112.160507,78.373444],[-113.176781,78.277054],[-113.308823,78.332039],[-113.199806,78.408554],[-112.216835,78.549873],[-111.803497,78.544571],[-111.393951,78.595116],[-111.157501,78.692512],[-110.38485,78.760956],[-109.859932,78.640038],[-109.369095,78.55732],[-109.22702,78.477707],[-109.410683,78.310448],[-109.972572,78.325668]]],[[[-82.757271,62.940464],[-82.44165,62.933086],[-82.260468,62.996696],[-81.874672,62.916271],[-81.982284,62.79158],[-81.96534,62.71027],[-82.175766,62.600029],[-82.372521,62.556736],[-82.488373,62.450523],[-82.657211,62.39547],[-82.824692,62.280544],[-83.077698,62.190952],[-83.327469,62.263977],[-83.520065,62.226627],[-83.626449,62.163227],[-83.741768,62.159107],[-83.733612,62.273338],[-83.95488,62.421932],[-83.953789,62.472588],[-83.759277,62.560951],[-83.592789,62.694717],[-83.581627,62.824806],[-83.350357,62.927757],[-83.218178,62.926167],[-83.040695,62.845787],[-82.757271,62.940464]]],[[[-64.411407,49.792221],[-64.522842,49.8563],[-64.466057,49.903839],[-64.15123,49.942417],[-63.923534,49.881313],[-63.364094,49.818501],[-63.02747,49.749165],[-62.484528,49.564823],[-62.402069,49.482014],[-62.106666,49.374649],[-61.900185,49.346668],[-61.671837,49.129955],[-61.822357,49.058506],[-61.926815,49.072121],[-62.250885,49.057137],[-62.522175,49.127125],[-62.740005,49.149548],[-63.070515,49.219315],[-63.430664,49.35239],[-63.567379,49.383644],[-63.636555,49.511333],[-63.832302,49.63599],[-63.978454,49.690933],[-64.245155,49.743359],[-64.411407,49.792221]]],[[[-132.938248,53.524158],[-132.931503,53.70499],[-133.119675,53.794209],[-133.11171,53.996151],[-133.040588,54.030888],[-133.087112,54.12476],[-133.014664,54.174545],[-132.806076,54.126354],[-132.656586,54.151691],[-132.562668,54.086117],[-132.262055,54.094254],[-132.136291,53.976021],[-132.113968,53.848202],[-132.258469,53.763519],[-132.390869,53.74889],[-132.56221,53.688629],[-132.459701,53.607155],[-132.309357,53.61224],[-132.147659,53.702286],[-132.082916,53.877472],[-132.116699,54.033016],[-131.986786,54.028919],[-131.662232,54.112804],[-131.726089,53.940819],[-131.87944,53.768154],[-131.87233,53.69759],[-131.951599,53.515671],[-131.905777,53.422672],[-131.967758,53.270962],[-132.175095,53.238335],[-132.211197,53.145966],[-132.322403,53.1534],[-132.467758,53.1329],[-132.583893,53.187626],[-132.66629,53.365082],[-132.526932,53.410393],[-132.88942,53.469193],[-132.938248,53.524158]]],[[[-95,77.47065],[-95.881874,77.465218],[-96.281693,77.596458],[-96.244606,77.694527],[-95.927864,77.755554],[-95.395889,77.739082],[-94.986687,77.787323],[-94.340027,77.752907],[-93.649139,77.780762],[-93.226379,77.731316],[-93.081703,77.657188],[-93.387383,77.62603],[-93.463875,77.474022],[-93.937531,77.435562],[-94.412109,77.475479],[-95,77.47065]]],[[[-64.29216,46.619694],[-64.384628,46.616596],[-64.409721,46.718517],[-64.283653,46.813484],[-64.185928,46.939674],[-63.991421,47.048328],[-63.980389,46.880978],[-64.0671,46.747616],[-63.998272,46.741814],[-63.880375,46.629009],[-63.87072,46.525066],[-63.751782,46.496578],[-63.664314,46.562603],[-63.488937,46.509563],[-63.323212,46.489479],[-63.239422,46.431171],[-63.049633,46.4095],[-62.80273,46.432102],[-62.631531,46.464642],[-62.149299,46.480961],[-62.005917,46.430458],[-62.191032,46.345222],[-62.331459,46.351986],[-62.430363,46.246662],[-62.527065,46.201706],[-62.536121,46.123974],[-62.457443,46.087101],[-62.515564,45.972126],[-62.757946,45.947021],[-62.893597,45.996037],[-62.953442,46.056652],[-62.957825,46.19125],[-63.134983,46.193661],[-63.256504,46.13102],[-63.4818,46.210934],[-63.635258,46.223118],[-63.820866,46.337833],[-63.782913,46.387733],[-63.954742,46.411568],[-64.138565,46.400818],[-64.118561,46.515671],[-64.063072,46.575684],[-64.202522,46.623241],[-64.29216,46.619694]]],[[[-80,61.725739],[-80.218193,61.799961],[-80.27478,61.8885],[-80.275803,62.005287],[-80.216721,62.148056],[-80.069,62.244266],[-79.961433,62.361416],[-79.606011,62.414604],[-79.461525,62.375748],[-79.26989,62.235153],[-79.354729,62.052631],[-79.468819,61.942181],[-79.68618,61.611919],[-79.85553,61.576054],[-80,61.725739]]],[[[-90,77.213303],[-90.392677,77.199821],[-90.858208,77.288887],[-91.214325,77.388214],[-91.178352,77.600426],[-90.865143,77.660408],[-90.215736,77.613533],[-89.807182,77.500244],[-89.627769,77.331314],[-90,77.213303]]],[[[-118.956299,75.564957],[-119.393105,75.601067],[-119.315979,75.661674],[-118.969925,75.760864],[-118.716019,75.883194],[-118.345573,75.976074],[-118.144119,75.97802],[-117.785057,76.11335],[-117.448563,76.098846],[-117.545708,75.982178],[-117.823548,75.864342],[-118.02848,75.689064],[-118.367783,75.549286],[-118.703445,75.510651],[-118.956299,75.564957]]],[[[-105.681488,77.503609],[-105.810684,77.613335],[-106.070343,77.709953],[-105.671173,77.748833],[-105.197556,77.627029],[-104.945511,77.488037],[-104.97773,77.404541],[-104.691963,77.377228],[-104.384651,77.277229],[-104.436966,77.150475],[-104.800957,77.110748],[-105.224152,77.16346],[-105.738869,77.462334],[-105.681488,77.503609]]],[[[-99.836357,80.145737],[-99.469101,80.103478],[-99.153496,80.130905],[-98.859451,80.069138],[-98.630036,79.793327],[-98.78054,79.700058],[-99.338425,79.761032],[-99.3228,79.85067],[-99.51712,79.887306],[-100.138901,79.888603],[-100.196541,80.037231],[-99.836357,80.145737]]],[[[-81.446373,53.203053],[-81.326889,53.215691],[-81.123344,53.19252],[-80.97068,53.105659],[-80.763107,52.930405],[-80.670204,52.771996],[-80.796471,52.706058],[-81.068115,52.752598],[-81.217316,52.813549],[-81.577431,52.871227],[-81.944649,52.95549],[-82.054489,53.008087],[-81.918495,53.133923],[-81.621742,53.195866],[-81.446373,53.203053]]],[[[-103.924934,76.038811],[-104.388939,76.087631],[-104.473862,76.157181],[-104.324509,76.209763],[-103.490829,76.268951],[-103.078224,76.313713],[-102.715401,76.316757],[-102.489822,76.222435],[-102.794762,76.091766],[-103.34198,76.037209],[-103.924934,76.038811]]],[[[-103.872276,76.620415],[-103.578957,76.529114],[-102.980347,76.444794],[-103.257446,76.338265],[-103.529175,76.314247],[-104.047287,76.315399],[-104.275734,76.339066],[-104.419914,76.481331],[-104.646355,76.596619],[-104.323898,76.66732],[-103.872276,76.620415]]],[[[-74.191856,68.060913],[-74.083199,68.064949],[-73.802391,67.996086],[-73.574043,68.016876],[-73.436424,67.986809],[-73.341896,67.837387],[-73.430344,67.760323],[-73.992058,67.787293],[-74.284065,67.764557],[-74.592789,67.827332],[-74.773232,67.972778],[-74.721077,68.076134],[-74.483009,68.064651],[-74.318123,68.180923],[-74.200058,68.139526],[-74.191856,68.060913]]],[[[-104.733475,75.25634],[-104.684067,75.318184],[-104.374229,75.42704],[-104.118675,75.43],[-103.813469,75.36451],[-103.727455,75.227951],[-103.573234,75.153946],[-103.848724,75.058388],[-104.427971,75.030746],[-104.89846,75.152183],[-104.733475,75.25634]]],[[[-131.821716,52.712517],[-131.73526,52.689983],[-131.656723,52.540249],[-131.472214,52.50407],[-131.357696,52.367874],[-131.33487,52.299816],[-131.180649,52.317898],[-131.008636,52.215382],[-131.175674,52.115654],[-131.389831,52.19165],[-131.553131,52.323536],[-131.658447,52.473385],[-131.768387,52.504307],[-132.262055,52.832687],[-132.354904,52.947792],[-132.26828,53.018764],[-132.489944,53.023991],[-132.562897,53.093925],[-132.382889,53.104172],[-132.34285,53.143497],[-132.074036,53.147789],[-131.986817,53.213821],[-131.798965,53.243992],[-131.650177,53.108368],[-131.650726,53.031715],[-131.79808,53.065025],[-131.965332,53.038662],[-131.892319,52.893181],[-131.786255,52.772945],[-131.821716,52.712517]]],[[[-129.124329,53.076904],[-129.052475,53.211487],[-129.094528,53.280846],[-128.917709,53.282932],[-128.580917,53.101582],[-128.528961,53.003918],[-128.566757,52.685955],[-128.631653,52.608597],[-128.747284,52.597454],[-128.757538,52.693661],[-128.884522,52.652599],[-129.00148,52.694679],[-129.106369,52.789898],[-129.093002,52.882065],[-129.198074,52.987076],[-129.124329,53.076904]]],[[[-114.229965,78.011581],[-113.65194,77.875244],[-113.599914,77.804382],[-113.897552,77.720833],[-114.278061,77.704864],[-114.999367,77.912476],[-114.723991,78.013489],[-114.366524,78.072441],[-114.229965,78.011581]]],[[[-99.004768,73.976929],[-98.785713,74.031631],[-98.457558,74.041527],[-97.981071,74.112434],[-97.691948,74.11824],[-97.632065,74.053673],[-98.05217,73.896408],[-98.351212,73.850784],[-98.910233,73.812088],[-99.14138,73.823166],[-99.404358,73.917664],[-99.004768,73.976929]]],[[[-79.467323,56.470951],[-79.430595,56.439915],[-79.533058,56.202713],[-79.384834,56.253796],[-79.290314,56.561966],[-79.125465,56.531155],[-78.973473,56.34314],[-79.062088,56.34684],[-79.176506,56.22612],[-79.327721,56],[-79.463615,55.874756],[-79.536606,55.853714],[-79.614982,55.951408],[-79.469963,56.102535],[-79.595871,56.089447],[-79.810532,55.893433],[-80.021103,55.903385],[-79.857033,56.015305],[-79.772316,56.125694],[-79.571022,56.241142],[-79.467323,56.470951]]],[[[-102.07814,77.899887],[-101.691856,77.901161],[-101.251823,77.849594],[-100.901588,77.740631],[-101.100418,77.711655],[-101.543739,77.719627],[-102.068367,77.680389],[-102.500145,77.780952],[-102.429482,77.880051],[-102.07814,77.899887]]],[[[-78.51458,69.379028],[-78.271294,69.371872],[-78.210327,69.300522],[-78.333168,69.210197],[-78.47184,69.224174],[-78.549705,69.089973],[-78.724846,68.973801],[-79.234703,68.841965],[-79.390732,68.926636],[-79.225365,69.085136],[-78.965202,69.107773],[-78.717896,69.323364],[-78.51458,69.379028]]],[[[-86.705063,68.275734],[-86.432129,68.240654],[-86.338333,67.962875],[-86.421051,67.79583],[-86.56913,67.730957],[-86.767418,67.775711],[-86.921188,67.930733],[-86.811447,67.972351],[-86.870972,68.119736],[-86.705063,68.275734]]],[[[-77.936149,63.460156],[-77.670876,63.428516],[-77.523903,63.260433],[-77.56575,63.178894],[-77.86274,63.098534],[-78.101776,63.155769],[-78.517265,63.388393],[-78.52594,63.438515],[-78.18911,63.48962],[-77.936149,63.460156]]],[[[-80,69.74614],[-79.754997,69.76857],[-79.675926,69.820374],[-79.440971,69.805016],[-79.327118,69.712128],[-79.568329,69.628685],[-79.922562,69.615379],[-80.169273,69.539841],[-80.431831,69.666389],[-80.795525,69.704849],[-80.340263,69.80986],[-80.159416,69.807625],[-80,69.74614]]],[[[-90,76.838615],[-89.702049,76.743378],[-89.825874,76.669533],[-89.830986,76.544464],[-89.972672,76.471115],[-90.229225,76.536926],[-90.594131,76.724709],[-90.474381,76.79985],[-90,76.838615]]],[[[-84,66.077271],[-83.981422,66.03727],[-83.644234,65.908524],[-83.722717,65.812737],[-83.490479,65.733688],[-83.297104,65.729919],[-83.212852,65.658173],[-83.370995,65.621742],[-83.513977,65.661308],[-83.69487,65.651604],[-83.856262,65.766663],[-83.972374,65.73674],[-84.113655,65.854599],[-84.154648,65.973389],[-84.4235,66.038025],[-84.374771,66.144493],[-84.158043,66.082153],[-84,66.077271]]],[[[-114.253548,76.887962],[-113.732788,76.888733],[-113.466271,76.829247],[-113.597221,76.709946],[-114.027412,76.708961],[-114.80999,76.756142],[-114.580559,76.870964],[-114.253548,76.887962]]],[[[-130,53.626354],[-130.098969,53.69286],[-130.208557,53.720745],[-130.227066,53.900448],[-130.110748,53.876854],[-129.836975,53.712902],[-129.707382,53.596382],[-129.420608,53.408295],[-129.580811,53.206226],[-129.688263,53.310997],[-129.839599,53.391396],[-129.908447,53.471352],[-129.880829,53.539043],[-130,53.626354]]],[[[-64.781395,61.35117],[-64.933556,61.372166],[-65.330437,61.519863],[-65.468903,61.610813],[-65.391182,61.652554],[-65.003578,61.688065],[-64.833046,61.666435],[-64.62104,61.604076],[-64.670387,61.446983],[-64.781395,61.35117]]],[[[-102.010376,75.962723],[-102.395943,75.877441],[-102.478416,75.800453],[-102.845085,75.749626],[-103.346412,75.75528],[-103.035828,75.899452],[-102.156288,75.996658],[-102.010376,75.962723]]],[[[-76.727364,69.309494],[-76.919029,69.220795],[-76.882408,69.169106],[-77.095276,69.129921],[-77.261696,69.151466],[-77.368545,69.286751],[-77.340385,69.414642],[-77.114609,69.45404],[-76.943627,69.404556],[-76.638435,69.389458],[-76.727364,69.309494]]],[[[-85,66.028297],[-84.786049,65.90712],[-84.642189,65.77359],[-84.553108,65.623825],[-84.736488,65.549057],[-84.844406,65.657806],[-85.067642,65.733398],[-85.12574,65.808411],[-85.152451,65.99585],[-85,66.028297]]],[[[-68.299164,60.488548],[-68.244209,60.580612],[-68.002952,60.586109],[-67.830284,60.448318],[-67.962379,60.330791],[-68.32444,60.200348],[-68.440567,60.265579],[-68.299164,60.488548]]],[[[-102.810761,76.071335],[-102.382164,76.094452],[-102.358948,76.007111],[-103.339081,75.905273],[-103.846725,75.89801],[-103.916039,75.946442],[-103.520294,75.976486],[-102.810761,76.071335]]],[[[-77.284569,63.616604],[-77.306725,63.68755],[-77.037674,63.678581],[-76.687515,63.564075],[-76.557221,63.448967],[-76.72274,63.363628],[-77.053825,63.425777],[-77.233536,63.537174],[-77.284569,63.616604]]],[[[-75,68.675949],[-74.952293,68.582588],[-74.766823,68.483498],[-74.821304,68.341682],[-75.241981,68.44323],[-75.408226,68.522819],[-75.384972,68.636742],[-75.25972,68.73127],[-75,68.675949]]],[[[-70.891678,62.743034],[-70.775101,62.839474],[-70.496147,62.773151],[-70.270126,62.656391],[-70.170822,62.575111],[-70.367996,62.521954],[-70.72129,62.553482],[-70.778847,62.656242],[-70.891678,62.743034]]],[[[-96.37915,75.554451],[-96.467804,75.466125],[-96.917587,75.37925],[-96.99247,75.506172],[-96.370949,75.590469],[-96.301842,75.657112],[-95.897896,75.562843],[-96.226898,75.465027],[-96.37915,75.554451]]],[[[-86.29673,78.969818],[-85.80819,79.069046],[-85.241966,79.054665],[-85.202957,78.992035],[-86.323852,78.888542],[-86.29673,78.969818]]],[[[-130,53.209228],[-130.205399,53.373104],[-130.281662,53.374115],[-130.54332,53.547489],[-130.46492,53.634136],[-130.112259,53.510799],[-129.901184,53.38554],[-129.750961,53.209038],[-129.933456,53.161011],[-130,53.209228]]],[[[-72.003021,71.016533],[-71.918312,71.070595],[-71.364212,71.016869],[-71.402771,70.918762],[-71.568802,70.909317],[-72.087189,70.812836],[-72.233887,70.919815],[-72.046303,70.9487],[-72.003021,71.016533]]],[[[-78.796242,76.096374],[-78.821472,76.050011],[-79.155083,75.972],[-79.07534,75.874413],[-79.601059,75.899223],[-79.087395,76.117706],[-78.796242,76.096374]]],[[[-100.382149,76.745796],[-100.78215,76.629387],[-101.335808,76.55378],[-101.510063,76.626526],[-101.165581,76.657349],[-100.729927,76.756744],[-100.382149,76.745796]]],[[[-96.666039,73.131134],[-96.539032,73.030144],[-96.652572,72.942848],[-96.872963,72.92025],[-97.11734,73.041168],[-97.041702,73.141869],[-96.855049,73.186226],[-96.666039,73.131134]]],[[[-127.44426,52.358791],[-127.276306,52.43335],[-127.212211,52.315098],[-127.411667,52.24559],[-127.63826,52.132504],[-127.714806,51.960857],[-127.885628,51.935143],[-127.903458,52.009274],[-127.862343,52.13583],[-127.770553,52.241802],[-127.630318,52.259663],[-127.452873,52.330074],[-127.44426,52.358791]]],[[[-95.640183,69.53109],[-95.858871,69.365341],[-95.967598,69.504295],[-95.894287,69.59729],[-95.680275,69.633698],[-95.466339,69.583969],[-95.322197,69.507462],[-95.37738,69.403931],[-95.616692,69.335716],[-95.640183,69.53109]]],[[[-78.42086,69.642822],[-77.991707,69.711235],[-77.944351,69.639183],[-78.536789,69.491203],[-78.85939,69.501053],[-78.564728,69.636627],[-78.42086,69.642822]]],[[[-100.144257,68.911392],[-100.15583,68.828392],[-100.388985,68.738922],[-100.616859,68.798141],[-100.563202,68.957451],[-100.624336,69.003914],[-100.36647,69.051239],[-100.144257,68.911392]]],[[[-86.903954,70],[-87.122528,70.007957],[-87.358421,70.10717],[-87.07859,70.138504],[-86.803673,70.105423],[-86.556015,70.111595],[-86.441628,70.010094],[-86.754906,69.981834],[-86.903954,70]]],[[[-101.787903,68.668648],[-102.096573,68.619263],[-102.335251,68.707619],[-102.038559,68.778908],[-101.783287,68.811195],[-101.67733,68.75309],[-101.787903,68.668648]]],[[[-94.677757,75.950279],[-94.418137,75.953011],[-94.288666,75.759934],[-94.7724,75.780647],[-94.855499,75.937401],[-94.677757,75.950279]]],[[[-105,68.522385],[-104.938065,68.595627],[-104.60421,68.571419],[-104.407997,68.492332],[-104.417335,68.43219],[-104.596092,68.400124],[-104.922043,68.463203],[-105,68.522385]]],[[[-130.371582,53.974808],[-130.489105,53.88063],[-130.655563,53.990276],[-130.549973,54.054878],[-130.382523,54.086845],[-130.237534,53.983608],[-130.337677,53.826294],[-130.477753,53.835651],[-130.371582,53.974808]]],[[[-64.681915,62.527519],[-64.375503,62.52842],[-64.350311,62.463299],[-64.479065,62.378815],[-64.600266,62.360558],[-64.887382,62.417999],[-64.925079,62.470486],[-64.821045,62.537624],[-64.681915,62.527519]]],[[[-96.065567,69.502632],[-96.133407,69.359306],[-96.550911,69.493576],[-96.631309,69.559189],[-96.130203,69.57621],[-96.065567,69.502632]]],[[[-73.009934,71.506378],[-72.824997,71.463554],[-73.029823,71.401031],[-73.268585,71.374649],[-73.361503,71.521393],[-73.119438,71.565544],[-73.009934,71.506378]]],[[[-126.831307,49.776203],[-126.96743,49.817524],[-126.777481,49.87598],[-126.67379,49.854839],[-126.611771,49.598282],[-126.826515,49.619701],[-126.961082,49.725105],[-126.831307,49.776203]]],[[[-61.615467,56.80928],[-61.635468,56.858051],[-61.529945,56.917599],[-61.378467,56.894341],[-61.373074,56.663654],[-61.409115,56.606274],[-61.631111,56.714016],[-61.615467,56.80928]]],[[[-95,80.651489],[-95.209725,80.607071],[-95.971565,80.694054],[-95.22689,80.698654],[-95,80.651489]]],[[[-95.688019,74.587143],[-95.481323,74.642975],[-95.253052,74.551827],[-95.495026,74.503395],[-95.688019,74.587143]]],[[[-129.261291,52.817036],[-129.108291,52.737061],[-128.928268,52.610165],[-128.936203,52.49033],[-129.069458,52.510738],[-129.30101,52.75758],[-129.261291,52.817036]]],[[[-100.650192,70.582428],[-100.617927,70.659607],[-100.477058,70.689095],[-100.32196,70.582161],[-100.364998,70.499802],[-100.650192,70.582428]]],[[[-129.180924,53.600239],[-128.977737,53.702461],[-128.8797,53.656235],[-128.902038,53.5518],[-129.025009,53.547714],[-129.166107,53.391521],[-129.180924,53.600239]]],[[[-67.80928,69.615013],[-67.919441,69.519661],[-68.239632,69.593796],[-67.884628,69.708992],[-67.80928,69.615013]]],[[[-78.85395,56.2775],[-78.754379,56.429604],[-78.658989,56.414631],[-78.677757,56.172325],[-78.930206,56.126549],[-78.85395,56.2775]]],[[[-91.281799,77.206062],[-91.129211,77.250175],[-90.698044,77.191223],[-91.001656,77.136681],[-91.281799,77.206062]]],[[[-79.0298,68.183029],[-79.202614,68.243713],[-79.198341,68.333092],[-78.938278,68.352821],[-78.820023,68.278892],[-79.0298,68.183029]]],[[[-78.682007,68.561508],[-78.622948,68.509239],[-78.875694,68.459312],[-78.948456,68.530281],[-78.682007,68.561508]]],[[[-64.217163,63.320217],[-64.351646,63.403641],[-64.378944,63.524059],[-64.325531,63.578472],[-64.117538,63.343308],[-64.217163,63.320217]]],[[[-64.813049,63.779152],[-64.898315,63.826862],[-64.616386,63.911671],[-64.368202,63.725128],[-64.427551,63.665955],[-64.628563,63.748211],[-64.813049,63.779152]]],[[[-126.448029,50.762314],[-126.289657,50.83408],[-126.161621,50.747028],[-126.328285,50.643082],[-126.512741,50.674633],[-126.448029,50.762314]]],[[[-65,61.881561],[-64.792961,61.751251],[-64.918877,61.707855],[-65.136116,61.799187],[-65.228661,61.865509],[-65.09967,61.930397],[-65,61.881561]]],[[[-80,56.318527],[-79.831985,56.374302],[-79.706017,56.298451],[-80.060799,56.171303],[-80,56.318527]]],[[[-65.426193,64.568848],[-65.635285,64.583946],[-65.423226,64.675644],[-65.235962,64.699699],[-65.228905,64.628311],[-65.426193,64.568848]]],[[[-85,77.575836],[-84.825859,77.48793],[-85.020172,77.457939],[-85.327034,77.584847],[-85,77.575836]]],[[[-97.264351,74.602264],[-97.363014,74.513756],[-97.556885,74.473625],[-97.779976,74.497139],[-97.416214,74.631462],[-97.264351,74.602264]]],[[[-128,51.896885],[-128.068741,51.787224],[-128.196121,51.963398],[-128.112518,52.063133],[-127.98037,52.071228],[-127.948097,52.000252],[-128,51.896885]]],[[[-64.394897,60.295502],[-64.763443,60.376537],[-64.85453,60.426945],[-64.792099,60.490078],[-64.657783,60.490196],[-64.436096,60.382706],[-64.394897,60.295502]]],[[[-128,51.643459],[-127.898567,51.571579],[-127.877922,51.449028],[-128.087219,51.479908],[-128.147415,51.599064],[-128.134262,51.662655],[-128,51.643459]]],[[[-74.559883,62.678814],[-74.17408,62.686417],[-73.976647,62.66457],[-74.095169,62.597057],[-74.559883,62.678814]]],[[[-79.284866,52.057919],[-79.319404,51.969891],[-79.628731,51.916706],[-79.643967,52.012379],[-79.523735,52.030674],[-79.357704,52.102669],[-79.284866,52.057919]]],[[[-101.162025,69.554184],[-100.968803,69.499435],[-101.099281,69.40934],[-101.246674,69.44516],[-101.162025,69.554184]]],[[[-96.923515,72.796425],[-96.774376,72.893562],[-96.604096,72.782356],[-96.923515,72.796425]]],[[[-90.447212,69.325348],[-90.469513,69.392799],[-90.263359,69.440544],[-90.132225,69.387604],[-90.27298,69.257286],[-90.447212,69.325348]]],[[[-124.557594,49.758415],[-124.362495,49.713661],[-124.257279,49.613136],[-124.408913,49.615501],[-124.557594,49.758415]]],[[[-130.327438,53.732136],[-130.121445,53.693134],[-130.099854,53.559917],[-130.330185,53.614685],[-130.400482,53.685192],[-130.327438,53.732136]]],[[[-128.644043,52.549808],[-128.518677,52.56559],[-128.462784,52.468166],[-128.504974,52.425392],[-128.739624,52.509136],[-128.644043,52.549808]]],[[[-131.768189,53.018002],[-131.658325,52.997566],[-131.614166,52.927864],[-131.703766,52.875725],[-131.820618,52.866577],[-131.925705,53.013577],[-131.768189,53.018002]]],[[[-72.83905,71.651405],[-72.662186,71.641998],[-72.745087,71.531067],[-73.020408,71.581665],[-72.83905,71.651405]]],[[[-74.196732,68.253761],[-74.370789,68.381348],[-74.242058,68.447838],[-74.068451,68.344666],[-74.196732,68.253761]]],[[[-100,68.960876],[-100.2462,69.04908],[-100.090843,69.131729],[-99.978584,69.02404],[-100,68.960876]]],[[[-125.159058,50],[-125.338425,50.138882],[-125.368019,50.274284],[-125.230576,50.304367],[-125.134911,50.19593],[-125.222771,50.117119],[-125.159058,50]]],[[[-87.806862,48.790157],[-87.819573,48.738716],[-87.979462,48.749374],[-88.089325,48.798077],[-87.99057,48.854275],[-87.826561,48.851273],[-87.806862,48.790157]]],[[[-129.338562,53.190453],[-129.180801,53.28738],[-129.139709,53.114845],[-129.28064,53.080605],[-129.338562,53.190453]]],[[[-128.291397,52.554455],[-128.438049,52.542648],[-128.448441,52.74905],[-128.291367,52.673115],[-128.291397,52.554455]]],[[[-77.945091,64],[-77.630943,64.03907],[-77.684662,63.92902],[-77.939476,63.946831],[-77.945091,64]]],[[[-130.233749,55],[-130.151825,54.949024],[-130.289413,54.816036],[-130.418838,54.765209],[-130.475296,54.820278],[-130.270325,54.945553],[-130.233749,55]]],[[[-54.062721,49.704811],[-54.127876,49.605824],[-54.31797,49.56871],[-54.326317,49.661861],[-54.17025,49.747334],[-54.062721,49.704811]]],[[[-53.575005,48.107857],[-53.840843,48.091228],[-53.950641,48.174969],[-53.761875,48.174892],[-53.575005,48.107857]]],[[[-129.059708,53.430454],[-128.917404,53.392941],[-128.926254,53.316654],[-129.154373,53.334599],[-129.059708,53.430454]]],[[[-107.583526,73.570755],[-107.843384,73.536278],[-108.007546,73.608604],[-107.608421,73.612175],[-107.583526,73.570755]]],[[[-74.531532,68.556519],[-74.822754,68.566612],[-74.799095,68.67527],[-74.531532,68.556519]]],[[[-108,67.670006],[-107.892525,67.554489],[-108.123573,67.563683],[-108,67.670006]]],[[[-139.105698,69.515717],[-139.22963,69.571106],[-139.124679,69.639351],[-138.942139,69.61718],[-139.105698,69.515717]]],[[[-62.328632,65.596626],[-62.467647,65.689095],[-62.255337,65.727562],[-62.139923,65.677017],[-62.328632,65.596626]]],[[[-64.001106,67.563339],[-63.766338,67.549019],[-63.744507,67.494247],[-64.018524,67.500206],[-64.001106,67.563339]]],[[[-61.500633,56.432484],[-61.619114,56.475472],[-61.581478,56.554539],[-61.230434,56.467964],[-61.500633,56.432484]]],[[[-61.042034,56.042366],[-61.211853,56.038666],[-61.102035,56.138256],[-60.966755,56.095497],[-61.042034,56.042366]]],[[[-90,68.811028],[-89.775421,68.764214],[-89.967613,68.702255],[-90,68.811028]]],[[[-61.925934,57.443195],[-62.040783,57.519417],[-61.855522,57.58075],[-61.786755,57.509014],[-61.925934,57.443195]]],[[[-63.744301,67.267296],[-63.687973,67.351082],[-63.479717,67.340721],[-63.419373,67.268356],[-63.744301,67.267296]]],[[[-79.014549,54.926846],[-79.38559,54.837673],[-79.629562,54.810585],[-79.659958,54.840515],[-79.137238,54.927002],[-79.014549,54.926846]]],[[[-131.57431,52.577843],[-131.655747,52.631676],[-131.636597,52.691074],[-131.440536,52.709251],[-131.458267,52.621944],[-131.57431,52.577843]]],[[[-85.814438,47.696056],[-85.845474,47.784164],[-85.733627,47.790234],[-85.620079,47.719913],[-85.814438,47.696056]]],[[[-123.47599,48.866241],[-123.366112,48.774021],[-123.485161,48.713169],[-123.567459,48.816761],[-123.47599,48.866241]]],[[[-78.664879,60.706787],[-78.602631,60.779766],[-78.378693,60.820568],[-78.292351,60.78735],[-78.664879,60.706787]]],[[[-128.729156,52.465797],[-128.623886,52.451542],[-128.61351,52.328751],[-128.724441,52.313007],[-128.769119,52.420811],[-128.729156,52.465797]]],[[[-124.790291,50.275642],[-124.821037,50.217758],[-124.752319,50.166595],[-124.813141,50.115295],[-124.976433,50.242405],[-124.903641,50.305202],[-124.790291,50.275642]]],[[[-125.145058,50.343594],[-125.341682,50.292633],[-125.405571,50.305622],[-125.281837,50.444546],[-125.145058,50.343594]]],[[[-61.667622,57.381008],[-61.855785,57.407333],[-61.73074,57.54018],[-61.667622,57.381008]]],[[[-80,53.383789],[-79.95079,53.254082],[-80.026405,53.225132],[-80.104103,53.344887],[-80,53.383789]]],[[[-61.711548,57.699406],[-61.838287,57.766769],[-61.806084,57.837913],[-61.653401,57.78009],[-61.711548,57.699406]]],[[[-130.781616,54.612705],[-130.774292,54.544548],[-130.936112,54.465992],[-130.931885,54.606297],[-130.781616,54.612705]]],[[[-126.224724,49.384117],[-126.10936,49.390862],[-126.073265,49.282654],[-126.212494,49.269871],[-126.224724,49.384117]]],[[[-64.498436,47.904598],[-64.540848,47.806183],[-64.620407,47.739529],[-64.696808,47.760506],[-64.709625,47.8325],[-64.634651,47.883595],[-64.498436,47.904598]]],[[[-131.013092,51.940304],[-131.103211,51.992901],[-131.129761,52.115898],[-131.006058,52.095322],[-131.013092,51.940304]]],[[[-128,52.165085],[-127.884155,52.14109],[-127.948822,52.071678],[-128.101227,52.087227],[-128.131958,52.145645],[-128,52.165085]]],[[[-66.9048,44.595272],[-66.819351,44.785614],[-66.743591,44.686874],[-66.9048,44.595272]]],[[[-125,50.237362],[-124.894142,50.138554],[-124.88459,50.074741],[-125.071884,50.114216],[-124.984276,50.172783],[-125,50.237362]]],[[[-80,59.879486],[-79.948166,59.842472],[-80.086449,59.766308],[-80.147278,59.82486],[-80,59.879486]]],[[[-122.933739,49.181667],[-123.146133,49.109432],[-123.198761,49.168423],[-123.041466,49.198975],[-122.978279,49.175098],[-122.933739,49.181667]]],[[[-124.783554,50.278141],[-124.661789,50.272255],[-124.699623,50.165859],[-124.810394,50.235767],[-124.783554,50.278141]]],[[[-55.926148,47.601364],[-56.058693,47.620121],[-56.033238,47.68483],[-55.936954,47.690937],[-55.95015,47.665371],[-55.940426,47.645493],[-55.895664,47.61956],[-55.926148,47.601364]]]]},"properties":{"name":"加拿大","name_en":"CANADA","id":"CAN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.665299,1.061179],[9.587293,1.031948],[9.539645,1.125061],[9.389646,1.104041],[9.375366,1.187858],[9.400145,1.273671],[9.463657,1.3316],[9.476572,1.415996],[9.562215,1.486729],[9.613462,1.592571],[9.612033,1.667275],[9.731371,1.78701],[9.739405,1.840376],[9.815275,1.931235],[9.765231,2.092693],[9.795597,2.170288],[9.780395,2.325001],[9.822182,2.346989],[9.847888,2.246572],[10.040822,2.161885],[10.193963,2.172673],[10.640686,2.174149],[11.334608,2.173887],[11.334928,1.412115],[11.334782,0.999263],[10.835307,0.997232],[9.996741,0.997639],[9.942615,0.925412],[9.736285,1.069049],[9.665299,1.061179]]],[[[8.858525,3.536754],[8.764616,3.318026],[8.677887,3.209956],[8.447601,3.276692],[8.424581,3.34214],[8.470182,3.469819],[8.573735,3.468951],[8.608332,3.55861],[8.612401,3.660086],[8.678412,3.748516],[8.898568,3.764026],[8.931009,3.638558],[8.858525,3.536754]]]]},"properties":{"name":"赤道几内亚","name_en":"EQUATORIAL GUINEA","id":"GNQ"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-97.150146,25.947689],[-97.22052,25.954897],[-97.372162,25.911493],[-97.377533,25.836552],[-97.525116,25.882858],[-97.667213,26.020144],[-97.886856,26.058666],[-98.043991,26.034845],[-98.205261,26.05368],[-98.377167,26.150295],[-98.451477,26.217936],[-98.664917,26.232075],[-98.751541,26.290442],[-98.803475,26.362419],[-99.111893,26.419394],[-99.093086,26.477089],[-99.195129,26.62541],[-99.234604,26.790249],[-99.453011,27.057068],[-99.428909,27.161259],[-99.445305,27.247444],[-99.508301,27.332058],[-99.487389,27.487568],[-99.513443,27.560398],[-99.595756,27.63418],[-99.711189,27.653168],[-99.80838,27.763634],[-99.873878,27.794563],[-99.931389,27.976643],[-99.994255,27.997364],[-100.078919,28.141123],[-100.201256,28.189318],[-100.287231,28.27747],[-100.333145,28.432747],[-100.490219,28.658609],[-100.543587,28.823879],[-100.636658,28.941429],[-100.674675,29.102413],[-100.761231,29.156237],[-100.79866,29.245043],[-101.003021,29.359823],[-101.056587,29.442814],[-101.253258,29.523605],[-101.246193,29.61647],[-101.362747,29.662249],[-101.45224,29.784061],[-101.502357,29.760754],[-101.702263,29.759397],[-101.956841,29.793777],[-102.136703,29.800131],[-102.314255,29.879465],[-102.374618,29.796452],[-102.494293,29.780001],[-102.542931,29.743233],[-102.671425,29.741812],[-102.801704,29.521042],[-102.842468,29.354885],[-102.903709,29.255547],[-103.144287,28.977524],[-103.431564,29.044111],[-103.524056,29.133392],[-103.715713,29.178549],[-103.839813,29.276876],[-103.974449,29.29351],[-104.160606,29.392506],[-104.260384,29.511538],[-104.33168,29.5194],[-104.50618,29.635252],[-104.560936,29.766449],[-104.678497,29.926056],[-104.701729,30.027929],[-104.684837,30.164455],[-104.725418,30.255318],[-104.85247,30.381113],[-104.895698,30.564341],[-105.21138,30.803049],[-105.393608,30.851542],[-105.552048,30.988981],[-105.60154,31.084194],[-105.763473,31.167652],[-105.949829,31.360714],[-106.063957,31.395262],[-106.205597,31.469688],[-106.375084,31.729677],[-106.521141,31.778206],[-107.554115,31.783781],[-108.203476,31.783461],[-108.205894,31.331346],[-108.706162,31.330612],[-109.789291,31.332031],[-110.440224,31.331573],[-111.064751,31.328808],[-111.661156,31.516603],[-112.594696,31.809904],[-113.205055,32],[-113.927955,32.221359],[-114.806183,32.491871],[-114.810531,32.565258],[-114.717033,32.716759],[-115,32.695343],[-117.123581,32.534622],[-117.152351,32.647015],[-117.24543,32.666161],[-117.25235,32.896187],[-117.282806,33.015293],[-117.355659,33.161369],[-117.487686,33.314674],[-117.784248,33.5397],[-117.98674,33.643265],[-118.097427,33.736553],[-118.185181,33.765339],[-118.289681,33.706032],[-118.402153,33.742592],[-118.386787,33.816414],[-118.475243,33.99268],[-118.537262,34.036263],[-118.778809,34.024841],[-118.942101,34.046032],[-119.130501,34.102291],[-119.224152,34.157269],[-119.291099,34.275379],[-119.562523,34.41497],[-119.724213,34.396591],[-119.877418,34.40873],[-120.002251,34.461143],[-120.291099,34.473557],[-120.473526,34.45536],[-120.516289,34.527916],[-120.652443,34.578156],[-120.603271,34.708759],[-120.638832,34.759941],[-120.612564,34.839756],[-120.673409,34.905952],[-120.634941,35.031399],[-120.649117,35.141354],[-120.78569,35.177925],[-120.893906,35.245174],[-120.870155,35.407158],[-121.006775,35.464619],[-121.16909,35.639465],[-121.283867,35.668034],[-121.327248,35.779369],[-121.46405,35.892365],[-121.514511,36.011639],[-121.574928,36.030823],[-121.723923,36.201858],[-121.83593,36.253933],[-121.896057,36.315247],[-121.904099,36.392761],[-121.967735,36.569874],[-121.867409,36.607208],[-121.813721,36.684776],[-121.78772,36.799294],[-121.866234,36.937702],[-121.93647,36.975845],[-122.047951,36.947617],[-122.127617,36.963863],[-122.403877,37.194439],[-122.398338,37.354992],[-122.465904,37.497456],[-122.509567,37.508278],[-122.493484,37.652542],[-122.512985,37.779751],[-122.383232,37.788952],[-122.381218,37.634533],[-122.353561,37.587811],[-122.25119,37.569462],[-122.169952,37.495922],[-122.109024,37.517204],[-122.15284,37.650719],[-122.254043,37.762638],[-122.320625,37.906338],[-122.410904,37.942181],[-122.261536,38.068409],[-122.398056,38.152332],[-122.485764,38.093452],[-122.483368,37.921631],[-122.435821,37.881584],[-122.522858,37.821995],[-122.685882,37.930447],[-122.732849,37.921066],[-122.87001,38.023792],[-123.012818,38.005028],[-122.947037,38.162628],[-122.998703,38.29549],[-123.0718,38.324852],[-123.126778,38.448307],[-123.337265,38.573257],[-123.455673,38.715931],[-123.600067,38.808186],[-123.723503,38.916832],[-123.687698,39.032894],[-123.825684,39.347622],[-123.817924,39.439365],[-123.765129,39.554951],[-123.850548,39.831371],[-124.086906,40.079304],[-124.360542,40.261028],[-124.347763,40.31308],[-124.405434,40.442665],[-124.321106,40.630089],[-124.142181,40.903484],[-124.110184,41.023125],[-124.164764,41.130165],[-124.120522,41.194614],[-124.061928,41.43745],[-124.143852,41.713852],[-124.252121,41.775612],[-124.202644,41.949997],[-124.215363,42.005379],[-124.3526,42.102688],[-124.430885,42.331322],[-124.421188,42.497654],[-124.390365,42.568424],[-124.415909,42.662312],[-124.507843,42.734718],[-124.552925,42.832787],[-124.485268,42.942165],[-124.381355,43.273365],[-124.232918,43.559978],[-124.183174,43.742573],[-124.128395,44.062176],[-124.109787,44.317413],[-124.059097,44.657078],[-124.075188,44.768391],[-124.032158,44.89827],[-123.955665,45.274662],[-123.974991,45.458542],[-123.942314,45.725849],[-123.966568,45.889881],[-123.900986,46.164249],[-123.752106,46.212162],[-123.713798,46.168018],[-123.590683,46.177959],[-123.522156,46.263199],[-123.666504,46.263374],[-123.704514,46.307549],[-123.874969,46.235107],[-123.971283,46.299652],[-123.943497,46.480907],[-123.892799,46.539379],[-123.952148,46.59967],[-123.960495,46.731739],[-124.080132,46.716648],[-124.105446,46.834858],[-123.981346,46.920845],[-124.021759,47.023941],[-124.148224,47.023327],[-124.20266,47.203262],[-124.334137,47.403477],[-124.355003,47.547989],[-124.430153,47.748974],[-124.499184,47.821266],[-124.629433,47.890842],[-124.687492,48.098934],[-124.733254,48.162735],[-124.658089,48.333321],[-124.658348,48.394943],[-124.394348,48.28735],[-124.15728,48.235409],[-124.051308,48.177971],[-123.780197,48.151596],[-123.543457,48.146927],[-123.412468,48.113438],[-123.276169,48.1138],[-123.116562,48.149864],[-123.028664,48.082046],[-122.838654,48.134617],[-122.632805,47.882812],[-122.692154,47.824917],[-122.852883,47.785469],[-122.902664,47.650791],[-122.747452,47.667648],[-122.747215,47.72715],[-122.535858,47.913799],[-122.50399,47.793118],[-122.614029,47.649433],[-122.494095,47.507149],[-122.573128,47.322037],[-122.554863,47.270927],[-122.754501,47.280521],[-122.789444,47.34111],[-122.927032,47.275105],[-122.94989,47.139561],[-122.82534,47.175678],[-122.726151,47.097118],[-122.593277,47.174374],[-122.529831,47.279865],[-122.325485,47.343109],[-122.325134,47.392094],[-122.420181,47.570435],[-122.402725,47.80682],[-122.321129,47.943287],[-122.221169,47.980999],[-122.343712,48.097744],[-122.395081,48.254707],[-122.358444,48.296062],[-122.502716,48.380787],[-122.481201,48.532509],[-122.420814,48.599369],[-122.48896,48.64687],[-122.491257,48.758255],[-122.647247,48.780369],[-122.819916,48.94014],[-122.756149,49.00119],[-122.375557,48.999966],[-121.093048,48.999363],[-119.719475,49.000118],[-118.529724,49.001041],[-117.026794,48.999596],[-116.042008,49.000328],[-115.040405,48.998447],[-114,48.996944],[-112.863899,48.995357],[-111.912773,48.996697],[-111.155602,49.000607],[-110,48.996571],[-109.236328,48.999477],[-108.282516,48.995708],[-106.970345,48.993778],[-106.039101,48.994648],[-105.420883,48.997227],[-104.023682,48.990303],[-102.717583,48.992611],[-101.366417,48.995552],[-100.325073,48.99279],[-99.17466,48.994057],[-98.313126,48.995136],[-97.114151,48.993977],[-96.07206,48.995884],[-95.164673,48.99572],[-95.168426,49.388611],[-94.982643,49.363438],[-94.835899,49.319851],[-94.820572,49.168907],[-94.699043,48.891201],[-94.689339,48.776272],[-94.59069,48.720657],[-94.439224,48.695339],[-94.292335,48.709248],[-94.234344,48.651356],[-93.842728,48.632999],[-93.800957,48.524277],[-93.686318,48.519623],[-93.47055,48.547703],[-93.456726,48.594002],[-93.24041,48.646748],[-92.96167,48.612125],[-92.747078,48.544559],[-92.686127,48.44117],[-92.51976,48.44722],[-92.480522,48.348068],[-92.37912,48.230766],[-92.273315,48.253456],[-92.298355,48.354294],[-92.085312,48.365013],[-91.969177,48.226639],[-91.756187,48.200428],[-91.707367,48.112865],[-91.57756,48.10846],[-91.582947,48.049377],[-91.256355,48.079113],[-91.115303,48.166279],[-90.9589,48.230057],[-90.852043,48.239864],[-90.758835,48.086983],[-90.641228,48.100777],[-90.385712,48.088413],[-90.07621,48.098892],[-89.992905,48.020023],[-89.862091,47.987865],[-89.755028,48.020103],[-89.567459,47.992741],[-89.745621,47.900887],[-90.015251,47.811329],[-90.510948,47.701996],[-90.721436,47.620449],[-91.050873,47.438103],[-91.471085,47.120945],[-91.562897,47.085201],[-91.77536,46.93903],[-92.080063,46.784637],[-91.949715,46.67717],[-91.793129,46.690537],[-91.586845,46.751106],[-91.378143,46.789185],[-91.221542,46.860039],[-91.047928,46.87883],[-90.862732,46.960331],[-90.77961,46.929748],[-90.785423,46.826267],[-90.878036,46.744209],[-90.892182,46.581997],[-90.689789,46.663963],[-90.548187,46.578621],[-90.408195,46.560463],[-90.175285,46.635658],[-90.038093,46.660717],[-89.864776,46.776096],[-89.745445,46.822704],[-89.605782,46.815037],[-89.374329,46.847275],[-89.234413,46.901943],[-89.114998,46.990471],[-88.978539,46.993164],[-88.895722,47.080814],[-88.669304,47.212158],[-88.613976,47.195221],[-88.637604,47.163548],[-88.601684,47.116211],[-88.507858,47.093845],[-88.444054,46.998604],[-88.474053,46.819115],[-88.38327,46.834564],[-88.233871,46.926773],[-87.90258,46.9053],[-87.675621,46.836395],[-87.335365,46.490032],[-87.124611,46.487263],[-86.975754,46.521156],[-86.8601,46.431591],[-86.746986,46.472992],[-86.633407,46.410633],[-86.457519,46.544537],[-86.38546,46.554527],[-86.154953,46.662651],[-86.076118,46.649204],[-85.877724,46.685486],[-85.77565,46.672077],[-85.467667,46.674805],[-85.244576,46.747704],[-84.9748,46.747135],[-85.023346,46.685471],[-85.032288,46.53426],[-84.829575,46.441414],[-84.670265,46.485462],[-84.543747,46.414963],[-84.488136,46.450878],[-84.407295,46.494644],[-84.269295,46.488419],[-84.192497,46.535355],[-84.107811,46.503509],[-84.14225,46.412071],[-84.071823,46.184566],[-84.002441,46.144711],[-83.948448,46.050617],[-83.821205,46.114498],[-83.566048,46.101059],[-83.432907,45.998745],[-83.490562,45.933266],[-83.7845,45.93042],[-83.855202,45.970509],[-83.987587,45.943405],[-84.098717,45.964802],[-84.527702,45.993031],[-84.684181,46.026955],[-84.752541,45.831703],[-84.906311,45.915691],[-85.001686,45.997837],[-85.337395,46.086754],[-85.531853,46.079514],[-85.647781,45.969662],[-85.810272,45.978249],[-85.919205,45.940968],[-86.200561,45.961414],[-86.319664,45.899361],[-86.352829,45.789463],[-86.531135,45.742336],[-86.623817,45.61031],[-86.705429,45.645775],[-86.632584,45.76059],[-86.64489,45.832043],[-86.782005,45.834],[-86.836685,45.720116],[-86.98027,45.694004],[-87.040871,45.743164],[-87.18721,45.639111],[-87.326477,45.421642],[-87.607338,45.112457],[-87.62133,44.974163],[-87.775284,44.964394],[-87.845718,44.857975],[-87.965591,44.736343],[-88.002594,44.640381],[-87.987877,44.534222],[-87.92823,44.528831],[-87.850395,44.619263],[-87.760467,44.643948],[-87.713806,44.722656],[-87.571297,44.852615],[-87.478813,44.860638],[-87.312447,44.791031],[-87.356041,44.681862],[-87.480019,44.505878],[-87.538063,44.310318],[-87.505218,44.192879],[-87.630196,44.109932],[-87.710152,43.93774],[-87.720711,43.816422],[-87.697083,43.676773],[-87.768417,43.58979],[-87.784355,43.484356],[-87.863312,43.375774],[-87.904961,43.238865],[-87.859032,43.072376],[-87.891739,43.022835],[-87.832153,42.948662],[-87.840797,42.88171],[-87.749809,42.774693],[-87.809876,42.612557],[-87.788849,42.464161],[-87.828148,42.296875],[-87.800873,42.217434],[-87.660591,42.057705],[-87.601982,41.857178],[-87.51413,41.71011],[-87.420654,41.646294],[-87.298057,41.617931],[-87.188316,41.624645],[-86.915772,41.709171],[-86.677841,41.834065],[-86.605278,41.894928],[-86.482231,42.101135],[-86.371376,42.221115],[-86.254898,42.437504],[-86.204193,42.670059],[-86.197563,42.872677],[-86.251473,43.094612],[-86.389252,43.313671],[-86.522476,43.656612],[-86.428131,43.777046],[-86.440262,43.938156],[-86.510025,44.047245],[-86.412308,44.129673],[-86.257011,44.355785],[-86.220291,44.536808],[-86.243599,44.698666],[-86.083878,44.740383],[-86.069824,44.890121],[-85.965202,44.91357],[-85.930862,44.965714],[-85.812515,44.942226],[-85.617355,45.182861],[-85.574692,45.068939],[-85.595283,44.923359],[-85.635841,44.879276],[-85.61911,44.765598],[-85.527115,44.747318],[-85.393837,44.91658],[-85.358238,45.09267],[-85.367142,45.262058],[-85.202499,45.354305],[-85.030914,45.362091],[-85.036926,45.432812],[-85.11702,45.554314],[-85.063415,45.629368],[-84.788772,45.774216],[-84.416908,45.664883],[-84.215843,45.63158],[-84.054031,45.483215],[-83.921112,45.482918],[-83.774735,45.402248],[-83.707634,45.40699],[-83.58931,45.346909],[-83.485802,45.337681],[-83.375915,45.264404],[-83.399101,45.227333],[-83.313202,45.139359],[-83.449684,44.990845],[-83.387367,44.898575],[-83.312431,44.860405],[-83.263634,44.700874],[-83.321373,44.334366],[-83.430611,44.258152],[-83.527969,44.238987],[-83.569687,44.048798],[-83.846565,43.981438],[-83.901413,43.912865],[-83.90902,43.680855],[-83.659195,43.59671],[-83.520294,43.717518],[-83.476143,43.711571],[-83.379356,43.848217],[-83.259941,43.968933],[-83.065819,43.996647],[-82.913101,44.069572],[-82.78611,44.020836],[-82.681061,43.909775],[-82.610527,43.772884],[-82.594894,43.591564],[-82.536865,43.428966],[-82.515106,43.207886],[-82.485496,43.106266],[-82.416153,43.002117],[-82.455116,42.916641],[-82.463043,42.75576],[-82.524422,42.594601],[-82.683456,42.516136],[-82.828484,42.370102],[-83.072723,42.302513],[-83.126663,42.233494],[-83.142792,42.045593],[-83.297753,41.942898],[-83.468651,41.741264],[-83.431076,41.690479],[-83.333282,41.701488],[-83.240685,41.643776],[-83.071007,41.597961],[-82.93972,41.507828],[-83.028175,41.44849],[-82.921875,41.414577],[-82.806724,41.467659],[-82.662789,41.450943],[-82.48941,41.380562],[-82.247643,41.438046],[-82.021034,41.515301],[-81.928291,41.494259],[-81.727821,41.495972],[-81.588188,41.568676],[-81.39592,41.705669],[-80.999718,41.857109],[-80.792702,41.913326],[-80.593735,41.948608],[-80.294197,42.044971],[-79.639404,42.315483],[-79.443375,42.415009],[-79.348747,42.494301],[-79.154266,42.554192],[-79.045624,42.691116],[-78.851143,42.789795],[-78.9067,42.893017],[-78.914017,42.943199],[-79.016563,42.985783],[-79.065705,43.077431],[-79.041702,43.136116],[-79.05867,43.258678],[-78.738144,43.33482],[-78.490059,43.373455],[-77.957848,43.367481],[-77.710022,43.323078],[-77.535728,43.234947],[-77.382027,43.274563],[-77.138489,43.289394],[-77.018639,43.267525],[-76.779427,43.319035],[-76.636917,43.417152],[-76.422295,43.526062],[-76.224838,43.540089],[-76.20681,43.727654],[-76.265091,43.887341],[-76.142288,43.897469],[-76.196968,43.999035],[-76.376343,44.105877],[-76.205238,44.204903],[-76.074783,44.241829],[-75.764786,44.449066],[-75.804954,44.478062],[-75.728958,44.552364],[-75.300133,44.84454],[-74.88694,45.005856],[-74.602715,45],[-73.500603,45],[-72.334396,45],[-71.53727,45],[-71.510948,45.068302],[-71.424431,45.124882],[-71.398773,45.214127],[-71.2938,45.299866],[-71.13121,45.250691],[-71.094749,45.303757],[-70.951011,45.33353],[-70.876579,45.232697],[-70.715301,45.38834],[-70.624069,45.402946],[-70.713234,45.492043],[-70.638107,45.606487],[-70.388207,45.739437],[-70.409737,45.795044],[-70.259171,45.889854],[-70.2332,45.936066],[-70.311531,46.023743],[-70.244636,46.144096],[-70.301087,46.192192],[-70.216705,46.32531],[-70.056816,46.425999],[-69.996491,46.685467],[-69.225593,47.458649],[-69.037216,47.413002],[-69.049385,47.252182],[-68.895019,47.178871],[-68.583153,47.287064],[-68.389313,47.287231],[-68.367783,47.354519],[-68.165047,47.330441],[-67.95488,47.194416],[-67.887802,47.10519],[-67.786537,47.066189],[-67.79213,46.851105],[-67.782326,46.393806],[-67.783424,45.939587],[-67.808578,45.879948],[-67.810631,45.678654],[-67.61589,45.607384],[-67.407036,45.553661],[-67.495621,45.478832],[-67.430931,45.344975],[-67.48526,45.287174],[-67.343697,45.126141],[-67.277275,45.186352],[-67.149239,45.157242],[-67.090355,45.075756],[-67.056129,44.956558],[-66.979012,44.86927],[-66.972794,44.851776],[-67.161118,44.665939],[-67.390671,44.665379],[-67.468483,44.596577],[-67.64463,44.567387],[-67.735252,44.503086],[-67.859291,44.477543],[-68.050263,44.354424],[-68.125298,44.445877],[-68.220802,44.506741],[-68.292526,44.447876],[-68.181839,44.327679],[-68.299431,44.285599],[-68.342796,44.224022],[-68.437935,44.311485],[-68.551216,44.355892],[-68.531693,44.227619],[-68.760414,44.336746],[-68.928261,44.454575],[-68.961495,44.318592],[-69.041466,44.242321],[-69.086899,44.04493],[-69.211899,43.940765],[-69.440582,43.989471],[-69.464607,43.904884],[-69.630936,43.846775],[-69.841728,43.737709],[-69.94928,43.857716],[-70.026932,43.862049],[-70.152351,43.799889],[-70.258438,43.675068],[-70.20633,43.568947],[-70.318146,43.538803],[-70.456047,43.348129],[-70.563721,43.323742],[-70.58474,43.219471],[-70.683579,43.071667],[-70.750893,43.01244],[-70.82058,42.882828],[-70.796806,42.746731],[-70.734596,42.666153],[-70.625473,42.68943],[-70.59549,42.637436],[-70.888245,42.542976],[-70.861206,42.491234],[-70.967331,42.442192],[-71.048561,42.303066],[-70.953934,42.250767],[-70.872681,42.275555],[-70.723641,42.21072],[-70.652649,42.095982],[-70.70797,42.008347],[-70.669426,41.959042],[-70.552094,41.92028],[-70.533699,41.801281],[-70.462227,41.757877],[-70.315597,41.739418],[-70.126098,41.760597],[-69.938995,41.807549],[-69.932106,41.6801],[-70.32444,41.6283],[-70.413574,41.641338],[-70.491218,41.559025],[-70.652863,41.582504],[-70.625473,41.674942],[-70.651115,41.740932],[-70.761086,41.694542],[-70.815025,41.62886],[-70.906334,41.629562],[-70.990936,41.510365],[-71.210709,41.50354],[-71.219261,41.637287],[-71.179581,41.705414],[-71.352775,41.740917],[-71.421066,41.666367],[-71.422867,41.474701],[-71.525162,41.378254],[-71.695664,41.361748],[-71.835968,41.318531],[-71.963547,41.342567],[-72.262527,41.281944],[-72.764229,41.269253],[-73.012398,41.208309],[-73.105866,41.153477],[-73.167015,41.169685],[-73.566521,41.013275],[-73.625466,41.016258],[-73.775413,40.911865],[-73.822418,40.824757],[-73.937195,40.804543],[-74.010391,40.700657],[-74.106781,40.660133],[-74.059746,40.600269],[-74.276955,40.476349],[-73.984734,40.409023],[-73.984764,40.284214],[-74.05352,40],[-74.106171,40],[-74.13366,39.852455],[-74.19455,39.755344],[-74.164887,39.70277],[-74.27153,39.595947],[-74.40992,39.52055],[-74.535225,39.310963],[-74.712974,39.116348],[-74.788857,39.094555],[-74.789398,38.992775],[-74.864014,38.938801],[-74.969139,38.927837],[-74.897766,39.101646],[-74.915436,39.170467],[-75.180069,39.238976],[-75.427712,39.381424],[-75.519241,39.473675],[-75.591858,39.45499],[-75.402428,39.247665],[-75.393341,39.05125],[-75.229065,38.806091],[-75.086189,38.780464],[-75.070763,38.679825],[-75.141281,38.681065],[-75.128777,38.585781],[-75.05925,38.590519],[-75.051773,38.490078],[-75.116066,38.423039],[-75.0942,38.343296],[-75.17321,38.228683],[-75.242378,38.231449],[-75.437317,37.9772],[-75.452759,37.89452],[-75.555283,37.728596],[-75.690979,37.606491],[-75.902641,37.345879],[-75.943405,37.199158],[-76.027008,37.252991],[-75.982902,37.310616],[-75.94754,37.557049],[-75.836296,37.730679],[-75.73082,37.77721],[-75.686447,37.939796],[-75.89032,37.999363],[-75.836265,38.212688],[-75.952011,38.25872],[-76.14193,38.294148],[-76.210388,38.372494],[-76.27993,38.377434],[-76.340996,38.487438],[-76.28048,38.597542],[-76.093514,38.623192],[-76.239792,38.712147],[-76.301277,38.72311],[-76.305145,38.823353],[-76.200325,38.83704],[-76.224464,38.962631],[-76.133919,39.078053],[-76.277161,39.141182],[-76.184761,39.313404],[-76.009674,39.404423],[-75.963714,39.55056],[-76.08548,39.539455],[-76.104553,39.423],[-76.290321,39.307297],[-76.339523,39.36245],[-76.439308,39.189564],[-76.458603,38.975174],[-76.529907,38.716412],[-76.517319,38.511944],[-76.389221,38.379353],[-76.422333,38.319145],[-76.324783,38.141098],[-76.435425,38.123512],[-76.541519,38.145657],[-76.584877,38.214226],[-76.779526,38.226963],[-76.922585,38.289192],[-76.96859,38.216164],[-76.885384,38.174049],[-76.619949,38.1478],[-76.522446,38.022579],[-76.24836,37.890373],[-76.31781,37.769814],[-76.340553,37.627735],[-76.439056,37.604656],[-76.251076,37.436352],[-76.278702,37.345982],[-76.356575,37.349445],[-76.397553,37.259281],[-76.463211,37.243187],[-76.277901,37.090523],[-76.305466,37.017349],[-76.42495,36.962532],[-76.473427,37.025784],[-76.632393,37.124504],[-76.648407,37.21196],[-76.811462,37.201946],[-76.661728,37.096954],[-76.673592,37.055363],[-76.446785,36.904831],[-76.377838,36.89423],[-76.32225,36.959579],[-76.086777,36.908054],[-75.995979,36.919983],[-75.919869,36.675491],[-75.99237,36.638222],[-76.039818,36.497543],[-75.920197,36.351536],[-75.797417,36.086144],[-75.845879,36.09343],[-75.913132,36.21109],[-76.07106,36.138164],[-76.213951,36.095516],[-76.393303,36.080669],[-76.476036,36.022404],[-76.575607,36.01096],[-76.66832,36.038361],[-76.680084,35.932011],[-76.40226,35.977276],[-76.30941,35.950356],[-76.168862,35.991322],[-75.943054,35.95134],[-75.8592,35.973858],[-75.782066,35.930565],[-75.715271,35.69915],[-75.731651,35.624893],[-75.825668,35.566418],[-75.882973,35.577568],[-76.120789,35.347656],[-76.28682,35.338932],[-76.387062,35.409187],[-76.495232,35.371803],[-76.695373,35.417954],[-76.723038,35.372913],[-76.63073,35.324654],[-76.501572,35.308769],[-76.552277,35.136723],[-76.607376,35.065754],[-76.810509,34.962311],[-76.767159,34.913929],[-76.666092,34.978977],[-76.519203,35.002777],[-76.40728,34.93541],[-76.333221,35.022469],[-76.283844,34.95887],[-76.344277,34.880547],[-76.455826,34.814346],[-76.524124,34.72184],[-76.624908,34.708569],[-76.821785,34.728302],[-76.976341,34.708828],[-76.999535,34.673317],[-77.152771,34.640511],[-77.564575,34.413837],[-77.849045,34.179066],[-77.924393,34.015682],[-78.0019,33.924709],[-78.384918,33.9021],[-78.698151,33.812515],[-78.778625,33.772198],[-78.980003,33.600616],[-79.098427,33.473198],[-79.198837,33.298748],[-79.187927,33.174252],[-79.252113,33.118118],[-79.376778,33.06633],[-79.412941,33.009399],[-79.57016,33.009205],[-79.658066,32.868],[-79.73864,32.800659],[-79.844955,32.753609],[-79.910858,32.669354],[-80.009171,32.614456],[-80.129906,32.590115],[-80.340813,32.480549],[-80.489899,32.498253],[-80.516548,32.392544],[-80.594574,32.280643],[-80.651062,32.261261],[-80.738762,32.149315],[-80.85614,32.104099],[-80.905602,32.053101],[-80.845078,32],[-81.130096,31.721058],[-81.12896,31.627823],[-81.1735,31.51647],[-81.253227,31.416906],[-81.301437,31.312529],[-81.291939,31.221676],[-81.40316,31.114824],[-81.422981,31.016119],[-81.405029,30.908415],[-81.459671,30.743711],[-81.424957,30.69064],[-81.443733,30.562998],[-81.393715,30.314459],[-81.259918,29.806719],[-81.160744,29.557144],[-81.0018,29.213972],[-80.75483,28.821882],[-80.580993,28.592483],[-80.52784,28.464464],[-80.604462,28.35541],[-80.584824,28.154886],[-80.539734,28.032511],[-80.378105,27.73493],[-80.267532,27.410738],[-80.164772,27.199642],[-80.076843,26.970905],[-80.0308,26.799917],[-80.034332,26.584681],[-80.109039,26.076559],[-80.113075,25.951611],[-80.168037,25.864349],[-80.190681,25.754171],[-80.238281,25.724354],[-80.30735,25.606379],[-80.338325,25.46879],[-80.310806,25.369898],[-80.426186,25.223879],[-80.354767,25.206261],[-80.401642,25.102957],[-80.46434,25.207859],[-80.536926,25.217371],[-80.7089,25.140226],[-80.836334,25.171587],[-80.902878,25.138292],[-81.08155,25.114281],[-81.168717,25.223301],[-81.154785,25.297901],[-80.952148,25.212635],[-80.901436,25.243666],[-80.96714,25.329945],[-81.040298,25.323111],[-81.136658,25.378536],[-81.264229,25.665268],[-81.334778,25.715952],[-81.343018,25.816156],[-81.542099,25.916567],[-81.603165,25.888071],[-81.730247,25.911043],[-81.728401,25.969185],[-81.791138,26.065969],[-81.856041,26.444994],[-81.901344,26.439663],[-82.063759,26.567255],[-82.074455,26.66511],[-82.056053,26.874365],[-82.098579,26.953814],[-82.185791,26.936172],[-82.150696,26.796841],[-82.255966,26.821924],[-82.339592,26.89135],[-82.450233,27.064589],[-82.542763,27.254999],[-82.576943,27.409214],[-82.68879,27.515619],[-82.602775,27.526878],[-82.538368,27.678156],[-82.407448,27.792696],[-82.391342,27.847958],[-82.461044,27.93956],[-82.533699,27.936787],[-82.66758,28.028633],[-82.727265,27.941771],[-82.652885,27.909306],[-82.590179,27.829847],[-82.636078,27.718794],[-82.742927,27.760035],[-82.855553,27.866064],[-82.805664,27.962368],[-82.777878,28.107218],[-82.803116,28.168104],[-82.752495,28.226484],[-82.647697,28.540873],[-82.657669,28.735027],[-82.639664,28.831947],[-82.778244,29.073584],[-82.813637,29.162893],[-83.035332,29.166727],[-83.152832,29.291676],[-83.242332,29.431395],[-83.397827,29.515003],[-83.405686,29.64706],[-83.557686,29.736803],[-83.648483,29.891134],[-83.748909,29.960333],[-83.835251,29.984243],[-84.000717,30.105661],[-84.184296,30.076706],[-84.336304,30.072832],[-84.45015,29.929014],[-84.538223,29.907635],[-84.757423,29.785505],[-84.88427,29.729891],[-85.037376,29.703125],[-85.111694,29.711773],[-85.309082,29.687431],[-85.297485,29.794456],[-85.36132,29.897396],[-85.478653,29.975918],[-85.601349,30.095207],[-85.725792,30.121655],[-85.86171,30.208609],[-86.03315,30.283459],[-86.237762,30.345304],[-86.200584,30.47295],[-86.393234,30.448484],[-86.440796,30.480696],[-86.586571,30.429976],[-86.601517,30.398119],[-86.776383,30.405352],[-86.952248,30.388754],[-87.01683,30.501169],[-87.068237,30.443092],[-87.128586,30.525713],[-87.17321,30.423103],[-87.266624,30.378601],[-87.340073,30.30661],[-87.794914,30.22583],[-87.754692,30.28928],[-87.89846,30.402157],[-87.931595,30.475941],[-87.898041,30.545776],[-87.93045,30.709684],[-88.016953,30.696413],[-88.083878,30.567703],[-88.106209,30.374817],[-88.215935,30.363115],[-88.360237,30.402098],[-88.483124,30.314526],[-88.557587,30.382128],[-88.704613,30.337986],[-88.84391,30.426615],[-89.042671,30.375252],[-89.410027,30.254742],[-89.439316,30.184492],[-89.584114,30.203644],[-89.713928,30.168322],[-89.988472,30.297289],[-90.090645,30.362274],[-90.202141,30.383911],[-90.267204,30.338343],[-90.428078,30.157402],[-90.403122,30.079453],[-90.135788,30.019714],[-90,30.042255],[-89.876686,30.151594],[-89.779762,30.066479],[-89.852921,29.997839],[-89.811363,29.933355],[-89.704918,29.875429],[-89.587486,29.884747],[-89.576843,29.987413],[-89.499306,30.031588],[-89.429367,29.971878],[-89.405418,29.764313],[-89.557304,29.734262],[-89.689217,29.611082],[-89.679695,29.512726],[-89.537407,29.44548],[-89.535599,29.380953],[-89.375206,29.386751],[-89.37854,29.347774],[-89.17292,29.321913],[-89.123093,29.220551],[-88.995483,29.173632],[-89.16954,29.033947],[-89.250328,29.061855],[-89.334618,29.030296],[-89.445579,29.174252],[-89.677872,29.290039],[-89.894898,29.466549],[-89.957512,29.456192],[-90.178383,29.569616],[-90.217636,29.534378],[-90.052803,29.412151],[-90.071831,29.333601],[-90.125923,29.303576],[-90.070854,29.170832],[-90.180863,29.092865],[-90.230576,29.091913],[-90.254936,29.245928],[-90.359199,29.305281],[-90.532455,29.306694],[-90.605591,29.228851],[-90.671684,29.214518],[-90.72113,29.131208],[-90.809677,29.221828],[-90.961487,29.330044],[-90.981888,29.263767],[-91.129997,29.224648],[-91.128754,29.331842],[-91.197403,29.367306],[-91.281029,29.472065],[-91.405495,29.506998],[-91.415787,29.563229],[-91.532898,29.522081],[-91.551781,29.631077],[-91.625641,29.625238],[-91.619118,29.735863],[-91.871384,29.76231],[-91.827217,29.831297],[-91.968941,29.831936],[-91.981873,29.792414],[-92.198822,29.724789],[-92.120506,29.632961],[-92.173164,29.576677],[-92.288879,29.528017],[-92.611999,29.573088],[-92.778,29.624561],[-92.972313,29.710176],[-93.093445,29.746855],[-93.279007,29.774086],[-93.328064,29.834463],[-93.235657,29.867378],[-93.311562,30.065081],[-93.350411,29.942471],[-93.334663,29.891056],[-93.435906,29.865063],[-93.346268,29.752508],[-93.461868,29.767143],[-93.749619,29.730465],[-93.82737,29.690113],[-93.896439,29.793558],[-93.785149,29.84416],[-93.757545,29.962131],[-93.862641,29.966516],[-93.948891,29.848387],[-93.953056,29.795544],[-93.861054,29.712477],[-94.127197,29.644632],[-94.605965,29.457895],[-94.552643,29.570234],[-94.743225,29.521025],[-94.688385,29.756725],[-94.802826,29.761332],[-94.871361,29.668503],[-95.010895,29.647743],[-95.01902,29.540768],[-94.913468,29.48905],[-94.878754,29.3696],[-95.088402,29.173561],[-95.16552,29.120304],[-95.293427,28.93371],[-95.582985,28.774797],[-95.734154,28.731546],[-95.795326,28.740871],[-95.917992,28.698778],[-95.955414,28.622873],[-96.031013,28.647013],[-96.14904,28.604631],[-96.237068,28.637423],[-96.3573,28.62167],[-96.567535,28.640162],[-96.566902,28.579054],[-96.397339,28.432983],[-96.64743,28.320898],[-96.784752,28.393745],[-96.804726,28.290218],[-96.780762,28.227488],[-96.904266,28.124216],[-96.982292,28.11739],[-97.069321,28.171232],[-97.207855,28.087967],[-97.14428,28.025679],[-97.057289,27.994305],[-97.197235,27.818205],[-97.261742,27.875914],[-97.369362,27.839026],[-97.3918,27.766136],[-97.259079,27.697338],[-97.328812,27.556536],[-97.405807,27.326553],[-97.503204,27.276283],[-97.514885,27.355864],[-97.626984,27.237116],[-97.524788,27.226339],[-97.423424,27.25967],[-97.473938,27.001665],[-97.557404,26.992189],[-97.532425,26.819868],[-97.472839,26.745687],[-97.430443,26.562283],[-97.43988,26.467483],[-97.35498,26.329193],[-97.308517,26.157314],[-97.264305,26.081392],[-97.154915,26.039633],[-97.150146,25.947689]]],[[[-140.992218,69.644768],[-140.998627,65],[-141,64],[-141,63.099998],[-141,62.299999],[-141,61.399998],[-141,60.321346],[-140.521942,60.225739],[-140.455459,60.31152],[-139.977295,60.184658],[-139.674545,60.33947],[-139.069016,60.35199],[-139.186188,60.092613],[-139.044586,59.993969],[-138.705765,59.911114],[-138.623749,59.771629],[-137.893494,59.403839],[-137.598221,59.241577],[-137.445801,58.910595],[-137.254288,59.007549],[-136.82341,59.157921],[-136.575775,59.170059],[-136.457764,59.281422],[-136.464035,59.46553],[-136.294541,59.470951],[-136.172226,59.641815],[-135.930969,59.668461],[-135.483108,59.800018],[-135.234329,59.698383],[-135.028885,59.569237],[-135.030838,59.473507],[-135.094864,59.431946],[-134.960022,59.283901],[-134.699738,59.248711],[-134.683929,59.197491],[-134.479965,59.132103],[-134.389633,59.053547],[-134.401718,58.979607],[-134.241592,58.858574],[-133.847427,58.735752],[-133.704697,58.618069],[-133.373108,58.42699],[-133.453766,58.388897],[-133.1707,58.154446],[-133.062271,58.002327],[-132.881912,57.856197],[-132.544846,57.494354],[-132.372131,57.353298],[-132.241562,57.214241],[-132.366898,57.092178],[-132.042267,57.04644],[-132.120026,56.879803],[-131.872223,56.808132],[-131.847336,56.662312],[-132.064621,56.718559],[-132.438507,56.673252],[-132.581406,56.764656],[-132.77391,56.840702],[-133.072769,57.08078],[-133.442825,57.142311],[-133.517136,57.177494],[-133.461426,57.293652],[-133.34671,57.280041],[-133.665314,57.650444],[-133.613022,57.708347],[-133.834183,57.933403],[-133.999527,58.038315],[-134.134598,58.198418],[-134.201569,58.200836],[-134.503647,58.35442],[-134.722443,58.36998],[-134.81047,58.525726],[-134.952713,58.645554],[-134.925583,58.782032],[-135.054748,58.763615],[-135.122025,58.826454],[-135.194626,59.073082],[-135.275101,59.196709],[-135.37056,59.092133],[-135.388565,58.97533],[-135.234405,58.786537],[-135.147415,58.643742],[-135.156265,58.565807],[-135.037689,58.332249],[-135.158035,58.207367],[-135.283173,58.232506],[-135.46048,58.375961],[-135.610825,58.428131],[-135.900864,58.378559],[-135.839462,58.477318],[-135.895141,58.614746],[-136.072052,58.825859],[-136.228256,58.752255],[-136.500763,58.863171],[-136.517777,58.971001],[-136.625366,58.945866],[-136.844086,58.956364],[-137.005051,58.904221],[-136.663055,58.857494],[-136.615921,58.77459],[-136.433411,58.737907],[-136.198563,58.616634],[-136.031509,58.382355],[-136.081101,58.348404],[-136.5569,58.26149],[-136.900833,58.347073],[-137.006821,58.410603],[-137.156097,58.426456],[-137.386185,58.507301],[-137.583847,58.599579],[-137.928467,58.789745],[-137.934235,58.881084],[-138.232803,59.040646],[-138.454773,59.104839],[-138.454422,59.193645],[-138.682877,59.150578],[-138.872864,59.245747],[-139.049179,59.283386],[-139.398422,59.406818],[-139.554886,59.430851],[-139.818268,59.521168],[-139.57933,59.604298],[-139.471817,59.707741],[-139.583328,59.790081],[-139.628525,59.893562],[-139.932633,59.791767],[-140.043808,59.838764],[-140.231232,59.767372],[-140.344147,59.693901],[-140.668121,59.710564],[-140.977295,59.768402],[-141.46312,59.885307],[-141.295456,59.936264],[-141.278992,60.079899],[-141.392471,60.144695],[-141.475082,60.085659],[-141.371094,60.030014],[-141.604614,59.963631],[-141.750168,59.951527],[-141.899582,60.007431],[-142.537933,60.086533],[-142.883927,60.097588],[-143.107407,60.06469],[-143.460449,60.052837],[-143.889877,59.989349],[-144.254822,60.163647],[-144.483139,60.199966],[-144.603836,60.183628],[-144.697113,60.271629],[-144.875641,60.298656],[-144.926743,60.391426],[-145.059723,60.448242],[-145.251084,60.354881],[-145.386825,60.352303],[-145.477585,60.417263],[-145.71962,60.475086],[-145.903244,60.482533],[-145.704559,60.592728],[-145.686203,60.647873],[-146.025635,60.66779],[-146.152603,60.631943],[-146.583664,60.735634],[-146.551621,60.809792],[-146.744461,60.906784],[-146.624725,61.080612],[-146.66629,61.099514],[-146.934082,60.938801],[-147.112854,61.007488],[-147.379272,60.880497],[-147.476715,60.945473],[-147.598877,60.874062],[-147.740585,60.882481],[-147.892609,60.825165],[-147.945679,60.899773],[-148.065689,60.94088],[-147.966629,61.002777],[-148.165421,61.038753],[-148.378525,60.738483],[-148.271835,60.69408],[-148.20781,60.604469],[-147.970596,60.497704],[-147.975311,60.416634],[-148.091232,60.383564],[-148.254166,60.280003],[-148.162781,60.152142],[-148.371384,60.08736],[-148.410339,59.981052],[-148.747711,59.958515],[-148.883545,59.925232],[-149.131241,59.964325],[-149.301193,59.905876],[-149.360596,60.082165],[-149.457794,60.101112],[-149.4702,59.91827],[-149.726669,59.900612],[-149.822373,59.834747],[-149.763611,59.7533],[-150.179642,59.538124],[-150.486572,59.495338],[-150.605713,59.42934],[-150.747116,59.42437],[-150.962082,59.234592],[-151.312287,59.211769],[-151.445389,59.256725],[-151.629898,59.165859],[-151.75795,59.217579],[-151.884033,59.213902],[-151.99411,59.31477],[-151.892487,59.428814],[-151.636093,59.486084],[-151.532333,59.457317],[-151.441834,59.548172],[-151.278824,59.557735],[-151.215072,59.630444],[-150.981613,59.775341],[-151.13533,59.768623],[-151.483521,59.638657],[-151.645111,59.647331],[-151.837601,59.72039],[-151.873886,59.776047],[-151.758347,59.919243],[-151.707474,60.034195],[-151.418564,60.226955],[-151.386185,60.368061],[-151.312118,60.401745],[-151.275864,60.54258],[-151.352096,60.594105],[-151.417572,60.719337],[-151.247787,60.773392],[-151.055573,60.787418],[-150.687088,60.953838],[-150.361038,61.030357],[-150.240829,60.928757],[-150.074585,60.909451],[-149.76886,60.964684],[-149.439545,60.896652],[-149.518219,60.980793],[-149.739426,61.011803],[-150.073853,61.161579],[-149.904938,61.218105],[-149.720322,61.372643],[-149.388428,61.470814],[-149.63121,61.492233],[-149.877258,61.384933],[-149.925903,61.262428],[-150.476456,61.24118],[-150.6091,61.276646],[-151.040741,61.168694],[-151.166596,61.044907],[-151.532639,60.995018],[-151.801056,60.85622],[-151.715683,60.74308],[-151.856094,60.734856],[-152.052231,60.656647],[-152.10054,60.596401],[-152.31311,60.508598],[-152.399948,60.30344],[-152.610931,60.220863],[-152.747772,60.194134],[-152.571503,60.075665],[-152.706894,59.920143],[-152.869888,59.875225],[-153.006775,59.886818],[-153.206879,59.859337],[-153.147659,59.809116],[-152.993805,59.808369],[-153.059219,59.690437],[-153.345352,59.621731],[-153.565766,59.624939],[-153.592545,59.553688],[-153.763611,59.545654],[-153.70726,59.467751],[-153.910171,59.420593],[-153.972427,59.356827],[-154.121979,59.297729],[-154.145355,59.217949],[-154.268891,59.134491],[-154.140137,59.021706],[-154.068176,59.0741],[-153.86438,59.05529],[-153.699661,59.075497],[-153.628647,59.010624],[-153.484375,58.998703],[-153.336105,58.900078],[-153.394547,58.747314],[-153.564438,58.682148],[-153.59436,58.63187],[-153.888107,58.606712],[-153.962906,58.486256],[-154.079376,58.478966],[-154.007401,58.375252],[-154.180298,58.359436],[-154.14447,58.293446],[-154.178024,58.191742],[-154.290344,58.17746],[-154.370148,58.104618],[-154.541702,58.060188],[-154.718414,58.058128],[-154.739884,58.014381],[-154.929977,58.032703],[-155.111588,57.944206],[-155.091034,57.872768],[-155.331207,57.82637],[-155.304779,57.723354],[-155.390396,57.712498],[-155.590134,57.788029],[-155.714523,57.633171],[-155.731644,57.543385],[-155.863403,57.552341],[-156.056045,57.517078],[-156.025528,57.43354],[-156.22467,57.44397],[-156.452286,57.345375],[-156.382919,57.252239],[-156.372467,57.143497],[-156.498429,57.061325],[-156.675384,56.99379],[-156.902771,56.96542],[-157.080658,56.823936],[-157.214218,56.767128],[-157.392914,56.863499],[-157.475525,56.834042],[-157.567429,56.705547],[-157.462387,56.623493],[-157.681595,56.606987],[-157.738724,56.673935],[-157.943802,56.634766],[-157.833816,56.540211],[-157.887665,56.468163],[-158.086441,56.507179],[-158.183868,56.454586],[-158.33107,56.482079],[-158.602325,56.313126],[-158.435669,56.340103],[-158.211731,56.271481],[-158.305496,56.234543],[-158.348099,56.122299],[-158.484162,56.110043],[-158.467972,56.023872],[-158.629593,56],[-158.834259,56.015793],[-158.907028,55.926697],[-159.260254,55.890938],[-159.394104,55.854862],[-159.523834,55.884064],[-159.489334,55.762684],[-159.532211,55.646404],[-159.709778,55.588223],[-159.622498,55.819935],[-159.80011,55.849949],[-159.948624,55.81583],[-160.168411,55.663666],[-160.44339,55.574768],[-160.530609,55.475571],[-160.789993,55.454914],[-160.842804,55.52248],[-160.987839,55.444698],[-161.239136,55.354599],[-161.320053,55.382187],[-161.508102,55.379105],[-161.470459,55.47961],[-161.355194,55.587055],[-161.39212,55.626926],[-161.595535,55.609165],[-161.703354,55.509941],[-161.681503,55.407661],[-161.881119,55.25296],[-162.030151,55.233326],[-161.956238,55.104141],[-162.049728,55.06963],[-162.174713,55.150749],[-162.25029,55.017948],[-162.413788,55.032528],[-162.506393,55.239681],[-162.632095,55.303215],[-162.717316,55.237907],[-162.620819,55.175217],[-162.670822,54.999367],[-162.752991,54.933567],[-162.91513,54.94751],[-162.996872,55.074509],[-163.193817,55.126164],[-163.20784,55.022816],[-163.047836,54.969723],[-163.239578,54.827686],[-163.345093,54.800072],[-163.279022,55.036243],[-163.305649,55.109036],[-163.165253,55.171188],[-162.875809,55.178188],[-162.837372,55.265663],[-162.644012,55.369801],[-162.505844,55.377316],[-162.551666,55.468632],[-162.255615,55.689167],[-161.804581,55.887882],[-161.350861,55.967758],[-161.065964,55.940804],[-160.82077,55.739288],[-160.746903,55.775806],[-160.767563,55.859493],[-160.490479,55.860298],[-160.372757,55.778378],[-160.318878,55.860294],[-160.578888,55.994251],[-160.45282,56.120823],[-160.384522,56.254807],[-160.154053,56.39645],[-160.041931,56.424526],[-159.752258,56.566685],[-159.547638,56.622845],[-158.947479,56.839821],[-158.795502,56.779972],[-158.660217,56.804569],[-158.699615,56.900005],[-158.678894,57.005203],[-158.359589,57.262882],[-158.090347,57.358356],[-157.787124,57.54266],[-157.577332,57.514671],[-157.604935,57.606384],[-157.71312,57.636326],[-157.587463,58.127445],[-157.40448,58.179016],[-157.544418,58.278095],[-157.489975,58.4664],[-157.093491,58.703987],[-157.004379,58.822422],[-157.09523,58.875572],[-157.315582,58.835094],[-157.544312,58.759193],[-158.087173,58.620216],[-158.221222,58.614601],[-158.333435,58.663509],[-158.369538,58.745373],[-158.548431,58.79237],[-158.419968,59.023033],[-158.51825,59.035175],[-158.625366,58.911694],[-158.782226,58.88245],[-158.774567,58.775127],[-158.864166,58.693256],[-158.721176,58.476295],[-158.811844,58.404705],[-159.05896,58.421215],[-159.317658,58.696156],[-159.489472,58.823296],[-159.647339,58.841412],[-159.590637,58.904141],[-159.742844,58.924591],[-159.801498,58.802959],[-159.910141,58.777206],[-160.024323,58.885223],[-160.248703,58.890583],[-160.255981,58.986847],[-160.343918,59.053864],[-160.475967,59.030186],[-160.778,58.892242],[-160.963226,58.876812],[-161.179184,58.78445],[-161.290329,58.771793],[-161.376648,58.666981],[-161.739548,58.556831],[-161.835281,58.678528],[-161.758301,58.796597],[-161.788544,58.968216],[-161.996048,59.163181],[-161.958862,59.372261],[-161.708038,59.499996],[-161.868103,59.635052],[-161.96547,59.799789],[-162.088059,59.886822],[-162.210114,60.037094],[-162.470932,60.053947],[-162.532669,59.982784],[-162.733337,59.971954],[-163.147262,59.847847],[-163.430771,59.811977],[-163.890137,59.802105],[-164.092834,59.830704],[-164.198288,59.915169],[-164.196762,60.027248],[-164.39061,60.078167],[-164.667236,60.303333],[-164.843262,60.299892],[-165.132111,60.4314],[-165.008469,60.475407],[-165.051208,60.545307],[-165.199905,60.496716],[-165.290268,60.57637],[-164.972,60.732178],[-165.036896,60.907059],[-165.198883,60.981201],[-165.121033,61.077896],[-165.300201,61.187992],[-165.413178,61.067665],[-165.58287,61.098495],[-165.646835,61.290916],[-165.879975,61.32373],[-165.89418,61.410763],[-165.751923,61.481026],[-165.934982,61.553749],[-166.153046,61.520992],[-166.153885,61.629311],[-165.822052,61.668957],[-165.997208,61.719555],[-166.098541,61.798195],[-165.927918,61.828979],[-165.78746,61.81522],[-165.611435,61.858681],[-165.733856,61.94099],[-165.744034,62.078747],[-165.233353,62.457302],[-165.039413,62.540638],[-164.818176,62.583618],[-164.856735,62.84444],[-164.776718,62.964199],[-164.564438,63.061924],[-164.590012,63.124729],[-164.415939,63.214153],[-164.038467,63.262711],[-163.758118,63.218708],[-163.619675,63.120186],[-163.295746,63.041729],[-163.047439,63.063961],[-162.881683,63.138565],[-162.817551,63.209049],[-162.674729,63.224899],[-162.281204,63.488407],[-161.810974,63.44236],[-161.301331,63.472698],[-161.137878,63.508549],[-160.772507,63.763046],[-160.76886,63.841694],[-160.945984,64.080292],[-160.970749,64.229942],[-161.268585,64.398209],[-161.476151,64.447227],[-161.376877,64.535934],[-161.229919,64.501167],[-161.026565,64.527748],[-160.787689,64.626572],[-160.780563,64.71508],[-160.89177,64.824921],[-161.194199,64.915756],[-161.372009,64.777199],[-161.542587,64.757675],[-161.662704,64.787956],[-161.869568,64.749199],[-161.916565,64.700401],[-162.171829,64.679665],[-162.23111,64.62265],[-162.531479,64.531677],[-162.626343,64.387596],[-162.797226,64.393456],[-162.855713,64.503021],[-163.190002,64.648468],[-163.370102,64.600143],[-163.177048,64.538368],[-163.254867,64.474037],[-163.578583,64.560516],[-163.830216,64.576263],[-163.967072,64.550522],[-164.29715,64.561539],[-164.827454,64.441605],[-165.007873,64.433174],[-165.684158,64.529396],[-166.208817,64.578682],[-166.400925,64.647034],[-166.474182,64.737495],[-166.398163,64.82457],[-166.455368,64.907204],[-166.692489,64.99575],[-166.869491,65.097847],[-166.570755,65.120346],[-166.474381,65.220177],[-166.348999,65.272842],[-166.518921,65.33226],[-166.654953,65.320106],[-167.072006,65.385681],[-167.39978,65.399529],[-167.846512,65.538071],[-168.056198,65.569923],[-168.117279,65.66803],[-168.017105,65.717064],[-167.553253,65.814674],[-166.54982,66.134613],[-166.169876,66.219658],[-165.842865,66.319222],[-165.140274,66.471992],[-164.389633,66.578789],[-163.786575,66.590874],[-163.722885,66.51638],[-163.842544,66.418922],[-163.921524,66.219093],[-163.835251,66.120811],[-163.622253,66.060699],[-163.335983,66.087555],[-163.128983,66.059959],[-162.745758,66.091202],[-162.633743,66.042915],[-162.322968,66.032913],[-162.033356,66.070107],[-161.850281,66.024971],[-161.636749,66.147301],[-161.556412,66.23922],[-161.343918,66.249588],[-161.193558,66.211128],[-160.980591,66.222443],[-161.110855,66.325935],[-161.526276,66.397423],[-161.900284,66.35479],[-161.862915,66.48877],[-162.073685,66.601059],[-162.173004,66.690315],[-162.497345,66.737328],[-162.601227,66.90097],[-162.31836,66.948082],[-162.083496,66.789429],[-162.051407,66.646027],[-161.914383,66.553864],[-161.582214,66.441948],[-161.340744,66.476593],[-161.880097,66.71859],[-161.78894,66.881371],[-161.631714,66.957161],[-161.809265,67.050331],[-162.402008,66.987297],[-162.765137,67.052719],[-162.934235,67.020348],[-163.695114,67.106712],[-163.779922,67.293846],[-164.072083,67.582108],[-164.54155,67.727203],[-165.400619,68.044045],[-165.878067,68.112717],[-166.074768,68.219437],[-166.397873,68.310257],[-166.757019,68.365067],[-166.324494,68.444916],[-166.230285,68.564064],[-166.188782,68.769844],[-166.213974,68.881844],[-165.660568,68.854515],[-165.173904,68.867165],[-164.161148,68.94384],[-163.690811,69.076157],[-163.230011,69.317764],[-163.154266,69.433083],[-163.139084,69.653992],[-163.00589,69.819061],[-162.692871,69.982895],[-162.482208,70.131195],[-162.242615,70.230598],[-161.885513,70.331955],[-161.288162,70.298096],[-160.828949,70.373245],[-160.342819,70.515427],[-159.66359,70.796249],[-159.280701,70.862778],[-158.914612,70.7929],[-158.530762,70.792366],[-158.018066,70.832764],[-157.702423,70.895325],[-157.310288,71.025368],[-156.785431,71.299217],[-156.624893,71.341339],[-156.363388,71.262863],[-156.082245,71.247093],[-156.027725,71.203995],[-155.590942,71.181328],[-155.513718,71.089279],[-155.71756,70.993599],[-156.001419,70.966705],[-156.004181,70.83622],[-155.495712,70.862633],[-155.513687,70.94622],[-155.277588,71.024254],[-155.157333,71.117615],[-154.889725,71.102531],[-154.602142,71.015961],[-154.640182,70.8685],[-154.116409,70.781525],[-153.928711,70.881119],[-153.7267,70.897575],[-152.644516,70.889366],[-152.275909,70.844421],[-152.437866,70.69368],[-152.523193,70.541245],[-151.986298,70.566788],[-151.736023,70.542877],[-151.889648,70.434219],[-151.585831,70.4422],[-151.203003,70.4132],[-150.765091,70.500778],[-150.597031,70.504837],[-150.342773,70.412903],[-150.109436,70.433754],[-149.873566,70.511284],[-149.168747,70.487518],[-148.839981,70.392403],[-148.724029,70.416267],[-148.485001,70.36734],[-148.413864,70.307289],[-148.111481,70.347633],[-147.692764,70.205345],[-147.243774,70.195221],[-147.180679,70.155022],[-146.866302,70.18821],[-146.297546,70.184799],[-145.731003,70.125343],[-145.242843,69.995644],[-144.684692,69.966202],[-144.417847,70.031921],[-144.164215,70.038032],[-143.736435,70.099678],[-143.610443,70.081673],[-143.211853,70.115631],[-142.847183,70.064735],[-142.584656,70.003975],[-142.212555,69.850548],[-142.015945,69.797882],[-141.772217,69.7939],[-141.53241,69.72847],[-141.38089,69.633881],[-141.19896,69.6847],[-140.992218,69.644768]]],[[[-130.010574,55.903004],[-130.170502,55.766277],[-130.123642,55.678944],[-130.138703,55.551903],[-130.045837,55.414242],[-129.991593,55.278023],[-130.105011,55.206081],[-130.296189,54.958706],[-130.471619,54.834946],[-130.709961,54.759708],[-130.849442,54.765133],[-130.93631,54.813957],[-130.998612,54.994678],[-130.981338,55.063484],[-131.087173,55.1856],[-130.93985,55.289585],[-130.863586,55.306797],[-130.888718,55.466663],[-130.872726,55.562592],[-130.90625,55.716618],[-131.201477,55.987618],[-131.387772,55.957115],[-131.443726,55.997215],[-131.769577,55.87212],[-131.775742,55.779423],[-131.857041,55.625668],[-131.941971,55.540203],[-132.14708,55.556465],[-132.223953,55.699051],[-132.174133,55.790886],[-132.046158,55.879551],[-132.066071,55.936684],[-131.957825,56.000004],[-131.965363,56.17038],[-131.811997,56.186077],[-131.929443,56.238625],[-131.980545,56.335651],[-132.19162,56.417267],[-132.347412,56.523964],[-132.343765,56.600433],[-132.157379,56.700401],[-132.036102,56.696888],[-131.843552,56.648071],[-131.830963,56.60091],[-131.583221,56.61451],[-131.469147,56.55492],[-131.073791,56.406818],[-130.784043,56.370392],[-130.625595,56.271912],[-130.469086,56.245045],[-130.417251,56.140877],[-130.250672,56.097202],[-130.10733,56.124535],[-130.010666,56],[-130.010574,55.903004]]],[[[-152.452774,57.667378],[-152.44014,57.623177],[-152.170212,57.620918],[-152.311188,57.506454],[-152.325653,57.430801],[-152.520935,57.433773],[-152.703903,57.278118],[-152.952545,57.253399],[-153.077667,57.2131],[-153.268433,57.214691],[-153.366577,57.182915],[-153.618484,57.021614],[-153.55574,56.970375],[-153.693527,56.924423],[-153.910782,56.765606],[-154.149658,56.75021],[-153.9832,56.896599],[-154.08931,56.968872],[-154.285354,56.906384],[-154.534073,57.000118],[-154.53801,57.188942],[-154.624649,57.271332],[-154.752441,57.298908],[-154.719071,57.432083],[-154.635696,57.50687],[-154.260254,57.651398],[-154.012482,57.644226],[-153.928268,57.52663],[-153.908615,57.435413],[-153.816376,57.417271],[-153.81163,57.582725],[-153.922852,57.712448],[-153.937851,57.807884],[-153.75734,57.885914],[-153.578674,57.830692],[-153.20813,57.785008],[-153.151337,57.862251],[-153.203903,57.968224],[-153.030136,57.926315],[-152.813294,57.914982],[-152.724472,57.852131],[-152.591217,57.924549],[-152.47142,57.891918],[-152.376907,57.795074],[-152.481277,57.76215],[-152.452774,57.667378]]],[[[-133.163971,56.299233],[-133.031189,56.181408],[-133.117462,56.089642],[-132.917862,56.018089],[-132.724701,55.976215],[-132.493393,55.807327],[-132.292923,55.532898],[-132.453491,55.548515],[-132.3461,55.407364],[-132.16098,55.362656],[-132.097809,55.255806],[-131.995255,55.259792],[-131.986206,55.166229],[-132.053986,55.113514],[-131.964935,54.960461],[-131.953354,54.803623],[-132.040192,54.693588],[-132.161941,54.703445],[-132.338013,54.796497],[-132.278381,54.835728],[-132.428238,54.930897],[-132.585098,54.957283],[-132.521179,55.112206],[-132.589569,55.169071],[-132.719376,55.150261],[-132.87439,55.232429],[-133.233261,55.28273],[-133.187836,55.379932],[-132.974564,55.349918],[-133.110046,55.457142],[-133.062286,55.620014],[-133.254273,55.573456],[-133.402695,55.660065],[-133.363709,55.720604],[-133.222473,55.755585],[-133.155075,55.853752],[-133.22789,55.884026],[-133.287811,56.08205],[-133.26236,56.143169],[-133.558273,56.187042],[-133.647461,56.281425],[-133.565842,56.352264],[-133.163971,56.299233]]],[[[-155.829147,20],[-155.90567,20.195965],[-155.879089,20.263039],[-155.770706,20.246794],[-155.591766,20.12068],[-155.446075,20.096546],[-155.256699,20.005674],[-155.170685,19.943661],[-155.083008,19.845283],[-155.091873,19.739615],[-154.998901,19.736769],[-154.979095,19.646557],[-154.906555,19.574842],[-154.809936,19.520624],[-154.854339,19.450382],[-154.995346,19.341225],[-155.132553,19.27606],[-155.272507,19.270094],[-155.450836,19.152243],[-155.508468,19.134745],[-155.600067,18.972546],[-155.650177,18.928095],[-155.876679,19.033298],[-155.916519,19.100674],[-155.888046,19.337353],[-155.920425,19.473896],[-155.949997,19.492537],[-155.98877,19.633673],[-156.05455,19.742397],[-155.977814,19.848314],[-155.935531,19.8561],[-155.829147,20]]],[[[-171.542724,63.663155],[-171.084732,63.577343],[-170.904221,63.5765],[-170.488998,63.697258],[-170.295914,63.686024],[-170.102615,63.613441],[-170.031448,63.476192],[-169.809387,63.425411],[-169.656616,63.431023],[-169.567383,63.364239],[-169.008637,63.343887],[-168.700821,63.30093],[-168.723786,63.234688],[-168.876084,63.144669],[-169.05336,63.174561],[-169.382278,63.152515],[-169.580444,63.027992],[-169.747452,62.977406],[-169.84935,63.08522],[-170.095581,63.190769],[-170.29596,63.191059],[-170.382263,63.293365],[-170.492096,63.338303],[-170.848175,63.411182],[-171.104157,63.423191],[-171.29306,63.380482],[-171.439682,63.309544],[-171.736832,63.365757],[-171.849838,63.486458],[-171.834457,63.575195],[-171.655258,63.705914],[-171.542724,63.663155]]],[[[-136.298248,58.213509],[-135.973419,58.195393],[-135.783539,58.287457],[-135.727676,58.240265],[-135.484406,58.16914],[-135.409897,58.091736],[-135.097,58.083038],[-134.931427,58.028652],[-134.917236,57.918251],[-135.01503,57.776978],[-134.909164,57.738323],[-134.841263,57.571918],[-134.920151,57.512852],[-135.104584,57.48793],[-135.733475,57.741081],[-135.734726,57.676006],[-135.55191,57.584599],[-135.540069,57.481674],[-135.706558,57.369404],[-135.839951,57.395309],[-136.010666,57.517532],[-136.006241,57.624687],[-136.119552,57.623131],[-136.234619,57.686218],[-136.176819,57.741058],[-136.399155,57.8228],[-136.330475,58.040501],[-136.418686,58.079174],[-136.298248,58.213509]]],[[[-167.131454,60],[-167.344818,60.124134],[-167.427032,60.201344],[-167.316666,60.230881],[-166.79895,60.232582],[-166.772827,60.30109],[-166.467133,60.380455],[-166.372665,60.352448],[-166.20816,60.389481],[-166.003464,60.311535],[-165.914276,60.337173],[-165.676727,60.288856],[-165.694809,60.248726],[-165.653595,59.996078],[-165.57991,59.912731],[-166.029602,59.867039],[-166.200409,59.77581],[-166.416229,59.856686],[-166.612991,59.852745],[-166.895447,59.959091],[-167.131454,60]]],[[[-134.472839,57.545654],[-134.573242,57.505043],[-134.662064,57.61224],[-134.722244,57.74493],[-134.690521,57.830711],[-134.770141,58.071335],[-134.876846,58.183311],[-134.956512,58.35255],[-134.820847,58.337528],[-134.694443,58.226212],[-134.318817,58.137856],[-134.173996,58.082176],[-133.886002,57.80275],[-133.86525,57.727745],[-133.955765,57.695511],[-134.017624,57.816074],[-134.126892,57.930088],[-134.264847,58.006969],[-134.333084,57.993946],[-134.030243,57.658459],[-133.923432,57.612648],[-133.888168,57.516624],[-133.970779,57.455593],[-133.850342,57.365627],[-133.951202,57.304279],[-134.045578,57.329403],[-134.157639,57.194855],[-134.501221,57.025135],[-134.60144,57.045719],[-134.636032,57.235527],[-134.555008,57.303398],[-134.557953,57.470848],[-134.472839,57.545654]]],[[[-135.363098,57.199688],[-135.358719,57.250664],[-135.55072,57.247101],[-135.682694,57.354923],[-135.521744,57.453186],[-135.540115,57.50433],[-135.415497,57.561459],[-135.270126,57.474949],[-134.962845,57.379456],[-134.91745,57.25547],[-134.842179,57.260681],[-134.714355,56.928028],[-134.715591,56.84811],[-134.624756,56.731091],[-134.619995,56.557625],[-134.663605,56.522171],[-134.625488,56.403671],[-134.643982,56.198769],[-134.766632,56.219181],[-134.941025,56.3834],[-135.199493,56.730476],[-135.368652,56.821579],[-135.358795,56.979363],[-135.240372,57.030376],[-135.396118,57.102871],[-135.363098,57.199688]]],[[[-163.507294,55],[-163.442734,54.966145],[-163.412781,54.858917],[-163.334671,54.748108],[-163.148132,54.757095],[-163.123856,54.694054],[-163.419891,54.711731],[-163.42633,54.648148],[-163.59256,54.606556],[-163.740616,54.62624],[-164.091843,54.616623],[-164.272613,54.567013],[-164.35405,54.463535],[-164.455353,54.41811],[-164.641266,54.388863],[-164.84462,54.41769],[-164.947693,54.577583],[-164.683029,54.678043],[-164.55629,54.848022],[-164.417603,54.927349],[-164.220581,54.901348],[-163.892838,55.032211],[-163.774658,55.048584],[-163.507294,55]]],[[[-131.642181,55.598579],[-131.722626,55.625401],[-131.736633,55.719696],[-131.598053,55.892811],[-131.279449,55.965141],[-131.144119,55.883327],[-130.973953,55.69952],[-130.940094,55.616825],[-131.029999,55.401501],[-131.066101,55.257172],[-131.210495,55.188316],[-131.47052,55.290058],[-131.690964,55.349545],[-131.832031,55.447155],[-131.656021,55.559292],[-131.642181,55.598579]]],[[[-133.764236,56.821239],[-133.842285,56.920719],[-134.038391,57.023289],[-133.868988,57.094612],[-133.307022,56.993179],[-133.098526,56.996159],[-132.983444,56.937057],[-132.928528,56.836777],[-132.977386,56.795937],[-132.927506,56.666355],[-133.098587,56.619144],[-133.144638,56.464443],[-133.359818,56.492168],[-133.501358,56.438301],[-133.65448,56.445084],[-133.649796,56.607056],[-133.715408,56.69347],[-133.678757,56.768978],[-133.764236,56.821239]]],[[[-166.348557,53.673069],[-166.550796,53.61982],[-166.589951,53.536102],[-166.816788,53.429417],[-166.987869,53.448574],[-167.455215,53.315502],[-167.626877,53.245888],[-167.810989,53.312355],[-167.695801,53.379791],[-167.605637,53.373707],[-167.348785,53.435841],[-167.189667,53.453575],[-167.10553,53.533951],[-167.165924,53.594406],[-167.017151,53.751457],[-167.162094,53.830631],[-167.085449,53.918636],[-166.901001,53.985069],[-166.63501,54.008518],[-166.639786,53.878483],[-166.552155,53.856602],[-166.265625,53.961784],[-166.25441,53.869678],[-166.350739,53.87199],[-166.421173,53.804184],[-166.268982,53.714146],[-166.348557,53.673069]]],[[[-73.438942,40.914375],[-73.229538,40.905418],[-73.132637,40.969658],[-72.75338,40.967781],[-72.586746,40.997749],[-72.479507,41.053486],[-72.441231,41.002285],[-72.575966,40.931938],[-72.496658,40.870674],[-72.634491,40.802166],[-72.754555,40.803558],[-72.882301,40.739468],[-73.224175,40.707745],[-73.400124,40.657825],[-73.823349,40.584839],[-74.031052,40.572754],[-74.044304,40.636055],[-73.917694,40.791485],[-73.780388,40.796394],[-73.718117,40.869946],[-73.569405,40.913261],[-73.438942,40.914375]]],[[[-134.388748,56.778488],[-134.416519,56.837593],[-134.280716,56.904232],[-134.012772,56.878387],[-133.890884,56.704571],[-133.821258,56.779781],[-133.690582,56.604942],[-133.84256,56.576611],[-133.890701,56.489502],[-133.842621,56.442604],[-133.897629,56.368065],[-133.872727,56.224361],[-134.016663,56.166801],[-134.081741,56.090244],[-134.225677,56.069614],[-134.287338,56.346477],[-134.227905,56.411095],[-134.025711,56.41967],[-134.104935,56.499317],[-134.241272,56.55999],[-134.359619,56.681965],[-134.388748,56.778488]]],[[[-153.009262,58.175194],[-153.107147,58.25816],[-153.053177,58.303356],[-152.802872,58.283924],[-152.834747,58.371536],[-152.669937,58.479755],[-152.495972,58.451466],[-152.500931,58.347282],[-152.214569,58.347946],[-151.98822,58.216465],[-152.095017,58.152576],[-152.19693,58.171967],[-152.351578,58.12793],[-152.490662,58.129257],[-152.866821,57.991165],[-153.155243,58.107494],[-153.190887,58.213478],[-153.009262,58.175194]]],[[[-168,53.319046],[-168.264618,53.238369],[-168.347488,53.151375],[-168.530777,53.024643],[-168.658371,52.970051],[-168.860657,52.940205],[-168.867111,53.009899],[-168.757629,53.182434],[-168.592316,53.261677],[-168.363678,53.245785],[-168.411514,53.410572],[-168.232803,53.523911],[-168.006744,53.559448],[-167.784683,53.50721],[-167.872146,53.361912],[-168,53.319046]]],[[[-88.608467,47.19334],[-88.612915,47.222939],[-88.42012,47.365921],[-88.215202,47.445313],[-88.037216,47.471218],[-87.799683,47.468002],[-87.810989,47.381496],[-88.059265,47.285107],[-88.338264,47.070549],[-88.41526,46.973644],[-88.499931,47.105541],[-88.611679,47.129387],[-88.608467,47.19334]]],[[[-156.638489,21.021723],[-156.533859,20.989622],[-156.476837,20.903826],[-156.33139,20.947742],[-156.228867,20.934528],[-156.110397,20.831192],[-156.000137,20.796247],[-155.984741,20.716509],[-156.043854,20.657019],[-156.193268,20.629417],[-156.290375,20.588202],[-156.428314,20.597637],[-156.469635,20.78689],[-156.624451,20.812452],[-156.696808,20.925724],[-156.638489,21.021723]]],[[[-174.074692,52.12048],[-174.368332,52.102074],[-174.666779,52.046017],[-174.712357,52.006824],[-174.984894,52.06134],[-174.894623,52.101406],[-174.59462,52.117558],[-174.452576,52.221172],[-174.275742,52.214592],[-174.223373,52.254887],[-174.323959,52.328362],[-174.310013,52.380188],[-174.18103,52.418808],[-174.053833,52.389645],[-173.978165,52.314594],[-174.050064,52.224052],[-174.182495,52.192215],[-174.074692,52.12048]]],[[[-157.955963,21.697578],[-157.838882,21.525576],[-157.842072,21.461914],[-157.748062,21.417791],[-157.65097,21.309086],[-157.822037,21.258114],[-157.897339,21.32284],[-158.102509,21.296288],[-158.23616,21.485634],[-158.242371,21.542528],[-158.132172,21.585169],[-158.02066,21.701025],[-157.955963,21.697578]]],[[[-147.395645,60],[-147.514252,59.93734],[-147.525009,59.841106],[-147.768906,59.80423],[-147.917908,59.833393],[-147.712875,59.987],[-147.417069,60.113274],[-147.390579,60.159584],[-147.199982,60.255314],[-147.107422,60.338066],[-146.918961,60.301861],[-147.223206,60.150314],[-147.395645,60]]],[[[-132.526398,56.306618],[-132.370697,56.310085],[-132.365875,56.223759],[-132.176865,56.166267],[-132.096603,56.109257],[-132.204544,56.032661],[-132.205643,55.936749],[-132.413773,55.946075],[-132.44661,56.06126],[-132.699204,56.106697],[-132.704574,56.219452],[-132.58992,56.237606],[-132.526398,56.306618]]],[[[-159.387177,22.22399],[-159.297653,22.131464],[-159.346252,22.029081],[-159.338242,21.965611],[-159.429611,21.88653],[-159.556717,21.890314],[-159.668091,21.957031],[-159.765793,21.984453],[-159.786148,22.072687],[-159.73584,22.143763],[-159.584869,22.227369],[-159.387177,22.22399]]],[[[173.310715,52.910583],[173.139359,52.7785],[173.007721,52.806583],[172.786301,52.775055],[172.752701,52.869667],[172.638138,52.92197],[172.643143,52.997776],[173.130692,52.983891],[173.310715,52.910583]]],[[[-176.622055,51.969551],[-176.539429,51.923428],[-176.622314,51.861988],[-176.429794,51.768902],[-176.549347,51.704742],[-176.853424,51.668079],[-176.780106,51.783359],[-176.770355,51.962856],[-176.622055,51.969551]]],[[[-133.016449,54.896664],[-133.125488,54.935009],[-133.222153,55.160194],[-133.201675,55.239025],[-133.089752,55.237995],[-133.004105,55.119415],[-132.909073,54.907154],[-132.772873,54.835567],[-132.696091,54.725143],[-132.858048,54.696857],[-132.96907,54.802155],[-133.016449,54.896664]]],[[[-132.698532,56.699036],[-132.531219,56.582943],[-132.732071,56.505783],[-132.93898,56.508205],[-132.966812,56.596073],[-132.903397,56.665539],[-132.972809,56.790569],[-132.81369,56.792828],[-132.698532,56.699036]]],[[[-131.913818,56.21196],[-132.128738,56.175743],[-132.265289,56.204392],[-132.353577,56.284637],[-132.32579,56.396881],[-132.146332,56.341648],[-132.001556,56.336922],[-131.913818,56.21196]]],[[[-87.345222,45],[-87.172859,45.154301],[-87.032722,45.23032],[-87.050453,45.117485],[-87.179039,44.968601],[-87.207054,44.870617],[-87.302155,44.79837],[-87.402351,44.908077],[-87.345222,45]]],[[[-146.371857,60.427555],[-146.157135,60.433464],[-146.097336,60.394363],[-146.48027,60.299561],[-146.615189,60.237541],[-146.70871,60.278328],[-146.537552,60.335636],[-146.710159,60.412342],[-146.609573,60.486286],[-146.371857,60.427555]]],[[[-132.963577,56.427418],[-132.715363,56.455963],[-132.617645,56.412407],[-132.677582,56.344776],[-132.651062,56.275326],[-132.853287,56.231899],[-133.061844,56.356758],[-132.963577,56.427418]]],[[[-88.556007,48.149933],[-88.615074,48.034561],[-88.980492,47.910198],[-89.104637,47.823872],[-89.212776,47.902454],[-88.978767,48.0033],[-88.556007,48.149933]]],[[[-178.116379,51.919048],[-177.955109,51.919575],[-177.889465,51.845665],[-177.752564,51.828968],[-177.944367,51.638901],[-177.953354,51.724503],[-178.21521,51.862526],[-178.116379,51.919048]]],[[[-135.840988,56.993546],[-135.822159,57.339588],[-135.698456,57.328339],[-135.555161,57.145309],[-135.658539,57.015263],[-135.840988,56.993546]]],[[[-160.809204,55.355343],[-160.725495,55.408665],[-160.570557,55.386307],[-160.565735,55.278965],[-160.492813,55.15691],[-160.849701,55.203663],[-160.809204,55.355343]]],[[[-133.507873,56],[-133.673782,55.917988],[-133.80397,55.942684],[-133.612717,56.13937],[-133.519837,56.116047],[-133.417175,56.160442],[-133.28212,56.144703],[-133.304886,56.066998],[-133.507873,56]]],[[[-174.045334,52.133789],[-173.802246,52.108856],[-173.594528,52.152493],[-173.513092,52.105915],[-173.298355,52.111366],[-173.374283,52.03706],[-173.542145,52.030693],[-173.691162,52.069614],[-173.832718,52.04287],[-174.045334,52.133789]]],[[[-157.157272,21.202005],[-156.854904,21.16382],[-156.745712,21.178274],[-156.778076,21.085794],[-156.871689,21.052553],[-157.059082,21.104927],[-157.302704,21.097456],[-157.258179,21.225492],[-157.157272,21.202005]]],[[[-122.582298,47.999996],[-122.557533,48.114769],[-122.377052,48.030609],[-122.350144,47.954361],[-122.582298,47.999996]]],[[[-172.785828,60.395939],[-172.385178,60.384018],[-172.372146,60.333046],[-172.594665,60.3148],[-172.785828,60.395939]]],[[[-177.116424,51.937538],[-177.041596,51.902321],[-177.122055,51.834065],[-177.1129,51.737823],[-177.25769,51.681084],[-177.435867,51.759769],[-177.199326,51.816505],[-177.193039,51.913647],[-177.116424,51.937538]]],[[[-131.59404,55],[-131.591568,55.2687],[-131.397552,55.205917],[-131.351639,55.066673],[-131.385895,55.009487],[-131.59404,55]]],[[[-160.895233,58.744576],[-160.698715,58.79974],[-160.878769,58.582012],[-161.08641,58.553082],[-161.053955,58.694218],[-160.895233,58.744576]]],[[[-165.92662,54.207542],[-165.668854,54.130428],[-165.762467,54.066021],[-166.058319,54.079426],[-166.087692,54.173668],[-165.92662,54.207542]]],[[[-147.710617,60.460041],[-147.629501,60.367317],[-147.757584,60.258938],[-147.917511,60.224537],[-147.86235,60.38839],[-147.710617,60.460041]]],[[[-160,55.128819],[-159.886063,55.207394],[-159.800339,55.173767],[-159.861832,55.09372],[-160.105713,54.982174],[-160.185333,55.119202],[-160,55.128819]]],[[[-72,41.049038],[-71.99974,41.014633],[-72.442703,40.850216],[-72.468162,40.905941],[-72.379486,40.995773],[-72.242172,41.035275],[-72.046127,40.998672],[-72,41.049038]]],[[[-154.046326,56.553768],[-154.230972,56.489071],[-154.373795,56.536938],[-154.294174,56.594032],[-154.101486,56.615162],[-154.046326,56.553768]]],[[[177.609299,52.135242],[177.671234,52.109322],[177.510345,51.937286],[177.372604,51.916172],[177.301376,51.840187],[177.210586,51.894245],[177.356339,51.969452],[177.500183,51.990215],[177.609299,52.135242]]],[[[-153.092636,57.111328],[-153.22023,57.075184],[-153.29718,56.993301],[-153.395294,57.062397],[-153.38028,57.121754],[-153.221634,57.213283],[-153.069916,57.189224],[-153.092636,57.111328]]],[[[-131.692047,55.317772],[-131.742233,55.133285],[-131.819443,55.178608],[-131.867218,55.36898],[-131.692047,55.317772]]],[[[-136.449707,57.845898],[-136.539398,57.934811],[-136.544129,58.076458],[-136.462173,58.097145],[-136.361496,57.998623],[-136.449707,57.845898]]],[[[-156.997513,20.932938],[-156.898102,20.918024],[-156.806305,20.80905],[-156.836609,20.76297],[-156.959381,20.738514],[-156.988007,20.823389],[-157.046783,20.875236],[-156.997513,20.932938]]],[[[-134.26683,58.188648],[-134.582642,58.230221],[-134.658356,58.309166],[-134.515243,58.342812],[-134.364136,58.273438],[-134.26683,58.188648]]],[[[173.440247,52.387917],[173.681335,52.507473],[173.729996,52.35125],[173.440247,52.387917]]],[[[-153.059769,58.025768],[-153.126541,58.016727],[-153.420883,58.061569],[-153.261078,58.14402],[-153.059769,58.025768]]],[[[179.626846,52.028297],[179.770172,51.970799],[179.756943,51.920074],[179.621307,51.870254],[179.493622,51.91885],[179.626846,52.028297]]],[[[-172.532532,52.246563],[-172.627502,52.260967],[-172.568924,52.350143],[-172.465637,52.385075],[-172.29036,52.324776],[-172.532532,52.246563]]],[[[-91.895172,29.633486],[-91.72905,29.577065],[-91.78405,29.47456],[-91.967422,29.537048],[-91.992561,29.608318],[-91.895172,29.633486]]],[[[-152.620254,58.537506],[-152.44896,58.621502],[-152.351471,58.573723],[-152.482926,58.468918],[-152.620254,58.537506]]],[[[-70.570786,41.34869],[-70.732468,41.338169],[-70.708839,41.437424],[-70.612076,41.483562],[-70.570786,41.34869]]],[[[-162.576004,63.553722],[-162.5681,63.631794],[-162.374054,63.620831],[-162.432449,63.541721],[-162.576004,63.553722]]],[[[-154.532593,56.537441],[-154.733765,56.397774],[-154.732864,56.496449],[-154.532593,56.537441]]],[[[-133.452805,55.767582],[-133.512787,55.691475],[-133.686005,55.781288],[-133.61792,55.829861],[-133.452805,55.767582]]],[[[-119.680199,34.023251],[-119.721008,33.962124],[-119.8507,33.970272],[-119.911506,34.06044],[-119.763023,34.060864],[-119.680199,34.023251]]],[[[-132.763184,55],[-132.88385,55.031193],[-132.889175,55.154152],[-132.730866,55.129345],[-132.676346,55.043621],[-132.763184,55]]],[[[-170.800125,52.534882],[-170.823929,52.628731],[-170.678909,52.689919],[-170.571655,52.636002],[-170.800125,52.534882]]],[[[-153.252396,57.864582],[-153.338898,57.849892],[-153.528915,57.921032],[-153.487763,57.96896],[-153.287186,57.904747],[-153.252396,57.864582]]],[[[-165.556244,54.249981],[-165.431366,54.204136],[-165.568649,54.106628],[-165.68898,54.235531],[-165.556244,54.249981]]],[[[-133.289871,55.273869],[-133.404236,55.204792],[-133.451141,55.315147],[-133.343094,55.343021],[-133.289871,55.273869]]],[[[-120,33.944645],[-120.121758,33.898392],[-120.226647,33.991726],[-120.077522,34.026066],[-120,33.944645]]],[[[-162.310211,54.823013],[-162.420395,54.912861],[-162.3302,54.976864],[-162.23558,54.958618],[-162.232681,54.881668],[-162.310211,54.823013]]],[[[-176,52.071964],[-176.016373,51.984432],[-176.177612,51.999516],[-176.13945,52.116291],[-176,52.071964]]],[[[-131.245789,55],[-131.212219,54.897148],[-131.312821,54.880318],[-131.473587,54.952545],[-131.245789,55]]],[[[-118.603248,33.47823],[-118.529457,33.474312],[-118.376015,33.408646],[-118.328224,33.301533],[-118.46389,33.327167],[-118.483383,33.416988],[-118.603248,33.47823]]],[[[-122.887161,48.589806],[-123.009895,48.654304],[-122.893501,48.716694],[-122.741806,48.661842],[-122.887161,48.589806]]],[[[-85.554306,45.565952],[-85.620636,45.590832],[-85.558594,45.733944],[-85.493973,45.723206],[-85.486962,45.601704],[-85.554306,45.565952]]],[[[-155.595932,55.756348],[-155.722427,55.829624],[-155.569412,55.869068],[-155.595932,55.756348]]],[[[-170.289047,57.103054],[-170.393311,57.202297],[-170.146591,57.222305],[-170.173142,57.155079],[-170.289047,57.103054]]],[[[-123.062538,48.490147],[-123.158211,48.52166],[-123.13578,48.617332],[-123.007805,48.55024],[-123.062538,48.490147]]],[[[-162.672226,54.391334],[-162.774765,54.408524],[-162.805679,54.485081],[-162.598328,54.449314],[-162.672226,54.391334]]],[[[-148.107269,60.134239],[-148.165161,60.030537],[-148.289917,60.105492],[-148.107269,60.134239]]],[[[-160.182617,21.92948],[-160.111511,21.997471],[-160.075653,21.898125],[-160.182617,21.92948]]],[[[-133.653824,55.27729],[-133.576935,55.428547],[-133.455292,55.403271],[-133.569061,55.305466],[-133.653824,55.27729]]],[[[-176.397812,51.791225],[-176.394226,51.86795],[-176.269013,51.856361],[-176.257202,51.782574],[-176.397812,51.791225]]],[[[-91.306259,29.302004],[-91.230469,29.346231],[-91.133949,29.211111],[-91.263313,29.231037],[-91.306259,29.302004]]],[[[-161.735092,55.051441],[-161.896835,55.154808],[-161.81662,55.17963],[-161.63208,55.104187],[-161.735092,55.051441]]],[[[-133.653808,55.437248],[-133.724976,55.468521],[-133.718933,55.558914],[-133.571548,55.50872],[-133.653808,55.437248]]],[[[-118.597153,33.014133],[-118.365395,32.838016],[-118.424591,32.808086],[-118.49408,32.851543],[-118.597153,33.014133]]],[[[-166.213562,53.700291],[-166.306747,53.778301],[-166.139954,53.840206],[-166.125748,53.76582],[-166.213562,53.700291]]],[[[-160.330765,55.242622],[-160.514633,55.310814],[-160.489792,55.356873],[-160.331421,55.359066],[-160.330765,55.242622]]],[[[-153.514068,59.321354],[-153.553467,59.367367],[-153.412552,59.418812],[-153.36438,59.34066],[-153.514068,59.321354]]],[[[-134.816666,57.305222],[-134.999298,57.404545],[-134.863358,57.418091],[-134.816666,57.305222]]],[[[-133.390656,55.470142],[-133.44516,55.528732],[-133.329925,55.564045],[-133.270905,55.514305],[-133.390656,55.470142]]],[[[-84.415092,45.711578],[-84.483421,45.723366],[-84.575241,45.813869],[-84.3507,45.768425],[-84.415092,45.711578]]],[[[-71.347679,41.452332],[-71.318985,41.553913],[-71.237091,41.524742],[-71.347679,41.452332]]],[[[-156.589447,20.601618],[-156.542038,20.516954],[-156.671311,20.504395],[-156.589447,20.601618]]],[[[-176,51.808273],[-176.228638,51.82341],[-176.171875,51.878506],[-176,51.808273]]]]},"properties":{"name":"美国","name_en":"UNITED STATES","id":"USA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[12.96863,-5.90692],[13.07964,-5.872716],[13.1151,-5.900453],[13.247782,-5.865144],[13.348977,-5.900967],[13.395745,-5.870474],[13.829269,-5.875072],[13.986273,-5.841628],[14.038134,-5.884214],[14.177259,-5.861608],[14.45863,-5.901176],[14.61076,-5.909719],[14.699072,-5.881038],[14.963,-5.873365],[15.794682,-5.879732],[16.36594,-5.864694],[16.454607,-5.896305],[16.511688,-5.878445],[16.599735,-5.918555],[16.611578,-6.091666],[16.689707,-6.139627],[16.724872,-6.338824],[16.689982,-6.400587],[16.755825,-6.518699],[16.801031,-6.699099],[16.876282,-6.846851],[16.940367,-6.874829],[16.937092,-6.957802],[16.982739,-7.023312],[16.928045,-7.08422],[17.00551,-7.30005],[17.116396,-7.357648],[17.108393,-7.417594],[17.237455,-7.59592],[17.306286,-7.636915],[17.292313,-7.693701],[17.378706,-7.786026],[17.442356,-7.927346],[17.528042,-8.035531],[17.560333,-8.127451],[17.728726,-8.096469],[17.783718,-8.112787],[17.884922,-8.078966],[18.100361,-8.099057],[18.098198,-8.040184],[18.226528,-7.989231],[18.37566,-8.027326],[18.391073,-8],[18.527325,-8],[18.53232,-7.920376],[18.779507,-7.921579],[18.800198,-8],[19.374403,-8],[19.345857,-7.904356],[19.402334,-7.708857],[19.381042,-7.56871],[19.462063,-7.570603],[19.544743,-7.457033],[19.494425,-7.367979],[19.495575,-7.177791],[19.562788,-7.057445],[19.543793,-6.999424],[20.30171,-6.998033],[20.317,-6.913004],[20.627148,-6.913397],[20.551584,-7.112649],[20.541683,-7.28143],[21.293211,-7.278564],[21.780588,-7.283894],[21.819744,-7.327551],[21.85673,-7.470244],[21.853283,-7.55375],[21.762057,-7.845356],[21.745449,-7.938798],[21.877857,-8.197234],[21.918108,-8.383592],[21.95891,-8.488909],[21.868408,-8.868245],[21.843429,-9.068139],[21.860544,-9.241109],[21.796064,-9.427587],[21.868168,-9.565719],[21.875927,-9.653144],[21.939978,-9.693267],[22.025406,-9.835177],[22.185875,-9.91745],[22.218664,-10.022099],[22.222671,-10.158716],[22.312502,-10.340161],[22.322805,-10.420269],[22.277967,-10.508468],[22.311459,-10.535863],[22.334898,-10.754074],[22.180788,-10.852005],[22.216583,-11.088059],[22.290079,-11.251032],[22.347032,-11.178544],[22.425551,-11.17889],[22.48716,-11.132171],[22.510153,-11.042392],[22.585417,-11.035999],[22.723286,-11.110024],[22.787092,-11.113168],[22.859133,-11.061598],[23.073095,-11.122757],[23.203173,-11.102197],[23.417578,-10.94504],[23.540447,-10.95949],[23.672083,-11.008182],[23.763384,-10.997374],[23.872312,-11.017395],[23.995695,-10.891575],[24.025587,-10.979017],[24.011513,-11.04961],[24.034739,-11.262874],[24.081436,-11.384388],[24.037531,-11.434245],[24.03648,-11.518435],[23.971171,-11.655663],[24.024614,-11.822521],[23.986118,-11.945529],[23.985788,-12.154165],[24.068657,-12.265388],[24.069866,-12.419043],[23.955654,-12.551822],[23.904987,-12.845443],[24.029314,-12.954433],[24.040287,-12.990556],[22.433668,-13.004005],[21.999899,-13.004716],[22.000752,-14.085768],[21.999962,-15],[22.001999,-16],[21.999664,-16.197874],[22.108549,-16.343204],[22.139662,-16.481453],[22.190468,-16.546625],[22.31571,-16.635971],[22.527374,-16.868227],[22.583057,-16.907162],[22.789992,-17.121233],[22.807123,-17.173357],[22.984095,-17.266916],[23.084784,-17.410156],[23.128811,-17.428732],[23.227287,-17.539074],[23.337673,-17.554527],[23.428154,-17.63928],[22.929178,-17.739391],[21.441834,-18.024166],[21.219751,-17.932116],[20.94434,-17.967434],[20.812008,-18.040735],[20.646261,-17.978453],[20.547609,-17.982574],[20.453274,-17.916662],[20.316831,-17.86517],[20.114037,-17.911909],[19.9128,-17.865885],[19.797365,-17.87714],[19.749449,-17.913738],[19.661925,-17.852718],[19.404259,-17.870722],[19.249422,-17.820696],[19.107678,-17.840012],[18.898995,-17.819267],[18.790915,-17.768038],[18.618503,-17.637251],[18.548374,-17.566753],[18.422714,-17.394428],[17.707592,-17.394087],[17,-17.395887],[15.149344,-17.389896],[14.638009,-17.390001],[14.214321,-17.384056],[14.094234,-17.442467],[13.956886,-17.433373],[13.880518,-17.350985],[13.677514,-17.246449],[13.510707,-17.135159],[13.52064,-17.085833],[13.460854,-17.013067],[13.378569,-16.975351],[13.271964,-16.995617],[13.142432,-16.959894],[12.992523,-16.981487],[12.880014,-17.042763],[12.809259,-17.111607],[12.565639,-17.242144],[12.441429,-17.26244],[12.41289,-17.20611],[12.243879,-17.234655],[12.167505,-17.158586],[12.083042,-17.144131],[11.947441,-17.182003],[11.82057,-17.263718],[11.757548,-17.252075],[11.760872,-17.02088],[11.831081,-16.69591],[11.832232,-16.472643],[11.794105,-16.106459],[11.809553,-16.019852],[11.732328,-15.881437],[11.785083,-15.780035],[11.875677,-15.786527],[11.918637,-15.688755],[12.016075,-15.571457],[12.058191,-15.230427],[12.168359,-15.023419],[12.211973,-14.84487],[12.289157,-14.751285],[12.303607,-14.572928],[12.345944,-14.446466],[12.371688,-14.288279],[12.339052,-14.216587],[12.373152,-14.151712],[12.364777,-14.058833],[12.424924,-13.943555],[12.42576,-13.875716],[12.514542,-13.876729],[12.555083,-13.548926],[12.529239,-13.442247],[12.650059,-13.332745],[12.654129,-13.265796],[12.87282,-13.103274],[12.976565,-12.960305],[12.935854,-12.860356],[13.013394,-12.766913],[13.194862,-12.594573],[13.299785,-12.578472],[13.344927,-12.607718],[13.467004,-12.513699],[13.485715,-12.422022],[13.583131,-12.33774],[13.654404,-12.237007],[13.762125,-11.955846],[13.793415,-11.807452],[13.770854,-11.572407],[13.865063,-11.008482],[13.831552,-10.910677],[13.723441,-10.757881],[13.774778,-10.669213],[13.642049,-10.501137],[13.528845,-10.387197],[13.534145,-10.295838],[13.4564,-10.185138],[13.439322,-10.118286],[13.313734,-9.985251],[13.344612,-9.938646],[13.318947,-9.862408],[13.208284,-9.708118],[13.241555,-9.629558],[13.194164,-9.553875],[13.169326,-9.381297],[13.081333,-9.211054],[12.999888,-9.092962],[13.059382,-9.040799],[13.104364,-8.951218],[13.222364,-8.807785],[13.304159,-8.752958],[13.366187,-8.77197],[13.408805,-8.700065],[13.358542,-8.487547],[13.398977,-8.403039],[13.34646,-8.282927],[13.268892,-8.17097],[13.180724,-7.962745],[13.072888,-7.759109],[12.973392,-7.528774],[12.915381,-7.350067],[12.855083,-7.270794],[12.847505,-7.100555],[12.82129,-6.9744],[12.741486,-6.851415],[12.57456,-6.674563],[12.374967,-6.28956],[12.27371,-6.142066],[12.531381,-6.083456],[12.674345,-6.022165],[12.834284,-6.035823],[12.956995,-5.957223],[12.96863,-5.90692]]],[[[12.204144,-5.765666],[12.1409,-5.629051],[12.221678,-5.446745],[12.130982,-5.19795],[12.010205,-5.027223],[12.166536,-4.885212],[12.206003,-4.758564],[12.326449,-4.793692],[12.372328,-4.727596],[12.405048,-4.59033],[12.631461,-4.560899],[12.684982,-4.468854],[12.7938,-4.379324],[12.898159,-4.419291],[12.915622,-4.472156],[13.020653,-4.597649],[13.102497,-4.625668],[12.845901,-4.770315],[12.814644,-4.859489],[12.662383,-4.95363],[12.601883,-5.02676],[12.507224,-5.050639],[12.453798,-5.104201],[12.524532,-5.151568],[12.5182,-5.246326],[12.524555,-5.726872],[12.503003,-5.745229],[12.26479,-5.74189],[12.204144,-5.765666]]],[[[11.768336,-16.799326],[11.680836,-16.578693],[11.72643,-16.522295],[11.768336,-16.799326]]]]},"properties":{"name":"安哥拉","name_en":"ANGOLA","id":"AGO"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[20.556944,69.0625],[20.764668,69.037918],[20.848778,68.931252],[21.142139,68.855972],[21.418583,68.699387],[21.581333,68.670753],[21.720167,68.588081],[21.904556,68.576279],[22.03764,68.480782],[22.340584,68.474052],[23.056694,68.307358],[23.29586,68.152611],[23.40711,68.046143],[23.661972,67.936722],[23.506361,67.870865],[23.482639,67.724052],[23.556278,67.627525],[23.414194,67.508667],[23.786388,67.427864],[23.758667,67.282692],[23.624472,67.269997],[23.579195,67.162582],[24.011055,66.830475],[23.894361,66.759277],[23.889029,66.572891],[23.642639,66.435913],[23.655416,66.306725],[23.719305,66.222969],[23.932362,66.149971],[23.943167,66.083359],[24.115778,65.919136],[24.155945,65.818192],[23.386528,65.779251],[23.25061,65.811447],[23.137388,65.718308],[22.719194,65.821663],[22.68014,65.782639],[22.379167,65.871193],[22.270222,65.681503],[22.383112,65.629608],[22.03211,65.516441],[21.917583,65.400024],[21.549444,65.416252],[21.472834,65.33992],[21.673416,65.308586],[21.661472,65.233612],[21.530527,65.061081],[21.234362,64.947998],[21.138971,64.779083],[21.285028,64.693474],[21.475361,64.507889],[21.615612,64.452278],[21.460611,64.348747],[21.250416,64.291527],[21.126833,64.200447],[20.971195,64.152725],[20.906694,63.98336],[20.782,63.873943],[20.242083,63.655251],[20.005861,63.649193],[19.728251,63.528084],[19.636973,63.447582],[19.274529,63.463417],[19.255667,63.332001],[19.021418,63.195],[18.9035,63.237694],[18.648695,63.19186],[18.473749,63.028557],[18.545473,62.992027],[18.47164,62.880249],[18.129723,62.76897],[18.113361,62.836613],[17.924584,62.831001],[18.001278,62.70586],[17.89125,62.50861],[17.73625,62.507195],[17.66614,62.439304],[17.437805,62.502224],[17.387638,62.37389],[17.472111,62.262474],[17.669527,62.231361],[17.487473,62.125416],[17.469528,62.004776],[17.343639,61.92897],[17.385027,61.733776],[17.254167,61.707306],[17.158388,61.628666],[17.17411,61.490471],[17.094555,61.414749],[17.193251,61.340832],[17.171055,61.157223],[17.238445,61.013889],[17.141806,60.957165],[17.305805,60.836945],[17.267361,60.709415],[17.311333,60.658001],[17.608694,60.649361],[17.647083,60.517639],[17.943222,60.602112],[18.148222,60.412724],[18.443583,60.342415],[18.601473,60.222137],[18.582306,60.136002],[18.843805,60.105415],[18.854111,60.033668],[18.962667,59.916389],[18.914,59.781807],[18.766222,59.682804],[18.673084,59.58075],[18.407583,59.460445],[18.188028,59.390778],[18.167999,59.319305],[18.304472,59.305637],[18.381861,59.181137],[18.451611,59.151833],[18.039305,59.047028],[17.941973,58.872639],[17.748194,58.933971],[17.753555,59.06636],[17.650583,59.084778],[17.631527,58.955193],[17.468945,58.809723],[17.272556,58.725472],[17.142611,58.731304],[16.915306,58.609722],[16.484751,58.656387],[16.246084,58.665417],[16.27039,58.607529],[16.446888,58.636196],[16.700556,58.601776],[16.953945,58.477501],[16.719639,58.422111],[16.72875,58.330112],[16.859112,58.175194],[16.767805,58.114887],[16.759527,57.972527],[16.809055,57.921585],[16.543501,57.860863],[16.738083,57.704113],[16.59,57.587833],[16.683416,57.449417],[16.557917,57.309223],[16.472111,57.148834],[16.583555,57.084221],[16.495527,57.021221],[16.449528,56.855221],[16.368889,56.722637],[16.233444,56.603195],[16.231861,56.550556],[16.102667,56.414249],[16.025055,56.216862],[15.842778,56.081696],[15.702,56.175861],[15.500834,56.161804],[15.379528,56.121887],[15.191305,56.154446],[14.730638,56.146889],[14.783833,56.031807],[14.621805,56],[14.538889,56.037193],[14.33925,55.956139],[14.216723,55.816834],[14.207194,55.701862],[14.361584,55.559334],[14.352695,55.513306],[14.174139,55.377277],[14.060223,55.381111],[13.941694,55.432556],[13.713528,55.427807],[13.363305,55.33786],[13.050861,55.375446],[12.898916,55.572166],[13.046084,55.637806],[13.056472,55.695221],[12.921889,55.744778],[12.931501,55.814335],[12.838056,55.854473],[12.653751,56.085583],[12.562056,56.150276],[12.504861,56.292137],[12.7715,56.210972],[12.8335,56.268333],[12.742611,56.354168],[12.637806,56.383446],[12.654639,56.451305],[12.852417,56.426388],[12.925944,56.473026],[12.935083,56.582806],[12.847889,56.662056],[12.747167,56.642918],[12.622806,56.740334],[12.6125,56.812695],[12.493861,56.887974],[12.363167,56.917305],[12.366861,56.988583],[12.258028,57.063057],[12.221472,57.210609],[12.100472,57.368721],[11.934944,57.409557],[11.952611,57.514137],[11.873917,57.696999],[11.683194,57.85664],[11.787416,57.9105],[11.816167,58.069221],[11.85925,58.125252],[11.875278,58.247944],[11.774305,58.337528],[11.589528,58.253334],[11.257389,58.375446],[11.260333,58.680305],[11.1705,58.720196],[11.237528,58.808166],[11.126223,59.023498],[11.207723,59.086613],[11.335639,59.105888],[11.471806,58.993362],[11.459695,58.89286],[11.5465,58.878944],[11.687223,58.944084],[11.779667,59.089169],[11.828,59.33186],[11.699473,59.591778],[11.941694,59.696888],[11.933473,59.797943],[11.848611,59.839001],[11.95375,59.901001],[12.17675,59.893223],[12.458889,60.052555],[12.538667,60.186916],[12.497027,60.323444],[12.605361,60.406887],[12.612194,60.506306],[12.5125,60.651974],[12.40625,60.729973],[12.322667,60.911778],[12.220472,61.012138],[12.394944,61.045193],[12.676416,61.060585],[12.78975,61.192528],[12.874028,61.360279],[12.575,61.571362],[12.423695,61.561638],[12.131889,61.725777],[12.310555,62.266029],[12.053139,62.610168],[12.139667,62.762611],[12.076,62.903389],[12.224778,63.002945],[11.979555,63.269917],[12.214972,63.483501],[12.148501,63.596359],[12.687361,63.980026],[12.919833,64.056999],[13.200306,64.097778],[13.956223,64.011971],[14.132389,64.192307],[14.100111,64.467247],[13.637305,64.585747],[14.108389,64.957527],[14.340584,65.118614],[14.391945,65.251167],[14.511945,65.304726],[14.503972,65.48008],[14.535833,65.69278],[14.623417,65.809334],[14.517445,66.133469],[15.021722,66.14547],[15.494972,66.281692],[15.376166,66.484863],[15.625472,66.590195],[16.056084,66.910858],[16.397528,67.045387],[16.409305,67.20417],[16.10075,67.433777],[16.169251,67.517891],[16.42086,67.535721],[16.57711,67.663361],[16.741167,67.92086],[17.141556,68.047333],[17.283167,68.120194],[17.638001,68.048248],[17.901583,67.968864],[18.155582,68.203445],[18.106945,68.409668],[18.125055,68.538307],[18.417805,68.584389],[18.618723,68.507835],[18.989389,68.519997],[19.95875,68.351112],[20.263916,68.491028],[19.971527,68.561142],[20.202168,68.675163],[20.347195,68.813972],[20.337055,68.930389],[20.061222,69.059639],[20.556944,69.0625]]],[[[18.713028,57.233055],[18.427973,57.141613],[18.351334,57.063252],[18.367277,56.987804],[18.305084,56.924862],[18.143028,56.922306],[18.210722,57.010471],[18.299139,57.042473],[18.154417,57.16111],[18.102028,57.256332],[18.179916,57.316193],[18.111555,57.532112],[18.377445,57.705139],[18.486611,57.825165],[18.622389,57.848],[18.705583,57.919998],[19.038029,57.907806],[19.049055,57.833832],[18.862333,57.724445],[18.783722,57.64539],[18.8295,57.436943],[18.675139,57.298248],[18.713028,57.233055]]],[[[16.724861,56.663776],[16.495916,56.240028],[16.415722,56.341946],[16.381779,56.4585],[16.428,56.594639],[16.52161,56.741943],[16.654083,56.883999],[16.741083,56.932446],[16.883083,57.095249],[16.965723,57.292721],[17.057083,57.259361],[17.082527,57.173637],[16.993139,57.099083],[16.862917,56.832165],[16.777361,56.781918],[16.724861,56.663776]]],[[[11.840284,58.205387],[11.853556,58.161888],[11.567028,58.086723],[11.419473,58.142944],[11.643166,58.248085],[11.840284,58.205387]]],[[[18.544586,59.396347],[18.731527,59.371918],[18.631416,59.293667],[18.359612,59.298832],[18.544586,59.396347]]]]},"properties":{"name":"瑞典","name_en":"SWEDEN","id":"SWE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[45.004055,41.301418],[45.091194,41.332722],[45.178665,41.40786],[45.306862,41.468113],[45.436943,41.449196],[45.705471,41.340363],[45.717224,41.264751],[45.943916,41.180416],[46.253223,41.169918],[46.369526,41.094112],[46.514446,41.05761],[46.563221,41.114639],[46.650639,41.127724],[46.651611,41.203918],[46.712139,41.283474],[46.609138,41.389221],[46.35186,41.492638],[46.248165,41.659527],[46.304974,41.789165],[46.365528,41.798862],[46.418083,41.90564],[46.539749,41.873779],[46.576778,41.806557],[46.76125,41.853001],[46.781166,41.785389],[46.895805,41.731583],[47.00975,41.556026],[47.100945,41.587196],[47.22747,41.442276],[47.269859,41.318474],[47.404915,41.266277],[47.478222,41.268055],[47.535915,41.207195],[47.613667,41.236443],[47.719917,41.197445],[47.878807,41.219223],[47.940945,41.35989],[48.051056,41.491196],[48.193554,41.50325],[48.414249,41.626667],[48.533806,41.885029],[48.66061,41.79353],[48.936417,41.519779],[49.095249,41.33136],[49.205055,41.015583],[49.412109,40.84314],[49.498528,40.826221],[49.543415,40.631527],[49.807804,40.563305],[50.044224,40.589474],[50.11525,40.521137],[50.219666,40.500999],[50.357277,40.355583],[50.107224,40.36964],[49.995335,40.332279],[49.852859,40.372112],[49.829613,40.307945],[49.680248,40.275471],[49.469028,40.170166],[49.421165,40.050556],[49.47839,39.985611],[49.413528,39.926945],[49.442276,39.858528],[49.38736,39.776722],[49.419807,39.696693],[49.332806,39.644749],[49.280388,39.514637],[49.302307,39.446945],[49.385277,39.383915],[49.422279,39.272583],[49.292778,39.331806],[49.245472,39.292862],[49.240417,39.164276],[49.20689,39.079613],[49.017807,39.194527],[48.949333,39.16111],[48.928333,38.921612],[48.825279,38.824833],[48.868084,38.732555],[48.879417,38.437],[48.791138,38.444584],[48.632027,38.402416],[48.4375,38.611443],[48.315666,38.60136],[48.24625,38.723583],[48.116028,38.76775],[48.020638,38.841167],[48.0135,38.904583],[48.109306,38.94278],[48.291695,38.964973],[48.357777,39.040554],[48.301388,39.108917],[48.144165,39.200195],[48.131779,39.264832],[48.207863,39.32164],[48.374637,39.370777],[48.233665,39.470249],[47.990749,39.696335],[47.807835,39.650082],[47.74189,39.598],[47.541916,39.499554],[47.384945,39.457554],[47.310638,39.371944],[47.064667,39.243137],[47.033249,39.175777],[46.954834,39.1325],[46.852722,39.13961],[46.547249,38.872723],[46.514805,38.943748],[46.551888,39.049332],[46.4445,39.156502],[46.578499,39.202251],[46.535584,39.313499],[46.408474,39.378361],[46.563026,39.567276],[46.443722,39.572529],[46.327,39.631668],[46.184113,39.582222],[46.164944,39.642387],[46.040474,39.720085],[45.995998,39.778446],[45.829029,39.835834],[45.806194,39.930946],[45.623322,39.978416],[45.653278,40.040943],[45.814415,40.000805],[45.884777,40.030445],[45.894859,40.099224],[45.977223,40.212891],[45.905556,40.298862],[45.645222,40.369835],[45.545971,40.469055],[45.43578,40.514027],[45.451195,40.583443],[45.356724,40.668446],[45.408417,40.736363],[45.570027,40.824501],[45.525833,40.911861],[45.402332,41.028278],[45.063446,41.058998],[45.084862,41.114693],[45.178333,41.131554],[45.130585,41.208973],[45.004055,41.301418]]],[[[44.771916,39.713722],[44.953388,39.730026],[45.081944,39.7855],[45.192749,39.677944],[45.186001,39.608166],[45.303665,39.600971],[45.456833,39.50436],[45.708946,39.606499],[45.817501,39.546555],[45.840443,39.471085],[45.795807,39.400307],[46,39.296944],[46,39.186001],[46.034973,39.087891],[46.101028,39.022778],[46.150944,38.885612],[46.137665,38.834499],[46.075474,38.867638],[45.921001,38.869778],[45.767555,38.921528],[45.617169,38.938415],[45.436359,38.99839],[45.449974,39.047695],[45.295387,39.183334],[45.160831,39.237141],[45.087971,39.349361],[44.946361,39.46064],[44.920082,39.568779],[44.820252,39.625252],[44.771916,39.713722]]]]},"properties":{"name":"阿塞拜疆","name_en":"Azerbaijan","id":"AZE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-14.926618,11.054542],[-14.97658,10.97648],[-15.061474,10.926334],[-15.116513,10.969802],[-15.085454,11.13951],[-15.165268,11.081434],[-15.20335,11.1419],[-15.287822,11.119157],[-15.357114,11.143753],[-15.428143,11.239628],[-15.400325,11.347449],[-15.514091,11.332053],[-15.484069,11.462922],[-15.408103,11.529184],[-15.457377,11.648269],[-15.532665,11.673662],[-15.521865,11.779877],[-15.391641,11.882006],[-15.191997,11.869264],[-15.197778,11.899326],[-15.409417,11.965045],[-15.505665,11.93241],[-15.663863,11.797608],[-15.819448,11.743279],[-15.972078,11.768514],[-15.928903,11.884459],[-16.054932,11.91996],[-16.104464,11.878894],[-16.242441,11.928609],[-16.345886,12.004389],[-16.382811,12.082438],[-16.350782,12.186983],[-16.47266,12.176583],[-16.550285,12.264015],[-16.66869,12.337743],[-16.717535,12.328193],[-16.672808,12.356055],[-16.602633,12.346563],[-16.389898,12.360582],[-16.214922,12.456376],[-16.062715,12.46932],[-15.958013,12.440459],[-15.703703,12.423807],[-15.630909,12.439417],[-15.429622,12.535113],[-15.329826,12.611763],[-15.179247,12.680789],[-14.317563,12.676457],[-13.709032,12.67622],[-13.677485,12.527891],[-13.638774,12.466333],[-13.666206,12.311992],[-13.732078,12.249406],[-13.823918,12.260558],[-13.922398,12.236045],[-13.941764,12.135917],[-13.713782,12.008871],[-13.713426,11.709823],[-13.829716,11.708626],[-13.999959,11.644928],[-14.08898,11.630502],[-14.137654,11.6643],[-14.268074,11.678388],[-14.319524,11.603085],[-14.516198,11.498796],[-14.665382,11.506736],[-14.768075,11.382429],[-14.82301,11.24971],[-14.926618,11.054542]]],[[[-16.085438,11.05851],[-16.093157,11.016093],[-16.212797,11.040804],[-16.246975,11.104647],[-16.118769,11.208464],[-16.065479,11.184715],[-16.085438,11.05851]]],[[[-16.00034,11.871238],[-16.040344,11.773868],[-16.147902,11.810081],[-16.104187,11.862563],[-16.00034,11.871238]]],[[[-15.915302,11.44961],[-16.033703,11.431398],[-16.026724,11.516636],[-15.914143,11.507604],[-15.915302,11.44961]]],[[[-16.321314,11.488749],[-16.412743,11.501436],[-16.394718,11.562719],[-16.248722,11.552561],[-16.321314,11.488749]]],[[[-15.773638,11.160301],[-15.783666,11.235148],[-15.708816,11.307363],[-15.663884,11.249824],[-15.773638,11.160301]]],[[[-16.16684,11.294407],[-16.18296,11.228801],[-16.254513,11.21633],[-16.273008,11.287798],[-16.16684,11.294407]]]]},"properties":{"name":"几内亚比绍","name_en":"GUINEA-BISSAU","id":"GNB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.133663,-26.834974],[32.013824,-26.811199],[31.983065,-27.061487],[31.975315,-27.31699],[31.502174,-27.315453],[31.157711,-27.199575],[30.976425,-27.01502],[30.98609,-26.931973],[30.910788,-26.847151],[30.812158,-26.825508],[30.795559,-26.565128],[30.820875,-26.444782],[30.897085,-26.322174],[30.967462,-26.259403],[31.118486,-25.985323],[31.142904,-25.90716],[31.261383,-25.816864],[31.320356,-25.744032],[31.424511,-25.719648],[31.869557,-25.998686],[31.982126,-25.952051],[32.087742,-26.010904],[32.108067,-26.165949],[32.074924,-26.312489],[32.080219,-26.409088],[32.1367,-26.535561],[32.133663,-26.834974]]]},"properties":{"name":"斯威士兰","name_en":"Swaziland","id":"SWZ"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-175.342209,-21.074642],[-175.246994,-21.111876],[-175.228317,-21.200657],[-175.341034,-21.148485],[-175.342209,-21.074642]]]},"properties":{"name":"汤加","name_en":"TONGA","id":"TON"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-3.110742,5.094452],[-3.73364,5.182854],[-3.978923,5.244854],[-4.202151,5.212118],[-4.607694,5.176716],[-4.738854,5.151706],[-5.397762,5.103655],[-5.864167,5.032087],[-5.982014,4.99043],[-6.196655,4.884873],[-6.579993,4.763427],[-6.63513,4.720835],[-6.904808,4.663921],[-7.026739,4.543814],[-7.179183,4.517262],[-7.39768,4.381185],[-7.527073,4.357078],[-7.557402,4.393475],[-7.546407,4.60912],[-7.561555,4.788817],[-7.591789,4.905593],[-7.52655,4.91898],[-7.553314,5.0762],[-7.47092,5.150406],[-7.475037,5.224008],[-7.365113,5.327682],[-7.444848,5.420853],[-7.380093,5.529177],[-7.378784,5.623881],[-7.441317,5.753704],[-7.575215,5.897295],[-7.692999,5.90492],[-7.788074,5.983641],[-7.786833,6.074874],[-7.848288,6.094086],[-7.820578,6.193658],[-7.921579,6.288469],[-8.005302,6.315147],[-8.171672,6.275643],[-8.276216,6.319874],[-8.399074,6.423235],[-8.49027,6.432441],[-8.568663,6.518766],[-8.530358,6.592088],[-8.430481,6.656126],[-8.307361,6.848192],[-8.324889,6.966105],[-8.27361,7.006707],[-8.299383,7.088826],[-8.278384,7.185152],[-8.360893,7.242763],[-8.414106,7.493816],[-8.47218,7.554582],[-8.302776,7.601425],[-8.214911,7.533727],[-8.172627,7.581657],[-8.139861,7.693283],[-8.094036,7.722039],[-8.071771,7.808341],[-8.114659,7.84477],[-8.010641,8.09395],[-8.068926,8.161512],[-8.219083,8.233978],[-8.24243,8.456877],[-8.065125,8.506608],[-7.852424,8.420016],[-7.788409,8.46371],[-7.751742,8.378922],[-7.641071,8.377432],[-7.679962,8.454887],[-7.687555,8.544791],[-7.772655,8.767118],[-7.947045,8.786557],[-7.954822,8.869361],[-7.918283,9.004011],[-7.787999,9.106079],[-7.881877,9.157667],[-7.925727,9.217309],[-7.866493,9.375353],[-7.883122,9.435632],[-7.968117,9.396002],[-8.060329,9.401764],[-8.149226,9.532056],[-8.152925,9.589112],[-8.101483,9.832644],[-8.1373,9.992202],[-8.106679,10.046897],[-8.016502,10.097103],[-7.978548,10.175111],[-7.855926,10.204812],[-7.727278,10.355514],[-7.728319,10.425803],[-7.620174,10.452643],[-7.448959,10.463626],[-7.425368,10.389465],[-7.365108,10.362387],[-7.384366,10.282629],[-7.178484,10.257298],[-7.089561,10.224899],[-7.047341,10.161923],[-6.975773,10.195066],[-6.995327,10.310596],[-6.947465,10.369637],[-6.854407,10.362393],[-6.764007,10.391501],[-6.672198,10.365129],[-6.630166,10.438794],[-6.681194,10.470054],[-6.667661,10.630144],[-6.59558,10.6219],[-6.461879,10.564826],[-6.416442,10.700656],[-6.350479,10.694646],[-6.217736,10.726333],[-6.204999,10.496511],[-6.166648,10.36627],[-6.239283,10.297971],[-6.121273,10.2051],[-6.02316,10.198862],[-5.976114,10.277762],[-5.924587,10.27561],[-5.884331,10.37326],[-5.772508,10.440253],[-5.563094,10.463892],[-5.518916,10.433264],[-5.472611,10.352205],[-5.365123,10.287499],[-5.278549,10.315695],[-5.144166,10.291904],[-5.165216,10.244073],[-5.07473,10.182901],[-5.076528,10.10658],[-4.971672,10.042246],[-4.987827,9.984365],[-4.940853,9.87955],[-4.786805,9.830224],[-4.707962,9.687995],[-4.522059,9.705264],[-4.437621,9.662397],[-4.394384,9.596963],[-4.29085,9.637924],[-4.267178,9.737292],[-4.123398,9.831653],[-4.042902,9.801636],[-3.900427,9.900579],[-3.80917,9.888268],[-3.708624,9.94252],[-3.599318,9.919691],[-3.397239,9.916536],[-3.278865,9.853049],[-3.214314,9.920918],[-3.184156,9.842895],[-3.120558,9.839613],[-3.066193,9.72327],[-3.017246,9.743342],[-2.901227,9.531004],[-2.763182,9.401108],[-2.689926,9.488792],[-2.684118,9.362149],[-2.718738,9.32986],[-2.674664,9.228584],[-2.769123,9.140379],[-2.777426,9.046278],[-2.658345,9.003489],[-2.664097,8.947576],[-2.58717,8.778668],[-2.504456,8.334058],[-2.494896,8.205227],[-2.619182,8.148513],[-2.592008,8.05263],[-2.673052,8.027001],[-2.830357,7.820105],[-2.923468,7.608614],[-2.934699,7.486559],[-2.97756,7.277253],[-2.954354,7.235056],[-3.090311,7.052661],[-3.229418,6.818001],[-3.197204,6.717654],[-3.248404,6.643607],[-3.236648,6.538785],[-3.173252,6.254988],[-3.104023,6.149232],[-3.079238,6.003701],[-3.018393,5.862218],[-3.025537,5.70755],[-2.956828,5.708756],[-2.928384,5.612217],[-2.856848,5.646993],[-2.762861,5.593544],[-2.770461,5.540581],[-2.727837,5.337746],[-2.787052,5.284192],[-2.727679,5.137735],[-2.817815,5.101753],[-3.016188,5.112076],[-3.110742,5.094452]]]},"properties":{"name":"科特迪瓦","name_en":"COTE D’IVOIRE","id":"CIV"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[22.906,47.959057],[22.8895,48.043499],[22.811527,48.119972],[22.679611,48.091972],[22.523195,48.240334],[22.345444,48.282501],[22.213417,48.4235],[22.130362,48.381889],[22.178556,48.588444],[22.357056,48.699333],[22.36064,48.770748],[22.442612,48.941223],[22.559973,49.036861],[22.570444,49.086723],[22.696777,49.041973],[22.873278,49.078667],[22.733805,49.231834],[22.758917,49.285805],[22.671084,49.523804],[22.680416,49.566776],[22.905695,49.790832],[23.022751,49.86689],[23.292278,50.095528],[23.601833,50.275112],[23.720862,50.386696],[23.821222,50.420361],[23.937056,50.412277],[24.060457,50.469502],[24.108862,50.635918],[23.964777,50.800777],[24.063333,50.895084],[23.927305,51.009804],[23.876499,51.136776],[23.74614,51.214027],[23.640944,51.321999],[23.706194,51.404446],[23.630833,51.496861],[23.688667,51.535221],[23.649639,51.629112],[23.739084,51.660027],[23.930443,51.634117],[24.000672,51.581779],[24.223841,51.655273],[24.372898,51.785358],[24.394579,51.920864],[25.027834,51.918304],[25.142084,51.969776],[25.297833,51.974972],[25.399555,51.927723],[25.680445,51.914196],[25.831667,51.933777],[26.096281,51.925819],[26.183575,51.87941],[26.416723,51.863937],[26.515066,51.800957],[26.630612,51.832001],[26.79439,51.783974],[27.191834,51.784832],[27.198778,51.680832],[27.265306,51.629307],[27.720638,51.62236],[27.682278,51.503193],[27.749916,51.474998],[27.840666,51.544693],[27.845083,51.603943],[28.018583,51.561863],[28.190083,51.651806],[28.309889,51.620224],[28.404249,51.546165],[28.524027,51.586388],[28.74939,51.463139],[28.911388,51.590637],[28.999527,51.565666],[29.11175,51.648724],[29.22864,51.62714],[29.211083,51.565304],[29.27475,51.391972],[29.526167,51.41478],[29.63525,51.505474],[29.715805,51.519527],[29.784695,51.448334],[29.904194,51.484085],[30.161611,51.510418],[30.256361,51.482224],[30.343222,51.357224],[30.574194,51.262554],[30.663445,51.380085],[30.593139,51.428471],[30.593361,51.504002],[30.522667,51.605083],[30.591,51.661194],[30.715555,51.870361],[30.99711,52.0755],[31.137417,52.094055],[31.280027,52.042473],[31.395361,52.135361],[31.796806,52.107361],[31.937334,52.090084],[31.974083,52.025612],[32.296276,52.104443],[32.396137,52.260971],[32.388027,52.33511],[32.539417,52.326668],[32.706306,52.254639],[32.905499,52.243805],[33.201248,52.369362],[33.380916,52.367249],[33.545887,52.302307],[33.706276,52.357387],[33.814499,52.362915],[34.021416,52.193333],[34.12925,52.140167],[34.076332,52.070389],[34.138668,51.969696],[34.258,51.909862],[34.264999,51.855083],[34.409138,51.838085],[34.438667,51.727249],[34.151722,51.689278],[34.302307,51.505112],[34.224472,51.405861],[34.341416,51.354332],[34.377251,51.267834],[34.457333,51.240891],[34.656139,51.247112],[34.726139,51.175972],[34.822224,51.176807],[34.962834,51.235168],[35.128029,51.221863],[35.167389,51.081974],[35.3195,51.071999],[35.423443,50.80061],[35.489971,50.775139],[35.494278,50.668751],[35.408443,50.590752],[35.509193,50.481777],[35.588749,50.459362],[35.617916,50.378471],[35.724472,50.368168],[35.859974,50.43486],[36.086723,50.456249],[36.231083,50.418694],[36.315388,50.294029],[36.452835,50.334026],[36.65675,50.237526],[36.729442,50.292946],[36.931946,50.353748],[37.174946,50.355221],[37.343277,50.425415],[37.493137,50.429001],[37.481304,50.37114],[37.649113,50.286861],[37.625305,50.221027],[37.761391,50.091972],[37.910862,50.045944],[38.029388,49.920528],[38.195194,49.952],[38.206417,50.080334],[38.35025,50.07439],[38.366501,50.002945],[38.538193,49.967445],[38.612526,49.985916],[38.946694,49.811085],[39.082584,49.819557],[39.164001,49.878029],[39.282276,49.761639],[39.459835,49.763584],[39.611668,49.739971],[39.64275,49.639946],[39.802555,49.574749],[40.142361,49.619415],[40.20739,49.563137],[40.07011,49.532028],[40.098721,49.439693],[40.164444,49.394028],[40.200333,49.270584],[40.033417,49.181],[39.941471,49.059055],[39.669166,49.04464],[39.820389,48.895916],[39.949638,48.905472],[40.070889,48.867001],[40,48.794582],[39.800362,48.837776],[39.72039,48.731834],[39.681026,48.593193],[39.850056,48.570805],[39.851891,48.472111],[39.940777,48.386776],[40.014889,48.266582],[39.818943,48.049057],[39.82064,47.958195],[39.747666,47.82975],[39.52961,47.82914],[39.379444,47.875832],[39.126221,47.839695],[39.03825,47.865028],[38.83939,47.854137],[38.764778,47.684139],[38.675141,47.696804],[38.605526,47.63789],[38.371613,47.611084],[38.290527,47.520195],[38.298306,47.375915],[38.334221,47.253029],[38.245888,47.228359],[38.23436,47.11536],[37.968277,47.088055],[37.590526,47.096279],[37.52,47.069778],[37.342945,46.895557],[37.239861,46.950554],[37.001751,46.867554],[36.915085,46.819],[36.851002,46.728863],[36.709168,46.779415],[36.608528,46.772556],[36.386276,46.709721],[36.257332,46.604862],[36.185196,46.668751],[35.937916,46.658943],[35.730084,46.582554],[35.591835,46.478168],[35.454445,46.43425],[35.330471,46.315887],[35.260113,46.395721],[35.12886,46.329277],[35.077332,46.270027],[34.895637,46.240917],[34.810444,46.170944],[34.896583,45.894974],[35.040417,45.672333],[35.264362,45.444332],[35.415054,45.326721],[35.505474,45.284222],[35.732471,45.334751],[35.85236,45.443638],[35.964279,45.369694],[36.067833,45.394665],[36.131973,45.459057],[36.346973,45.475445],[36.526501,45.42086],[36.479278,45.300446],[36.405834,45.216194],[36.43914,45.083221],[36.222252,45.028194],[36.042446,45.048721],[35.839916,45.00172],[35.734779,45.090111],[35.601055,45.127277],[35.442417,45.091667],[35.332943,44.963585],[35.174751,44.901833],[35.115749,44.808613],[34.951195,44.841557],[34.731861,44.817944],[34.452446,44.709278],[34.264111,44.516861],[34.169304,44.491306],[34.125889,44.431221],[33.974751,44.395637],[33.866222,44.411804],[33.744446,44.39072],[33.620056,44.492333],[33.488251,44.5],[33.420776,44.551998],[33.527778,44.624138],[33.533527,44.793778],[33.598,44.852165],[33.61261,44.99189],[33.547943,45.108528],[33.388279,45.197945],[33.263195,45.152584],[32.960335,45.345333],[32.872391,45.369251],[32.72686,45.356693],[32.656582,45.318333],[32.496139,45.34911],[32.496166,45.415638],[32.648418,45.507999],[32.794418,45.561279],[32.912445,45.642139],[33.15361,45.736557],[33.345528,45.78014],[33.419582,45.834194],[33.529415,45.848862],[33.662109,45.959721],[33.639832,46.095695],[33.512859,46.085251],[33.42136,46.043861],[33.194527,46.175194],[33.123085,46.132526],[32.938026,46.110474],[32.77211,46.127335],[32.531334,46.074528],[32.226166,46.137554],[32.211887,46.195026],[32.110195,46.215473],[31.827778,46.339249],[31.999167,46.358112],[32.044777,46.411194],[31.82036,46.484779],[32.159752,46.499138],[32.344055,46.464027],[32.261585,46.591415],[32.142834,46.558277],[31.988333,46.655029],[31.79525,46.61311],[31.618334,46.650749],[31.348554,46.604195],[31.182472,46.632946],[30.751083,46.53997],[30.774279,46.443085],[30.612499,46.222527],[30.472111,46.076221],[30.259111,45.895332],[29.889999,45.678112],[29.790833,45.649555],[29.679666,45.707527],[29.603195,45.689751],[29.599417,45.572582],[29.653,45.444778],[29.744499,45.477917],[29.768055,45.333611],[29.740888,45.235527],[29.675722,45.216915],[29.657417,45.343807],[29.570723,45.406944],[29.429777,45.444084],[29.249195,45.429863],[28.996805,45.355972],[28.931444,45.284863],[28.826834,45.336334],[28.736584,45.229916],[28.573223,45.25536],[28.354445,45.323639],[28.215105,45.466881],[28.310249,45.545612],[28.435528,45.48761],[28.516277,45.505474],[28.547777,45.58361],[28.489529,45.716557],[28.717722,45.791943],[28.790445,45.846443],[28.794195,45.977222],[28.978111,46.012501],[28.958139,46.106861],[29.05814,46.199612],[28.947416,46.280304],[28.992861,46.330891],[28.936806,46.462002],[29.061527,46.520584],[29.166666,46.519085],[29.215195,46.435974],[29.323444,46.418472],[29.452749,46.497223],[29.593416,46.364334],[29.745582,46.449665],[29.885555,46.364418],[30.135444,46.416054],[30.021917,46.457611],[29.947834,46.652168],[29.979195,46.763611],[29.873472,46.883999],[29.580111,46.961639],[29.622612,47.076557],[29.539833,47.102055],[29.563667,47.262833],[29.491138,47.315723],[29.397917,47.310417],[29.334389,47.443279],[29.182222,47.472584],[29.147778,47.571777],[29.238722,47.643917],[29.215027,47.815472],[29.262306,47.889278],[29.194723,47.994446],[29.097639,47.958557],[28.855583,48.03297],[28.854473,48.121666],[28.577168,48.172165],[28.449499,48.088444],[28.426361,48.175777],[28.346277,48.249363],[28.217916,48.208694],[28.107639,48.234112],[28.0965,48.30175],[27.986139,48.325443],[27.76364,48.458557],[27.566084,48.473835],[27.284779,48.384083],[27.09411,48.409084],[27.00289,48.365391],[26.881083,48.425915],[26.717112,48.40839],[26.828777,48.340694],[26.653694,48.313526],[26.623611,48.2505],[26.47875,48.222805],[26.324638,48.155613],[26.199638,48.000057],[25.834972,47.983002],[25.487112,47.945362],[25.235666,47.883194],[25.120666,47.757916],[24.910055,47.722332],[24.822971,47.81839],[24.727388,47.841331],[24.633472,47.946751],[24.476778,47.969891],[24.234693,47.905888],[23.974527,47.964279],[23.890778,47.934666],[23.766445,47.997334],[23.403166,48],[23.278639,48.087387],[23.129639,48.087944],[23.03814,47.991501],[22.906,47.959057]]]},"properties":{"name":"乌克兰","name_en":"UKRAINE","id":"UKR"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.677109,37.821804],[126.682861,37.945332],[126.783996,37.967945],[126.89225,38.099194],[126.966888,38.138943],[127.016586,38.237415],[127.132332,38.304943],[127.390526,38.331943],[127.498917,38.297806],[127.586083,38.333111],[127.797165,38.33614],[128.046951,38.305],[128.137726,38.328304],[128.2892,38.434418],[128.315109,38.586334],[128.359909,38.612446],[128.463165,38.408165],[128.510086,38.365112],[128.609772,38.143806],[128.881882,37.819332],[129.053253,37.673611],[129.126007,37.504581],[129.254883,37.371113],[129.352646,37.230278],[129.341339,37.172974],[129.420197,37.066776],[129.42334,36.862167],[129.475052,36.764168],[129.462967,36.672443],[129.412643,36.586082],[129.451416,36.502998],[129.38472,36.335693],[129.375244,36.190723],[129.429611,36.09903],[129.378616,36.020748],[129.454361,35.991585],[129.543839,36.076057],[129.584671,36.016472],[129.470413,35.668083],[129.437088,35.476776],[129.347916,35.445305],[129.362839,35.357224],[129.267441,35.307861],[129.225418,35.179222],[129.131943,35.105778],[129.059326,35.110054],[129.01358,35.052334],[128.899201,35.117554],[128.717285,35.088665],[128.486313,35.101612],[128.487198,35.015915],[128.420639,34.948334],[128.457581,34.876667],[128.40889,34.829418],[128.207138,34.935196],[128.134247,34.886333],[128.007446,34.984722],[127.880364,34.942223],[127.751221,34.956501],[127.590385,34.876083],[127.632446,34.824722],[127.77153,34.854362],[127.752114,34.744694],[127.628418,34.703415],[127.508583,34.871693],[127.400558,34.822304],[127.376304,34.717335],[127.506416,34.601833],[127.401108,34.500473],[127.326637,34.474388],[127.246475,34.517307],[127.123833,34.525528],[127.143639,34.580639],[127.249306,34.620472],[127.21817,34.750751],[127.050858,34.631168],[126.991531,34.626194],[126.934669,34.444668],[126.71228,34.439446],[126.622749,34.39661],[126.601914,34.326305],[126.471108,34.381363],[126.447609,34.531361],[126.280891,34.593582],[126.261948,34.689751],[126.290001,34.757168],[126.419441,34.655804],[126.513336,34.629833],[126.525414,34.800221],[126.406281,34.846806],[126.344002,34.994862],[126.365913,35.058529],[126.453583,35.067665],[126.31736,35.205944],[126.406975,35.405777],[126.514694,35.534363],[126.466972,35.640278],[126.593445,35.70911],[126.683365,35.839417],[126.606476,35.894138],[126.660309,36.013557],[126.638969,36.083473],[126.540275,36.144028],[126.556999,36.344112],[126.497642,36.431999],[126.456947,36.592335],[126.351913,36.743721],[126.302719,36.687168],[126.145111,36.784168],[126.248665,36.870419],[126.33564,36.81686],[126.406197,36.905888],[126.349609,36.94886],[126.402832,37.009193],[126.504723,36.921165],[126.523414,37.035137],[126.677055,36.963696],[126.777664,36.977333],[126.836891,36.820721],[126.896667,36.929779],[126.771111,37.061249],[126.688721,37.114529],[126.662026,37.179527],[126.758469,37.254528],[126.711304,37.382721],[126.606804,37.451916],[126.668282,37.53614],[126.566559,37.601833],[126.522751,37.713333],[126.550888,37.76553],[126.610084,37.752029],[126.677109,37.821804]]],[[[126.163719,33.28389],[126.165169,33.332695],[126.316109,33.465248],[126.644501,33.550861],[126.766945,33.564888],[126.915832,33.50111],[126.91922,33.429443],[126.83503,33.302723],[126.646583,33.260693],[126.599281,33.23111],[126.40789,33.239223],[126.274696,33.190945],[126.163719,33.28389]]],[[[128.668716,35],[128.715744,34.958473],[128.703781,34.805611],[128.575912,34.74025],[128.475052,34.875889],[128.668716,35]]],[[[126.090836,34.414082],[126.123497,34.461945],[126.271584,34.528889],[126.373947,34.510387],[126.339333,34.403778],[126.15889,34.351196],[126.090836,34.414082]]],[[[128.043808,34.819054],[128.04097,34.698193],[127.860252,34.720528],[127.808693,34.852028],[127.870781,34.935028],[127.946137,34.821609],[128.043808,34.819054]]],[[[126.530891,37.659443],[126.507698,37.593807],[126.409859,37.589027],[126.355225,37.700722],[126.356026,37.779804],[126.428581,37.824722],[126.523918,37.741501],[126.513916,37.716305],[126.530891,37.659443]]],[[[130.795303,37.512222],[130.912995,37.542778],[130.908691,37.468166],[130.795303,37.512222]]],[[[128.084885,34.824749],[127.971001,34.837833],[128.014465,34.914639],[128.084885,34.824749]]]]},"properties":{"name":"韩国","name_en":"KOREA, REPUBLIC OF","id":"KOR"}}, + {"type":"Feature","geometry":null,"properties":{"name":"安圭拉","name_en":"ANGUILLA","id":"AIA"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[42.405029,12.462055],[42.360084,12.498138],[42.205471,12.743278],[42.051613,12.813],[41.954693,12.90275],[41.835583,13.143333],[41.719307,13.264277],[41.302223,13.544473],[41.219166,13.615861],[41.136612,13.778139],[40.970165,14.007778],[40.847252,14.139361],[40.578777,14.219639],[40.414917,14.304667],[40.299168,14.412889],[40.161804,14.457556],[40.005085,14.449722],[39.918446,14.414528],[39.790974,14.490528],[39.679249,14.478861],[39.575943,14.55475],[39.492443,14.489528],[39.338417,14.476055],[39.229752,14.439278],[39.198307,14.541306],[39.091805,14.627861],[39.017056,14.614889],[38.98439,14.546056],[38.80175,14.463361],[38.699276,14.459917],[38.523556,14.408028],[38.455113,14.4105],[38.27636,14.612695],[38.24786,14.68675],[38.145474,14.677778],[38.046555,14.71825],[37.916084,14.89375],[37.574055,14.095777],[37.534222,14.117722],[37.389778,14.367833],[37.31189,14.442778],[37.211277,14.438194],[37.123695,14.389611],[37.100418,14.277861],[37.01289,14.25225],[36.97625,14.289083],[36.862446,14.320306],[36.63586,14.312083],[36.556583,14.263722],[36.52689,14.329139],[36.470307,14.919528],[36.438778,15.156639],[36.525501,15.215861],[36.613445,15.413195],[36.699696,15.713],[36.767971,15.829695],[36.899277,16.226418],[36.958416,16.28064],[36.933639,16.354111],[36.962582,16.435499],[36.887444,16.545444],[36.901112,16.675806],[36.955776,16.686527],[37.029278,16.801111],[37.001972,16.830194],[37.021252,17.096056],[37.128834,17.057167],[37.311027,17.09436],[37.394665,17.047138],[37.517387,17.258806],[37.515304,17.336861],[37.612335,17.37414],[37.765556,17.383972],[37.774834,17.480473],[37.870251,17.452555],[37.976971,17.490999],[38.00386,17.557083],[38.166222,17.572971],[38.260139,17.558584],[38.280445,17.625416],[38.341694,17.649611],[38.452389,17.898361],[38.564446,18.003084],[38.600777,17.925556],[38.816113,17.61414],[38.931526,17.370361],[39.062279,16.891388],[39.115002,16.781694],[39.147667,16.638666],[39.146946,16.531221],[39.186585,16.425722],[39.194363,16.287666],[39.234974,16.076416],[39.302055,15.893027],[39.430584,15.800138],[39.422195,15.751778],[39.472694,15.646833],[39.438721,15.59025],[39.459194,15.521389],[39.540165,15.529917],[39.614361,15.483389],[39.6535,15.34125],[39.712334,15.239889],[39.693333,15.121972],[39.7775,15.056972],[39.846611,15.158889],[39.824222,15.251445],[39.781696,15.261222],[39.774776,15.390445],[39.864723,15.478472],[40.085556,15.320167],[40.019001,15.2335],[40.077278,15.152695],[40.160641,14.978556],[40.297222,14.897528],[40.364388,14.958694],[40.536251,14.98275],[40.619026,14.88675],[40.686085,14.882639],[40.745556,14.808083],[40.745972,14.733472],[40.900249,14.720667],[41.02536,14.665556],[41.18375,14.618806],[41.289002,14.513194],[41.338528,14.408722],[41.480778,14.247556],[41.543056,14.1335],[41.648388,14.025416],[41.681694,13.943528],[41.799168,13.926695],[41.855889,13.862889],[41.963722,13.848389],[42.064556,13.721556],[42.112167,13.630694],[42.28936,13.553223],[42.352196,13.392472],[42.388279,13.202861],[42.492363,13.177611],[42.555054,13.197695],[42.665722,13.053473],[42.738193,13.036612],[42.735889,12.955944],[42.774387,12.845083],[42.82478,12.85975],[42.936027,12.791945],[43.019306,12.882],[43.08036,12.829139],[43.13464,12.706833],[42.887722,12.624389],[42.858444,12.550389],[42.795918,12.503],[42.822166,12.442555],[42.68811,12.362278],[42.567081,12.475972],[42.463974,12.523945],[42.405029,12.462055]]],[[[40,15.876945],[40.093693,15.826417],[40.133721,15.769362],[40.159111,15.626139],[40.247139,15.614695],[40.266083,15.660028],[40.406555,15.625112],[40.415638,15.555778],[40.30011,15.55525],[40.244862,15.583972],[40.092362,15.57575],[40.074001,15.66],[39.981945,15.734944],[40,15.876945]]],[[[40,16.057695],[40.036694,16.107027],[40.11264,16.049667],[40.044998,16.009138],[40,16.057695]]]]},"properties":{"name":"厄立特里亚","name_en":"ERITREA","id":"ERI"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.470056,46.861889],[10.442139,46.754555],[10.377944,46.682388],[10.486,46.612999],[10.464222,46.548637],[10.3035,46.548584],[10.185611,46.623196],[10.051194,46.538834],[10.043333,46.447498],[10.13125,46.432472],[10.107278,46.332085],[10.171472,46.264694],[10.083944,46.236279],[9.991472,46.296276],[9.949083,46.382584],[9.726944,46.347279],[9.709361,46.297638],[9.543667,46.311138],[9.357333,46.508472],[9.247249,46.432251],[9.292306,46.328388],[9.188973,46.182835],[9.085749,46.131695],[8.993305,45.981777],[9.083944,45.90625],[9.026139,45.828777],[8.949417,45.850056],[8.893611,45.963028],[8.797139,46.019306],[8.807195,46.1115],[8.615611,46.129612],[8.451583,46.259472],[8.460889,46.447777],[8.302722,46.427696],[8.311055,46.379833],[8.086,46.267223],[8.1645,46.191582],[8.030084,46.094082],[7.985667,46.004082],[7.905528,46.00425],[7.794222,45.929943],[7.649416,45.986252],[7.473277,45.962639],[7.381972,45.907585],[7.103056,45.867054],[7.036167,45.936943],[6.891583,46.129776],[6.776667,46.150833],[6.851305,46.293724],[6.762306,46.356224],[6.806194,46.431332],[6.668528,46.459946],[6.500472,46.460667],[6.325972,46.408222],[6.208278,46.317974],[6.285083,46.235527],[6.122111,46.154888],[5.961667,46.153751],[5.971861,46.219723],[6.103417,46.255138],[6.151667,46.360748],[6.067,46.416084],[6.141389,46.534695],[6.109305,46.586029],[6.271972,46.695583],[6.434167,46.770054],[6.479111,46.972832],[6.623194,47.002304],[6.705,47.090221],[6.855111,47.1675],[6.941167,47.291637],[6.872278,47.366249],[6.985056,47.50214],[7.191555,47.487694],[7.174778,47.448276],[7.387833,47.437611],[7.512084,47.506279],[7.580917,47.58239],[7.670222,47.53989],[7.904444,47.586582],[8.020166,47.553806],[8.202806,47.623112],[8.433389,47.573166],[8.422694,47.708084],[8.569472,47.805332],[8.720278,47.736168],[8.816,47.721806],[8.895167,47.65564],[9.013389,47.684223],[9.25225,47.662056],[9.544333,47.542557],[9.652639,47.403805],[9.535916,47.273529],[9.492889,47.192139],[9.524639,47.106583],[9.603666,47.061554],[9.7835,47.040359],[9.889694,46.999168],[9.874639,46.940723],[10.104584,46.847305],[10.22775,46.872501],[10.348056,46.992195],[10.491472,46.939667],[10.470056,46.861889]]]},"properties":{"name":"瑞士","name_en":"Switzerland","id":"CHE"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[32.764832,34.654167],[32.712776,34.641167],[32.501167,34.702778],[32.424473,34.753777],[32.391445,34.837971],[32.318138,34.892777],[32.318195,34.976276],[32.274944,35.046528],[32.447834,35.049389],[32.549499,35.157196],[32.655918,35.194111],[32.82375,35.142555],[32.914944,35.18214],[32.945999,35.293583],[33.016251,35.361668],[33.125694,35.36311],[33.367527,35.330696],[33.512833,35.33503],[33.682724,35.365807],[33.772945,35.408779],[33.984585,35.443638],[34.129333,35.506943],[34.187946,35.563473],[34.297195,35.576916],[34.389389,35.540916],[34.132999,35.40464],[34.051724,35.318417],[33.963974,35.311359],[33.916473,35.248054],[33.921471,35.159584],[34.088722,34.986332],[33.914307,34.967415],[33.695805,34.971611],[33.611694,34.815777],[33.272141,34.703362],[33.154335,34.710583],[33.021332,34.64864],[32.949833,34.575863],[32.886833,34.664391],[32.764832,34.654167]]]},"properties":{"name":"塞浦路斯","name_en":"Cyprus","id":"CYP"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[19.017055,44.855431],[19.171976,44.921188],[19.307299,44.908611],[19.370605,44.870922],[19.327225,44.729771],[19.170782,44.524139],[19.102947,44.371098],[19.166283,44.28688],[19.324428,44.271614],[19.359077,44.183907],[19.621109,44.02166],[19.525326,43.955723],[19.239826,43.981739],[19.312622,43.885197],[19.465321,43.763016],[19.515028,43.677151],[19.500746,43.568748],[19.294357,43.601234],[19.232298,43.525471],[19.045939,43.505505],[19.042267,43.363689],[19.012468,43.262333],[18.914617,43.359463],[18.731859,43.280121],[18.648796,43.147041],[18.663155,43.036831],[18.540522,43.031643],[18.487425,42.963879],[18.459971,42.821522],[18.474421,42.754711],[18.56698,42.721474],[18.523996,42.619247],[18.456474,42.560223],[18.376444,42.649471],[18.225416,42.657501],[17.934278,42.831165],[17.844389,42.900806],[17.695389,42.920612],[17.653723,42.886501],[17.587584,42.932415],[17.684778,43.011971],[17.543722,43.134918],[17.316833,43.297249],[17.254194,43.470055],[17.073973,43.554054],[16.766834,43.814693],[16.597639,43.914112],[16.480638,44.021778],[16.358917,44.089863],[16.224528,44.212502],[16.213028,44.357224],[16.13975,44.388],[16.146194,44.470222],[16.088583,44.555195],[15.914194,44.725498],[15.755639,44.788082],[15.721694,44.950943],[15.764389,45.182529],[15.903334,45.219028],[15.978556,45.201389],[16.134945,45.084946],[16.31311,44.99511],[16.374361,45.03186],[16.481111,45.186916],[16.539362,45.226528],[16.734444,45.195641],[16.946362,45.239193],[17.163944,45.151695],[17.285055,45.17189],[17.359083,45.135944],[17.45814,45.155361],[17.517195,45.103527],[17.694361,45.110832],[17.810749,45.049473],[17.885111,45.051109],[18.014833,45.141945],[18.127111,45.081501],[18.222778,45.138416],[18.426834,45.102138],[18.500973,45.056557],[18.581556,45.091946],[18.667029,45.060444],[18.798611,44.949276],[18.838472,44.864498],[19.017055,44.855431]]]},"properties":{"name":"波黑","name_en":"Bosnia and Herzegovina","id":"BIH"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.638275,1.331667],[103.682831,1.42725],[103.823471,1.471278],[103.961113,1.376028],[103.953636,1.305278],[103.806358,1.2595],[103.767777,1.297611],[103.663414,1.292],[103.638275,1.331667]]]},"properties":{"name":"新加坡","name_en":"SINGAPORE","id":"SGP"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-37.883381,-54.050251],[-37.75098,-54.003738],[-37.495636,-54.014839],[-37.234802,-54.085056],[-37.090458,-54.087822],[-36.983727,-54.054379],[-36.763355,-54.106152],[-36.66399,-54.18734],[-36.260082,-54.291649],[-36.181816,-54.434193],[-36.033909,-54.492664],[-35.917919,-54.696823],[-35.838886,-54.757919],[-35.986527,-54.875919],[-36.246979,-54.798111],[-36.342117,-54.670475],[-36.490345,-54.567432],[-36.529171,-54.496738],[-36.812599,-54.45623],[-36.797073,-54.40741],[-37.10273,-54.319363],[-37.202576,-54.259064],[-37.36097,-54.274982],[-37.395634,-54.182571],[-37.468872,-54.133823],[-37.648361,-54.117302],[-37.750332,-54.052071],[-37.883381,-54.050251]]],[[[-26.249037,-58.404266],[-26.240932,-58.502571],[-26.419373,-58.460651],[-26.431393,-58.395775],[-26.249037,-58.404266]]]]},"properties":{"name":"南乔治亚岛和南桑德韦奇岛","name_en":"SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS","id":"SGS"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[42.961639,10.984417],[43.254696,11.469584],[43.315109,11.465],[43.390945,11.37975],[43.4795,11.329],[43.51614,11.199667],[43.692196,10.940805],[43.857082,10.767389],[44.1175,10.558028],[44.288193,10.431389],[44.410389,10.391778],[44.615612,10.382112],[44.725777,10.417556],[44.943501,10.410806],[45.087971,10.5085],[45.23325,10.562],[45.324444,10.660111],[45.46061,10.663944],[45.810196,10.867333],[45.974609,10.781167],[46.096943,10.762445],[46.236221,10.780389],[46.344723,10.689694],[46.449665,10.680722],[46.666778,10.745028],[46.870499,10.858472],[47.01725,10.960694],[47.107498,10.9925],[47.150391,11.0625],[47.422085,11.175389],[47.557415,11.169444],[47.674389,11.090222],[47.802223,11.122027],[47.971749,11.112416],[48.1535,11.129167],[48.241611,11.2045],[48.360111,11.269806],[48.662056,11.322556],[48.879612,11.246528],[48.955307,11.238417],[49.239639,11.298528],[49.295971,11.332806],[49.422028,11.333528],[49.509388,11.380889],[49.546917,11.4395],[49.692139,11.477333],[49.861389,11.468166],[49.939529,11.509417],[50.064026,11.503639],[50.260528,11.580611],[50.431526,11.670389],[50.492863,11.731556],[50.539307,11.860111],[50.581528,11.912111],[50.805752,11.979389],[51.054359,11.872556],[51.140278,11.873889],[51.284611,11.811611],[51.225445,11.641889],[51.119835,11.49175],[51.083973,11.338861],[51.086361,11.186916],[51.17847,11.131416],[51.132305,11.038834],[51.116611,10.939889],[51.131306,10.672944],[51.165779,10.566334],[51.105278,10.549916],[51.12014,10.430111],[51.228359,10.430805],[51.236694,10.506583],[51.413029,10.439667],[51.360306,10.368806],[51.289249,10.368361],[51.244778,10.42175],[51.047028,10.395833],[50.899139,10.31],[50.882084,10.095695],[50.898254,9.992002],[50.851448,9.854623],[50.798641,9.560616],[50.846561,9.465748],[50.810081,9.384624],[50.655041,9.203459],[50.640888,9.076998],[50.443398,8.893184],[50.379517,8.696218],[50.338539,8.650218],[50.33202,8.55086],[50.156879,8.309959],[50.129215,8.198525],[49.984398,8.095842],[49.835331,7.934741],[49.809574,7.81827],[49.836273,7.765122],[49.742085,7.559724],[49.603878,7.329968],[49.397446,7.049516],[49.211101,6.733643],[49.085247,6.391274],[49.083733,6.282537],[48.987068,6.047787],[48.651356,5.492748],[48.314919,5.056347],[48.197361,4.883578],[48.007801,4.537098],[47.939419,4.438889],[47.623997,4.096086],[47.428512,3.8695],[47.215767,3.668741],[47.138359,3.574306],[46.872116,3.293234],[46.806873,3.204157],[46.575706,2.97182],[46.345192,2.786594],[46.104088,2.515197],[46.001965,2.423229],[45.878063,2.33957],[45.394192,2.04743],[45.074047,1.895099],[44.761509,1.703418],[44.604492,1.596498],[44.282398,1.337683],[44.051075,1.126915],[44.021858,1.084765],[43.846538,0.960082],[43.655258,0.798889],[43.376522,0.533272],[43.039353,0.155552],[42.764786,-0.134963],[42.518032,-0.377876],[42.213783,-0.755845],[42.089291,-0.853294],[41.875252,-1.219492],[41.834732,-1.253724],[41.63145,-1.57801],[41.567173,-1.662053],[41.567944,-1.591183],[41.000988,-0.834049],[41.000515,0],[40.988632,0.014013],[40.991379,0.650817],[40.991802,1.619201],[40.990913,2.319638],[40.992111,2.829568],[41.328129,3.158634],[41.661449,3.639192],[41.899078,3.975494],[41.946224,4.055664],[42.087669,4.179365],[42.370975,4.189451],[42.587875,4.215405],[42.709904,4.261759],[42.817337,4.264912],[42.898049,4.318554],[43.007217,4.46774],[43.044281,4.572129],[43.235187,4.696257],[43.434925,4.79468],[43.659065,4.868027],[44.015137,4.960437],[44.981743,4.917296],[45.503898,5.453055],[46.199921,6.167208],[47.777084,7.785457],[47.986179,8],[46.9897,8],[46.579128,8.146087],[45.828949,8.395333],[44.866928,8.7107],[44.005856,8.996557],[43.646687,9.358332],[43.491375,9.401518],[43.398239,9.552792],[43.299194,9.611092],[43.256874,9.842637],[43.085895,9.908804],[43.017387,10.080778],[42.881138,10.207111],[42.832638,10.277861],[42.746666,10.51225],[42.683166,10.592527],[42.766529,10.721972],[42.961639,10.984417]]]},"properties":{"name":"索马里","name_en":"SOMALIA","id":"SOM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[67.789833,37.184776],[67.633331,37.248444],[67.440308,37.233139],[67.26397,37.188499],[67.098335,37.330387],[66.971359,37.386749],[66.683365,37.337223],[66.52597,37.347584],[66.530746,37.402973],[66.63958,37.439529],[66.637054,37.483944],[66.538277,37.579472],[66.548226,37.791779],[66.676636,37.961971],[66.620193,38.014027],[66.496559,38.041862],[66.400002,38.032471],[66.245529,38.154026],[65.851501,38.274082],[65.797447,38.235863],[65.481362,38.319],[65.300552,38.408501],[65.025024,38.612473],[64.826195,38.679749],[64.522835,38.838223],[64.331024,38.985863],[64.177109,38.959194],[63.745388,39.206722],[63.539139,39.383583],[63.170418,39.574112],[62.797974,39.775749],[62.487946,39.951389],[62.3965,40.099278],[62.413776,40.1735],[62.393166,40.31078],[62.333248,40.383446],[62.349472,40.438305],[62.207722,40.50853],[62.113083,40.596111],[62.000111,40.820332],[61.97089,41.019138],[61.882668,41.118805],[61.626888,41.264999],[61.421554,41.285889],[61.379917,41.16489],[61.299805,41.145222],[61.171333,41.173248],[61.046055,41.234695],[60.505585,41.216473],[60.131249,41.394833],[60.093723,41.43211],[60.111889,41.548138],[60.16375,41.609528],[60.068584,41.7285],[60.083637,41.809334],[60.231472,41.765751],[60.258389,41.815418],[60.045056,41.916416],[60.029999,42.009724],[59.970196,42.128223],[60.039139,42.195915],[59.827972,42.306305],[59.717609,42.285973],[59.419251,42.276554],[59.270638,42.39286],[59.277443,42.438835],[59.169472,42.528027],[59.047833,42.510723],[58.934696,42.54364],[58.702499,42.726528],[58.59536,42.665943],[58.472668,42.650307],[58.297165,42.689445],[58.154778,42.609722],[58.306473,42.548248],[58.323444,42.448082],[58.201195,42.467388],[58.134724,42.442528],[58.053276,42.504471],[57.915138,42.457222],[57.947304,42.371639],[57.928528,42.24514],[57.847195,42.246307],[57.835472,42.172943],[57.67561,42.151974],[57.521694,42.174084],[57.312805,42.137806],[57.214111,42.068417],[57.129971,41.943584],[57.001526,41.896],[56.967583,41.804554],[56.972195,41.672359],[57.01989,41.586418],[57.031639,41.445862],[57.086555,41.374889],[57.042415,41.263222],[56.432529,41.299915],[56.00061,41.318054],[56.000084,42.017166],[55.999416,42.944363],[55.998833,43.743832],[55.998501,44.221279],[55.998112,45],[57.356388,45.310917],[57.990749,45.449139],[58.578686,45.599289],[59.099235,45.341999],[60.001514,44.999783],[61.111194,44.35775],[61.121418,44.268665],[61.413582,44.016445],[61.975639,43.512279],[62.028694,43.486527],[63.208057,43.6525],[63.388889,43.672863],[63.911888,43.628082],[64.53653,43.603306],[65.010246,43.766861],[65.17025,43.743557],[65.294136,43.545277],[65.651085,43.303528],[65.827194,42.868137],[66.099198,42.962196],[66.105667,42.347332],[66.016441,42.378418],[66.008552,41.943501],[66.530746,41.896305],[66.60611,41.251415],[67.311165,41.211807],[67.743469,41.201946],[67.918611,41.156945],[68.030555,41.0775],[67.975278,40.909722],[67.985556,40.846667],[68.061945,40.771111],[68.443611,40.596111],[68.617222,40.613333],[68.423055,40.705556],[68.451944,40.769167],[68.445555,40.916111],[68.371389,41.045],[68.435278,41.094722],[68.652679,40.940998],[68.744804,40.987446],[68.829529,41.116222],[68.988197,41.253193],[69.033249,41.342167],[69.231476,41.461723],[69.307442,41.450863],[69.406387,41.504444],[69.621086,41.658028],[69.832802,41.719082],[69.95211,41.718807],[69.984558,41.780804],[70.159752,41.844307],[70.240303,41.941166],[70.330887,41.975613],[70.322609,42.034363],[70.433304,42.130085],[70.626976,42.000832],[70.693581,42.126835],[70.800942,42.209862],[70.940224,42.259193],[71.070274,42.287834],[71.261139,42.195946],[70.966225,42.026333],[70.861641,42.041805],[70.85025,41.945168],[70.656586,41.891445],[70.508888,41.776333],[70.492386,41.718861],[70.348251,41.637749],[70.195557,41.598305],[70.186165,41.518555],[70.320274,41.514416],[70.483391,41.399612],[70.594803,41.448029],[70.715942,41.460972],[70.780083,41.375389],[70.783165,41.188194],[70.875359,41.231445],[70.96167,41.163082],[71.019279,41.192665],[71.124252,41.147221],[71.257469,41.186359],[71.392502,41.11211],[71.435082,41.123611],[71.487694,41.316029],[71.591003,41.30339],[71.731308,41.456833],[71.799309,41.431446],[71.935165,41.308277],[71.861999,41.200863],[71.890358,41.172165],[72.083557,41.140888],[72.192718,41.154861],[72.228363,41.052418],[72.351692,41.064777],[72.497582,41.03064],[72.5755,40.890472],[72.680809,40.85561],[72.834808,40.869472],[73.005722,40.767082],[72.848587,40.688915],[72.767113,40.675499],[72.762085,40.57],[72.683525,40.593166],[72.636665,40.51939],[72.476303,40.564056],[72.4105,40.401249],[72.183502,40.498249],[71.997055,40.332416],[71.939476,40.22464],[71.716194,40.150806],[71.680191,40.231972],[71.551056,40.199638],[71.486916,40.262417],[71.277336,40.326721],[71.118225,40.319332],[70.963165,40.259918],[70.967613,40.2285],[70.645614,40.165028],[70.570999,40.244694],[70.550529,40.34589],[70.385223,40.376499],[70.332664,40.449249],[70.494835,40.511391],[70.630333,40.620918],[70.735496,40.657585],[70.789665,40.72514],[70.654724,40.761528],[70.673836,40.848389],[70.534553,40.992085],[70.440529,41.041222],[70.370476,40.928944],[70.21492,40.826305],[70.155197,40.834332],[70.080277,40.765167],[69.922752,40.703888],[69.767555,40.688778],[69.667664,40.629944],[69.547859,40.753502],[69.40097,40.782028],[69.348358,40.712082],[69.363388,40.615528],[69.273941,40.495361],[69.338997,40.347889],[69.259247,40.248196],[69.316139,40.201584],[68.999473,40.220528],[68.77533,40.197723],[68.53833,40.14061],[68.608414,40.091778],[68.872864,40.146362],[68.977386,40.151669],[69.014221,40.080223],[68.889389,40.068028],[68.812385,40],[68.912941,39.904335],[68.716247,39.869335],[68.591888,39.724304],[68.62664,39.650749],[68.514893,39.534084],[68.034142,39.576111],[67.796776,39.654362],[67.713692,39.656445],[67.628166,39.600029],[67.498726,39.571861],[67.425468,39.496971],[67.518974,39.338696],[67.39228,39.299835],[67.462082,39.203194],[67.677864,39.144001],[67.715362,38.999668],[67.975693,39.033333],[68.115364,39.010029],[68.199081,38.926109],[68.196976,38.851307],[68.072975,38.803501],[68.127693,38.741196],[68.068474,38.540668],[68.196747,38.406055],[68.233582,38.32864],[68.320335,38.292526],[68.402641,38.195],[68.369919,38.078472],[68.284553,37.984028],[68.270279,37.90939],[68.128754,37.877277],[68.042724,37.736584],[67.938751,37.640278],[67.828361,37.463276],[67.820778,37.234806],[67.789833,37.184776]]],[[[71.08725,40],[71.007698,40.039528],[71.003944,40.174778],[71.081444,40.150696],[71.119751,40.017471],[71.229332,39.91975],[71.112778,39.915279],[71.08725,40]]]]},"properties":{"name":"乌兹别克斯坦","name_en":"UZBEKISTAN","id":"UZB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[18.635095,3.471089],[18.594995,3.477018],[18.54422,3.596132],[18.490898,3.651687],[18.419706,3.609041],[18.264732,3.588093],[18.249924,3.514086],[18.188995,3.481166],[18.123522,3.566071],[17.919298,3.573514],[17.85914,3.532982],[17.828976,3.626744],[17.733053,3.651216],[17.606319,3.64125],[17.474064,3.703082],[17.365892,3.610179],[17.298815,3.630149],[17.248291,3.583334],[17.058056,3.54813],[16.754526,3.557066],[16.672024,3.541804],[16.59654,3.477276],[16.558363,3.253435],[16.505768,3.159867],[16.544537,3.065687],[16.493379,3.004335],[16.49025,2.909309],[16.520128,2.842302],[16.19199,2.220514],[16.148724,2.349572],[16.075626,2.465193],[16.08972,2.700339],[16.053303,2.794224],[16.073193,2.903398],[16.005121,3.000761],[15.969125,2.98757],[15.888252,3.096249],[15.805278,3.09342],[15.507288,3.440503],[15.247792,3.713966],[15.107087,3.945023],[15.146042,4.033412],[15.114417,4.118403],[15.093122,4.292163],[15.013889,4.418244],[14.887191,4.470376],[14.757865,4.581386],[14.724054,4.641287],[14.721906,4.800939],[14.686854,4.924556],[14.65262,5.21101],[14.532669,5.265588],[14.601842,5.399962],[14.631013,5.506598],[14.59562,5.599363],[14.627997,5.698392],[14.621317,5.896153],[14.493606,5.914398],[14.420097,6.03849],[14.561982,6.190113],[14.750682,6.261004],[14.815918,6.360363],[14.813369,6.409104],[14.970765,6.748919],[15.051518,6.761045],[15.144282,6.94663],[15.148658,7.027939],[15.22533,7.137473],[15.224754,7.239705],[15.429693,7.418141],[15.507478,7.527468],[15.546547,7.511202],[15.727948,7.519134],[15.809591,7.441068],[15.974808,7.483338],[16.056677,7.577589],[16.235464,7.606656],[16.375481,7.665937],[16.516056,7.842938],[16.583725,7.833888],[16.594477,7.768879],[16.668024,7.738216],[16.667234,7.668666],[16.726784,7.650231],[16.843849,7.529787],[16.905294,7.61625],[17.160448,7.666746],[17.169182,7.70687],[17.314695,7.828386],[17.648878,7.945733],[17.671673,7.982768],[17.921644,7.95861],[18.031982,8.009303],[18.601605,8.04674],[18.673633,8.212172],[18.804415,8.260713],[18.850935,8.305436],[18.98904,8.510682],[19.042257,8.554285],[19.065844,8.637378],[19.120653,8.668692],[19.019634,8.761438],[18.922976,8.800428],[18.868301,8.875699],[18.992731,8.979239],[19.077679,9.014913],[19.218359,9.031472],[19.30924,9.007809],[19.401062,9.025985],[19.671989,9.020756],[19.772879,9.057358],[19.927143,9.060796],[20.057752,9.141662],[20.238687,9.145899],[20.353203,9.128198],[20.455925,9.173464],[20.528635,9.337067],[20.637863,9.317802],[20.662766,9.395308],[20.760815,9.401124],[20.978334,9.61715],[21.030533,9.728498],[21.115307,9.791945],[21.133072,9.847903],[21.262831,9.99369],[21.340611,9.963696],[21.453438,10.083075],[21.468077,10.152206],[21.561285,10.210389],[21.67569,10.23764],[21.766628,10.404025],[21.717541,10.507866],[21.733631,10.653979],[21.788591,10.669397],[21.791242,10.798094],[21.87825,10.867855],[21.933977,10.853364],[22.081616,10.894969],[22.151804,10.876024],[22.326904,10.95578],[22.520679,11.007569],[22.734318,10.974495],[22.881338,10.930898],[22.885273,10.894696],[23.00738,10.71609],[23.13674,10.634233],[23.301876,10.474637],[23.668244,9.891512],[23.697867,9.667719],[23.65016,9.57207],[23.633532,9.473898],[23.677443,9.438735],[23.610962,9.230542],[23.476307,9.141964],[23.463476,8.984043],[23.531273,8.963513],[23.569605,8.878985],[23.508539,8.814837],[23.520107,8.726969],[23.637728,8.742492],[23.738941,8.716108],[23.829782,8.734871],[24.131796,8.692358],[24.17407,8.706571],[24.259888,8.683774],[24.267941,8.592734],[24.171225,8.481531],[24.153368,8.369939],[24.203583,8.303996],[24.3715,8.251407],[24.478775,8.272289],[24.554003,8.20427],[24.621927,8.222956],[24.86475,8.180498],[24.90949,8.047219],[25.100374,7.884384],[25.180088,7.902913],[25.286818,7.781548],[25.287798,7.638908],[25.173059,7.573323],[25.206348,7.485071],[25.287355,7.460864],[25.361103,7.344516],[25.53455,7.273749],[25.604427,7.215968],[25.824764,7.142074],[25.985573,7.006858],[26.114687,6.815335],[26.167589,6.813153],[26.262802,6.709022],[26.357512,6.689029],[26.415108,6.637383],[26.297241,6.493942],[26.297903,6.387691],[26.396557,6.30581],[26.476244,6.274101],[26.533728,6.194599],[26.517195,6.115283],[26.560179,6.033278],[26.655008,6.004957],[26.75178,6.013197],[26.819244,5.980795],[26.833025,5.903914],[27.002674,5.856691],[27.046581,5.79489],[27.105873,5.799759],[27.188328,5.727467],[27.283386,5.58701],[27.233204,5.426795],[27.248921,5.326864],[27.323767,5.199333],[27.396597,5.15258],[27.463421,5.016153],[27.43156,5.077729],[27.231823,5.152315],[27.142937,5.204216],[27.078672,5.204131],[26.935108,5.134194],[26.872164,5.033753],[26.74996,5.103511],[26.463657,5.058541],[26.390943,5.147448],[26.301684,5.141724],[26.140953,5.263077],[26.09267,5.206573],[25.985166,5.23966],[25.902735,5.170625],[25.798954,5.26261],[25.74968,5.237842],[25.587898,5.369894],[25.497469,5.364079],[25.367708,5.315548],[25.320646,5.187434],[25.355208,5.149122],[25.31797,5.036223],[25.154159,5.028268],[25.08222,4.938931],[25.000326,4.993162],[24.784544,4.905525],[24.661749,4.916743],[24.610535,5.032056],[24.534363,5.080511],[24.389401,5.109155],[24.380789,5.010741],[24.298317,5.002935],[24.160479,4.894931],[24.090252,4.910327],[23.949137,4.852258],[23.833492,4.829398],[23.780283,4.783554],[23.70915,4.782346],[23.575653,4.72859],[23.425915,4.644638],[23.420927,4.588927],[23.331215,4.602164],[23.159427,4.736118],[23.11335,4.707964],[23.008646,4.758201],[22.983761,4.823298],[22.906668,4.817867],[22.870134,4.713068],[22.790516,4.714526],[22.739521,4.624882],[22.688225,4.461341],[22.596701,4.463446],[22.550438,4.21542],[22.445164,4.124475],[22.28126,4.112094],[22.163763,4.154138],[22.09528,4.211728],[21.954683,4.223979],[21.650577,4.309106],[21.564785,4.247349],[21.427839,4.260674],[21.278728,4.337695],[21.219294,4.286591],[21.118887,4.336147],[21.075321,4.392369],[20.856983,4.445547],[20.783268,4.412536],[20.612673,4.401634],[20.5329,4.442465],[20.453382,4.524955],[20.453361,4.627389],[20.357857,4.736951],[20.196331,4.827287],[20.023962,4.965867],[19.9151,4.979547],[19.825197,5.09344],[19.696427,5.132987],[19.5662,5.144195],[19.403347,5.121121],[19.230793,4.997373],[19.212036,4.949839],[19.112766,4.932861],[19.009724,4.75334],[18.90596,4.655971],[18.831814,4.558328],[18.790779,4.417167],[18.733341,4.363595],[18.578207,4.344087],[18.546168,4.301501],[18.648847,4.076398],[18.652275,3.977893],[18.601723,3.895812],[18.587137,3.751367],[18.635095,3.471089]]]},"properties":{"name":"中非","name_en":"Central Africa","id":"CAF"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[16.19199,2.220514],[16.086325,2.192301],[16.084332,2.046473],[16.055723,2.001262],[16.112934,1.867177],[16.152979,1.704636],[16.032352,1.657412],[16.032537,1.76247],[15.886516,1.77963],[15.764898,1.908636],[15.525643,1.953685],[15.493702,1.975643],[15.344864,1.911096],[15.251914,2.025681],[15.196596,2.034139],[15.051688,1.98033],[14.987114,2.033179],[14.729589,2.1222],[14.655955,2.127451],[14.606706,2.196791],[14.426798,2.155938],[14.309893,2.190559],[14.256395,2.17233],[13.298964,2.170563],[13.251954,2.273338],[13.162744,2.283986],[13.099822,2.246087],[12.750067,2.223476],[12.689677,2.242344],[12.326862,2.276733],[12.241785,2.24988],[11.9812,2.291359],[11.750165,2.281044],[11.699555,2.322156],[11.612197,2.299752],[11.474017,2.303949],[11.377554,2.260351],[11.334608,2.173887],[10.640686,2.174149],[10.193963,2.172673],[10.040822,2.161885],[9.847888,2.246572],[9.822182,2.346989],[9.826881,2.56756],[9.894709,2.802621],[9.91153,2.967602],[9.975469,3.084204],[9.887914,3.303611],[9.779333,3.433227],[9.634802,3.555481],[9.638468,3.668542],[9.576875,3.774147],[9.620285,3.868399],[9.718627,3.864376],[9.593392,4.006339],[9.457714,3.939111],[9.43022,3.882877],[9.360483,3.896871],[9.21216,4.008546],[9.116325,4.011369],[8.987568,4.094558],[8.996022,4.200423],[8.92464,4.264525],[8.881957,4.4164],[8.908424,4.494507],[8.812022,4.555493],[8.707775,4.576174],[8.672474,4.479156],[8.502588,4.508237],[8.498833,4.61289],[8.527482,4.726633],[8.539079,4.793683],[8.629453,4.826164],[8.604893,4.884876],[8.699067,4.990426],[8.721836,5.0738],[8.816417,5.184829],[8.814024,5.29102],[8.838064,5.439343],[8.904513,5.567508],[8.822163,5.689244],[8.869446,5.793393],[8.841041,5.824076],[9.152337,6.090145],[9.213355,6.169007],[9.265648,6.184101],[9.353183,6.351203],[9.433845,6.315772],[9.466175,6.449895],[9.542637,6.447016],[9.597155,6.52829],[9.709181,6.516276],[9.796952,6.786587],[9.879952,6.769824],[9.972618,6.874411],[10.154898,7.03955],[10.217493,6.891087],[10.471073,6.915554],[10.543153,6.941086],[10.601228,7.075843],[10.681619,7.041804],[10.768116,6.954013],[10.845936,6.928679],[10.818045,6.85579],[10.910949,6.767983],[10.919593,6.708948],[11.104791,6.682182],[11.100942,6.541077],[11.429532,6.530623],[11.433358,6.599607],[11.520921,6.609883],[11.549453,6.658053],[11.574129,6.852613],[11.626058,6.972342],[11.71543,7.054757],[11.827908,7.061654],[11.804248,7.27753],[11.849199,7.372818],[11.950711,7.487838],[12.039431,7.523089],[12.022875,7.638774],[12.042321,7.731847],[12.096502,7.83629],[12.152971,7.886088],[12.221887,8],[12.206108,8.088713],[12.257716,8.170435],[12.2255,8.375038],[12.237027,8.428885],[12.411486,8.483343],[12.480326,8.622396],[12.588799,8.597906],[12.710772,8.686963],[12.713238,8.730866],[12.808941,8.789384],[12.790296,8.917268],[12.878328,9.031342],[12.878726,9.150407],[12.903889,9.232388],[12.90244,9.352381],[12.854769,9.384972],[13.043342,9.505481],[13.219328,9.542589],[13.247878,9.604168],[13.265844,9.754754],[13.297945,9.796989],[13.225207,9.887774],[13.250367,10],[13.315537,10.109896],[13.417121,10.132173],[13.509507,10.30734],[13.527234,10.462906],[13.553229,10.489459],[13.52994,10.599565],[13.608165,10.764787],[13.674624,10.858866],[13.694741,10.966833],[13.791492,11.006275],[13.884984,11.125968],[13.974329,11.302997],[14.099639,11.251909],[14.209159,11.28358],[14.248029,11.332401],[14.424033,11.409377],[14.451527,11.458627],[14.637239,11.528798],[14.640045,11.637633],[14.552478,11.717728],[14.610156,11.780306],[14.607347,11.869814],[14.657855,11.95501],[14.623024,12.017862],[14.678668,12.151195],[14.557986,12.241094],[14.471932,12.351458],[14.331361,12.369403],[14.23111,12.359889],[14.17308,12.405099],[14.183825,12.529738],[14.085435,13.078056],[14.45988,13.0745],[14.568749,12.891757],[14.551725,12.785794],[14.585725,12.747368],[14.706207,12.724774],[14.771552,12.631318],[14.831535,12.628499],[14.848965,12.456382],[14.910468,12.379228],[14.892467,12.167798],[14.933575,12.1139],[15.009346,12.112401],[15.061104,12.041591],[15.042094,11.898723],[15.116418,11.797949],[15.06564,11.710726],[15.097768,11.588992],[15.142291,11.557837],[15.058736,11.410053],[15.026545,11.278427],[15.037062,11.071456],[15.093485,10.866066],[15.069408,10.805375],[15.157494,10.622524],[15.145935,10.538351],[15.241114,10.470723],[15.310207,10.307446],[15.355698,10.290752],[15.45156,10.187865],[15.486175,10.118977],[15.649034,10.025911],[15.600526,9.960324],[15.435013,9.933312],[15.236097,9.996444],[15.101449,9.963863],[15.002891,10.001306],[14.835981,9.924493],[14.4847,10.010209],[14.236409,9.997405],[14.177625,9.900284],[14.024951,9.705729],[14.022067,9.647088],[14.135877,9.508166],[14.191053,9.478121],[14.250465,9.391513],[14.317408,9.366744],[14.385775,9.288627],[14.380765,9.196904],[14.753565,8.820168],[14.900419,8.806685],[15.034539,8.670677],[15.106936,8.673421],[15.207611,8.610803],[15.286306,8.309217],[15.39823,8.088196],[15.390954,8.040917],[15.510758,7.796198],[15.591115,7.776183],[15.570912,7.586626],[15.507478,7.527468],[15.429693,7.418141],[15.224754,7.239705],[15.22533,7.137473],[15.148658,7.027939],[15.144282,6.94663],[15.051518,6.761045],[14.970765,6.748919],[14.813369,6.409104],[14.815918,6.360363],[14.750682,6.261004],[14.561982,6.190113],[14.420097,6.03849],[14.493606,5.914398],[14.621317,5.896153],[14.627997,5.698392],[14.59562,5.599363],[14.631013,5.506598],[14.601842,5.399962],[14.532669,5.265588],[14.65262,5.21101],[14.686854,4.924556],[14.721906,4.800939],[14.724054,4.641287],[14.757865,4.581386],[14.887191,4.470376],[15.013889,4.418244],[15.093122,4.292163],[15.114417,4.118403],[15.146042,4.033412],[15.107087,3.945023],[15.247792,3.713966],[15.507288,3.440503],[15.805278,3.09342],[15.888252,3.096249],[15.969125,2.98757],[16.005121,3.000761],[16.073193,2.903398],[16.053303,2.794224],[16.08972,2.700339],[16.075626,2.465193],[16.148724,2.349572],[16.19199,2.220514]]]},"properties":{"name":"喀麦隆","name_en":"Cameroon","id":"CMR"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[22.570444,49.086723],[22.415945,49.105888],[22.045166,49.221779],[21.961695,49.349861],[21.638445,49.445915],[21.44375,49.413696],[21.282,49.45639],[21.132,49.434166],[20.977167,49.30936],[20.826834,49.330112],[20.727028,49.42178],[20.575027,49.377861],[20.482361,49.411804],[20.338833,49.404026],[20.218639,49.35014],[20.105055,49.252918],[20.081167,49.176277],[19.930416,49.232082],[19.843805,49.190418],[19.793556,49.401638],[19.634333,49.403694],[19.528,49.570721],[19.452833,49.60236],[19.372168,49.54361],[19.238832,49.512138],[19.199888,49.416889],[18.981083,49.398804],[18.968222,49.509834],[18.850611,49.521305],[18.80825,49.677029],[18.632444,49.717251],[18.574194,49.834332],[18.581694,49.909695],[18.415945,49.933166],[18.002001,50.017582],[17.833944,49.984501],[17.734667,50.100418],[17.593056,50.165028],[17.756111,50.204556],[17.652945,50.274944],[17.360584,50.277306],[17.184111,50.370193],[16.912167,50.445168],[16.9575,50.227974],[16.84314,50.208637],[16.71261,50.098972],[16.564333,50.162109],[16.555361,50.224804],[16.356472,50.377167],[16.279417,50.369194],[16.202334,50.448723],[16.392389,50.524612],[16.446222,50.580139],[16.34989,50.658196],[16.236666,50.672722],[16.187916,50.626251],[16.058195,50.615833],[15.957833,50.693611],[15.860695,50.674862],[15.815222,50.753555],[15.699083,50.739834],[15.421473,50.807556],[15.309556,50.865639],[15.294249,50.956085],[15.172361,51.020248],[14.987001,51.01236],[14.995,50.871223],[14.825222,50.874001],[14.892917,50.945389],[14.991028,51.120918],[15.028167,51.293388],[14.962278,51.35947],[14.962083,51.452915],[14.735778,51.525585],[14.753472,51.660557],[14.657889,51.733223],[14.587694,51.837028],[14.689695,51.901054],[14.757167,52.069027],[14.690166,52.105473],[14.690861,52.258141],[14.598639,52.274334],[14.533889,52.391251],[14.608889,52.46611],[14.638223,52.577332],[14.462444,52.663666],[14.350972,52.753918],[14.123,52.84111],[14.147861,52.963417],[14.342334,53.052055],[14.378389,53.201695],[14.450723,53.263557],[14.268666,53.696529],[14.545278,53.671081],[14.556945,53.75489],[14.801556,54.032112],[15.304361,54.150002],[15.485306,54.166306],[15.854584,54.243446],[16,54.252251],[16.328167,54.344276],[16.315611,54.372417],[16.461027,54.507111],[16.560472,54.54686],[16.878471,54.590027],[17.048861,54.667473],[17.278889,54.740528],[17.616972,54.774334],[17.980888,54.833363],[18.313555,54.83836],[18.518806,54.639668],[18.574028,54.442806],[18.724056,54.377888],[18.868999,54.347668],[19.380556,54.355915],[19.50725,54.326111],[19.659195,54.353222],[19.786055,54.436722],[20.2195,54.40797],[20.540501,54.371807],[21.471472,54.320694],[22.571277,54.351082],[22.793434,54.368225],[22.854555,54.425472],[22.99572,54.385845],[23.049,54.312363],[23.147833,54.311085],[23.356083,54.230389],[23.488667,54.151833],[23.505945,53.966583],[23.610945,53.742443],[23.638222,53.583557],[23.778639,53.306305],[23.920221,53.158249],[23.876499,53.083889],[23.938612,53.018776],[23.924542,52.669956],[23.562639,52.606277],[23.407389,52.548389],[23.290695,52.446804],[23.176889,52.282585],[23.213833,52.2215],[23.453388,52.184113],[23.654417,52.077221],[23.696112,51.999054],[23.612417,51.873695],[23.643389,51.804112],[23.53739,51.74511],[23.545639,51.605999],[23.630833,51.496861],[23.706194,51.404446],[23.640944,51.321999],[23.74614,51.214027],[23.876499,51.136776],[23.927305,51.009804],[24.063333,50.895084],[23.964777,50.800777],[24.108862,50.635918],[24.060457,50.469502],[23.937056,50.412277],[23.821222,50.420361],[23.720862,50.386696],[23.601833,50.275112],[23.292278,50.095528],[23.022751,49.86689],[22.905695,49.790832],[22.680416,49.566776],[22.671084,49.523804],[22.758917,49.285805],[22.733805,49.231834],[22.873278,49.078667],[22.696777,49.041973],[22.570444,49.086723]]],[[[14.224361,53.926529],[14.398889,53.915833],[14.684278,54.009167],[14.692306,53.939026],[14.613139,53.831749],[14.386722,53.866974],[14.340028,53.811279],[14.212889,53.864777],[14.224361,53.926529]]]]},"properties":{"name":"波兰","name_en":"POLAND","id":"POL"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[48.431473,28.535639],[47.704945,28.524611],[47.607334,28.662945],[47.592529,28.824612],[47.460556,29.000444],[46.556461,29.102682],[46.683662,29.221704],[46.866432,29.437176],[46.998112,29.66345],[47.006824,29.722107],[47.172604,30.017468],[47.371307,30.103699],[47.70768,30.103699],[47.95908,30.003527],[48.013943,29.983305],[48.016472,29.848083],[48.190472,29.543138],[47.975807,29.57],[47.859859,29.510166],[47.758694,29.41025],[47.892418,29.325388],[47.987221,29.388722],[48.094696,29.327417],[48.092056,29.267221],[48.188221,28.952917],[48.286724,28.880251],[48.283611,28.803499],[48.361611,28.738695],[48.390583,28.603361],[48.431473,28.535639]]],[[[48.067165,29.789417],[48.205971,29.961555],[48.377304,29.786722],[48.366196,29.70525],[48.224777,29.57675],[48.067165,29.789417]]]]},"properties":{"name":"科威特","name_en":"KUWAIT","id":"KWT"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-16.560143,13.588785],[-15.831667,13.584927],[-15.481128,13.587279],[-15.457903,13.681431],[-15.38122,13.75818],[-15.243262,13.752293],[-15.071154,13.82657],[-14.893263,13.792989],[-14.800082,13.721027],[-14.788958,13.661844],[-14.719204,13.61417],[-14.616471,13.654],[-14.532992,13.635179],[-14.471431,13.5442],[-14.34828,13.460607],[-14.247162,13.475917],[-14.084866,13.55295],[-13.964473,13.573399],[-13.878471,13.529345],[-13.799096,13.437148],[-13.841396,13.339051],[-14.002965,13.288833],[-14.095657,13.281738],[-14.141988,13.221724],[-14.244774,13.216782],[-14.409445,13.244022],[-14.463823,13.295171],[-14.580648,13.341462],[-14.659721,13.334338],[-14.768794,13.413065],[-14.929571,13.452005],[-15.140286,13.577108],[-15.205759,13.520348],[-15.235913,13.413007],[-15.296222,13.36043],[-15.383827,13.343554],[-15.510425,13.38702],[-15.603608,13.337339],[-15.670901,13.358396],[-15.80781,13.341087],[-15.812263,13.1591],[-16.68841,13.163771],[-16.755833,13.064252],[-16.797771,13.162663],[-16.824293,13.329612],[-16.732718,13.451599],[-16.679859,13.488675],[-16.612789,13.426531],[-16.555964,13.297029],[-16.455183,13.268905],[-16.415609,13.326402],[-16.514952,13.364683],[-16.552281,13.476944],[-16.560143,13.588785]]]},"properties":{"name":"冈比亚","name_en":"Gambia","id":"GMB"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[165,-21.31875],[164.90303,-21.284166],[164.827301,-21.190916],[164.819504,-21.107334],[164.704117,-21.066917],[164.649307,-20.947666],[164.45314,-20.849194],[164.381302,-20.767139],[164.292053,-20.587278],[164.177368,-20.508444],[164.170303,-20.350611],[164.052918,-20.297306],[164.053452,-20.157084],[164.122604,-20.18325],[164.239838,-20.287582],[164.348587,-20.243668],[164.497116,-20.304472],[164.589035,-20.407528],[164.729782,-20.482973],[164.848663,-20.628666],[165.112808,-20.7605],[165.257782,-20.803667],[165.246811,-20.854918],[165.328781,-20.941],[165.387558,-20.942612],[165.397782,-21.057611],[165.491638,-21.140944],[165.611221,-21.206917],[165.622131,-21.277445],[165.753387,-21.303833],[165.841644,-21.376444],[165.876938,-21.358889],[166.052368,-21.470861],[166.236923,-21.617556],[166.346695,-21.654112],[166.465271,-21.784584],[166.653366,-21.947779],[166.748306,-22.010778],[166.851975,-22.033417],[166.927276,-22.08939],[166.938782,-22.14925],[167.021301,-22.24275],[166.993164,-22.342083],[166.933701,-22.3825],[166.828384,-22.316166],[166.79744,-22.377667],[166.545777,-22.244055],[166.431412,-22.292778],[166.411468,-22.179611],[166.345001,-22.209555],[166.25769,-22.175444],[166.14859,-22.089277],[166.139084,-21.972944],[166.038422,-21.907139],[165.980164,-21.959055],[165.853439,-21.867306],[165.723144,-21.747168],[165.509247,-21.697027],[165.477112,-21.637417],[165.276779,-21.576084],[165.252502,-21.51461],[165.138947,-21.460417],[165,-21.31875]]],[[[167.262421,-21.109333],[167.141892,-21.085417],[167.047912,-20.984112],[167.170883,-20.830084],[167.085663,-20.764723],[167.195114,-20.674194],[167.294861,-20.744583],[167.251801,-20.900612],[167.376785,-20.964333],[167.449616,-21.071444],[167.406921,-21.166277],[167.336304,-21.186306],[167.262421,-21.109333]]],[[[167.948334,-21.614305],[167.845215,-21.590778],[167.833832,-21.492111],[167.872833,-21.396389],[167.951477,-21.381639],[168.020172,-21.464138],[168.128586,-21.44525],[168.11023,-21.630083],[167.976578,-21.659361],[167.948334,-21.614305]]],[[[167.474884,-22.679112],[167.413864,-22.652584],[167.425644,-22.539305],[167.532089,-22.593111],[167.474884,-22.679112]]]]},"properties":{"name":"新喀里多尼亚","name_en":"NEW CALEDONIA","id":"NCL"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[11.205009,-3.978806],[11.017994,-3.830774],[10.994864,-3.724858],[10.864129,-3.587805],[10.642764,-3.434804],[10.65699,-3.343266],[10.532212,-3.244842],[10.523156,-3.208917],[10.286597,-2.989744],[9.876531,-2.682169],[9.860022,-2.628727],[9.624951,-2.408721],[9.546184,-2.200428],[9.449128,-2.108673],[9.290988,-1.923706],[9.263036,-1.781682],[9.205812,-1.59377],[8.992579,-1.30141],[8.983242,-1.199071],[8.894306,-1.025076],[8.787336,-0.857206],[8.700375,-0.6697],[8.775213,-0.67953],[8.800435,-0.795237],[8.851887,-0.826763],[8.891425,-0.726565],[9.002991,-0.649035],[9.040855,-0.705057],[9.257222,-0.467224],[9.300757,-0.377169],[9.302874,-0.206778],[9.324316,-0.156363],[9.345569,0.060281],[9.30483,0.307362],[9.360588,0.344549],[9.391437,0.224133],[9.458931,0.180086],[9.627202,0.152932],[9.751247,0.112738],[9.793235,0.173943],[9.685844,0.213287],[9.573502,0.290941],[9.510312,0.284738],[9.376354,0.506039],[9.310792,0.517722],[9.310704,0.59282],[9.517715,0.663441],[9.611872,0.520474],[9.618813,0.734328],[9.554084,0.937856],[9.57987,1.002282],[9.665299,1.061179],[9.736285,1.069049],[9.942615,0.925412],[9.996741,0.997639],[10.835307,0.997232],[11.334782,0.999263],[11.334928,1.412115],[11.334608,2.173887],[11.377554,2.260351],[11.474017,2.303949],[11.612197,2.299752],[11.699555,2.322156],[11.750165,2.281044],[11.9812,2.291359],[12.241785,2.24988],[12.326862,2.276733],[12.689677,2.242344],[12.750067,2.223476],[13.099822,2.246087],[13.162744,2.283986],[13.251954,2.273338],[13.298964,2.170563],[13.294373,2.061286],[13.209714,1.981802],[13.159587,1.875617],[13.201394,1.806844],[13.137106,1.701831],[13.138198,1.581605],[13.25261,1.405451],[13.257357,1.316044],[13.197707,1.286906],[13.195618,1.217966],[13.323568,1.235781],[13.375012,1.290885],[13.556646,1.278734],[13.665024,1.352596],[13.759167,1.352923],[13.813872,1.428686],[13.99942,1.420106],[14.066544,1.380683],[14.187221,1.39562],[14.278986,1.341193],[14.295027,1.24119],[14.396409,1.093672],[14.445254,0.960528],[14.497989,0.928649],[14.464081,0.789363],[14.368041,0.698515],[14.384536,0.637416],[14.222796,0.536392],[14.119596,0.558322],[14.051319,0.407082],[13.989514,0.376217],[13.888682,0.202671],[13.92782,0.120752],[13.926809,-0.083476],[13.885629,-0.17202],[13.926514,-0.242599],[14.018668,-0.235604],[14.162808,-0.329902],[14.17301,-0.423109],[14.400787,-0.477086],[14.463206,-0.551707],[14.49872,-0.680893],[14.410248,-0.908969],[14.482974,-1.283519],[14.452272,-1.365026],[14.501671,-1.425277],[14.462571,-1.469814],[14.473687,-1.552535],[14.377006,-1.601684],[14.451238,-1.692426],[14.420771,-1.728656],[14.398568,-1.875691],[14.257282,-1.983206],[14.253233,-2.105577],[14.15641,-2.194279],[14.216945,-2.284899],[14.102895,-2.473967],[13.998001,-2.446524],[13.922575,-2.464971],[13.868412,-2.420535],[13.916443,-2.358716],[13.813877,-2.153441],[13.748805,-2.120313],[13.506066,-2.429549],[13.374034,-2.420743],[13.209987,-2.339313],[13.166412,-2.378764],[13.040925,-2.333772],[12.998681,-2.195176],[12.88521,-2.099488],[12.841586,-1.939564],[12.743326,-1.868949],[12.65008,-1.882021],[12.571838,-1.858259],[12.520722,-1.90136],[12.444075,-1.874593],[12.475246,-2.018962],[12.519983,-2.086727],[12.526666,-2.318794],[12.468325,-2.421265],[12.17664,-2.421277],[12.092253,-2.439337],[11.996698,-2.339856],[11.820854,-2.387438],[11.775189,-2.456493],[11.697763,-2.372831],[11.650922,-2.421406],[11.636162,-2.520795],[11.702683,-2.662912],[11.641395,-2.698162],[11.616086,-2.784225],[11.68847,-2.835703],[11.796538,-2.861373],[12.066581,-2.969432],[12.013502,-3.135163],[11.947385,-3.171827],[12.001761,-3.241942],[12.04545,-3.352566],[11.958836,-3.478309],[11.898181,-3.510824],[11.877887,-3.576887],[11.947833,-3.626282],[11.884314,-3.747393],[11.696327,-3.670717],[11.631604,-3.570211],[11.529373,-3.512757],[11.458425,-3.583903],[11.334277,-3.613878],[11.249577,-3.718149],[11.251471,-3.811805],[11.205009,-3.978806]]]},"properties":{"name":"加蓬","name_en":"GABON","id":"GAB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.29467,19.263029],[-81.272804,19.346102],[-81.096886,19.351603],[-81.117958,19.294092],[-81.231628,19.295073],[-81.29467,19.263029]]]},"properties":{"name":"开曼群岛","name_en":"CAYMAN ISLANDS","id":"CYM"}}, + {"type":"Feature","geometry":null,"properties":{"name":"争议地区","name_en":"Area Under Dispute","id":"A"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[27.322111,57.548389],[27.091667,57.570305],[26.909416,57.641277],[26.604834,57.520222],[26.276861,57.603222],[26.185167,57.73],[26.021361,57.779556],[26.049917,57.848526],[25.859056,57.861916],[25.56864,57.970585],[25.301695,57.999943],[25.117361,58.081806],[25.002916,58.008335],[24.700806,57.950474],[24.591499,57.959389],[24.356222,57.87814],[24.482027,58.075974],[24.485611,58.256611],[24.567112,58.344665],[24.415472,58.390057],[24.304945,58.378113],[24.26375,58.275528],[24.110222,58.241085],[24.034166,58.30225],[23.738251,58.354137],[23.695973,58.486805],[23.533167,58.612804],[23.502806,58.693085],[23.574167,58.771641],[23.463806,58.892082],[23.559029,58.94825],[23.427833,59.011196],[23.546917,59.095554],[23.51786,59.215916],[23.826889,59.287918],[23.950916,59.270363],[24.212305,59.340832],[24.223223,59.39489],[24.363333,59.475113],[24.660555,59.431583],[24.925806,59.501389],[25.196388,59.524166],[25.436972,59.491638],[25.652666,59.571445],[25.828861,59.565807],[26.02714,59.627583],[26.269222,59.585998],[26.508751,59.520695],[26.617695,59.55378],[26.971666,59.436974],[27.387138,59.45039],[27.800751,59.397751],[27.981582,59.424278],[28.048889,59.470806],[28.195778,59.400696],[28.117361,59.294224],[27.970722,59.27486],[27.808445,59.129696],[27.742027,58.998028],[27.548166,58.861668],[27.476723,58.648224],[27.437055,58.380474],[27.490667,58.218498],[27.614889,58.079193],[27.625334,58.005665],[27.826889,57.858501],[27.559473,57.830502],[27.501305,57.792557],[27.322111,57.548389]]],[[[21.856806,58.313252],[22,58.349224],[21.916834,58.455917],[21.92075,58.517471],[22.135389,58.501667],[22.283806,58.56778],[22.755667,58.580582],[22.885111,58.627609],[23.13525,58.557972],[23.264389,58.498249],[22.960222,58.360611],[22.918778,58.309029],[22.733749,58.280777],[22.634028,58.230278],[22.362972,58.221722],[22.265638,58.186111],[22.24939,58.088554],[22.153028,57.965389],[21.985416,57.971943],[22.084444,58.076805],[22.197001,58.12875],[21.856806,58.313252]]],[[[22.569695,58.688499],[22.469166,58.752888],[22.397917,58.936974],[22.587278,59.091026],[22.700388,59.071918],[22.731972,59.004944],[22.862278,59.00264],[23.030889,58.897499],[22.667667,58.70264],[22.569695,58.688499]]],[[[23.410944,58.555637],[23.372749,58.530556],[23.073778,58.603306],[23.204889,58.68475],[23.358194,58.65089],[23.410944,58.555637]]],[[[23.127277,59.027195],[23.341167,59.035999],[23.302723,58.974251],[23.169527,58.966305],[23.127277,59.027195]]]]},"properties":{"name":"爱沙尼亚","name_en":"ESTONIA","id":"EST"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[33.209007,-14.003616],[33.15173,-13.934807],[33.069378,-13.990053],[32.942959,-13.927941],[32.936573,-13.873415],[32.861473,-13.790976],[32.84264,-13.708526],[32.786541,-13.640239],[32.679973,-13.617933],[32.844517,-13.514513],[32.843071,-13.463001],[32.91544,-13.407725],[32.945427,-13.273],[33.016602,-13.211015],[32.974564,-13.123769],[33.025978,-12.910769],[32.957333,-12.842624],[32.960369,-12.756177],[33.056171,-12.611571],[33.198849,-12.611466],[33.270813,-12.536991],[33.360645,-12.553227],[33.471516,-12.424901],[33.543228,-12.372431],[33.454105,-12.322549],[33.365959,-12.348108],[33.31115,-12.249538],[33.309364,-12.166266],[33.260811,-12.118325],[33.308598,-12.001116],[33.333542,-11.798875],[33.311073,-11.595398],[33.248749,-11.528501],[33.226799,-11.430135],[33.376854,-11.237944],[33.40601,-11.161081],[33.331589,-11.06745],[33.307869,-10.991165],[33.334556,-10.828516],[33.442596,-10.820702],[33.53136,-10.765588],[33.602238,-10.656764],[33.701466,-10.585332],[33.618736,-10.448748],[33.576782,-10.428503],[33.534828,-10.330074],[33.55727,-10.22444],[33.338703,-10.088345],[33.318794,-10.045219],[33.381642,-9.906548],[33.345737,-9.827463],[33.289505,-9.810075],[33.225922,-9.716538],[33.195644,-9.605535],[33.005142,-9.640652],[33.026787,-9.507283],[32.947739,-9.486663],[32.956554,-9.400114],[32.990806,-9.368879],[33.079613,-9.449467],[33.210243,-9.508881],[33.329735,-9.491529],[33.440281,-9.612694],[33.519829,-9.626969],[33.592926,-9.581412],[33.684872,-9.608034],[33.763893,-9.582588],[33.921345,-9.709304],[33.967117,-9.62705],[33.96476,-9.52838],[34.036301,-9.49193],[34.306023,-9.740206],[34.344544,-9.8065],[34.501526,-9.976361],[34.517357,-10.097792],[34.55476,-10.188474],[34.56984,-10.307633],[34.541611,-10.415602],[34.555122,-10.549005],[34.651936,-10.757631],[34.636486,-10.94684],[34.604225,-10.989516],[34.628342,-11.102043],[34.686054,-11.141225],[34.804882,-11.321221],[34.882683,-11.3552],[34.925709,-11.41508],[34.962151,-11.571553],[34.947376,-11.815064],[34.906563,-11.903762],[34.866272,-12.064438],[34.695972,-12.187757],[34.72356,-12.280972],[34.699219,-12.456377],[34.753784,-12.542988],[34.771366,-12.631105],[34.820488,-12.703393],[34.760479,-12.862642],[34.751781,-12.963335],[34.816933,-13.091103],[34.793121,-13.333145],[34.861603,-13.382496],[34.875233,-13.486807],[35.082271,-13.687878],[35.23053,-13.881433],[35.483948,-14.167406],[35.528629,-14.264556],[35.869656,-14.669204],[35.870037,-14.890388],[35.916821,-14.891189],[35.789688,-15.166123],[35.854511,-15.432499],[35.802631,-15.975962],[35.818565,-16.024241],[35.709866,-16.091553],[35.554767,-16.134891],[35.403915,-16.128761],[35.2934,-16.237108],[35.262173,-16.470341],[35.148834,-16.557974],[35.167339,-16.620289],[35.285282,-16.715416],[35.312168,-16.827885],[35.26704,-16.944073],[35.303879,-16.98398],[35.293774,-17.124269],[35.094254,-17.123005],[35.058334,-17.00112],[35.166744,-16.93623],[35.155979,-16.831892],[35.039291,-16.822927],[34.983501,-16.74659],[34.924374,-16.74436],[34.853153,-16.617817],[34.778893,-16.57844],[34.757626,-16.510853],[34.687359,-16.499638],[34.585129,-16.39789],[34.573208,-16.321091],[34.423492,-16.254019],[34.39254,-16.127726],[34.437485,-16.061609],[34.36269,-15.967202],[34.254238,-15.907686],[34.251346,-15.848262],[34.302605,-15.758491],[34.365009,-15.734585],[34.453739,-15.606327],[34.426125,-15.474521],[34.504887,-15.409764],[34.523964,-15.348291],[34.597935,-15.281423],[34.572822,-15.083306],[34.615017,-15.006626],[34.561134,-14.890083],[34.578541,-14.809967],[34.515526,-14.684415],[34.53368,-14.588667],[34.456703,-14.509684],[34.387875,-14.399677],[34.093124,-14.450161],[34.074253,-14.485036],[33.937141,-14.46537],[33.813633,-14.541763],[33.729439,-14.488043],[33.713192,-14.571813],[33.629875,-14.531624],[33.544788,-14.43557],[33.448311,-14.36147],[33.374775,-14.21096],[33.294415,-14.141033],[33.295361,-14.036242],[33.209007,-14.003616]]]},"properties":{"name":"马拉维","name_en":"Malawi","id":"MWI"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-8.799806,41.909584],[-8.886806,41.921638],[-8.893778,42.108418],[-8.807111,42.18922],[-8.635944,42.290669],[-8.818916,42.286446],[-8.706722,42.398277],[-8.8315,42.386166],[-8.898945,42.478222],[-8.763111,42.605862],[-8.854,42.613251],[-9.026305,42.547417],[-9.070111,42.595085],[-9.026277,42.69714],[-8.948972,42.751305],[-9.008805,42.795666],[-9.084389,42.739223],[-9.142361,42.80011],[-9.124556,42.905335],[-9.290778,42.927418],[-9.273639,43.043194],[-9.119583,43.199028],[-9.038972,43.190556],[-8.843528,43.337166],[-8.704472,43.288723],[-8.506473,43.327972],[-8.434083,43.380474],[-8.342889,43.347973],[-8.290222,43.435974],[-8.320027,43.523777],[-8.099334,43.650276],[-8.05375,43.71114],[-7.913389,43.746307],[-7.784333,43.73772],[-7.653667,43.782196],[-7.547583,43.731083],[-7.349805,43.673637],[-7.285889,43.595943],[-7.203833,43.563946],[-7.034666,43.552582],[-6.935528,43.575249],[-6.492667,43.55225],[-6.355833,43.557278],[-6.23075,43.597279],[-6.068389,43.565971],[-5.908694,43.626667],[-5.775056,43.628445],[-5.687833,43.547832],[-5.407694,43.557583],[-5.295083,43.536945],[-5.210277,43.476276],[-5.122194,43.487446],[-4.766778,43.433498],[-4.611778,43.397694],[-4.274083,43.392612],[-3.926639,43.473026],[-3.723361,43.471279],[-3.556528,43.511776],[-3.428917,43.413971],[-3.221583,43.397083],[-3.173194,43.357418],[-3.026583,43.379112],[-2.944389,43.431526],[-2.734056,43.429279],[-2.349639,43.301613],[-2.171833,43.289166],[-1.882722,43.350971],[-1.788528,43.355499],[-1.624306,43.262196],[-1.501389,43.290638],[-1.386278,43.237583],[-1.427694,43.123165],[-1.41825,43.046471],[-1.305833,43.077694],[-1.108083,43.025223],[-0.931889,42.95739],[-0.76725,42.972111],[-0.561222,42.791222],[-0.290222,42.846584],[-0.148945,42.808998],[-0.107139,42.735668],[-0.013778,42.694],[0.181917,42.737083],[0.288722,42.676582],[0.353778,42.721359],[0.439889,42.696388],[0.672306,42.687305],[0.647333,42.791332],[0.703,42.867474],[0.935583,42.793583],[1.086056,42.78389],[1.140972,42.725113],[1.347944,42.720749],[1.439916,42.606499],[1.452528,42.448277],[1.515417,42.435081],[1.7235,42.50386],[1.945639,42.438667],[1.97225,42.377998],[2.070028,42.363609],[2.150667,42.426056],[2.31,42.430363],[2.497555,42.34536],[2.659167,42.34264],[2.703444,42.416832],[2.849611,42.460945],[3.034139,42.483223],[3.164806,42.440807],[3.159444,42.371056],[3.301028,42.321388],[3.270694,42.263168],[3.120889,42.24828],[3.114611,42.146416],[3.203083,42.077026],[3.200667,41.898193],[2.909722,41.708973],[2.7735,41.649612],[2.475667,41.551529],[2.256639,41.454445],[2.118556,41.297333],[1.676778,41.201416],[1.467861,41.168415],[1.389806,41.133694],[1.219083,41.106277],[0.981055,41.039833],[0.709361,40.807251],[0.887667,40.713444],[0.75125,40.644085],[0.610889,40.628666],[0.541972,40.57439],[0.40925,40.362389],[0.266055,40.219276],[0.194361,40.176666],[0.146195,40.088028],[0.049111,40.036888],[0.005,39.918724],[-0.177583,39.72361],[-0.317028,39.506222],[-0.311694,39.3615],[-0.214028,39.186584],[-0.23375,39.1535],[-0.136944,38.975277],[-0.0175,38.874638],[0.194083,38.805027],[0.2315,38.744026],[0.028639,38.623165],[-0.022555,38.617027],[-0.09725,38.524223],[-0.274833,38.492695],[-0.38875,38.430138],[-0.503333,38.33036],[-0.520778,38.190613],[-0.640139,38.127888],[-0.657806,37.977333],[-0.746639,37.901249],[-0.804,37.772472],[-0.858917,37.719276],[-0.7325,37.601223],[-0.924972,37.552918],[-1.070528,37.584057],[-1.121055,37.55225],[-1.320778,37.559082],[-1.480111,37.443138],[-1.680111,37.348526],[-1.799611,37.223],[-1.853139,37.070499],[-1.940917,36.930473],[-2.124139,36.737583],[-2.192445,36.725529],[-2.246445,36.789555],[-2.356944,36.846916],[-2.567361,36.81525],[-2.625639,36.724083],[-2.707944,36.691055],[-2.852472,36.701279],[-2.914305,36.753971],[-3.252111,36.757584],[-3.470667,36.70089],[-3.604583,36.750694],[-3.820389,36.755806],[-3.954806,36.733196],[-4.065084,36.753918],[-4.177194,36.716694],[-4.427861,36.709862],[-4.511778,36.598221],[-4.698611,36.493526],[-4.869611,36.50864],[-5.171861,36.416527],[-5.225611,36.3675],[-5.340028,36.159752],[-5.426556,36.177528],[-5.425056,36.075668],[-5.610222,36.014973],[-5.648305,36.055],[-5.812528,36.093029],[-5.929917,36.189194],[-6.03075,36.182724],[-6.08625,36.271862],[-6.211333,36.396889],[-6.164083,36.514305],[-6.286111,36.619167],[-6.358639,36.620224],[-6.433861,36.725334],[-6.382056,36.807888],[-6.433195,36.906918],[-6.633778,37.050751],[-6.892334,37.163666],[-7.071361,37.215584],[-7.402861,37.192554],[-7.457417,37.410221],[-7.464361,37.488888],[-7.520833,37.557221],[-7.453028,37.647083],[-7.415916,37.757195],[-7.274389,37.878834],[-7.250833,37.986168],[-6.993639,38.02811],[-6.933861,38.211193],[-7.082611,38.176193],[-7.142722,38.268444],[-7.327944,38.44136],[-7.240889,38.623749],[-7.254806,38.718834],[-7.08475,38.821304],[-6.953556,39.022583],[-7.035722,39.116806],[-7.144778,39.11628],[-7.144167,39.1745],[-7.237778,39.213638],[-7.230167,39.276695],[-7.329778,39.385223],[-7.300611,39.461082],[-7.371917,39.4855],[-7.504695,39.609554],[-7.466028,39.666054],[-7.313527,39.647667],[-7.251889,39.666248],[-7.012056,39.672054],[-6.9835,39.804668],[-6.902555,39.867363],[-6.863889,40.013],[-6.941222,40.112999],[-7.009139,40.137001],[-7.0055,40.221916],[-6.857945,40.266945],[-6.789694,40.331249],[-6.840389,40.447056],[-6.795055,40.512249],[-6.837778,40.568554],[-6.793194,40.641277],[-6.827194,40.753166],[-6.804611,40.878029],[-6.926333,41.018776],[-6.823083,41.037224],[-6.668917,41.221863],[-6.570472,41.237667],[-6.428389,41.315556],[-6.308111,41.424137],[-6.182694,41.578388],[-6.273417,41.655277],[-6.545166,41.690861],[-6.517333,41.869251],[-6.589333,41.947418],[-6.882722,41.938526],[-7.051139,41.94886],[-7.144806,41.989807],[-7.191723,41.88636],[-7.396111,41.819473],[-7.494027,41.871971],[-7.5665,41.830891],[-7.684306,41.903446],[-7.835667,41.862026],[-7.969333,41.869472],[-8.095388,41.801445],[-8.211861,41.908138],[-8.081445,42.016418],[-8.187333,42.142613],[-8.3315,42.090305],[-8.627556,42.048443],[-8.799806,41.909584]]],[[[3.114583,39.816277],[3.235861,39.731278],[3.328806,39.76197],[3.449083,39.726055],[3.371778,39.553555],[3.290889,39.490971],[3.237333,39.373001],[3.0655,39.265915],[2.973028,39.353973],[2.789306,39.362888],[2.742417,39.40086],[2.733361,39.521526],[2.628667,39.560055],[2.479528,39.472832],[2.344361,39.583305],[2.774278,39.85339],[3.035334,39.936501],[3.114583,39.816277]]],[[[4.283083,39.823082],[4.23,39.819946],[4.013417,39.925972],[3.812667,39.930248],[3.822167,40.056721],[4.082194,40.071724],[4.211583,40.015972],[4.311333,39.87664],[4.283083,39.823082]]],[[[1.402722,38.849415],[1.216778,38.903194],[1.230028,38.974304],[1.357889,39.073696],[1.50625,39.10611],[1.595083,39.098557],[1.618583,39.036167],[1.533361,38.980167],[1.402722,38.849415]]],[[[-16.266623,28.568659],[-16.13024,28.574087],[-16.123396,28.52717],[-16.218563,28.482964],[-16.362289,28.349098],[-16.35446,28.306574],[-16.425375,28.146135],[-16.540993,28.021023],[-16.695786,27.997198],[-16.785625,28.129351],[-16.834883,28.245356],[-16.914452,28.342113],[-16.607679,28.386536],[-16.466742,28.438604],[-16.383495,28.534594],[-16.266623,28.568659]]],[[[-13.82958,28.527996],[-13.843457,28.408817],[-13.94748,28.223337],[-14.212579,28.163637],[-14.324322,28.043451],[-14.366428,28.11628],[-14.218111,28.215933],[-14.198859,28.323545],[-14.148138,28.431646],[-14.100198,28.468077],[-14.029692,28.591894],[-14.015165,28.702644],[-13.940806,28.745865],[-13.837704,28.723801],[-13.82958,28.527996]]],[[[-15.514183,28.143606],[-15.414102,28.10397],[-15.375981,27.93976],[-15.432926,27.805353],[-15.568169,27.756735],[-15.681385,27.750662],[-15.7842,27.831516],[-15.828309,27.906628],[-15.821465,28.009878],[-15.718898,28.068434],[-15.703558,28.158064],[-15.514183,28.143606]]],[[[-13.422855,29.167294],[-13.462631,29.015907],[-13.516467,28.970274],[-13.716294,28.907648],[-13.78708,28.848505],[-13.829401,28.921709],[-13.824868,29.007118],[-13.747794,29.075489],[-13.586867,29.132717],[-13.47279,29.22908],[-13.422855,29.167294]]],[[[-17.980169,28.8058],[-17.901106,28.849297],[-17.779631,28.835394],[-17.721861,28.739061],[-17.763157,28.671259],[-17.758684,28.559309],[-17.833273,28.447365],[-18.002552,28.758375],[-17.980169,28.8058]]],[[[-17.263147,28.019314],[-17.337173,28.102047],[-17.308138,28.192091],[-17.200901,28.195862],[-17.094524,28.120508],[-17.180271,28.019613],[-17.263147,28.019314]]],[[[-17.974773,27.829758],[-17.89403,27.837284],[-17.981571,27.639282],[-18.046799,27.692732],[-18.169638,27.723083],[-18.153951,27.767792],[-18.041931,27.765293],[-17.974773,27.829758]]]]},"properties":{"name":"西班牙","name_en":"SPAIN","id":"ESP"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[48.483883,29.976969],[48.399307,29.928249],[48.209835,30.032972],[48.094612,30.042444],[47.95908,30.003527],[47.70768,30.103699],[47.371307,30.103699],[47.172604,30.017468],[47.006824,29.722107],[46.998112,29.66345],[46.866432,29.437176],[46.683662,29.221704],[46.556461,29.102682],[46.426117,29.061209],[45.667633,29.125029],[44.721935,29.198486],[44.285503,29.524055],[43.626511,30.009001],[42.948715,30.499443],[42.08564,31.111668],[41.440872,31.373175],[40.413376,31.948038],[39.201004,32.154324],[39.278111,32.176576],[39.351556,32.244066],[39.3291,32.347906],[39.278235,32.372718],[39.08646,32.320191],[39.017084,32.453483],[39.085998,32.501499],[38.789616,33.37125],[39.499912,33.739162],[40.014939,34.001919],[40.667431,34.333775],[40.958046,34.382568],[41.001579,34.420136],[41.12508,34.660854],[41.230854,34.781715],[41.206741,35.142288],[41.216598,35.249428],[41.261246,35.37109],[41.262325,35.474613],[41.369408,35.624329],[41.366165,35.840164],[41.253185,36.057495],[41.2813,36.350033],[41.396603,36.521912],[41.813816,36.587322],[41.876636,36.631981],[42.365383,37.062817],[42.363182,37.119049],[42.584469,37.169537],[42.659473,37.271408],[42.789223,37.380245],[42.963463,37.315578],[43.022503,37.354324],[43.152443,37.371407],[43.327316,37.326183],[43.497994,37.242538],[43.916588,37.223495],[44.018486,37.327789],[44.12434,37.323002],[44.269226,37.243797],[44.276474,37.16468],[44.185093,37.098049],[44.267849,36.976929],[44.545029,37.121315],[44.625767,37.190247],[44.785984,37.149895],[44.805958,37.046024],[44.900314,37.022255],[44.882393,36.954742],[44.942162,36.784737],[45.063648,36.690651],[45.028187,36.606369],[45.077896,36.431511],[45.271935,36.392941],[45.261311,36.303757],[45.304611,36.274082],[45.349995,36.110004],[45.341816,36.008949],[45.550285,36.001244],[45.667145,35.925526],[45.756561,35.808502],[45.895645,35.839081],[45.955498,35.823196],[46.079788,35.860252],[46.212166,35.795418],[46.293785,35.836807],[46.347912,35.788319],[46.288277,35.734028],[46.166203,35.689564],[46.035828,35.705196],[45.986301,35.495998],[46.189339,35.21978],[46.159702,35.088554],[45.96846,35.074341],[45.874698,35.033764],[45.897751,34.959206],[45.865498,34.89595],[45.704102,34.790398],[45.702236,34.694572],[45.738312,34.588512],[45.605442,34.549549],[45.538193,34.601097],[45.466599,34.38372],[45.561871,34.331779],[45.5816,34.146217],[45.474007,34.077274],[45.489647,33.949272],[45.552635,33.889709],[45.639931,33.742882],[45.719105,33.662601],[45.87114,33.635273],[46.006557,33.508701],[46.080501,33.352596],[46.191109,33.263409],[46.186466,33.171791],[46.041801,33.09565],[46.156956,33.073341],[46.097405,32.981209],[46.173554,32.953419],[46.312451,32.968979],[46.480782,32.916199],[46.622738,32.822308],[46.720791,32.786476],[46.887184,32.632034],[47.168301,32.457302],[47.283306,32.497593],[47.392735,32.466083],[47.466229,32.379608],[47.462196,32.31591],[47.567551,32.192177],[47.5947,32.124798],[47.709572,32.008961],[47.733486,31.9387],[47.810123,31.882671],[47.865818,31.783682],[47.683044,31.394873],[47.681652,30.999229],[48.032211,30.997009],[48.026402,30.482599],[48.165577,30.424028],[48.192463,30.333328],[48.268608,30.338013],[48.412003,30.196175],[48.387306,30.112728],[48.483883,29.976969]]]},"properties":{"name":"伊拉克","name_en":"IRAQ","id":"IRQ"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.128662,13.738269],[-90.109436,13.834014],[-89.893455,14.037513],[-89.77652,14.03062],[-89.661186,14.183924],[-89.519432,14.223638],[-89.572342,14.405725],[-89.349945,14.421761],[-89.176208,14.343449],[-89.092484,14.346227],[-88.956139,14.202767],[-88.864639,14.178296],[-88.819939,14.083601],[-88.755898,14.084363],[-88.687706,14.015684],[-88.628532,14.019085],[-88.497643,13.956601],[-88.494804,13.858118],[-88.353256,13.86536],[-88.206673,13.936996],[-88.064247,13.951336],[-88.015617,13.886432],[-87.799873,13.889174],[-87.710319,13.809786],[-87.791412,13.518681],[-87.722595,13.498605],[-87.7257,13.437925],[-87.818245,13.401186],[-87.868996,13.35279],[-87.778419,13.285122],[-87.926544,13.19375],[-87.936875,13.155594],[-88.117302,13.166896],[-88.21302,13.154684],[-88.353317,13.169293],[-88.466163,13.151693],[-88.520653,13.181961],[-88.803566,13.236783],[-89.292671,13.478084],[-89.519173,13.488054],[-89.67305,13.526993],[-89.830109,13.543991],[-89.843872,13.597001],[-90.006279,13.692014],[-90.128662,13.738269]]]},"properties":{"name":"萨尔瓦多","name_en":"EL SALVADOR","id":"SLV"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-11.379462,12.413562],[-11.356856,12.468019],[-11.449265,12.660594],[-11.388307,12.795812],[-11.408895,12.883683],[-11.355888,12.937011],[-11.452569,13.093689],[-11.539522,13.192318],[-11.533795,13.246002],[-11.644619,13.388708],[-11.751092,13.380618],[-11.812559,13.303765],[-11.895081,13.383931],[-11.875929,13.461216],[-11.96507,13.524791],[-12.079435,13.715892],[-11.955746,13.813754],[-11.944266,13.927796],[-12.014379,14.00028],[-11.987518,14.169964],[-12.024789,14.281689],[-12.096469,14.303162],[-12.103923,14.37071],[-12.204181,14.40152],[-12.225396,14.489707],[-12.148181,14.644514],[-12.241923,14.76061],[-11.978932,14.761557],[-11.806098,14.901631],[-11.792294,15.025212],[-11.846905,15.048355],[-11.838077,15.171913],[-11.771095,15.337064],[-11.714702,15.526494],[-11.628531,15.522169],[-11.567466,15.57635],[-11.428817,15.645388],[-11.240499,15.410787],[-10.998527,15.238161],[-10.902922,15.103617],[-10.829273,15.268967],[-10.717824,15.367619],[-10.729488,15.424356],[-10.507583,15.440048],[-10.320598,15.431158],[-10.131493,15.367039],[-9.998299,15.356557],[-9.793501,15.372715],[-9.697563,15.427493],[-9.40824,15.434369],[-9.44287,15.597577],[-9.311138,15.666197],[-9.328486,15.496246],[-8.244932,15.497197],[-7.667353,15.499676],[-6.90346,15.496966],[-5.998634,15.494625],[-5.506424,15.507971],[-5.327115,16.333138],[-5.6028,16.499434],[-5.656397,16.984648],[-5.761994,17.955072],[-5.85655,18.807566],[-5.91681,19.34955],[-5.996458,20.0413],[-6.091492,20.863914],[-6.166103,21.513216],[-6.225174,22.035221],[-6.304999,22.709013],[-6.335372,22.997618],[-6.432614,23.789545],[-6.497154,24.412174],[-6.564405,25],[-5.946241,25],[-4.827675,24.996595],[-3.96104,24.445128],[-3.315,24.042326],[-2.712557,23.664427],[-2.156349,23.310476],[-1.669253,22.996471],[-1.134199,22.642967],[-0.750254,22.391735],[-0.027552,21.917942],[-0.000443,21.837215],[0.411106,21.584263],[1.166675,21.118887],[1.187256,21.046377],[1.184915,20.903179],[1.158611,20.792984],[1.176954,20.733541],[1.305946,20.744158],[1.371349,20.665758],[1.592698,20.600473],[1.653113,20.552156],[1.671045,20.410471],[1.803177,20.296862],[1.876006,20.298286],[1.927599,20.238214],[2.045671,20.256464],[2.095358,20.212132],[2.186554,20.291985],[2.253289,20.264826],[2.33842,20.183811],[2.399215,20.071934],[2.578319,20.004887],[2.705234,20.004688],[2.811467,19.970337],[3.002442,19.936764],[3.180333,19.83275],[3.228661,19.825912],[3.212573,19.565798],[3.272079,19.409563],[3.197989,19.280701],[3.108515,19.179968],[3.121174,19.119499],[3.333774,18.960028],[4.242888,19.136717],[4.241542,18.389225],[4.239104,17.495457],[4.241203,16.987701],[4.076758,16.91231],[4.076468,16.320419],[3.987742,16.060646],[4.004404,15.985981],[3.942026,15.935373],[3.872143,15.691882],[3.706119,15.639359],[3.60766,15.526161],[3.538171,15.488314],[3.527506,15.341487],[3.097902,15.341659],[2.62879,15.367121],[1.912566,15.306183],[1.32403,15.265145],[0.973189,14.97895],[0.694171,14.947373],[0.512085,15.001424],[0.401776,14.9696],[0.229351,14.989671],[-0.009211,14.985179],[-0.231751,15.071436],[-0.376423,15.011415],[-0.462075,15.082593],[-0.720203,15.07991],[-1.08786,14.790123],[-1.314944,14.733589],[-1.674909,14.506894],[-1.757676,14.482295],[-1.975368,14.480876],[-1.993668,14.195762],[-2.10582,14.150282],[-2.291982,14.252217],[-2.476468,14.297865],[-2.672331,14.134245],[-2.837031,14.06063],[-2.832427,13.997855],[-2.895913,13.825576],[-2.903039,13.724443],[-2.871966,13.655334],[-2.959428,13.630571],[-3.107286,13.695428],[-3.185615,13.685327],[-3.261594,13.718467],[-3.260583,13.575739],[-3.282,13.534143],[-3.256077,13.283864],[-3.42477,13.267199],[-3.419592,13.193504],[-3.464799,13.158044],[-3.599841,13.202238],[-3.722646,13.283198],[-3.797708,13.358526],[-3.973802,13.393786],[-4.092478,13.395359],[-4.133372,13.311843],[-4.25833,13.229729],[-4.353298,13.116335],[-4.230222,12.937223],[-4.227244,12.801613],[-4.294473,12.69924],[-4.36959,12.731423],[-4.489498,12.710483],[-4.477875,12.63396],[-4.393459,12.531888],[-4.514452,12.25422],[-4.586606,12.196486],[-4.658313,12.053868],[-4.734348,11.996787],[-4.856637,12.014473],[-5.156523,11.947792],[-5.267698,11.835576],[-5.26539,11.743023],[-5.299405,11.62681],[-5.241263,11.604878],[-5.203893,11.529202],[-5.216318,11.395703],[-5.259377,11.368348],[-5.272127,11.234489],[-5.3414,11.136602],[-5.490751,11.071919],[-5.486852,10.970378],[-5.42231,10.8526],[-5.473898,10.758454],[-5.477374,10.546459],[-5.518916,10.433264],[-5.563094,10.463892],[-5.772508,10.440253],[-5.884331,10.37326],[-5.924587,10.27561],[-5.976114,10.277762],[-6.02316,10.198862],[-6.121273,10.2051],[-6.239283,10.297971],[-6.166648,10.36627],[-6.204999,10.496511],[-6.217736,10.726333],[-6.350479,10.694646],[-6.416442,10.700656],[-6.461879,10.564826],[-6.59558,10.6219],[-6.667661,10.630144],[-6.681194,10.470054],[-6.630166,10.438794],[-6.672198,10.365129],[-6.764007,10.391501],[-6.854407,10.362393],[-6.947465,10.369637],[-6.995327,10.310596],[-6.975773,10.195066],[-7.047341,10.161923],[-7.089561,10.224899],[-7.178484,10.257298],[-7.384366,10.282629],[-7.365108,10.362387],[-7.425368,10.389465],[-7.448959,10.463626],[-7.620174,10.452643],[-7.728319,10.425803],[-7.727278,10.355514],[-7.855926,10.204812],[-7.978548,10.175111],[-7.948704,10.251501],[-8.006831,10.343048],[-8.231598,10.416276],[-8.301474,10.636234],[-8.275602,10.853077],[-8.28708,10.995128],[-8.381933,11.075978],[-8.482444,11.065073],[-8.515064,10.972018],[-8.59049,10.950238],[-8.680631,10.967072],[-8.6175,11.124911],[-8.566328,11.204655],[-8.486457,11.221963],[-8.467066,11.289152],[-8.396869,11.382313],[-8.502104,11.399284],[-8.654133,11.499261],[-8.690624,11.587486],[-8.854325,11.628344],[-8.794912,11.923866],[-8.80539,12.005167],[-8.912936,12.041155],[-8.895484,12.146585],[-8.978591,12.192906],[-8.968898,12.348446],[-9.045705,12.428452],[-9.161708,12.486217],[-9.362003,12.495671],[-9.404638,12.461496],[-9.312466,12.369452],[-9.318829,12.277027],[-9.365627,12.24496],[-9.479281,12.245822],[-9.541409,12.192676],[-9.630399,12.172826],[-9.680815,12.116345],[-9.699758,12.023816],[-9.876602,12.055242],[-9.914441,12.098484],[-10.06709,12.139131],[-10.090956,12.179743],[-10.309394,12.21875],[-10.4564,12.116529],[-10.50314,12.121775],[-10.532685,12.031708],[-10.620753,11.969213],[-10.672222,11.893876],[-10.735487,11.919329],[-10.795091,12.037599],[-10.787433,12.104979],[-10.932803,12.223346],[-11.015382,12.205572],[-11.134319,12.095125],[-11.192021,12.014527],[-11.257467,11.992477],[-11.464109,12.133606],[-11.497769,12.209526],[-11.433674,12.29738],[-11.441846,12.357652],[-11.379462,12.413562]]]},"properties":{"name":"马里","name_en":"Mali","id":"MLI"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-7.255222,55.067112],[-7.392778,55.022583],[-7.405222,54.944584],[-7.447667,54.872417],[-7.641472,54.750305],[-7.918472,54.669029],[-7.775916,54.62125],[-7.857361,54.53186],[-8.0205,54.539585],[-8.160944,54.436779],[-7.866556,54.218639],[-7.691278,54.203804],[-7.60175,54.141083],[-7.334694,54.144611],[-7.149806,54.225723],[-7.184583,54.334415],[-7.05625,54.411972],[-6.884,54.348057],[-6.822139,54.221973],[-6.645,54.167751],[-6.645472,54.047806],[-6.403555,54.064499],[-6.266083,54.0965],[-6.144278,53.982807],[-6.366889,53.983223],[-6.336972,53.878723],[-6.242583,53.860806],[-6.259584,53.730778],[-6.216028,53.634777],[-6.083806,53.541138],[-6.123194,53.396027],[-6.206889,53.31675],[-6.113584,53.289166],[-6.045556,53.120804],[-6.045111,52.985416],[-6.002555,52.963943],[-6.14375,52.802387],[-6.145389,52.736362],[-6.232,52.646221],[-6.198278,52.563416],[-6.446361,52.307777],[-6.318167,52.24128],[-6.370444,52.174694],[-6.47975,52.203945],[-6.592,52.176529],[-6.817361,52.228584],[-6.980556,52.195251],[-7.032861,52.132446],[-7.363861,52.140415],[-7.595528,52.094776],[-7.586222,51.994305],[-7.742,51.939999],[-7.84725,51.951416],[-7.922583,51.874474],[-8.069278,51.811165],[-8.247084,51.794167],[-8.314167,51.734665],[-8.551695,51.648556],[-8.703195,51.636806],[-8.715639,51.572834],[-8.86725,51.594944],[-9.340861,51.477585],[-9.429139,51.556446],[-9.606583,51.497471],[-9.689,51.537972],[-9.651389,51.676971],[-10.068306,51.627918],[-10.020083,51.772751],[-10.180056,51.768665],[-10.176056,51.831028],[-10.398056,51.845554],[-10.284833,51.905418],[-10.280528,51.972137],[-10.024138,52.041111],[-9.864944,52.161057],[-10.128945,52.11475],[-10.268056,52.124638],[-10.454166,52.09811],[-10.454611,52.191193],[-10.242417,52.277195],[-10.153806,52.240528],[-10.042306,52.277748],[-9.912084,52.231335],[-9.835305,52.303112],[-9.845139,52.392387],[-9.68925,52.48661],[-9.618584,52.583527],[-9.287694,52.575474],[-8.834306,52.674446],[-8.984445,52.765278],[-9.163667,52.620419],[-9.402944,52.60664],[-9.555083,52.639],[-9.712111,52.581833],[-9.915556,52.576916],[-9.4985,52.754333],[-9.435639,52.88411],[-9.430278,52.969776],[-9.264639,53.155304],[-9.151389,53.120445],[-8.966389,53.169777],[-8.994639,53.268944],[-9.509084,53.22364],[-9.701278,53.359249],[-9.792139,53.306889],[-9.909028,53.328194],[-10.042889,53.414665],[-10.147889,53.544971],[-9.98,53.563057],[-9.876889,53.628529],[-9.90725,53.764305],[-9.574,53.80661],[-9.568084,53.895248],[-9.712389,53.903557],[-9.905389,53.864613],[-9.932777,53.915474],[-9.851,53.997139],[-9.968166,54.076363],[-9.964139,54.205696],[-10.093639,54.248474],[-9.988889,54.305557],[-9.898306,54.264084],[-9.814083,54.344891],[-9.662444,54.319168],[-9.262472,54.314529],[-9.215305,54.215416],[-9.119445,54.202721],[-9.050139,54.299389],[-8.605416,54.263584],[-8.556027,54.399113],[-8.272333,54.528778],[-8.121,54.650555],[-8.571972,54.615307],[-8.772139,54.661083],[-8.804,54.703609],[-8.666805,54.772915],[-8.536861,54.768639],[-8.443055,54.90786],[-8.402695,55.043026],[-8.293472,55.155251],[-8.168055,55.146252],[-8.019889,55.215862],[-7.800333,55.218777],[-7.657139,55.280888],[-7.333416,55.315361],[-7.156583,55.299416],[-6.923222,55.237389],[-7.158722,55.148834],[-7.255222,55.067112]]],[[[-9.953694,54.017387],[-9.948527,53.878445],[-10.058861,53.919498],[-10.077861,54.027],[-9.953694,54.017387]]]]},"properties":{"name":"爱尔兰","name_en":"IRELAND","id":"IRL"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[44.785984,37.149895],[44.778221,37.223999],[44.823307,37.307556],[44.601166,37.445332],[44.638474,37.603638],[44.58086,37.646526],[44.638306,37.716305],[44.597111,37.763748],[44.476665,37.765499],[44.416443,37.854084],[44.238861,37.887112],[44.281555,38.00325],[44.401333,38.140972],[44.426918,38.278168],[44.50539,38.318443],[44.446777,38.385582],[44.323002,38.382446],[44.332527,38.628971],[44.277195,38.716026],[44.316139,38.833862],[44.255974,38.855084],[44.187416,39.012474],[44.218387,39.138637],[44.12661,39.189445],[44.111694,39.286446],[44.050778,39.357277],[44.069805,39.405304],[44.224304,39.410278],[44.313721,39.373974],[44.441113,39.43589],[44.436195,39.560665],[44.487057,39.686554],[44.606556,39.773361],[44.820252,39.625252],[44.920082,39.568779],[44.946361,39.46064],[45.087971,39.349361],[45.160831,39.237141],[45.295387,39.183334],[45.449974,39.047695],[45.436359,38.99839],[45.617169,38.938415],[45.767555,38.921528],[45.921001,38.869778],[46.075474,38.867638],[46.137665,38.834499],[46.359055,38.907276],[46.547249,38.872723],[46.852722,39.13961],[46.954834,39.1325],[47.033249,39.175777],[47.064667,39.243137],[47.310638,39.371944],[47.384945,39.457554],[47.541916,39.499554],[47.74189,39.598],[47.807835,39.650082],[47.990749,39.696335],[48.233665,39.470249],[48.374637,39.370777],[48.207863,39.32164],[48.131779,39.264832],[48.144165,39.200195],[48.301388,39.108917],[48.357777,39.040554],[48.291695,38.964973],[48.109306,38.94278],[48.0135,38.904583],[48.020638,38.841167],[48.116028,38.76775],[48.24625,38.723583],[48.315666,38.60136],[48.4375,38.611443],[48.632027,38.402416],[48.791138,38.444584],[48.879417,38.437],[48.864529,38.295834],[48.907002,38.027637],[48.940613,37.961639],[49.003971,37.726723],[49.074806,37.653194],[49.224251,37.555695],[49.323666,37.515057],[49.543415,37.466835],[49.950806,37.433029],[50.167915,37.39397],[50.299026,37.155445],[50.483028,37.023083],[50.960667,36.782444],[51.101528,36.734859],[51.434807,36.685749],[51.673332,36.599224],[51.911861,36.572304],[52.061748,36.588085],[52.449665,36.683029],[52.894474,36.756779],[53.104889,36.816387],[53.284195,36.849056],[53.630085,36.863056],[53.661335,36.810333],[53.883251,36.785057],[54.034279,36.81422],[54.036251,36.958],[53.897804,37.340805],[54.243584,37.309193],[54.358971,37.344196],[54.583027,37.455444],[54.653252,37.430721],[54.797779,37.523056],[54.784,37.632694],[54.823833,37.725224],[55.027943,37.86311],[55.129333,37.950973],[55.406444,38.040279],[55.474194,38.084332],[55.813362,38.111526],[55.980778,38.065029],[56.173195,38.082527],[56.339195,38.070641],[56.327221,38.16489],[56.417057,38.24036],[56.567665,38.254028],[56.604084,38.223415],[56.754665,38.272583],[56.856083,38.211529],[57.089359,38.180946],[57.160499,38.256527],[57.245109,38.261696],[57.293694,38.150249],[57.380585,38.072945],[57.359138,37.974445],[57.524971,37.91486],[57.589249,37.924641],[57.787193,37.893082],[58.049362,37.795307],[58.211887,37.760113],[58.237335,37.673473],[58.459835,37.625057],[58.577221,37.692749],[58.742249,37.62989],[58.851387,37.680279],[59.047611,37.612751],[59.27628,37.497307],[59.347832,37.515446],[59.40311,37.426029],[59.402001,37.306252],[59.551998,37.166248],[59.553833,37.122528],[59.699555,37.128193],[59.833057,37.092083],[59.938751,37.027779],[60.004417,37.039665],[60.084332,36.978527],[60.17675,36.842415],[60.370667,36.624248],[60.634777,36.627556],[61.140251,36.662056],[61.190971,36.567722],[61.17025,36.340332],[61.229221,36.17239],[61.159279,35.989613],[61.234001,35.915501],[61.259972,35.812916],[61.222889,35.660362],[61.276638,35.613167],[61.271641,35.521721],[61.173416,35.349304],[61.190887,35.28997],[61.093029,35.261055],[61.090668,35.171696],[61.144611,35.130138],[61.075249,34.932529],[61.07711,34.839027],[61.002419,34.704334],[60.997971,34.632694],[60.900471,34.571777],[60.745693,34.522972],[60.854305,34.409557],[60.86686,34.30661],[60.694222,34.311165],[60.590946,34.212723],[60.482582,34.062222],[60.567306,33.817307],[60.549583,33.730221],[60.643223,33.56461],[60.716251,33.528557],[60.901138,33.536915],[60.869999,33.424667],[60.62764,33.223915],[60.586113,33.143112],[60.647915,32.961304],[60.718277,32.688778],[60.819,32.479252],[60.877251,32.198833],[60.834278,32.054165],[60.823555,31.88925],[60.829834,31.666471],[60.856888,31.491667],[61.682999,31.384556],[61.756443,31.332611],[61.845696,31.040833],[61.78661,30.927195],[61.803528,30.84086],[61.293999,30.307028],[60.878613,29.861778],[61.125862,29.572945],[61.377499,29.335306],[61.35775,29.282778],[61.503166,29.056417],[61.504307,29.007555],[61.681027,28.770584],[61.804165,28.640167],[61.957584,28.548695],[62.115776,28.485111],[62.296276,28.463444],[62.439667,28.407139],[62.592304,28.255138],[62.786946,28.281195],[62.796585,28.208944],[62.768223,28.032417],[62.819805,27.805],[62.855389,27.465139],[62.781471,27.251417],[62.821362,27.212334],[62.977249,27.19511],[63.05864,27.233194],[63.184223,27.241444],[63.299251,27.178917],[63.255916,27.082945],[63.275528,26.864779],[63.192139,26.8435],[63.199722,26.737972],[63.169193,26.647306],[62.778694,26.652277],[62.608139,26.584999],[62.434528,26.568138],[62.315056,26.528862],[62.264721,26.412695],[62.282501,26.35836],[62.128082,26.380362],[62.061138,26.315416],[61.870751,26.24675],[61.833027,26.171112],[61.768833,25.801777],[61.689194,25.799166],[61.655613,25.297501],[61.610443,25.194944],[61.562721,25.217556],[61.471417,25.105694],[61.39336,25.071833],[61.180527,25.12586],[61.13353,25.181723],[60.741779,25.273001],[60.60561,25.288334],[60.58561,25.417805],[60.462418,25.436501],[60.310165,25.337166],[60.300335,25.396723],[60.175724,25.338499],[60.07103,25.384417],[59.8825,25.355612],[59.828415,25.405111],[59.567638,25.39975],[59.484196,25.467361],[59.28439,25.456362],[59.208805,25.523111],[59.104752,25.407612],[59.014637,25.416666],[58.913166,25.515612],[58.767807,25.579584],[58.695778,25.567778],[58.365334,25.62925],[58.093167,25.564278],[58.034248,25.597195],[57.960083,25.694695],[57.852612,25.687471],[57.723888,25.750195],[57.549473,25.74625],[57.297668,25.805445],[57.279472,25.905556],[57.194137,26.01125],[57.183109,26.099527],[57.215443,26.175472],[57.138138,26.240389],[57.066582,26.411444],[57.077862,26.529861],[57.056415,26.696751],[57.006,26.833639],[56.936916,26.907084],[56.923222,26.997833],[56.780334,27.140139],[56.618668,27.168972],[56.441193,27.167028],[56.363583,27.195],[56.113804,27.148972],[55.961361,27.0665],[55.944889,27.030972],[55.741806,26.974251],[55.639584,26.983555],[55.579418,26.932695],[55.550724,26.808611],[55.457527,26.755028],[55.250446,26.786362],[55.204193,26.732721],[55.101723,26.702555],[55.06078,26.65336],[54.961666,26.618584],[54.845001,26.52161],[54.616055,26.504667],[54.526974,26.601305],[54.380665,26.607529],[54.311638,26.71275],[54.185612,26.7075],[54.020054,26.757],[53.827526,26.712473],[53.685055,26.740833],[53.481804,26.857695],[53.459721,26.977249],[53.36636,26.993473],[53.10989,27.092445],[53.06789,27.095472],[52.836334,27.198778],[52.638474,27.345333],[52.624332,27.457445],[52.510807,27.596695],[52.431667,27.64489],[52.209141,27.69875],[52.044056,27.841888],[51.78186,27.841583],[51.709332,27.823805],[51.597721,27.853861],[51.44186,27.949528],[51.401859,27.929251],[51.331528,28.081638],[51.281807,28.090389],[51.292889,28.225306],[51.137749,28.414806],[51.086388,28.546055],[51.077804,28.682861],[51.010502,28.84436],[50.889057,28.82361],[50.81422,28.922333],[50.848141,28.979416],[50.923084,28.945694],[50.925026,29.066723],[50.817806,29.134832],[50.695862,29.106667],[50.650638,29.162417],[50.668388,29.389084],[50.618278,29.498917],[50.55336,29.515278],[50.486473,29.604055],[50.329918,29.728611],[50.263249,29.827833],[50.142971,29.951445],[50.14875,30.070305],[50.084194,30.187056],[49.935112,30.206944],[49.598805,30.012112],[49.506306,30.059416],[49.50375,30.137306],[49.446888,30.162445],[49.24736,30.135666],[49.256195,30.19389],[49.019554,30.293556],[49.098167,30.343027],[49.191193,30.350611],[49.26239,30.401833],[49.207973,30.494694],[48.994862,30.506639],[49.019444,30.403999],[48.929054,30.412972],[48.869278,30.352056],[48.876335,30.278973],[48.949555,30.174889],[48.914082,30.019556],[48.671612,30.006416],[48.659138,29.945889],[48.483883,29.976969],[48.387306,30.112728],[48.412003,30.196175],[48.268608,30.338013],[48.192463,30.333328],[48.165577,30.424028],[48.026402,30.482599],[48.032211,30.997009],[47.681652,30.999229],[47.683044,31.394873],[47.865818,31.783682],[47.810123,31.882671],[47.733486,31.9387],[47.709572,32.008961],[47.5947,32.124798],[47.567551,32.192177],[47.462196,32.31591],[47.466229,32.379608],[47.392735,32.466083],[47.283306,32.497593],[47.168301,32.457302],[46.887184,32.632034],[46.720791,32.786476],[46.622738,32.822308],[46.480782,32.916199],[46.312451,32.968979],[46.173554,32.953419],[46.097405,32.981209],[46.156956,33.073341],[46.041801,33.09565],[46.186466,33.171791],[46.191109,33.263409],[46.080501,33.352596],[46.006557,33.508701],[45.87114,33.635273],[45.719105,33.662601],[45.639931,33.742882],[45.552635,33.889709],[45.489647,33.949272],[45.474007,34.077274],[45.5816,34.146217],[45.561871,34.331779],[45.466599,34.38372],[45.538193,34.601097],[45.605442,34.549549],[45.738312,34.588512],[45.702236,34.694572],[45.704102,34.790398],[45.865498,34.89595],[45.897751,34.959206],[45.874698,35.033764],[45.96846,35.074341],[46.159702,35.088554],[46.189339,35.21978],[45.986301,35.495998],[46.035828,35.705196],[46.166203,35.689564],[46.288277,35.734028],[46.347912,35.788319],[46.293785,35.836807],[46.212166,35.795418],[46.079788,35.860252],[45.955498,35.823196],[45.895645,35.839081],[45.756561,35.808502],[45.667145,35.925526],[45.550285,36.001244],[45.341816,36.008949],[45.349995,36.110004],[45.304611,36.274082],[45.261311,36.303757],[45.271935,36.392941],[45.077896,36.431511],[45.028187,36.606369],[45.063648,36.690651],[44.942162,36.784737],[44.882393,36.954742],[44.900314,37.022255],[44.805958,37.046024],[44.785984,37.149895]]],[[[55.922028,26.911722],[56.086807,26.983],[56.259724,26.970861],[56.160332,26.908611],[56.067696,26.782528],[55.92725,26.692917],[55.852306,26.742001],[55.752918,26.687584],[55.691723,26.692583],[55.484085,26.593277],[55.287861,26.552334],[55.254276,26.656445],[55.331444,26.647472],[55.765472,26.801806],[55.778973,26.946611],[55.869141,26.899055],[55.922028,26.911722]]]]},"properties":{"name":"伊朗","name_en":"IRAN","id":"IRN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.116405,9.457685],[34.142925,9.043478],[34.142998,8.622109],[34.103638,8.552817],[34.023563,8.489738],[33.892044,8.472905],[33.769104,8.362971],[33.692844,8.377152],[33.621376,8.466745],[33.488308,8.467608],[33.39555,8.42142],[33.301788,8.45059],[33.191132,8.405415],[33.192722,8.295718],[33.16542,8.194452],[33.19067,8.12944],[33.119282,8.105654],[33.000198,7.9401],[33.006786,7.858101],[33.066105,7.785869],[33.164207,7.794065],[33.338157,7.706165],[33.438473,7.747764],[33.580135,7.686265],[33.671291,7.693246],[33.796081,7.602914],[34.031654,7.360514],[34.042294,7.220928],[34.192028,7.11952],[34.236423,7.002413],[34.475929,6.911313],[34.539341,6.818495],[34.528511,6.752225],[34.706035,6.686229],[34.768886,6.593629],[34.85865,6.605091],[35.019535,6.447019],[34.989487,6.384054],[34.969341,6.09054],[35,6.073824],[35.00103,5.897047],[35.130108,5.691162],[35.137291,5.613731],[35.306065,5.50104],[35.301899,5.348942],[35.334015,5.329945],[35.517918,5.417205],[35.628376,5.377764],[35.71883,5.389732],[35.861401,5.314649],[35.829216,5.233839],[35.863781,5.175502],[35.817448,5.104121],[35.817108,4.77735],[35.947697,4.629333],[34.864887,4.622295],[34.384644,4.618784],[33.994495,4.214426],[33.760338,3.999565],[33.509014,3.748913],[33.176544,3.774027],[33.017246,3.886971],[32.882786,3.809856],[32.701797,3.762096],[32.407272,3.747737],[32.197849,3.624968],[32.197769,3.515032],[32.08506,3.534059],[32.048237,3.588689],[31.954803,3.590398],[31.928787,3.70138],[31.837744,3.804415],[31.795332,3.803516],[31.701008,3.714355],[31.538933,3.654138],[31.282929,3.792573],[31.17384,3.793182],[30.980425,3.702209],[30.853569,3.48639],[30.85696,3.568896],[30.667433,3.636404],[30.57329,3.592095],[30.584925,3.680239],[30.5466,3.86815],[30.493002,3.856813],[30.386951,3.908523],[30.222595,3.937439],[30.15773,4.092711],[30.078886,4.112746],[30.038128,4.188783],[29.944063,4.241593],[29.902332,4.343625],[29.798374,4.368258],[29.82029,4.558717],[29.733219,4.574481],[29.611044,4.660898],[29.461695,4.662755],[29.471808,4.592255],[29.338272,4.401318],[29.204639,4.338347],[29.009434,4.492551],[28.83316,4.473036],[28.7866,4.558228],[28.721332,4.536247],[28.66222,4.419617],[28.510124,4.36906],[28.45787,4.285298],[28.374576,4.275577],[28.318312,4.352965],[28.201092,4.347533],[28.071818,4.414419],[28.031967,4.47767],[28.035048,4.550398],[27.868265,4.547898],[27.786022,4.628577],[27.787396,4.736298],[27.713717,4.785858],[27.657469,4.891273],[27.580335,4.885361],[27.463421,5.016153],[27.396597,5.15258],[27.323767,5.199333],[27.248921,5.326864],[27.233204,5.426795],[27.283386,5.58701],[27.188328,5.727467],[27.105873,5.799759],[27.046581,5.79489],[27.002674,5.856691],[26.833025,5.903914],[26.819244,5.980795],[26.75178,6.013197],[26.655008,6.004957],[26.560179,6.033278],[26.517195,6.115283],[26.533728,6.194599],[26.476244,6.274101],[26.396557,6.30581],[26.297903,6.387691],[26.297241,6.493942],[26.415108,6.637383],[26.357512,6.689029],[26.262802,6.709022],[26.167589,6.813153],[26.114687,6.815335],[25.985573,7.006858],[25.824764,7.142074],[25.604427,7.215968],[25.53455,7.273749],[25.361103,7.344516],[25.287355,7.460864],[25.206348,7.485071],[25.173059,7.573323],[25.287798,7.638908],[25.286818,7.781548],[25.180088,7.902913],[25.100374,7.884384],[24.90949,8.047219],[24.86475,8.180498],[24.621927,8.222956],[24.554003,8.20427],[24.478775,8.272289],[24.3715,8.251407],[24.203583,8.303996],[24.153368,8.369939],[24.171225,8.481531],[24.267941,8.592734],[24.259888,8.683774],[24.17407,8.706571],[24.241386,8.762777],[24.396385,8.84861],[24.557777,8.879444],[24.557499,8.993889],[24.66,9.176943],[24.680832,9.382221],[24.794441,9.532499],[24.790474,9.815367],[24.93222,9.905277],[25.02972,10.098888],[25.012508,10.167778],[25.06472,10.27861],[25.130554,10.309444],[25.285,10.31111],[25.490807,10.345577],[25.622486,10.386391],[25.752498,10.393889],[25.840279,10.423334],[25.894997,10.350277],[25.899166,10.197777],[25.999165,10.1325],[26.098053,9.99111],[26.187774,9.906666],[26.270554,9.664166],[26.371109,9.553888],[26.601665,9.481667],[26.706387,9.479721],[27.079719,9.60861],[27.334442,9.614443],[27.640831,9.603054],[27.742222,9.584999],[27.894577,9.595629],[28.017777,9.332222],[28.268887,9.324165],[28.718052,9.328333],[28.702221,9.444443],[28.930832,9.729443],[29.460552,9.764721],[29.468609,10.124998],[29.886108,10.293888],[30.455555,9.998888],[30.777775,9.709721],[30.814442,9.75],[31.199719,9.75861],[31.648888,10.195276],[31.801941,10.37611],[31.870277,10.486666],[31.938332,10.654722],[32.451111,11.073055],[32.364441,11.236387],[32.344444,11.405554],[32.358055,11.520832],[32.352776,11.687777],[32.328888,11.729443],[32.083435,11.998095],[32.731384,11.998888],[32.747498,12.039999],[32.724449,12.219149],[33.211105,12.210554],[33.205551,12.139166],[33.147774,11.959444],[33.141106,11.72611],[33.079437,11.602777],[33.186104,10.833887],[33.130554,10.736387],[33.386383,10.644999],[33.466942,10.543333],[33.896942,10.196943],[33.96611,10.052776],[33.955276,9.905277],[33.972496,9.84861],[33.90416,9.711111],[33.878609,9.576387],[33.898605,9.455],[34.116405,9.457685]]]},"properties":{"name":"南苏丹","name_en":"South Sudan","id":"SSD"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-10.286861,8.484799],[-10.308256,8.327699],[-10.30478,8.201405],[-10.361211,8.144222],[-10.523996,8.124565],[-10.606035,8.032037],[-10.604134,7.770212],[-10.685807,7.739516],[-10.896043,7.510513],[-10.949237,7.496169],[-11.092366,7.389956],[-11.196867,7.251954],[-11.276511,7.228908],[-11.325629,7.163097],[-11.328998,7.077685],[-11.459169,6.929611],[-11.58699,6.972033],[-11.640269,7.03452],[-11.862321,7.154642],[-12.128389,7.263472],[-12.412018,7.367848],[-12.485413,7.382564],[-12.450621,7.5088],[-12.472446,7.61438],[-12.585212,7.684857],[-12.705598,7.703454],[-12.954714,7.914506],[-12.862847,7.944809],[-12.902895,8.078151],[-13.001536,8.237436],[-13.1323,8.195853],[-13.202049,8.334361],[-13.261362,8.380616],[-13.296687,8.494074],[-13.2104,8.49139],[-13.1338,8.449582],[-12.995781,8.558743],[-13.08867,8.582587],[-13.175118,8.531333],[-13.24207,8.648532],[-13.250163,8.796192],[-13.169285,8.903612],[-13.262498,8.955563],[-13.30763,9.037539],[-13.24758,9.075135],[-13.15146,9.085881],[-13.087619,9.048372],[-13.002149,9.097373],[-12.954154,9.189799],[-12.93508,9.286657],[-12.794126,9.297476],[-12.757756,9.388422],[-12.685502,9.430789],[-12.657488,9.539166],[-12.490178,9.825997],[-12.431741,9.881639],[-12.227111,9.92465],[-12.120018,9.871853],[-11.906583,9.935805],[-11.885845,9.997462],[-11.205948,9.999999],[-11.160159,9.890504],[-11.038712,9.797737],[-10.967905,9.673737],[-10.830964,9.520646],[-10.816586,9.391906],[-10.730983,9.380188],[-10.66884,9.309297],[-10.663737,9.210006],[-10.723477,9.183494],[-10.729929,9.079186],[-10.584805,9.0432],[-10.598166,8.959005],[-10.586903,8.804345],[-10.469391,8.67458],[-10.582313,8.591388],[-10.649591,8.476318],[-10.673992,8.340906],[-10.553535,8.307663],[-10.445746,8.40347],[-10.385975,8.492885],[-10.286861,8.484799]]],[[[-12.526699,7.405634],[-12.604589,7.47165],[-12.8918,7.56115],[-12.905847,7.60131],[-12.787083,7.630016],[-12.584992,7.637125],[-12.503527,7.586848],[-12.492505,7.510189],[-12.526699,7.405634]]]]},"properties":{"name":"塞拉利昂","name_en":"SIERRA LEONE","id":"SLE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-82.896828,8.032975],[-82.891182,8.111118],[-82.937759,8.269567],[-83.050148,8.339612],[-82.928246,8.434606],[-82.858879,8.44946],[-82.82785,8.626787],[-82.917137,8.744999],[-82.852463,8.853965],[-82.715706,8.925186],[-82.741608,8.981502],[-82.936188,9.103702],[-82.937561,9.473368],[-82.853714,9.615466],[-82.7454,9.57808],[-82.693931,9.508739],[-82.611656,9.502308],[-82.563103,9.566999],[-82.353142,9.383322],[-82.358147,9.206713],[-82.247932,9.168569],[-82.255661,9.00859],[-82.152878,8.983892],[-82.114983,8.92955],[-82,8.957059],[-81.95723,8.929989],[-81.768997,8.977922],[-81.758827,9.061791],[-81.578102,8.848838],[-81.506844,8.796059],[-81.356499,8.777226],[-81.209885,8.782824],[-80.965759,8.840918],[-80.827026,8.887988],[-80.762894,8.978045],[-80.64444,9.054546],[-80.411598,9.145749],[-80.359444,9.148659],[-80.093506,9.232083],[-79.981369,9.362922],[-79.834145,9.38067],[-79.750549,9.450336],[-79.632652,9.616993],[-79.52475,9.594507],[-79.331665,9.584077],[-79.073036,9.509211],[-79.067734,9.453184],[-78.948219,9.455894],[-78.912254,9.425255],[-78.713821,9.441347],[-78.612343,9.421894],[-78.561691,9.442839],[-78.211281,9.274729],[-78.039001,9.231516],[-77.890076,9.094506],[-77.806854,9.050738],[-77.762932,8.948557],[-77.644776,8.814689],[-77.536636,8.75125],[-77.54557,8.706404],[-77.450073,8.663995],[-77.360863,8.686984],[-77.446938,8.523991],[-77.332977,8.366876],[-77.294014,8.226646],[-77.258072,8.21475],[-77.181473,7.92261],[-77.321144,7.908957],[-77.349464,7.82543],[-77.31681,7.740014],[-77.424934,7.714838],[-77.494629,7.598021],[-77.579491,7.507368],[-77.618134,7.54573],[-77.671753,7.674093],[-77.743767,7.724392],[-77.763977,7.624529],[-77.724144,7.495708],[-77.803246,7.467022],[-77.886818,7.220824],[-77.991882,7.303285],[-78.132614,7.490448],[-78.180298,7.577404],[-78.299156,7.698456],[-78.28804,7.750039],[-78.421371,7.97046],[-78.41111,8.070752],[-78.317001,8.069519],[-78.250908,8.138726],[-78.30545,8.239051],[-78.221695,8.268921],[-78.125091,8.360409],[-78.090507,8.441269],[-78.157814,8.468768],[-78.25148,8.380498],[-78.333069,8.460633],[-78.414925,8.34761],[-78.500786,8.459118],[-78.538422,8.581867],[-78.518654,8.633735],[-78.623573,8.680048],[-78.629547,8.722257],[-78.73761,8.755865],[-78.798424,8.832889],[-78.860214,8.829482],[-78.909699,8.919703],[-79.138,8.999631],[-79.355347,9.025282],[-79.483666,9.004818],[-79.571472,8.893843],[-79.736023,8.84659],[-79.767761,8.776307],[-79.742103,8.724973],[-79.862244,8.55376],[-79.960892,8.463219],[-80.233192,8.304317],[-80.412384,8.292505],[-80.48365,8.204998],[-80.49102,8.151835],[-80.452354,8.030333],[-80.363564,8.000313],[-80.296387,7.868675],[-80.149147,7.746097],[-79.995277,7.514014],[-80.001045,7.462819],[-80.176125,7.406581],[-80.358162,7.389783],[-80.345871,7.318131],[-80.439018,7.238347],[-80.644051,7.227921],[-80.684807,7.208096],[-80.872253,7.198997],[-80.933479,7.24462],[-80.899803,7.322648],[-80.914345,7.432106],[-80.971443,7.491305],[-80.981209,7.608274],[-81.044342,7.649687],[-81.032471,7.739953],[-81.057838,7.818212],[-81.157181,7.848234],[-81.204231,7.762477],[-81.228005,7.604705],[-81.442902,7.696621],[-81.518936,7.708503],[-81.588974,7.795379],[-81.568894,7.856844],[-81.62664,7.901558],[-81.711426,8.047896],[-81.700317,8.108745],[-81.901062,8.183692],[-82.091499,8.21482],[-82.20079,8.201098],[-82.225609,8.281747],[-82.381721,8.33529],[-82.497803,8.27154],[-82.675644,8.324435],[-82.858185,8.277208],[-82.881348,8.233798],[-82.896828,8.032975]]],[[[-81.815254,7.40042],[-81.886612,7.509862],[-81.761734,7.636898],[-81.709015,7.538262],[-81.724304,7.431448],[-81.652504,7.316551],[-81.777802,7.356043],[-81.815254,7.40042]]],[[[-78.841392,8.400626],[-78.857002,8.298029],[-78.951958,8.345224],[-78.972366,8.45615],[-78.891022,8.475179],[-78.841392,8.400626]]]]},"properties":{"name":"巴拿马","name_en":"Panama","id":"PAN"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-77.936462,24.977903],[-77.847344,24.797274],[-77.752083,24.699829],[-77.759209,24.598263],[-77.725327,24.461918],[-77.868309,24.404942],[-77.941139,24.33329],[-78.032219,24.313337],[-78.105965,24.39481],[-78.308594,24.495321],[-78.447037,24.605377],[-78.334503,24.704206],[-78.300415,24.774923],[-78.174713,24.913258],[-78.155609,25.048529],[-78.217667,25.190729],[-78.101379,25.149843],[-78.009842,25.174219],[-77.936462,24.977903]]],[[[-73.555565,21.133413],[-73.530968,21.188446],[-73.428444,21.187271],[-73.274376,21.133276],[-73.144401,21.1782],[-73.065193,21.318169],[-73.0028,21.305914],[-73.03566,21.140928],[-73.092277,21.090626],[-73.164337,20.967424],[-73.311852,20.960567],[-73.47332,20.926193],[-73.571709,20.949535],[-73.681496,20.92716],[-73.716789,21.020262],[-73.655548,21.083267],[-73.555565,21.133413]]],[[[-77.217468,26.135397],[-77.202469,26.261051],[-77.216759,26.388472],[-77.14579,26.560246],[-77.2734,26.57111],[-77.344162,26.607819],[-77.330566,26.679546],[-77.45433,26.72051],[-77.459946,26.833122],[-77.307388,26.706593],[-77.227883,26.604748],[-77.047661,26.545321],[-77.048698,26.310373],[-77.108986,26.288488],[-77.176956,26.184235],[-77.193085,26.052862],[-77.17839,25.923378],[-77.21714,25.851105],[-77.282517,25.976637],[-77.366249,25.986857],[-77.327331,26.074104],[-77.217468,26.135397]]],[[[-78.715462,26.489864],[-78.783798,26.551308],[-78.638756,26.610489],[-78.605103,26.659775],[-78.598061,26.777346],[-78.345863,26.686804],[-77.975609,26.722431],[-77.906769,26.749001],[-77.891983,26.638176],[-78.003059,26.65649],[-78.431503,26.593941],[-78.715462,26.489864]]],[[[-77.68441,23.785604],[-77.811081,23.850321],[-77.806564,24],[-77.716179,24.024269],[-77.592285,24.208525],[-77.544266,24.109177],[-77.507568,23.865761],[-77.582276,23.854942],[-77.68441,23.785604]]],[[[-75,23.110466],[-75.083389,23.095053],[-75.190041,23.159639],[-75.138039,23.198401],[-75,23.110466]]],[[[-73.876305,22.677988],[-73.841576,22.54582],[-73.975311,22.353876],[-74.021126,22.320705],[-74.105812,22.33849],[-74.096787,22.396849],[-74.007614,22.4095],[-73.983902,22.461689],[-73.872414,22.526499],[-73.918251,22.599533],[-74.044662,22.617849],[-73.951653,22.713093],[-73.876305,22.677988]]],[[[-77.636963,24.217245],[-77.717232,24.041706],[-77.825752,24.006706],[-77.918243,24.130613],[-77.819283,24.224941],[-77.669518,24.301508],[-77.636963,24.217245]]],[[[-76.144821,25],[-76.136025,24.875597],[-76.215767,24.887836],[-76.144821,25]]],[[[-75.404961,24.143396],[-75.45845,24.112717],[-75.529449,24.145782],[-75.395683,24.222519],[-75.404961,24.143396]]],[[[-73.134476,22.366539],[-73.125496,22.449823],[-73,22.409731],[-72.880631,22.398638],[-72.729446,22.330776],[-72.772331,22.283268],[-72.866318,22.353661],[-73.007851,22.370689],[-73.052963,22.335896],[-73.134476,22.366539]]],[[[-74.344292,22.839827],[-74.231056,22.810501],[-74.192772,22.758451],[-74.071754,22.74568],[-74.047951,22.692394],[-74.159203,22.675964],[-74.270699,22.690489],[-74.344292,22.839827]]],[[[-77.550957,25],[-77.49781,25.060698],[-77.306045,25.071959],[-77.267814,25.016392],[-77.384277,24.97814],[-77.550957,25]]],[[[-75.801208,23.539007],[-75.973457,23.597586],[-75.987,23.693283],[-75.801208,23.539007]]],[[[-74.472672,24],[-74.530579,24.089144],[-74.445908,24.123899],[-74.423874,24.062801],[-74.472672,24]]],[[[-77.65937,23.771624],[-77.581001,23.831764],[-77.562759,23.732504],[-77.65937,23.771624]]],[[[-73,21.543062],[-72.91497,21.489479],[-73.047188,21.422687],[-73.062035,21.516357],[-73,21.543062]]]]},"properties":{"name":"巴哈马","name_en":"BAHAMAS","id":"BHS"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[160,-9.820389],[159.883469,-9.786222],[159.8405,-9.804472],[159.710419,-9.720834],[159.670441,-9.618778],[159.584244,-9.495277],[159.616776,-9.282805],[159.69339,-9.242833],[159.786255,-9.291639],[159.9095,-9.419945],[160.030243,-9.403973],[160.111969,-9.428139],[160.346863,-9.407583],[160.469193,-9.484361],[160.485336,-9.529889],[160.576645,-9.552417],[160.711411,-9.708834],[160.810883,-9.776917],[160.804169,-9.879889],[160.617615,-9.946278],[160.476868,-9.88925],[160.430054,-9.901611],[160.33641,-9.817361],[160.064865,-9.830028],[160,-9.820389]]],[[[160.75711,-8.340472],[160.840912,-8.465278],[160.892059,-8.497778],[161.009857,-8.653277],[160.948135,-8.6965],[160.937164,-8.813389],[161.096893,-8.909166],[161.188721,-9.054667],[161.1828,-9.091166],[161.267395,-9.203972],[161.2518,-9.305917],[161.317413,-9.448444],[161.368576,-9.5055],[161.362137,-9.524083],[161.384171,-9.551416],[161.391113,-9.601861],[161.298752,-9.582361],[161.216965,-9.43275],[161.136673,-9.349611],[161.040695,-9.308611],[160.960327,-9.217833],[160.870285,-9.172916],[160.751282,-8.969],[160.749725,-8.863222],[160.669922,-8.745277],[160.685303,-8.69375],[160.647888,-8.613083],[160.722229,-8.562278],[160.674088,-8.488611],[160.569138,-8.399806],[160.596466,-8.335556],[160.691559,-8.378972],[160.75711,-8.340472]]],[[[158.969757,-7.803],[159.062576,-7.892917],[159.269913,-7.983806],[159.379334,-7.982472],[159.533051,-8.083722],[159.570969,-8.137389],[159.86055,-8.356639],[159.81958,-8.424973],[159.867752,-8.467778],[159.863449,-8.573361],[159.712952,-8.467444],[159.635589,-8.378917],[159.540283,-8.371472],[159.468948,-8.311722],[159.23317,-8.205778],[158.848999,-7.957611],[158.646469,-7.766028],[158.459244,-7.534111],[158.582672,-7.577167],[158.601273,-7.546805],[158.729614,-7.594944],[158.86705,-7.730889],[158.915283,-7.730722],[158.969757,-7.803]]],[[[162.083053,-10.808833],[162.031357,-10.772555],[161.870697,-10.763361],[161.705078,-10.676444],[161.698883,-10.633139],[161.567841,-10.55125],[161.509476,-10.545195],[161.524383,-10.460195],[161.503952,-10.350472],[161.365112,-10.300417],[161.27536,-10.299583],[161.283554,-10.169639],[161.344254,-10.144722],[161.466812,-10.189111],[161.687668,-10.324917],[161.735855,-10.375694],[161.839996,-10.416778],[161.930084,-10.410084],[162.010666,-10.464972],[162.107025,-10.459416],[162.203308,-10.580639],[162.213669,-10.635],[162.285477,-10.658916],[162.308975,-10.739833],[162.190887,-10.814138],[162.083053,-10.808833]]],[[[157.011368,-7.260944],[156.92569,-7.221611],[156.804749,-7.102806],[156.616165,-6.882889],[156.519409,-6.836611],[156.400528,-6.724778],[156.380219,-6.659945],[156.435227,-6.598166],[156.498504,-6.596556],[156.622299,-6.657028],[156.671585,-6.738555],[156.823227,-6.793389],[156.970535,-6.890111],[157.097946,-6.953667],[157.136414,-7.113028],[157.2742,-7.201528],[157.397827,-7.311639],[157.517532,-7.279639],[157.518219,-7.361917],[157.422882,-7.416056],[157.314255,-7.383861],[157.287888,-7.340528],[157.093887,-7.326222],[157.011368,-7.260944]]],[[[157.490784,-8.268666],[157.337723,-8.285639],[157.247666,-8.33125],[157.193771,-8.218555],[157.291504,-8.1765],[157.364807,-8.025361],[157.480637,-7.949083],[157.585312,-8.013583],[157.597809,-8.160694],[157.674835,-8.222834],[157.766159,-8.235111],[157.900772,-8.484111],[157.867722,-8.550667],[157.794083,-8.574111],[157.681473,-8.517472],[157.563385,-8.425305],[157.60408,-8.393333],[157.542145,-8.252833],[157.490784,-8.268666]]],[[[157.148499,-8.133722],[157.004089,-8.099167],[156.942413,-8.022139],[156.954437,-7.908861],[157.002808,-7.859639],[157.107163,-7.840139],[157.168167,-7.898139],[157.192536,-8.054722],[157.148499,-8.133722]]],[[[160.489441,-11.850555],[160.381576,-11.789111],[160.348419,-11.714333],[160.224747,-11.628695],[160.159576,-11.660973],[160.045868,-11.586667],[160.00119,-11.590639],[159.948975,-11.5015],[159.994385,-11.460944],[160.074616,-11.486472],[160.305695,-11.639194],[160.354034,-11.643278],[160.503891,-11.750834],[160.489441,-11.850555]]],[[[156.601837,-7.793445],[156.4962,-7.684611],[156.505524,-7.615833],[156.589752,-7.565945],[156.703812,-7.703639],[156.781754,-7.768917],[156.719132,-7.833944],[156.67514,-7.93225],[156.600052,-7.839167],[156.601837,-7.793445]]],[[[158,-8.767805],[157.913437,-8.733],[157.865418,-8.66575],[157.964386,-8.514083],[158.062729,-8.523167],[158.128921,-8.562056],[158.070328,-8.730667],[158,-8.767805]]],[[[165.664108,-10.711416],[165.761108,-10.632222],[165.935562,-10.620306],[166.03186,-10.639167],[165.926804,-10.756389],[165.846024,-10.732306],[165.742249,-10.829473],[165.663727,-10.81175],[165.664108,-10.711416]]],[[[161.542053,-9.796889],[161.378326,-9.654195],[161.395996,-9.600972],[161.392532,-9.551028],[161.372528,-9.531083],[161.396332,-9.386861],[161.551331,-9.635305],[161.542053,-9.796889]]],[[[157.345474,-8.693139],[157.294968,-8.679417],[157.1875,-8.568973],[157.331772,-8.402583],[157.404968,-8.493806],[157.328812,-8.583528],[157.345474,-8.693139]]],[[[160.294388,-9.045944],[160.284973,-9.126445],[160.194687,-9.088917],[160.10527,-9.093194],[160.140503,-8.989528],[160.294388,-9.045944]]],[[[155.705032,-7.012556],[155.762665,-6.998417],[155.851257,-7.035444],[155.827743,-7.100972],[155.718002,-7.106222],[155.705032,-7.012556]]],[[[159.61644,-8.388083],[159.654968,-8.404305],[159.603424,-8.512445],[159.535782,-8.435056],[159.61644,-8.388083]]],[[[166.822586,-11.695194],[166.77858,-11.625444],[166.878052,-11.596583],[166.923859,-11.617723],[166.874588,-11.727111],[166.822586,-11.695194]]],[[[160.401672,-9.145861],[160.334915,-9.183222],[160.258804,-9.161056],[160.308975,-9.097111],[160.331497,-9.056694],[160.401672,-9.145861]]],[[[159.207107,-9.02775],[159.146637,-9.111555],[159.057831,-9.10425],[159.033951,-9.054389],[159.139252,-9.004723],[159.207107,-9.02775]]],[[[157.626999,-8.796695],[157.473755,-8.741472],[157.542801,-8.691334],[157.626999,-8.796695]]],[[[156.074799,-6.80325],[156.101257,-6.927805],[156.0513,-6.946028],[156.030716,-6.835417],[156.074799,-6.80325]]]]},"properties":{"name":"所罗门群岛","name_en":"SOLOMON ISLANDS","id":"SLB"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-17.051847,20.774158],[-17.102175,20.848763],[-17.065189,20.989391],[-17.013325,21.429642],[-16.991125,21.487856],[-16.953041,21.833677],[-16.915901,21.870205],[-16.808918,22.162935],[-16.698273,22.281094],[-16.613545,22.267403],[-16.499619,22.317472],[-16.456961,22.391026],[-16.424564,22.521103],[-16.359785,22.574009],[-16.333639,22.756413],[-16.286646,22.891565],[-16.212814,22.916794],[-16.14579,22.992752],[-16.186855,23.127329],[-16.01395,23.365652],[-15.901989,23.564562],[-15.747265,23.77293],[-15.712336,23.895788],[-15.762397,23.95047],[-15.591702,24.052263],[-15.407846,24.254927],[-15.135918,24.511772],[-15.038137,24.538755],[-14.989285,24.62434],[-14.898114,24.692629],[-14.828134,24.922503],[-14.822106,25.028561],[-14.842844,25.212036],[-14.78562,25.429861],[-14.689235,25.571083],[-14.627393,25.784121],[-14.534061,25.90823],[-14.492236,26.004406],[-14.493191,26.146248],[-14.396519,26.264114],[-14.304934,26.29372],[-14.184858,26.423599],[-14.042738,26.444279],[-13.757121,26.599056],[-13.620203,26.685606],[-13.528274,26.805597],[-13.416074,27.090431],[-13.403597,27.177711],[-13.299015,27.324913],[-13.168586,27.667019],[-12.499719,27.668228],[-11.545901,27.665588],[-10.708385,27.665819],[-9.631425,27.665733],[-8.670276,27.662115],[-8.673868,27.298073],[-8.674157,25.997614],[-12.003894,25.998621],[-12.004815,25.259245],[-12.006257,24.786568],[-12,24],[-12,23.454517],[-12.740399,23.391354],[-12.807095,23.361746],[-12.957145,23.213079],[-13.085238,22.994518],[-13.145754,22.731411],[-13.054846,21.840038],[-13.00176,21.330809],[-13.748062,21.339378],[-14.828249,21.343588],[-15.877051,21.341213],[-16.939714,21.326639],[-17.066372,20.923],[-17.051847,20.774158]]]},"properties":{"name":"西撒哈拉","name_en":"WESTERN SAHARA","id":"ESH"}}, + {"type":"Feature","geometry":null,"properties":{"name":"摩纳哥","name_en":"Monaco","id":"MCO"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[7.036167,45.936943],[7.103056,45.867054],[7.381972,45.907585],[7.473277,45.962639],[7.649416,45.986252],[7.794222,45.929943],[7.905528,46.00425],[7.985667,46.004082],[8.030084,46.094082],[8.1645,46.191582],[8.086,46.267223],[8.311055,46.379833],[8.302722,46.427696],[8.460889,46.447777],[8.451583,46.259472],[8.615611,46.129612],[8.807195,46.1115],[8.797139,46.019306],[8.893611,45.963028],[8.949417,45.850056],[9.026139,45.828777],[9.083944,45.90625],[8.993305,45.981777],[9.085749,46.131695],[9.188973,46.182835],[9.292306,46.328388],[9.247249,46.432251],[9.357333,46.508472],[9.543667,46.311138],[9.709361,46.297638],[9.726944,46.347279],[9.949083,46.382584],[9.991472,46.296276],[10.083944,46.236279],[10.171472,46.264694],[10.107278,46.332085],[10.13125,46.432472],[10.043333,46.447498],[10.051194,46.538834],[10.185611,46.623196],[10.3035,46.548584],[10.464222,46.548637],[10.486,46.612999],[10.377944,46.682388],[10.442139,46.754555],[10.470056,46.861889],[10.557,46.841557],[10.658972,46.874222],[10.7285,46.797417],[10.876722,46.767387],[11.014778,46.770306],[11.156861,46.962612],[11.491972,47.013889],[11.620277,47.015472],[11.750139,46.977139],[11.973306,47.053917],[12.184028,47.095196],[12.121611,47.007973],[12.216028,46.879112],[12.296722,46.847721],[12.389389,46.715057],[12.556139,46.658501],[12.69425,46.65836],[12.9335,46.611057],[13.161417,46.59203],[13.23675,46.557304],[13.371889,46.579304],[13.715639,46.524029],[13.676056,46.439304],[13.44875,46.365501],[13.387167,46.303555],[13.491667,46.2285],[13.659194,46.155666],[13.497361,46.055138],[13.593083,45.896137],[13.5975,45.807472],[13.793028,45.740196],[13.907334,45.62925],[13.869084,45.593277],[13.721084,45.594471],[13.747584,45.68586],[13.628361,45.767582],[13.525638,45.770557],[13.478917,45.701057],[13.310917,45.748249],[13.132584,45.770889],[13.087694,45.720665],[13.09925,45.633915],[12.917194,45.618084],[12.747556,45.535862],[12.570027,45.474335],[12.554112,45.571835],[12.353194,45.505943],[12.145111,45.329445],[12.243556,45.188999],[12.38625,45.030777],[12.526472,44.981804],[12.480695,44.850555],[12.367,44.795639],[12.274667,44.815723],[12.244528,44.6945],[12.294417,44.600498],[12.280389,44.527611],[12.387834,44.227055],[12.6905,43.990444],[12.910222,43.928501],[13.265278,43.695805],[13.464528,43.613029],[13.516916,43.631111],[13.627111,43.551834],[13.626833,43.50164],[13.838028,43.107666],[13.885195,42.943306],[14.004306,42.68811],[14.207778,42.482334],[14.389639,42.378807],[14.515722,42.247696],[14.715611,42.172359],[14.728695,42.09375],[14.992972,42.005611],[15.065555,41.947945],[15.279417,41.924889],[15.341139,41.865833],[15.490139,41.877472],[15.58575,41.923721],[15.697528,41.91486],[15.992695,41.949722],[16.14864,41.91111],[16.193167,41.777111],[15.897195,41.619026],[15.895833,41.55275],[15.956417,41.462944],[16.239805,41.33775],[16.345083,41.312],[16.581528,41.209251],[17.094334,41.061165],[17.300278,40.954834],[17.508667,40.811668],[17.685528,40.762501],[17.837999,40.687973],[18.016361,40.640888],[18.0415,40.55661],[18.231583,40.448471],[18.4235,40.290001],[18.508833,40.093918],[18.415445,39.993332],[18.388971,39.819889],[18.198917,39.84],[18.045944,39.930637],[18,39.993668],[17.996666,40.115223],[17.922861,40.176724],[17.895721,40.256722],[17.756889,40.297249],[17.506834,40.293945],[17.225721,40.405388],[17.249834,40.452389],[17.077249,40.521027],[16.897888,40.434277],[16.604944,40.085583],[16.635111,39.957722],[16.493221,39.803696],[16.536138,39.660252],[16.631333,39.619946],[16.776917,39.621166],[16.847305,39.553665],[17.020945,39.486362],[17.15914,39.397194],[17.108973,39.260139],[17.151972,39.202972],[17.116638,39.10939],[17.184639,39.014946],[17.172028,38.954613],[17.092333,38.897415],[16.968471,38.93914],[16.828695,38.913166],[16.629223,38.824276],[16.5425,38.71986],[16.563944,38.678081],[16.588055,38.44836],[16.459528,38.334362],[16.349695,38.302166],[16.16725,38.128807],[16.146,38.025166],[16.066223,37.923332],[15.779305,37.916637],[15.638,38.016724],[15.655972,38.158165],[15.637806,38.23064],[15.817805,38.301582],[15.927305,38.548416],[15.831278,38.619026],[15.875694,38.674057],[16.038445,38.732418],[16.138611,38.722916],[16.215084,38.806026],[16.222473,38.903778],[16.097084,39.031971],[16.052555,39.288776],[15.999,39.429112],[15.884833,39.540474],[15.816749,39.673889],[15.779166,39.893471],[15.624084,40.072193],[15.502194,40.068722],[15.444139,40],[15.332361,40],[15.116,40.177082],[15.031305,40.170696],[14.927944,40.228359],[14.939778,40.337555],[14.988111,40.412918],[14.894417,40.566807],[14.751194,40.678612],[14.526417,40.609306],[14.475555,40.711277],[14.264445,40.843582],[14.181417,40.796165],[14.078055,40.828251],[13.919444,41.01511],[13.835028,41.157249],[13.710527,41.250446],[13.584167,41.24828],[13.550917,41.205112],[13.303139,41.296307],[13.038362,41.231609],[12.941527,41.369835],[12.85425,41.413029],[12.630417,41.443195],[12.484445,41.601666],[12.385111,41.680832],[12.216945,41.748112],[12.14825,41.91325],[11.916611,42.037498],[11.837139,42.031723],[11.646028,42.287888],[11.549833,42.342918],[11.376416,42.400696],[11.217972,42.415833],[11.195389,42.504471],[11.08125,42.642277],[10.963195,42.735279],[10.789083,42.779335],[10.771139,42.91486],[10.608499,42.960945],[10.495444,42.935806],[10.537556,43.113888],[10.519722,43.269085],[10.425834,43.399887],[10.334695,43.473141],[10.29675,43.547806],[10.249111,43.852554],[10.148444,43.975529],[10.051778,44.040749],[9.839194,44.055332],[9.556806,44.207222],[9.232833,44.348667],[8.763917,44.430416],[8.504306,44.330307],[8.398333,44.184582],[8.275888,44.145584],[8.179195,43.963165],[7.9495,43.84964],[7.786639,43.827778],[7.675556,43.785889],[7.523389,43.789722],[7.486667,43.868584],[7.640555,43.982944],[7.711333,44.092804],[7.667444,44.163918],[7.507472,44.151417],[7.424528,44.118751],[7.250889,44.157028],[7.074194,44.236],[7.026028,44.227196],[6.891722,44.380085],[6.849278,44.533279],[6.92575,44.579666],[6.956945,44.678001],[7.02125,44.750446],[6.994916,44.85014],[6.859472,44.856472],[6.743639,44.918667],[6.722583,45.030888],[6.615694,45.105221],[6.758417,45.160862],[6.838833,45.137917],[6.997167,45.224304],[7.122278,45.257751],[7.1085,45.325359],[7.177945,45.402638],[7.007278,45.51136],[6.973444,45.633221],[6.804917,45.725224],[6.801944,45.829861],[7.00475,45.884972],[7.036167,45.936943]]],[[[12.8195,37.582443],[12.679528,37.559444],[12.606584,37.641167],[12.473194,37.703972],[12.426194,37.806972],[12.506361,38.014362],[12.737833,38.144943],[12.917889,38.030498],[13.076805,38.098],[13.124805,38.196972],[13.184445,38.175221],[13.316194,38.227859],[13.383111,38.117222],[13.533666,38.116974],[13.577556,38.037888],[13.74825,37.975529],[14.024555,38.046555],[14.235556,38.014557],[14.499166,38.041779],[14.671445,38.097252],[14.741472,38.165859],[14.917778,38.195194],[15.100028,38.123001],[15.210778,38.186279],[15.445833,38.25264],[15.550805,38.303665],[15.578222,38.229279],[15.507889,38.086639],[15.30725,37.874722],[15.211306,37.738777],[15.170083,37.560944],[15.092972,37.490971],[15.106778,37.310249],[15.194722,37.283054],[15.191667,37.19075],[15.3005,37.105141],[15.301666,37.013805],[15.159445,36.919418],[15.098695,36.781193],[15.14175,36.681946],[15.084167,36.652779],[14.869223,36.731277],[14.702027,36.716332],[14.590222,36.776974],[14.49625,36.789501],[14.392861,36.948971],[14.288028,37.045334],[14.071527,37.109554],[13.878305,37.101944],[13.753695,37.149696],[13.548111,37.285583],[13.45125,37.293915],[13.325027,37.361889],[13.173667,37.492054],[13.009167,37.515751],[12.9375,37.57589],[12.8195,37.582443]]],[[[9.463722,41.144279],[9.567555,41.123249],[9.532278,41.032612],[9.569028,40.931057],[9.691667,40.842861],[9.753805,40.597195],[9.827778,40.51886],[9.773361,40.413528],[9.638139,40.28775],[9.632639,40.185696],[9.729777,40.091972],[9.68475,39.979],[9.67625,39.720665],[9.648556,39.662804],[9.64125,39.449165],[9.600389,39.376499],[9.567278,39.154083],[9.513611,39.105026],[9.432167,39.129776],[9.287694,39.21936],[9.08825,39.219502],[9.02025,39.155418],[9.020722,39.006916],[8.898306,38.907833],[8.797305,38.889526],[8.725945,38.940304],[8.649389,38.896416],[8.514055,39.088276],[8.411083,38.965279],[8.34675,39.08461],[8.434722,39.119972],[8.367778,39.235138],[8.433444,39.293362],[8.37875,39.372833],[8.386444,39.477306],[8.447611,39.544334],[8.440194,39.75275],[8.509694,39.762722],[8.550083,39.860863],[8.5145,39.908669],[8.392389,39.907307],[8.399445,40.035332],[8.485778,40.082748],[8.454833,40.178555],[8.483055,40.283749],[8.379249,40.363194],[8.371361,40.500752],[8.289306,40.598751],[8.145945,40.601276],[8.205083,40.692501],[8.165111,40.77272],[8.219055,40.903446],[8.302834,40.853584],[8.532528,40.828083],[8.711917,40.921665],[8.787361,40.925724],[9.011556,41.127499],[9.152361,41.157612],[9.163362,41.244335],[9.227278,41.263668],[9.303611,41.196888],[9.463722,41.144279]]],[[[10.170584,42.743221],[10.104056,42.796055],[10.271916,42.825417],[10.350166,42.768166],[10.170584,42.743221]]]]},"properties":{"name":"意大利","name_en":"ITALY","id":"ITA"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[12.96863,-5.90692],[12.862789,-5.908664],[12.794079,-5.968194],[12.687908,-6.004007],[12.60105,-5.993598],[12.491638,-6.054217],[12.482485,-5.982462],[12.395845,-5.997328],[12.237205,-5.825132],[12.204144,-5.765666],[12.26479,-5.74189],[12.503003,-5.745229],[12.524555,-5.726872],[12.5182,-5.246326],[12.524532,-5.151568],[12.453798,-5.104201],[12.507224,-5.050639],[12.601883,-5.02676],[12.662383,-4.95363],[12.814644,-4.859489],[12.845901,-4.770315],[13.102497,-4.625668],[13.126475,-4.586651],[13.23295,-4.679845],[13.302512,-4.782232],[13.448685,-4.863441],[13.594442,-4.813753],[13.673186,-4.76265],[13.748176,-4.56728],[13.730344,-4.457811],[13.819195,-4.422533],[13.876802,-4.494586],[13.969067,-4.511284],[14.017611,-4.434021],[14.178457,-4.399586],[14.290273,-4.325048],[14.358328,-4.314187],[14.482252,-4.437007],[14.358883,-4.543601],[14.38545,-4.637833],[14.429112,-4.655138],[14.401115,-4.806427],[14.41206,-4.893814],[14.489867,-4.848159],[14.592003,-4.903398],[14.69051,-4.917224],[14.843789,-4.824485],[14.912356,-4.682193],[15.118428,-4.480533],[15.194308,-4.347605],[15.313166,-4.278873],[15.415301,-4.296507],[15.503943,-4.200987],[15.514399,-4.106581],[15.5615,-4.04695],[15.713846,-3.994079],[15.841413,-3.977225],[15.919945,-3.927281],[15.930373,-3.87291],[16.058149,-3.608875],[16.187096,-3.395443],[16.222395,-3.296272],[16.184074,-3.250495],[16.178284,-3.102118],[16.195341,-3.015955],[16.180214,-2.875008],[16.23575,-2.656546],[16.18428,-2.382887],[16.191469,-2.225043],[16.242018,-2.122595],[16.40555,-1.992041],[16.538164,-1.828789],[16.589008,-1.745197],[16.795807,-1.330821],[16.896601,-1.213554],[17.130281,-1.06404],[17.237497,-1.04714],[17.341194,-0.990493],[17.456505,-0.875605],[17.609581,-0.693548],[17.700066,-0.567603],[17.740395,-0.39775],[17.715263,-0.232831],[17.724592,-0.095211],[17.786934,0.143367],[17.854847,0.260033],[17.92326,0.315841],[17.962597,0.408499],[17.944325,0.512148],[17.886227,0.572316],[17.874414,0.659659],[17.895277,0.775074],[17.844896,0.919185],[17.850117,1.012438],[17.941771,1.164453],[17.976265,1.338227],[18.067961,1.521395],[18.083271,1.703921],[18.058283,1.803795],[18.092531,1.962114],[18.09457,2.23824],[18.185284,2.34502],[18.241749,2.506999],[18.329975,2.584529],[18.429136,2.768233],[18.439541,2.882471],[18.532778,3.070282],[18.584799,3.097586],[18.641741,3.20894],[18.649839,3.330539],[18.635095,3.471089],[18.587137,3.751367],[18.601723,3.895812],[18.652275,3.977893],[18.648847,4.076398],[18.546168,4.301501],[18.578207,4.344087],[18.733341,4.363595],[18.790779,4.417167],[18.831814,4.558328],[18.90596,4.655971],[19.009724,4.75334],[19.112766,4.932861],[19.212036,4.949839],[19.230793,4.997373],[19.403347,5.121121],[19.5662,5.144195],[19.696427,5.132987],[19.825197,5.09344],[19.9151,4.979547],[20.023962,4.965867],[20.196331,4.827287],[20.357857,4.736951],[20.453361,4.627389],[20.453382,4.524955],[20.5329,4.442465],[20.612673,4.401634],[20.783268,4.412536],[20.856983,4.445547],[21.075321,4.392369],[21.118887,4.336147],[21.219294,4.286591],[21.278728,4.337695],[21.427839,4.260674],[21.564785,4.247349],[21.650577,4.309106],[21.954683,4.223979],[22.09528,4.211728],[22.163763,4.154138],[22.28126,4.112094],[22.445164,4.124475],[22.550438,4.21542],[22.596701,4.463446],[22.688225,4.461341],[22.739521,4.624882],[22.790516,4.714526],[22.870134,4.713068],[22.906668,4.817867],[22.983761,4.823298],[23.008646,4.758201],[23.11335,4.707964],[23.159427,4.736118],[23.331215,4.602164],[23.420927,4.588927],[23.425915,4.644638],[23.575653,4.72859],[23.70915,4.782346],[23.780283,4.783554],[23.833492,4.829398],[23.949137,4.852258],[24.090252,4.910327],[24.160479,4.894931],[24.298317,5.002935],[24.380789,5.010741],[24.389401,5.109155],[24.534363,5.080511],[24.610535,5.032056],[24.661749,4.916743],[24.784544,4.905525],[25.000326,4.993162],[25.08222,4.938931],[25.154159,5.028268],[25.31797,5.036223],[25.355208,5.149122],[25.320646,5.187434],[25.367708,5.315548],[25.497469,5.364079],[25.587898,5.369894],[25.74968,5.237842],[25.798954,5.26261],[25.902735,5.170625],[25.985166,5.23966],[26.09267,5.206573],[26.140953,5.263077],[26.301684,5.141724],[26.390943,5.147448],[26.463657,5.058541],[26.74996,5.103511],[26.872164,5.033753],[26.935108,5.134194],[27.078672,5.204131],[27.142937,5.204216],[27.231823,5.152315],[27.43156,5.077729],[27.463421,5.016153],[27.580335,4.885361],[27.657469,4.891273],[27.713717,4.785858],[27.787396,4.736298],[27.786022,4.628577],[27.868265,4.547898],[28.035048,4.550398],[28.031967,4.47767],[28.071818,4.414419],[28.201092,4.347533],[28.318312,4.352965],[28.374576,4.275577],[28.45787,4.285298],[28.510124,4.36906],[28.66222,4.419617],[28.721332,4.536247],[28.7866,4.558228],[28.83316,4.473036],[29.009434,4.492551],[29.204639,4.338347],[29.338272,4.401318],[29.471808,4.592255],[29.461695,4.662755],[29.611044,4.660898],[29.733219,4.574481],[29.82029,4.558717],[29.798374,4.368258],[29.902332,4.343625],[29.944063,4.241593],[30.038128,4.188783],[30.078886,4.112746],[30.15773,4.092711],[30.222595,3.937439],[30.386951,3.908523],[30.493002,3.856813],[30.5466,3.86815],[30.584925,3.680239],[30.57329,3.592095],[30.667433,3.636404],[30.85696,3.568896],[30.853569,3.48639],[30.933472,3.482229],[30.935602,3.40154],[30.829168,3.255208],[30.779251,3.06835],[30.880405,2.883495],[30.756674,2.592711],[30.752777,2.438503],[30.833559,2.426479],[30.885963,2.344041],[30.985323,2.408754],[31.126642,2.269035],[31.30493,2.15688],[31.305361,2.11931],[31.22819,1.991877],[31.02577,1.749802],[30.699885,1.494337],[30.468384,1.213292],[30.362999,1.200461],[30.243277,1.085276],[30.224484,0.994873],[30.14459,0.885302],[30.100248,0.894276],[29.984388,0.841495],[29.950308,0.633025],[29.973263,0.517733],[29.872433,0.392724],[29.814989,0.164289],[29.734698,0.129093],[29.716425,0.026434],[29.743191,-0.030166],[29.653698,-0.46851],[29.681017,-0.566212],[29.626041,-0.705782],[29.638851,-0.818742],[29.587933,-0.904934],[29.577084,-1.196532],[29.601068,-1.22053],[29.595316,-1.392395],[29.5194,-1.419934],[29.454336,-1.501625],[29.356497,-1.519772],[29.265423,-1.638326],[29.244518,-1.704179],[29.126463,-1.882589],[29.176296,-2.095814],[29.1686,-2.147989],[29.087776,-2.280179],[29.009407,-2.290667],[28.949511,-2.377315],[28.867539,-2.428291],[28.890863,-2.48307],[28.895725,-2.663625],[29.032165,-2.749662],[28.994848,-2.789144],[29.081457,-2.881034],[29.084665,-2.929805],[29.242169,-3.053818],[29.200918,-3.308666],[29.238214,-3.521051],[29.231802,-3.790512],[29.25371,-3.918101],[29.347843,-4.041376],[29.382076,-4.210762],[29.391476,-4.44525],[29.386379,-4.540749],[29.327167,-4.698912],[29.337156,-4.853596],[29.410162,-5.12354],[29.529745,-5.415081],[29.575602,-5.555771],[29.607328,-5.768335],[29.57818,-5.962874],[29.594871,-6.252271],[29.655048,-6.413446],[29.791624,-6.60899],[29.906258,-6.708418],[30.08506,-6.836075],[30.238564,-7.021798],[30.358889,-7.247829],[30.422859,-7.418212],[30.522249,-7.619986],[30.651621,-7.980675],[30.738659,-8.109818],[30.774246,-8.22436],[30.123306,-8.312075],[30,-8.316212],[28.927227,-8.470301],[28.962978,-8.650491],[28.89654,-8.794926],[28.695614,-9.034298],[28.482864,-9.171009],[28.393963,-9.245149],[28.358179,-9.363107],[28.515633,-9.443811],[28.572058,-9.499983],[28.615078,-9.601866],[28.622698,-9.720609],[28.674477,-9.815699],[28.62495,-9.957171],[28.621767,-10.15705],[28.577156,-10.230619],[28.63697,-10.314353],[28.63657,-10.528714],[28.696791,-10.662585],[28.553543,-10.832429],[28.540401,-10.932685],[28.475929,-11.105466],[28.48686,-11.244254],[28.393973,-11.474719],[28.381357,-11.585324],[28.431433,-11.657539],[28.415468,-11.730465],[28.441721,-11.831776],[28.50387,-11.879418],[28.610889,-11.910967],[28.640038,-11.95217],[28.764109,-11.994907],[28.778404,-12.055421],[28.934855,-12.198804],[29.058811,-12.389108],[29.129374,-12.395296],[29.26692,-12.3642],[29.29558,-12.409023],[29.378126,-12.41701],[29.47489,-12.471418],[29.535673,-12.429368],[29.456163,-12.333491],[29.489256,-12.23857],[29.575176,-12.192832],[29.633453,-12.20671],[29.809622,-12.161048],[29.810049,-12.546627],[29.808962,-13.455143],[29.712383,-13.455675],[29.610662,-13.408811],[29.658184,-13.339398],[29.643097,-13.239633],[29.528047,-13.227712],[29.441837,-13.313898],[29.316036,-13.331981],[29.306595,-13.368251],[29.179623,-13.441484],[29.142847,-13.381161],[29.020134,-13.417684],[28.969227,-13.366767],[28.903566,-13.161983],[28.846952,-13.145169],[28.833748,-13.026697],[28.733194,-12.886107],[28.652645,-12.818785],[28.544029,-12.856295],[28.45405,-12.706922],[28.516209,-12.618152],[28.32671,-12.424858],[28.242399,-12.422106],[28.086576,-12.358851],[27.961994,-12.352859],[27.917715,-12.240463],[27.82683,-12.230768],[27.758079,-12.289334],[27.656277,-12.287074],[27.508339,-12.137142],[27.449953,-11.913944],[27.227985,-11.777767],[27.209297,-11.572985],[27.04438,-11.602871],[27.048574,-11.698529],[27.007517,-11.846878],[26.88356,-11.984588],[26.7547,-11.973725],[26.71825,-12.008811],[26.559149,-11.979193],[26.468266,-11.920059],[26.334707,-11.964707],[26.191765,-11.938959],[25.989666,-11.940619],[25.987082,-11.898076],[25.823656,-11.828087],[25.718731,-11.815708],[25.655064,-11.733183],[25.505621,-11.786474],[25.494352,-11.712446],[25.341164,-11.631326],[25.294559,-11.510016],[25.311289,-11.348482],[25.303782,-11.191401],[25.10704,-11.249911],[24.873541,-11.262112],[24.853081,-11.292967],[24.732826,-11.311985],[24.605156,-11.414456],[24.591887,-11.448508],[24.471544,-11.460743],[24.349585,-11.366422],[24.398087,-11.267292],[24.378765,-11.087183],[24.320316,-11.052664],[24.13101,-11.023773],[24.130417,-10.921878],[23.995695,-10.891575],[23.872312,-11.017395],[23.763384,-10.997374],[23.672083,-11.008182],[23.540447,-10.95949],[23.417578,-10.94504],[23.203173,-11.102197],[23.073095,-11.122757],[22.859133,-11.061598],[22.787092,-11.113168],[22.723286,-11.110024],[22.585417,-11.035999],[22.510153,-11.042392],[22.48716,-11.132171],[22.425551,-11.17889],[22.347032,-11.178544],[22.290079,-11.251032],[22.216583,-11.088059],[22.180788,-10.852005],[22.334898,-10.754074],[22.311459,-10.535863],[22.277967,-10.508468],[22.322805,-10.420269],[22.312502,-10.340161],[22.222671,-10.158716],[22.218664,-10.022099],[22.185875,-9.91745],[22.025406,-9.835177],[21.939978,-9.693267],[21.875927,-9.653144],[21.868168,-9.565719],[21.796064,-9.427587],[21.860544,-9.241109],[21.843429,-9.068139],[21.868408,-8.868245],[21.95891,-8.488909],[21.918108,-8.383592],[21.877857,-8.197234],[21.745449,-7.938798],[21.762057,-7.845356],[21.853283,-7.55375],[21.85673,-7.470244],[21.819744,-7.327551],[21.780588,-7.283894],[21.293211,-7.278564],[20.541683,-7.28143],[20.551584,-7.112649],[20.627148,-6.913397],[20.317,-6.913004],[20.30171,-6.998033],[19.543793,-6.999424],[19.562788,-7.057445],[19.495575,-7.177791],[19.494425,-7.367979],[19.544743,-7.457033],[19.462063,-7.570603],[19.381042,-7.56871],[19.402334,-7.708857],[19.345857,-7.904356],[19.374403,-8],[18.800198,-8],[18.779507,-7.921579],[18.53232,-7.920376],[18.527325,-8],[18.391073,-8],[18.37566,-8.027326],[18.226528,-7.989231],[18.098198,-8.040184],[18.100361,-8.099057],[17.884922,-8.078966],[17.783718,-8.112787],[17.728726,-8.096469],[17.560333,-8.127451],[17.528042,-8.035531],[17.442356,-7.927346],[17.378706,-7.786026],[17.292313,-7.693701],[17.306286,-7.636915],[17.237455,-7.59592],[17.108393,-7.417594],[17.116396,-7.357648],[17.00551,-7.30005],[16.928045,-7.08422],[16.982739,-7.023312],[16.937092,-6.957802],[16.940367,-6.874829],[16.876282,-6.846851],[16.801031,-6.699099],[16.755825,-6.518699],[16.689982,-6.400587],[16.724872,-6.338824],[16.689707,-6.139627],[16.611578,-6.091666],[16.599735,-5.918555],[16.511688,-5.878445],[16.454607,-5.896305],[16.36594,-5.864694],[15.794682,-5.879732],[14.963,-5.873365],[14.699072,-5.881038],[14.61076,-5.909719],[14.45863,-5.901176],[14.177259,-5.861608],[14.038134,-5.884214],[13.986273,-5.841628],[13.829269,-5.875072],[13.395745,-5.870474],[13.348977,-5.900967],[13.247782,-5.865144],[13.1151,-5.900453],[13.07964,-5.872716],[12.96863,-5.90692]]]},"properties":{"name":"刚果民主共和国","name_en":"D.R.CONGO","id":"COD"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.2547,34.700722],[134.175034,34.613861],[134.040192,34.571362],[133.966049,34.520748],[133.937576,34.448666],[133.673248,34.521],[133.541717,34.460167],[133.491867,34.503693],[133.368897,34.365723],[133.268143,34.391361],[133.119141,34.379501],[133.079804,34.33736],[132.965881,34.336639],[132.642609,34.198502],[132.571854,34.192223],[132.496826,34.309834],[132.399887,34.371666],[132.228195,34.237915],[132.251419,34.159611],[132.202728,34.114918],[132.22142,33.996777],[132.13208,33.932888],[132.026535,33.89711],[131.793579,34.049946],[131.713867,34.053417],[131.236557,33.912666],[131.163635,33.9855],[131.05159,34.038582],[130.930924,33.9375],[130.913605,34.055805],[130.863892,34.1045],[130.935577,34.186085],[130.8768,34.278694],[131.070145,34.419945],[131.306747,34.380196],[131.418609,34.425278],[131.617645,34.666805],[131.768616,34.677696],[131.854035,34.710972],[132.087357,34.928585],[132.244507,35.032501],[132.311859,35.053249],[132.4225,35.180637],[132.623581,35.279556],[132.678696,35.395943],[132.632279,35.430695],[132.837753,35.504723],[132.958191,35.516167],[133.061829,35.566002],[133.201035,35.577778],[133.268783,35.495419],[133.418244,35.454193],[133.449524,35.492863],[133.594254,35.530224],[133.755188,35.500584],[134.041168,35.517277],[134.275391,35.55875],[134.544479,35.668888],[134.915939,35.644779],[135.087997,35.73875],[135.23497,35.772057],[135.312363,35.698502],[135.251358,35.624668],[135.249222,35.536556],[135.341171,35.532471],[135.455979,35.579498],[135.530914,35.489307],[135.653473,35.479443],[135.814804,35.528641],[135.937393,35.614307],[136.02153,35.764137],[136.103333,35.774418],[135.999298,35.891109],[135.961944,35.985416],[136.136475,36.203335],[136.448639,36.443974],[136.632553,36.645084],[136.755173,36.839249],[136.771255,36.998054],[136.674332,37.14489],[136.728729,37.261971],[136.727646,37.325611],[136.845672,37.397362],[136.925857,37.392693],[137.115692,37.485363],[137.333053,37.526054],[137.366745,37.448307],[137.260467,37.424778],[137.275803,37.3325],[137.230698,37.293026],[137.10434,37.273418],[137.013,37.181221],[136.957367,37.227833],[136.865723,37.107334],[136.974396,37.051498],[137.056747,37.099529],[137.060913,36.962639],[136.98819,36.873085],[137.106415,36.78286],[137.191559,36.756084],[137.33255,36.762196],[137.393021,36.806557],[137.431885,36.924057],[137.917969,37.062557],[138.099915,37.17461],[138.270889,37.191002],[138.442337,37.32336],[138.543228,37.363666],[138.623276,37.478695],[138.720245,37.558971],[138.777588,37.649639],[138.81839,37.78561],[138.886978,37.845139],[139.077255,37.950195],[139.265167,38.014526],[139.40831,38.148388],[139.454285,38.240418],[139.458801,38.392582],[139.604523,38.654362],[139.760941,38.788082],[139.865585,39.025665],[139.921524,39.280834],[140.014419,39.36639],[140.054245,39.51786],[140.061554,39.735138],[140.020752,39.838444],[139.957382,39.89772],[139.746857,39.867474],[139.697662,39.990417],[139.808136,39.954083],[139.898667,40],[139.973526,40.106224],[140.020248,40.244362],[140.028503,40.354057],[139.943192,40.424999],[139.949341,40.542721],[139.863022,40.609528],[139.931854,40.642139],[140.002609,40.739887],[140.108719,40.743],[140.242645,40.785057],[140.29361,40.868668],[140.330383,41.033669],[140.296616,41.111862],[140.352493,41.255806],[140.471024,41.178585],[140.577332,41.22036],[140.64447,41.1805],[140.637726,41.093639],[140.688248,40.876415],[140.790283,40.830639],[140.863144,40.884361],[140.884781,41.006416],[141.104858,40.870167],[141.218384,40.948723],[141.282395,41.153641],[141.201965,41.269722],[141.062912,41.178082],[140.771057,41.139637],[140.830551,41.381527],[140.900665,41.473057],[140.979248,41.497082],[141.119858,41.462917],[141.19545,41.388863],[141.286697,41.350166],[141.402496,41.379555],[141.395386,40.883915],[141.451416,40.639889],[141.497894,40.554165],[141.583694,40.541195],[141.778229,40.341721],[141.841003,40.214722],[141.837692,40.078472],[141.964172,39.951248],[142.009445,39.770557],[141.990585,39.674],[142.026108,39.62664],[142.062302,39.467304],[141.942078,39.387444],[141.956558,39.340111],[141.869385,39.193333],[141.920166,39.109055],[141.849243,39.024776],[141.769409,39.029667],[141.668716,38.976501],[141.521301,38.783806],[141.533524,38.621029],[141.48645,38.577332],[141.500336,38.449501],[141.44014,38.380001],[141.317535,38.412109],[141.161133,38.36475],[141.005386,38.239555],[140.952423,38.164555],[140.919449,38.03336],[140.924744,37.925888],[141.003189,37.762279],[141.043701,37.472946],[141.037689,37.34911],[140.974747,36.97747],[140.813522,36.902363],[140.754501,36.789444],[140.720108,36.66275],[140.614777,36.46875],[140.631103,36.375278],[140.564606,36.269638],[140.580002,36.171806],[140.662338,35.998306],[140.812439,35.783779],[140.880173,35.725918],[140.616333,35.664307],[140.478531,35.555443],[140.395859,35.377724],[140.422089,35.305054],[140.392715,35.190666],[140.242661,35.113056],[140.138779,35.118778],[139.997391,35.019749],[139.937271,34.910057],[139.848312,34.902168],[139.774002,34.953583],[139.8358,35.039276],[139.822723,35.16814],[139.877029,35.226055],[139.819244,35.315224],[139.891617,35.358944],[140.120163,35.57375],[140.026337,35.65414],[139.765106,35.618057],[139.792969,35.577305],[139.635605,35.40789],[139.637359,35.300945],[139.718826,35.208832],[139.628494,35.159111],[139.5728,35.288639],[139.43634,35.316833],[139.254974,35.287998],[139.149521,35.224804],[139.148697,35.145054],[139.086502,35.093445],[139.132309,34.873528],[138.988113,34.701363],[138.994522,34.660332],[138.833359,34.606472],[138.747757,34.725693],[138.78183,34.766029],[138.759918,34.881416],[138.818222,35.113415],[138.720474,35.133862],[138.609589,35.114334],[138.514862,35.043751],[138.484863,34.956917],[138.367691,34.91325],[138.299576,34.76572],[138.238052,34.732498],[138.195831,34.601501],[138.052857,34.651165],[137.900635,34.666695],[137.782257,34.646057],[137.611969,34.67786],[137.492813,34.674915],[137.149826,34.587807],[137.106918,34.633835],[137.230804,34.680389],[137.330505,34.747807],[137.319977,34.798779],[136.920471,34.772194],[136.829803,34.908138],[136.885773,35.053391],[136.769562,35.051971],[136.658051,34.987835],[136.658951,34.91478],[136.547913,34.772083],[136.524887,34.700222],[136.564529,34.609501],[136.866562,34.491528],[136.922836,34.404026],[136.885254,34.342277],[136.78241,34.291637],[136.577194,34.285641],[136.477661,34.22636],[136.309311,34.172611],[136.202469,33.916916],[136.086411,33.861832],[135.911331,33.545193],[135.764526,33.478306],[135.516083,33.523666],[135.400116,33.582863],[135.401977,33.707863],[135.325867,33.765167],[135.192245,33.819363],[135.148254,33.884693],[135.075775,33.881584],[135.090836,33.988445],[135.175949,34.026585],[135.118439,34.095085],[135.190826,34.142502],[135.145782,34.22686],[135.069061,34.262585],[135.108551,34.3195],[135.225113,34.346417],[135.322937,34.415222],[135.453308,34.553638],[135.425827,34.657166],[135.343643,34.727611],[135.242615,34.703693],[135.142609,34.643501],[134.988358,34.639637],[134.759033,34.768917],[134.475998,34.773972],[134.410858,34.736778],[134.2547,34.700722]]],[[[141.345169,42.532917],[141.151062,42.431805],[141.042526,42.342224],[140.90509,42.376694],[140.861923,42.460529],[140.711502,42.577168],[140.476364,42.581612],[140.38942,42.51239],[140.302887,42.379471],[140.283951,42.264973],[140.40741,42.209251],[140.546966,42.115166],[140.708191,42.135029],[140.963226,41.915668],[141.085007,41.884609],[141.189224,41.817112],[141.057663,41.721638],[140.939224,41.730835],[140.633423,41.808529],[140.595856,41.736721],[140.442078,41.660057],[140.436783,41.531029],[140.268311,41.475361],[140.208725,41.393639],[140.081604,41.418278],[139.988495,41.549805],[140.008087,41.674137],[140.123031,41.814304],[140.145859,41.912056],[140.054642,42.083473],[139.927826,42.127388],[139.86441,42.211918],[139.776062,42.257862],[139.782364,42.347111],[139.854477,42.462002],[139.823776,42.603027],[139.869476,42.662472],[140.034164,42.688362],[140.132217,42.745804],[140.186996,42.82061],[140.264252,42.766418],[140.420334,42.942081],[140.532776,43.007278],[140.327026,43.230141],[140.358887,43.328918],[140.504577,43.366749],[140.6418,43.265251],[140.800247,43.190723],[140.977081,43.235001],[141.031632,43.180443],[141.158554,43.143528],[141.277695,43.187946],[141.424744,43.32489],[141.42981,43.413418],[141.361115,43.513363],[141.385559,43.575638],[141.331192,43.72747],[141.404419,43.816002],[141.582611,43.874443],[141.662384,44.013527],[141.649643,44.310001],[141.750305,44.435276],[141.791382,44.660137],[141.731674,44.904804],[141.578277,45.171166],[141.575943,45.236946],[141.656113,45.364307],[141.872909,45.445332],[141.94014,45.52314],[142.054199,45.400028],[142.166229,45.339359],[142.268173,45.241085],[142.531113,45.027779],[142.742645,44.763889],[143.015198,44.545113],[143.353195,44.36739],[143.406952,44.312389],[143.537308,44.255974],[143.809006,44.173862],[144.220947,44.100193],[144.30333,43.981693],[144.448258,43.937946],[144.712692,43.919334],[144.78508,43.929943],[145.152054,44.175999],[145.301697,44.307251],[145.367996,44.270306],[145.261063,44.127167],[145.245423,44.065777],[145.095215,43.890415],[145.069672,43.753555],[145.137634,43.6535],[145.214447,43.620167],[145.304169,43.285],[145.495468,43.264999],[145.653443,43.388363],[145.750275,43.328415],[145.570252,43.279751],[145.479141,43.182556],[145.291244,43.166527],[145.118393,43.124138],[145.078888,43.036026],[144.967285,42.978638],[144.938522,43.049027],[144.786529,43.048668],[144.629059,42.948082],[144.480606,42.935638],[144.348755,42.997276],[144.198975,42.987526],[143.919784,42.869751],[143.574997,42.615749],[143.412521,42.43861],[143.323273,42.294224],[143.340942,42.194027],[143.312271,42.069527],[143.241135,41.9235],[143.137085,42.023224],[142.964478,42.114082],[142.822388,42.133915],[142.479965,42.27],[142.307022,42.35611],[142.175278,42.453167],[142.033478,42.479778],[141.896133,42.57822],[141.691971,42.626362],[141.578033,42.620998],[141.345169,42.532917]]],[[[131.84845,33.247196],[131.841171,33.174],[131.916473,33.075668],[131.897949,32.983444],[131.990387,32.900665],[132.005386,32.812557],[131.879272,32.769279],[131.844803,32.684917],[131.714478,32.598473],[131.50206,32],[131.446579,31.810972],[131.490387,31.77],[131.463394,31.616777],[131.38533,31.546583],[131.333313,31.379917],[131.253311,31.37525],[131.212967,31.439917],[131.096924,31.457945],[131.019669,31.353527],[131.110443,31.324972],[131.060135,31.216778],[130.918274,31.105249],[130.801773,31.074194],[130.690414,31.013222],[130.67392,31.079472],[130.734421,31.115667],[130.803146,31.325527],[130.701813,31.461361],[130.669968,31.545029],[130.782105,31.570694],[130.821335,31.646278],[130.698578,31.7215],[130.620941,31.691195],[130.517059,31.467556],[130.576813,31.308111],[130.669693,31.256916],[130.638611,31.180416],[130.519562,31.160055],[130.463059,31.242805],[130.216522,31.257],[130.200058,31.348917],[130.315521,31.474138],[130.33139,31.634556],[130.175812,31.780472],[130.223892,31.895861],[130.211395,32.042057],[130.237503,32.127304],[130.311951,32.103527],[130.368118,32.144279],[130.494217,32.360333],[130.576859,32.432861],[130.549271,32.517918],[130.663773,32.617416],[130.465134,32.628418],[130.612366,32.714748],[130.617859,32.789417],[130.571838,32.846085],[130.453354,32.916752],[130.418442,32.996555],[130.435669,33.065639],[130.254868,33.187248],[130.151672,33.102585],[130.206909,32.920387],[130.193283,32.83514],[130.313003,32.872833],[130.386246,32.783501],[130.351059,32.667667],[130.228943,32.601444],[130.136368,32.667168],[130.208755,32.718971],[130.182449,32.784973],[129.957535,32.755501],[129.901199,32.652695],[129.799942,32.768696],[129.688507,32.84111],[129.631668,32.943222],[129.685608,33.09111],[129.827271,32.966251],[129.795746,32.870667],[129.898117,32.864807],[129.950394,32.979832],[129.894562,33.047833],[129.687164,33.107555],[129.684311,33.155029],[129.559326,33.215862],[129.592422,33.269638],[129.581451,33.375668],[129.706024,33.34214],[129.809174,33.390335],[129.792221,33.438862],[129.864029,33.538387],[129.941696,33.471695],[130.157303,33.533195],[130.110336,33.592415],[130.241089,33.611752],[130.396271,33.590752],[130.496048,33.847389],[130.630218,33.877529],[130.702271,33.935471],[130.812424,33.950943],[130.947922,33.927696],[131.08667,33.631889],[131.29419,33.57478],[131.435776,33.568195],[131.521271,33.665474],[131.670257,33.662918],[131.735916,33.582001],[131.740799,33.466694],[131.70842,33.402611],[131.604416,33.343498],[131.509216,33.354057],[131.516419,33.265804],[131.590836,33.243889],[131.686493,33.267139],[131.84845,33.247196]]],[[[133.105087,33.017387],[133.003754,32.981583],[133.015671,32.899944],[132.959472,32.81089],[132.761582,32.747417],[132.639832,32.784027],[132.694717,32.911804],[132.606613,32.903667],[132.506439,32.999584],[132.429504,33.148693],[132.558533,33.22403],[132.428192,33.298973],[132.3517,33.468971],[132.463745,33.595333],[132.656631,33.696304],[132.702194,33.758446],[132.717911,33.90414],[132.779892,33.997528],[132.978424,34.107307],[133.077393,33.955944],[133.154831,33.916805],[133.334076,33.989666],[133.501358,33.965248],[133.638245,34.063972],[133.64978,34.187248],[133.827744,34.319027],[133.960663,34.378861],[134.088501,34.348026],[134.169144,34.38261],[134.298584,34.271641],[134.459274,34.204777],[134.573563,34.230335],[134.647827,34.175777],[134.586197,34.032276],[134.708496,33.922222],[134.657196,33.788555],[134.38092,33.629639],[134.326141,33.577362],[134.226166,33.41264],[134.180664,33.240749],[133.93309,33.483082],[133.734421,33.531502],[133.593002,33.512054],[133.297134,33.378971],[133.247726,33.326332],[133.262146,33.221584],[133.125839,33.078999],[133.105087,33.017387]]],[[[128.326386,26.74925],[128.240967,26.63125],[128.15686,26.623806],[128.135498,26.55175],[127.998726,26.497555],[127.877945,26.374306],[127.763862,26.203028],[127.773834,26.129],[127.683639,26.072],[127.645386,26.206528],[127.756386,26.290251],[127.726059,26.380251],[127.87497,26.505751],[127.971581,26.544001],[127.889114,26.615723],[127.878136,26.690416],[128.003662,26.687277],[128.083969,26.643639],[128.155807,26.739584],[128.226166,26.7885],[128.326386,26.74925]]],[[[138.216385,37.83147],[138.288666,37.919277],[138.239868,37.96764],[138.23645,38.065056],[138.332947,38.197334],[138.517807,38.315807],[138.497635,38.206833],[138.441086,38.117943],[138.557938,38.016613],[138.470886,37.891445],[138.364105,37.826557],[138.216385,37.83147]]],[[[129.411728,28.246723],[129.473465,28.214945],[129.360504,28.127832],[129.280396,28.205029],[129.1828,28.220167],[129.254502,28.311361],[129.339493,28.357639],[129.495697,28.401028],[129.615189,28.469917],[129.635361,28.409805],[129.53978,28.302444],[129.411728,28.246723]]],[[[135,34.538471],[134.906021,34.42564],[134.900757,34.349777],[134.959167,34.267193],[134.738632,34.186554],[134.662506,34.26664],[134.742187,34.344444],[134.798813,34.44664],[134.998672,34.607639],[135,34.538471]]],[[[130,32.384804],[130.069031,32.511971],[130.194382,32.543251],[130.206329,32.446167],[130.229523,32.383335],[130.219055,32.332417],[130.072968,32.202778],[129.995087,32.242474],[130,32.384804]]],[[[130.489273,30.228527],[130.42009,30.26725],[130.382828,30.355972],[130.478607,30.453888],[130.673004,30.378555],[130.60878,30.251778],[130.489273,30.228527]]],[[[129.453979,34.695721],[129.491775,34.670502],[129.478134,34.554028],[129.327835,34.362915],[129.263367,34.363724],[129.275803,34.46439],[129.323609,34.533165],[129.325089,34.641777],[129.453979,34.695721]]],[[[130.871643,30.341694],[130.853607,30.448723],[130.954773,30.576166],[130.945114,30.664528],[131.008667,30.776056],[131.086441,30.783056],[131.031326,30.557667],[130.969452,30.474695],[130.967224,30.365862],[130.871643,30.341694]]],[[[128.772247,32.570332],[128.641327,32.588943],[128.697891,32.733112],[128.793167,32.770332],[128.894867,32.637112],[128.767578,32.618279],[128.772247,32.570332]]],[[[133.325363,36.198002],[133.183548,36.208057],[133.198868,36.296444],[133.290588,36.332748],[133.362915,36.293667],[133.325363,36.198002]]],[[[123.855583,24.28525],[123.747139,24.321278],[123.809219,24.406027],[123.939026,24.357222],[123.855583,24.28525]]],[[[129.191025,34.225887],[129.197006,34.296806],[129.349701,34.288971],[129.282974,34.127251],[129.169632,34.136917],[129.191025,34.225887]]],[[[128.980087,27.80864],[129.020889,27.713028],[128.941894,27.654806],[128.906021,27.757668],[128.897247,27.883612],[128.969452,27.886723],[128.980087,27.80864]]],[[[130.360504,32.40411],[130.310394,32.390446],[130.228226,32.412109],[130.212585,32.445057],[130.365494,32.523251],[130.441727,32.461472],[130.360504,32.40411]]],[[[141.2202,45.106998],[141.141113,45.162971],[141.201141,45.257111],[141.27919,45.232056],[141.335022,45.153332],[141.2202,45.106998]]],[[[124.181892,24.325472],[124.119163,24.44039],[124.261497,24.46825],[124.255752,24.368221],[124.181892,24.325472]]],[[[129.378479,33.162888],[129.441192,33.340973],[129.564163,33.361221],[129.503021,33.251083],[129.378479,33.162888]]],[[[139.46225,42.061279],[139.410721,42.174999],[139.537216,42.229443],[139.498886,42.076695],[139.46225,42.061279]]],[[[134.28447,34.444389],[134.163666,34.505054],[134.353424,34.562973],[134.342301,34.446667],[134.28447,34.444389]]],[[[125.46917,24.715889],[125.310219,24.710501],[125.266304,24.782333],[125.335747,24.804777],[125.46917,24.715889]]],[[[129.720673,33.699001],[129.657303,33.806137],[129.772949,33.834862],[129.78653,33.736221],[129.720673,33.699001]]],[[[128.702896,27.431583],[128.590256,27.322834],[128.52269,27.373333],[128.702896,27.431583]]],[[[145.790802,43.964222],[145.584808,43.856388],[145.548477,43.724083],[145.432922,43.717361],[145.412949,43.844776],[145.477005,43.897694],[145.720978,44.03614],[145.744141,44.0975],[145.901581,44.25861],[145.969162,44.298637],[146.093079,44.482945],[146.170303,44.514252],[146.336838,44.415527],[146.552887,44.426613],[146.490967,44.35228],[146.376495,44.345417],[146.286499,44.27161],[146.10495,44.255165],[146.023941,44.172138],[145.945313,44.148666],[145.790802,43.964222]]],[[[146.646973,43.758389],[146.725799,43.831501],[146.850006,43.888111],[146.881256,43.813972],[146.676605,43.710194],[146.646973,43.758389]]],[[[147.519165,45],[147.560577,45.104362],[147.654159,45.074223],[147.741776,45.190582],[147.87381,45.217724],[147.858383,45.368],[147.972672,45.388416],[148.042419,45.260723],[148.197754,45.25275],[148.335144,45.278278],[148.658386,45.529362],[148.755036,45.548668],[148.877441,45.529915],[148.883118,45.388973],[148.789368,45.315193],[148.646637,45.326946],[148.503113,45.25061],[148.332077,45.215057],[148.103302,45.106693],[147.9133,44.958805],[147.782883,44.944222],[147.713775,45.006168],[147.550812,44.81139],[147.34047,44.712002],[147.20134,44.562889],[147.042282,44.529026],[146.948059,44.423248],[146.855255,44.453777],[146.886505,44.514889],[147.188172,44.69175],[147.194809,44.757416],[147.272049,44.868694],[147.379868,44.908196],[147.519165,45]]]]},"properties":{"name":"日本","name_en":"JAPAN","id":"JPN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[80.23315,42.210225],[80.139622,42.151205],[80.193474,42.081458],[80.157556,42.037836],[79.923856,42.042274],[79.780008,41.898429],[79.641037,41.884793],[79.54237,41.833785],[79.462676,41.84852],[79.322764,41.806288],[79.218912,41.726431],[78.9598,41.652505],[78.803839,41.565389],[78.710725,41.549552],[78.650497,41.467272],[78.384377,41.394566],[78.159725,41.377088],[78.129129,41.228231],[77.96348,41.173188],[77.904789,41.185207],[77.807702,41.123418],[77.780487,41.023011],[77.488584,40.997826],[77.376354,41.039189],[77.274535,41.005413],[77.169344,41.009098],[77.002191,41.073454],[76.854321,40.982562],[76.76201,40.953981],[76.731505,40.819082],[76.644354,40.749458],[76.66007,40.627851],[76.552327,40.531498],[76.539485,40.464003],[76.437476,40.387882],[76.36524,40.380432],[76.275232,40.438019],[76.176363,40.381508],[76.100233,40.391321],[75.959024,40.359506],[75.890403,40.309359],[75.704903,40.307833],[75.669922,40.363823],[75.733073,40.474252],[75.646197,40.516689],[75.636871,40.624503],[75.514832,40.627098],[75.432372,40.563322],[75.221483,40.44734],[75.004022,40.45784],[74.844505,40.521297],[74.801515,40.437591],[74.911653,40.345272],[74.70681,40.346572],[74.645988,40.27277],[74.356668,40.08928],[74.263271,40.125071],[74.039518,40.091969],[73.862134,39.849193],[73.841807,39.75631],[73.92483,39.716959],[73.953572,39.600233],[73.823727,39.470834],[73.610675,39.465853],[73.390114,39.451248],[73.355141,39.39753],[73.238777,39.405693],[73.212997,39.356224],[73.095696,39.373444],[72.785751,39.342888],[72.690971,39.384445],[72.595108,39.357307],[72.349525,39.330002],[72.263031,39.210861],[72.106697,39.264637],[72.035637,39.366501],[71.918747,39.280277],[71.802025,39.273693],[71.75267,39.323971],[71.786469,39.443417],[71.562447,39.454861],[71.551025,39.58736],[71.258583,39.548916],[71.089668,39.499168],[71.066055,39.414223],[70.912414,39.383305],[70.768028,39.399361],[70.761444,39.462471],[70.660614,39.565971],[70.484779,39.612583],[70.374947,39.590973],[70.272781,39.527279],[70.108498,39.584],[70.013168,39.539555],[69.932053,39.577084],[69.867332,39.523445],[69.712113,39.59325],[69.626137,39.585167],[69.483276,39.524887],[69.340195,39.539249],[69.320305,39.709473],[69.276611,39.791138],[69.373085,40.020443],[69.426003,39.906113],[69.533081,39.932919],[69.507057,40.033833],[69.562553,40.103832],[69.701279,40.116417],[70.039948,40.23875],[70.215164,40.128334],[70.26886,40.131722],[70.565086,40.020695],[70.759056,40.089863],[70.82428,40.159752],[70.962692,40.158112],[70.967613,40.2285],[70.963165,40.259918],[71.118225,40.319332],[71.277336,40.326721],[71.486916,40.262417],[71.551056,40.199638],[71.680191,40.231972],[71.716194,40.150806],[71.939476,40.22464],[71.997055,40.332416],[72.183502,40.498249],[72.4105,40.401249],[72.476303,40.564056],[72.636665,40.51939],[72.683525,40.593166],[72.762085,40.57],[72.767113,40.675499],[72.848587,40.688915],[73.005722,40.767082],[72.834808,40.869472],[72.680809,40.85561],[72.5755,40.890472],[72.497582,41.03064],[72.351692,41.064777],[72.228363,41.052418],[72.192718,41.154861],[72.083557,41.140888],[71.890358,41.172165],[71.861999,41.200863],[71.935165,41.308277],[71.799309,41.431446],[71.731308,41.456833],[71.591003,41.30339],[71.487694,41.316029],[71.435082,41.123611],[71.392502,41.11211],[71.257469,41.186359],[71.124252,41.147221],[71.019279,41.192665],[70.96167,41.163082],[70.875359,41.231445],[70.783165,41.188194],[70.780083,41.375389],[70.715942,41.460972],[70.594803,41.448029],[70.483391,41.399612],[70.320274,41.514416],[70.186165,41.518555],[70.195557,41.598305],[70.348251,41.637749],[70.492386,41.718861],[70.508888,41.776333],[70.656586,41.891445],[70.85025,41.945168],[70.861641,42.041805],[70.966225,42.026333],[71.261139,42.195946],[71.070274,42.287834],[70.940224,42.259193],[70.871864,42.320057],[70.935028,42.393696],[71.05378,42.600807],[71.165413,42.609417],[71.295776,42.781139],[71.517609,42.809082],[71.57061,42.77486],[71.86364,42.832806],[72.120361,42.7365],[72.282028,42.759277],[72.498947,42.685139],[72.744278,42.638916],[72.901108,42.537304],[73.091141,42.536362],[73.298111,42.506084],[73.346169,42.427223],[73.511086,42.416222],[73.443275,42.501915],[73.427887,42.640583],[73.50367,42.783222],[73.500168,42.906918],[73.571304,43.034248],[73.778305,43.108776],[73.870636,43.098167],[73.954391,43.191971],[74.051918,43.158165],[74.194527,43.233112],[74.437027,43.1875],[74.580002,43.141109],[74.740471,42.994389],[74.911667,42.98275],[75.157303,42.849918],[75.322029,42.856472],[75.415695,42.824471],[75.613976,42.820805],[75.716278,42.797195],[75.815086,42.933693],[75.933029,42.952583],[76.035469,42.909916],[76.268471,42.919224],[76.323135,42.866028],[76.509056,42.917416],[76.723221,42.905193],[76.846191,42.982555],[77.175804,42.959835],[77.223419,42.92189],[77.450333,42.935696],[77.727196,42.904888],[78.058998,42.838333],[78.171997,42.877193],[78.317833,42.856415],[78.491608,42.903778],[78.692306,42.82061],[78.937027,42.77475],[79.166305,42.748806],[79.251503,42.632221],[79.370224,42.580444],[79.509445,42.45636],[79.753052,42.454056],[79.951637,42.429554],[79.982559,42.375278],[80.084747,42.328362],[80.13353,42.203556],[80.197167,42.231361],[80.227364,42.220139],[80.245636,42.22089],[80.248392,42.217587],[80.2408,42.213514],[80.23315,42.210225]],[[71.08725,40],[71.112778,39.915279],[71.229332,39.91975],[71.119751,40.017471],[71.081444,40.150696],[71.003944,40.174778],[71.007698,40.039528],[71.08725,40]],[[70.673615,39.895248],[70.506302,39.894859],[70.627976,39.798695],[70.725441,39.849972],[70.673615,39.895248]]]},"properties":{"name":"吉尔吉斯斯坦","name_en":"Kyrgyzstan","id":"KGZ"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[46.547249,38.872723],[46.359055,38.907276],[46.137665,38.834499],[46.150944,38.885612],[46.101028,39.022778],[46.034973,39.087891],[46,39.186001],[46,39.296944],[45.795807,39.400307],[45.840443,39.471085],[45.817501,39.546555],[45.708946,39.606499],[45.456833,39.50436],[45.303665,39.600971],[45.186001,39.608166],[45.192749,39.677944],[45.081944,39.7855],[44.953388,39.730026],[44.771916,39.713722],[44.598526,39.828835],[44.488693,39.965057],[44.278973,40.045387],[44.127529,40.023888],[43.905472,40.018471],[43.655472,40.110779],[43.681915,40.257057],[43.592667,40.345444],[43.609196,40.433056],[43.547417,40.477554],[43.689751,40.591473],[43.748695,40.735943],[43.676109,40.844444],[43.67178,40.933445],[43.472168,41.027973],[43.471279,41.129806],[43.541363,41.148861],[43.729668,41.11375],[43.853248,41.166306],[44.169224,41.199471],[44.171833,41.237667],[44.438667,41.186806],[44.610943,41.234974],[44.711693,41.208195],[44.94603,41.258583],[45.004055,41.301418],[45.130585,41.208973],[45.178333,41.131554],[45.084862,41.114693],[45.063446,41.058998],[45.402332,41.028278],[45.525833,40.911861],[45.570027,40.824501],[45.408417,40.736363],[45.356724,40.668446],[45.451195,40.583443],[45.43578,40.514027],[45.545971,40.469055],[45.645222,40.369835],[45.905556,40.298862],[45.977223,40.212891],[45.894859,40.099224],[45.884777,40.030445],[45.814415,40.000805],[45.653278,40.040943],[45.623322,39.978416],[45.806194,39.930946],[45.829029,39.835834],[45.995998,39.778446],[46.040474,39.720085],[46.164944,39.642387],[46.184113,39.582222],[46.327,39.631668],[46.443722,39.572529],[46.563026,39.567276],[46.408474,39.378361],[46.535584,39.313499],[46.578499,39.202251],[46.4445,39.156502],[46.551888,39.049332],[46.514805,38.943748],[46.547249,38.872723]]]},"properties":{"name":"亚美尼亚","name_en":"ARMENIA","id":"ARM"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[158.298142,6.808389],[158.159607,6.805],[158.11142,6.933028],[158.224442,6.973084],[158.315811,6.933944],[158.333191,6.87325],[158.298142,6.808389]]]},"properties":{"name":"密克罗尼西亚联邦","name_en":"Micronesia","id":"FSM"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[56.088779,26.076416],[56.158249,26.075056],[56.17464,25.979584],[56.142723,25.806168],[56.149029,25.672501],[56.200222,25.616722],[56.263611,25.630056],[56.347527,25.589556],[56.361057,25.518167],[56.345085,25.36775],[56.373943,25.342112],[56.353611,25.162916],[56.375084,24.977917],[56.341473,24.898527],[56.193668,24.824862],[56.119557,24.734278],[56.026165,24.808945],[56.027138,24.963888],[55.957863,24.98311],[55.866222,24.943695],[55.806,24.84689],[55.843167,24.656723],[55.787556,24.570444],[55.797333,24.431612],[55.835167,24.334223],[55.779693,24.234222],[55.871918,24.213638],[55.950054,24.236166],[56.008335,24.068806],[55.816776,24.010471],[55.642166,24.028528],[55.485863,23.9335],[55.561165,23.891111],[55.568501,23.759001],[55.500446,23.662167],[55.464306,23.531111],[55.403862,23.472279],[55.350971,23.275749],[55.249832,23.118917],[55.218777,23.012056],[55.224224,22.811472],[55.210827,22.705933],[55.141727,22.634071],[52.583302,22.9389],[51.769437,23.874715],[51.214055,24.17895],[51.114973,24.383453],[51.099758,24.47333],[51.260124,24.609041],[51.319195,24.503],[51.411278,24.607361],[51.490502,24.553778],[51.330666,24.419306],[51.305916,24.284779],[51.417221,24.318972],[51.479416,24.307722],[51.553806,24.237722],[51.637249,24.275583],[51.645748,24.193111],[51.750946,24.27725],[51.790112,24.253973],[51.77272,24.149805],[51.805916,24.002277],[51.905277,23.978222],[52.210972,23.96464],[52.316696,23.993166],[52.571499,24.123777],[52.61739,24.188612],[52.674278,24.131971],[52.843388,24.136749],[53.046166,24.120056],[53.189999,24.14514],[53.271057,24.088945],[53.428082,24.12536],[53.577778,24.044722],[53.700695,24.063612],[53.808807,24.05175],[54.089889,24.125805],[54.199779,24.202499],[54.087471,24.297138],[54.135224,24.32686],[54.247418,24.210138],[54.356415,24.227694],[54.428833,24.285444],[54.485695,24.421389],[54.590221,24.476444],[54.659637,24.672388],[54.664249,24.754944],[54.749027,24.79089],[54.776554,24.84775],[54.958168,24.962305],[55.053139,25.003555],[55.172054,25.124083],[55.3685,25.361555],[55.558834,25.527639],[55.955387,25.80261],[56.015415,25.890499],[56.088779,26.076416]]],[[[53.954056,24.164417],[53.771057,24.123722],[53.616585,24.168806],[53.726387,24.23625],[53.849083,24.254084],[53.954056,24.164417]]]]},"properties":{"name":"阿联酋","name_en":"UNITED ARAB EMIRATES","id":"ARE"}}, + {"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-68.439857,-52.400147],[-68.426735,-52.334953],[-68.824051,-52.278217],[-68.989647,-52.206451],[-69.218902,-52.149467],[-69.450455,-52.153999],[-70.019356,-51.998188],[-71.07354,-51.999367],[-71.910797,-51.998844],[-71.95533,-51.868038],[-72.117935,-51.753063],[-72.293373,-51.698967],[-72.342331,-51.597576],[-72.423439,-51.536034],[-72.350235,-51.485554],[-72.321228,-51.304031],[-72.260322,-51.234177],[-72.364647,-51.183125],[-72.402039,-51.118649],[-72.329018,-51.03997],[-72.250389,-51.025475],[-72.230858,-50.855255],[-72.326858,-50.744709],[-72.27935,-50.661705],[-72.473717,-50.602665],[-72.615212,-50.674858],[-72.737602,-50.616367],[-72.863823,-50.656197],[-73.000648,-50.748379],[-73.121872,-50.695133],[-73.437622,-50.430923],[-73.572502,-50.280235],[-73.499855,-50.057159],[-73.545097,-49.924343],[-73.442314,-49.837971],[-73.45034,-49.739178],[-73.562538,-49.515186],[-73.496895,-49.500999],[-73.451874,-49.311657],[-73.493286,-49.259033],[-73.473251,-49.157078],[-73.092819,-49.134388],[-73.081108,-49.083401],[-72.916809,-48.943043],[-72.72451,-48.91275],[-72.549667,-48.790794],[-72.546745,-48.677059],[-72.597732,-48.48259],[-72.451164,-48.490639],[-72.357346,-48.354946],[-72.289246,-48.356899],[-72.334343,-48.073906],[-72.453262,-47.95467],[-72.519943,-47.925236],[-72.383476,-47.647015],[-72.287376,-47.618694],[-72.297645,-47.427711],[-72.137566,-47.403217],[-72.106133,-47.3297],[-71.844215,-47.168274],[-71.903953,-47.101181],[-71.946053,-46.926724],[-71.931313,-46.811447],[-71.819725,-46.79002],[-71.645851,-46.682537],[-71.665047,-46.507393],[-71.732636,-46.355713],[-71.776871,-46.189213],[-71.884018,-46.1409],[-71.722778,-46.087795],[-71.59771,-45.964981],[-71.629807,-45.888493],[-71.731453,-45.848095],[-71.771622,-45.737423],[-71.732903,-45.545612],[-71.466019,-45.496326],[-71.504921,-45.398579],[-71.35881,-45.352138],[-71.297264,-45.300262],[-71.378357,-45.172764],[-71.438545,-45.155949],[-71.560181,-44.979729],[-71.746491,-44.926163],[-71.876633,-44.941013],[-72.033218,-44.906269],[-72.06971,-44.768257],[-71.835762,-44.793674],[-71.770569,-44.753147],[-71.600212,-44.778576],[-71.486885,-44.735222],[-71.380379,-44.801044],[-71.254868,-44.785973],[-71.209473,-44.605823],[-71.110161,-44.523029],[-71.211403,-44.427586],[-71.415588,-44.394634],[-71.786011,-44.406277],[-71.817497,-44.265503],[-71.792457,-44.205601],[-71.84404,-44.105453],[-71.782761,-44.090073],[-71.662109,-43.957974],[-71.751595,-43.801361],[-71.61586,-43.705292],[-71.84613,-43.484837],[-71.931549,-43.448067],[-71.881821,-43.325768],[-71.73008,-43.31081],[-71.739624,-43.171421],[-71.984543,-43.078144],[-71.989342,-43.029675],[-72.110352,-42.914524],[-72.102127,-42.779175],[-72.119308,-42.562008],[-72.031189,-42.501446],[-72.049866,-42.37751],[-72.124382,-42.312515],[-72.028374,-42.141361],[-71.919235,-42.187328],[-71.732208,-42.120995],[-71.759193,-42.020691],[-71.745583,-41.827698],[-71.854843,-41.60268],[-71.818878,-41.571144],[-71.906403,-41.360573],[-71.842438,-41.256382],[-71.852036,-40.949478],[-71.94577,-40.729645],[-71.841286,-40.645409],[-71.852653,-40.563309],[-71.804535,-40.41164],[-71.719292,-40.438099],[-71.654076,-40.368649],[-71.829582,-40.226128],[-71.788536,-40.078152],[-71.671257,-40.104076],[-71.684151,-40.025879],[-71.589058,-39.897068],[-71.68512,-39.848144],[-71.716011,-39.646912],[-71.492462,-39.617439],[-71.530289,-39.517231],[-71.466744,-39.483807],[-71.454399,-39.371887],[-71.388367,-39.29612],[-71.436882,-39.033859],[-71.422371,-38.923977],[-71.054352,-38.740444],[-70.947517,-38.745373],[-70.832413,-38.557713],[-71.002281,-38.410442],[-71.035599,-38.250286],[-70.998756,-38.094086],[-71.190865,-37.863625],[-71.13633,-37.818851],[-71.203217,-37.680099],[-71.139191,-37.593075],[-71.117562,-37.481075],[-71.212784,-37.297554],[-71.14325,-37.207165],[-71.155792,-37.000141],[-71.101624,-36.943192],[-71.166657,-36.833256],[-71.128929,-36.792564],[-71.11483,-36.663666],[-71.050797,-36.598354],[-71.038315,-36.471249],[-70.955719,-36.483677],[-70.852142,-36.397709],[-70.682335,-36.39777],[-70.698784,-36.254688],[-70.630394,-36.226131],[-70.558922,-36.125549],[-70.471458,-36.171188],[-70.419083,-36.145332],[-70.372971,-36.037285],[-70.419304,-35.902214],[-70.325722,-35.81065],[-70.40316,-35.632866],[-70.388748,-35.523598],[-70.442078,-35.44968],[-70.436409,-35.327026],[-70.578438,-35.272091],[-70.54834,-35.205906],[-70.416901,-35.192352],[-70.357483,-35.132595],[-70.371979,-35.048973],[-70.340095,-34.932755],[-70.273567,-34.839767],[-70.311028,-34.768803],[-70.223549,-34.672535],[-70.227257,-34.63306],[-70.127617,-34.487751],[-70.011452,-34.401867],[-70.01841,-34.28281],[-69.918579,-34.295567],[-69.819321,-34.231419],[-69.892029,-33.800228],[-69.87117,-33.566509],[-69.825226,-33.484676],[-69.743721,-33.426136],[-69.77652,-33.336834],[-69.902565,-33.224133],[-69.963577,-33.321411],[-70.027001,-33.30611],[-70.092903,-33.041874],[-70.050018,-33.020634],[-70,-32.895165],[-70.050758,-32.863895],[-70.148582,-32.721821],[-70.167641,-32.603004],[-70.141541,-32.48386],[-70.233589,-32.432499],[-70.221748,-32.338692],[-70.32045,-32.254688],[-70.29689,-32.154602],[-70.34008,-32.081158],[-70.202438,-31.970144],[-70.268265,-31.896347],[-70.352738,-31.890758],[-70.446503,-31.836527],[-70.457832,-31.722223],[-70.553299,-31.559795],[-70.538849,-31.338072],[-70.51078,-31.163219],[-70.439453,-31.090776],[-70.354973,-31.100309],[-70.266884,-31.023941],[-70.304954,-30.891106],[-70.276665,-30.788624],[-70.219612,-30.713327],[-70.219864,-30.617956],[-70.129204,-30.456715],[-70.14122,-30.346703],[-69.9869,-30.402155],[-69.910675,-30.350355],[-69.806625,-30.186663],[-69.839821,-30.116407],[-69.923546,-30.107632],[-69.923897,-29.998541],[-69.877609,-29.866741],[-69.920479,-29.764109],[-69.884644,-29.679398],[-69.940033,-29.610571],[-69.94387,-29.531094],[-70.017029,-29.353312],[-69.949768,-29.169048],[-69.784836,-29.108662],[-69.752876,-28.895847],[-69.672333,-28.772778],[-69.706009,-28.682852],[-69.633858,-28.519854],[-69.649391,-28.443064],[-69.530991,-28.319555],[-69.472633,-28.301847],[-69.452988,-28.189651],[-69.379478,-28.204693],[-69.31057,-28.138365],[-69.211533,-27.972349],[-69.104164,-27.888725],[-69.062919,-27.725559],[-69.061546,-27.642384],[-68.987549,-27.57058],[-68.855728,-27.319948],[-68.848656,-27.204268],[-68.768951,-27.103754],[-68.684471,-27.083498],[-68.625977,-27.156485],[-68.544136,-27.187799],[-68.480553,-27.06377],[-68.336052,-27.055141],[-68.305054,-26.897072],[-68.5877,-26.509184],[-68.570381,-26.306953],[-68.39045,-26.190495],[-68.486931,-25.657089],[-68.543045,-25.583937],[-68.597511,-25.398954],[-68.527306,-25.309963],[-68.546036,-25.192289],[-68.467529,-25.092192],[-68.337402,-25.072287],[-68.422028,-24.992365],[-68.514877,-24.861332],[-68.571693,-24.834064],[-68.567375,-24.747684],[-68.374672,-24.470804],[-68.064438,-24.32423],[-67.341629,-24.036823],[-67.297752,-23.96011],[-66.987938,-22.992395],[-67.177498,-22.804693],[-67.12217,-22.71084],[-67.013504,-22.644667],[-67.024536,-22.537531],[-66.782875,-22.429701],[-66.73935,-22.236582],[-66.675148,-22.204031],[-66.347893,-22.123537],[-66.288277,-22.081659],[-66.274422,-21.943729],[-66.221611,-21.781277],[-66.078705,-21.830694],[-66.043137,-21.916096],[-65.92617,-21.932043],[-65.81237,-22.069746],[-65.748398,-22.109356],[-65.656761,-22.111191],[-65.574562,-22.07744],[-65.47123,-22.091839],[-64.983742,-22.086403],[-64.871742,-22.12039],[-64.742165,-22.19471],[-64.65525,-22.191767],[-64.541176,-22.290604],[-64.57119,-22.363108],[-64.44558,-22.519482],[-64.424309,-22.674414],[-64.289848,-22.79612],[-64.207451,-22.495254],[-64.169571,-22.469729],[-64.078308,-22.292671],[-64.036491,-22.245047],[-63.935253,-22.002724],[-62.808063,-22.00444],[-62.794682,-22.162548],[-62.647076,-22.245634],[-62.636395,-22.298166],[-62.390091,-22.452646],[-62.297283,-22.482727],[-62.239956,-22.53739],[-62.136288,-22.789499],[-62.012165,-22.933062],[-61.989818,-23.02355],[-61.863735,-23.08939],[-61.757999,-23.181223],[-61.739323,-23.239704],[-61.611473,-23.285118],[-61.495605,-23.418417],[-61.358478,-23.448719],[-61.235249,-23.551317],[-61.092274,-23.620857],[-61.100117,-23.660902],[-61.002472,-23.794148],[-60.931942,-23.804802],[-60.825005,-23.873764],[-60.734867,-23.87643],[-60.584038,-23.945009],[-60.469322,-23.960856],[-60.32008,-24.048523],[-60.116696,-24.039494],[-60.046623,-24.012131],[-59.494984,-24.325083],[-59.352993,-24.484718],[-59.181454,-24.569651],[-59.109066,-24.623266],[-58.940216,-24.681837],[-58.795845,-24.774811],[-58.711945,-24.784903],[-58.654743,-24.833561],[-58.566032,-24.82617],[-58.423958,-24.89085],[-58.327259,-24.99917],[-58.246483,-24.93379],[-58.14843,-24.977417],[-57.985916,-25.083776],[-57.874336,-25.08222],[-57.788227,-25.154484],[-57.762298,-25.218542],[-57.556614,-25.44768],[-57.56253,-25.545593],[-57.679382,-25.66235],[-57.751072,-25.662785],[-57.796757,-25.829599],[-57.856541,-25.86091],[-57.883339,-25.939693],[-57.849354,-26.006014],[-58.102596,-26.132643],[-58.120442,-26.244438],[-58.200439,-26.374983],[-58.177403,-26.452932],[-58.219624,-26.532639],[-58.191021,-26.647156],[-58.253117,-26.653145],[-58.245926,-26.742037],[-58.370426,-26.868376],[-58.491913,-26.935892],[-58.478283,-26.994698],[-58.548298,-27.041265],[-58.560227,-27.108776],[-58.663143,-27.175026],[-58.594391,-27.232431],[-58.606579,-27.29512],[-58.376415,-27.279015],[-58.243351,-27.249126],[-58.021065,-27.263735],[-57.702507,-27.333624],[-57.545567,-27.430344],[-57.288254,-27.421616],[-57,-27.510633],[-56.833344,-27.601109],[-56.737278,-27.559475],[-56.703979,-27.462017],[-56.598835,-27.447981],[-56.519691,-27.506001],[-56.487972,-27.575657],[-56.364822,-27.598721],[-56.28965,-27.488049],[-56.282654,-27.408508],[-56.143482,-27.312521],[-56.059593,-27.304419],[-55.877544,-27.36194],[-55.828491,-27.43322],[-55.725994,-27.439798],[-55.595532,-27.337038],[-55.580315,-27.251814],[-55.617344,-27.209044],[-55.540974,-27.108486],[-55.456573,-27.102175],[-55.431095,-27.008717],[-55.273838,-26.946413],[-55.201389,-26.972109],[-55.131454,-26.94475],[-55.135178,-26.866289],[-55.060379,-26.804615],[-54.961952,-26.790579],[-54.938946,-26.693182],[-54.814026,-26.673847],[-54.795929,-26.529539],[-54.700329,-26.440239],[-54.631092,-26.231852],[-54.665486,-26.178944],[-54.645748,-26.075251],[-54.675156,-25.985432],[-54.590351,-25.838356],[-54.656265,-25.702965],[-54.593636,-25.668255],[-54.596363,-25.594971],[-54.45282,-25.666084],[-54.288551,-25.562471],[-54.198128,-25.547998],[-54.010685,-25.569143],[-53.856209,-25.67301],[-53.823067,-25.798069],[-53.837315,-25.968618],[-53.71822,-26.073214],[-53.723774,-26.126717],[-53.591835,-26.264887],[-53.694569,-26.488571],[-53.741856,-26.644579],[-53.67757,-26.924072],[-53.808491,-27.130957],[-53.938213,-27.156263],[-53.956615,-27.199356],[-54.089058,-27.302652],[-54.187218,-27.273884],[-54.22221,-27.388365],[-54.266483,-27.42907],[-54.445107,-27.466629],[-54.620354,-27.54797],[-54.784489,-27.58403],[-54.903629,-27.64794],[-54.903927,-27.721525],[-55.026188,-27.833746],[-55.195995,-27.863062],[-55.322998,-27.928085],[-55.368813,-28.024015],[-55.454441,-28.099354],[-55.61969,-28.161886],[-55.765858,-28.274733],[-55.668972,-28.340036],[-55.695622,-28.425304],[-55.770367,-28.369892],[-55.868382,-28.356716],[-55.893494,-28.48135],[-55.998951,-28.503105],[-56.01292,-28.607081],[-56.142147,-28.7059],[-56.192409,-28.775639],[-56.284962,-28.793924],[-56.314011,-28.915964],[-56.406338,-28.973528],[-56.424786,-29.072884],[-56.593063,-29.122995],[-56.708401,-29.361933],[-56.765152,-29.380333],[-56.828716,-29.488985],[-56.880856,-29.513632],[-57.105194,-29.751858],[-57.236679,-29.781261],[-57.319034,-29.870474],[-57.341965,-30.001225],[-57.457725,-30.106669],[-57.617966,-30.179155],[-57.608025,-30.242327],[-57.646957,-30.349277],[-57.847679,-30.47401],[-57.884033,-30.58581],[-57.813191,-30.68292],[-57.797497,-30.784666],[-57.824959,-30.909866],[-57.910683,-30.913601],[-57.862183,-31.032894],[-57.91288,-31.129105],[-57.938259,-31.273186],[-57.999565,-31.40596],[-58.086422,-31.469915],[-57.980534,-31.57951],[-58.082661,-31.816376],[-58.195049,-31.84952],[-58.139122,-32.023018],[-58.18216,-32.144722],[-58.099659,-32.275284],[-58.188702,-32.398201],[-58.20097,-32.462345],[-58.155197,-32.62112],[-58.113113,-32.937977],[-58.134205,-33.025967],[-58.217518,-33.093712],[-58.413246,-33.076275],[-58.433903,-33.258785],[-58.414234,-33.303699],[-58.523186,-33.454369],[-58.554973,-33.725422],[-58.457985,-33.84074],[-58.412525,-34.017544],[-58.377655,-34.055538],[-58.38361,-34.205662],[-58.49741,-34.325066],[-58.533726,-34.444058],[-58.465618,-34.544144],[-58.38245,-34.579594],[-58.355335,-34.637619],[-58.186443,-34.748482],[-57.888332,-34.833122],[-57.570328,-35.0154],[-57.468041,-35.0578],[-57.309425,-35.185928],[-57.134514,-35.393509],[-57.126316,-35.469021],[-57.299137,-35.673115],[-57.387329,-35.821156],[-57.376228,-35.971683],[-57.256191,-36.160301],[-57.0807,-36.298317],[-56.998627,-36.339054],[-56.750404,-36.34235],[-56.690155,-36.445415],[-56.669033,-36.898556],[-56.983345,-37.287811],[-57.111645,-37.491409],[-57.338722,-37.683414],[-57.474491,-37.815598],[-57.553227,-37.979256],[-57.55159,-38.109612],[-57.710037,-38.224361],[-57.856426,-38.298714],[-58.196396,-38.445854],[-58.499359,-38.537293],[-58.70377,-38.577522],[-59.102268,-38.697212],[-59.643581,-38.790634],[-59.784271,-38.833034],[-60.077988,-38.861794],[-60.145656,-38.880672],[-60.940128,-38.987534],[-61.144337,-39.004856],[-61.374584,-38.986717],[-61.554188,-39.01479],[-61.71355,-38.975525],[-61.804596,-38.992237],[-62.029423,-38.942741],[-62.142914,-38.829201],[-62.243511,-38.794498],[-62.376217,-38.805344],[-62.32288,-38.907745],[-62.299919,-39.029949],[-62.357334,-39.103348],[-62.34634,-39.162407],[-62.26226,-39.274994],[-62.138241,-39.291653],[-62.011929,-39.365189],[-62.115467,-39.672096],[-62.113861,-39.847672],[-62.261509,-39.861656],[-62.331219,-39.917992],[-62.354526,-40.20322],[-62.436222,-40.245979],[-62.484825,-40.337074],[-62.40493,-40.470226],[-62.173252,-40.599884],[-62.32671,-40.882923],[-63.095184,-41.157677],[-63.441948,-41.16729],[-63.783623,-41.163906],[-63.959145,-41.08012],[-64.231628,-41.002499],[-64.432045,-40.908173],[-64.741234,-40.827427],[-64.807998,-40.733017],[-64.929871,-40.74192],[-65.114838,-40.833801],[-65.17765,-40.984383],[-65.17157,-41.097958],[-65.087921,-41.41394],[-65.004135,-41.536228],[-65.03009,-41.739418],[-65.085518,-41.973713],[-65.018967,-42.0984],[-64.877045,-42.189835],[-64.479019,-42.239113],[-64.566994,-42.321152],[-64.612999,-42.426472],[-64.476883,-42.443405],[-64.284096,-42.418499],[-64.125793,-42.433052],[-64.056457,-42.381611],[-64.059463,-42.281582],[-64.190178,-42.209515],[-64.072434,-42.179871],[-63.928993,-42.098446],[-63.748405,-42.083122],[-63.602234,-42.343132],[-63.587669,-42.601334],[-63.6436,-42.704098],[-63.635849,-42.767967],[-63.781876,-42.818901],[-64.088715,-42.87558],[-64.150833,-42.873318],[-64.261299,-42.749714],[-64.277092,-42.579105],[-64.345787,-42.538029],[-64.565811,-42.49477],[-64.677353,-42.51244],[-64.843246,-42.619202],[-64.986389,-42.65929],[-65.034508,-42.732407],[-64.959686,-42.787914],[-64.639152,-42.921528],[-64.528176,-42.927467],[-64.328987,-43.003761],[-64.506081,-43.084137],[-64.694801,-43.129768],[-64.889244,-43.205719],[-65.010742,-43.283562],[-65.05912,-43.407295],[-65.328072,-43.646732],[-65.351654,-43.761185],[-65.301468,-43.933949],[-65.235497,-44.0387],[-65.237732,-44.147556],[-65.306229,-44.224953],[-65.216652,-44.372135],[-65.332642,-44.462685],[-65.40155,-44.586502],[-65.457077,-44.577354],[-65.637825,-44.670521],[-65.726685,-44.820446],[-65.703728,-44.873276],[-65.575928,-44.901932],[-65.646316,-45.050774],[-65.752647,-45.025459],[-65.935188,-45.049477],[-66.00528,-45.007389],[-66.195289,-44.98719],[-66.284691,-45.056763],[-66.353264,-45.042366],[-66.588341,-45.14151],[-66.549149,-45.218048],[-66.846726,-45.233593],[-67.052155,-45.337803],[-67.206589,-45.529022],[-67.343361,-45.63179],[-67.366959,-45.776775],[-67.545128,-45.929237],[-67.615745,-46.067108],[-67.607727,-46.255466],[-67.556839,-46.362843],[-67.420708,-46.556217],[-67.339768,-46.62096],[-67.120896,-46.701962],[-67.044998,-46.797634],[-66.739906,-47.036724],[-66.500305,-47.051197],[-66.191879,-47.096687],[-65.972366,-47.076645],[-65.863182,-47.111732],[-65.751694,-47.200836],[-65.715813,-47.337173],[-65.73922,-47.51244],[-65.883308,-47.796978],[-65.84758,-47.891018],[-65.95166,-47.962917],[-65.952255,-48.10051],[-66.074325,-48.109501],[-66.488754,-48.417004],[-66.68132,-48.449337],[-66.856308,-48.573807],[-67.114433,-48.668468],[-67.221809,-48.814171],[-67.4002,-48.89323],[-67.564499,-49.03376],[-67.626373,-49.115204],[-67.584885,-49.261395],[-67.694718,-49.574066],[-67.712814,-49.754192],[-67.777474,-49.898468],[-67.995979,-50.057201],[-68.139832,-50.109062],[-68.331695,-50.12669],[-68.507256,-49.947224],[-68.494499,-50.082085],[-68.363952,-50.139431],[-68.380134,-50.181595],[-68.78524,-50.304665],[-68.874939,-50.34235],[-69.077263,-50.563831],[-69.142425,-50.73991],[-69.127968,-50.901009],[-69.161873,-50.992687],[-69.113289,-51.174473],[-68.940933,-51.549587],[-69.197815,-51.628304],[-69.091698,-51.658585],[-69.00441,-51.612522],[-68.846336,-51.788857],[-68.7574,-51.930943],[-68.628945,-52.072491],[-68.368202,-52.309639],[-68.439857,-52.400147]]],[[[-68.604751,-52.665375],[-68.251854,-53.00143],[-68.374466,-53.030823],[-68.526817,-53.147385],[-68.520218,-53.259289],[-68.443809,-53.297993],[-68.131989,-53.325455],[-68.067207,-53.404083],[-68.021934,-53.549545],[-67.791931,-53.725349],[-67.557495,-53.840813],[-67.538498,-53.928398],[-67.281235,-54.077404],[-67.052033,-54.145027],[-66.69146,-54.293911],[-66.541153,-54.414639],[-66.371399,-54.459869],[-66.261231,-54.521599],[-66.000023,-54.613743],[-65.691681,-54.673214],[-65.229546,-54.629868],[-65.174088,-54.651791],[-65.213272,-54.807823],[-65.292961,-54.897533],[-65.564217,-54.933544],[-65.628944,-54.968227],[-65.750916,-54.891891],[-65.955124,-54.893555],[-65.979263,-54.952503],[-66.225411,-54.996178],[-66.355377,-54.987625],[-66.417992,-55.058865],[-66.681786,-55.016365],[-66.790802,-54.943783],[-67.505058,-54.864952],[-67.690781,-54.895805],[-68.237175,-54.825333],[-68.524307,-54.863068],[-68.610581,-54.895893],[-68.606651,-53.94672],[-68.609894,-53.375065],[-68.604751,-52.665375]]],[[[-64,-54.774277],[-64.19307,-54.829258],[-64.245125,-54.789162],[-64.564773,-54.871716],[-64.685959,-54.84024],[-64.414032,-54.764355],[-64.351433,-54.707123],[-64.03125,-54.730736],[-64,-54.774277]]],[[[-62,-39.094135],[-61.874637,-39.136124],[-61.860256,-39.233196],[-62.07798,-39.143406],[-62,-39.094135]]]]},"properties":{"name":"阿根廷","name_en":"ARGENTINA","id":"ARG"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[34.116405,9.457685],[33.898605,9.455],[33.878609,9.576387],[33.90416,9.711111],[33.972496,9.84861],[33.955276,9.905277],[33.96611,10.052776],[33.896942,10.196943],[33.466942,10.543333],[33.386383,10.644999],[33.130554,10.736387],[33.186104,10.833887],[33.079437,11.602777],[33.141106,11.72611],[33.147774,11.959444],[33.205551,12.139166],[33.211105,12.210554],[32.724449,12.219149],[32.747498,12.039999],[32.731384,11.998888],[32.083435,11.998095],[32.328888,11.729443],[32.352776,11.687777],[32.358055,11.520832],[32.344444,11.405554],[32.364441,11.236387],[32.451111,11.073055],[31.938332,10.654722],[31.870277,10.486666],[31.801941,10.37611],[31.648888,10.195276],[31.199719,9.75861],[30.814442,9.75],[30.777775,9.709721],[30.455555,9.998888],[29.886108,10.293888],[29.468609,10.124998],[29.460552,9.764721],[28.930832,9.729443],[28.702221,9.444443],[28.718052,9.328333],[28.268887,9.324165],[28.017777,9.332222],[27.894577,9.595629],[27.742222,9.584999],[27.640831,9.603054],[27.334442,9.614443],[27.079719,9.60861],[26.706387,9.479721],[26.601665,9.481667],[26.371109,9.553888],[26.270554,9.664166],[26.187774,9.906666],[26.098053,9.99111],[25.999165,10.1325],[25.899166,10.197777],[25.894997,10.350277],[25.840279,10.423334],[25.752498,10.393889],[25.622486,10.386391],[25.490807,10.345577],[25.285,10.31111],[25.130554,10.309444],[25.06472,10.27861],[25.012508,10.167778],[25.02972,10.098888],[24.93222,9.905277],[24.790474,9.815367],[24.794441,9.532499],[24.680832,9.382221],[24.66,9.176943],[24.557499,8.993889],[24.557777,8.879444],[24.396385,8.84861],[24.241386,8.762777],[24.17407,8.706571],[24.131796,8.692358],[23.829782,8.734871],[23.738941,8.716108],[23.637728,8.742492],[23.520107,8.726969],[23.508539,8.814837],[23.569605,8.878985],[23.531273,8.963513],[23.463476,8.984043],[23.476307,9.141964],[23.610962,9.230542],[23.677443,9.438735],[23.633532,9.473898],[23.65016,9.57207],[23.697867,9.667719],[23.668244,9.891512],[23.301876,10.474637],[23.13674,10.634233],[23.00738,10.71609],[22.885273,10.894696],[22.881338,10.930898],[22.986078,11.199601],[22.945282,11.417245],[22.789005,11.403181],[22.754213,11.475113],[22.662172,11.515491],[22.566088,11.620659],[22.554052,11.687226],[22.635042,12.026801],[22.551409,12.052981],[22.491672,12.020497],[22.492457,12.148483],[22.443953,12.272038],[22.421904,12.387854],[22.372139,12.441509],[22.458885,12.619767],[22.287437,12.696554],[22.195063,12.706912],[22.032839,12.637202],[21.934244,12.639363],[21.857975,12.734151],[21.850737,12.871535],[21.925674,13.046878],[22.020376,13.139103],[22.127871,13.164268],[22.284214,13.349694],[22.220997,13.451769],[22.213734,13.566467],[22.142582,13.629091],[22.092207,13.776198],[22.231857,13.947371],[22.392715,14.049981],[22.536352,14.118576],[22.558164,14.229709],[22.479246,14.232004],[22.437609,14.275731],[22.449614,14.472433],[22.384214,14.506743],[22.411163,14.595858],[22.717203,14.686426],[22.671072,14.848719],[22.759361,14.917297],[22.75691,14.972213],[22.870703,15.083105],[22.999733,15.237209],[22.990156,15.415928],[22.932901,15.464097],[22.930586,15.550809],[23.004742,15.589433],[23.12228,15.709895],[23.333431,15.686207],[23.416468,15.693098],[23.578144,15.753811],[23.805841,15.742705],[24.001585,15.704918],[24,16.6],[24,17.6],[24,18.4],[24,18.9],[24,19.508045],[24,20],[25,20],[25,20.749701],[25,21.582701],[25,21.999195],[25.13925,22.004444],[26.054167,22.005695],[26.947445,22.005194],[27.633972,22.007639],[28.388334,22.007334],[29.317278,22.004333],[29.866083,22.004583],[30.639694,22.00675],[31.318527,22.006416],[31.356917,22.114973],[31.468805,22.222834],[31.512888,22.18075],[31.435528,22.081194],[31.412111,22.008139],[32.023193,22.003222],[32.541527,22.004333],[33.1665,22.006195],[33.564083,21.725389],[34.005222,21.772333],[34.160694,22.207083],[34.691944,22.297916],[34.951362,22.857584],[35.212166,22.787306],[35.62336,23.146889],[35.660446,23.064695],[35.669807,22.947639],[35.843666,22.762444],[35.951973,22.683332],[36.17197,22.660305],[36.253612,22.609028],[36.295193,22.506445],[36.424446,22.423389],[36.434444,22.36075],[36.57214,22.292305],[36.647529,22.218611],[36.880585,22.062723],[36.862751,21.976555],[36.91375,21.591583],[37.022194,21.402027],[37.313137,21.070028],[37.240276,21.022751],[37.155945,21.218805],[37.087387,21.055916],[37.167389,20.875166],[37.17561,20.688444],[37.232807,20.563639],[37.186916,20.372805],[37.210777,20.155195],[37.179779,20.037806],[37.263363,19.845583],[37.244583,19.549417],[37.291832,19.478834],[37.336834,19.139584],[37.389915,19.024084],[37.421528,18.847944],[37.540333,18.718611],[37.673916,18.737333],[37.738529,18.708889],[37.799778,18.617111],[37.918751,18.578527],[38.01939,18.464083],[38.107387,18.414139],[38.073029,18.345861],[38.105026,18.268833],[38.38575,18.154499],[38.410278,18.105557],[38.564446,18.003084],[38.452389,17.898361],[38.341694,17.649611],[38.280445,17.625416],[38.260139,17.558584],[38.166222,17.572971],[38.00386,17.557083],[37.976971,17.490999],[37.870251,17.452555],[37.774834,17.480473],[37.765556,17.383972],[37.612335,17.37414],[37.515304,17.336861],[37.517387,17.258806],[37.394665,17.047138],[37.311027,17.09436],[37.128834,17.057167],[37.021252,17.096056],[37.001972,16.830194],[37.029278,16.801111],[36.955776,16.686527],[36.901112,16.675806],[36.887444,16.545444],[36.962582,16.435499],[36.933639,16.354111],[36.958416,16.28064],[36.899277,16.226418],[36.767971,15.829695],[36.699696,15.713],[36.613445,15.413195],[36.525501,15.215861],[36.438778,15.156639],[36.470307,14.919528],[36.52689,14.329139],[36.556583,14.263722],[36.475887,14.009361],[36.452862,13.981083],[36.500916,13.832222],[36.422417,13.728806],[36.374138,13.530222],[36.292389,13.32425],[36.251583,13.283055],[36.150276,12.940917],[36.182251,12.889916],[36.155166,12.680917],[36.068668,12.724472],[35.984833,12.719722],[35.783806,12.663611],[35.713055,12.671695],[35.641861,12.602056],[35.42847,12.247916],[35.302166,12.012167],[35.275196,11.935945],[35.109585,11.815833],[35.054722,11.734389],[35.092415,11.623528],[35.059418,11.437805],[34.955612,11.25375],[35.006943,11.159778],[34.952446,10.9675],[34.972416,10.900695],[34.863224,10.766027],[34.777279,10.712861],[34.699055,10.828445],[34.601971,10.904139],[34.472137,10.816055],[34.384472,10.672417],[34.299862,10.587833],[34.282944,10.52725],[34.325416,10.475389],[34.295918,10.394472],[34.349918,10.209194],[34.330666,10.123528],[34.249779,10.061277],[34.222694,9.893518],[34.108536,9.57429],[34.116405,9.457685]]]},"properties":{"name":"苏丹","name_en":"Sudan","id":"SDN"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[50.568581,26.189529],[50.61861,26.145416],[50.635056,26.031],[50.610527,25.906084],[50.536862,25.877195],[50.466389,25.947721],[50.493752,26.0425],[50.45414,26.161972],[50.471584,26.226418],[50.568581,26.189529]]]},"properties":{"name":"巴林","name_en":"BAHRAIN","id":"BHR"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[30.476864,-1.062396],[30.348373,-1.068344],[30.339556,-1.13228],[30.171145,-1.304084],[30.159571,-1.349256],[29.913498,-1.483161],[29.877251,-1.369634],[29.702852,-1.35485],[29.595316,-1.392395],[29.601068,-1.22053],[29.577084,-1.196532],[29.587933,-0.904934],[29.638851,-0.818742],[29.626041,-0.705782],[29.681017,-0.566212],[29.653698,-0.46851],[29.743191,-0.030166],[29.716425,0.026434],[29.734698,0.129093],[29.814989,0.164289],[29.872433,0.392724],[29.973263,0.517733],[29.950308,0.633025],[29.984388,0.841495],[30.100248,0.894276],[30.14459,0.885302],[30.224484,0.994873],[30.243277,1.085276],[30.362999,1.200461],[30.468384,1.213292],[30.699885,1.494337],[31.02577,1.749802],[31.22819,1.991877],[31.305361,2.11931],[31.30493,2.15688],[31.126642,2.269035],[30.985323,2.408754],[30.885963,2.344041],[30.833559,2.426479],[30.752777,2.438503],[30.756674,2.592711],[30.880405,2.883495],[30.779251,3.06835],[30.829168,3.255208],[30.935602,3.40154],[30.933472,3.482229],[30.853569,3.48639],[30.980425,3.702209],[31.17384,3.793182],[31.282929,3.792573],[31.538933,3.654138],[31.701008,3.714355],[31.795332,3.803516],[31.837744,3.804415],[31.928787,3.70138],[31.954803,3.590398],[32.048237,3.588689],[32.08506,3.534059],[32.197769,3.515032],[32.197849,3.624968],[32.407272,3.747737],[32.701797,3.762096],[32.882786,3.809856],[33.017246,3.886971],[33.176544,3.774027],[33.509014,3.748913],[33.760338,3.999565],[33.994495,4.214426],[34.044479,4.18005],[34.087028,4.065296],[34.058659,4.00832],[34.129299,3.953583],[34.118587,3.89929],[34.219917,3.834239],[34.299328,3.716667],[34.351215,3.737472],[34.456135,3.674232],[34.440868,3.504912],[34.395493,3.482051],[34.401295,3.381403],[34.45232,3.192519],[34.566639,3.089405],[34.597046,2.918443],[34.706978,2.873192],[34.771786,2.812131],[34.778377,2.691684],[34.953461,2.452864],[34.917286,2.386294],[34.98555,1.994691],[35.033962,1.9242],[34.999016,1.682517],[34.947658,1.581766],[34.888653,1.556514],[34.830334,1.443882],[34.770935,1.418265],[34.828926,1.305809],[34.799801,1.227813],[34.685478,1.210355],[34.577721,1.153006],[34.500385,1.066348],[34.477669,0.946882],[34.410198,0.808956],[34.336857,0.774512],[34.266674,0.644234],[34.137546,0.574177],[34.094086,0.45554],[34.105446,0.368438],[33.908859,0.102833],[33.972588,-0.133982],[33.921562,-0.461901],[33.916607,-0.602038],[33.924828,-0.994076],[33.340839,-0.993952],[32.331135,-0.993421],[31.583847,-0.99282],[30.756544,-0.994824],[30.653826,-1.066406],[30.476864,-1.062396]]]},"properties":{"name":"乌干达","name_en":"Uganda","id":"UGA"}}, + {"type":"Feature","geometry":null,"properties":{"name":"瑙鲁","name_en":"Nauru","id":"NRU"}}, + {"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[10.470056,46.861889],[10.491472,46.939667],[10.348056,46.992195],[10.22775,46.872501],[10.104584,46.847305],[9.874639,46.940723],[9.889694,46.999168],[9.7835,47.040359],[9.603666,47.061554],[9.618305,47.153641],[9.535916,47.273529],[9.652639,47.403805],[9.544333,47.542557],[9.957611,47.537334],[10.1005,47.434418],[10.230556,47.280529],[10.342778,47.319668],[10.473695,47.442665],[10.429472,47.505722],[10.607472,47.568943],[10.797722,47.520695],[10.901167,47.533722],[10.987167,47.401554],[11.226334,47.404083],[11.419306,47.514305],[11.588333,47.531361],[11.607,47.586113],[11.913584,47.6185],[12.135639,47.609749],[12.165277,47.701889],[12.416945,47.698891],[12.500417,47.626915],[12.600889,47.671665],[12.743055,47.678055],[12.781195,47.583637],[13.005,47.473446],[13.099361,47.636665],[13.075528,47.689835],[12.944111,47.756748],[13.011945,47.850082],[12.855722,48.017834],[12.760167,48.073029],[12.761833,48.128807],[12.877778,48.204445],[13.019167,48.258804],[13.249556,48.293362],[13.413389,48.378723],[13.453362,48.512943],[13.5175,48.595501],[13.71375,48.516583],[13.805722,48.580502],[13.842389,48.773666],[14.056806,48.66864],[14.064777,48.601776],[14.35575,48.570667],[14.50175,48.619999],[14.717556,48.609028],[14.7355,48.701695],[14.822861,48.785194],[14.9545,48.791611],[15.026694,49.017056],[15.167334,48.952946],[15.367833,48.980335],[15.683583,48.857361],[15.776611,48.874443],[15.915556,48.83725],[16.038723,48.757946],[16.381472,48.726971],[16.536417,48.807026],[16.668751,48.770889],[16.796722,48.703388],[16.903139,48.71389],[16.936333,48.616859],[16.943832,48.520721],[16.867472,48.462418],[16.84775,48.372055],[17.061251,48.137306],[17.090666,48.04525],[17.162722,48.008083],[17.057888,47.843056],[17.09075,47.71125],[16.753416,47.682835],[16.613194,47.759056],[16.427555,47.662472],[16.642695,47.625446],[16.712778,47.534527],[16.576389,47.411167],[16.459444,47.411556],[16.492721,47.283943],[16.425278,47.193027],[16.514944,47.01086],[16.308001,47.002804],[16.111889,46.871498],[15.991083,46.835388],[15.952027,46.686474],[15.834945,46.718887],[15.670861,46.706696],[15.54925,46.670502],[15.205944,46.644749],[15.039,46.652638],[14.980722,46.601418],[14.868195,46.606834],[14.817056,46.509304],[14.657111,46.447334],[14.483139,46.416222],[14.424833,46.449444],[14.159056,46.437084],[14.120139,46.477665],[13.92975,46.518471],[13.715639,46.524029],[13.371889,46.579304],[13.23675,46.557304],[13.161417,46.59203],[12.9335,46.611057],[12.69425,46.65836],[12.556139,46.658501],[12.389389,46.715057],[12.296722,46.847721],[12.216028,46.879112],[12.121611,47.007973],[12.184028,47.095196],[11.973306,47.053917],[11.750139,46.977139],[11.620277,47.015472],[11.491972,47.013889],[11.156861,46.962612],[11.014778,46.770306],[10.876722,46.767387],[10.7285,46.797417],[10.658972,46.874222],[10.557,46.841557],[10.470056,46.861889]]]},"properties":{"name":"奥地利","name_en":"Austria","id":"AUT"}} + ]} \ No newline at end of file diff --git a/src/assets/datav/office_efficiency_header_bg.png b/src/assets/datav/office_efficiency_header_bg.png new file mode 100644 index 0000000..f2a6863 Binary files /dev/null and b/src/assets/datav/office_efficiency_header_bg.png differ diff --git a/src/assets/default_avatar.png b/src/assets/default_avatar.png new file mode 100644 index 0000000..e16488e Binary files /dev/null and b/src/assets/default_avatar.png differ diff --git a/src/assets/default_img.png b/src/assets/default_img.png new file mode 100644 index 0000000..31f8ef9 Binary files /dev/null and b/src/assets/default_img.png differ diff --git a/src/assets/default_img_max.png b/src/assets/default_img_max.png new file mode 100644 index 0000000..56a6658 Binary files /dev/null and b/src/assets/default_img_max.png differ diff --git a/src/assets/default_video_cover.png b/src/assets/default_video_cover.png new file mode 100644 index 0000000..9774bc3 Binary files /dev/null and b/src/assets/default_video_cover.png differ diff --git a/src/assets/diamond_icon.png b/src/assets/diamond_icon.png new file mode 100644 index 0000000..ff34389 Binary files /dev/null and b/src/assets/diamond_icon.png differ diff --git a/src/assets/game_coupon.png b/src/assets/game_coupon.png new file mode 100644 index 0000000..3127910 Binary files /dev/null and b/src/assets/game_coupon.png differ diff --git a/src/assets/gift_box.png b/src/assets/gift_box.png new file mode 100644 index 0000000..9e7b115 Binary files /dev/null and b/src/assets/gift_box.png differ diff --git a/src/assets/gold_icon.png b/src/assets/gold_icon.png new file mode 100644 index 0000000..162b828 Binary files /dev/null and b/src/assets/gold_icon.png differ diff --git a/src/assets/login-left.png b/src/assets/login-left.png new file mode 100644 index 0000000..683b775 Binary files /dev/null and b/src/assets/login-left.png differ diff --git a/src/assets/login_back.svg b/src/assets/login_back.svg new file mode 100644 index 0000000..0a9514b --- /dev/null +++ b/src/assets/login_back.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/logo.png b/src/assets/logo.png new file mode 100644 index 0000000..168024f Binary files /dev/null and b/src/assets/logo.png differ diff --git a/src/assets/logo_new.png b/src/assets/logo_new.png new file mode 100644 index 0000000..2e5b4b8 Binary files /dev/null and b/src/assets/logo_new.png differ diff --git a/src/assets/room_badge_icon.png b/src/assets/room_badge_icon.png new file mode 100644 index 0000000..ea151ed Binary files /dev/null and b/src/assets/room_badge_icon.png differ diff --git a/src/assets/special_id.png b/src/assets/special_id.png new file mode 100644 index 0000000..c6c60a5 Binary files /dev/null and b/src/assets/special_id.png differ diff --git a/src/assets/user_badge_icon.png b/src/assets/user_badge_icon.png new file mode 100644 index 0000000..fd11c68 Binary files /dev/null and b/src/assets/user_badge_icon.png differ diff --git a/src/assets/welcome.png b/src/assets/welcome.png new file mode 100644 index 0000000..7a30507 Binary files /dev/null and b/src/assets/welcome.png differ diff --git a/src/components-register.js b/src/components-register.js new file mode 100644 index 0000000..79112f4 --- /dev/null +++ b/src/components-register.js @@ -0,0 +1,27 @@ +import Vue from 'vue' +import '@/icons' // icon +import '@/flag-icons' +import Avatar from '@/components/data/Avatar' +import Gender from '@/components/data/Gender' +import SysOriginIcon from '@/components/SysOriginIcon' +import UserDeatilsDrawer from '@/components/data/UserDeatilsDrawer' +import UserTableExhibit from '@/components/data/UserInfo/UserTableExhibit' +import Svgaplayer from '@/components/svgaplayer' +import AccountInput from '@/components/data/AccountInput' +import SearchRoomInput from '@/components/data/SearchRoomInput' +import UploadImage from '@/components/upload-image' +import SysOriginPermissionSelect from '@/components/data/SysOriginPermissionSelect' +import SelectSystemRegion from '@/components/data/SelectSystemRegion' +import VueLuckyCanvas from '@lucky-canvas/vue' +Vue.use(VueLuckyCanvas) +Vue.component('sys-origin-icon', SysOriginIcon) +Vue.component('avatar', Avatar) +Vue.component('gender', Gender) +Vue.component('user-deatils-drawer', UserDeatilsDrawer) +Vue.component('svgaplayer', Svgaplayer) +Vue.component('account-input', AccountInput) +Vue.component('search-room-input', SearchRoomInput) +Vue.component('user-table-exhibit', UserTableExhibit) +Vue.component('upload-image', UploadImage) +Vue.component('sys-origin-permission-select', SysOriginPermissionSelect) +Vue.component('select-system-region', SelectSystemRegion) diff --git a/src/components/Breadcrumb/index.vue b/src/components/Breadcrumb/index.vue new file mode 100644 index 0000000..008d38c --- /dev/null +++ b/src/components/Breadcrumb/index.vue @@ -0,0 +1,80 @@ + + + + + diff --git a/src/components/FilterLayout/filter-drawer.vue b/src/components/FilterLayout/filter-drawer.vue new file mode 100644 index 0000000..e20008f --- /dev/null +++ b/src/components/FilterLayout/filter-drawer.vue @@ -0,0 +1,119 @@ + + + diff --git a/src/components/FilterLayout/index.vue b/src/components/FilterLayout/index.vue new file mode 100644 index 0000000..23ee453 --- /dev/null +++ b/src/components/FilterLayout/index.vue @@ -0,0 +1,39 @@ + + + + diff --git a/src/components/FlagIcon/index.vue b/src/components/FlagIcon/index.vue new file mode 100644 index 0000000..8dc9555 --- /dev/null +++ b/src/components/FlagIcon/index.vue @@ -0,0 +1,81 @@ + + + + + diff --git a/src/components/Hamburger/index.vue b/src/components/Hamburger/index.vue new file mode 100644 index 0000000..368b002 --- /dev/null +++ b/src/components/Hamburger/index.vue @@ -0,0 +1,44 @@ + + + + + diff --git a/src/components/HeaderSearch/index.vue b/src/components/HeaderSearch/index.vue new file mode 100644 index 0000000..b4bd208 --- /dev/null +++ b/src/components/HeaderSearch/index.vue @@ -0,0 +1,190 @@ + + + + + diff --git a/src/components/IconsPanel/index.vue b/src/components/IconsPanel/index.vue new file mode 100644 index 0000000..e20f4ac --- /dev/null +++ b/src/components/IconsPanel/index.vue @@ -0,0 +1,139 @@ + + + + + diff --git a/src/components/JsonEditor/index.vue b/src/components/JsonEditor/index.vue new file mode 100644 index 0000000..cc97e86 --- /dev/null +++ b/src/components/JsonEditor/index.vue @@ -0,0 +1,73 @@ +